/* ============================================================
   Team Wheelhouse Foundation — homepage redesign mockup
   Plain CSS, no framework. Built as a visual spec for Webflow.
   ============================================================ */

:root {
  --onyx: #0d0d0f;          /* near-black — all dark surfaces */
  --onyx-2: #16161a;
  --onyx-3: #20212a;
  --bone: #ededea;          /* cool off-white — light surface contrast */
  --bone-2: #d9d9d4;
  --paper: #f7f7f5;         /* near-white page background */
  --ink: #111114;           /* body text */
  --ink-soft: #5a5a62;      /* secondary text */
  --rule: rgba(255, 255, 255, 0.12);
  --rule-dark: rgba(13, 13, 15, 0.12);
  --accent: #0d0d0f;        /* monochrome accent — pure dark on light bg */
  --accent-light: #ededea;  /* monochrome accent — bone on dark bg */
  --max: 1200px;
  --pad: clamp(20px, 4vw, 48px);
  --radius: 14px;
  --radius-lg: 22px;
  --shadow-soft: 0 1px 2px rgba(0,0,0,0.05), 0 8px 24px rgba(0,0,0,0.06);
  --shadow-strong: 0 20px 60px rgba(0,0,0,0.35);
  --display-font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
.container { max-width: var(--max); margin: 0 auto; padding-left: var(--pad); padding-right: var(--pad); }
.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;
}

/* ---------- Typography utilities ---------- */
.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.eyebrow--light { color: var(--bone); }
.eyebrow--center { display: block; text-align: center; color: var(--ink-soft); }

h1, h2, h3, h4 { margin: 0 0 0.4em; font-weight: 900; line-height: 1.02; letter-spacing: -0.025em; }
h2.display, h1.hero__title {
  font-family: var(--display-font);
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 0.95;
  text-transform: none;
}
.muted { color: var(--ink-soft); font-weight: 400; letter-spacing: -0.025em; }
.accent { color: inherit; font-weight: 900; }

.lede { font-size: 1.18rem; line-height: 1.5; color: var(--ink-soft); }

.link-arrow {
  display: inline-flex; align-items: center; gap: 6px;
  font-weight: 600; text-decoration: none;
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
  color: var(--accent);
  transition: gap .2s ease;
}
.link-arrow:hover { gap: 10px; }
.link-arrow--light { color: var(--bone); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, background .15s ease, color .15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn--primary {
  background: var(--accent);
  color: white;
}
.btn--primary:hover { background: #b8331f; }
.btn--ghost {
  background: transparent;
  border-color: rgba(13,13,15,0.25);
  color: var(--ink);
}
.btn--ghost:hover { background: rgba(13,13,15,0.06); }
.btn--ghost-light {
  border-color: rgba(255,255,255,0.4);
  color: var(--bone);
}
.btn--ghost-light:hover { background: rgba(255,255,255,0.08); }
.btn--lg { padding: 16px 30px; font-size: 1rem; }
.btn--small { padding: 8px 16px; font-size: 0.85rem; }

/* ---------- Crisis band ---------- */
.crisis-band {
  background: var(--onyx);
  color: var(--bone);
  font-size: 0.88rem;
  border-bottom: 1px solid var(--rule);
}
.crisis-band__inner {
  display: flex; gap: 14px; align-items: center; flex-wrap: wrap;
  padding-top: 10px; padding-bottom: 10px;
}
.crisis-band__label {
  font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--accent); font-size: 0.78rem;
}
.crisis-band__link { margin-left: auto; color: var(--bone); text-decoration: none; font-weight: 600; }
.crisis-band__link:hover { color: var(--accent); }

@media (max-width: 720px) {
  .crisis-band { font-size: 0.85rem; }
  .crisis-band__inner {
    gap: 8px;
    padding-top: 8px;
    padding-bottom: 8px;
  }
  .crisis-band__detail { display: none; }
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0; z-index: 50;
  background: rgba(250, 246, 238, 0.85);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--rule-dark);
}
.site-header__inner {
  display: flex; align-items: center; gap: 24px;
  padding-top: 16px; padding-bottom: 16px;
}
.brand {
  display: inline-flex; align-items: center; gap: 12px;
  text-decoration: none; color: inherit;
}
.brand__logo {
  display: inline-flex; align-items: baseline; gap: 4px;
  font-family: var(--display-font);
  font-weight: 900;
  font-size: 1.35rem;
  letter-spacing: -0.05em;
  line-height: 1;
  text-transform: lowercase;
  color: var(--ink);
}
.brand__chevron {
  display: inline-block;
  font-weight: 900;
  font-size: 0.95em;
  letter-spacing: -0.18em;
  position: relative;
  top: -0.02em;
  margin: 0 1px 0 -1px;
}
.brand__sub {
  font-weight: 700; font-size: 0.62rem;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink-soft);
  border-left: 1px solid var(--rule-dark);
  padding-left: 10px;
  align-self: center;
}
.brand--footer .brand__logo { color: var(--bone); }
.brand--footer .brand__sub {
  color: rgba(243,237,225,0.55);
  border-left-color: var(--rule);
}
.nav { display: flex; gap: 28px; margin-left: auto; }
.nav a {
  text-decoration: none; color: var(--ink);
  font-weight: 500; font-size: 0.95rem;
  position: relative;
}
.nav a::after {
  content: ""; position: absolute; left: 0; bottom: -6px;
  height: 2px; width: 0; background: var(--accent);
  transition: width .2s ease;
}
.nav a:hover::after { width: 100%; }
.nav-cta { margin-left: 0; }

/* ---------- Mobile nav toggle (hamburger) ---------- */
.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--rule-dark);
  border-radius: 10px;
  width: 44px; height: 44px;
  padding: 0;
  cursor: pointer;
  position: relative;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  z-index: 60;
  margin-left: auto;
}
.nav-toggle span {
  display: block;
  width: 20px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .25s ease, opacity .15s ease;
}
.nav-toggle.is-open { border-color: var(--rule); }
.nav-toggle.is-open span { background: var(--bone); }
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 880px) {
  /* Hamburger replaces the inline nav */
  .nav-toggle { display: inline-flex; }
  .nav-cta { padding: 10px 16px; font-size: 0.85rem; }

  /* Inline nav collapses into a full-width dropdown panel below the header */
  .nav {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 55;
    background: rgba(13, 13, 15, 0.96);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    color: var(--bone);
    padding: 8px var(--pad) 24px;
    border-bottom: 1px solid var(--rule);
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    transition:
      transform .28s ease,
      opacity .28s ease,
      visibility 0s linear .28s;
    margin-left: 0;
  }
  .nav.is-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    transition:
      transform .28s ease,
      opacity .28s ease,
      visibility 0s linear 0s;
  }
  .nav a {
    display: block;
    color: var(--bone);
    font-family: var(--sans);
    font-weight: 500;
    font-size: 1.15rem;
    letter-spacing: -0.005em;
    padding: 16px 4px;
    border-bottom: 1px solid var(--rule);
    text-decoration: none;
  }
  .nav a::after { display: none; }
  .nav a.is-active { color: var(--accent-light); }

  /* Lock scroll when menu is open */
  body.nav-open { overflow: hidden; }

  /* Mobile-only Donate link inside the drawer — styled like a button */
  .nav__cta-mobile {
    margin-top: 16px;
    padding: 12px 22px !important;
    background: var(--accent-light);
    color: var(--onyx) !important;
    border-radius: 999px;
    text-align: center;
    border-bottom: 0 !important;
    font-size: 1rem !important;
    align-self: flex-start;
  }
}
/* On desktop, hide the mobile-only Donate link — the header button covers it */
@media (min-width: 881px) {
  .nav__cta-mobile { display: none; }
}
@media (max-width: 520px) {
  /* On the smallest screens, hide donate button — it's reachable in the drawer */
  .site-header .nav-cta { display: none; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: var(--onyx);
  color: var(--bone);
  overflow: hidden;
  isolation: isolate;
}
.hero__media { position: absolute; inset: 0; z-index: 0; }
.hero__placeholder {
  position: absolute; inset: 0;
  background:
    radial-gradient(60% 80% at 70% 20%, rgba(216,65,42,0.35), transparent 60%),
    linear-gradient(135deg, #2a1814 0%, #0d0d0f 60%, #1a1a22 100%);
  display: grid; place-items: center;
  color: rgba(255,255,255,0.35);
  font-style: italic;
  font-size: 0.95rem;
  text-align: center;
  padding: 24px;
}
.hero__placeholder span { max-width: 380px; }
.hero__scrim {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(13,13,15,0.2) 0%, rgba(13,13,15,0.85) 100%);
}
.hero__content {
  position: relative; z-index: 2;
  padding-top: clamp(80px, 14vw, 160px);
  padding-bottom: clamp(80px, 14vw, 160px);
  max-width: 920px;
}
.hero__title {
  font-size: clamp(48px, 8vw, 112px);
  margin-bottom: 24px;
}
.hero__subtitle {
  font-size: clamp(1.05rem, 1.6vw, 1.35rem);
  color: rgba(243,237,225,0.85);
  max-width: 640px;
  line-height: 1.5;
  margin-bottom: 36px;
}
.hero__ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 56px; }
.hero__meta {
  display: flex; flex-wrap: wrap; gap: 16px;
  font-size: 0.78rem;
  color: rgba(243,237,225,0.55);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-top: 1px solid var(--rule);
  padding-top: 20px;
  max-width: 720px;
}
.hero__meta-logos { font-weight: 600; color: var(--bone); }

