/* =============================================================
   OUTDOOR GATEWAYS — styles.css
   Western Americana DNA + climbing-specific accents.
   Borrows Lazy 6's mechanics (Somare/Lora/Outfit, plain voice,
   no gradients, warm shadows, modest radii) and shifts the
   palette to New Mexico climbing: sandstone, sky, sage.
   ============================================================= */

/* ---------- FONTS ---------- */
@font-face {
  font-family: "Somare";
  src: url("./fonts/Somare.otf") format("opentype"),
       url("./fonts/Somare.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@import url("https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400;0,500;0,600;0,700;1,400&family=Outfit:wght@400;500;600;700;800;900&display=swap");

:root {
  /* PRIMARY — brand teal-blue, sampled directly from the
     Outdoor Gateways logo. A dusty, high-desert sky color. */
  --og-rust:        #69a0b4;   /* legacy var name; now brand teal */
  --og-rust-deep:   #4a7e91;
  --og-rust-hot:    #8fbecd;
  --og-brand:       #69a0b4;
  --og-brand-deep:  #4a7e91;
  --og-brand-hot:   #8fbecd;
  --og-brand-ink:   #2f4f5c;   /* deepest, for ink on cream */

  /* NEUTRALS — clean white surface, no warm cream. */
  --og-paper:       #ffffff;
  --og-paper-warm:  #f5f6f4;   /* very subtle off-white for alternating section */
  --og-cream:       #eef0ee;
  --og-bone:        #e2e4e1;

  /* INK — warm brown-black, holds the Western Americana feel
     even against the cooler brand blue. */
  --og-ink:         #1f1812;
  --og-ink-soft:    #4a3a2c;
  --og-ink-muted:   #7a6a55;
  --og-ink-faint:   #a89a82;

  /* SUPPORTING — secondary accents. Rust kept as a single
     warm accent so the page doesn't go entirely cool. */
  --og-sky:         #4f7a96;
  --og-sky-deep:    #34556a;
  --og-sage:        #7b8362;
  --og-sand:        #c9a771;
  --og-rust-accent: #b04223;
  --og-shadow:      #2a1f15;

  /* SURFACE / SEMANTIC */
  --bg:             var(--og-paper);
  --bg-2:           var(--og-paper-warm);
  --bg-brand:       var(--og-rust);
  --fg:             var(--og-ink);
  --fg-2:           var(--og-ink-soft);
  --fg-3:           var(--og-ink-muted);
  --fg-on-brand:    var(--og-paper);
  --border:         #dcdedb;
  --border-soft:    var(--og-bone);
  --border-strong: var(--og-ink);

  /* TYPE */
  --font-display:   "Somare", "Lora", Georgia, serif;
  --font-body:      "Lora", Georgia, "Times New Roman", serif;
  --font-ui:        "Outfit", system-ui, -apple-system, sans-serif;

  --t-display-xl:   clamp(56px, 10vw, 156px);
  --t-display-lg:   clamp(44px, 6.5vw, 92px);
  --t-display-md:   clamp(34px, 4.2vw, 60px);
  --t-h2:           32px;
  --t-h3:           22px;
  --t-body:         17px;
  --t-body-lg:      19px;
  --t-small:        15px;
  --t-eyebrow:      12px;

  --lh-tight:       1.02;
  --lh-snug:        1.18;
  --lh-body:        1.55;

  /* SPACING (4px ramp, editorial jumps) */
  --s-1: 4px;   --s-2: 8px;   --s-3: 12px;  --s-4: 16px;
  --s-5: 20px;  --s-6: 24px;  --s-7: 32px;  --s-8: 40px;
  --s-9: 56px;  --s-10: 72px; --s-11: 96px; --s-12: 128px;

  --r-2: 4px;  --r-3: 8px;  --r-4: 12px;  --r-5: 16px;  --r-pill: 999px;

  --shadow-1:   0 1px 2px rgba(31, 24, 18, 0.06);
  --shadow-2:   0 2px 8px rgba(31, 24, 18, 0.09);
  --shadow-3:   0 8px 28px rgba(31, 24, 18, 0.12);
  --shadow-lift:0 18px 48px rgba(31, 24, 18, 0.16);
}

/* ---------- BASE ---------- */
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: var(--t-body);
  line-height: var(--lh-body);
  color: var(--fg);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

::selection { background: var(--og-rust); color: var(--og-paper); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: var(--lh-tight);
  letter-spacing: -0.005em;
  color: var(--og-ink);
  margin: 0;
  text-wrap: balance;
}
p { margin: 0 0 1em; text-wrap: pretty; color: var(--fg-2); }
a { color: var(--og-rust); text-decoration-thickness: 1.5px; text-underline-offset: 3px; transition: color 160ms ease; }
a:hover { color: var(--og-rust-deep); }

img { max-width: 100%; display: block; }

/* ---------- LAYOUT ---------- */
.container { max-width: 1240px; margin: 0 auto; padding: 0 32px; }
.container--narrow { max-width: 920px; }
.container--wide   { max-width: 1440px; }

/* ---------- TYPE PRIMITIVES ---------- */
.display-xl { font-family: var(--font-display); font-size: var(--t-display-xl); line-height: 0.92; letter-spacing: -0.012em; }
.display-lg { font-family: var(--font-display); font-size: var(--t-display-lg); line-height: 0.96; }
.display-md { font-family: var(--font-display); font-size: var(--t-display-md); line-height: 1.0;  }

.eyebrow {
  display: inline-block;
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: var(--t-eyebrow);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--og-rust);
}
.eyebrow--ink { color: var(--og-ink); }
.eyebrow--paper { color: var(--og-paper); }

.lead {
  font-family: var(--font-body);
  font-size: clamp(19px, 1.8vw, 24px);
  line-height: 1.5;
  color: var(--fg);
}

.kicker {
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--og-rust);
}

