/* ============================================================
   Pivotal Point Empowering Project — Shared Styles
   Dark modern theme · Red #B91C1C · Gold #D4AF37
   ============================================================ */

:root {
  --bg: #09090b;
  --bg-elevated: #18181b;
  --bg-card: #121214;
  --red: #B91C1C;
  --red-bright: #DC2626;
  --gold: #D4AF37;
  --gold-soft: #E8C96A;
  --text: #FAFAFA;
  --text-muted: #A1A1AA;
  --border: rgba(212, 175, 55, 0.18);
  --border-strong: rgba(185, 28, 28, 0.45);
  --font: "Outfit", system-ui, -apple-system, sans-serif;
  --nav-h: 88px;
  --nav-h-mobile: 96px;
  --radius: 1rem;
  --shadow-glow: 0 0 40px rgba(185, 28, 28, 0.15);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a {
  color: var(--gold);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--gold-soft);
}

/* ---------- Typography ---------- */
.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: clamp(1.85rem, 4vw, 2.75rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 1rem;
}

.section-lead {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 42rem;
  margin: 0 0 2rem;
}

.text-gradient {
  background: linear-gradient(135deg, var(--gold) 0%, #fff 45%, var(--red-bright) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- Layout ---------- */
.container {
  width: min(1120px, 92%);
  margin-inline: auto;
}

.section {
  padding: 5rem 0;
}

.section-alt {
  background: linear-gradient(180deg, rgba(24, 24, 27, 0.6) 0%, transparent 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.6rem;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
  text-decoration: none;
  line-height: 1.2;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--red) 0%, #7f1d1d 100%);
  color: #fff;
  box-shadow: 0 8px 28px rgba(185, 28, 28, 0.35);
}

.btn-primary:hover {
  color: #fff;
  box-shadow: 0 12px 36px rgba(185, 28, 28, 0.5);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, #a8892a 100%);
  color: #09090b;
  box-shadow: 0 8px 28px rgba(212, 175, 55, 0.3);
}

.btn-gold:hover {
  color: #09090b;
}

.btn-outline {
  background: transparent;
  border-color: rgba(212, 175, 55, 0.5);
  color: var(--gold);
}

.btn-outline:hover {
  border-color: var(--gold);
  background: rgba(212, 175, 55, 0.08);
  color: var(--gold-soft);
}

.btn-sm {
  padding: 0.55rem 1.15rem;
  font-size: 0.85rem;
}

/* ---------- Navigation ---------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  background: rgba(9, 9, 11, 0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.site-header.scrolled {
  background: rgba(9, 9, 11, 0.95);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.nav-inner {
  width: min(1120px, 92%);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text);
  text-decoration: none;
  flex-shrink: 0;
}

.nav-brand:hover {
  color: var(--text);
}

.nav-logo {
  object-fit: contain;
  display: block;
}

/* Desktop / tablet: white emblem */
.nav-logo--desktop {
  width: 72px;
  height: 72px;
}

/* Mobile: horizontal wordmark (hidden on larger screens) */
.nav-logo--mobile {
  display: none;
  width: auto;
  height: 78px;
  max-width: min(300px, 72vw);
}

.nav-brand-text {
  font-weight: 700;
  font-size: 0.95rem;
  line-height: 1.2;
  max-width: 140px;
}

.nav-brand-text span {
  display: block;
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

@media (max-width: 768px) {
  .nav-logo--desktop {
    display: none;
  }

  .nav-logo--mobile {
    display: block;
  }

  /* Mobile logo already includes the full name */
  .nav-brand-text {
    display: none;
  }

  .nav-brand {
    gap: 0;
    min-width: 0;
  }
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.4rem 0.55rem;
  border-radius: 0.4rem;
  text-decoration: none;
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}

.nav-links a:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
}

.nav-links a.active {
  color: var(--gold);
  background: rgba(255, 255, 255, 0.05);
  padding: 0.35rem 0.45rem;
}

.nav-cta {
  margin-left: 0.5rem;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--text);
  width: 44px;
  height: 44px;
  border-radius: 0.5rem;
  cursor: pointer;
  font-size: 1.25rem;
  align-items: center;
  justify-content: center;
}

@media (max-width: 900px) {
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: rgba(9, 9, 11, 0.98);
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    gap: 0.25rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }

  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-links a {
    padding: 0.75rem 0.85rem;
  }

  .nav-links a.active {
    padding: 0.65rem 0.7rem;
  }

  .nav-cta {
    margin: 0.5rem 0 0;
  }

  .nav-cta .btn {
    width: 100%;
  }

  .nav-brand-text {
    display: none;
  }
}

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  padding: calc(var(--nav-h) + 3.5rem) 0 3.5rem;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 80% 20%, rgba(185, 28, 28, 0.18), transparent 60%),
    radial-gradient(ellipse 50% 60% at 10% 80%, rgba(212, 175, 55, 0.08), transparent 55%);
  pointer-events: none;
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  font-size: clamp(2.25rem, 5vw, 3.25rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 0 0 1rem;
  line-height: 1.1;
}

