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

:root {
  --bg: #0a1a0f;
  --bg2: #111f14;
  --green: #1c3a22;
  --gold: #d4a843;
  --gold-dim: #8a6c2a;
  --white: #f2ede4;
  --muted: #7a8a7d;
  --light: #f5f0e8;
  --light-alt: #ede8df;
  --light-card: #ddd8cf;
  --text-dark: #0a1a0f;
  --muted-light: #4a5e4f;
  --mid-green: #1c3a22;
  --mid-green-card: #254d2e;
  --muted-green: #a0b89a;
  --font-display: 'Bebas Neue', sans-serif;
  --font-body: 'Space Grotesk', sans-serif;
  --font-mono: 'DM Mono', monospace;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  overflow-x: hidden;
}

img { display: block; width: 100%; height: 100%; object-fit: cover; }

a { text-decoration: none; }

/* ===== ACCESSIBILITY ===== */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ===== UTILITIES ===== */
.gold { color: var(--gold); }
.muted { color: var(--muted); }

.label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 24px;
}

.section {
  padding: 120px 0;
}

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 60px;
}

.dark-bg {
  background: var(--light-alt);
}

.section-headline {
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 88px);
  line-height: 0.95;
  letter-spacing: 0.01em;
  color: var(--white);
  margin-bottom: 48px;
}

/* Light section headline override — s2 and s4 are dark, keep white */
.s1 .section-headline,
.s3 .section-headline,
.s5 .section-headline,
.s6 .section-headline {
  color: var(--text-dark);
}


/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-block;
  background: var(--gold);
  color: #0a1a0f;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.06em;
  padding: 14px 28px;
  transition: background 0.2s;
}
.btn-primary:hover { background: #e8bc5a; }

.btn-ghost {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.06em;
  color: var(--muted);
  border: 1px solid var(--muted);
  padding: 13px 28px;
  transition: color 0.2s, border-color 0.2s;
}
.btn-ghost:hover { color: var(--white); border-color: var(--white); }

/* Hero secondary button — gold ghost */
.hero .btn-ghost {
  color: #d4a843;
  border: 2px solid #d4a843;
  background: transparent;
}
.hero .btn-ghost:hover { color: var(--bg); background: #d4a843; border-color: #d4a843; }

.btn-ghost-gold {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.06em;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 13px 28px;
  background: transparent;
  margin-top: 16px;
  transition: background 0.2s, color 0.2s;
}
.btn-ghost-gold:hover { background: var(--gold); color: var(--bg); }

.btn-ghost-block {
  display: block;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.06em;
  color: var(--muted);
  margin-top: 20px;
  transition: color 0.2s;
}
.btn-ghost-block:hover { color: var(--white); }

/* ===== NAV ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 60px;
  background: #0d2411;
  backdrop-filter: blur(4px);
  border-bottom: 1px solid rgba(212, 168, 67, 0.30);
}

.nav-logo {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--gold);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #7a8a7d;
  text-decoration: none;
  transition: color 0.2s;
}
.nav-link:hover { color: var(--gold); }

.nav-cta {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
  padding: 10px 20px;
  transition: background 0.2s, color 0.2s;
}
.nav-cta:hover { background: var(--gold); color: var(--bg); }

/* ===== HERO ===== */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  padding-top: 64px;
}

/* Text-only hero variant (index page) */
.hero-text-only {
  grid-template-columns: 1fr;
  background: #0a1a0f;
  align-items: center;
}
.hero-text-only .hero-ghost {
  position: absolute;
  right: -2%;
  left: auto;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-size: clamp(200px, 28vw, 420px);
  color: var(--light);
  opacity: 0.07;
  pointer-events: none;
  z-index: 0;
  line-height: 1;
  user-select: none;
}
.hero-text-only .hero-left {
  padding: 160px 80px 120px;
  max-width: 1400px;
  position: relative;
  z-index: 1;
}
.hero-text-only .hero-headline {
  font-size: clamp(4rem, 10vw, 9rem);
  margin-bottom: 40px;
}

.hero-ghost {
  position: absolute;
  left: -2%;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-size: clamp(200px, 28vw, 400px);
  color: var(--green);
  opacity: 0.35;
  pointer-events: none;
  z-index: 1;
  line-height: 1;
  user-select: none;
}

.hero-left {
  background: var(--bg);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 140px 60px 80px 60px;
  position: relative;
  z-index: 2;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(64px, 9vw, 130px);
  line-height: 0.93;
  letter-spacing: 0.01em;
  color: var(--white);
  margin-bottom: 28px;
}


.hero-sub {
  font-family: var(--font-display);
  font-size: clamp(52px, 6.5vw, 90px);
  color: #f2ede4 !important;
  line-height: 1.0;
  margin-bottom: 32px;
  letter-spacing: 0.02em;
}

.hero-body {
  font-size: 16px;
  color: var(--white);
  max-width: 480px;
  border-left: 2px solid var(--gold);
  padding-left: 20px;
  margin-bottom: 40px;
  line-height: 1.7;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.hero-right {
  position: relative;
  overflow: hidden;
}

.hero-right img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--bg) 0%, rgba(10,26,15,0.5) 40%, transparent 100%);
  z-index: 1;
  pointer-events: none;
}