.tnum { font-variant-numeric: tabular-nums; }

/* ---------- BUTTONS ---------- */
.btn {
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 16px 24px;
  border: 0;
  border-radius: 4px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--og-rust);
  color: var(--og-paper);
  text-decoration: none;
  line-height: 1;
  transition: background 180ms cubic-bezier(0.2,0.7,0.2,1),
              transform  180ms cubic-bezier(0.2,0.7,0.2,1);
}
.btn:hover  { background: var(--og-rust-deep); color: var(--og-paper); transform: translateY(-1px); }
.btn:active { transform: translateY(0); box-shadow: inset 0 2px 0 rgba(0,0,0,0.15); }

.btn--ghost {
  background: transparent;
  color: var(--og-ink);
  border: 1.5px solid var(--og-ink);
}
.btn--ghost:hover { background: var(--og-ink); color: var(--og-paper); }

.btn--paper {
  background: var(--og-paper);
  color: var(--og-ink);
}
.btn--paper:hover { background: var(--og-cream); color: var(--og-ink); }

.btn--ghost-paper {
  background: transparent;
  color: var(--og-paper);
  border: 1.5px solid rgba(255,255,255,0.8);
}
.btn--ghost-paper:hover { background: var(--og-paper); color: var(--og-ink); }

.btn .arrow { transition: transform 180ms ease; }
.btn:hover .arrow { transform: translateX(3px); }

/* ---------- TAG / CHIP ---------- */
.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 6px 12px;
  background: var(--og-paper);
  color: var(--og-ink);
  border-radius: var(--r-pill);
  border: 1px solid var(--border);
}
.tag--rust  { background: var(--og-rust); color: var(--og-paper); border-color: transparent; }
.tag--ink   { background: var(--og-ink);  color: var(--og-paper); border-color: transparent; }
.tag--sky   { background: var(--og-sky);  color: var(--og-paper); border-color: transparent; }
.tag--sage  { background: var(--og-sage); color: var(--og-paper); border-color: transparent; }

