:root {
  --bg: #FDF7F2;
  --fg: #1A1410;
  --accent: #C97B5A;
  --accent-light: #E8A882;
  --surface: #F5EDE5;
  --surface-dark: #EAE0D5;
  --text-muted: #7A6A60;
  --ink: #2D221C;
  --white: #FFFDFB;
  --border: rgba(201, 123, 90, 0.2);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* — Nav — */
.nav {
  padding: 24px 48px;
  display: flex;
  align-items: center;
}
.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--ink);
}

/* — Hero — */
.hero {
  padding: 80px 48px 100px;
  background: linear-gradient(135deg, #FDF7F2 0%, #F5EDE5 50%, #EDD9C8 100%);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(201,123,90,0.08) 0%, transparent 60%);
  pointer-events: none;
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-eyebrow {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 20px;
}
.hero-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(40px, 5vw, 66px);
  font-weight: 300;
  line-height: 1.12;
  color: var(--ink);
  margin-bottom: 28px;
  letter-spacing: -0.01em;
}
.hero-lede {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 480px;
  line-height: 1.7;
}

/* Glow orbs */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 420px;
}
.glow-orb {
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,123,90,0.22) 0%, rgba(232,168,130,0.08) 50%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.glow-orb-2 {
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(201,123,90,0.15) 0%, transparent 70%);
}

/* Routine card */
.routine-card {
  position: relative;
  z-index: 2;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px 36px;
  width: 320px;
  box-shadow: 0 20px 60px rgba(45, 30, 15, 0.08), 0 4px 16px rgba(201, 123, 90, 0.08);
}
.routine-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.routine-step {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 0;
  border-bottom: 1px solid var(--surface-dark);
}
.routine-step:last-of-type { border-bottom: none; }
.step-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px;
  color: var(--accent);
  font-style: italic;
  min-width: 18px;
}
.step-name {
  font-size: 15px;
  color: var(--ink);
  font-weight: 400;
}
.routine-price {
  margin-top: 20px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  color: var(--ink);
  font-weight: 500;
}

/* — How it Works — */
.how-it-works {
  padding: 100px 48px;
  background: var(--white);
}
.hiw-inner { max-width: 1100px; margin: 0 auto; }
.section-label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
  font-weight: 500;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 60px;
  line-height: 1.15;
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}
.step-card {
  padding: 0;
}
.step-icon {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 42px;
  font-weight: 300;
  color: var(--accent-light);
  margin-bottom: 20px;
  font-style: italic;
  line-height: 1;
}
.step-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 14px;
}
.step-card p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* — Offers — */
.offers {
  padding: 100px 48px;
  background: var(--surface);
}
.offers-inner { max-width: 1100px; margin: 0 auto; }
.offers-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 48px;
}
.offer-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 40px;
  position: relative;
  transition: transform 0.2s ease;
}
.offer-card:hover { transform: translateY(-4px); }
.offer-card-featured {
  background: var(--ink);
  border-color: transparent;
}
.offer-tag {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid var(--accent);
  border-radius: 100px;
  padding: 4px 12px;
  margin-bottom: 20px;
}
.offer-tag-featured {
  color: var(--accent-light);
  border-color: rgba(232,168,130,0.4);
}
.offer-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 12px;
}
.offer-card-featured h3 { color: var(--white); }
.offer-desc {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 28px;
  line-height: 1.65;
}
.offer-card-featured .offer-desc { color: rgba(255,255,255,0.6); }
.offer-features {
  list-style: none;
  margin-bottom: 28px;
}
.offer-features li {
  font-size: 14px;
  color: var(--fg);
  padding: 7px 0;
  border-bottom: 1px solid var(--surface-dark);
  background: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 12 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 6l3 3 5-5' stroke='%23C97B5A' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat left center;
  padding-left: 24px;
}
.offer-card-featured .offer-features li { border-color: rgba(255,255,255,0.08); }
.offer-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 30px;
  font-weight: 500;
  color: var(--ink);
}
.offer-card-featured .offer-price { color: var(--white); }

.digital-addon {
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding: 24px 32px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
}
.addon-label {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
  white-space: nowrap;
}
.addon-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  color: var(--ink);
  font-weight: 500;
}
.addon-desc {
  font-size: 14px;
  color: var(--text-muted);
}

/* — Manifesto — */
.manifesto {
  padding: 100px 48px;
  background: var(--ink);
}
.manifesto-inner { max-width: 1100px; margin: 0 auto; }
.quote-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 300;
  font-style: italic;
  color: var(--white);
  line-height: 1.5;
  margin-bottom: 72px;
  max-width: 800px;
}
.manifesto-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}
.m-point h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 12px;
}
.m-point p {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
}

/* — Closing — */
.closing {
  padding: 120px 48px;
  background: linear-gradient(160deg, #EDD9C8 0%, #F5EDE5 60%, var(--bg) 100%);
}
.closing-inner { max-width: 1100px; margin: 0 auto; text-align: center; }
.closing-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 300;
  color: var(--ink);
  line-height: 1.1;
  margin-bottom: 24px;
}
.closing-sub {
  font-size: 18px;
  color: var(--text-muted);
  margin-bottom: 32px;
}
.cta-btn {
  display: inline-block;
  padding: 14px 32px;
  background: var(--accent);
  color: var(--white);
  border-radius: 12px;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.2s, transform 0.1s;
}
.cta-btn:hover { background: #b86a4a; }
.cta-btn:active { transform: scale(0.98); }

/* — Footer — */
.footer {
  padding: 60px 48px;
  background: var(--ink);
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-inner { max-width: 1100px; margin: 0 auto; }
.footer-logo {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 400;
  color: var(--white);
  letter-spacing: 0.04em;
  margin-bottom: 10px;
}
.footer-tagline {
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  margin-bottom: 24px;
}
.footer-copy {
  font-size: 12px;
  color: rgba(255,255,255,0.25);
}

/* — Responsive — */
@media (max-width: 768px) {
  .nav { padding: 20px 24px; }
  .hero { padding: 60px 24px 80px; }
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { height: auto; }
  .hero-visual { display: none; }
  .steps-grid { grid-template-columns: 1fr; gap: 40px; }
  .offers-grid { grid-template-columns: 1fr; }
  .manifesto-points { grid-template-columns: 1fr; gap: 36px; }
  .how-it-works, .offers, .manifesto, .closing { padding: 80px 24px; }
  .digital-addon { flex-direction: column; gap: 8px; }
  .footer { padding: 48px 24px; }
}