:root {
  --bg: #0f0d0b;
  --bg-warm: #1a1613;
  --fg: #e8e0d6;
  --fg-muted: #a89a8b;
  --accent: #c8956c;
  --accent-glow: rgba(200, 149, 108, 0.15);
  --gold: #d4a574;
  --gold-dim: rgba(212, 165, 116, 0.08);
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Outfit', -apple-system, sans-serif;
  --max-w: 1120px;
  --radius: 16px;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* === HERO === */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 60% at 50% 40%, rgba(200, 149, 108, 0.1) 0%, transparent 70%),
    radial-gradient(ellipse 50% 80% at 20% 80%, rgba(212, 165, 116, 0.05) 0%, transparent 60%),
    var(--bg);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    180deg,
    transparent,
    transparent 120px,
    rgba(200, 149, 108, 0.02) 120px,
    rgba(200, 149, 108, 0.02) 121px
  );
  pointer-events: none;
}

.hero-content {
  position: relative;
  text-align: center;
  max-width: 800px;
  padding: 2rem;
}

.hero-eyebrow {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 2rem;
}

.hero h1 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.8rem, 6vw, 5rem);
  line-height: 1.1;
  color: var(--fg);
  margin-bottom: 1.5rem;
}

.hero-lede {
  font-size: 1.15rem;
  color: var(--fg-muted);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.8;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
}

.hero-scroll-indicator span {
  display: block;
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  animation: scroll-fade 2s ease-in-out infinite;
}

@keyframes scroll-fade {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* === FEATURES === */
.features {
  padding: 8rem 2rem;
  max-width: var(--max-w);
  margin: 0 auto;
}

.features-header {
  margin-bottom: 4rem;
}

.features-header h2 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 0.75rem;
}

.features-subtitle {
  color: var(--fg-muted);
  font-size: 1.05rem;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.feature-card {
  background: var(--bg-warm);
  border: 1px solid rgba(200, 149, 108, 0.08);
  border-radius: var(--radius);
  padding: 2.5rem;
  transition: border-color 0.3s ease, background 0.3s ease;
}

.feature-card:hover {
  border-color: rgba(200, 149, 108, 0.2);
  background: rgba(200, 149, 108, 0.04);
}

.feature-card--large {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  gap: 0 2rem;
  align-items: start;
}

.feature-card--large .feature-icon {
  grid-row: 1 / 3;
  font-size: 2.5rem;
}

.feature-icon {
  color: var(--accent);
  font-size: 1.8rem;
  margin-bottom: 1.25rem;
  line-height: 1;
}

.feature-card h3 {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 1.15rem;
  margin-bottom: 0.6rem;
}

.feature-card p {
  color: var(--fg-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* === HERITAGE === */
.heritage {
  padding: 6rem 2rem;
  background:
    linear-gradient(135deg, var(--gold-dim) 0%, transparent 50%),
    var(--bg-warm);
  border-top: 1px solid rgba(200, 149, 108, 0.06);
  border-bottom: 1px solid rgba(200, 149, 108, 0.06);
}

.heritage-content {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
}

.heritage-label {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.25rem;
}

.heritage-text h2 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  line-height: 1.2;
  margin-bottom: 1.25rem;
}

.heritage-text p {
  color: var(--fg-muted);
  font-size: 1rem;
  margin-bottom: 1rem;
  line-height: 1.8;
}

.heritage-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}

.stat {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 3.2rem;
  line-height: 1;
  color: var(--gold);
  margin-bottom: 0.4rem;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* === CLOSING === */
.closing {
  padding: 8rem 2rem;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.closing h2 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  line-height: 1.25;
  margin-bottom: 1.5rem;
}

.closing p {
  color: var(--fg-muted);
  font-size: 1.1rem;
  line-height: 1.9;
}

/* === FOOTER === */
.site-footer {
  padding: 3rem 2rem;
  border-top: 1px solid rgba(200, 149, 108, 0.06);
}

.footer-content {
  max-width: var(--max-w);
  margin: 0 auto;
  text-align: center;
}

.footer-brand {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.15em;
  color: var(--fg-muted);
  margin-bottom: 0.4rem;
}

.footer-tagline {
  font-size: 0.8rem;
  color: rgba(168, 154, 139, 0.5);
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: 1fr;
  }

  .feature-card--large {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .feature-card--large .feature-icon {
    grid-row: auto;
  }

  .heritage-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .heritage-stats {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .hero h1 {
    font-size: 2.4rem;
  }

  .features {
    padding: 5rem 1.5rem;
  }

  .heritage {
    padding: 4rem 1.5rem;
  }

  .closing {
    padding: 5rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .hero-lede {
    font-size: 1rem;
  }

  .stat-number {
    font-size: 2.5rem;
  }

  .feature-card {
    padding: 2rem;
  }
}