.page-hero p {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 36rem;
  margin: 0;
}

/* ---------- Cards ---------- */
.card {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.card:hover {
  border-color: var(--border);
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}

.card-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 1.15rem;
  background: linear-gradient(135deg, rgba(185, 28, 28, 0.25), rgba(212, 175, 55, 0.12));
  color: var(--gold);
  border: 1px solid rgba(212, 175, 55, 0.2);
}

.card h3 {
  margin: 0 0 0.65rem;
  font-size: 1.25rem;
  font-weight: 700;
}

.card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

@media (max-width: 900px) {
  .grid-3 {
    grid-template-columns: 1fr;
  }
  .grid-2 {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 901px) and (max-width: 1100px) {
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ---------- Image helpers ---------- */
.img-frame {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  background: var(--bg-elevated);
}

.img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Get Involved — editorial people photo (Carlee etc.) */
.help-photo {
  aspect-ratio: 16 / 9;
  max-width: 920px;
  max-height: 480px;
  margin-inline: auto;
}

.help-photo img {
  object-fit: cover;
  object-position: center 18%;
}

@media (min-width: 1024px) {
  .help-photo {
    aspect-ratio: 3 / 2;
    max-height: 480px;
  }
}

@media (max-width: 640px) {
  .help-photo {
    aspect-ratio: 4 / 5;
    max-height: none;
  }

  .help-photo img {
    object-position: center 12%;
  }
}

.img-placeholder {
  aspect-ratio: 4 / 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background:
    linear-gradient(135deg, rgba(185, 28, 28, 0.12), rgba(24, 24, 27, 0.9)),
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 8px,
      rgba(255, 255, 255, 0.02) 8px,
      rgba(255, 255, 255, 0.02) 16px
    );
  color: var(--text-muted);
  font-size: 0.85rem;
  text-align: center;
  padding: 1.5rem;
  border: 1px dashed rgba(212, 175, 55, 0.25);
  border-radius: var(--radius);
}

.img-placeholder i {
  font-size: 1.75rem;
  color: var(--gold);
  opacity: 0.7;
}

/* ---------- Stats ---------- */
.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.stat-item {
  text-align: center;
  padding: 1.75rem 1rem;
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius);
}

.stat-item .stat-num {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-item .stat-label {
  font-size: 0.9rem;
  color: var(--text-muted);
}

@media (max-width: 768px) {
  .stat-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ---------- Testimonials ---------- */
.quote-card {
  position: relative;
  padding: 2rem;
}

.quote-card::before {
  content: "\201C";
  position: absolute;
  top: 0.5rem;
  left: 1rem;
  font-size: 4rem;
  line-height: 1;
  color: var(--red);
  opacity: 0.4;
  font-family: Georgia, serif;
}

.quote-card blockquote {
  margin: 0 0 1.25rem;
  font-size: 1.05rem;
  color: var(--text);
  font-style: italic;
  position: relative;
  z-index: 1;
}

.quote-card cite {
  font-style: normal;
  font-size: 0.9rem;
  color: var(--gold);
  font-weight: 600;
}

.quote-card cite span {
  display: block;
  font-weight: 400;
  color: var(--text-muted);
  font-size: 0.8rem;
  margin-top: 0.15rem;
}

/* ---------- Video embeds ---------- */
.video-card {
  overflow: hidden;
  padding: 0;
}

.video-card .video-wrap {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  background: #000;
}

.video-card .video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-card .video-meta {
  padding: 1.25rem 1.5rem 1.5rem;
}

.video-card .video-meta h3 {
  margin: 0 0 0.35rem;
  font-size: 1.1rem;
}

.video-card .video-meta p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.video-wrap video,
.video-feature video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #000;
}

.video-feature {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.25);
  background: #000;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
}

.video-feature .video-wrap {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
}

/* Portrait (9:16) variant — centered, nearly full-screen height */
.video-feature--portrait {
  max-width: min(500px, 94vw);
  margin-left: auto;
  margin-right: auto;
}

.video-feature--portrait .video-wrap {
  padding-bottom: 177.78%; /* 9 ÷ 16 × 100 */
}