/* ---------- NAV ---------- */
.nav {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 50;
  padding: 24px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--og-paper);
}
.nav__wordmark {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 0.04em;
  color: var(--og-paper);
  text-decoration: none;
  line-height: 1;
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav__wordmark img {
  height: 40px;
  width: auto;
  display: block;
}
.nav__wordmark .mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1.5px solid var(--og-paper);
  border-radius: 50%;
  color: var(--og-paper);
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 28px;
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.nav__links a { color: var(--og-paper); text-decoration: none; opacity: 0.9; transition: opacity 160ms; }
.nav__links a:hover { opacity: 1; }
.nav__cta {
  background: var(--og-paper);
  color: var(--og-ink);
  padding: 10px 18px;
  border-radius: 4px;
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 160ms;
}
.nav__cta:hover { background: var(--og-cream); color: var(--og-ink); }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  color: var(--og-paper);
  overflow: hidden;
  background: var(--og-ink);
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.hero__bg image-slot { width: 100%; height: 100%; }
.hero__scrim {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    /* left wash protects the lockup column */
    linear-gradient(90deg,
      rgba(31,24,18,0.55) 0%,
      rgba(31,24,18,0.35) 32%,
      rgba(31,24,18,0.05) 65%,
      rgba(31,24,18,0.05) 100%),
    /* top-to-bottom keeps the eyebrow legible at top
       and the long sub paragraph legible at bottom */
    linear-gradient(180deg,
      rgba(31,24,18,0.55) 0%,
      rgba(31,24,18,0.35) 30%,
      rgba(31,24,18,0.35) 55%,
      rgba(31,24,18,0.85) 92%,
      rgba(31,24,18,0.95) 100%);
  pointer-events: none;
}
.hero__content {
  position: relative;
  z-index: 3;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 32px 80px;
  max-width: 1440px;
  margin: 0 auto;
}
.hero__lockup {
  position: relative;
  z-index: 3;
  padding-top: 140px;
}
.hero__tagline {
  font-family: var(--font-display);
  font-size: clamp(54px, 9vw, 140px);
  line-height: 0.92;
  letter-spacing: -0.012em;
  color: var(--og-paper);
  text-wrap: balance;
  margin: 0;
  max-width: 14ch;
}
.hero__tagline em {
  font-style: normal;
  color: var(--og-rust-hot);
}
.hero__sub {
  margin-top: 28px;
  font-family: var(--font-body);
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.5;
  color: rgba(251, 246, 236, 0.92);
  max-width: 56ch;
}
.hero__actions {
  margin-top: 40px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}
.hero__meta {
  position: absolute;
  top: 96px;
  right: 32px;
  display: flex;
  gap: 10px;
  z-index: 4;
}
.hero__rule {
  margin-top: 64px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid rgba(251,246,236,0.28);
  padding-top: 24px;
}
.hero__rule > div {
  padding-right: 24px;
}
.hero__rule .label {
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(251,246,236,0.62);
  margin-bottom: 6px;
}
.hero__rule .value {
  font-family: var(--font-display);
  font-size: 26px;
  color: var(--og-paper);
  line-height: 1.05;
}

/* ---------- MISSION ---------- */
.mission {
  padding: 140px 32px 120px;
  background: var(--og-paper);
  position: relative;
}
.mission .body {
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}
.mission .body h2 {
  font-size: clamp(36px, 4.5vw, 64px);
  line-height: 1.06;
  margin-top: 28px;
  text-wrap: balance;
}
.mission .body h2 .accent { color: var(--og-rust); }
.mission .body p {
  margin-top: 32px;
  font-size: clamp(18px, 1.4vw, 21px);
  line-height: 1.6;
  color: var(--fg-2);
  max-width: 60ch;
  margin-left: auto;
  margin-right: auto;
}

/* ---------- PROGRESSION ---------- */
.progression {
  padding: 0 32px 140px;
  background: var(--og-paper);
  position: relative;
}
.progression__head {
  max-width: 1240px;
  margin: 0 auto 64px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: end;
}
.progression__head h2 {
  font-size: clamp(40px, 5vw, 80px);
  line-height: 1.0;
}
.progression__head p {
  font-size: 17px;
  color: var(--fg-2);
  max-width: 46ch;
  margin-bottom: 8px;
}

.steps {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 2px solid var(--og-ink);
  border-bottom: 2px solid var(--og-ink);
}
.step {
  position: relative;
  padding: 40px 32px 48px;
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  min-height: 460px;
}
.step:last-child { border-right: 0; }

.step__no {
  font-family: var(--font-ui);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.22em;
  color: var(--og-rust);
  text-transform: uppercase;
  margin-bottom: 4px;
}
.step__title {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 56px);
  line-height: 0.98;
  color: var(--og-ink);
  margin: 8px 0 18px;
  text-wrap: balance;
}
.step__meta {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.step__body {
  font-family: var(--font-body);
  font-size: 16.5px;
  line-height: 1.6;
  color: var(--fg-2);
  margin-bottom: 24px;
}
.step__list {
  list-style: none;
  padding: 0;
  margin: 0;
  margin-top: auto;
  border-top: 1px dashed var(--border);
  padding-top: 18px;
}
.step__list li {
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--og-ink-soft);
  padding: 7px 0;
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.step__list li::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border: 1.5px solid var(--og-rust);
  border-radius: 50%;
  flex: none;
  transform: translateY(-1px);
}
.step__icon {
  position: absolute;
  top: 28px;
  right: 32px;
  width: 56px;
  height: 56px;
  color: var(--og-ink);
  opacity: 0.85;
}

/* ---------- COHORT / SPLIT (image + text) ---------- */
.split {
  padding: 140px 32px;
  background: var(--og-paper);
  position: relative;
  overflow: hidden;
}
.split__inner {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 80px;
  align-items: center;
}
.split__photo {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 12px;
  overflow: hidden;
  background: var(--bg-2);
  border: 1px solid var(--border-soft);
}
.split__photo image-slot { width: 100%; height: 100%; }
.split__photo-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 4;
}
.split__body {
  max-width: 52ch;
}
.split__body h2 {
  font-size: clamp(36px, 4.5vw, 64px);
  line-height: 1.04;
  margin-top: 24px;
  text-wrap: balance;
}
.split__body p {
  margin-top: 24px;
  font-size: 17.5px;
  line-height: 1.65;
  color: var(--fg-2);
}
.split__stats {
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.split__stats .label {
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--og-ink-muted);
  margin-bottom: 8px;
}
.split__stats .value {
  font-family: var(--font-display);
  font-size: 30px;
  line-height: 1;
  color: var(--og-ink);
}
@media (max-width: 980px) {
  .split { padding: 96px 20px; }
  .split__inner { grid-template-columns: 1fr; gap: 40px; }
  .split__photo { aspect-ratio: 4/3; }
  .split__stats { grid-template-columns: 1fr 1fr 1fr; }
}
.serve {
  background: var(--bg-2);
  padding: 140px 32px;
  position: relative;
  overflow: hidden;
}
.serve__head {
  max-width: 1240px;
  margin: 0 auto 56px;
}
.serve__head h2 {
  font-size: clamp(40px, 5vw, 80px);
  line-height: 1.0;
  max-width: 18ch;
  margin-top: 16px;
}
.serve__grid {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  align-items: start;
}
.serve__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.serve-card {
  background: var(--og-paper);
  border: 1px solid var(--border-soft);
  border-radius: 12px;
  padding: 24px;
  min-height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 220ms cubic-bezier(0.2,0.7,0.2,1),
              box-shadow 220ms cubic-bezier(0.2,0.7,0.2,1);
}
.serve-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-lift); }
.serve-card__no {
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--og-rust);
}
.serve-card__title {
  font-family: var(--font-display);
  font-size: 26px;
  line-height: 1.05;
  margin: 28px 0 10px;
}
.serve-card__body {
  font-family: var(--font-body);
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--fg-2);
  margin: 0;
}