/* ===== HERO ANIMATIONS ===== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

.fade-up {
  opacity: 0;
  animation: fadeUp 0.8s ease forwards;
}
.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }

/* ===== TICKER ===== */
.ticker {
  background: #060f09;
  border-top: 1px solid rgba(212,168,67,0.15);
  border-bottom: 1px solid rgba(212,168,67,0.15);
  padding: 18px 0;
  overflow: hidden;
  white-space: nowrap;
}

@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.ticker-track {
  display: inline-block;
  animation: ticker-scroll 30s linear infinite;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--muted);
  text-transform: uppercase;
}

.ticker-track span { padding: 0 20px; }
.ticker-track .dot { color: var(--gold); padding: 0 4px; }

/* ===== SECTION 1 SCROLL ANIMATION ===== */
.anim-line {
  display: block;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.anim-para {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.anim-line.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.anim-para.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== SECTION 1 ===== */
.s1 { background: var(--light); padding: 72px 0; }

.s1 .section-inner {
  max-width: 820px;
}

.s1 .section-headline {
  font-size: clamp(48px, 5.5vw, 72px);
}

.s1-body {
  max-width: 100%;
}

.s1-body p {
  color: var(--muted-light);
  margin-bottom: 20px;
}

.s1-closing {
  color: var(--text-dark) !important;
  font-style: italic;
  font-size: 1.2rem;
  margin-top: 2.5rem !important;
}

/* ===== SECTION 2 ===== */
.s2 { background: var(--bg); }

.s2-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.s2-left p {
  color: var(--muted);
  margin-bottom: 20px;
  max-width: 480px;
}

.s2-right {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.s2-img {
  width: 100%;
  overflow: hidden;
}

.ratio-4-3 { aspect-ratio: 4/3; }
.ratio-16-9 { aspect-ratio: 16/9; }
.ratio-3-4 { aspect-ratio: 3/4; }


/* ===== SECTION 3 ===== */
.s3 { background: var(--light); padding: 72px 0; }

.s3-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.s3-right {
  position: sticky;
  top: 64px;
  height: calc(100vh - 64px);
  overflow: hidden;
}

.s3-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
  display: block;
}

.s3-headline {
  font-size: clamp(40px, 5vw, 72px);
}

.s3-sub {
  color: var(--muted-light);
  max-width: 520px;
  margin-bottom: 56px;
  font-size: 16px;
}

.cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-bottom: 56px;
}

.card {
  background: var(--light-card);
  padding: 1.5rem;
}

.cards-grid .card {
  border-left: 4px solid #d4a843 !important;
  padding: 16px;
}

.card p {
  color: var(--text-dark);
  font-size: 1rem;
  line-height: 1.6;
}

.s3-closing {
  font-style: italic;
  color: var(--text-dark);
  max-width: 540px;
  font-size: 16px;
}

/* ===== SECTION 4 ===== */
.s4 { background: var(--mid-green); }

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

.step-card {
  background: var(--mid-green-card);
  border-top: 2px solid var(--gold);
  padding: 36px 28px;
}

.step-card-img {
  margin: -36px -28px 24px -28px;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.step-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.step-num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  color: var(--gold);
  display: block;
  margin-bottom: 12px;
}

.step-card h3 {
  font-family: var(--font-display);
  font-size: 32px;
  line-height: 1;
  letter-spacing: 0.02em;
  color: var(--white);
  margin-bottom: 16px;
}

.step-card p {
  color: var(--muted-green);
  font-size: 15px;
  line-height: 1.6;
}

.testimonials {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

blockquote p {
  color: var(--white);
  font-size: 16px;
  line-height: 1.65;
  font-style: italic;
  margin-bottom: 12px;
}

blockquote cite {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--muted-green);
  font-style: normal;
}

/* ===== SECTION 5 ===== */
.s5 { background: var(--light); }

.s5-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}

.s5-img {
  width: 100%;
  overflow: hidden;
}

.s5-right p {
  color: var(--muted-light);
  margin-bottom: 20px;
  max-width: 500px;
}

.trusted {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--light-card);
}

.trusted .label {
  margin-bottom: 12px;
}

