/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green: #1a3c2a;
  --green-light: #2a5a3a;
  --cream: #faf7f2;
  --amber: #d4953e;
  --amber-light: #e8b460;
  --text: #2a2a2a;
  --text-muted: #6b6b6b;
  --border: rgba(26,60,42,0.12);
  --shadow: 0 4px 24px rgba(26,60,42,0.08);
}

body {
  font-family: 'DM Sans', system-ui, sans-serif;
  background: var(--cream);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ===== NAV ===== */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 247, 242, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 16px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--green);
  letter-spacing: -0.3px;
  text-decoration: none;
}
.nav-logo:hover { opacity: 0.8; }
.nav-link {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--green);
  text-decoration: none;
  letter-spacing: 0.3px;
  padding: 6px 12px;
  border-radius: 6px;
  transition: background 0.15s;
}
.nav-link:hover { background: rgba(26,60,42,0.06); }

/* ===== HERO ===== */
.hero {
  background: var(--cream);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 72px 32px 56px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 20px;
}
.hero-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700;
  color: var(--green);
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 24px;
}
.hero-lede {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.hero-sub {
  font-size: 15px;
  font-weight: 600;
  color: var(--green);
  border-left: 3px solid var(--amber);
  padding-left: 14px;
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}
.house-graphic {
  width: 100%;
  max-width: 360px;
}
.house-graphic svg {
  width: 100%;
  height: auto;
}

.hero-stats {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px 48px;
  display: flex;
  align-items: center;
  gap: 0;
}
.hero-stat {
  flex: 1;
  text-align: center;
  padding: 0 24px;
}
.hero-stat-num {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--green);
}
.hero-stat-label {
  display: block;
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 4px;
}
.hero-stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* ===== SHARED SECTION STYLES ===== */
section {
  border-bottom: 1px solid var(--border);
}
.section-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 12px;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  color: var(--green);
  line-height: 1.15;
  letter-spacing: -0.5px;
  margin-bottom: 12px;
}
.section-sub {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 540px;
}

/* ===== HOW IT WORKS ===== */
.howitworks {
  background: #fff;
}
.howitworks-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 32px;
}
.steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-top: 56px;
}
.step {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 0 24px;
}
.step-number {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--amber);
  line-height: 1;
  opacity: 0.6;
}
.step-title {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 8px;
}
.step-body {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.65;
}
.step-visual {
  width: 90px;
  height: 90px;
}
.step-visual svg {
  width: 100%;
  height: 100%;
}
.step-connector {
  padding-top: 48px;
  flex-shrink: 0;
}
.step-connector svg {
  width: 48px;
  height: 16px;
}
.howitworks-cta {
  margin-top: 48px;
  text-align: center;
  padding: 20px 32px;
  background: var(--green);
  border-radius: 8px;
}
.howitworks-cta p {
  font-size: 15px;
  color: rgba(255,255,255,0.85);
  font-weight: 500;
}

/* ===== GEO-LOCK ===== */
.geolock {
  background: var(--cream);
}
.geolock-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 32px;
}
.geolock-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--amber);
  border: 1.5px solid var(--amber);
  border-radius: 100px;
  padding: 5px 14px;
  margin-bottom: 24px;
}
.geo-visual {
  margin: 48px 0 32px;
}
.geo-visual svg {
  width: 100%;
  height: auto;
}
.geo-note {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 560px;
}

/* ===== CASE STUDY ===== */
.casestudy {
  background: var(--green);
  color: #fff;
}
.casestudy-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 32px;
}
.casestudy-label {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 40px;
}
.cs-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--amber);
  border: 1.5px solid var(--amber);
  border-radius: 100px;
  padding: 5px 14px;
}
.cs-title {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  color: rgba(255,255,255,0.7);
  font-style: italic;
}
.cs-quote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(22px, 3vw, 32px);
  line-height: 1.4;
  color: #fff;
  font-style: italic;
  margin-bottom: 20px;
}
.cs-detail {
  font-size: 16px;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  max-width: 560px;
  margin-bottom: 20px;
}
.cs-result {
  font-size: 16px;
  color: rgba(255,255,255,0.8);
}
.cs-result strong {
  color: var(--amber-light);
}
.cs-metric {
  display: flex;
  gap: 48px;
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.15);
}
.cs-metric-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.cs-metric-num {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--amber-light);
}
.cs-metric-label {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ===== MANIFESTO ===== */
.manifesto {
  background: #fff;
}
.manifesto-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 96px 32px;
}
.manifesto-icon {
  margin-bottom: 32px;
}
.manifesto-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 700;
  color: var(--green);
  line-height: 1.2;
  letter-spacing: -0.5px;
  max-width: 680px;
  margin-bottom: 28px;
}
.manifesto-body {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 620px;
  margin-bottom: 20px;
}
.manifesto-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 40px;
}
.tag {
  font-size: 12px;
  font-weight: 600;
  color: var(--green);
  background: rgba(26,60,42,0.07);
  border-radius: 100px;
  padding: 5px 14px;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--cream);
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--green);
  display: block;
  margin-bottom: 6px;
}
.footer-tagline {
  font-size: 13px;
  color: var(--text-muted);
}
.footer-copy {
  font-size: 13px;
  color: var(--text-muted);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 48px 24px 40px;
  }
  .hero-visual {
    order: -1;
  }
  .house-graphic {
    max-width: 280px;
  }
  .hero-stats {
    flex-direction: column;
    gap: 16px;
    padding: 0 24px 40px;
  }
  .hero-stat-divider {
    width: 60px;
    height: 1px;
  }
  .steps {
    flex-direction: column;
    gap: 40px;
  }
  .step-connector {
    display: none;
  }
  .step {
    padding: 0;
  }
  .step-visual {
    width: 70px;
    height: 70px;
  }
  .cs-metric {
    gap: 24px;
    flex-wrap: wrap;
  }
  .footer-inner {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
  .casestudy-inner,
  .howitworks-inner,
  .geolock-inner,
  .manifesto-inner {
    padding: 56px 24px;
  }
  .nav-inner {
    padding: 14px 24px;
  }
  .channels-strip-link {
    padding: 12px 22px;
  }
}

/* ===== CHANNELS STRIP ===== */
.channels-strip {
  background: var(--cream);
  border-bottom: 1px solid var(--border);
}
.channels-strip-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 36px 32px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.channels-strip-link {
  display: inline-block;
  padding: 14px 26px;
  background: var(--green);
  color: #fff;
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 15px;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  letter-spacing: 0.3px;
  transition: background 0.15s, transform 0.1s;
}
.channels-strip-link:hover { background: var(--green-light); }
.channels-strip-link:active { transform: scale(0.99); }