.video-feature-meta {
  padding: 1.25rem 1.5rem 1.5rem;
  background: var(--bg-card);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.video-feature-meta h3 {
  margin: 0 0 0.35rem;
  font-size: 1.2rem;
}

.video-feature-meta p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* ---------- Forms ---------- */
.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: var(--text);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  font-family: inherit;
  font-size: 1rem;
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.65rem;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15);
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

.form-group select {
  cursor: pointer;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

@media (max-width: 600px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

.form-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.75rem;
}

/* Netlify honeypot — hide from users */
.hidden-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  overflow: hidden;
}

/* ---------- CTA band ---------- */
.cta-band {
  background:
    linear-gradient(135deg, rgba(185, 28, 28, 0.25) 0%, rgba(9, 9, 11, 0.95) 50%, rgba(212, 175, 55, 0.12) 100%);
  border-top: 1px solid rgba(185, 28, 28, 0.3);
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  text-align: center;
  padding: 4rem 0;
}

.cta-band h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  margin: 0 0 0.75rem;
}

.cta-band p {
  color: var(--text-muted);
  max-width: 32rem;
  margin: 0 auto 1.75rem;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: center;
}

/* ---------- Footer ---------- */
.site-footer {
  background: #050506;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 3.5rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.footer-brand img {
  width: 120px;
  height: auto;
  max-height: 120px;
  object-fit: contain;
}

.footer-brand p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.9rem;
  max-width: 260px;
}

/* Social media icons */
.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  align-items: center;
}

.social-links--center {
  justify-content: center;
  width: 100%;
}

