:root {
  --cream: #FBF7F2;
  --warm-white: #F5EDE3;
  --blush: #E8C4B8;
  --terracotta: #C4756E;
  --deep-rose: #9B4D5A;
  --charcoal: #2D2A26;
  --soft-brown: #6B5B4E;
  --muted-gold: #C9A96E;
  --sage: #A8B5A0;
  --lavender: #C5B8D4;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--cream);
  color: var(--charcoal);
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 4rem 2rem;
  position: relative;
  background: linear-gradient(170deg, var(--cream) 0%, var(--warm-white) 40%, #F2E4D8 70%, #EDD5CA 100%);
}

.hero::before {
  content: '';
  position: absolute;
  top: 10%;
  right: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(200,169,110,0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 15%;
  left: -8%;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(197,184,212,0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-badge {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--terracotta);
  border: 1px solid var(--blush);
  padding: 0.5rem 1.5rem;
  border-radius: 100px;
  margin-bottom: 2.5rem;
}

.hero h1 {
  font-family: 'Fraunces', serif;
  font-weight: 300;
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  line-height: 1.1;
  color: var(--charcoal);
  max-width: 800px;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.hero h1 em {
  font-style: italic;
  color: var(--deep-rose);
  font-weight: 500;
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--soft-brown);
  max-width: 480px;
  margin-bottom: 3rem;
  position: relative;
  z-index: 1;
}

.hero-visual {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.time-pill {
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(200,169,110,0.2);
  border-radius: 16px;
  padding: 1rem 1.5rem;
  font-family: 'Fraunces', serif;
  font-size: 0.9rem;
  color: var(--charcoal);
  box-shadow: 0 4px 20px rgba(45,42,38,0.04);
}

.time-pill .time {
  font-weight: 500;
  color: var(--terracotta);
  display: block;
  font-size: 0.75rem;
  margin-bottom: 0.25rem;
  font-family: 'DM Sans', sans-serif;
  letter-spacing: 0.05em;
}

/* ===== PROBLEM ===== */
.problem {
  padding: 6rem 2rem;
  display: flex;
  justify-content: center;
}

.problem-inner {
  max-width: 680px;
  text-align: center;
}

.problem-inner h2 {
  font-family: 'Fraunces', serif;
  font-weight: 300;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  line-height: 1.35;
  color: var(--charcoal);
  margin-bottom: 1.5rem;
}

.problem-inner h2 em {
  font-style: italic;
  color: var(--deep-rose);
}

.problem-inner p {
  font-size: 1.05rem;
  color: var(--soft-brown);
  line-height: 1.8;
}

.divider {
  width: 40px;
  height: 1px;
  background: var(--blush);
  margin: 2rem auto;
}

/* ===== FEATURES ===== */
.features {
  padding: 4rem 2rem 6rem;
  background: linear-gradient(180deg, var(--cream) 0%, var(--warm-white) 100%);
}

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

.features-header h2 {
  font-family: 'Fraunces', serif;
  font-weight: 300;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--charcoal);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 960px;
  margin: 0 auto;
}

.feature-card {
  background: rgba(255,255,255,0.6);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(232,196,184,0.3);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(45,42,38,0.06);
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
}

.feature-icon.rose { background: rgba(155,77,90,0.1); }
.feature-icon.gold { background: rgba(201,169,110,0.15); }
.feature-icon.sage { background: rgba(168,181,160,0.2); }

.feature-card h3 {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
  color: var(--charcoal);
}

.feature-card p {
  font-size: 0.92rem;
  color: var(--soft-brown);
  line-height: 1.7;
}

/* ===== RHYTHM ===== */
.rhythm {
  padding: 6rem 2rem;
  background: var(--charcoal);
  color: var(--cream);
}

.rhythm-inner {
  max-width: 800px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.rhythm-text h2 {
  font-family: 'Fraunces', serif;
  font-weight: 300;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  line-height: 1.3;
  margin-bottom: 1.5rem;
  color: var(--cream);
}

.rhythm-text h2 em {
  font-style: italic;
  color: var(--blush);
}

.rhythm-text p {
  color: rgba(251,247,242,0.65);
  font-size: 1rem;
  line-height: 1.8;
}

.rhythm-preview {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.rhythm-block {
  background: rgba(251,247,242,0.06);
  border: 1px solid rgba(251,247,242,0.08);
  border-radius: 14px;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.rhythm-time {
  font-family: 'Fraunces', serif;
  font-size: 0.85rem;
  color: var(--muted-gold);
  min-width: 55px;
}

.rhythm-label {
  font-size: 0.9rem;
  color: rgba(251,247,242,0.8);
}

.rhythm-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.rhythm-dot.dot-rose { background: var(--terracotta); }
.rhythm-dot.dot-gold { background: var(--muted-gold); }
.rhythm-dot.dot-sage { background: var(--sage); }
.rhythm-dot.dot-lav { background: var(--lavender); }

/* ===== CLOSING ===== */
.closing {
  padding: 7rem 2rem;
  text-align: center;
  background: linear-gradient(180deg, var(--cream) 0%, #F2E4D8 100%);
  position: relative;
}

.closing::before {
  content: '';
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(232,196,184,0.2) 0%, transparent 70%);
  pointer-events: none;
}

.closing h2 {
  font-family: 'Fraunces', serif;
  font-weight: 300;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.25;
  color: var(--charcoal);
  max-width: 600px;
  margin: 0 auto 1.5rem;
  position: relative;
  z-index: 1;
}

.closing h2 em {
  font-style: italic;
  color: var(--deep-rose);
}

.closing p {
  color: var(--soft-brown);
  font-size: 1.1rem;
  max-width: 440px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* ===== FOOTER ===== */
.footer {
  padding: 3rem 2rem;
  text-align: center;
  background: var(--warm-white);
  border-top: 1px solid rgba(232,196,184,0.3);
}

.footer-brand {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 1.1rem;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
}

.footer p {
  font-size: 0.8rem;
  color: var(--soft-brown);
}

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

  .rhythm-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: center;
  }

  .hero-visual {
    flex-direction: column;
    align-items: center;
  }

  .hero {
    padding: 6rem 1.5rem 4rem;
  }

  .problem, .features, .rhythm, .closing {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}