:root {
  --bg: #FAF7F2;
  --bg-warm: #F3EDE4;
  --fg: #1A1A1A;
  --fg-muted: #6B6560;
  --accent: #2D4A3E;
  --accent-light: #3D6555;
  --gold: #C4956A;
  --gold-light: #D4AA82;
  --border: #E5DDD4;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'DM Sans', -apple-system, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ---- NAV ---- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.25rem 2rem;
  background: rgba(250, 247, 242, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.nav-logo {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -0.02em;
}
.nav-logo em {
  font-style: normal;
  color: var(--gold);
}

/* ---- HERO ---- */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8rem 2rem 4rem;
  position: relative;
  background: linear-gradient(170deg, var(--bg) 0%, var(--bg-warm) 100%);
}
.hero-inner {
  max-width: 800px;
  margin: 0 auto;
}
.hero-tag {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.hero-headline {
  font-family: var(--serif);
  font-size: clamp(3.5rem, 8vw, 7rem);
  font-weight: 700;
  line-height: 0.95;
  color: var(--accent);
  letter-spacing: -0.03em;
  margin-bottom: 2rem;
}
.hero-accent {
  color: var(--gold);
  font-style: italic;
}
.hero-sub {
  font-size: 1.2rem;
  color: var(--fg-muted);
  max-width: 550px;
  line-height: 1.7;
}
.hero-scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
}
.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.7); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ---- CATEGORIES ---- */
.categories {
  padding: 6rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}
.categories-header {
  margin-bottom: 3.5rem;
}
.section-label {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.categories-header h2,
.values-left h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.categories-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.cat-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.cat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(45, 74, 62, 0.08);
}
.cat-large {
  grid-row: span 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: var(--accent);
  border-color: var(--accent);
  color: white;
}
.cat-large .cat-number { color: var(--gold-light); }
.cat-large h3 { color: white; }
.cat-large p { color: rgba(255, 255, 255, 0.75); }
.cat-wide {
  grid-column: span 2;
  background: var(--bg-warm);
  border-color: var(--border);
}
.cat-number {
  font-family: var(--serif);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 1rem;
}
.cat-card h3 {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}
.cat-card p {
  font-size: 0.95rem;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* ---- VALUES ---- */
.values {
  padding: 6rem 2rem;
  background: var(--accent);
}
.values-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.values-left .section-label { color: var(--gold-light); }
.values-left h2 { color: white; }
.value-item {
  padding: 2rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.value-item:last-child { border-bottom: none; }
.value-item h4 {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--gold-light);
  margin-bottom: 0.5rem;
}
.value-item p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.65;
}

/* ---- CLOSING ---- */
.closing {
  padding: 8rem 2rem;
  text-align: center;
  background: var(--bg-warm);
}
.closing-inner {
  max-width: 700px;
  margin: 0 auto;
}
.closing-verse {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--gold);
  margin-bottom: 2rem;
}
.closing-headline {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--accent);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}
.closing-sub {
  font-size: 1.1rem;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* ---- FOOTER ---- */
.footer {
  padding: 2.5rem 2rem;
  border-top: 1px solid var(--border);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-logo {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--accent);
}
.footer-logo em {
  font-style: normal;
  color: var(--gold);
}
.footer-note {
  font-size: 0.85rem;
  color: var(--fg-muted);
}

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
  .hero { padding: 7rem 1.5rem 3rem; min-height: 90vh; }
  .hero-sub { font-size: 1.05rem; }
  .categories { padding: 4rem 1.5rem; }
  .categories-grid {
    grid-template-columns: 1fr;
  }
  .cat-large { grid-row: auto; }
  .cat-wide { grid-column: auto; }
  .values { padding: 4rem 1.5rem; }
  .values-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .closing { padding: 5rem 1.5rem; }
  .footer-inner {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }
}