/* ---------- Impact ---------- */
.impact {
  background: var(--bone);
  border-bottom: 1px solid var(--rule-dark);
  padding: 56px 0 40px;
  text-align: center;
}
.impact__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.impact__stat {
  display: flex; flex-direction: column; align-items: center;
  padding: 8px;
  border-left: 1px solid var(--rule-dark);
}
.impact__stat:first-child { border-left: 0; }
.impact__num {
  font-family: var(--display-font);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1;
}
.impact__label {
  margin-top: 10px;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.impact__note {
  margin: 24px 0 0; font-size: 0.78rem; color: var(--ink-soft);
  font-style: italic;
}
@media (max-width: 720px) {
  .impact__grid { grid-template-columns: 1fr; }
  .impact__stat { border-left: 0; padding: 16px 0; }
  .impact__stat + .impact__stat { border-top: 1px solid var(--rule-dark); }
}

/* ---------- Why ---------- */
.why {
  padding: clamp(48px, 7vw, 96px) 0;
  background: var(--paper);
}
.why__grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.why__media {
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-strong);
}
.why__placeholder {
  position: absolute; inset: 0;
  background:
    linear-gradient(135deg, #463029 0%, #1a1a22 100%);
  display: grid; place-items: center;
  color: rgba(255,255,255,0.4); font-style: italic;
  text-align: center; padding: 24px;
}
.why__copy h2 { font-size: clamp(36px, 4.5vw, 64px); margin-bottom: 24px; }
.why__copy p { margin-bottom: 18px; }
.why__copy .link-arrow { margin-top: 8px; }
@media (max-width: 880px) {
  .why__grid { grid-template-columns: 1fr; }
  .why__media { aspect-ratio: 4 / 3; }
}

/* ---------- Section heads ---------- */
.section-head { text-align: center; margin-bottom: clamp(40px, 5vw, 64px); }
.section-head h2 { font-size: clamp(36px, 4.5vw, 64px); }
.section-head--row {
  display: flex; align-items: end; justify-content: space-between;
  flex-wrap: wrap; gap: 24px; text-align: left;
}
.section-head--row h2 { margin-bottom: 0; }

/* ---------- Programs ---------- */
.programs {
  padding: clamp(48px, 7vw, 96px) 0;
  background: var(--bone);
  border-top: 1px solid var(--rule-dark);
  border-bottom: 1px solid var(--rule-dark);
}
.programs__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}
.program-card {
  grid-column: span 2;
  display: block;
  background: var(--paper);
  border-radius: var(--radius);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  border: 1px solid var(--rule-dark);
  transition: transform .2s ease, box-shadow .2s ease;
  box-shadow: var(--shadow-soft);
}
.program-card:hover { transform: translateY(-4px); box-shadow: 0 18px 40px rgba(0,0,0,0.12); }
.program-card--feature { grid-column: span 6; }
.program-card--feature .program-card__media { aspect-ratio: 21 / 9; }
.program-card--feature .program-card__body { padding: 32px clamp(24px, 4vw, 40px); }
.program-card--feature h3 { font-size: clamp(28px, 3.5vw, 44px); }
.program-card__media {
  aspect-ratio: 4 / 3;
  position: relative;
  background: linear-gradient(135deg, #2a1814 0%, #0d0d0f 100%);
}
.program-card__media--alt {
  background: linear-gradient(135deg, #20212a 0%, #0d0d0f 100%);
}
.program-card__placeholder {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  color: rgba(255,255,255,0.4);
  font-style: italic;
  font-size: 0.9rem;
}
.program-card__body { padding: 22px 24px 26px; }
.program-card__tag {
  display: inline-block;
  font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase;
  font-weight: 700; color: var(--accent);
  margin-bottom: 8px;
}
.program-card h3 { font-size: 1.4rem; margin: 4px 0 8px; }
.program-card p { margin: 0 0 14px; color: var(--ink-soft); font-size: 0.97rem; }
.program-card .link-arrow { font-size: 0.9rem; }

@media (max-width: 980px) {
  .programs__grid { grid-template-columns: repeat(2, 1fr); }
  .program-card { grid-column: span 1; }
  .program-card--feature { grid-column: span 2; }
}
@media (max-width: 600px) {
  .programs__grid { grid-template-columns: 1fr; }
  .program-card--feature { grid-column: span 1; }
}

/* ---------- Story ---------- */
.story {
  background: var(--onyx);
  color: var(--bone);
  padding: clamp(48px, 7vw, 96px) 0;
}
.story__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.story__media {
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-strong);
}
.story__placeholder {
  position: absolute; inset: 0;
  background:
    radial-gradient(70% 70% at 30% 30%, rgba(216,65,42,0.35), transparent 60%),
    linear-gradient(135deg, #1a1a22 0%, #0d0d0f 100%);
  display: grid; place-items: center;
  color: rgba(255,255,255,0.45); font-style: italic;
  text-align: center; padding: 24px;
}
.story__copy { margin: 0; }
.story__copy blockquote {
  margin: 0 0 24px;
  font-family: var(--display-font);
  font-weight: 600;
  font-size: clamp(28px, 3.5vw, 44px);
  line-height: 1.18;
  letter-spacing: -0.01em;
}
.story__copy blockquote p { margin: 0; }
.story__copy figcaption { color: rgba(243,237,225,0.65); margin-bottom: 24px; }
.story__copy figcaption strong { color: var(--bone); font-weight: 700; }
@media (max-width: 880px) {
  .story__grid { grid-template-columns: 1fr; }
}

/* ---------- Events ---------- */
.events { padding: clamp(48px, 7vw, 96px) 0; background: var(--paper); }
.events__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.event-card {
  display: flex;
  background: var(--bone);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--rule-dark);
  transition: transform .2s ease;
}
.event-card:hover { transform: translateY(-3px); }
.event-card__date {
  flex: 0 0 96px;
  background: var(--onyx);
  color: var(--bone);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 20px 12px;
  text-align: center;
  border-right: 4px solid var(--accent);
}
.event-card__month {
  font-size: 0.78rem; letter-spacing: 0.18em; text-transform: uppercase;
  font-weight: 700; color: var(--accent);
}
.event-card__day {
  font-family: var(--display-font);
  font-size: 2.4rem; font-weight: 800; letter-spacing: -0.02em;
  line-height: 1;
}
.event-card__body { padding: 20px 22px; flex: 1; }
.event-card h3 { font-size: 1.15rem; margin: 0 0 6px; }
.event-card p { margin: 0 0 14px; color: var(--ink-soft); font-size: 0.92rem; }
@media (max-width: 880px) {
  .events__grid { grid-template-columns: 1fr; }
}

/* ---------- Instagram feed ---------- */
.instagram-feed {
  padding: clamp(48px, 7vw, 96px) 0;
  background: var(--paper);
  border-top: 1px solid var(--rule-dark);
}
.instagram-feed__embed {
  max-width: 1100px;
  margin: 0 auto;
  min-height: 200px;
  position: relative;
}
.instagram-feed__embed behold-widget {
  display: block;
  width: 100%;
}

/* 3-up grid of Instagram posts (rendered by script.js from Behold's JSON feed) */
.instagram-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.instagram-tile {
  display: block;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--bone);
  position: relative;
}
.instagram-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .35s ease;
}
.instagram-tile:hover img { transform: scale(1.04); }
@media (max-width: 720px) {
  .instagram-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
}
.instagram-feed__placeholder {
  text-align: center;
  padding: 48px 24px;
  background: var(--bone);
  border: 1px dashed var(--rule-dark);
  border-radius: var(--radius);
  color: var(--ink-soft);
  font-size: 0.95rem;
  margin: 0;
}
.instagram-feed__placeholder strong { color: var(--ink); font-weight: 700; }
.instagram-feed__placeholder a { color: var(--accent); text-decoration: underline; }

/* ---------- Partners ---------- */
.partners {
  padding: 56px 0;
  background: var(--bone);
  border-top: 1px solid var(--rule-dark);
}
.partners .eyebrow { margin-bottom: 24px; }
.partners__row {
  display: flex; flex-wrap: wrap; justify-content: center; gap: clamp(24px, 5vw, 56px);
  align-items: center;
}
.partners__logo {
  font-family: var(--display-font);
  font-weight: 700;
  font-size: 1.4rem;
  letter-spacing: -0.01em;
  color: var(--ink-soft);
  opacity: 0.7;
  filter: grayscale(1);
  transition: opacity .2s ease;
}
.partners__logo:hover { opacity: 1; color: var(--ink); }

/* ---------- Help ---------- */
.help {
  padding: clamp(48px, 7vw, 96px) 0;
  background: var(--paper);
  border-top: 1px solid var(--rule-dark);
}
.help__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}
.help h2 { font-size: clamp(32px, 4vw, 56px); }
.help__list {
  list-style: none; padding: 0; margin: 0;
  display: grid; gap: 14px;
}
.help__list li {
  display: grid; grid-template-columns: 160px 1fr; gap: 16px;
  padding: 18px 22px;
  background: var(--bone);
  border-radius: var(--radius);
  border-left: 4px solid var(--accent);
  align-items: baseline;
}
.help__list strong { font-weight: 800; font-size: 1.05rem; }
.help__list span { color: var(--ink-soft); font-size: 0.95rem; }
@media (max-width: 880px) {
  .help__grid { grid-template-columns: 1fr; }
  .help__list li { grid-template-columns: 1fr; gap: 4px; }
}

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--onyx);
  color: var(--bone);
  padding: clamp(48px, 7vw, 96px) 0;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.cta-band::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(40% 60% at 80% 30%, rgba(216,65,42,0.2), transparent 70%),
    radial-gradient(50% 70% at 20% 90%, rgba(216,65,42,0.12), transparent 70%);
}
.cta-band__inner { text-align: center; max-width: 880px; margin: 0 auto; }
.cta-band h2 { font-size: clamp(36px, 5vw, 72px); margin-bottom: 32px; }
.cta-band__buttons { display: inline-flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
.cta-band__fine {
  margin-top: 28px; font-size: 0.82rem;
  color: rgba(243,237,225,0.55);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ---------- Newsletter ---------- */
.newsletter {
  padding: clamp(40px, 6vw, 72px) 0;
  background: var(--bone);
  border-top: 1px solid var(--rule-dark);
}
.newsletter__inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}
.newsletter h2 { font-family: var(--display-font); font-size: clamp(28px, 3vw, 40px); margin: 8px 0; }
.newsletter p { color: var(--ink-soft); margin: 0; }
.newsletter__form {
  display: flex; gap: 10px;
  background: var(--paper);
  padding: 8px;
  border-radius: 999px;
  border: 1px solid var(--rule-dark);
}
.newsletter__form input {
  flex: 1; min-width: 0;
  padding: 12px 18px;
  border: 0; background: transparent;
  font: inherit; color: inherit;
  outline: none;
}
@media (max-width: 720px) {
  .newsletter__inner { grid-template-columns: 1fr; }
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--onyx);
  color: var(--bone);
  padding: 64px 0 24px;
}
.site-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--rule);
}
.brand--footer .brand__mark {
  background: var(--bone); color: var(--onyx);
}
.brand--footer .brand__text small { color: rgba(243,237,225,0.55); }
.site-footer__tag {
  font-family: var(--display-font);
  font-style: italic;
  font-size: 1.2rem;
  margin-top: 20px;
  color: rgba(243,237,225,0.7);
}
.site-footer h4 {
  font-size: 0.78rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(243,237,225,0.55);
  margin-bottom: 18px;
  font-weight: 700;
}
.site-footer nav { display: flex; flex-direction: column; gap: 10px; }
.site-footer nav a, .site-footer > div a {
  color: var(--bone); text-decoration: none;
  font-weight: 500;
}
.site-footer nav a:hover { color: var(--accent); }
.site-footer > div a { display: block; margin-bottom: 10px; }
.site-footer__bottom {
  display: flex; justify-content: space-between; gap: 16px;
  flex-wrap: wrap;
  padding-top: 24px;
  font-size: 0.85rem;
  color: rgba(243,237,225,0.5);
}
.site-footer__bottom strong { color: var(--accent); }

