/* ── Variables ── */
:root {
  --bg: #f8f4ee;
  --bg-alt: #f0ebe2;
  --fg: #1a2e1a;
  --fg-muted: #5a6e5a;
  --accent: #d4a853;
  --accent-dark: #b8892e;
  --forest: #1a3a2f;
  --cream: #f8f4ee;
  --warm-gray: #c8c0b4;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', system-ui, sans-serif;
  background: var(--bg);
  color: var(--fg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 600;
  line-height: 1.15;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* ── Typography ── */
.section-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

/* ── Nav ── */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(248, 244, 238, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(200, 192, 180, 0.4);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  align-items: baseline;
  gap: 1.5rem;
}
.nav-logo {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--forest);
}
.nav-tagline {
  font-size: 0.875rem;
  color: var(--fg-muted);
  font-weight: 300;
}

/* ── Hero ── */
.hero {
  min-height: 92vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
}
.hero-image-wrap {
  overflow: hidden;
  position: relative;
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem 4rem 4rem 5rem;
  background: var(--cream);
}
.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
}
.hero-headline {
  font-size: clamp(3rem, 5vw, 4.5rem);
  font-weight: 700;
  color: var(--forest);
  margin-bottom: 1.5rem;
  line-height: 1.05;
}
.hero-lede {
  font-size: 1.125rem;
  color: var(--fg-muted);
  max-width: 38ch;
  line-height: 1.7;
}

/* ── Signals ── */
.signals {
  background: var(--forest);
  color: var(--cream);
  padding: 7rem 2rem;
}
.signals-inner { max-width: 1200px; margin: 0 auto; }
.signals-header { max-width: 52ch; margin-bottom: 4rem; }
.signals-header .section-label { color: var(--accent); }
.signals-title {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 1rem;
}
.signals-sub {
  font-size: 1.05rem;
  color: rgba(248, 244, 238, 0.65);
  line-height: 1.7;
}
.signals-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
}
.signal-card {
  background: rgba(248, 244, 238, 0.06);
  border: 1px solid rgba(248, 244, 238, 0.1);
  padding: 2.5rem;
}
.signal-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(212, 168, 83, 0.12);
  border-radius: 8px;
  margin-bottom: 1.5rem;
}
.signal-card h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 0.75rem;
}
.signal-card p {
  font-size: 0.9rem;
  color: rgba(248, 244, 238, 0.6);
  line-height: 1.7;
}

/* ── Vigilance ── */
.vigilance {
  background: var(--bg);
  padding: 7rem 2rem;
}
.vigilance-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.vigilance-title {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  color: var(--forest);
  margin-bottom: 1.5rem;
}
.vigilance-body {
  font-size: 1rem;
  color: var(--fg-muted);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}
.vigilance-body strong { color: var(--fg); }
.vigilance-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 2px;
}

/* ── How It Works ── */
.how {
  background: var(--bg-alt);
  padding: 7rem 2rem;
}
.how-inner { max-width: 1200px; margin: 0 auto; }
.how-title {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  color: var(--forest);
  margin-bottom: 3.5rem;
}
.how-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
}
.step { position: relative; }
.step-num {
  font-family: 'Fraunces', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: rgba(26, 58, 47, 0.12);
  line-height: 1;
  margin-bottom: 1rem;
  display: block;
}
.step h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 0.75rem;
}
.step p {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* ── Manifesto / Pricing ── */
.manifesto {
  background: var(--cream);
  padding: 7rem 2rem;
}
.manifesto-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.manifesto-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 2px;
}
.manifesto-title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--forest);
  margin-bottom: 2.5rem;
}
.pricing-tiers {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}
.tier {
  border: 1px solid var(--warm-gray);
  border-radius: 2px;
  padding: 1.75rem;
}
.tier-featured {
  border-color: var(--forest);
  background: var(--forest);
}
.tier-name {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.5rem;
}
.tier-price {
  font-family: 'Fraunces', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--forest);
  margin-bottom: 0.75rem;
}
.tier-price span {
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: var(--fg-muted);
}
.tier-featured .tier-price { color: var(--cream); }
.tier p {
  font-size: 0.875rem;
  color: var(--fg-muted);
  line-height: 1.6;
}
.tier-featured p { color: rgba(248, 244, 238, 0.7); }
.manifesto-note {
  font-size: 0.8rem;
  color: var(--fg-muted);
}

/* ── Closing ── */
.closing { position: relative; overflow: hidden; }
.closing-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
}
.closing-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(26, 58, 47, 0.85) 40%, rgba(26, 58, 47, 0.4) 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3rem 5rem;
}
.closing-headline {
  font-size: clamp(1.5rem, 2.5vw, 2.25rem);
  font-weight: 700;
  color: var(--cream);
  max-width: 22ch;
  margin-bottom: 1rem;
}
.closing-sub {
  font-size: 1rem;
  color: rgba(248, 244, 238, 0.7);
}

/* ── Footer ── */
.site-footer {
  background: var(--forest);
  padding: 3rem 2rem;
}
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-brand {
  font-family: 'Fraunces', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 0.5rem;
}
.footer-note {
  font-size: 0.875rem;
  color: rgba(248, 244, 238, 0.5);
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-image-wrap { height: 50vw; }
  .hero-content { padding: 3rem 2rem; }
  .signals-grid { grid-template-columns: 1fr; }
  .vigilance-inner, .manifesto-inner { grid-template-columns: 1fr; gap: 2rem; }
  .how-steps { grid-template-columns: 1fr 1fr; }
  .pricing-tiers { grid-template-columns: 1fr; }
  .closing-overlay { padding: 2rem; }
}
@media (max-width: 600px) {
  .hero-headline { font-size: 2.5rem; }
  .how-steps { grid-template-columns: 1fr; }
  .nav-tagline { display: none; }
  .signals, .vigilance, .how, .manifesto { padding: 5rem 1.5rem; }
  .closing-overlay { background: rgba(26, 58, 47, 0.7); }
}