/* GlowScript — Botanical luxury, editorial confidence */

:root {
  --bg: #FAF6F1;
  --bg-alt: #F0EAE2;
  --fg: #1A1A18;
  --fg-muted: #6B6460;
  --accent: #2D4A3E;
  --accent-light: #3D6354;
  --gold: #C9A84C;
  --gold-light: #D4BA6A;
  --border: #E2D9CE;
  --white: #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', sans-serif;
  font-weight: 300;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Navigation */
.nav {
  padding: 28px 48px;
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: baseline;
  gap: 16px;
}

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--fg);
  letter-spacing: -0.02em;
}

.nav-tagline {
  font-size: 12px;
  font-weight: 400;
  color: var(--fg-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-cta {
  margin-left: auto;
  font-size: 13px;
  font-weight: 500;
  color: var(--accent);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color 0.15s;
}

.nav-cta:hover {
  color: var(--accent-light);
}

/* Hero */
.hero {
  padding: 80px 48px 64px;
  background: var(--bg);
}

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

.hero-overline {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 20px;
}

.hero-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(52px, 7vw, 88px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 28px;
}

.hero-sub {
  font-size: 17px;
  color: var(--fg-muted);
  max-width: 560px;
  line-height: 1.65;
  margin-bottom: 32px;
  font-weight: 300;
}

.hero-cta {
  display: inline-block;
  padding: 16px 36px;
  background: var(--accent);
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  border-radius: 8px;
  margin-bottom: 48px;
  transition: background 0.15s, transform 0.1s;
}

.hero-cta:hover {
  background: var(--accent-light);
}

.hero-cta:active {
  transform: scale(0.98);
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: -0.02em;
}

.stat-label {
  font-size: 11px;
  color: var(--fg-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.3;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
  margin: 0 32px;
}

/* What it is */
.whatitis {
  padding: 80px 48px;
  background: var(--bg-alt);
}

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

.whatitis-label {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 16px;
}

.whatitis-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(38px, 5vw, 56px);
  font-weight: 700;
  color: var(--fg);
  letter-spacing: -0.025em;
  margin-bottom: 48px;
  line-height: 1.1;
}

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

.whatitis-card {
  background: var(--white);
  padding: 36px 32px;
}

.card-icon {
  color: var(--accent);
  margin-bottom: 20px;
}

.whatitis-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.whatitis-card p {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* How it works */
.howworks {
  padding: 80px 48px;
  background: var(--bg);
}

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

.howworks-label {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 16px;
}

.howworks-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(34px, 4.5vw, 52px);
  font-weight: 700;
  color: var(--fg);
  letter-spacing: -0.025em;
  margin-bottom: 56px;
  line-height: 1.15;
}

.steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
}

.step {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.step-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: -0.04em;
  line-height: 1;
}

.step-body h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 8px;
}

.step-body p {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.6;
}

.step-connector {
  flex: 0 0 40px;
  height: 1px;
  background: var(--border);
  margin: 24px 24px 0;
  align-self: flex-start;
  margin-top: 28px;
}

/* Manifesto */
.manifesto {
  padding: 96px 48px;
  background: var(--accent);
}

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

.manifesto-text blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(22px, 3.5vw, 34px);
  font-style: italic;
  color: #FAF6F1;
  line-height: 1.4;
  font-weight: 400;
  max-width: 760px;
  margin-bottom: 20px;
}

.manifesto-attribution {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(250, 246, 241, 0.5);
  font-weight: 500;
}

.manifesto-rule {
  width: 48px;
  height: 1px;
  background: var(--gold);
  margin: 40px 0;
}

.manifesto-bottom p {
  font-size: 15px;
  color: rgba(250, 246, 241, 0.75);
  max-width: 480px;
  line-height: 1.65;
}

/* Closing */
.closing {
  padding: 96px 48px;
  background: var(--bg);
}

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

.closing-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(40px, 5.5vw, 68px);
  font-weight: 700;
  color: var(--fg);
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 24px;
}

.closing-sub {
  font-size: 17px;
  color: var(--fg-muted);
  max-width: 520px;
  line-height: 1.65;
  margin-bottom: 48px;
}

.closing-vision p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-style: italic;
  color: var(--accent);
  max-width: 560px;
  line-height: 1.5;
}

.closing-cta {
  display: inline-block;
  margin-top: 40px;
  padding: 14px 32px;
  background: var(--accent);
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.15s;
}

.closing-cta:hover {
  background: var(--accent-light);
}

/* Footer */
.footer {
  padding: 40px 48px;
  border-top: 1px solid var(--border);
}

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

.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--fg);
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.footer-copy {
  font-size: 13px;
  color: var(--fg-muted);
}

/* Responsive */
@media (max-width: 768px) {
  .nav, .hero, .whatitis, .howworks, .manifesto, .closing, .footer {
    padding-left: 24px;
    padding-right: 24px;
  }

  .hero {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .hero-stats {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .stat-divider {
    display: none;
  }

  .whatitis-grid {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .steps {
    flex-direction: column;
    gap: 0;
  }

  .step-connector {
    display: none;
  }

  .step {
    border-left: 1px solid var(--border);
    padding-left: 20px;
    padding-bottom: 32px;
    margin-bottom: 32px;
  }

  .step:last-child {
    padding-bottom: 0;
    margin-bottom: 0;
    border-left: none;
  }

  .whatitis-headline {
    margin-bottom: 32px;
  }

  .howworks-headline {
    margin-bottom: 40px;
  }

  .manifesto {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .closing {
    padding-top: 64px;
    padding-bottom: 64px;
  }
}