* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: Georgia, 'Times New Roman', serif; background: #f5f0eb; color: #1a1a1a; }

.header {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 40px; background: #f5f0eb;
}
.header-btn {
  background: none; border: none; cursor: pointer; padding: 8px;
}
.header-btn svg { width: 26px; height: 26px; stroke: #1a1a1a; }
.logo { text-align: center; }
.logo h1 { font-size: 32px; letter-spacing: 8px; font-weight: 400; }
.logo span { font-size: 11px; letter-spacing: 4px; color: #555; }

.overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,.4); z-index: 1100;
  opacity: 0; pointer-events: none; transition: opacity .35s;
}
.overlay.open { opacity: 1; pointer-events: auto; }
.sidebar {
  position: fixed; top: 0; left: -300px; width: 280px; height: 100%;
  background: #1a1a1a; color: #fff; z-index: 1200;
  transition: left .35s ease; padding: 60px 30px 30px;
}
.sidebar.open { left: 0; }
.sidebar-close {
  position: absolute; top: 16px; right: 16px; background: none;
  border: none; color: #fff; font-size: 28px; cursor: pointer;
}
.sidebar nav a {
  display: block; padding: 16px 0; color: #ccc; text-decoration: none;
  font-size: 15px; letter-spacing: 2px; border-bottom: 1px solid #333;
  transition: color .2s;
}
.sidebar nav a:hover { color: #fff; }

.hero {
  margin-top: 60px; position: relative; overflow: hidden;
  height: 520px; background: #3a2e26;
}
.slides {
  display: flex; height: 100%; transition: transform .5s ease;
}
.slide {
  min-width: 100%; height: 100%;
  background-size: cover; background-position: center;
  display: flex; align-items: center; justify-content: center;
  color: #fff; position: relative; cursor: pointer;
}
.slide::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(0,0,0,.35);
}
.slide-text {
  position: relative; z-index: 1; text-align: center;
  max-width: 600px; padding: 20px;
}
.slide-text h2 { font-size: 42px; font-weight: 400; margin-bottom: 10px; }
.slide-text p { font-size: 16px; opacity: .85; }
.slider-btn {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 2;
  background: rgba(255,255,255,.85); border: none; width: 44px; height: 44px;
  border-radius: 50%; cursor: pointer; font-size: 22px; display: flex;
  align-items: center; justify-content: center; transition: background .2s;
}
.slider-btn:hover { background: #fff; }
.slider-prev { left: 18px; }
.slider-next { right: 18px; }
.dots {
  position: absolute; bottom: 18px; width: 100%; display: flex;
  justify-content: center; gap: 10px; z-index: 2;
}
.dot {
  width: 10px; height: 10px; border-radius: 2px; background: rgba(255,255,255,.5);
  border: none; cursor: pointer; transition: background .2s;
}
.dot.active { background: #1a1a1a; }

.section { padding: 70px 60px; }
.section-title {
  font-size: 28px; font-weight: 400; letter-spacing: 3px; margin-bottom: 8px;
}
.section-line {
  width: 40px; height: 2px; background: #1a1a1a; margin-bottom: 30px;
}

.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center;
}
.about-text p { font-size: 15px; line-height: 1.8; color: #444; }
.about-img {
  width: 100%; height: 320px; object-fit: cover; border-radius: 4px;
}

.writers-grid {
  display: flex; flex-wrap: nowrap; gap: 24px; justify-content: space-between;
}
.writer-card {
  display: flex; flex-direction: column; flex: 1; min-width: 0;
}
.writer-photo {
  width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: 6px;
  filter: grayscale(30%); margin-bottom: 10px;
}
.writer-name { font-size: 13px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; }
.writer-role { font-size: 11px; color: #777; margin-bottom: 6px; }
.writer-desc { font-size: 12px; line-height: 1.5; color: #555; }

.lc-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start;
}
.lc-block { display: flex; flex-direction: column; }
.map-img {
  width: 100%; height: 220px; object-fit: cover; border-radius: 4px; margin-bottom: 14px;
}
.lc-address { font-size: 15px; line-height: 1.8; color: #333; }
.contact-item {
  display: flex; align-items: center; gap: 14px; margin-bottom: 16px;
  font-size: 15px; color: #333;
}
.contact-item svg { width: 20px; height: 20px; flex-shrink: 0; stroke: #555; }
.contact-img {
  width: 100%; height: 220px; object-fit: cover; border-radius: 4px; margin-top: 14px;
}

.footer {
  background: #1a1a1a; color: #fff; text-align: center;
  padding: 24px; font-size: 13px; letter-spacing: 1px;
}

@media (max-width: 900px) {
  .section { padding: 50px 30px; }
  .about-grid, .lc-grid { grid-template-columns: 1fr; gap: 30px; }
  .writers-grid { gap: 16px; overflow-x: auto; }
  .hero { height: 350px; }
}
@media (max-width: 600px) {
  .header { padding: 12px 20px; }
  .logo h1 { font-size: 24px; }
  .section { padding: 40px 18px; }
  .section-title { font-size: 22px; }
  .writers-grid { gap: 14px; overflow-x: auto; }
  .hero { height: 280px; }
  .slide-text h2 { font-size: 28px; }
  .slider-btn { width: 36px; height: 36px; font-size: 18px; }
}