.trusted-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--muted-light);
  text-transform: uppercase;
}

/* ===== SECTION 6 ===== */
.s6 { padding: 72px 0; }

.who-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.who-item {
  display: flex;
  gap: 16px;
  align-items: baseline;
  padding: 1.2rem 0;
  border-bottom: 1px solid #c8c3ba;
  font-size: 16px;
  color: var(--text-dark);
}

.who-item:nth-child(odd) { padding-right: 40px; }
.who-item:nth-child(even) { padding-left: 40px; border-left: 1px solid #c8c3ba; }

.arrow {
  font-family: var(--font-mono);
  font-size: 14px;
  flex-shrink: 0;
}

/* ===== CTA SECTION ===== */
.s-cta {
  position: relative;
  overflow: hidden;
  text-align: center;
}

.cta-ghost {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-size: clamp(180px, 25vw, 360px);
  color: var(--green);
  opacity: 0.35;
  pointer-events: none;
  z-index: 0;
  line-height: 1;
  user-select: none;
}

.cta-inner {
  position: relative;
  z-index: 1;
}

.cta-headline {
  font-family: var(--font-display);
  font-size: clamp(52px, 7vw, 100px);
  line-height: 0.95;
  letter-spacing: 0.01em;
  color: var(--white);
  margin-bottom: 48px;
}

/* ===== FOOTER ===== */
.newsletter-signup {
  border-top: 1px solid rgba(212,168,67,0.25);
  padding-top: 32px;
}

.newsletter-label {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--muted);
  margin-bottom: 16px;
  max-width: 480px;
}

.newsletter-bar {
  background: #060f09;
  border-top: 1px solid rgba(212,168,67,0.12);
  padding: 40px 60px;
}

.newsletter-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.newsletter-bar .newsletter-label {
  margin-bottom: 0;
  flex: 1;
  min-width: 200px;
}

.footer {
  background: #060f09;
  border-top: 1px solid rgba(212,168,67,0.12);
  padding: 28px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-left {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  color: var(--gold);
  text-transform: uppercase;
}

.footer-right {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--muted);
}

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .section-inner { padding: 0 24px; }
  .section { padding: 80px 0; }
  .nav { padding: 16px 24px; }

  /* Hero stacks vertically */
  .hero {
    grid-template-columns: 1fr;
    grid-template-rows: auto 55vw;
    min-height: auto;
  }
  .hero-text-only {
    grid-template-rows: auto;
    min-height: 100vh;
  }
  .hero-text-only .hero-left { padding: 120px 24px 80px; }
  .hero-ghost { font-size: 40vw; top: 20%; }
  .hero-left { padding: 100px 24px 60px; }
  .hero-right { position: relative; }
  .hero-overlay {
    background: linear-gradient(to bottom, transparent 60%, var(--bg) 100%);
  }

  /* Section 2 */
  .s2-grid { grid-template-columns: 1fr; gap: 40px; }

  /* Section 3 */
  .s3-grid { grid-template-columns: 1fr; }
  .s3-right { position: relative; top: auto; height: 60vw; }
  .cards-grid { grid-template-columns: 1fr; }

  /* Section 4 steps */
  .steps-grid { grid-template-columns: 1fr; }
  .testimonials { grid-template-columns: 1fr; gap: 32px; }

  /* Section 5 */
  .s5-grid { grid-template-columns: 1fr; gap: 40px; }
  .s5-img { max-width: 400px; }

  /* Section 6 */
  .who-grid { grid-template-columns: 1fr; }
  .who-item:nth-child(even) { padding-left: 0; border-left: none; }
  .who-item:nth-child(odd) { padding-right: 0; }

  /* Nav */
  .nav-links { gap: 16px; }
  .nav-link { display: none; }

  /* Footer */
  .footer { flex-direction: column; align-items: flex-start; padding: 24px; }

  /* CTA ghost */
  .cta-ghost { font-size: 35vw; }
}

@media (max-width: 600px) {
  .section-headline { font-size: clamp(36px, 10vw, 64px); }
  .hero-headline { font-size: clamp(52px, 14vw, 100px); }
  .cta-headline { font-size: clamp(40px, 12vw, 80px); }
  .hero-ctas { flex-direction: column; align-items: flex-start; }
  .hero-ctas .btn-ghost { width: auto; }
}

/* ===== ORGANISATIONS PAGE ===== */

/* Hero headline override — longer lines need smaller font */
.org-hero-hl {
  font-size: clamp(2rem, 5vw, 4.5rem);
}

/* Section backgrounds */
.org-s1 { background: var(--light); padding: 72px 0; }
.org-s2 { background: var(--bg); }
.org-s3 { background: var(--light); padding: 72px 0; }
.org-s4 { background: var(--mid-green); }
.org-s5 { background: var(--light-alt); padding: 72px 0; }

