:root {
  --bg: #FDFAF6;
  --bg-alt: #F4EFE6;
  --sage: #6B8F71;
  --sage-light: #8FAF96;
  --terracotta: #C4704F;
  --cream: #FAF6F0;
  --charcoal: #2C2825;
  --warm-gray: #7A756E;
  --border: #E2DAD0;
  --white: #FFFFFF;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;

  --space-xs: 0.5rem;
  --space-sm: 0.75rem;
  --space-md: 1.25rem;
  --space-lg: 2rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--charcoal);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Nav */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.25rem 2.5rem;
  background: rgba(253, 250, 246, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--charcoal);
  letter-spacing: -0.01em;
}

/* Hero */
.hero {
  padding: 8rem 2.5rem 5rem;
  min-height: 100vh;
  display: flex;
  align-items: center;
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 1.25rem;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--charcoal);
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}
.hero-sub {
  font-size: 1.0625rem;
  color: var(--warm-gray);
  max-width: 480px;
  line-height: 1.7;
  font-weight: 300;
}
.hero-image {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(44,40,37,0.12);
  aspect-ratio: 4/5;
}
.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-image-mobile { display: none; }

/* Features */
.features {
  background: var(--bg-alt);
  padding: var(--space-2xl) 2.5rem;
}
.features-inner { max-width: 1200px; margin: 0 auto; }
.features-label {
  margin-bottom: 3.5rem;
}
.features-label span {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--terracotta);
}
.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}
.feature-card {
  background: var(--bg);
  padding: 3rem;
}
.feature-card-offset {
  background: var(--cream);
}
.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sage);
  margin-bottom: 1.5rem;
}
.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 0.875rem;
  letter-spacing: -0.01em;
}
.feature-card p {
  font-size: 0.9375rem;
  color: var(--warm-gray);
  line-height: 1.7;
  font-weight: 300;
}

/* How It Works */
.howitworks {
  padding: var(--space-2xl) 2.5rem;
}
.howitworks-inner { max-width: 1200px; margin: 0 auto; }
.howitworks-header { text-align: center; margin-bottom: 4rem; }
.howitworks-header .eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sage);
  display: block;
  margin-bottom: 1rem;
}
.howitworks-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 400;
  color: var(--charcoal);
  letter-spacing: -0.02em;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.2;
}
.steps {
  display: flex;
  align-items: center;
  gap: 0;
  max-width: 900px;
  margin: 0 auto;
}
.step {
  flex: 1;
  padding: 0 2.5rem;
}
.step:first-child { padding-left: 0; }
.step:last-child { padding-right: 0; }
.step-num {
  display: block;
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 300;
  color: var(--sage-light);
  opacity: 0.5;
  margin-bottom: 1rem;
  line-height: 1;
}
.step h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}
.step p {
  font-size: 0.875rem;
  color: var(--warm-gray);
  line-height: 1.65;
  font-weight: 300;
}
.step-divider {
  width: 1px;
  height: 80px;
  background: var(--border);
  flex-shrink: 0;
}

/* Manifesto */
.manifesto {
  background: var(--sage);
  padding: var(--space-2xl) 2.5rem;
}
.manifesto-inner { max-width: 780px; margin: 0 auto; }
.manifesto-quote {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1.4;
  margin-bottom: 2rem;
  font-style: italic;
  letter-spacing: -0.01em;
}
.manifesto-quote p { color: inherit; }
.manifesto-body {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.75;
  font-weight: 300;
  margin-bottom: 1.25rem;
}
.manifesto-body:last-child { margin-bottom: 0; }

/* Closing */
.closing {
  padding: var(--space-2xl) 2.5rem;
  background: var(--bg);
  text-align: center;
}
.closing-inner { max-width: 700px; margin: 0 auto; }
.closing h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 400;
  color: var(--charcoal);
  line-height: 1.15;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}
.closing-sub {
  font-size: 1rem;
  color: var(--warm-gray);
  line-height: 1.7;
  font-weight: 300;
  max-width: 500px;
  margin: 0 auto;
}

/* Footer */
.footer {
  border-top: 1px solid var(--border);
  padding: 2.5rem;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--charcoal);
  display: block;
  margin-bottom: 0.5rem;
}
.footer-brand p {
  font-size: 0.8125rem;
  color: var(--warm-gray);
  font-weight: 300;
}
.footer-copy {
  font-size: 0.8125rem;
  color: var(--warm-gray);
  font-weight: 300;
}

/* Responsive */
@media (max-width: 768px) {
  .nav { padding: 1rem 1.5rem; }
  .hero { padding: 6rem 1.5rem 4rem; }
  .hero-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-image { display: none; }
  .hero-image-mobile { display: block; margin-top: 2rem; border-radius: 10px; overflow: hidden; }
  .hero-image-mobile img { width: 100%; aspect-ratio: 16/9; object-fit: cover; display: block; }
  .hero-headline { font-size: 2.25rem; }
  .features { padding: 4rem 1.5rem; }
  .features-grid { grid-template-columns: 1fr; gap: 2px; }
  .feature-card { padding: 2rem; }
  .howitworks { padding: 4rem 1.5rem; }
  .steps { flex-direction: column; gap: 2rem; }
  .step { padding: 0; }
  .step-divider { display: none; }
  .manifesto { padding: 4rem 1.5rem; }
  .closing { padding: 4rem 1.5rem; }
  .footer { padding: 2rem 1.5rem; }
  .footer-inner { flex-direction: column; gap: 1rem; text-align: center; }
}

@media (max-width: 480px) {
  .hero-headline { font-size: 1.875rem; }
  .closing h2 { font-size: 1.75rem; }
}
