:root {
  --bg: #F8F4EE;
  --fg: #1A1814;
  --fg-muted: #6B6659;
  --accent: #2C3E2D;
  --accent-warm: #8B6F47;
  --border: #E0D9CE;
  --surface: #FFFFFF;
}

*, *::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;
}

/* Navigation */
.nav {
  padding: 24px 48px;
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--fg);
}
.nav-tagline {
  font-size: 13px;
  color: var(--fg-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* Hero */
.hero {
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 48px 120px;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 32px;
}
.eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}
.eyebrow-text {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--fg-muted);
}
.hero-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(56px, 7vw, 96px);
  font-weight: 300;
  line-height: 1.05;
  color: var(--fg);
  margin-bottom: 32px;
  letter-spacing: -0.01em;
}
.hero-sub {
  font-size: 18px;
  color: var(--fg-muted);
  max-width: 540px;
  line-height: 1.7;
  margin-bottom: 48px;
  font-weight: 300;
}
.hero-badges {
  display: flex;
  align-items: center;
  gap: 12px;
}
.badge {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--fg-muted);
  border: 1px solid var(--border);
  padding: 6px 14px;
  border-radius: 100px;
}
.badge-sep { color: var(--border); font-size: 18px; }

/* Problem */
.problem {
  background: var(--fg);
  color: var(--bg);
  padding: 100px 48px;
}
.problem-inner { max-width: 1200px; margin: 0 auto; }
.problem-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(248,244,238,0.5);
  margin-bottom: 24px;
}
.problem-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 4.5vw, 60px);
  font-weight: 300;
  line-height: 1.15;
  margin-bottom: 72px;
  max-width: 780px;
}
.problem-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}
.problem-visual { margin-bottom: 20px; }
.problem-desc {
  font-size: 14px;
  color: rgba(248,244,238,0.5);
  text-align: center;
  letter-spacing: 0.02em;
}
.hanger-icon, .person-icon { display: flex; justify-content: center; color: rgba(248,244,238,0.4); }

/* Solution */
.solution {
  background: var(--surface);
  padding: 100px 48px;
}
.solution-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.solution-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 20px;
}
.solution-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--fg);
}
.solution-body {
  font-size: 16px;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 40px;
  font-weight: 300;
}
.solution-features { display: flex; flex-direction: column; gap: 16px; }
.solution-feature { display: flex; align-items: center; gap: 12px; }
.feature-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}
.feature-text { font-size: 15px; color: var(--fg-muted); }

.solution-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}
.card-video-placeholder {
  aspect-ratio: 4/3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 48px;
  background: var(--surface);
}
.video-label { font-size: 13px; color: var(--fg-muted); letter-spacing: 0.04em; }
.card-meta {
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--border);
}
.card-cat { font-size: 13px; color: var(--fg-muted); }
.card-price { font-size: 12px; color: var(--accent); text-transform: uppercase; letter-spacing: 0.06em; }

/* How it works */
.howitworks { padding: 100px 48px; background: var(--bg); }
.hiw-inner { max-width: 1200px; margin: 0 auto; }
.hiw-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--fg-muted);
  margin-bottom: 56px;
}
.hiw-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}
.hiw-step {}
.step-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  font-weight: 300;
  color: var(--accent-warm);
  display: block;
  margin-bottom: 16px;
  line-height: 1;
}
.step-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 12px;
  color: var(--fg);
  line-height: 1.3;
}
.step-desc { font-size: 14px; color: var(--fg-muted); line-height: 1.6; font-weight: 300; }

/* Manifesto */
.manifesto {
  padding: 100px 48px;
  background: var(--accent);
}
.manifesto-inner { max-width: 900px; margin: 0 auto; text-align: center; }
.manifesto-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 300;
  font-style: italic;
  line-height: 1.4;
  color: var(--bg);
  margin-bottom: 24px;
}
.manifesto-attr { font-size: 14px; color: rgba(248,244,238,0.5); letter-spacing: 0.04em; }

/* Footer */
.footer {
  padding: 64px 48px;
  border-top: 1px solid var(--border);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: end;
}
.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 500;
  color: var(--fg);
  display: block;
  margin-bottom: 8px;
}
.footer-tagline { font-size: 14px; color: var(--fg-muted); max-width: 300px; line-height: 1.5; }
.footer-links { display: flex; gap: 24px; }
.footer-link {
  font-size: 13px;
  color: var(--fg-muted);
  text-decoration: none;
  letter-spacing: 0.02em;
}
.footer-link:hover { color: var(--fg); }
.footer-copy { font-size: 12px; color: var(--fg-muted); grid-column: 1 / -1; }

/* Responsive */
@media (max-width: 768px) {
  .nav { padding: 20px 24px; }
  .hero { padding: 64px 24px 80px; }
  .hero-headline { font-size: 48px; }
  .problem { padding: 64px 24px; }
  .problem-headline { font-size: 32px; }
  .problem-split { grid-template-columns: 1fr; gap: 40px; }
  .solution { padding: 64px 24px; }
  .solution-inner { grid-template-columns: 1fr; gap: 48px; }
  .hiw-steps { grid-template-columns: 1fr; gap: 40px; }
  .manifesto { padding: 64px 24px; }
  .footer { padding: 48px 24px; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-links { flex-wrap: wrap; gap: 16px; }
}