@media (max-width: 880px) {
  .site-footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px) {
  .site-footer__grid { grid-template-columns: 1fr; }
}

/* ============================================================
   Subpage components
   ============================================================ */

/* Active nav state */
.nav a.is-active { color: var(--accent); }
.nav a.is-active::after { width: 100%; }

/* ---------- Page hero (smaller than homepage hero) ---------- */
.page-hero {
  background: var(--onyx);
  color: var(--bone);
  padding: clamp(56px, 7vw, 100px) 0 clamp(40px, 5vw, 64px);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.page-hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(50% 60% at 80% 20%, rgba(216,65,42,0.18), transparent 65%),
    linear-gradient(135deg, #16161a 0%, #0d0d0f 100%);
}
.page-hero__inner { max-width: 880px; }
.page-hero h1 {
  font-family: var(--display-font);
  font-size: clamp(40px, 6.5vw, 88px);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 24px;
}
.page-hero .lede { color: rgba(243,237,225,0.85); max-width: 620px; }
.page-hero .eyebrow { color: var(--accent); }

.page-hero--soft::before {
  background:
    radial-gradient(50% 60% at 80% 20%, rgba(216,65,42,0.10), transparent 65%),
    linear-gradient(135deg, #16161a 0%, #0d0d0f 100%);
}

/* ---------- About: film section ---------- */
.about-film {
  padding: clamp(48px, 7vw, 96px) 0;
  background: var(--paper);
  border-top: 1px solid var(--rule-dark);
}
.about-film .film-feature {
  max-width: 1000px;
  margin: 0 auto;
}
.about-film .film-feature__player {
  position: relative;
  aspect-ratio: 16 / 9;
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--onyx);
  box-shadow: var(--shadow-strong);
}
.about-film .film-feature__player iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ---------- About: values ---------- */
.values {
  background: var(--bone);
  padding: clamp(48px, 7vw, 96px) 0;
  border-top: 1px solid var(--rule-dark);
  border-bottom: 1px solid var(--rule-dark);
}
.values__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.value-card {
  background: var(--paper);
  border-radius: var(--radius);
  padding: 32px 28px;
  border: 1px solid var(--rule-dark);
  position: relative;
}
.value-card__num {
  display: inline-block;
  font-family: var(--display-font);
  font-size: 2.4rem; font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.value-card h3 { font-size: 1.4rem; margin: 0 0 10px; }
.value-card p { color: var(--ink-soft); margin: 0; font-size: 0.97rem; }
@media (max-width: 880px) {
  .values__grid { grid-template-columns: 1fr; }
}

/* ---------- About: team ---------- */
.team {
  padding: clamp(48px, 7vw, 96px) 0;
  background: var(--paper);
}
.team__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
@media (max-width: 1100px) {
  .team__grid { grid-template-columns: repeat(3, 1fr); }
}
.team-card { margin: 0; }
.team-card__photo {
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  background: linear-gradient(135deg, #2a1814 0%, #0d0d0f 100%);
  background-size: cover;
  background-position: center;
  display: grid; place-items: center;
  color: rgba(255,255,255,0.4);
  font-style: italic;
  margin-bottom: 16px;
  overflow: hidden;
}
.team-card__photo--chris    { background-image: url("images/team-chris-shearer.png"); }
.team-card__photo--charlie  { background-image: url("images/team-charlie-knight.jpg"); }
.team-card__photo--adam     { background-image: url("images/team-adam-colborne.jpg"); }
.team-card__photo--john     { background-image: url("images/team-john-allred.jpg"); }
.team-card__photo--steve    { background-image: url("images/team-steve-parsons.jpg"); }
body.has-photos .team-card__photo--chris span,
body.has-photos .team-card__photo--charlie span,
body.has-photos .team-card__photo--adam span,
body.has-photos .team-card__photo--john span,
body.has-photos .team-card__photo--steve span { display: none; }
.team-card figcaption { line-height: 1.4; }
.team-card strong { display: block; font-weight: 700; margin-bottom: 4px; }
.team-card span { color: var(--ink-soft); font-size: 0.9rem; }
@media (max-width: 880px) {
  .team__grid { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- About: transparency ---------- */
.transparency {
  padding: clamp(48px, 7vw, 96px) 0 clamp(40px, 5vw, 64px);
  background: var(--bone);
  border-top: 1px solid var(--rule-dark);
}
.transparency__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.transparency h2 { font-size: clamp(36px, 4.5vw, 64px); }
.transparency__list {
  list-style: none; padding: 0; margin: 0;
  display: grid; gap: 12px;
}
.transparency__list li {
  display: grid; grid-template-columns: 100px 1fr; align-items: baseline;
  gap: 16px;
  padding: 18px 22px;
  background: var(--paper);
  border-radius: var(--radius);
  border-left: 4px solid var(--accent);
}
.transparency__list strong {
  font-family: var(--display-font);
  font-size: 1.8rem; font-weight: 800;
  letter-spacing: -0.02em;
}
.transparency__list span { color: var(--ink-soft); }
@media (max-width: 880px) {
  .transparency__grid { grid-template-columns: 1fr; }
}

/* ---------- Programs: detail rows ---------- */
.program-detail {
  padding: clamp(48px, 7vw, 84px) 0;
  background: var(--paper);
  border-bottom: 1px solid var(--rule-dark);
}
.program-detail--alt { background: var(--bone); }
.program-detail__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.program-detail__grid--reverse > .program-detail__media { order: 2; }
.program-detail__media {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-strong);
}
.program-detail__placeholder {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #2a1814 0%, #0d0d0f 100%);
  display: grid; place-items: center;
  color: rgba(255,255,255,0.4); font-style: italic;
  text-align: center; padding: 24px;
}
.program-detail--alt .program-detail__placeholder {
  background: linear-gradient(135deg, #20212a 0%, #0d0d0f 100%);
}
.program-detail__copy h2 { font-size: clamp(36px, 4.5vw, 64px); margin-bottom: 16px; }
.program-detail__copy p { margin-bottom: 18px; }
@media (max-width: 880px) {
  .program-detail__grid,
  .program-detail__grid--reverse {
    grid-template-columns: 1fr;
  }
  .program-detail__grid--reverse > .program-detail__media { order: 0; }
}

/* ---------- Events: feature row ---------- */
.event-feature {
  padding: clamp(40px, 6vw, 72px) 0;
  background: var(--paper);
}
.event-feature__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding-left: var(--pad); padding-right: var(--pad);
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(32px, 5vw, 56px);
  align-items: center;
}
.event-feature__media {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-strong);
}
.event-feature__placeholder {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #2a1814 0%, #0d0d0f 100%);
  display: grid; place-items: center;
  color: rgba(255,255,255,0.4); font-style: italic;
}
.event-feature__copy h2 { font-size: clamp(36px, 4.5vw, 56px); margin-bottom: 8px; }
.event-feature__date {
  font-family: var(--display-font);
  font-size: 1.3rem; font-weight: 600;
  color: var(--accent);
  margin: 0 0 6px;
}
.event-feature__buttons { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
@media (max-width: 880px) {
  .event-feature__inner { grid-template-columns: 1fr; }
}

/* ---------- Events: full list ---------- */
.events-list {
  padding: clamp(48px, 7vw, 96px) 0;
  background: var(--bone);
  border-top: 1px solid var(--rule-dark);
}
.events-list__grid { display: grid; gap: 14px; }
.event-row {
  display: grid;
  grid-template-columns: 100px 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 18px 24px;
  background: var(--paper);
  border-radius: var(--radius);
  border-left: 4px solid var(--accent);
  transition: transform .2s ease;
}
.event-row:hover { transform: translateX(2px); }
.event-row.is-past { opacity: 0.5; }
.event-row.is-past:hover { transform: none; }
.event-row__status {
  font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase;
  font-weight: 700; color: var(--ink-soft);
  padding: 8px 14px;
  border: 1px solid var(--rule-dark);
  border-radius: 999px;
}
.event-row__date {
  display: flex; flex-direction: column; align-items: center;
  text-align: center;
}
.event-row__date span {
  font-size: 0.78rem; letter-spacing: 0.18em; text-transform: uppercase;
  font-weight: 700; color: var(--accent);
}
.event-row__date strong {
  font-family: var(--display-font);
  font-size: 2rem; font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1;
}
.event-row__body h3 { margin: 0 0 4px; font-size: 1.1rem; }
.event-row__body p { margin: 0; color: var(--ink-soft); font-size: 0.92rem; }
@media (max-width: 720px) {
  .event-row {
    grid-template-columns: 80px 1fr;
    grid-template-areas:
      "date body"
      "cta cta";
  }
  .event-row__date { grid-area: date; }
  .event-row__body { grid-area: body; }
  .event-row .btn { grid-area: cta; justify-self: start; margin-top: 8px; }
}

/* ============================================================
   FILM PAGE — dedicated longform story page (e.g. /film-rebuild)
   ============================================================ */
.film-hero {
  background: var(--onyx);
  color: var(--bone);
  padding: clamp(40px, 6vw, 72px) 0 clamp(40px, 5vw, 60px);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.film-hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, #16161a 0%, #0d0d0f 100%);
}
.film-hero__inner { max-width: 880px; }
.film-hero__back {
  display: inline-block;
  font-size: 0.82rem; letter-spacing: 0.16em; text-transform: uppercase;
  font-weight: 700; color: rgba(237,237,234,0.6);
  text-decoration: none;
  margin-bottom: 24px;
  transition: color .15s ease;
}
.film-hero__back:hover { color: var(--bone); }
.film-hero h1 {
  font-family: var(--display-font);
  font-size: clamp(56px, 9vw, 144px);
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 0.92;
  margin-bottom: 24px;
}
.film-hero__lede {
  font-size: clamp(1.1rem, 1.6vw, 1.4rem);
  color: rgba(237,237,234,0.85);
  max-width: 640px;
  line-height: 1.45;
  margin-bottom: 16px;
}
.film-hero__meta {
  font-size: 0.78rem; letter-spacing: 0.18em; text-transform: uppercase;
  font-weight: 700; color: rgba(237,237,234,0.5);
  margin: 0;
}

.film-watch {
  background: var(--onyx);
  padding: 0 0 clamp(40px, 6vw, 80px);
}
.film-watch .film-feature__player {
  max-width: 1100px;
  margin: 0 auto;
}

.film-banner {
  background: var(--onyx);
  color: var(--bone);
  padding: clamp(40px, 6vw, 64px) 0;
  border-top: 1px solid var(--rule);
}
.film-banner__inner { max-width: 760px; margin: 0 auto; text-align: center; }
.film-banner__copy {
  font-family: var(--display-font);
  font-size: clamp(1.3rem, 2vw, 1.7rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.35;
  margin: 16px 0 0;
}
.film-banner__copy strong { font-weight: 900; }

.film-chapter {
  padding: clamp(48px, 7vw, 96px) 0;
  background: var(--paper);
}
.film-chapter__inner { max-width: 720px; margin: 0 auto; }
.film-chapter h2 {
  font-size: clamp(36px, 5vw, 64px);
  margin-bottom: 24px;
}
.film-chapter p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 18px;
  color: var(--ink);
}
.film-chapter--dark {
  background: var(--onyx);
  color: var(--bone);
}
.film-chapter--dark p { color: rgba(237,237,234,0.85); }
.film-chapter--final {
  text-align: center;
  background: var(--bone);
  border-top: 1px solid var(--rule-dark);
}
.film-chapter--final h2 {
  font-size: clamp(48px, 7vw, 96px);
  letter-spacing: -0.04em;
}
.film-chapter--final .lede {
  max-width: 580px;
  margin: 0 auto;
  font-size: 1.2rem;
  color: var(--ink-soft);
}

.film-pullquote {
  padding: clamp(40px, 6vw, 84px) 0;
  background: var(--bone);
  border-top: 1px solid var(--rule-dark);
  border-bottom: 1px solid var(--rule-dark);
}
.film-pullquote .container { max-width: 960px; }
.film-pullquote blockquote {
  margin: 0;
  font-family: var(--display-font);
  font-weight: 800;
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  letter-spacing: -0.03em;
  line-height: 1.12;
  color: var(--ink);
}
.film-pullquote--alt { background: var(--paper); }
.film-pullquote--accent {
  background: var(--onyx);
  color: var(--bone);
}
.film-pullquote--accent blockquote { color: var(--bone); }
.film-pullquote--accent .eyebrow { color: var(--bone); margin-bottom: 24px; }

.cta-band__fine {
  margin-top: 24px !important;
  font-size: 0.85rem;
  color: rgba(237,237,234,0.6) !important;
  letter-spacing: 0.04em;
  text-transform: none !important;
}

/* ============================================================
   KEYNOTE / SPEECH PAGE — longform editorial reading layout
   ============================================================ */
.speech { background: var(--paper); }
.speech__inner { max-width: 720px; margin: 0 auto; }
.speech__chapter {
  padding: clamp(40px, 6vw, 72px) 0;
  background: var(--paper);
}
.speech__chapter--alt { background: var(--bone); }
.speech__chapter p {
  font-size: 1.15rem;
  line-height: 1.7;
  margin: 0 0 18px;
  color: var(--ink);
}
.speech__lede {
  font-family: var(--display-font);
  font-weight: 800 !important;
  font-size: clamp(1.5rem, 3vw, 2.2rem) !important;
  letter-spacing: -0.025em;
  line-height: 1.2 !important;
  margin-bottom: 28px !important;
  color: var(--ink) !important;
}
.speech__beat {
  font-family: var(--display-font);
  font-weight: 900 !important;
  font-size: clamp(1.4rem, 2.5vw, 1.9rem) !important;
  letter-spacing: -0.025em;
  line-height: 1.25 !important;
  margin: 24px 0 !important;
  color: var(--ink) !important;
}

.speech__pullquote {
  padding: clamp(40px, 6vw, 84px) 0;
  background: var(--bone);
  border-top: 1px solid var(--rule-dark);
  border-bottom: 1px solid var(--rule-dark);
}
.speech__pullquote .container { max-width: 960px; }
.speech__pullquote blockquote {
  margin: 0;
  font-family: var(--display-font);
  font-weight: 800;
  font-size: clamp(1.7rem, 3.8vw, 2.9rem);
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--ink);
}
.speech__pullquote--dark {
  background: var(--onyx);
  border-color: var(--rule);
}
.speech__pullquote--dark blockquote { color: var(--bone); }
.speech__pullquote--accent {
  background: var(--onyx);
  border-color: var(--rule);
}
.speech__pullquote--accent blockquote { color: var(--bone); }
.speech__pullquote--final {
  background: var(--onyx);
  border-color: var(--rule);
  text-align: center;
}
.speech__pullquote--final blockquote {
  color: var(--bone);
  margin-bottom: 32px;
}
.speech__close {
  font-family: var(--display-font);
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.3;
  color: var(--bone);
  margin: 0 0 16px;
}
.speech__signoff {
  font-size: 0.88rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  color: rgba(237,237,234,0.55);
  margin: 0;
}

/* The three asks at the end */
.speech__asks {
  background: var(--bone);
  border-top: 1px solid var(--rule-dark);
}
.speech__asks h2 {
  font-size: clamp(40px, 5.5vw, 72px);
  margin-bottom: 24px;
}
.speech__list {
  list-style: none;
  counter-reset: ask;
  padding: 0;
  margin: 32px 0 0;
  display: grid;
  gap: 24px;
}
.speech__list li {
  counter-increment: ask;
  padding: 28px 32px 28px 84px;
  background: var(--paper);
  border-radius: var(--radius);
  border: 1px solid var(--rule-dark);
  position: relative;
}
.speech__list li::before {
  content: counter(ask, decimal-leading-zero);
  position: absolute;
  left: 28px; top: 28px;
  font-family: var(--display-font);
  font-weight: 900;
  font-size: 2rem;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--ink-soft);
}
.speech__list strong {
  display: block;
  font-family: var(--display-font);
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.3;
  margin-bottom: 8px;
}
.speech__list span {
  display: block;
  color: var(--ink-soft);
  line-height: 1.55;
}

/* ============================================================
   PARTNERSHIPS — Sign the Hood deep-dive
   ============================================================ */
.hood-feature {
  background: var(--onyx);
  color: var(--bone);
  padding: clamp(48px, 7vw, 96px) 0;
}
.hood-feature__grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.hood-feature__media {
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-strong);
}
.hood-feature__placeholder {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(180deg, rgba(13,13,15,0.18) 0%, rgba(13,13,15,0.45) 100%),
    url("images/partnerships-hood-installed.jpg"),
    linear-gradient(135deg, #1a1a22 0%, #0d0d0f 100%);
  background-size: cover, cover, auto;
  background-position: center;
  display: grid; place-items: center;
}
body.has-photos .hood-feature__placeholder span { display: none; }

.hood-feature__copy h2 {
  font-size: clamp(36px, 5vw, 72px);
  margin-bottom: 24px;
  color: var(--bone);
}
.hood-feature__copy .lede { color: rgba(237,237,234,0.9); }
.hood-feature__copy p { color: rgba(237,237,234,0.85); }
.hood-feature__close {
  font-size: 1rem !important;
  line-height: 1.55 !important;
  margin: 28px 0 0 !important;
}

.hood-steps {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
  display: grid;
  gap: 18px;
}
.hood-steps li {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 20px 22px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
}
.hood-steps__num {
  font-family: var(--display-font);
  font-weight: 900;
  font-size: 1.4rem;
  letter-spacing: -0.04em;
  color: var(--bone);
  flex-shrink: 0;
  width: 38px;
}
.hood-steps li > div { flex: 1; }
.hood-steps strong {
  display: block;
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
  margin-bottom: 4px;
  color: var(--bone);
}
.hood-steps span {
  display: block;
  color: rgba(237,237,234,0.7);
  font-size: 0.95rem;
  line-height: 1.5;
}

@media (max-width: 880px) {
  .hood-feature__grid { grid-template-columns: 1fr; }
  .hood-feature__media { aspect-ratio: 4 / 3; }
}

/* ============================================================
   PARTNERSHIPS — tier progression cards
   ============================================================ */
.tiers {
  padding: clamp(48px, 7vw, 96px) 0;
  background: var(--bone);
  border-top: 1px solid var(--rule-dark);
  border-bottom: 1px solid var(--rule-dark);
}
.tiers__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: clamp(40px, 6vw, 64px);
}
.tier-card {
  background: var(--paper);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 3vw, 36px);
  border: 1px solid var(--rule-dark);
  display: flex;
  flex-direction: column;
  position: relative;
}
.tier-card--feature {
  background: var(--onyx);
  color: var(--bone);
  border-color: var(--onyx);
  transform: translateY(-12px);
  box-shadow: var(--shadow-strong);
}
.tier-card__num {
  font-family: var(--display-font);
  font-weight: 900;
  font-size: 2.4rem;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--ink-soft);
  margin-bottom: 6px;
}
.tier-card--feature .tier-card__num { color: rgba(237,237,234,0.55); }
.tier-card__time {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--ink-soft);
  margin-bottom: 18px;
  padding: 5px 12px;
  border: 1px solid var(--rule-dark);
  border-radius: 999px;
  align-self: flex-start;
}
.tier-card--feature .tier-card__time {
  color: var(--bone);
  border-color: var(--rule);
  background: rgba(255,255,255,0.05);
}
.tier-card h3 {
  font-family: var(--display-font);
  font-weight: 900;
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin: 0 0 12px;
  color: inherit;
}
.tier-card__lede {
  font-size: 1rem;
  line-height: 1.45;
  margin: 0 0 22px;
  color: var(--ink-soft);
}
.tier-card--feature .tier-card__lede { color: rgba(237,237,234,0.85); }
.tier-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: grid;
  gap: 10px;
  flex: 1;
}
.tier-card ul li {
  position: relative;
  padding-left: 22px;
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--ink);
}
.tier-card ul li::before {
  content: "→";
  position: absolute;
  left: 0;
  font-weight: 800;
  color: var(--ink-soft);
}
.tier-card--feature ul li { color: rgba(237,237,234,0.95); }
.tier-card--feature ul li::before { color: var(--bone); }
.tier-card .link-arrow { font-weight: 700; }
.tier-card--feature .link-arrow { color: var(--bone); }