.serve__photo {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background: var(--og-cream);
  aspect-ratio: 5/4;
  border: 1px solid var(--border-soft);
}
.serve__photo image-slot { width: 100%; height: 100%; }
.serve__photo-tag {
  position: absolute;
  bottom: 16px;
  left: 16px;
  z-index: 4;
}

.serve__formats {
  max-width: 1240px;
  margin: 64px auto 0;
  padding: 28px 32px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  display: grid;
  grid-template-columns: auto 1fr auto 1fr;
  gap: 32px;
  align-items: center;
}
.serve__formats .lbl {
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--og-ink-muted);
}
.serve__formats .val {
  font-family: var(--font-display);
  font-size: 24px;
  line-height: 1.0;
  color: var(--og-ink);
}

/* ---------- SAFETY ---------- */
.safety {
  background: var(--og-ink);
  color: var(--og-paper);
  padding: 140px 32px;
  position: relative;
  overflow: hidden;
}
.safety__inner {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.safety h2 {
  color: var(--og-paper);
  font-size: clamp(40px, 5.5vw, 88px);
  line-height: 0.96;
  text-wrap: balance;
}
.safety h2 .accent { color: var(--og-rust-hot); }
.safety p {
  color: rgba(251,246,236,0.82);
  font-size: 17.5px;
  line-height: 1.65;
}
.safety .eyebrow { color: var(--og-rust-hot); }

.facts {
  border-top: 1px solid rgba(251,246,236,0.18);
  margin-top: 32px;
  padding-top: 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 32px;
}
.fact .label {
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(251,246,236,0.55);
  margin-bottom: 8px;
}
.fact .value {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--og-paper);
  line-height: 1.1;
}

.safety__photo {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(251,246,236,0.18);
}
.safety__photo image-slot { width: 100%; height: 100%; }
.safety__badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--og-paper);
  color: var(--og-ink);
  border-radius: var(--r-pill);
  padding: 8px 14px;
  font-family: var(--font-ui);
  font-weight: 800;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  z-index: 4;
}
.safety__partner {
  margin-top: 28px;
  padding: 20px 22px;
  background: rgba(251,246,236,0.06);
  border: 1px solid rgba(251,246,236,0.18);
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.safety__partner .pk {
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(251,246,236,0.55);
}
.safety__partner .name {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--og-paper);
}

