/* ── Variables ── */
:root {
  --bg: #111111;
  --surface: #1a1a1a;
  --fg: #f0ebe0;
  --fg-muted: #9a918a;
  --accent: #b87333;
  --accent-dim: rgba(184, 115, 51, 0.18);
  --cream: #f0ebe0;

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

  --space-1: 0.5rem;
  --space-2: 1rem;
  --space-3: 1.5rem;
  --space-4: 2.5rem;
  --space-5: 4rem;
  --space-6: 6rem;
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* ── Typography ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--fg-muted); border-radius: 3px; }

/* ── Nav ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  padding: 1.5rem 3rem;
  background: linear-gradient(to bottom, rgba(17,17,17,0.96) 0%, transparent 100%);
}
.nav__wordmark {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  color: var(--fg);
  text-transform: uppercase;
}

/* ── Hero ── */
.hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 8rem 2rem 4rem;
  position: relative;
}

.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
}
.eyebrow__line {
  display: block;
  width: 40px;
  height: 1px;
  background: var(--accent);
}
.eyebrow__text {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
}

.hero__headline {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 8vw, 7rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--cream);
  margin-bottom: 2rem;
}
.hero__headline em {
  font-style: italic;
  color: var(--accent);
}

.hero__sub {
  font-size: 1.05rem;
  color: var(--fg-muted);
  max-width: 520px;
  margin-bottom: 3rem;
  line-height: 1.75;
}

.hero__rule {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  margin: 0 auto 2rem;
}

.hero__scroll-hint {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--fg-muted);
}
.scroll-hint__text {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.scroll-hint__arrow {
  animation: bob 2s ease-in-out infinite;
  color: var(--fg-muted);
}
@keyframes bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

/* ── Manifesto ── */
.manifesto {
  padding: var(--space-6) 3rem;
  border-top: 1px solid rgba(240, 235, 224, 0.08);
  border-bottom: 1px solid rgba(240, 235, 224, 0.08);
}
.manifesto__inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 4rem;
}
.manifesto__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}
.manifesto__num {
  font-family: var(--font-display);
  font-size: 5rem;
  font-weight: 300;
  color: var(--accent);
  line-height: 1;
}
.manifesto__unit {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-top: 0.25rem;
}
.manifesto__divider {
  width: 1px;
  height: 80px;
  background: rgba(240, 235, 224, 0.12);
  flex-shrink: 0;
}
.manifesto__text-col { }
.manifesto__quote {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-style: italic;
  font-weight: 300;
  line-height: 1.55;
  color: var(--cream);
  margin-bottom: 1rem;
}
.manifesto__conclusion {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.6;
}
.manifesto__conclusion em {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--accent);
}

/* ── Features ── */
.features {
  padding: var(--space-6) 3rem;
}
.section-header {
  max-width: 680px;
  margin: 0 auto 4rem;
  text-align: center;
}
.section-header__label {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}
.section-header__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.15;
}

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

.feature-card {
  background: var(--surface);
  padding: 2.5rem 2rem;
  border: 1px solid rgba(240, 235, 224, 0.06);
  transition: border-color 0.3s ease;
}
.feature-card:hover {
  border-color: var(--accent-dim);
}

.feature-card__icon {
  color: var(--accent);
  margin-bottom: 1.5rem;
}
.feature-card__title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 0.75rem;
}
.feature-card__body {
  font-size: 0.85rem;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* ── Outcomes ── */
.outcomes {
  padding: var(--space-6) 3rem;
  background: var(--surface);
  border-top: 1px solid rgba(240, 235, 224, 0.06);
  border-bottom: 1px solid rgba(240, 235, 224, 0.06);
}
.outcomes__inner {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: start;
}
.outcomes__label {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
}
.outcomes__title {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 300;
  line-height: 1.2;
  color: var(--cream);
}
.outcomes__title em {
  font-style: italic;
  color: var(--accent);
}

.outcomes__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.outcomes__item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  font-size: 0.92rem;
  color: var(--fg-muted);
  line-height: 1.55;
}
.outcomes__dash {
  display: block;
  width: 16px;
  height: 1px;
  background: var(--accent);
  flex-shrink: 0;
  margin-top: 0.7em;
}

/* ── Closing ── */
.closing {
  padding: var(--space-6) 3rem;
  text-align: center;
}
.closing__inner {
  max-width: 620px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.closing__body {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--fg-muted);
}
.closing__body--emph {
  font-style: italic;
  color: var(--cream);
  font-size: 1.6rem;
}

/* ── Footer ── */
.footer {
  padding: 2.5rem 3rem;
  border-top: 1px solid rgba(240, 235, 224, 0.06);
}
.footer__inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.footer__wordmark {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg);
}
.footer__tagline {
  font-size: 0.72rem;
  color: var(--fg-muted);
}
.footer__meta {
  font-size: 0.72rem;
  color: var(--fg-muted);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.footer__sep { color: rgba(240, 235, 224, 0.2); }

/* ── Responsive ── */
@media (max-width: 768px) {
  .nav { padding: 1.25rem 1.5rem; }
  .hero { padding: 7rem 1.5rem 3rem; }
  .manifesto { padding: 4rem 1.5rem; }
  .manifesto__inner { flex-direction: column; gap: 2rem; text-align: center; }
  .manifesto__stat { flex-direction: row; gap: 0.75rem; }
  .manifesto__num { font-size: 3.5rem; }
  .manifesto__divider { width: 60px; height: 1px; }
  .features { padding: 4rem 1.5rem; }
  .features__grid { grid-template-columns: 1fr; gap: 1px; }
  .outcomes { padding: 4rem 1.5rem; }
  .outcomes__inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .closing { padding: 4rem 1.5rem; }
  .footer { padding: 2rem 1.5rem; }
  .footer__inner { flex-direction: column; gap: 1rem; align-items: flex-start; }
}