@media (max-width: 980px) {
  .tiers__grid { grid-template-columns: 1fr; gap: 16px; }
  .tier-card--feature { transform: none; }
}

/* NAMI Lunch & Learn details list */
.lunch-learn-list {
  list-style: none;
  padding: 0;
  margin: 24px 0;
  display: grid;
  gap: 12px;
}
.lunch-learn-list li {
  padding: 14px 18px;
  background: var(--bone);
  border-radius: var(--radius);
  border-left: 3px solid var(--accent);
  font-size: 0.97rem;
  line-height: 1.5;
  color: var(--ink);
}
.lunch-learn-list strong {
  font-weight: 800;
  letter-spacing: -0.01em;
}

/* Why section "alt" variant — flips to the bone background */
.why--alt { background: var(--bone); border-top: 1px solid var(--rule-dark); }

/* ---------- Highlights video (partnerships page) ---------- */
.highlights-video {
  padding: clamp(48px, 7vw, 96px) 0;
  background: var(--paper);
  border-top: 1px solid var(--rule-dark);
}

/* ---------- Films section (YouTube embed) ---------- */
.films {
  padding: clamp(48px, 7vw, 96px) 0;
  background: var(--bone);
  border-top: 1px solid var(--rule-dark);
}
.film-feature {
  max-width: 1100px;
  margin: 0 auto;
}
.film-feature__player {
  position: relative;
  aspect-ratio: 16 / 9;
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--onyx);
  box-shadow: var(--shadow-strong);
}
.film-feature__player iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Side-by-side highlights videos on partnerships page */
.highlights-video__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 1180px;
  margin: 0 auto;
}
.highlights-video__grid .film-feature__player {
  aspect-ratio: 16 / 9;
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--onyx);
  position: relative;
  box-shadow: var(--shadow-strong);
}
@media (max-width: 880px) {
  .highlights-video__grid { grid-template-columns: 1fr; gap: 16px; }
}
.film-feature__caption {
  margin-top: 28px;
  text-align: center;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
.film-feature__caption h3 {
  font-family: var(--display-font);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  margin: 0 0 12px;
}
.film-feature__caption p {
  color: var(--ink-soft);
  margin: 0 0 14px;
  font-size: 1rem;
  line-height: 1.5;
}

/* ---------- Stories: cards ---------- */
.stories-list {
  padding: clamp(48px, 7vw, 96px) 0;
  background: var(--paper);
}
.stories-list__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.story-card {
  display: block;
  background: var(--bone);
  border-radius: var(--radius);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  border: 1px solid var(--rule-dark);
  transition: transform .2s ease, box-shadow .2s ease;
  box-shadow: var(--shadow-soft);
}
.story-card:hover { transform: translateY(-4px); box-shadow: 0 18px 40px rgba(0,0,0,0.12); }
.story-card__media {
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, #2a1814 0%, #0d0d0f 100%);
  display: grid; place-items: center;
  color: rgba(255,255,255,0.4);
  font-style: italic;
  font-size: 0.9rem;
}
.story-card:nth-child(2n) .story-card__media {
  background: linear-gradient(135deg, #20212a 0%, #0d0d0f 100%);
}
.story-card__body { padding: 22px 24px 26px; }
.story-card__tag {
  display: inline-block;
  font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase;
  font-weight: 700; color: var(--accent);
  margin-bottom: 12px;
}
.story-card h3 {
  font-family: var(--display-font);
  font-weight: 600;
  font-size: 1.15rem;
  line-height: 1.3;
  margin: 0 0 14px;
}
.story-card__name {
  display: block;
  font-size: 0.85rem;
  color: var(--ink-soft);
  letter-spacing: 0.04em;
}
@media (max-width: 980px) {
  .stories-list__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .stories-list__grid { grid-template-columns: 1fr; }
}

/* ---------- Get Help: now / resources ---------- */
.help-now {
  padding: clamp(40px, 6vw, 72px) 0;
  background: var(--paper);
}
.help-now__card {
  max-width: 760px;
  margin: 0 auto;
  background: var(--onyx);
  color: var(--bone);
  border-radius: var(--radius-lg);
  padding: clamp(40px, 6vw, 64px);
  text-align: center;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: var(--shadow-strong);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.help-now__card::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: radial-gradient(60% 80% at 50% 0%, rgba(216,65,42,0.25), transparent 65%);
}
.help-now__label {
  display: inline-block;
  font-size: 0.78rem; letter-spacing: 0.18em; text-transform: uppercase;
  font-weight: 700; color: var(--accent);
  margin-bottom: 12px;
}
.help-now__card h2 {
  font-family: var(--display-font);
  font-size: clamp(36px, 5vw, 64px);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.help-now__card h2 strong { color: var(--accent); font-weight: 800; }
.help-now__card p { color: rgba(243,237,225,0.85); margin: 0 auto 24px; max-width: 520px; }
.help-now__buttons { display: inline-flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.help-now__fine {
  margin-top: 20px !important;
  font-size: 0.88rem;
  color: rgba(243,237,225,0.6) !important;
}
.help-now__fine a { color: var(--accent); }

.help-resources {
  padding: clamp(48px, 7vw, 96px) 0;
  background: var(--bone);
  border-top: 1px solid var(--rule-dark);
}
.help-resources__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.resource-card {
  background: var(--paper);
  border-radius: var(--radius);
  padding: 28px 26px;
  border: 1px solid var(--rule-dark);
  border-top: 4px solid var(--accent);
  display: flex; flex-direction: column;
}
.resource-card h3 { font-size: 1.2rem; margin: 0 0 10px; }
.resource-card p { color: var(--ink-soft); margin: 0 0 12px; font-size: 0.95rem; }
.resource-card__detail {
  font-weight: 600;
  color: var(--ink) !important;
  font-size: 0.9rem !important;
}
.resource-card .link-arrow { margin-top: auto; font-size: 0.9rem; }
@media (max-width: 880px) {
  .help-resources__grid { grid-template-columns: 1fr; }
}

/* ---------- Donate page ---------- */
.donate {
  padding: clamp(48px, 7vw, 84px) 0;
  background: var(--paper);
}
.donate__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(32px, 5vw, 56px);
  align-items: start;
}
.donate__panel {
  background: var(--bone);
  border-radius: var(--radius-lg);
  padding: clamp(32px, 4vw, 48px);
  border: 1px solid var(--rule-dark);
  box-shadow: var(--shadow-soft);
}
.donate__panel h2 { font-size: clamp(28px, 3vw, 40px); margin-bottom: 8px; }
.donate__panel > p { color: var(--ink-soft); margin: 0 0 24px; }
.donate__amounts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 16px;
}
.donate__amount {
  padding: 16px 12px;
  font-family: var(--display-font);
  font-weight: 700;
  font-size: 1.3rem;
  letter-spacing: -0.01em;
  background: var(--paper);
  border: 1px solid var(--rule-dark);
  border-radius: var(--radius);
  cursor: pointer;
  transition: all .15s ease;
  color: var(--ink);
}
.donate__amount:hover { border-color: var(--accent); }
.donate__amount.is-selected {
  background: var(--onyx);
  color: var(--bone);
  border-color: var(--onyx);
}
.donate__amount--custom {
  font-family: var(--sans);
  font-size: 1rem;
}
.donate__custom { display: block; margin-bottom: 16px; }
.donate__custom span {
  display: block; font-size: 0.85rem; color: var(--ink-soft);
  margin-bottom: 6px; font-weight: 600;
}
.donate__custom input {
  width: 100%; padding: 14px 18px;
  border: 1px solid var(--rule-dark);
  border-radius: var(--radius);
  font: inherit;
  background: var(--paper);
}
.donate__frequency {
  display: flex; gap: 16px;
  margin-bottom: 24px;
  font-size: 0.95rem;
}
.donate__frequency label {
  display: inline-flex; align-items: center; gap: 8px; cursor: pointer;
}
.donate__cta { width: 100%; }
.donate__monthly-note {
  margin: -8px 0 18px;
  padding: 10px 14px;
  font-size: 0.85rem;
  background: var(--bone-2);
  border-radius: 10px;
  color: var(--ink);
  font-weight: 500;
}
.donate__fine {
  margin-top: 16px;
  font-size: 0.82rem; color: var(--ink-soft);
  letter-spacing: 0.04em;
}
.donate__why {
  background: var(--onyx);
  color: var(--bone);
  border-radius: var(--radius-lg);
  padding: clamp(32px, 4vw, 40px);
}
.donate__why .eyebrow { color: var(--accent); }
.donate__why h3 {
  font-family: var(--display-font);
  font-size: 1.6rem;
  margin: 0 0 20px;
}
.donate__impact-list { list-style: none; padding: 0; margin: 0 0 24px; display: grid; gap: 12px; }
.donate__impact-list li {
  display: grid; grid-template-columns: 80px 1fr;
  gap: 12px; align-items: baseline;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--rule);
}
.donate__impact-list li:last-child { border-bottom: 0; }
.donate__impact-list strong {
  font-family: var(--display-font);
  font-size: 1.4rem;
  color: var(--accent);
}
.donate__impact-list span { color: rgba(243,237,225,0.85); font-size: 0.95rem; }
.donate__why-tag {
  font-size: 0.88rem;
  color: rgba(243,237,225,0.65);
  margin: 0;
}
.donate__why-tag a { color: var(--accent); }
@media (max-width: 880px) {
  .donate__grid { grid-template-columns: 1fr; }
}

/* ---------- Donate: other ways ---------- */
.other-give {
  padding: clamp(48px, 7vw, 96px) 0;
  background: var(--bone);
  border-top: 1px solid var(--rule-dark);
}
.other-give__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.other-give__card {
  background: var(--paper);
  border-radius: var(--radius);
  padding: 28px 30px;
  border: 1px solid var(--rule-dark);
}
.other-give__card h3 { font-size: 1.2rem; margin: 0 0 10px; }
.other-give__card p { color: var(--ink-soft); margin: 0 0 12px; font-size: 0.95rem; }
.other-give__detail { font-weight: 600; color: var(--ink) !important; }
@media (max-width: 720px) {
  .other-give__grid { grid-template-columns: 1fr; }
}

/* ---------- Contact ---------- */
.contact {
  padding: clamp(48px, 7vw, 84px) 0;
  background: var(--paper);
}
.contact__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}
.contact__form {
  display: grid; gap: 18px;
  background: var(--bone);
  padding: clamp(28px, 4vw, 40px);
  border-radius: var(--radius-lg);
  border: 1px solid var(--rule-dark);
}
.contact__form label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink);
}
.contact__form label > span {
  display: block; margin-bottom: 6px;
  letter-spacing: 0.02em;
}
.contact__form input,
.contact__form select,
.contact__form textarea {
  width: 100%;
  padding: 14px 16px;
  font: inherit;
  color: inherit;
  background: var(--paper);
  border: 1px solid var(--rule-dark);
  border-radius: 10px;
  outline: none;
  transition: border-color .15s ease;
}
.contact__form input:focus,
.contact__form select:focus,
.contact__form textarea:focus { border-color: var(--accent); }
.contact__form textarea { resize: vertical; min-height: 140px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact__form button { justify-self: start; }
.contact__form-fine {
  font-size: 0.82rem; color: var(--ink-soft);
  margin: 0;
}
.contact__aside { display: grid; gap: 24px; }
.contact__block h3 {
  font-size: 0.88rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ink-soft);
  margin: 0 0 8px;
  font-weight: 700;
}
.contact__block p { margin: 0; }
.contact__block a { color: var(--accent); text-decoration: none; font-weight: 600; }
.contact__block a:hover { text-decoration: underline; }
@media (max-width: 880px) {
  .contact__grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

/* ---------- Status pages (404 / thanks) ---------- */
.status-page {
  background: var(--onyx);
  color: var(--bone);
  padding: clamp(80px, 12vw, 160px) 0;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  min-height: 60vh;
  display: grid;
  align-items: center;
}
.status-page::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(40% 60% at 80% 30%, rgba(216,65,42,0.18), transparent 70%),
    linear-gradient(135deg, #16161a 0%, #0d0d0f 100%);
}
.status-page__inner { max-width: 720px; }
.status-page h1 { font-size: clamp(40px, 6vw, 80px); margin-bottom: 24px; }
.status-page .lede { color: rgba(243,237,225,0.85); margin-bottom: 32px; }
.status-page__buttons { display: flex; flex-wrap: wrap; gap: 12px; }

/* ============================================================
   Real-photo bindings
   ------------------------------------------------------------
   When photos are dropped into /images/ with the names below,
   they replace the gradient placeholders. The gradient stays
   underneath as a fallback until each file lands.
   ============================================================ */

/* Photos provided by Chris (Team Wheelhouse Porsche 718 Cayman GT4):
   01-paddock.jpg        = rear 3/4 paddock with big wing, "988" decal
   02-mission.jpg        = front view, "Change the Stigma" splitter, carbon hood
   03-track.jpg          = front 3/4 at track grandstands, "CALL 988" prominent
   04-autox.jpg          = front 3/4 in autox, cones, low angle
   05-road.jpg           = forest road, cinematic, "team » wheelhouse" decal
   06-mountain-side.jpg  = side profile in mountain pass, golden hour, rocky cliff
   07-ride-bikes.jpg  = rear 3/4 in mountain pass, big wing, golden hour
   08-dragon.jpg         = at "Back of the Dragon" landmark sign
   09-track-summer.jpg   = track grandstands, summer day
   10-autox-action.jpg   = autox rear with cones, motion shot
   11-corporate.jpg      = Bank of America Tower Charlotte, urban side profile
   12-driver.jpg         = front low angle, driver in helmet visible — action
   13-action.jpg         = autox rear 3/4 in motion, cones, "988 xp" decal
   14-signing.jpg        = community member signing the hood — moment of participation
   15-legacy.jpg         = signed hood + helmet displayed on wall (B&W) — the mission, made physical
   16-veteran.jpg        = veteran in red cap signing the hood at an event — story moment
   17-event-scene.jpg    = full event setup at Bank of America Tower (car + branded tents)
*/

/* ============================================================
   PHOTO ASSIGNMENT UPDATES — using all 17 photos strategically
   ============================================================ */

/* HOMEPAGE Why section — image 15 (signed hood as wall art) is the
   visual answer to "Cars don't fix you. But the people around them might." */
.why .why__placeholder {
  background-image: url("images/15-legacy.jpg") !important;
  background-size: cover !important;
  background-position: center !important;
  background-color: #1a1a22;
}
/* On the About page the .why placeholder uses a different photo */
body.is-about .why .why__placeholder {
  background-image:
    url("images/about-why.png"),
    linear-gradient(135deg, #463029 0%, #1a1a22 100%) !important;
  background-size: cover, auto !important;
  background-position: center, 0 0 !important;
}
/* Get help "for someone you love" still uses image 5 */
body.is-get-help .help-resources + .why .why__placeholder {
  background-image: url("images/V70XCWagon.png") !important;
  background-size: cover !important;
  background-position: center !important;
}

/* HOMEPAGE Featured story — image 14 (woman signing hood) — the moment */
body.is-home .story .story__placeholder {
  background-image:
    linear-gradient(180deg, rgba(13,13,15,0.20) 0%, rgba(13,13,15,0.55) 100%),
    url("images/14-signing.jpg"),
    linear-gradient(135deg, #1a1a22 0%, #0d0d0f 100%) !important;
  background-size: cover, cover, auto !important;
  background-position: center, center, 0 0 !important;
}

/* STORIES PAGE featured story — image 16 (veteran signing) */
body.is-stories .story .story__placeholder {
  background-image:
    linear-gradient(180deg, rgba(13,13,15,0.18) 0%, rgba(13,13,15,0.55) 100%),
    url("images/16-veteran.jpg"),
    linear-gradient(135deg, #1a1a22 0%, #0d0d0f 100%) !important;
  background-size: cover, cover, auto !important;
  background-position: center, center, 0 0 !important;
}

/* PROGRAMS PAGE — Track Days now uses image 13 (more motion) */
#track-days .program-detail__placeholder {
  background-image: url("images/13-action.jpg"), linear-gradient(135deg, #2a1814 0%, #0d0d0f 100%) !important;
  background-size: cover, auto !important;
  background-position: center, 0 0 !important;
}

/* ABOUT page hero — image 17 (full event scene) lands the "established" feel */
body.is-about .page-hero::before {
  background:
    linear-gradient(180deg, rgba(13,13,15,0.65) 0%, rgba(13,13,15,0.92) 100%),
    url("images/17-event-scene.jpg") center/cover no-repeat,
    linear-gradient(135deg, #16161a 0%, #0d0d0f 100%) !important;
}

/* CONTACT page hero — bump up to image 17 too (corporate event scene) */
body.is-contact .page-hero::before {
  background:
    linear-gradient(180deg, rgba(13,13,15,0.65) 0%, rgba(13,13,15,0.9) 100%),
    url("images/contact-hero.jpg") center/cover no-repeat,
    linear-gradient(135deg, #16161a 0%, #0d0d0f 100%) !important;
}

/* PARTNERSHIPS PAGE bindings */
body.is-partnerships .page-hero::before {
  background:
    linear-gradient(180deg, rgba(13,13,15,0.65) 0%, rgba(13,13,15,0.9) 100%),
    url("images/partnerships-hero.jpg") center/cover no-repeat,
    linear-gradient(135deg, #16161a 0%, #0d0d0f 100%) !important;
}

/* Sign the Hood card (3rd offering on partnerships page) */
body.is-partnerships .programs__grid .program-card:nth-child(3) .program-card__media {
  background-image: url("images/14-signing.jpg"), linear-gradient(135deg, #20212a 0%, #0d0d0f 100%) !important;
  background-size: cover, auto !important;
  background-position: center !important;
}

/* NAMI Lunch & Learns — section #nami-lunch-learns */
body.is-partnerships #nami-lunch-learns .why__placeholder {
  background-image: url("images/bonus-conversation.jpg") !important;
  background-size: cover !important;
  background-position: center !important;
}

/* "You Are Not Alone" — section #not-alone — uses installed-hood photo */
body.is-partnerships #not-alone .why__placeholder {
  background-image: url("images/partnerships-hood-installed.jpg") !important;
  background-size: cover !important;
  background-position: center !important;
}

/* STORIES grid — community variety: different vehicles, different people.
   Includes: human moment, vintage VW, motorcycles, modern muscle,
   second TW foundation car (944), and modern Corvette. */
.stories-list .story-card:nth-child(1) .story-card__media { background-image: url("images/14-signing.jpg") !important; background-size: cover !important; background-position: center !important; }
.stories-list .story-card:nth-child(2) .story-card__media { background-image: url("images/19-vw-scirocco.jpg") !important; background-size: cover !important; background-position: center !important; }
.stories-list .story-card:nth-child(3) .story-card__media { background-image: url("images/25-motorcycles.jpg") !important; background-size: cover !important; background-position: center !important; }
.stories-list .story-card:nth-child(4) .story-card__media { background-image: url("images/21-cadillac.jpg") !important; background-size: cover !important; background-position: center !important; }
.stories-list .story-card:nth-child(5) .story-card__media { background-image: url("images/26-tw-944.jpg") !important; background-size: cover !important; background-position: center !important; }
.stories-list .story-card:nth-child(6) .story-card__media { background-image: url("images/23-corvette-z06.jpg") !important; background-size: cover !important; background-position: center !important; }

/* Stories on Film — replace the dragon image with the literal film-rig shot */
.programs__grid .program-card:nth-child(5) .program-card__media {
  background-image: url("images/18-film-rig.jpg"), linear-gradient(135deg, #20212a 0%, #0d0d0f 100%) !important;
  background-size: cover, auto !important;
  background-position: center !important;
}
#stories-on-film .program-detail__placeholder {
  background-image: url("images/18-film-rig.jpg"), linear-gradient(135deg, #2a1814 0%, #0d0d0f 100%) !important;
  background-size: cover, auto !important;
  background-position: center, 0 0 !important;
}

/* ============================================================
   BOLD TYPOGRAPHY PASS — heavier weights, tighter tracking,
   no italics. Matches the decal/wordmark feel of the actual brand.
   ============================================================ */

/* Brand wordmark — heavier */
.brand__mark { font-family: var(--display-font); font-weight: 900; letter-spacing: -0.02em; }

/* Big stat numbers */
.impact__num,
.event-card__day,
.event-row__date strong,
.transparency__list strong,
.donate__impact-list strong {
  font-family: var(--display-font);
  font-weight: 900;
  letter-spacing: -0.04em;
}

/* Blockquote — was serif italic, now heavy sans */
.story__copy blockquote {
  font-family: var(--display-font);
  font-weight: 800;
  font-style: normal;
  letter-spacing: -0.025em;
  line-height: 1.1;
}

/* Story card headlines — heavy sans, not serif */
.story-card h3 {
  font-family: var(--display-font);
  font-weight: 800;
  font-style: normal;
  letter-spacing: -0.02em;
  line-height: 1.18;
}

/* Footer tag — drop italic, semi-bold */
.site-footer__tag {
  font-family: var(--display-font);
  font-style: normal;
  font-weight: 500;
  letter-spacing: -0.01em;
}

/* Partners logos — heavier and tracked */
.partners__logo {
  font-family: var(--display-font);
  font-weight: 800;
  letter-spacing: -0.025em;
}

/* Donate amount buttons — match the new system */
.donate__amount {
  font-family: var(--display-font);
  font-weight: 800;
  letter-spacing: -0.025em;
}

/* Donate why title */
.donate__why h3 {
  font-family: var(--display-font);
  font-weight: 900;
  letter-spacing: -0.025em;
}

/* Help-now headline */
.help-now__card h2 {
  font-family: var(--display-font);
  font-weight: 900;
  letter-spacing: -0.035em;
}

/* Newsletter heading */
.newsletter h2 {
  font-family: var(--display-font);
  font-weight: 900;
  letter-spacing: -0.025em;
}

/* Event-feature date */
.event-feature__date {
  font-family: var(--display-font);
  font-weight: 800;
  font-style: normal;
  letter-spacing: -0.01em;
}

/* Make all primary buttons feel weightier */
.btn { font-weight: 700; letter-spacing: -0.005em; }
.btn--lg { font-weight: 800; }


/* ============================================================
   THEME OPTIONS — preview by adding data-theme attribute
   to the <body> tag of any HTML file:

       <body class="..." data-theme="red">

   Default (no attribute) = pure monochrome.
   ============================================================ */

/* Restore .accent color so theme-driven emphasis shows on "the stigma" */
.accent { color: var(--accent); font-weight: 900; }

/* OPTION A — MONOCHROME (current default, no override needed)
   Pure black + bone. Editorial, restrained, timeless.
   Personality: "We are serious." */

/* OPTION B — SIGNAL RED — racing, urgency, "Racing to change the stigma" literal */
[data-theme="red"] {
  --accent: #c83a26;
  --accent-light: #e35a3f;
}
[data-theme="red"] .btn--primary { background: var(--accent); border-color: var(--accent); color: #fff; }
[data-theme="red"] .btn--primary:hover { background: #a82e1e; }
[data-theme="red"] .nav a.is-active { color: var(--accent); }
[data-theme="red"] .nav a.is-active::after { background: var(--accent); }

/* OPTION C — LIFELINE GREEN — mental wellness, hope, "go" */
[data-theme="green"] {
  --accent: #2a7048;
  --accent-light: #5cb088;
}
[data-theme="green"] .btn--primary { background: var(--accent); border-color: var(--accent); color: #fff; }
[data-theme="green"] .btn--primary:hover { background: #1f5837; }
[data-theme="green"] .nav a.is-active { color: var(--accent); }
[data-theme="green"] .nav a.is-active::after { background: var(--accent); }

/* OPTION D — HERITAGE ORANGE — vintage automotive editorial, leather + gasoline */
[data-theme="orange"] {
  --accent: #b35a2c;
  --accent-light: #e08456;
}
[data-theme="orange"] .btn--primary { background: var(--accent); border-color: var(--accent); color: #fff; }
[data-theme="orange"] .btn--primary:hover { background: #934621; }
[data-theme="orange"] .nav a.is-active { color: var(--accent); }
[data-theme="orange"] .nav a.is-active::after { background: var(--accent); }

/* OPTION E — TRACK YELLOW — track flag, attention without aggression */
[data-theme="yellow"] {
  --accent: #8a6818;
  --accent-light: #f0c64a;
}
[data-theme="yellow"] .btn--primary { background: var(--accent); border-color: var(--accent); color: #fff; }
[data-theme="yellow"] .btn--primary:hover { background: #6f5210; }
[data-theme="yellow"] .nav a.is-active { color: var(--accent); }
[data-theme="yellow"] .nav a.is-active::after { background: var(--accent); }

/* OPTION F — STEEL BLUE — corporate trust, partnership-coded, calm */
[data-theme="blue"] {
  --accent: #2c4a72;
  --accent-light: #6ea3d4;
}
[data-theme="blue"] .btn--primary { background: var(--accent); border-color: var(--accent); color: #fff; }
[data-theme="blue"] .btn--primary:hover { background: #1f3656; }
[data-theme="blue"] .nav a.is-active { color: var(--accent); }
[data-theme="blue"] .nav a.is-active::after { background: var(--accent); }

/* Bump body copy headings (h3 inside cards etc.) for visual rhythm */
.program-card h3,
.event-card h3,
.event-row__body h3,
.resource-card h3,
.value-card h3,
.other-give__card h3,
.event-feature__copy h2,
.team-card strong { letter-spacing: -0.025em; font-weight: 800; }

/* ============================================================
   MONOCHROME — overrides for places that used red on dark bg
   ============================================================ */

/* Decorative red glows in dark sections → subtle white glows */
.hero .hero__placeholder {
  background-image:
    linear-gradient(180deg, rgba(13,13,15,0.45) 0%, rgba(13,13,15,0.85) 100%),
    url("images/12-driver.jpg"),
    radial-gradient(60% 80% at 70% 20%, rgba(255,255,255,0.06), transparent 60%),
    linear-gradient(135deg, #1a1a1a 0%, #0d0d0f 60%, #20212a 100%) !important;
  background-size: cover, cover, auto, auto !important;
  background-position: center, center, 0 0, 0 0 !important;
}
.story .story__placeholder {
  background-image:
    linear-gradient(180deg, rgba(13,13,15,0.25) 0%, rgba(13,13,15,0.65) 100%),
    url("images/01-paddock.jpg"),
    radial-gradient(70% 70% at 30% 30%, rgba(255,255,255,0.05), transparent 60%),
    linear-gradient(135deg, #1a1a22 0%, #0d0d0f 100%) !important;
  background-size: cover, cover, auto, auto !important;
  background-position: center, center, 0 0, 0 0 !important;
}
.cta-band::before {
  background:
    radial-gradient(40% 60% at 80% 30%, rgba(255,255,255,0.05), transparent 70%),
    radial-gradient(50% 70% at 20% 90%, rgba(255,255,255,0.03), transparent 70%) !important;
}
.help-now__card::before {
  background: radial-gradient(60% 80% at 50% 0%, rgba(255,255,255,0.08), transparent 65%) !important;
}
.page-hero::before {
  background:
    radial-gradient(50% 60% at 80% 20%, rgba(255,255,255,0.05), transparent 65%),
    linear-gradient(135deg, #16161a 0%, #0d0d0f 100%) !important;
}

/* Active state — bold underline instead of red */
.nav a.is-active { color: var(--ink); font-weight: 700; }
.nav a.is-active::after { background: var(--ink); }

/* Eyebrows + accents on DARK backgrounds use bone instead of black */
.crisis-band__label,
.crisis-band__link:hover,
.page-hero .eyebrow,
.donate__why .eyebrow,
.donate__why .donate__impact-list strong,
.donate__why-tag a,
.help-now__label,
.help-now__card h2 strong,
.help-now__fine a,
.event-card__date .event-card__month,
.story__copy figcaption strong,
.cta-band .eyebrow,
.site-footer__bottom strong { color: var(--accent-light); }

/* Borders that were red on dark contexts → bone */
.event-card__date { border-right-color: var(--accent-light); }

/* The .accent inline span (used for "the stigma") — italic emphasis instead of color */
.accent { color: inherit; font-style: italic; font-weight: 700; }

/* Hero headline rotator — fades the last word(s) on a timer */
.hero__rotate {
  display: inline-block;
  transition: opacity .35s ease, transform .35s ease;
  will-change: opacity, transform;
}
.hero__rotate.is-out {
  opacity: 0;
  transform: translateY(10px);
}

/* Hover state for primary buttons — slight lighten instead of red shift */
.btn--primary { background: var(--onyx); color: var(--bone); border-color: var(--onyx); }
.btn--primary:hover { background: #2a2a2e; }

/* Help-list border-left accent on light bg — keep ink, OK */
/* (no change needed; --accent is now ink, looks like a strong divider)  */

/* Stories grid: simplify the alternating gradient (drop red tint) */
.story-card:nth-child(2n) .story-card__media {
  background: linear-gradient(135deg, #20212a 0%, #0d0d0f 100%);
}

/* ============================================================
   NEW PHOTO BINDINGS (06-12) — extend the photo library
   ============================================================ */

/* Homepage hero now uses image 12 (driver visible — action) */
/* — already overridden above */

/* Homepage Why → image 2 (already bound, kept) */
/* Homepage featured story → image 1 (already bound, kept) */

/* Homepage program cards (each gets its own photo) */
.program-card--feature .program-card__media {
  background-image:
    linear-gradient(180deg, rgba(13,13,15,0.15) 0%, rgba(13,13,15,0.55) 100%),
    url("images/07-ride-bikes.jpg"),
    linear-gradient(135deg, #2a1814 0%, #0d0d0f 100%);
  background-size: cover, cover, auto;
  background-position: center;
}
.programs__grid .program-card:nth-child(2) .program-card__media {
  background-image: url("images/31-off-axis-trophy.jpg"), linear-gradient(135deg, #0d0d0f 0%, #16161a 100%);
  background-size: cover, auto;
  background-position: center;
  background-color: #0d0d0f;
}
.programs__grid .program-card:nth-child(3) .program-card__media {
  background-image: url("images/10-autox-action.jpg"), linear-gradient(135deg, #20212a 0%, #0d0d0f 100%);
  background-size: cover, auto;
  background-position: center;
}
.programs__grid .program-card:nth-child(4) .program-card__media {
  background-image: url("images/11-corporate.jpg"), linear-gradient(135deg, #20212a 0%, #0d0d0f 100%);
  background-size: cover, auto;
  background-position: center;
}
.programs__grid .program-card:nth-child(5) .program-card__media {
  background-image: url("images/08-dragon.jpg"), linear-gradient(135deg, #20212a 0%, #0d0d0f 100%);
  background-size: cover, auto;
  background-position: center;
}

/* PROGRAMS PAGE — extend with new photos */
#ride-to-clear .program-detail__placeholder {
  background-image: url("images/07-ride-bikes.jpg"), linear-gradient(135deg, #2a1814 0%, #0d0d0f 100%) !important;
  background-size: cover, auto !important;
  background-position: center, 0 0 !important;
}
#off-axis-500 .program-detail__placeholder {
  background-image: url("images/31-off-axis-trophy.jpg"), linear-gradient(135deg, #0d0d0f 0%, #16161a 100%) !important;
  background-size: cover, auto !important;
  background-position: center, 0 0 !important;
  background-color: #0d0d0f;
}
#track-days .program-detail__placeholder {
  background-image: url("images/10-autox-action.jpg"), linear-gradient(135deg, #2a1814 0%, #0d0d0f 100%) !important;
  background-size: cover, auto !important;
  background-position: center, 0 0 !important;
}
#partnerships .program-detail__placeholder {
  background-image: url("images/11-corporate.jpg"), linear-gradient(135deg, #20212a 0%, #0d0d0f 100%) !important;
  background-size: cover, auto !important;
  background-position: center, 0 0 !important;
}
#stories-on-film .program-detail__placeholder {
  background-image: url("images/08-dragon.jpg"), linear-gradient(135deg, #2a1814 0%, #0d0d0f 100%) !important;
  background-size: cover, auto !important;
  background-position: center, 0 0 !important;
}

/* EVENTS feature → trophy photo (matches homepage Off Axis 500 card) */
.event-feature .event-feature__placeholder {
  background-image: url("images/31-off-axis-trophy.jpg"), linear-gradient(135deg, #0d0d0f 0%, #16161a 100%) !important;
  background-size: cover, auto !important;
  background-position: center, 0 0 !important;
  background-color: #0d0d0f;
}

/* STORIES grid — cycle through more variety */
.stories-list .story-card:nth-child(1) .story-card__media { background-image: url("images/06-mountain-side.jpg"), linear-gradient(135deg, #2a1814 0%, #0d0d0f 100%) !important; background-size: cover, auto !important; background-position: center !important; }
.stories-list .story-card:nth-child(2) .story-card__media { background-image: url("images/12-driver.jpg"), linear-gradient(135deg, #20212a 0%, #0d0d0f 100%) !important; background-size: cover, auto !important; background-position: center !important; }
.stories-list .story-card:nth-child(3) .story-card__media { background-image: url("images/05-road.jpg"), linear-gradient(135deg, #2a1814 0%, #0d0d0f 100%) !important; background-size: cover, auto !important; background-position: center !important; }
.stories-list .story-card:nth-child(4) .story-card__media { background-image: url("images/11-corporate.jpg"), linear-gradient(135deg, #20212a 0%, #0d0d0f 100%) !important; background-size: cover, auto !important; background-position: center !important; }
.stories-list .story-card:nth-child(5) .story-card__media { background-image: url("images/04-autox.jpg"), linear-gradient(135deg, #2a1814 0%, #0d0d0f 100%) !important; background-size: cover, auto !important; background-position: center !important; }
.stories-list .story-card:nth-child(6) .story-card__media { background-image: url("images/08-dragon.jpg"), linear-gradient(135deg, #20212a 0%, #0d0d0f 100%) !important; background-size: cover, auto !important; background-position: center !important; }

/* PAGE HERO backdrops — use new photos with monochrome treatment */
body.is-about .page-hero::before {
  background:
    linear-gradient(180deg, rgba(13,13,15,0.65) 0%, rgba(13,13,15,0.9) 100%),
    url("images/06-mountain-side.jpg") center/cover no-repeat,
    linear-gradient(135deg, #16161a 0%, #0d0d0f 100%) !important;
}
body.is-programs .page-hero::before {
  background:
    linear-gradient(180deg, rgba(13,13,15,0.65) 0%, rgba(13,13,15,0.9) 100%),
    url("images/10-autox-action.jpg") center/cover no-repeat,
    linear-gradient(135deg, #16161a 0%, #0d0d0f 100%) !important;
}
body.is-events .page-hero::before {
  background:
    linear-gradient(180deg, rgba(13,13,15,0.65) 0%, rgba(13,13,15,0.9) 100%),
    url("images/09-track-summer.jpg") center/cover no-repeat,
    linear-gradient(135deg, #16161a 0%, #0d0d0f 100%) !important;
}
body.is-stories .page-hero::before {
  background:
    linear-gradient(180deg, rgba(13,13,15,0.65) 0%, rgba(13,13,15,0.9) 100%),
    url("images/01-paddock.jpg") center/cover no-repeat,
    linear-gradient(135deg, #16161a 0%, #0d0d0f 100%) !important;
}
body.is-donate .page-hero::before {
  background:
    linear-gradient(180deg, rgba(13,13,15,0.65) 0%, rgba(13,13,15,0.9) 100%),
    url("images/02-mission.jpg") center/cover no-repeat,
    linear-gradient(135deg, #16161a 0%, #0d0d0f 100%) !important;
}
body.is-get-help .page-hero::before {
  background:
    linear-gradient(180deg, rgba(13,13,15,0.7) 0%, rgba(13,13,15,0.92) 100%),
    url("images/V70XCWagon.png") center/cover no-repeat,
    linear-gradient(135deg, #16161a 0%, #0d0d0f 100%) !important;
}
body.is-contact .page-hero::before {
  background:
    linear-gradient(180deg, rgba(13,13,15,0.65) 0%, rgba(13,13,15,0.9) 100%),
    url("images/11-corporate.jpg") center/cover no-repeat,
    linear-gradient(135deg, #16161a 0%, #0d0d0f 100%) !important;
}

/* Hide the placeholder hint text once a real photo is bound */
body.has-photos .hero__placeholder span,
body.has-photos .why__placeholder span,
body.has-photos .program-card__placeholder,
body.has-photos .program-detail__placeholder span,
body.has-photos .story__placeholder span,
body.has-photos .event-feature__placeholder span,
body.has-photos .story-card__media span,
body.has-photos .team-card__photo span { display: none; }

/* HOMEPAGE — hero, why, story */
.hero .hero__placeholder {
  background-image:
    linear-gradient(180deg, rgba(13,13,15,0.35) 0%, rgba(13,13,15,0.75) 100%),
    url("images/03-track.jpg"),
    radial-gradient(60% 80% at 70% 20%, rgba(216,65,42,0.35), transparent 60%),
    linear-gradient(135deg, #2a1814 0%, #0d0d0f 60%, #1a1a22 100%);
  background-size: cover, cover, auto, auto;
  background-position: center, center, 0 0, 0 0;
}
.why .why__placeholder {
  background-image:
    url("images/02-mission.jpg"),
    linear-gradient(135deg, #463029 0%, #1a1a22 100%);
  background-size: cover, auto;
  background-position: center, 0 0;
}
.story .story__placeholder {
  background-image:
    linear-gradient(180deg, rgba(13,13,15,0.15) 0%, rgba(13,13,15,0.55) 100%),
    url("images/01-paddock.jpg"),
    radial-gradient(70% 70% at 30% 30%, rgba(216,65,42,0.35), transparent 60%),
    linear-gradient(135deg, #1a1a22 0%, #0d0d0f 100%);
  background-size: cover, cover, auto, auto;
  background-position: center, center, 0 0, 0 0;
}

/* PROGRAMS PAGE */
#ride-to-clear .program-detail__placeholder {
  background-image: url("images/05-road.jpg"), linear-gradient(135deg, #2a1814 0%, #0d0d0f 100%);
  background-size: cover, auto;
  background-position: center, 0 0;
}
#off-axis-500 .program-detail__placeholder {
  background-image: url("images/03-track.jpg"), linear-gradient(135deg, #20212a 0%, #0d0d0f 100%);
  background-size: cover, auto;
  background-position: center, 0 0;
}
#track-days .program-detail__placeholder {
  background-image: url("images/04-autox.jpg"), linear-gradient(135deg, #2a1814 0%, #0d0d0f 100%);
  background-size: cover, auto;
  background-position: center, 0 0;
}
#partnerships .program-detail__placeholder {
  background-image: url("images/02-mission.jpg"), linear-gradient(135deg, #20212a 0%, #0d0d0f 100%);
  background-size: cover, auto;
  background-position: center, 0 0;
}
#stories-on-film .program-detail__placeholder {
  background-image: url("images/01-paddock.jpg"), linear-gradient(135deg, #2a1814 0%, #0d0d0f 100%);
  background-size: cover, auto;
  background-position: center, 0 0;
}

/* EVENTS PAGE — feature */
.event-feature .event-feature__placeholder {
  background-image: url("images/03-track.jpg"), linear-gradient(135deg, #2a1814 0%, #0d0d0f 100%);
  background-size: cover, auto;
  background-position: center, 0 0;
}

/* STORIES PAGE — featured + grid (cycles through the 5 photos) */
.stories-list .story-card:nth-child(1) .story-card__media { background-image: url("images/01-paddock.jpg"), linear-gradient(135deg, #2a1814 0%, #0d0d0f 100%); background-size: cover, auto; background-position: center; }
.stories-list .story-card:nth-child(2) .story-card__media { background-image: url("images/04-autox.jpg"), linear-gradient(135deg, #20212a 0%, #0d0d0f 100%); background-size: cover, auto; background-position: center; }
.stories-list .story-card:nth-child(3) .story-card__media { background-image: url("images/05-road.jpg"), linear-gradient(135deg, #2a1814 0%, #0d0d0f 100%); background-size: cover, auto; background-position: center; }
.stories-list .story-card:nth-child(4) .story-card__media { background-image: url("images/02-mission.jpg"), linear-gradient(135deg, #20212a 0%, #0d0d0f 100%); background-size: cover, auto; background-position: center; }
.stories-list .story-card:nth-child(5) .story-card__media { background-image: url("images/03-track.jpg"), linear-gradient(135deg, #2a1814 0%, #0d0d0f 100%); background-size: cover, auto; background-position: center; }
.stories-list .story-card:nth-child(6) .story-card__media { background-image: url("images/01-paddock.jpg"), linear-gradient(135deg, #20212a 0%, #0d0d0f 100%); background-size: cover, auto; background-position: center; }

/* GET HELP — for-someone-you-love photo */
.help-resources + .why .why__placeholder {
  background-image: url("images/05-road.jpg"), linear-gradient(135deg, #463029 0%, #1a1a22 100%);
  background-size: cover, auto;
  background-position: center, 0 0;
}

/* PAGE HEROES — subtle photo backdrop on each subpage hero */
.page-hero { background-blend-mode: multiply; }
body.is-about .page-hero::before {
  background:
    linear-gradient(180deg, rgba(13,13,15,0.55) 0%, rgba(13,13,15,0.85) 100%),
    url("images/05-road.jpg") center/cover no-repeat,
    linear-gradient(135deg, #16161a 0%, #0d0d0f 100%);
}
body.is-programs .page-hero::before {
  background:
    linear-gradient(180deg, rgba(13,13,15,0.55) 0%, rgba(13,13,15,0.85) 100%),
    url("images/04-autox.jpg") center/cover no-repeat,
    linear-gradient(135deg, #16161a 0%, #0d0d0f 100%);
}
body.is-events .page-hero::before {
  background:
    linear-gradient(180deg, rgba(13,13,15,0.55) 0%, rgba(13,13,15,0.85) 100%),
    url("images/03-track.jpg") center/cover no-repeat,
    linear-gradient(135deg, #16161a 0%, #0d0d0f 100%);
}
body.is-stories .page-hero::before {
  background:
    linear-gradient(180deg, rgba(13,13,15,0.55) 0%, rgba(13,13,15,0.85) 100%),
    url("images/01-paddock.jpg") center/cover no-repeat,
    linear-gradient(135deg, #16161a 0%, #0d0d0f 100%);
}
body.is-donate .page-hero::before {
  background:
    linear-gradient(180deg, rgba(13,13,15,0.55) 0%, rgba(13,13,15,0.85) 100%),
    url("images/donate-hero.jpg") center/cover no-repeat,
    linear-gradient(135deg, #16161a 0%, #0d0d0f 100%) !important;
}