/* ---------- CTA / FOOTER ---------- */
.cta {
  background: var(--og-brand-deep);
  color: var(--og-paper);
  padding: 120px 32px 96px;
  position: relative;
  overflow: hidden;
}
.cta__inner {
  max-width: 1240px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.cta h2 {
  color: var(--og-paper);
  font-size: clamp(56px, 9vw, 152px);
  line-height: 0.92;
  letter-spacing: -0.01em;
  margin: 16px 0 0;
  text-wrap: balance;
}
.cta__sub {
  margin-top: 36px;
  font-family: var(--font-body);
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.55;
  color: rgba(251,246,236,0.92);
  max-width: 56ch;
}
.cta__actions {
  margin-top: 44px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.cta__rule {
  margin-top: 96px;
  padding-top: 32px;
  border-top: 1px solid rgba(251,246,236,0.28);
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 24px;
  align-items: start;
}
.cta__rule .col-label {
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(251,246,236,0.6);
  margin-bottom: 10px;
}
.cta__rule .col-val {
  font-family: var(--font-display);
  font-size: 22px;
  line-height: 1.2;
  color: var(--og-paper);
}
.cta__rule .col-val a { color: var(--og-paper); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 4px; }
.cta__rule .col-val a:hover { color: var(--og-paper); opacity: 0.85; }
.cta__wordmark {
  font-family: var(--font-display);
  font-size: clamp(72px, 14vw, 180px);
  line-height: 0.85;
  color: rgba(251,246,236,0.10);
  letter-spacing: -0.01em;
  margin-top: 64px;
  pointer-events: none;
  user-select: none;
  text-wrap: balance;
}
.cta__wordmark-img {
  margin-top: 80px;
  pointer-events: none;
  user-select: none;
  opacity: 0.18;
  max-width: 920px;
}
.cta__wordmark-img img {
  width: 100%;
  height: auto;
  display: block;
}

/* ---------- DECORATIVE: topographic contour SVG ---------- */
.topo {
  position: absolute;
  pointer-events: none;
  color: var(--og-ink);
  opacity: 0.06;
}
.topo--paper { color: var(--og-paper); opacity: 0.08; }

/* ---------- IMAGE SLOT styling overrides ---------- */
image-slot {
  --is-bg: transparent;
  --is-border: rgba(251, 246, 236, 0.22);
  --is-text: rgba(251, 246, 236, 0.7);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 980px) {
  .hero__content { padding: 0 24px 60px; }
  .hero__lockup { padding-top: 110px; }
  .hero__meta { right: 24px; top: 84px; }
  .hero__rule { grid-template-columns: 1fr 1fr; gap: 24px 16px; }

  .progression__head { grid-template-columns: 1fr; gap: 20px; }
  .steps { grid-template-columns: 1fr; border-bottom: 0; }
  .step  { border-right: 0; border-bottom: 1px solid var(--border); min-height: 0; }
  .step:last-child { border-bottom: 2px solid var(--og-ink); }

  .serve__grid { grid-template-columns: 1fr; gap: 40px; }
  .serve__cards { grid-template-columns: 1fr 1fr; }
  .serve__formats { grid-template-columns: auto 1fr; gap: 20px; padding: 24px; }

  .safety__inner { grid-template-columns: 1fr; gap: 48px; }
  .cta__rule { grid-template-columns: 1fr 1fr; gap: 32px; }
  .nav__links { display: none; }
  .nav { padding: 18px 20px; }
  .mission, .progression, .serve, .safety, .cta { padding-left: 20px; padding-right: 20px; }
  .progression { padding-bottom: 96px; }
  .mission { padding-top: 96px; padding-bottom: 80px; }
  .serve { padding-top: 96px; padding-bottom: 96px; }
  .safety { padding-top: 96px; padding-bottom: 96px; }
  .cta { padding-top: 80px; padding-bottom: 72px; }
}
@media (max-width: 560px) {
  .serve__cards { grid-template-columns: 1fr; }
  .hero__rule { grid-template-columns: 1fr; }
}

/* =============================================================
   V3 — WOW-flow sections
   ============================================================= */

/* Helpful */
.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;
}
.kicker--paper { color: var(--og-paper); }

.og-page { background: var(--og-paper); }

/* ---------- TOPBAR (white-bg nav) ---------- */
.topbar {
  position: sticky;
  top: 0;
  z-index: 60;
  background: var(--og-paper);
  border-bottom: 1px solid var(--border-soft);
}
.topbar__inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 14px 32px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.topbar__wordmark {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  flex: none;
}
.topbar__wordmark img {
  height: 44px;
  width: auto;
  display: block;
}
.topbar__links {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.04em;
}
.topbar__links a {
  color: var(--og-ink);
  text-decoration: none;
  padding: 4px 0;
  border-bottom: 1.5px solid transparent;
  transition: color 160ms, border-color 160ms;
}
.topbar__links a:hover {
  color: var(--og-brand-deep);
  border-bottom-color: var(--og-brand);
}
.topbar__cta {
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 11px 18px;
  border: 1.5px solid var(--og-ink);
  border-radius: 4px;
  color: var(--og-ink);
  text-decoration: none;
  transition: background 160ms, color 160ms;
  flex: none;
}
.topbar__cta:hover { background: var(--og-ink); color: var(--og-paper); }

@media (max-width: 880px) {
  .topbar__links { display: none; }
  .topbar__inner { gap: 16px; justify-content: space-between; padding: 12px 20px; }
  .topbar__wordmark img { height: 38px; }
}

/* ---------- HERO V2 (split panel + photo) ---------- */
.hero2 {
  display: grid;
  grid-template-columns: 5fr 7fr;
  min-height: 78vh;
  background: var(--og-brand-deep);
}
.hero2__panel {
  background: var(--og-brand-deep);
  color: var(--og-paper);
  display: flex;
  align-items: stretch;
  position: relative;
  overflow: hidden;
}
.hero2__panel::before {
  /* hairline rule across the top to echo WOW's panel framing */
  content: "";
  position: absolute;
  top: 24px; left: 32px;
  width: 56px; height: 1px;
  background: rgba(251,246,236,0.45);
}
.hero2__panel-inner {
  padding: 80px 56px 64px;
  max-width: 640px;
  width: 100%;
  align-self: center;
}
.hero2__title {
  font-family: var(--font-display);
  font-size: clamp(48px, 5.5vw, 92px);
  line-height: 0.94;
  letter-spacing: -0.012em;
  color: var(--og-paper);
  margin: 24px 0 0;
  text-wrap: balance;
}
.hero2__title em {
  font-style: normal;
  color: var(--og-brand-hot);
}
.hero2__sub {
  margin-top: 28px;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  color: rgba(251,246,236,0.88);
  max-width: 48ch;
}
.hero2__actions {
  margin-top: 36px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}
.hero2__photo {
  position: relative;
  overflow: hidden;
  background: var(--og-brand-deep);
}
.hero2__photo image-slot { width: 100%; height: 100%; display: block; }

@media (max-width: 880px) {
  .hero2 { grid-template-columns: 1fr; min-height: 0; }
  .hero2__panel-inner { padding: 56px 24px 48px; max-width: none; }
  .hero2__photo { aspect-ratio: 4/3; }
}

/* ---------- STATS STRIP ---------- */
.stats {
  background: var(--og-brand-hot);
  color: var(--og-ink);
  padding: 36px 32px;
}
.stats__inner {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  align-items: center;
}
.stat { text-align: center; padding: 0 8px; }
.stat__num {
  font-family: var(--font-display);
  font-size: clamp(40px, 4.2vw, 56px);
  line-height: 1;
  color: var(--og-ink);
  letter-spacing: -0.01em;
}
.stat__unit {
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 0.42em;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-left: 4px;
  vertical-align: 0.4em;
  color: var(--og-brand-ink);
}
.stat__label {
  margin-top: 6px;
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--og-brand-ink);
  line-height: 1.35;
}
@media (max-width: 760px) {
  .stats__inner { grid-template-columns: 1fr 1fr; gap: 28px 12px; }
  .stats { padding: 32px 20px; }
}