.footer-social {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 0.5rem 0 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  margin-top: 0.5rem;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(212, 175, 55, 0.35);
  background: rgba(212, 175, 55, 0.08);
  color: var(--gold);
  font-size: 1.1rem;
  text-decoration: none;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.social-link:hover {
  color: #fff;
  border-color: var(--red);
  background: linear-gradient(135deg, var(--red), #7f1d1d);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(185, 28, 28, 0.35);
}

.social-link--lg {
  width: 48px;
  height: 48px;
  font-size: 1.25rem;
}

.nav-social {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-left: 0.35rem;
}

.nav-social .social-link {
  width: 36px;
  height: 36px;
  font-size: 0.95rem;
}

@media (max-width: 900px) {
  .nav-social {
    display: flex;
    width: 100%;
    justify-content: center;
    margin: 0.75rem 0 0;
    padding: 0.5rem 1rem 0.25rem;
  }
}

.footer-col h4 {
  margin: 0 0 1rem;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}

.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-col li {
  margin-bottom: 0.5rem;
}

.footer-col a {
  color: var(--text-muted);
  font-size: 0.9rem;
  text-decoration: none;
}

.footer-col a:hover {
  color: var(--text);
}

.footer-col p {
  margin: 0 0 0.5rem;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-ein {
  color: var(--gold);
  font-weight: 600;
}

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

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

/* ---------- Home hero (pinned scroll) ---------- */
.home-hero {
  position: relative;
  height: 160svh;
  height: 160vh;
  background: #000;
  isolation: isolate;
  overflow: clip;
}

.hero-sticky-stage {
  position: sticky;
  top: 0;
  width: 100%;
  height: 100vh;
  height: 100svh;
  min-height: 600px;
  overflow: hidden;
  background:
    radial-gradient(circle at 31% 44%, rgba(212, 175, 55, 0.10), transparent 32%),
    radial-gradient(circle at 67% 45%, rgba(185, 28, 28, 0.10), transparent 34%),
    #000;
}

#hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  object-fit: cover;
  pointer-events: none;
  display: block;
  will-change: transform;
}

.hero-fallback {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 1;
  visibility: visible;
  transition: opacity 300ms ease, visibility 300ms ease;
}

.hero-fallback[style*="opacity: 0"],
.hero-fallback[style*="opacity:0"] {
  pointer-events: none;
}

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

/* Impact flash overlay */
.hero-flash {
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0;
  pointer-events: none;
  background: rgba(220,30,20,0.85);
  mix-blend-mode: screen;
  will-change: opacity;
}

.hero-vignette {
  position: absolute;
  z-index: 3;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(to bottom, rgba(0,0,0,0.52), transparent 26%, transparent 68%, rgba(0,0,0,0.86)),
    radial-gradient(circle at center, transparent 36%, rgba(0,0,0,0.68) 100%);
}

.hero-lockup {
  position: absolute;
  top: calc(var(--nav-h) + 3rem);
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  width: min(1120px, 92%);
  will-change: transform, opacity;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(212, 175, 55, 0.35);
  background: rgba(212, 175, 55, 0.08);
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.hero-lockup h1 {
  font-size: clamp(2.5rem, 6vw, 4.25rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin: 0 0 1.25rem;
  max-width: 16ch;
}

.hero-lockup .hero-sub {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: var(--text-muted);
  max-width: 34rem;
  margin: 0 0 2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.hero-scroll-cue {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 2rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.42);
  animation: breathe 1.8s ease-in-out infinite;
}

@keyframes breathe {
  0%, 100% { opacity: 0.38; transform: translateY(0); }
  50% { opacity: 0.82; transform: translateY(5px); }
}

.hero-impact-copy {
  position: absolute;
  z-index: 4;
  left: 50%;
  top: 68%;
  transform: translateX(-50%) translateY(-50%);
  width: min(960px, 92vw);
  text-align: center;
  opacity: 0;
  pointer-events: none;
  will-change: transform, opacity;
}

.hero-impact-copy p {
  margin: 0;
  font-size: clamp(1.4rem, 4vw, 3.8rem);
  font-weight: 900;
  letter-spacing: -0.025em;
  text-transform: uppercase;
  text-shadow: 0 0 40px rgba(255, 255, 255, 0.3);
  color: var(--text);
}

/* Marquee anchored to bottom of sticky stage */
.hero-marquee {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 6;
  background: rgba(9, 9, 11, 0.85);
  border-top: 1px solid rgba(185, 28, 28, 0.4);
  border-bottom: 1px solid rgba(212, 175, 55, 0.25);
  overflow: hidden;
  padding: 0.85rem 0;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 28s linear infinite;
  will-change: transform;
  backface-visibility: hidden;
}

.marquee-track span {
  white-space: nowrap;
  padding: 0 1.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  flex-shrink: 0;
}

.marquee-track span i {
  color: var(--red);
  margin-right: 0.5rem;
}

.marquee-track .gold {
  color: var(--gold);
}

@keyframes marquee {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(-50%, 0, 0); }
}

/* Mobile hero */
@media (max-width: 768px) {
  .home-hero {
    height: 140svh;
    height: 140vh;
  }

  .hero-sticky-stage {
    min-height: 560px;
  }

  .hero-lockup {
    top: calc(var(--nav-h) + 1.5rem);
    width: 92vw;
  }

  .hero-lockup h1 {
    font-size: clamp(2.2rem, 11vw, 3.2rem);
  }

  .hero-impact-copy {
    top: 74%;
    width: 88vw;
  }
}

/* Reduced motion: collapse to single viewport, show poster */
@media (prefers-reduced-motion: reduce) {
  .home-hero {
    height: 100svh;
    height: 100vh;
  }

  #hero-video { display: none; }

  .hero-scroll-cue { animation: none; }
}

/* Mission strip */
.mission-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

@media (max-width: 800px) {
  .mission-strip {
    grid-template-columns: 1fr;
  }
}

/* Split layout */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

@media (max-width: 800px) {
  .split {
    grid-template-columns: 1fr;
  }
  .split.reverse-mobile .split-media {
    order: -1;
  }
}

/* Leadership */
.leader-card {
  text-align: center;
  padding: 2rem 1.5rem;
}

.leader-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin: 0 auto 1.25rem;
  overflow: hidden;
  border: 3px solid rgba(212, 175, 55, 0.4);
  background: var(--bg-elevated);
}

.leader-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Program detail */
.program-detail {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.25rem;
  align-items: start;
}

.program-detail .card-icon {
  margin-bottom: 0;
}

/* Contact info list */
.contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.contact-list li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.25rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.contact-list i {
  color: var(--gold);
  width: 1.25rem;
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.contact-list a {
  color: var(--text);
}

.contact-list strong {
  display: block;
  color: var(--text);
  font-size: 0.85rem;
  margin-bottom: 0.15rem;
}

/* Privacy prose */
.prose {
  max-width: 48rem;
}

.prose h2 {
  font-size: 1.35rem;
  margin: 2.5rem 0 0.75rem;
  color: var(--gold);
}

.prose h2:first-child {
  margin-top: 0;
}

.prose p,
.prose li {
  color: var(--text-muted);
  font-size: 0.98rem;
}

.prose ul {
  padding-left: 1.25rem;
}

.prose li {
  margin-bottom: 0.4rem;
}

/* Utility */
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-0 { margin-bottom: 0; }
.text-center { text-align: center; }
.mx-auto { margin-inline: auto; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* Main offset for non-home pages */
main {
  min-height: 50vh;
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-scroll-cue { animation: none; }
  .card:hover { transform: none; }
  .btn:hover { transform: none; }
}
