:root {
  --bg: #FAF6F0;
  --bg-warm: #F3ECE0;
  --bg-deep: #2C1810;
  --fg: #2C1810;
  --fg-muted: #6B5B4F;
  --fg-light: #9A8B7D;
  --accent: #B8860B;
  --accent-light: #D4A843;
  --accent-glow: rgba(184, 134, 11, 0.15);
  --cream: #FFF8EE;
  --border: #E0D5C7;
  --serif: 'Playfair Display', Georgia, serif;
  --sans: 'Plus Jakarta 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-weight: 400;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* ---- HERO ---- */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding: 6rem 2rem 4rem;
  overflow: hidden;
  background: linear-gradient(165deg, var(--bg) 0%, var(--bg-warm) 60%, var(--cream) 100%);
}

.hero-grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
}

.hero-content {
  max-width: 720px;
  position: relative;
  z-index: 2;
  margin-left: 8%;
}

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

.hero h1 {
  font-family: var(--serif);
  font-size: clamp(2.6rem, 5.5vw, 4.5rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--fg);
  margin-bottom: 1.5rem;
}

.hero h1 em {
  font-style: italic;
  color: var(--accent);
}

.hero-lede {
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--fg-muted);
  max-width: 560px;
  font-weight: 300;
}

.hero-accent {
  position: absolute;
  right: 8%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
}

.accent-circle {
  width: 320px;
  height: 320px;
  border-radius: 50%;
  border: 1px solid var(--border);
  position: relative;
}

.accent-circle::before {
  content: '';
  position: absolute;
  inset: 30px;
  border-radius: 50%;
  border: 1px solid var(--accent-glow);
  background: var(--accent-glow);
}

.accent-circle::after {
  content: '';
  position: absolute;
  inset: 80px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--accent-light) 0%, transparent 70%);
  opacity: 0.2;
}

.accent-line {
  width: 1px;
  height: 120px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  margin: 2rem auto 0;
}

/* ---- STORY ---- */
.story {
  padding: 6rem 2rem;
  background: var(--bg-deep);
  color: var(--cream);
}

.story-container {
  max-width: 1000px;
  margin: 0 auto;
}

.story-label {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: 1.5rem;
}

.story h2 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 3rem;
  max-width: 680px;
  color: var(--cream);
}

.story-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.story-card {
  padding: 2rem 1.5rem;
  border-left: 2px solid var(--accent);
}

.story-number {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent-light);
  display: block;
  margin-bottom: 1rem;
  opacity: 0.6;
}

.story-card p {
  font-size: 0.95rem;
  line-height: 1.75;
  color: rgba(255, 248, 238, 0.8);
  font-weight: 300;
}

/* ---- FEATURES ---- */
.features {
  padding: 6rem 2rem;
  background: var(--bg);
}

.features-container {
  max-width: 800px;
  margin: 0 auto;
}

.features-label {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 3rem;
}

.feature-row {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  padding: 2rem 0;
}

.feature-icon {
  font-size: 1.2rem;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.feature-text h3 {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--fg);
}

.feature-text p {
  font-size: 0.95rem;
  color: var(--fg-muted);
  line-height: 1.75;
  font-weight: 300;
}

.feature-divider {
  height: 1px;
  background: var(--border);
  width: 100%;
}

/* ---- CLOSING ---- */
.closing {
  padding: 8rem 2rem;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-warm) 100%);
  text-align: center;
}

.closing-container {
  max-width: 700px;
  margin: 0 auto;
}

.closing-decoration {
  margin-bottom: 3rem;
}

.closing-line {
  width: 60px;
  height: 2px;
  background: var(--accent);
  margin: 0 auto;
}

.closing h2 {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 600;
  line-height: 1.4;
  color: var(--fg);
  margin-bottom: 1.5rem;
}

.closing-sub {
  font-size: 1rem;
  color: var(--fg-light);
  font-weight: 300;
  font-style: italic;
}

/* ---- FOOTER ---- */
.site-footer {
  padding: 2.5rem 2rem;
  background: var(--bg-warm);
  border-top: 1px solid var(--border);
  text-align: center;
}

.footer-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.footer-brand {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1rem;
  color: var(--fg);
}

.footer-divider {
  color: var(--fg-light);
}

.footer-tagline {
  font-size: 0.85rem;
  color: var(--fg-light);
  font-weight: 300;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
  .hero {
    min-height: auto;
    padding: 4rem 1.5rem 3rem;
  }

  .hero-content {
    margin-left: 0;
  }

  .hero-accent {
    display: none;
  }

  .story {
    padding: 4rem 1.5rem;
  }

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

  .features {
    padding: 4rem 1.5rem;
  }

  .feature-row {
    gap: 1.25rem;
  }

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

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

  .story h2 {
    font-size: 1.5rem;
  }

  .closing h2 {
    font-size: 1.4rem;
  }
}