:root {
  --bg: #faf6f1;
  --bg-warm: #f3ece3;
  --fg: #2c2320;
  --fg-muted: #6b5e57;
  --accent: #b8860b;
  --accent-light: #d4a843;
  --accent-glow: rgba(184, 134, 11, 0.12);
  --cream: #fffbf5;
  --rose: #c9a4a0;
  --rose-light: #e8d5d3;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Plus Jakarta Sans', -apple-system, sans-serif;
}

* { 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: 400;
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

/* === HERO === */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 80px 24px 60px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--cream) 0%, var(--bg) 100%);
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -150px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 164, 160, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.hero-badge {
  display: inline-block;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-glow);
  border: 1px solid rgba(184, 134, 11, 0.2);
  padding: 10px 24px;
  border-radius: 100px;
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-family: var(--serif);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 500;
  line-height: 1.08;
  color: var(--fg);
  max-width: 800px;
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
  letter-spacing: -0.02em;
}

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

.hero-sub {
  font-family: var(--sans);
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 300;
  color: var(--fg-muted);
  max-width: 540px;
  line-height: 1.8;
  position: relative;
  z-index: 1;
}

.hero-divider {
  width: 60px;
  height: 1px;
  background: var(--accent);
  margin: 48px auto 0;
  position: relative;
  z-index: 1;
}

/* === FEATURES === */
.features {
  padding: 100px 24px;
  background: var(--bg);
}

.features-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.features-header {
  text-align: center;
  margin-bottom: 72px;
}

.features-header h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 500;
  color: var(--fg);
  margin-bottom: 16px;
}

.features-header p {
  color: var(--fg-muted);
  font-size: 1.05rem;
  font-weight: 300;
  max-width: 500px;
  margin: 0 auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.feature-card {
  background: var(--cream);
  border: 1px solid rgba(184, 134, 11, 0.08);
  border-radius: 16px;
  padding: 40px 32px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(44, 35, 32, 0.06);
}

.feature-number {
  font-family: var(--serif);
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--accent-light);
  opacity: 0.5;
  margin-bottom: 16px;
  line-height: 1;
}

.feature-card h3 {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 12px;
}

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

/* === WHATS INSIDE === */
.whats-inside {
  padding: 100px 24px;
  background: var(--bg-warm);
}

.whats-inside-inner {
  max-width: 900px;
  margin: 0 auto;
}

.whats-inside-header {
  text-align: center;
  margin-bottom: 64px;
}

.whats-inside-header h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 500;
  color: var(--fg);
  margin-bottom: 16px;
}

.whats-inside-header p {
  color: var(--fg-muted);
  font-size: 1.05rem;
  font-weight: 300;
}

.vault-items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.vault-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px 28px;
  background: var(--cream);
  border-radius: 12px;
  border: 1px solid rgba(184, 134, 11, 0.06);
}

.vault-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-glow);
  border-radius: 8px;
  font-size: 1rem;
  color: var(--accent);
  font-weight: 600;
}

.vault-item h4 {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 4px;
}

.vault-item p {
  color: var(--fg-muted);
  font-size: 0.88rem;
  font-weight: 300;
  line-height: 1.6;
}

/* === CLOSING === */
.closing {
  padding: 120px 24px;
  text-align: center;
  background: linear-gradient(180deg, var(--bg) 0%, var(--cream) 100%);
  position: relative;
}

.closing::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 60px;
  background: linear-gradient(180deg, var(--accent-light), transparent);
}

.closing h2 {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 500;
  font-style: italic;
  color: var(--fg);
  max-width: 700px;
  margin: 0 auto 24px;
  line-height: 1.2;
}

.closing p {
  color: var(--fg-muted);
  font-size: 1.1rem;
  font-weight: 300;
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.8;
}

/* === FOOTER === */
.footer {
  padding: 40px 24px;
  text-align: center;
  background: var(--cream);
  border-top: 1px solid rgba(184, 134, 11, 0.08);
}

.footer p {
  color: var(--fg-muted);
  font-size: 0.85rem;
  font-weight: 300;
  letter-spacing: 0.5px;
}

.footer .brand {
  font-family: var(--serif);
  font-weight: 600;
  color: var(--accent);
}

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

  .vault-items {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 60px 20px 40px;
    min-height: 90vh;
  }

  .feature-card {
    padding: 32px 24px;
  }

  .features { padding: 72px 20px; }
  .whats-inside { padding: 72px 20px; }
  .closing { padding: 80px 20px; }
}