/* ---------- PROGRAMS ---------- */
.programs {
  background: var(--og-paper);
  padding: 120px 32px 32px;
}
.programs__inner { max-width: 1240px; margin: 0 auto; }
.programs__head { max-width: 880px; margin-bottom: 48px; }
.programs__head .eyebrow {
  border-bottom: 2px solid var(--og-brand);
  padding-bottom: 8px;
  margin-bottom: 24px;
}
.programs__title {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 72px);
  line-height: 1.0;
  letter-spacing: -0.01em;
  color: var(--og-ink);
  margin: 0;
  text-wrap: balance;
}
.programs__intro {
  margin-top: 20px;
  font-size: 17px;
  line-height: 1.6;
  color: var(--fg-2);
  max-width: 60ch;
}
.programs__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 8px;
}
.pcard {
  background: var(--og-paper);
  border: 1px solid var(--border-soft);
  border-radius: 12px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  transition: transform 220ms cubic-bezier(0.2,0.7,0.2,1),
              box-shadow 220ms cubic-bezier(0.2,0.7,0.2,1);
}
.pcard:hover { transform: translateY(-2px); box-shadow: var(--shadow-lift); }
.pcard__tag {
  margin-bottom: 14px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 12px;
}
.pcard__tag .kicker { font-size: 11px; }
.pcard__photo {
  position: relative;
  aspect-ratio: 16/9;
  border-radius: 8px;
  overflow: hidden;
  background: var(--bg-2);
  margin-bottom: 20px;
}
.pcard__photo image-slot { width: 100%; height: 100%; display: block; }
.pcard__title {
  font-family: var(--font-display);
  font-size: clamp(26px, 2.6vw, 34px);
  line-height: 1.05;
  color: var(--og-ink);
  margin: 0 0 12px;
}
.pcard__body {
  font-family: var(--font-body);
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--fg-2);
  margin: 0 0 18px;
}
.pcard__chips {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  border-top: 1px solid var(--border);
  padding-top: 14px;
}
.pcard__chips li {
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--og-ink-soft);
  padding: 5px 10px;
  border-right: 1px solid var(--border);
  line-height: 1.1;
}
.pcard__chips li:last-child { border-right: 0; }
.pcard__cta {
  margin-top: auto;
  align-self: flex-start;
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 12px 18px;
  background: var(--og-brand);
  color: var(--og-paper);
  border-radius: 4px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background 160ms, transform 160ms;
}
.pcard__cta:hover { background: var(--og-brand-deep); color: var(--og-paper); transform: translateY(-1px); }
.pcard__cta .arrow { transition: transform 180ms; }
.pcard__cta:hover .arrow { transform: translateX(3px); }

.programs__continuing {
  margin-top: 72px;
  padding: 28px 32px;
  background: var(--bg-2);
  border-radius: 12px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 32px;
  align-items: center;
}
.programs__continuing p {
  margin: 0;
  font-size: 16px;
  line-height: 1.55;
  color: var(--fg-2);
}

@media (max-width: 880px) {
  .programs { padding: 80px 20px 24px; }
  .programs__grid { grid-template-columns: 1fr; gap: 24px; }
  .programs__continuing { grid-template-columns: 1fr; gap: 8px; padding: 24px; }
}

/* ---------- SCHEDULE ---------- */
.schedule {
  background: var(--og-paper);
  padding: 96px 32px 120px;
}
.schedule__inner { max-width: 1240px; margin: 0 auto; }
.schedule__head { max-width: 880px; margin-bottom: 40px; }
.schedule__head .eyebrow {
  border-bottom: 2px solid var(--og-brand);
  padding-bottom: 8px;
  margin-bottom: 24px;
}
.schedule__title {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 72px);
  line-height: 1.0;
  color: var(--og-ink);
  margin: 0;
}
.schedule__intro {
  margin-top: 16px;
  font-size: 17px;
  color: var(--fg-2);
  max-width: 60ch;
}

.schedule__layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  align-items: start;
}
.schedule__events {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.event {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 24px;
  padding: 22px 0;
  border-top: 1px solid var(--border);
  align-items: start;
}
.event:last-child { border-bottom: 1px solid var(--border); }
.event__date {
  background: var(--og-brand);
  color: var(--og-paper);
  text-align: center;
  padding: 10px 6px;
  border-radius: 4px;
}
.event__month {
  font-family: var(--font-ui);
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  line-height: 1;
}
.event__day {
  font-family: var(--font-display);
  font-size: 30px;
  line-height: 1;
  margin-top: 4px;
}
.event__title {
  font-family: var(--font-display);
  font-size: 22px;
  line-height: 1.15;
  margin: 0 0 6px;
  color: var(--og-ink);
}
.event__copy {
  margin: 0 0 8px;
  font-size: 15px;
  line-height: 1.55;
  color: var(--fg-2);
}
.event__when {
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--og-ink-muted);
  margin: 0;
}

.schedule__signup {
  background: var(--og-brand-deep);
  color: var(--og-paper);
  padding: 32px 28px;
  border-radius: 12px;
  position: sticky;
  top: 96px;
}
.schedule__signup .kicker { color: var(--og-paper); }
.schedule__signup-copy {
  font-family: var(--font-display);
  font-size: 30px;
  line-height: 1.05;
  color: var(--og-paper);
  margin: 14px 0 24px;
}
.schedule__signup-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.schedule__signup-meta {
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid rgba(251,246,236,0.22);
  font-size: 13px;
  line-height: 1.55;
  color: rgba(251,246,236,0.85);
}
.schedule__signup-meta p { margin: 0 0 6px; color: inherit; font-size: inherit; }
.schedule__signup-meta a { color: var(--og-paper); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; }
.schedule__signup-meta a:hover { color: var(--og-paper); opacity: 0.85; }