/* Headlines on light sections need dark text */
.org-s1 .section-headline,
.org-s3 .section-headline,
.org-s5 .section-headline {
  color: var(--text-dark);
}

/* Body text */
.org-body {
  max-width: 580px;
}

.org-body p {
  color: var(--muted-light);
  margin-bottom: 20px;
}

.org-closing {
  color: var(--text-dark) !important;
  font-style: italic;
  font-size: 1.1rem;
  margin-top: 2rem !important;
}

/* Section 03 — testimonials on cream background */
.org-quote {
  border-left: 2px solid var(--gold);
  padding-left: 24px;
}

.org-quote p {
  color: var(--text-dark);
  font-size: 16px;
  line-height: 1.65;
  font-style: italic;
  margin-bottom: 12px;
}

.org-quote cite {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--muted-light);
  font-style: normal;
}

/* Large gold callout line in section 01 */
.org-callout {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 48px);
  color: var(--gold);
  line-height: 1.0;
  letter-spacing: 0.01em;
  margin-bottom: 20px !important;
}

/* Three-column testimonials */
.testimonials-3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 900px) { .testimonials-3 { grid-template-columns: 1fr; } }

/* Compact step cards for How To Get Started */
.steps-grid-compact { margin-bottom: 0; }
.steps-grid-compact .step-card { padding: 16px; }
.steps-grid-compact .step-card h3 { font-size: 16px; margin-bottom: 6px; letter-spacing: 0.08em; }
.steps-grid-compact .step-num { font-size: 20px; margin-bottom: 4px; }
.steps-grid-compact .step-card p { font-size: 12px; line-height: 1.55; margin-bottom: 0; }

/* Themes line in section 02 */
.org-themes {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.5vw, 36px);
  color: var(--gold);
  line-height: 1.1;
  letter-spacing: 0.02em;
  margin-bottom: 8px;
}

/* Theme chips */
.themes-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 12px;
  margin-top: 28px;
}
.themes-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}
.theme-chip {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--gold);
  border: 1px solid var(--gold);
  background: transparent;
  padding: 5px 12px;
  border-radius: 2px;
}

/* Section 05 action button */
.steps-cta {
  margin-top: 32px;
}

/* Section 06 body */
.org-who-body {
  color: var(--muted-light);
  max-width: 600px;
  margin-bottom: 2.5rem;
  font-size: 1rem;
  line-height: 1.65;
}

/* ===== CASE STUDY PAGES ===== */

.cs-hero {
  background: var(--bg);
  padding: 140px 0 88px;
}

.cs-inner {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 60px;
}

.cs-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 40px;
  transition: color 0.2s;
}
.cs-back:hover { color: var(--gold); }

.cs-hero-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 24px;
}

.cs-hero-headline {
  font-family: var(--font-display);
  font-size: clamp(52px, 7vw, 100px);
  line-height: 0.93;
  letter-spacing: 0.01em;
  color: var(--white);
  margin-bottom: 40px;
}

.cs-hero-intro {
  font-size: 17px;
  color: var(--white);
  line-height: 1.7;
  border-left: 2px solid var(--gold);
  padding-left: 24px;
  max-width: 580px;
}

.cs-dark  { background: var(--bg);    padding: 88px 0; }
.cs-dark-alt { background: var(--bg2); padding: 88px 0; }
.cs-light { background: var(--light); padding: 88px 0; }

.cs-section-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 20px;
}

.cs-section-headline {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.5vw, 60px);
  line-height: 0.95;
  letter-spacing: 0.01em;
  color: var(--white);
  margin-bottom: 32px;
}

.cs-light .cs-section-headline {
  color: var(--text-dark);
}

.cs-body p {
  margin-bottom: 20px;
  line-height: 1.7;
  font-size: 17px;
}

.cs-dark .cs-body p,
.cs-dark-alt .cs-body p {
  color: var(--muted);
}

.cs-light .cs-body p {
  color: var(--muted-light);
}

.cs-quote {
  border-left: 2px solid var(--gold);
  padding-left: 24px;
  margin: 40px 0 0;
}

.cs-quote p {
  color: var(--white) !important;
  font-style: italic;
  font-size: 18px !important;
  line-height: 1.65 !important;
  margin-bottom: 12px !important;
}

.cs-quote cite {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--muted);
  font-style: normal;
}

@media (max-width: 900px) {
  .cs-inner { padding: 0 24px; }
  .cs-hero { padding: 100px 0 60px; }
  .cs-dark, .cs-dark-alt, .cs-light { padding: 60px 0; }
}
