:root {
  --bg: #1a1210;
  --bg-warm: #231a16;
  --fg: #f5ede6;
  --fg-muted: #b8a99a;
  --accent: #e8a54b;
  --accent-glow: rgba(232, 165, 75, 0.15);
  --cream: #fdf6ee;
  --rose: #c47a6c;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: '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(--font-body);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 4rem 2rem;
  text-align: center;
}

.hero-inner {
  max-width: 720px;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid rgba(232, 165, 75, 0.3);
  padding: 0.4rem 1.2rem;
  border-radius: 100px;
  margin-bottom: 2.5rem;
  font-weight: 500;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: var(--cream);
}

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

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

.hero-glow {
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

/* FEATURES */
.features {
  padding: 6rem 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

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

.feature-card {
  background: var(--bg-warm);
  border: 1px solid rgba(245, 237, 230, 0.06);
  border-radius: 16px;
  padding: 2.5rem;
  transition: border-color 0.3s ease;
}

.feature-card:hover {
  border-color: rgba(232, 165, 75, 0.2);
}

.feature-large {
  grid-column: 1 / -1;
}

.feature-number {
  font-family: var(--font-display);
  font-size: 0.85rem;
  color: var(--accent);
  display: block;
  margin-bottom: 1rem;
  opacity: 0.7;
}

.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 0.75rem;
}

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

/* STORY */
.story {
  padding: 8rem 2rem;
  border-top: 1px solid rgba(245, 237, 230, 0.05);
}

.story-inner {
  max-width: 680px;
  margin: 0 auto;
}

.story-label {
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 2rem;
  font-weight: 500;
}

.story h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--cream);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

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

/* CLOSING */
.closing {
  padding: 8rem 2rem;
  text-align: center;
  background: linear-gradient(180deg, transparent 0%, rgba(232, 165, 75, 0.04) 100%);
}

.closing-inner {
  max-width: 600px;
  margin: 0 auto;
}

.closing h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--cream);
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

.closing-text {
  color: var(--fg-muted);
  font-size: 1.05rem;
  line-height: 1.8;
}

/* FOOTER */
.footer {
  padding: 3rem 2rem;
  border-top: 1px solid rgba(245, 237, 230, 0.05);
}

.footer-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--cream);
  font-weight: 700;
}

.footer-sep {
  font-size: 0.8rem;
  color: var(--fg-muted);
  opacity: 0.5;
}

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

  .feature-large {
    grid-column: 1;
  }

  .hero {
    padding: 3rem 1.5rem;
    min-height: 90vh;
  }

  .features {
    padding: 4rem 1.5rem;
  }

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

  .feature-card {
    padding: 2rem;
  }

  .footer-inner {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }
}