@media (max-width: 880px) {
  .schedule { padding: 64px 20px 80px; }
  .schedule__layout { grid-template-columns: 1fr; }
  .schedule__signup { position: static; }
}

/* ---------- DONATE ---------- */
.donate {
  background: var(--og-brand-deep);
  color: var(--og-paper);
  padding: 120px 32px;
  position: relative;
  overflow: hidden;
}
.donate__topo {
  position: absolute;
  bottom: -60px;
  left: -60px;
  width: 720px;
  opacity: 0.10;
  pointer-events: none;
}
.donate__inner {
  position: relative;
  z-index: 2;
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.donate__copy .kicker {
  border-bottom: 2px solid var(--og-brand-hot);
  display: inline-block;
  padding-bottom: 6px;
  margin-bottom: 20px;
}
.donate__title {
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 96px);
  line-height: 0.96;
  letter-spacing: -0.01em;
  color: var(--og-paper);
  margin: 0;
  text-wrap: balance;
}
.donate__body {
  margin-top: 28px;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  color: rgba(251,246,236,0.92);
  max-width: 48ch;
}
.donate__body--small { font-size: 15px; color: rgba(251,246,236,0.78); }

/* donation card */
.donate__card {
  background: var(--og-paper);
  color: var(--og-ink);
  border-radius: 12px;
  padding: 28px;
  box-shadow: var(--shadow-3);
}
.donate__card-head { margin-bottom: 18px; }
.donate__card-title {
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--og-ink);
  margin: 0 0 6px;
}
.donate__card-sub {
  margin: 0;
  font-size: 14px;
  color: var(--fg-3);
}

.donate__tiles {
  border: 0;
  padding: 0;
  margin: 0 0 16px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.dtile {
  position: relative;
  display: block;
  background: var(--og-paper);
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 14px 14px 12px;
  cursor: pointer;
  transition: border-color 160ms, background 160ms, transform 120ms;
}
.dtile:hover { border-color: var(--og-brand); }
.dtile input { position: absolute; opacity: 0; pointer-events: none; }
.dtile:has(input:checked) {
  border-color: var(--og-brand);
  background: rgba(105, 160, 180, 0.08);
}
.dtile__amt {
  display: block;
  font-family: var(--font-display);
  font-size: 26px;
  line-height: 1;
  color: var(--og-ink);
}
.dtile__lbl {
  display: block;
  margin-top: 6px;
  font-family: var(--font-ui);
  font-size: 12px;
  line-height: 1.35;
  color: var(--fg-3);
}
.dtile__badge {
  position: absolute;
  top: -8px;
  right: 10px;
  background: var(--og-brand-hot);
  color: var(--og-brand-ink);
  font-family: var(--font-ui);
  font-weight: 800;
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 999px;
}

.donate__custom { display: block; margin-bottom: 18px; }
.donate__custom-lbl {
  display: block;
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--og-ink-muted);
  margin-bottom: 8px;
}
.donate__custom-input {
  display: flex;
  align-items: center;
  background: var(--og-paper);
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 0 14px;
  transition: border-color 160ms;
}
.donate__custom-input:focus-within { border-color: var(--og-brand); }
.donate__currency {
  font-family: var(--font-ui);
  font-weight: 700;
  color: var(--og-ink-muted);
}
.donate__custom-input input {
  flex: 1;
  border: 0;
  outline: 0;
  background: transparent;
  padding: 12px 8px;
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--og-ink);
}
.donate__custom-input input::placeholder { color: var(--og-ink-faint); }

.donate__btn {
  width: 100%;
  justify-content: center;
  background: var(--og-brand);
  font-size: 13px;
}
.donate__btn:hover { background: var(--og-brand-deep); }

.donate__assurances {
  list-style: none;
  padding: 12px 0 0;
  margin: 12px 0 0;
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: center;
  border-top: 1px solid var(--border);
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--og-ink-muted);
}
.donate__assurances li { display: inline-flex; align-items: center; gap: 6px; }
.donate__assurances svg { color: var(--og-brand); }

@media (max-width: 880px) {
  .donate { padding: 80px 20px; }
  .donate__inner { grid-template-columns: 1fr; gap: 48px; }
}

/* ---------- ABOUT / WHO WE ARE ---------- */
.about {
  background: var(--og-paper);
  padding: 120px 32px;
}
.about__inner {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 72px;
  align-items: start;
}
.about__photo {
  position: relative;
  aspect-ratio: 3/4;
  border-radius: 12px;
  overflow: hidden;
  background: var(--bg-2);
  border: 1px solid var(--border-soft);
}
.about__photo image-slot { width: 100%; height: 100%; display: block; }
.about__photo-year {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 4;
  font-family: var(--font-display);
  font-size: 36px;
  line-height: 1;
  color: var(--og-paper);
  background: var(--og-brand-deep);
  padding: 10px 14px;
  border-radius: 4px;
  letter-spacing: -0.01em;
}
.about__photo-cap {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 4;
  font-family: var(--font-body);
  font-style: italic;
  font-size: 14px;
  line-height: 1.45;
  color: var(--og-paper);
  background: rgba(31, 24, 18, 0.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  padding: 12px 14px;
  border-radius: 6px;
}
.about__body { padding-top: 8px; }
.about__body .eyebrow {
  border-bottom: 2px solid var(--og-brand);
  padding-bottom: 8px;
  margin-bottom: 24px;
}
.about__title {
  font-family: var(--font-display);
  font-size: clamp(40px, 4.8vw, 68px);
  line-height: 1.02;
  letter-spacing: -0.01em;
  color: var(--og-ink);
  margin: 0 0 24px;
  text-wrap: balance;
}
.about__body > p {
  font-size: 17px;
  line-height: 1.65;
  color: var(--fg-2);
  margin: 0 0 28px;
  max-width: 56ch;
}

.acc {
  border-top: 1px solid var(--border);
}
.acc + .acc { border-top: 1px solid var(--border); }
.acc:last-of-type { border-bottom: 1px solid var(--border); }
.acc summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-family: var(--font-display);
  font-size: 22px;
  line-height: 1.2;
  color: var(--og-ink);
  transition: color 160ms;
}
.acc summary::-webkit-details-marker { display: none; }
.acc summary:hover { color: var(--og-brand-deep); }
.acc__icon {
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 22px;
  color: var(--og-brand);
  width: 24px;
  text-align: center;
  transition: transform 180ms;
}
.acc[open] .acc__icon { transform: rotate(45deg); }
.acc p {
  margin: 0 0 18px;
  padding-right: 48px;
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--fg-2);
  max-width: 56ch;
}

.about__cta {
  margin-top: 28px;
}

@media (max-width: 880px) {
  .about { padding: 80px 20px; }
  .about__inner { grid-template-columns: 1fr; gap: 32px; }
  .about__photo { aspect-ratio: 4/3; max-height: 480px; }
}

/* ---------- PARTNERS ---------- */
.partners {
  background: var(--bg-2);
  padding: 64px 32px;
  text-align: center;
}
.partners__inner { max-width: 1240px; margin: 0 auto; }
.partners__kicker {
  display: inline-block;
  margin-bottom: 32px;
}
.partners__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 24px 48px;
}
.partner-mark {
  font-family: var(--font-ui);
  font-weight: 800;
  font-size: clamp(18px, 1.8vw, 24px);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--og-ink);
  opacity: 0.75;
  padding: 6px 12px;
  transition: opacity 160ms;
}
.partner-mark:hover { opacity: 1; }
.partners__cta {
  margin-top: 32px;
  font-family: var(--font-ui);
  font-size: 13px;
  color: var(--og-ink-muted);
}
.partners__cta a { color: var(--og-brand-deep); }

@media (max-width: 760px) {
  .partners__list { gap: 18px 28px; }
}

/* ---------- FOOTER ---------- */
.footer {
  background: var(--og-paper);
  color: var(--og-ink);
  padding: 80px 32px 32px;
  border-top: 1px solid var(--border-soft);
}
.footer__inner {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 2fr 1.3fr;
  gap: 56px;
  align-items: start;
}
.footer__lead { max-width: 360px; }
.footer__wordmark {
  display: inline-flex;
  text-decoration: none;
  margin-bottom: 16px;
}
.footer__wordmark img {
  height: 56px;
  width: auto;
  display: block;
}
.footer__desc {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--fg-2);
  margin: 0;
}
.footer__cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.footer__col h5 {
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--og-ink-muted);
  margin: 0 0 14px;
}
.footer__col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer__col a {
  color: var(--og-ink);
  text-decoration: none;
  font-size: 14.5px;
  transition: color 160ms;
}
.footer__col a:hover { color: var(--og-brand-deep); }

.footer__subscribe h5 {
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--og-ink-muted);
  margin: 0 0 12px;
}
.footer__subscribe p {
  font-size: 13.5px;
  color: var(--fg-2);
  margin: 0 0 14px;
  line-height: 1.5;
}
.footer__form {
  display: flex;
  gap: 8px;
}
.footer__form input {
  flex: 1;
  min-width: 0;
  border: 1.5px solid var(--border);
  border-radius: 6px;
  padding: 10px 12px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--og-ink);
  background: var(--og-paper);
  outline: none;
  transition: border-color 160ms;
}
.footer__form input:focus { border-color: var(--og-brand); }
.footer__form button {
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0 14px;
  background: var(--og-ink);
  color: var(--og-paper);
  border: 0;
  border-radius: 6px;
  cursor: pointer;
  transition: background 160ms;
}
.footer__form button:hover { background: var(--og-brand-deep); }

.footer__base {
  max-width: 1240px;
  margin: 64px auto 0;
  padding-top: 24px;
  border-top: 1px solid var(--border-soft);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px 24px;
  font-family: var(--font-ui);
  font-size: 12px;
  color: var(--og-ink-muted);
}
.footer__base p { margin: 0; color: inherit; }

@media (max-width: 980px) {
  .footer__inner { grid-template-columns: 1fr; gap: 40px; }
  .footer__cols { grid-template-columns: 1fr 1fr; }
  .footer { padding: 56px 20px 24px; }
  .footer__base { flex-direction: column; gap: 6px; }
}
