  :root {
    --red: #c8102e;
    --red-deep: #8b0a1f;
    --blue: #002868;
    --blue-deep: #001a4d;
    --navy: #0b1932;
    --white: #f4f1ea;
    --bone: #e8e2d3;
    --steel: #8a95a5;
    --ink: #0a0a0a;
    --shadow: rgba(10,10,10,0.85);
  }

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

  body {
    background: var(--ink);
    color: var(--white);
    font-family: 'Crimson Pro', Georgia, serif;
    overflow-x: hidden;
    line-height: 1.5;
    cursor: url('../img/volleyball-cursor.svg') 14 14, auto;
  }
  /* Volleyball cursor on hover states too — keeps the theme consistent everywhere */
  a, button, .btn, [role="button"], input[type="submit"],
  .mindset-play-btn, .nav-mobile-toggle, label, summary,
  .squad-card, .hub-card, .team-row {
    cursor: url('../img/volleyball-cursor.svg') 14 14, pointer;
  }
  /* Text inputs and textareas should still use the text cursor for usability */
  input[type="text"], input[type="email"], input[type="tel"],
  input[type="url"], input[type="search"], input[type="password"],
  input[type="number"], textarea {
    cursor: text;
  }
  /* Touch devices: skip custom cursor */
  @media (hover: none) {
    body, a, button, .btn { cursor: auto; }
  }

  body::before {
    content: none;
  }

  /* ===== NAV ===== */
  nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    padding: 1rem 2.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(10,10,10,0.78);
    backdrop-filter: blur(12px);
    border-bottom: 2px solid var(--red);
  }
  .logo-link {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    text-decoration: none;
    color: var(--white);
  }
  .nav-logo {
    height: 56px;
    width: auto;
    display: block;
    border-radius: 4px;
    transition: transform 0.3s;
  }
  .nav-logo:hover { transform: scale(1.05); }
  .nav-callsign {
    font-family: 'Black Ops One', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    color: var(--steel);
    line-height: 1.2;
  }
  .nav-callsign strong {
    color: var(--red);
    display: block;
    font-size: 0.85rem;
  }

  nav ul {
    list-style: none;
    display: flex;
    gap: 2.5rem;
  }
  nav ul a {
    color: var(--white);
    text-decoration: none;
    font-family: 'Black Ops One', sans-serif;
    letter-spacing: 0.18em;
    font-size: 0.78rem;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 4px;
    transition: color 0.3s;
  }
  nav ul a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--red);
    transition: width 0.3s;
  }
  nav ul a:hover { color: var(--red); }
  nav ul a:hover::after { width: 100%; }
  @media (max-width: 720px) {
    nav ul { display: none; }
    .nav-callsign { display: none; }
  }

  /* ===== HERO ===== */
  .hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background:
      radial-gradient(ellipse at 20% 30%, rgba(0,40,104,0.5), transparent 60%),
      radial-gradient(ellipse at 80% 70%, rgba(200,16,46,0.35), transparent 60%),
      var(--navy);
    padding: 6rem 1.5rem 4rem;
  }

  /* Aviation hud crosshair */
  .hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(rgba(200,16,46,0.02) 1px, transparent 1px),
      linear-gradient(90deg, rgba(200,16,46,0.02) 1px, transparent 1px);
    background-size: 120px 120px;
    pointer-events: none;
  }

  /* Corner brackets */
  .hud-bracket {
    position: absolute;
    width: 60px;
    height: 60px;
    border: 2px solid var(--red);
    opacity: 0.7;
    z-index: 3;
  }
  .hud-bracket.tl { top: 100px; left: 30px; border-right: 0; border-bottom: 0; }
  .hud-bracket.tr { top: 100px; right: 30px; border-left: 0; border-bottom: 0; }
  .hud-bracket.bl { bottom: 30px; left: 30px; border-right: 0; border-top: 0; }
  .hud-bracket.br { bottom: 30px; right: 30px; border-left: 0; border-top: 0; }

  .hero-content {
    text-align: center;
    z-index: 2;
    position: relative;
    max-width: 1400px;
  }

  .hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    font-family: 'Black Ops One', sans-serif;
    color: var(--red);
    letter-spacing: 0.4em;
    font-size: 0.75rem;
    margin-bottom: 2rem;
    text-transform: uppercase;
    opacity: 0;
    animation: fadeUp 1s 0.2s forwards;
  }
  .hero-tag::before, .hero-tag::after {
    content: '';
    width: 30px;
    height: 1px;
    background: var(--red);
  }

  .hero-logo-wrap {
    margin: 0 auto 2rem;
    max-width: 500px;
    opacity: 0;
    animation: fadeUp 1.2s 0.4s forwards;
    position: relative;
  }
  .hero-logo {
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.7));
  }

  .visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    border: 0;
  }

  .hero-callsign {
    margin: 0 auto 2rem;
    max-width: 600px;
    opacity: 0;
    animation: fadeUp 1s 0.7s forwards;
  }
  .hero-callsign .label {
    font-family: 'Special Elite', monospace;
    color: var(--steel);
    font-size: 0.75rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
  }
  .hero-callsign .name {
    font-family: 'Black Ops One', sans-serif;
    color: var(--white);
    font-size: clamp(1.3rem, 3vw, 2.2rem);
    letter-spacing: 0.15em;
    line-height: 1.1;
    text-transform: uppercase;
  }
  .hero-callsign .name .red { color: var(--red); }
  .hero-callsign .name .white { color: var(--white); }
  .hero-callsign .name .blue { color: #4a8fde; }

  .tagline {
    font-family: 'Black Ops One', sans-serif;
    font-size: clamp(0.85rem, 1.4vw, 1.1rem);
    letter-spacing: 0.5em;
    text-transform: uppercase;
    margin: 1rem 0 2.5rem;
    color: var(--bone);
    opacity: 0;
    animation: fadeUp 1s 0.9s forwards;
  }
  .tagline span {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    border-top: 2px solid var(--red);
    border-bottom: 2px solid var(--red);
  }

  .cta-row {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeUp 1s 1.1s forwards;
  }

  .btn {
    font-family: 'Black Ops One', sans-serif;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 1.1rem 2.5rem;
    text-decoration: none;
    font-size: 0.85rem;
    border: 2px solid;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
  }
  .btn-red {
    background: var(--red);
    color: var(--white);
    border-color: var(--red);
  }
  .btn-red:hover {
    background: transparent;
    color: var(--red);
    transform: translate(-3px,-3px);
    box-shadow: 6px 6px 0 var(--red);
  }
  /* Coming-soon / non-actionable button — looks like a label, not a CTA */
  .btn-disabled {
    background: transparent !important;
    color: var(--bone) !important;
    border-color: rgba(244, 241, 234, 0.35) !important;
    cursor: default;
    opacity: 0.85;
    pointer-events: none;
    letter-spacing: 0.18em;
  }
  .btn-disabled:hover {
    background: transparent !important;
    color: var(--bone) !important;
    transform: none !important;
    box-shadow: none !important;
  }
  .btn-outline {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
  }
  .btn-outline:hover {
    background: var(--white);
    color: var(--ink);
    transform: translate(-3px,-3px);
    box-shadow: 6px 6px 0 var(--white);
  }

  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .scroll-cue {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: var(--bone);
    font-family: 'Special Elite', monospace;
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    opacity: 0.5;
    animation: bob 2s ease-in-out infinite;
    z-index: 3;
  }
  @keyframes bob {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
  }

  /* ===== SECTION SHARED ===== */
  section {
    padding: 8rem 2.5rem;
    position: relative;
  }
  .container {
    max-width: 1300px;
    margin: 0 auto;
  }
  .section-label {
    font-family: 'Special Elite', monospace;
    color: var(--red);
    font-size: 0.85rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
  }
  .section-label::before {
    content: '';
    width: 40px;
    height: 2px;
    background: var(--red);
  }
  .section-title {
    font-family: 'Black Ops One', sans-serif;
    font-size: clamp(2.4rem, 6vw, 5rem);
    line-height: 1;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    margin-bottom: 3rem;
  }

  /* ===== STORY / PILOT DOSSIER ===== */
  .story {
    background:
      linear-gradient(180deg, var(--navy) 0%, #061021 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
  }
  .story::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: repeating-linear-gradient(
      90deg,
      var(--red) 0 40px,
      var(--navy) 40px 80px,
      var(--blue) 80px 120px,
      var(--navy) 120px 160px
    );
  }
  .story::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(rgba(244,241,234,0.015) 1px, transparent 1px),
      linear-gradient(90deg, rgba(244,241,234,0.015) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
  }
  .story-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 5rem;
    align-items: start;
    position: relative;
    z-index: 2;
  }
  @media (max-width: 900px) {
    .story-grid { grid-template-columns: 1fr; gap: 4rem; }
  }

  /* PILOT DOSSIER CARD */
  .dossier {
    position: relative;
  }
  .dossier-card {
    background: var(--navy);
    border: 2px solid var(--red);
    padding: 0;
    position: relative;
    box-shadow:
      0 0 0 1px rgba(244,241,234,0.05) inset,
      12px 12px 0 var(--red-deep),
      0 30px 60px rgba(0,0,0,0.6);
  }
  /* Stencil top bar */
  .dossier-header {
    background: var(--red);
    color: var(--white);
    padding: 0.8rem 1.2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid var(--ink);
    font-family: 'Black Ops One', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
  }
  .dossier-header .classification {
    background: var(--ink);
    color: var(--red);
    padding: 0.2rem 0.6rem;
    letter-spacing: 0.2em;
    font-size: 0.65rem;
  }

  /* The photo frame */
  .dossier-photo {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
    background: var(--navy);
    border-bottom: 2px solid var(--red);
  }
  .dossier-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: contrast(1.02) saturate(0.95);
  }
  /* Subtle dark blue overlay so portrait integrates with site palette */
  .dossier-photo::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
      linear-gradient(180deg, transparent 50%, rgba(11,25,50,0.55) 100%),
      linear-gradient(180deg, rgba(0,40,104,0.06) 0%, transparent 30%);
    pointer-events: none;
  }
  /* Corner registration marks */
  .dossier-photo .mark {
    position: absolute;
    width: 18px;
    height: 18px;
    border: 2px solid var(--red);
    z-index: 2;
  }
  .dossier-photo .mark.tl { top: 10px; left: 10px; border-right: 0; border-bottom: 0; }
  .dossier-photo .mark.tr { top: 10px; right: 10px; border-left: 0; border-bottom: 0; }
  .dossier-photo .mark.bl { bottom: 10px; left: 10px; border-right: 0; border-top: 0; }
  .dossier-photo .mark.br { bottom: 10px; right: 10px; border-left: 0; border-top: 0; }

  /* Dog-tag style info bar */
  .dossier-info {
    padding: 1.4rem 1.2rem;
    background: var(--ink);
    color: var(--white);
    border-top: 2px solid var(--red);
  }
  .dossier-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 1rem;
    padding: 0.5rem 0;
    border-bottom: 1px dashed rgba(244,241,234,0.15);
    font-family: 'Special Elite', monospace;
    font-size: 0.78rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
  }
  .dossier-row:last-child { border-bottom: 0; }
  .dossier-row .key { color: var(--steel); }
  .dossier-row .val { color: var(--white); text-align: right; font-weight: 600; }
  .dossier-row .val.red { color: var(--red); }

  /* Pilot name plate */
  .nameplate {
    position: absolute;
    top: -28px;
    right: -24px;
    background: var(--ink);
    color: var(--white);
    border: 2px solid var(--red);
    padding: 0.9rem 1.4rem;
    font-family: 'Black Ops One', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transform: rotate(3deg);
    z-index: 4;
    box-shadow: 0 8px 20px rgba(0,0,0,0.6);
  }
  .nameplate::before {
    content: '';
    position: absolute;
    top: 6px;
    left: 6px;
    right: 6px;
    bottom: 6px;
    border: 1px solid var(--red);
    pointer-events: none;
  }
  .nameplate .callsign {
    font-family: 'Special Elite', monospace;
    font-size: 0.65rem;
    letter-spacing: 0.3em;
    color: var(--red);
    display: block;
    margin-bottom: 0.2rem;
  }
  .nameplate .name {
    font-size: 1.4rem;
    line-height: 1;
  }

  /* Story copy side */
  .pullquote {
    font-family: 'Crimson Pro', serif;
    font-style: italic;
    font-size: clamp(1.3rem, 2.2vw, 1.8rem);
    line-height: 1.35;
    color: var(--white);
    padding: 1.5rem 0 1.5rem 2rem;
    border-left: 4px solid var(--red);
    margin: 1.5rem 0 2rem;
  }
  .pullquote .attribution {
    display: block;
    font-style: normal;
    font-family: 'Black Ops One', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--red);
    margin-top: 1rem;
  }
  .story-body p {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    color: var(--bone);
  }
  .story-body p:first-letter {
    font-family: 'Black Ops One', sans-serif;
    font-size: clamp(2.4rem, 4vw, 3.5rem);
    float: left;
    line-height: 0.9;
    padding: 0.3rem 0.8rem 0 0;
    color: var(--red);
  }

  /* ===== PILLARS / MISSION ===== */
  .pillars {
    background: var(--ink);
    color: var(--white);
    border-top: 6px solid var(--red);
    border-bottom: 6px solid var(--blue);
    position: relative;
  }
  .pillars::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Ctext x='50%25' y='50%25' text-anchor='middle' fill='%23ffffff' font-size='14' font-family='monospace' opacity='0.03'%3EMVBA%3C/text%3E%3C/svg%3E");
    background-size: 200px;
    pointer-events: none;
  }
  .pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem;
    position: relative;
    z-index: 2;
  }
  @media (max-width: 900px) {
    .pillars-grid { grid-template-columns: 1fr; }
  }
  .pillar {
    padding: 2.5rem;
    border: 2px solid rgba(244,241,234,0.12);
    position: relative;
    transition: all 0.4s ease;
    background: rgba(0,40,104,0.04);
  }
  .pillar::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    width: 30px;
    height: 30px;
    border-top: 3px solid var(--red);
    border-left: 3px solid var(--red);
  }
  .pillar::after {
    content: '';
    position: absolute;
    bottom: -2px;
    right: -2px;
    width: 30px;
    height: 30px;
    border-bottom: 3px solid var(--red);
    border-right: 3px solid var(--red);
  }
  .pillar:hover {
    border-color: rgba(200,16,46,0.4);
    transform: translateY(-8px);
    background: rgba(200,16,46,0.06);
  }
  .pillar .num {
    font-family: 'Black Ops One', sans-serif;
    font-size: 2.8rem;
    color: var(--red);
    line-height: 1;
    margin-bottom: 0.6rem;
  }
  .pillar .codename {
    font-family: 'Special Elite', monospace;
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    color: var(--steel);
    text-transform: uppercase;
    margin-bottom: 1rem;
  }
  .pillar h3 {
    font-family: 'Black Ops One', sans-serif;
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
  }
  .pillar p {
    color: var(--bone);
    opacity: 0.85;
    font-size: 1.05rem;
  }

  /* ===== PROGRAMS / FLIGHT MANIFEST ===== */
  .programs {
    background:
      linear-gradient(180deg, var(--ink) 0%, var(--navy) 100%);
    position: relative;
  }
  .programs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 4rem;
  }
  @media (max-width: 800px) {
    .programs-grid { grid-template-columns: 1fr; }
  }
  .program-card {
    background: var(--white);
    color: var(--ink);
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    transition: transform 0.4s ease;
    border-left: 6px solid var(--red);
  }
  .program-card:nth-child(2) { border-left-color: var(--blue); }
  .program-card:nth-child(3) { border-left-color: var(--ink); }
  .program-card:nth-child(4) { border-left-color: var(--red-deep); }

  .program-card:hover { transform: translate(-4px, -4px); box-shadow: 8px 8px 0 var(--red); }

  .program-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
    padding-bottom: 0.8rem;
    border-bottom: 2px dashed rgba(0,0,0,0.15);
  }
  .program-card .tag {
    font-family: 'Black Ops One', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    color: var(--red);
    text-transform: uppercase;
  }
  .program-card .code {
    font-family: 'Special Elite', monospace;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    color: #888;
  }
  .program-card h3 {
    font-family: 'Black Ops One', sans-serif;
    font-size: 1.7rem;
    text-transform: uppercase;
    margin-bottom: 1rem;
    color: var(--ink);
    letter-spacing: 0.02em;
  }
  .program-card p {
    color: #333;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
  }
  .program-card .meta {
    font-family: 'Black Ops One', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--blue);
    padding-top: 1rem;
    border-top: 2px solid rgba(0,0,0,0.1);
  }

  /* ===== VOICES ===== */
  .voices {
    background: var(--red);
    color: var(--white);
    padding: 8rem 2.5rem;
    position: relative;
    overflow: hidden;
  }
  .voices::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
      repeating-linear-gradient(90deg, transparent 0 100px, rgba(255,255,255,0.04) 100px 102px);
    pointer-events: none;
  }
  .voices .section-label { color: var(--white); }
  .voices .section-label::before { background: var(--white); }
  .voices-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
  }
  @media (max-width: 900px) {
    .voices-grid { grid-template-columns: 1fr; }
  }
  .voice {
    padding: 2rem;
    border: 2px solid rgba(255,255,255,0.3);
    position: relative;
    transform: rotate(-1deg);
    background: rgba(0,0,0,0.08);
  }
  .voice:nth-child(2) { transform: rotate(1deg); }
  .voice:nth-child(3) { transform: rotate(-0.5deg); }
  .voice .mark {
    font-family: 'Black Ops One', sans-serif;
    font-size: 4rem;
    line-height: 0.5;
    color: var(--white);
    opacity: 0.3;
  }
  .voice blockquote {
    font-family: 'Crimson Pro', serif;
    font-style: italic;
    font-size: 1.25rem;
    line-height: 1.4;
    margin: 1rem 0 1.5rem;
  }
  .voice .who {
    font-family: 'Black Ops One', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    border-top: 1px solid rgba(255,255,255,0.3);
    padding-top: 1rem;
  }
  .voice .who strong { display: block; }

  /* ===== STRIP ===== */
  .strip {
    background: var(--ink);
    padding: 5rem 2.5rem;
    text-align: center;
    border-top: 4px solid var(--blue);
    border-bottom: 4px solid var(--red);
    position: relative;
  }
  .strip h2 {
    font-family: 'Black Ops One', sans-serif;
    font-size: clamp(2.2rem, 5.5vw, 4.5rem);
    text-transform: uppercase;
    line-height: 1.05;
    margin-bottom: 2rem;
    letter-spacing: 0.02em;
  }
  .strip h2 .red { color: var(--red); }

  /* ===== CONTACT ===== */
  .contact {
    background: var(--navy);
    color: var(--white);
    padding: 8rem 2.5rem;
    position: relative;
  }
  .contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: repeating-linear-gradient(90deg, var(--white) 0 30px, var(--red) 30px 60px);
  }
  .contact .section-label { color: var(--white); }
  .contact .section-label::before { background: var(--white); }

  .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
  }
  @media (max-width: 800px) {
    .contact-grid { grid-template-columns: 1fr; }
  }
  .contact-info .item {
    border-left: 3px solid var(--red);
    padding-left: 1.2rem;
    margin-bottom: 1.8rem;
  }
  .contact-info .item span {
    display: block;
    font-family: 'Special Elite', monospace;
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    opacity: 0.7;
    margin-bottom: 0.3rem;
  }
  .contact-info .item strong {
    font-family: 'Black Ops One', sans-serif;
    font-size: 1.2rem;
    letter-spacing: 0.05em;
    font-weight: normal;
  }
  form { display: flex; flex-direction: column; gap: 1rem; }
  form input, form textarea {
    background: rgba(255,255,255,0.06);
    border: 2px solid rgba(255,255,255,0.18);
    color: var(--white);
    padding: 1rem;
    font-family: 'Crimson Pro', serif;
    font-size: 1rem;
    transition: all 0.3s;
  }
  form input:focus, form textarea:focus {
    outline: none;
    border-color: var(--red);
    background: rgba(255,255,255,0.1);
  }
  form input::placeholder, form textarea::placeholder {
    color: rgba(255,255,255,0.5);
    font-style: italic;
  }
  form textarea { min-height: 130px; resize: vertical; }
  form button {
    background: var(--red);
    color: var(--white);
    border: 2px solid var(--red);
    padding: 1.2rem;
    font-family: 'Black Ops One', sans-serif;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
  }
  form button:hover {
    background: transparent;
    color: var(--red);
    border-color: var(--white);
  }

  /* ===== FOOTER ===== */
  footer {
    background: var(--ink);
    color: var(--bone);
    padding: 3rem 2.5rem 2rem;
    text-align: center;
    border-top: 2px solid var(--red);
  }
  .footer-logo {
    height: 80px;
    width: auto;
    display: block;
    margin: 0 auto 1rem;
    border-radius: 4px;
  }
  footer .squadron {
    font-family: 'Black Ops One', sans-serif;
    font-size: 0.8rem;
    letter-spacing: 0.3em;
    opacity: 0.6;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
  }
  footer p {
    font-family: 'Special Elite', monospace;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    opacity: 0.5;
    text-transform: uppercase;
  }

  /* Reveal on scroll */
  .reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s ease, transform 1s ease;
  }
  .reveal.in {
    opacity: 1;
    transform: translateY(0);
  }

  /* ===== FAMILY SECTION ===== */
  .family-section {
    background:
      linear-gradient(180deg, #061021 0%, var(--ink) 100%);
    color: var(--white);
    position: relative;
  }
  .family-intro {
    font-size: 1.15rem;
    color: var(--bone);
    max-width: 720px;
    margin-bottom: 3rem;
    opacity: 0.9;
  }

  .family-frame {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
    border: 2px solid var(--red);
    background: var(--ink);
    box-shadow:
      0 0 0 1px rgba(244,241,234,0.06) inset,
      12px 12px 0 var(--red-deep),
      0 30px 80px rgba(0,0,0,0.7);
  }
  .film-strip-bar {
    background: var(--red);
    color: var(--white);
    padding: 0.7rem 1.2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Black Ops One', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    border-bottom: 2px solid var(--ink);
  }
  .film-strip-bar.bottom {
    background: var(--ink);
    color: var(--steel);
    border-bottom: 0;
    border-top: 2px solid var(--red);
  }
  .film-strip-bar .rec {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  .film-strip-bar .rec .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--white);
    animation: pulse-rec 1.2s ease-in-out infinite;
  }
  @keyframes pulse-rec {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
  }
  .film-strip-bar .timecode {
    font-family: 'Special Elite', monospace;
    letter-spacing: 0.15em;
  }

  .family-photo {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
  }
  .family-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: contrast(1.03);
  }
  .family-photo::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
      linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.7) 100%);
    pointer-events: none;
  }

  .reticle {
    position: absolute;
    width: 24px;
    height: 24px;
    border: 2px solid var(--red);
    z-index: 3;
  }
  .reticle.tl { top: 12px; left: 12px; border-right: 0; border-bottom: 0; }
  .reticle.tr { top: 12px; right: 12px; border-left: 0; border-bottom: 0; }
  .reticle.bl { bottom: 12px; left: 12px; border-right: 0; border-top: 0; }
  .reticle.br { bottom: 12px; right: 12px; border-left: 0; border-top: 0; }

  .family-overlay {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    background: rgba(10,10,10,0.85);
    border-left: 3px solid var(--red);
    padding: 1rem 1.4rem;
    backdrop-filter: blur(8px);
    z-index: 2;
  }
  .hud-line {
    display: flex;
    gap: 1rem;
    align-items: baseline;
    font-family: 'Special Elite', monospace;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 0.2rem 0;
  }
  .hud-key { color: var(--steel); min-width: 70px; }
  .hud-val { color: var(--white); font-weight: 600; }
  .hud-val.red { color: var(--red); }

  .family-quote {
    max-width: 800px;
    margin: 4rem auto 0;
    text-align: center;
    position: relative;
  }
  .family-quote .quote-mark {
    font-family: 'Black Ops One', sans-serif;
    font-size: 5rem;
    color: var(--red);
    line-height: 0.5;
    opacity: 0.5;
    margin-bottom: 1rem;
  }
  .family-quote blockquote {
    font-family: 'Crimson Pro', serif;
    font-style: italic;
    font-size: 1.4rem;
    line-height: 1.5;
    color: var(--white);
  }

  /* ===== FILM ROOM ===== */
  .film-room {
    background: #050a14;
    color: var(--white);
    position: relative;
    overflow: hidden;
    padding: 8rem 1.5rem;
  }
  .film-room-bg {
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse at 70% 20%, rgba(200,16,46,0.12), transparent 50%),
      radial-gradient(ellipse at 20% 80%, rgba(0,40,104,0.18), transparent 50%);
    pointer-events: none;
  }
  .film-room::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
      repeating-linear-gradient(0deg, transparent 0 3px, rgba(244,241,234,0.012) 3px 4px);
    pointer-events: none;
    z-index: 1;
  }
  .film-room .container { position: relative; z-index: 2; }

  .film-intro {
    font-size: 1.15rem;
    color: var(--bone);
    max-width: 720px;
    margin-bottom: 4rem;
    opacity: 0.9;
  }

  /* HERO ACTION FRAME */
  .hero-frame {
    border: 2px solid var(--red);
    background: var(--ink);
    margin-bottom: 4rem;
    box-shadow:
      12px 12px 0 var(--red-deep),
      0 30px 80px rgba(0,0,0,0.7);
  }
  .action-shot {
    position: relative;
    overflow: hidden;
  }
  .hero-action {
    aspect-ratio: 16/9;
  }
  .placeholder-svg {
    width: 100%;
    height: 100%;
    display: block;
  }
  .shot-info {
    position: absolute;
    bottom: 1.5rem;
    right: 1.5rem;
    background: rgba(10,10,10,0.88);
    border-left: 3px solid var(--red);
    padding: 1rem 1.4rem;
    backdrop-filter: blur(8px);
    z-index: 3;
    min-width: 240px;
  }
  .shot-stat {
    display: flex;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 0.3rem 0;
    font-family: 'Special Elite', monospace;
    font-size: 0.78rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border-bottom: 1px dashed rgba(244,241,234,0.12);
  }
  .shot-stat:last-child { border-bottom: 0; }
  .stat-key { color: var(--steel); }
  .stat-val { color: var(--white); font-weight: 600; }
  .stat-val.red { color: var(--red); }

  /* MOSAIC */
  .film-mosaic {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: 200px;
    gap: 1.2rem;
    margin-bottom: 4rem;
  }
  @media (max-width: 900px) {
    .film-mosaic {
      grid-template-columns: 1fr;
      grid-auto-rows: 320px;
    }
    .mosaic-card { grid-column: 1 !important; grid-row: auto !important; }
  }
  .mosaic-card {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(244,241,234,0.1);
    transition: all 0.4s ease;
    background: var(--ink);
  }
  .mosaic-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border: 2px solid transparent;
    transition: all 0.3s;
    z-index: 4;
    pointer-events: none;
  }
  .mosaic-card:hover::before {
    border-color: var(--red);
    inset: 8px;
  }
  .mosaic-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.6);
  }
  /* Editorial layout - asymmetric */
  .mosaic-1 { grid-column: span 4; grid-row: span 2; }
  .mosaic-2 { grid-column: span 5; grid-row: span 2; }
  .mosaic-3 { grid-column: span 3; grid-row: span 2; }
  .mosaic-4 { grid-column: span 7; grid-row: span 2; }
  .mosaic-5 { grid-column: span 5; grid-row: span 2; }

  .card-tag {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, transparent, rgba(10,10,10,0.95));
    padding: 1.5rem 1rem 1rem;
    display: flex;
    align-items: flex-end;
    gap: 1rem;
    z-index: 3;
  }
  .tag-num {
    font-family: 'Black Ops One', sans-serif;
    font-size: 2rem;
    color: var(--red);
    line-height: 0.9;
  }
  .tag-info { display: flex; flex-direction: column; gap: 0.2rem; }
  .tag-pos {
    font-family: 'Special Elite', monospace;
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    color: var(--steel);
    text-transform: uppercase;
  }
  .tag-action {
    font-family: 'Black Ops One', sans-serif;
    font-size: 1rem;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.05em;
  }

  .film-cta {
    text-align: center;
    padding: 2rem 0;
  }
  .film-tagline {
    font-family: 'Black Ops One', sans-serif;
    font-size: 1.1rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--bone);
    margin-bottom: 2rem;
  }


  /* ===== SQUADRON STATUS TICKER ===== */
  .status-ticker {
    position: fixed;
    top: 88px;
    left: 0;
    right: 0;
    z-index: 90;
    background: var(--ink);
    border-bottom: 1px solid var(--red);
    display: flex;
    align-items: center;
    height: 36px;
    overflow: hidden;
  }
  .ticker-label {
    background: var(--red);
    color: var(--white);
    font-family: 'Black Ops One', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 0.25em;
    padding: 0 1.2rem;
    height: 100%;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
    flex-shrink: 0;
    z-index: 2;
    position: relative;
  }
  .ticker-label::after {
    content: '';
    position: absolute;
    right: -12px;
    top: 0;
    bottom: 0;
    width: 12px;
    background: var(--red);
    clip-path: polygon(0 0, 100% 50%, 0 100%);
  }
  .ticker-label .dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: var(--white);
    animation: pulse-rec 1.2s ease-in-out infinite;
  }
  .ticker-track {
    flex: 1;
    overflow: hidden;
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    padding-left: 1.5rem;
  }
  .ticker-content {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    white-space: nowrap;
    animation: ticker-scroll 60s linear infinite;
    font-family: 'Special Elite', monospace;
    font-size: 0.78rem;
    letter-spacing: 0.1em;
    color: var(--bone);
  }
  .ticker-item { padding-right: 0; }
  a.ticker-item { color: inherit; text-decoration: none; cursor: pointer; transition: color 0.15s; }
  a.ticker-item:hover { color: var(--red); }
  .ticker-item strong {
    color: var(--red);
    font-family: 'Black Ops One', sans-serif;
    letter-spacing: 0.2em;
    margin-right: 0.5rem;
    padding: 0.1rem 0.4rem;
    background: rgba(200,16,46,0.15);
    border-left: 2px solid var(--red);
  }
  .ticker-sep { color: var(--red); opacity: 0.6; }
  @keyframes ticker-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }
  /* Push hero down to account for ticker */
  .hero { padding-top: 9rem; }
  @media (max-width: 720px) {
    .status-ticker { top: 80px; height: 32px; }
    .ticker-content { font-size: 0.7rem; }
  }

  /* ===== STAT COUNTERS ===== */
  .stat-counters {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 2px dashed rgba(244,241,234,0.1);
  }
  @media (max-width: 800px) {
    .stat-counters { grid-template-columns: repeat(2, 1fr); }
  }
  .stat-counter {
    text-align: center;
    padding: 1.5rem;
    position: relative;
  }
  .stat-counter::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 2px;
    background: var(--red);
  }
  .stat-counter .stat-num {
    font-family: 'Black Ops One', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--red);
    line-height: 1;
    margin-bottom: 0.5rem;
  }
  .stat-counter .stat-label {
    font-family: 'Special Elite', monospace;
    font-size: 0.8rem;
    letter-spacing: 0.25em;
    color: var(--bone);
    text-transform: uppercase;
  }

  /* ===== COACHES / SQUADRON ROSTER ===== */
  .coaches-section {
    background:
      linear-gradient(180deg, var(--ink) 0%, #061021 100%);
    color: var(--white);
    position: relative;
    padding: 8rem 2.5rem;
  }
  .coaches-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: repeating-linear-gradient(
      90deg,
      var(--red) 0 40px,
      var(--ink) 40px 80px,
      var(--blue) 80px 120px,
      var(--ink) 120px 160px
    );
  }
  .coaches-intro {
    font-size: 1.15rem;
    color: var(--bone);
    max-width: 720px;
    margin-bottom: 4rem;
    opacity: 0.9;
  }

  /* COMMANDER CARD (Mindi) */
  .commander-card {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 3rem;
    align-items: center;
    background: var(--navy);
    border: 2px solid var(--red);
    padding: 2.5rem;
    margin-bottom: 4rem;
    position: relative;
    box-shadow:
      0 0 0 1px rgba(244,241,234,0.05) inset,
      12px 12px 0 var(--red-deep);
  }
  @media (max-width: 760px) {
    .commander-card {
      grid-template-columns: 1fr;
      text-align: center;
    }
  }
  .commander-card::before {
    content: '';
    position: absolute;
    top: -2px; left: -2px;
    width: 50px; height: 50px;
    border-top: 4px solid var(--red);
    border-left: 4px solid var(--red);
  }
  .commander-card::after {
    content: '';
    position: absolute;
    bottom: -2px; right: -2px;
    width: 50px; height: 50px;
    border-bottom: 4px solid var(--red);
    border-right: 4px solid var(--red);
  }
  .commander-portrait {
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
    background: var(--ink);
    border: 2px solid var(--red);
  }
  .commander-portrait img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  .commander-rank {
    font-family: 'Black Ops One', sans-serif;
    font-size: 0.8rem;
    letter-spacing: 0.4em;
    color: var(--red);
    margin-bottom: 0.8rem;
  }
  .commander-name {
    font-family: 'Black Ops One', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--white);
    margin-bottom: 0.5rem;
    line-height: 1;
    letter-spacing: 0.02em;
  }
  .commander-callsign {
    font-family: 'Special Elite', monospace;
    font-size: 0.85rem;
    letter-spacing: 0.2em;
    color: var(--steel);
    text-transform: uppercase;
    margin-bottom: 0.3rem;
  }
  .commander-callsign .red { color: var(--red); }
  .commander-role {
    font-family: 'Black Ops One', sans-serif;
    font-size: 0.9rem;
    letter-spacing: 0.2em;
    color: var(--bone);
    text-transform: uppercase;
    padding-bottom: 1.2rem;
    margin-bottom: 1.2rem;
    border-bottom: 1px dashed rgba(244,241,234,0.2);
  }
  .commander-bio {
    color: var(--bone);
    font-size: 1.05rem;
    line-height: 1.55;
  }

  /* SQUADRON LABEL */
  .squadron-label {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: var(--red);
    color: var(--white);
    padding: 0.7rem 1.4rem;
    font-family: 'Black Ops One', sans-serif;
    font-size: 0.8rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    margin-bottom: 2rem;
  }
  .squadron-label .dot {
    width: 10px; height: 10px; border-radius: 50%;
    background: var(--white);
    animation: pulse-rec 1.2s ease-in-out infinite;
  }

  /* SQUADRON GRID */
  .squadron-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.2rem;
    margin-bottom: 3rem;
  }
  @media (max-width: 1100px) {
    .squadron-grid { grid-template-columns: repeat(4, 1fr); }
  }
  @media (max-width: 800px) {
    .squadron-grid { grid-template-columns: repeat(3, 1fr); }
  }
  @media (max-width: 500px) {
    .squadron-grid { grid-template-columns: repeat(2, 1fr); gap: 0.8rem; }
    /* On narrow viewports, the callsign + COACH ribbons would overlap inside a ~165px wide card.
       Hide the redundant COACH tag — the role is already shown in .squad-info below the photo.
       Also tighten callsign so long team names like ICEMAN/FANBOY/PAYBACK stay fully visible. */
    .squad-coach-tag { display: none; }
    .squad-num {
      font-size: 0.6rem;
      letter-spacing: 0.1em;
      padding: 0.2rem 0.4rem;
    }
    .squad-overlay { top: 0.4rem; left: 0.4rem; }
  }
  .squad-card {
    background: var(--ink);
    border: 1px solid rgba(244,241,234,0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
  }
  .squad-card:hover {
    transform: translateY(-4px);
    border-color: var(--red);
    box-shadow: 0 10px 30px rgba(0,0,0,0.6);
  }
  .squad-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 15px; height: 15px;
    border-top: 2px solid var(--red);
    border-left: 2px solid var(--red);
    z-index: 3;
  }
  .squad-card::after {
    content: '';
    position: absolute;
    bottom: 70px; right: 0;
    width: 15px; height: 15px;
    border-bottom: 2px solid var(--red);
    border-right: 2px solid var(--red);
    z-index: 3;
  }
  .squad-portrait {
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
    background: #ffffff;
    padding-top: 14px;
    box-sizing: border-box;
  }
  .squad-portrait img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
  }
  .squad-card:hover .squad-portrait img {
    transform: scale(1.04);
  }
  .squad-overlay {
    position: absolute;
    top: 0.5rem;
    left: 0.5rem;
    z-index: 2;
  }
  .squad-coach-tag {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    z-index: 2;
    font-family: 'Black Ops One', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    color: var(--white);
    background: var(--red);
    padding: 0.25rem 0.5rem;
  }
  .squad-num {
    font-family: 'Black Ops One', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    color: var(--white);
    background: var(--red);
    padding: 0.25rem 0.5rem;
  }
  .squad-info {
    padding: 0.8rem 0.8rem;
    background: var(--ink);
    border-top: 1px solid var(--red);
  }
  .squad-name {
    font-family: 'Black Ops One', sans-serif;
    font-size: 0.95rem;
    color: var(--white);
    letter-spacing: 0.02em;
    margin-bottom: 0.15rem;
  }
  .squad-role {
    font-family: 'Special Elite', monospace;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    color: var(--steel);
    text-transform: uppercase;
  }

  .coaches-note {
    text-align: center;
    font-family: 'Special Elite', monospace;
    font-size: 0.85rem;
    letter-spacing: 0.2em;
    color: var(--steel);
    margin-top: 3rem;
    text-transform: uppercase;
  }
  .coaches-note a { color: var(--red); text-decoration: underline; }

  /* ===== FILM REEL (auto-scroll) ===== */
  .film-reel-wrap {
    margin-bottom: 4rem;
    position: relative;
  }
  .film-reel-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--red);
    color: var(--white);
    padding: 0.5rem 1rem;
    font-family: 'Black Ops One', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    margin-bottom: 1rem;
  }
  .film-reel-label .dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: var(--white);
    animation: pulse-rec 1.2s ease-in-out infinite;
  }
  .film-reel {
    overflow: hidden;
    border-top: 2px solid var(--red);
    border-bottom: 2px solid var(--red);
    background: var(--ink);
    position: relative;
  }
  .film-reel::before,
  .film-reel::after {
    content: '';
    position: absolute;
    top: 0; bottom: 0;
    width: 100px;
    z-index: 5;
    pointer-events: none;
  }
  .film-reel::before {
    left: 0;
    background: linear-gradient(90deg, #050a14 0%, transparent 100%);
  }
  .film-reel::after {
    right: 0;
    background: linear-gradient(-90deg, #050a14 0%, transparent 100%);
  }
  /* Sprocket holes top and bottom */
  .film-reel {
    background:
      repeating-linear-gradient(90deg, transparent 0 30px, var(--red-deep) 30px 32px, transparent 32px 60px),
      var(--ink);
    background-size: 60px 100%, 100% 100%;
  }
  .reel-track {
    display: flex;
    gap: 0.6rem;
    padding: 1.2rem 0;
    animation: reel-scroll 53s linear infinite;
    width: max-content;
  }
  .film-reel-wrap:hover .reel-track { animation-play-state: paused; }
  @keyframes reel-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }
  .reel-frame {
    flex: 0 0 auto;
    width: 360px;
    background: var(--ink);
    border: 2px solid rgba(244,241,234,0.15);
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
  }
  .reel-frame:hover {
    border-color: var(--red);
    transform: scale(1.02);
  }
  .reel-frame svg {
    width: 100%;
    height: 230px;
    display: block;
  }
  .reel-tag {
    background: var(--red);
    color: var(--white);
    padding: 0.5rem 0.8rem;
    font-family: 'Black Ops One', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    text-align: center;
  }

  /* ===== COUNTDOWN + NEWSLETTER STRIP ===== */
  .countdown-strip {
    background: var(--ink);
    padding: 6rem 2.5rem;
    border-top: 4px solid var(--blue);
    border-bottom: 4px solid var(--red);
    position: relative;
  }
  .countdown-strip::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse at 30% 50%, rgba(200,16,46,0.08), transparent 60%),
      radial-gradient(ellipse at 70% 50%, rgba(0,40,104,0.1), transparent 60%);
    pointer-events: none;
  }
  .countdown-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    position: relative;
    z-index: 2;
  }
  @media (max-width: 900px) {
    .countdown-grid { grid-template-columns: 1fr; gap: 3rem; }
  }

  /* Countdown block */
  .countdown-block {
    text-align: center;
    padding: 2rem;
    border: 2px solid var(--red);
    background: rgba(11,25,50,0.4);
    position: relative;
  }
  .countdown-block::before {
    content: '';
    position: absolute;
    top: -2px; left: -2px;
    width: 30px; height: 30px;
    border-top: 3px solid var(--red);
    border-left: 3px solid var(--red);
  }
  .countdown-block::after {
    content: '';
    position: absolute;
    bottom: -2px; right: -2px;
    width: 30px; height: 30px;
    border-bottom: 3px solid var(--red);
    border-right: 3px solid var(--red);
  }
  .countdown-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Black Ops One', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    color: var(--red);
    text-transform: uppercase;
    margin-bottom: 1.5rem;
  }
  .countdown-label .dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: var(--red);
    animation: pulse-rec 1.2s ease-in-out infinite;
  }
  .countdown-timer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 2rem;
  }
  .timer-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: var(--ink);
    border: 1px solid var(--red);
    padding: 1rem 0.8rem;
    min-width: 80px;
  }
  .timer-unit .num {
    font-family: 'Black Ops One', sans-serif;
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: var(--white);
    line-height: 1;
  }
  .timer-unit .lbl {
    font-family: 'Special Elite', monospace;
    font-size: 0.65rem;
    letter-spacing: 0.3em;
    color: var(--steel);
    text-transform: uppercase;
    margin-top: 0.4rem;
  }
  .timer-sep {
    font-family: 'Black Ops One', sans-serif;
    font-size: 2rem;
    color: var(--red);
    align-self: flex-start;
    margin-top: 0.6rem;
  }
  @media (max-width: 600px) {
    .timer-unit { min-width: 60px; padding: 0.7rem 0.4rem; }
    .timer-sep { display: none; }
    .countdown-timer { gap: 0.5rem; }
  }

  /* Newsletter block */
  .newsletter-block {
    padding: 2rem;
    border: 2px solid rgba(244,241,234,0.2);
    background: rgba(0,0,0,0.3);
    position: relative;
  }
  .newsletter-block::before {
    content: '';
    position: absolute;
    top: -2px; right: -2px;
    width: 30px; height: 30px;
    border-top: 3px solid var(--white);
    border-right: 3px solid var(--white);
  }
  .newsletter-block::after {
    content: '';
    position: absolute;
    bottom: -2px; left: -2px;
    width: 30px; height: 30px;
    border-bottom: 3px solid var(--white);
    border-left: 3px solid var(--white);
  }
  .newsletter-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Black Ops One', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    color: var(--white);
    text-transform: uppercase;
    margin-bottom: 1rem;
  }
  .newsletter-label .dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: var(--white);
    animation: pulse-rec 1.2s ease-in-out infinite;
  }
  .newsletter-title {
    font-family: 'Black Ops One', sans-serif;
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 1rem;
    letter-spacing: 0.02em;
  }
  .newsletter-tagline {
    color: var(--bone);
    margin-bottom: 1.5rem;
    font-size: 1rem;
    line-height: 1.5;
  }
  .newsletter-form {
    display: flex;
    gap: 0.5rem;
  }
  .newsletter-form input {
    flex: 1;
    background: rgba(255,255,255,0.08);
    border: 2px solid rgba(255,255,255,0.2);
    color: var(--white);
    padding: 0.9rem 1rem;
    font-family: 'Special Elite', monospace;
    font-size: 0.9rem;
  }
  .newsletter-form input:focus {
    outline: none;
    border-color: var(--red);
    background: rgba(255,255,255,0.12);
  }
  .newsletter-form input::placeholder {
    color: rgba(255,255,255,0.4);
  }
  .newsletter-form button {
    background: var(--red);
    color: var(--white);
    border: 2px solid var(--red);
    padding: 0.9rem 1.6rem;
    font-family: 'Black Ops One', sans-serif;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
  }
  .newsletter-form button:hover {
    background: transparent;
  }
  @media (max-width: 500px) {
    .newsletter-form { flex-direction: column; }
  }

  /* ===== SOCIAL WALL ===== */
  .social-wall {
    background:
      linear-gradient(180deg, var(--ink) 0%, #050a14 100%);
    color: var(--white);
    padding: 8rem 2.5rem;
    position: relative;
  }
  .social-wall::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: repeating-linear-gradient(90deg, var(--blue) 0 30px, var(--white) 30px 60px, var(--red) 60px 90px);
  }
  .social-intro {
    font-size: 1.15rem;
    color: var(--bone);
    max-width: 720px;
    margin-bottom: 3rem;
    opacity: 0.9;
  }
  .social-handles {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 4rem;
  }
  @media (max-width: 800px) {
    .social-handles { grid-template-columns: 1fr; }
  }
  .social-handle {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--navy);
    border: 2px solid rgba(244,241,234,0.1);
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
  }
  .social-handle::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(200,16,46,0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s;
  }
  .social-handle:hover {
    border-color: var(--red);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
  }
  .social-handle:hover::before { opacity: 1; }
  .social-icon {
    width: 36px;
    height: 36px;
    color: var(--red);
    flex-shrink: 0;
    position: relative;
    z-index: 1;
  }
  .social-handle.ig .social-icon { color: #E1306C; }
  .social-handle.tt .social-icon { color: var(--white); }
  .social-handle.yt .social-icon { color: var(--red); }
  .social-text {
    flex: 1;
    position: relative;
    z-index: 1;
  }
  .social-platform {
    font-family: 'Special Elite', monospace;
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    color: var(--steel);
    text-transform: uppercase;
    margin-bottom: 0.2rem;
  }
  .social-handle-name {
    font-family: 'Black Ops One', sans-serif;
    font-size: 1.1rem;
    letter-spacing: 0.05em;
  }
  .social-arrow {
    font-family: 'Black Ops One', sans-serif;
    color: var(--red);
    font-size: 1.5rem;
    transition: transform 0.3s;
    position: relative;
    z-index: 1;
  }
  .social-handle:hover .social-arrow { transform: translateX(4px); }

  /* Social feed */
  .social-feed {
    margin-top: 3rem;
  }
  .feed-label {
    font-family: 'Black Ops One', sans-serif;
    font-size: 0.85rem;
    letter-spacing: 0.4em;
    color: var(--red);
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px dashed rgba(244,241,234,0.15);
  }
  .feed-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
  }
  @media (max-width: 800px) {
    .feed-grid { grid-template-columns: repeat(2, 1fr); }
  }
  .feed-post {
    background: var(--ink);
    border: 1px solid rgba(244,241,234,0.1);
    overflow: hidden;
    transition: all 0.3s;
    cursor: pointer;
  }
  .feed-post:hover {
    border-color: var(--red);
    transform: translateY(-4px);
  }
  .feed-thumb {
    position: relative;
    aspect-ratio: 1/1;
    overflow: hidden;
  }
  .feed-thumb svg { width: 100%; height: 100%; }
  .feed-platform-tag {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    background: var(--red);
    color: var(--white);
    font-family: 'Black Ops One', sans-serif;
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    padding: 0.2rem 0.5rem;
  }
  .feed-caption {
    padding: 0.8rem;
    font-family: 'Crimson Pro', serif;
    font-size: 0.9rem;
    color: var(--white);
    border-bottom: 1px dashed rgba(244,241,234,0.1);
  }
  .feed-stats {
    padding: 0.6rem 0.8rem;
    font-family: 'Special Elite', monospace;
    font-size: 0.75rem;
    color: var(--steel);
    letter-spacing: 0.1em;
  }

  .social-cta {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px dashed rgba(244,241,234,0.15);
  }
  .social-cta p {
    font-family: 'Black Ops One', sans-serif;
    font-size: 1.1rem;
    letter-spacing: 0.15em;
    color: var(--white);
    text-transform: uppercase;
  }
  .social-cta .red { color: var(--red); }

  /* ===== FLOATING IG BADGE ===== */
  .floating-ig {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 90;
    box-shadow: 0 8px 24px rgba(220,39,67,0.5);
    transition: all 0.3s;
  }
  .floating-ig svg { width: 30px; height: 30px; position: relative; z-index: 2; }
  .floating-ig:hover {
    transform: scale(1.1) translateY(-2px);
    box-shadow: 0 12px 32px rgba(220,39,67,0.7);
  }
  .float-pulse {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2px solid #dc2743;
    animation: float-pulse 2s ease-out infinite;
  }
  @keyframes float-pulse {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(1.6); opacity: 0; }
  }

  /* ===== MOBILE STICKY CTA ===== */
  .mobile-cta {
    display: none;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    background: var(--ink);
    border-top: 2px solid var(--red);
    padding: 0.8rem 1rem;
    z-index: 80;
    box-shadow: 0 -10px 30px rgba(0,0,0,0.6);
  }
  .mobile-cta .btn { width: 100%; display: block; text-align: center; padding: 0.9rem; }
  @media (max-width: 720px) {
    .mobile-cta { display: block; }
    .floating-ig { bottom: 80px; right: 16px; width: 50px; height: 50px; }
    .floating-ig svg { width: 24px; height: 24px; }
    body { padding-bottom: 70px; }
  }


  .family-lead {
    font-family: 'Crimson Pro', serif;
    font-size: 1.15rem;
    line-height: 1.5;
    color: var(--bone);
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px dashed rgba(244,241,234,0.15);
  }


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


  .hero-action img,
  .hero-action-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  .reel-frame img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    display: block;
  }
  /* Coach photos shot in portrait orientation — anchor to top so faces stay in frame */
  .reel-frame.bias-top img {
    object-position: center top;
  }


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


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


  /* ===== MAVERICK MINDSET AUDIO SECTION ===== */
  .mindset-section {
    background:
      linear-gradient(180deg, #061021 0%, var(--ink) 100%);
    color: var(--white);
    padding: 8rem 2.5rem;
    position: relative;
    overflow: hidden;
  }
  .mindset-bg-grid {
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(rgba(244,241,234,0.018) 1px, transparent 1px),
      linear-gradient(90deg, rgba(244,241,234,0.018) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
  }
  .mindset-section .container { position: relative; z-index: 2; }
  .mindset-intro {
    font-size: 1.15rem;
    color: var(--bone);
    max-width: 720px;
    margin-bottom: 3rem;
    opacity: 0.9;
  }

  .mindset-player {
    max-width: 920px;
    margin: 0 auto;
    background: var(--ink);
    border: 2px solid var(--red);
    box-shadow:
      0 0 0 1px rgba(244,241,234,0.05) inset,
      12px 12px 0 var(--red-deep),
      0 30px 80px rgba(0,0,0,0.6);
  }
  .mindset-strip {
    background: var(--red);
    color: var(--white);
    padding: 0.7rem 1.2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Black Ops One', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    border-bottom: 2px solid var(--ink);
    flex-wrap: wrap;
    gap: 0.5rem;
  }
  .mindset-strip.bottom {
    background: var(--ink);
    color: var(--steel);
    border-bottom: 0;
    border-top: 2px solid var(--red);
    font-size: 0.65rem;
  }
  .mindset-rec {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  .mindset-rec .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--white);
    animation: pulse-rec 1.2s ease-in-out infinite;
  }
  .mindset-tc {
    font-family: 'Special Elite', monospace;
    letter-spacing: 0.15em;
    color: var(--white);
  }
  .mindset-status {
    background: var(--ink);
    color: var(--white);
    padding: 0.2rem 0.6rem;
    letter-spacing: 0.2em;
    font-size: 0.65rem;
  }
  .mindset-status.playing { color: var(--red); }

  .mindset-body {
    padding: 2.5rem 2rem;
    display: flex;
    align-items: center;
    gap: 2rem;
  }
  @media (max-width: 600px) {
    .mindset-body { flex-direction: column; gap: 1.5rem; padding: 1.5rem; }
  }

  .mindset-play-btn {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: var(--red);
    color: var(--white);
    border: 3px solid var(--red);
    cursor: pointer;
    flex-shrink: 0;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(200,16,46,0.3);
  }
  .mindset-play-btn svg {
    width: 36px;
    height: 36px;
    position: relative;
    z-index: 2;
  }
  .mindset-play-btn .icon-play { margin-left: 4px; }
  .mindset-play-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(200,16,46,0.5);
  }
  .play-ring {
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 2px solid var(--red);
    opacity: 0;
    pointer-events: none;
  }
  .mindset-play-btn:hover .play-ring {
    animation: ring-pulse 1.5s ease-out infinite;
  }
  @keyframes ring-pulse {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(1.4); opacity: 0; }
  }

  .mindset-track {
    flex: 1;
    min-width: 0;
  }
  .mindset-title-row {
    display: flex;
    align-items: baseline;
    gap: 0.8rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
  }
  .mindset-track-title {
    font-family: 'Black Ops One', sans-serif;
    font-size: 1.5rem;
    color: var(--white);
    letter-spacing: 0.03em;
  }
  .mindset-track-by {
    font-family: 'Special Elite', monospace;
    font-size: 0.8rem;
    color: var(--steel);
    letter-spacing: 0.15em;
  }

  .mindset-waveform {
    position: relative;
    display: flex;
    align-items: center;
    gap: 2px;
    height: 60px;
    cursor: pointer;
    padding: 5px 0;
    overflow: hidden;
  }
  .wave-bar {
    flex: 1;
    background: rgba(244,241,234,0.25);
    min-width: 2px;
    border-radius: 1px;
    transition: background 0.2s;
  }
  .mindset-waveform:hover .wave-bar {
    background: rgba(244,241,234,0.4);
  }
  .wave-progress {
    position: absolute;
    top: 0; left: 0; bottom: 0;
    width: 0%;
    background: linear-gradient(90deg, transparent, rgba(200,16,46,0.25));
    pointer-events: none;
    border-right: 2px solid var(--red);
    transition: width 0.1s linear;
    z-index: 1;
  }

  .mindset-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1rem;
  }
  .mindset-mute-btn {
    background: transparent;
    border: 1px solid rgba(244,241,234,0.3);
    color: var(--white);
    width: 36px;
    height: 36px;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
  }
  .mindset-mute-btn:hover { border-color: var(--red); color: var(--red); }
  .mindset-mute-btn.muted { opacity: 0.5; }
  .mindset-mute-btn svg { width: 18px; height: 18px; }

  .mindset-speed-btn {
    font-family: 'Black Ops One', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    color: var(--white);
    background: transparent;
    border: 1px solid rgba(244,241,234,0.3);
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s;
    user-select: none;
  }
  .mindset-speed-btn:hover { border-color: var(--red); color: var(--red); }

  .mindset-meta {
    font-family: 'Special Elite', monospace;
    letter-spacing: 0.15em;
  }

  /* ===== FLOATING MINI PLAYER ===== */
  .mini-player {
    position: fixed;
    bottom: 30px;
    left: 30px;
    background: var(--ink);
    border: 2px solid var(--red);
    padding: 0.7rem 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    z-index: 89;
    box-shadow: 0 10px 30px rgba(0,0,0,0.6);
    transform: translateY(120%);
    opacity: 0;
    transition: all 0.3s ease;
    max-width: 280px;
  }
  .mini-player.visible {
    transform: translateY(0);
    opacity: 1;
  }
  .mini-play-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--red);
    color: var(--white);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.2s;
  }
  .mini-play-btn:hover { transform: scale(1.08); }
  .mini-play-btn svg { width: 18px; height: 18px; }
  .mini-play-btn .mini-icon-play { margin-left: 2px; }
  .mini-info {
    min-width: 0;
  }
  .mini-label {
    font-family: 'Special Elite', monospace;
    font-size: 0.55rem;
    letter-spacing: 0.3em;
    color: var(--red);
    text-transform: uppercase;
    margin-bottom: 0.15rem;
  }
  .mini-title {
    font-family: 'Black Ops One', sans-serif;
    font-size: 0.85rem;
    color: var(--white);
    letter-spacing: 0.05em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .mini-close {
    background: transparent;
    border: none;
    color: var(--steel);
    font-size: 1.4rem;
    cursor: pointer;
    line-height: 1;
    padding: 0 0.3rem;
    transition: color 0.2s;
  }
  .mini-close:hover { color: var(--red); }

  @media (max-width: 720px) {
    .mini-player {
      bottom: 90px;
      left: 12px;
      right: 12px;
      max-width: none;
    }
  }


  /* ===== SUMMER CAMP SECTION ===== */
  .camp-section {
    background:
      linear-gradient(180deg, #050a14 0%, var(--navy) 100%);
    color: var(--white);
    padding: 8rem 2.5rem;
    position: relative;
    overflow: hidden;
  }
  .camp-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 6px;
    background: repeating-linear-gradient(
      90deg,
      var(--red) 0 40px,
      var(--white) 40px 80px,
      var(--blue) 80px 120px,
      var(--white) 120px 160px
    );
  }
  .camp-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse at 30% 50%, rgba(200,16,46,0.08), transparent 60%),
      radial-gradient(ellipse at 80% 30%, rgba(0,40,104,0.15), transparent 60%);
    pointer-events: none;
  }
  .camp-section .container { position: relative; z-index: 2; }
  .camp-intro {
    font-size: 1.15rem;
    color: var(--bone);
    max-width: 760px;
    margin-bottom: 4rem;
    opacity: 0.9;
  }
  .camp-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    align-items: start;
  }
  @media (max-width: 900px) {
    .camp-grid { grid-template-columns: 1fr; gap: 3rem; }
  }

  /* FLYER CARD */
  .camp-flyer {
    border: 2px solid var(--red);
    background: var(--ink);
    box-shadow:
      0 0 0 1px rgba(244,241,234,0.05) inset,
      12px 12px 0 var(--red-deep),
      0 30px 60px rgba(0,0,0,0.7);
    position: sticky;
    top: 140px;
  }
  @media (max-width: 900px) {
    .camp-flyer { position: static; }
  }
  .flyer-strip {
    background: var(--red);
    color: var(--white);
    padding: 0.7rem 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Black Ops One', sans-serif;
    font-size: 0.65rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    border-bottom: 2px solid var(--ink);
  }
  .flyer-strip.bottom {
    background: var(--ink);
    color: var(--steel);
    border-bottom: 0;
    border-top: 2px solid var(--red);
  }
  .flyer-rec {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  .flyer-rec .dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: var(--white);
    animation: pulse-rec 1.2s ease-in-out infinite;
  }
  .flyer-image {
    position: relative;
    overflow: hidden;
    background: var(--ink);
  }
  .flyer-image img {
    width: 100%;
    height: auto;
    display: block;
  }
  .flyer-meta {
    font-family: 'Special Elite', monospace;
    letter-spacing: 0.15em;
  }

  /* DETAILS COLUMN */
  .camp-details {
    color: var(--bone);
  }
  .detail-block {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px dashed rgba(244,241,234,0.15);
  }
  .detail-block:last-of-type { border-bottom: 0; }
  .detail-label {
    font-family: 'Black Ops One', sans-serif;
    font-size: 0.9rem;
    letter-spacing: 0.25em;
    color: var(--red);
    text-transform: uppercase;
    margin-bottom: 0.8rem;
  }
  .detail-block p {
    font-size: 1.05rem;
    line-height: 1.55;
    color: var(--bone);
  }

  .camp-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 2rem 0;
  }
  .camp-cta {
    background: var(--red);
    color: var(--white);
    font-size: 0.95rem;
    padding: 1.2rem 2rem;
  }

  .camp-quick-info {
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(10,10,10,0.5);
    border-left: 3px solid var(--red);
  }
  .quick-info-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 0.4rem 0;
    font-family: 'Special Elite', monospace;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    border-bottom: 1px dashed rgba(244,241,234,0.1);
  }
  .quick-info-row:last-child { border-bottom: 0; }
  .quick-key { color: var(--steel); }
  .quick-val { color: var(--white); font-weight: 600; }

  /* CONTACT LINKS */
  .contact-link {
    color: inherit;
    text-decoration: none;
    border-bottom: 1px dashed var(--red);
    transition: all 0.2s;
  }
  .contact-link:hover {
    color: var(--red);
    border-bottom-style: solid;
  }

  /* PROGRAM CARD AS LINK */
  .program-link {
    text-decoration: none;
    display: block;
    cursor: pointer;
  }
  .program-link:hover h3 {
    color: var(--red);
  }
  .program-link h3 {
    transition: color 0.2s;
  }


  .hero-subtag {
    font-family: 'Special Elite', monospace;
    font-size: 0.8rem;
    letter-spacing: 0.3em;
    color: var(--bone);
    text-transform: uppercase;
    margin-top: 0.6rem;
    opacity: 0.8;
  }


  nav ul a.nav-register {
    background: var(--red);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 0;
    transition: all 0.3s;
  }
  nav ul a.nav-register:hover {
    background: transparent;
    color: var(--red);
    box-shadow: inset 0 0 0 2px var(--red);
  }
  nav ul a.nav-register::after { display: none; }

  /* Program CTA */
  .program-cta {
    display: inline-block;
    margin-top: 1rem;
    color: var(--red);
    font-family: 'Black Ops One', sans-serif;
    font-size: 0.85rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    text-decoration: none;
    border-bottom: 2px solid var(--red);
    padding-bottom: 2px;
    transition: all 0.2s;
  }
  .program-cta:hover {
    color: var(--ink);
    background: var(--red);
    padding: 4px 8px;
    margin: 1rem 0 0 -8px;
  }


  /* SUMMER CAMP BANNER */
  .summer-camp-banner {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
    padding: 2.5rem;
    background: var(--ink);
    border: 2px solid var(--red);
    position: relative;
    box-shadow: 8px 8px 0 var(--red-deep);
  }
  @media (max-width: 800px) {
    .summer-camp-banner { grid-template-columns: 1fr; gap: 1.5rem; padding: 1.5rem; }
  }
  .summer-camp-banner::before {
    content: '';
    position: absolute;
    top: -2px; left: -2px;
    width: 40px; height: 40px;
    border-top: 4px solid var(--red);
    border-left: 4px solid var(--red);
  }
  .summer-camp-banner::after {
    content: '';
    position: absolute;
    bottom: -2px; right: -2px;
    width: 40px; height: 40px;
    border-bottom: 4px solid var(--red);
    border-right: 4px solid var(--red);
  }
  .camp-flyer-slot {
    aspect-ratio: 1/1.4;
    background: var(--navy);
    border: 2px dashed rgba(244,241,234,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }
  .camp-flyer-slot img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  .camp-flyer-placeholder {
    text-align: center;
    padding: 2rem;
    color: var(--steel);
  }
  .flyer-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.4;
  }
  .camp-flyer-placeholder p {
    font-family: 'Special Elite', monospace;
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    line-height: 1.5;
  }
  .camp-flyer-placeholder small { opacity: 0.6; font-size: 0.75rem; }
  .camp-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--red);
    color: var(--white);
    padding: 0.5rem 1rem;
    font-family: 'Black Ops One', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
  }
  .camp-label .dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: var(--white);
    animation: pulse-rec 1.2s ease-in-out infinite;
  }
  .camp-title {
    font-family: 'Black Ops One', sans-serif;
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    color: var(--white);
    margin-bottom: 1rem;
    letter-spacing: 0.02em;
  }
  .camp-desc {
    color: var(--bone);
    font-size: 1.05rem;
    line-height: 1.55;
    margin-bottom: 1.5rem;
  }


  .camp-sessions {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
  }
  .camp-sessions li {
    font-family: 'Special Elite', monospace;
    font-size: 0.95rem;
    letter-spacing: 0.1em;
    color: var(--bone);
    padding: 0.4rem 0 0.4rem 1.5rem;
    border-left: 3px solid var(--red);
    margin-bottom: 0.4rem;
    background: rgba(200,16,46,0.04);
  }
  .camp-sessions li strong {
    color: var(--white);
    font-family: 'Black Ops One', sans-serif;
    letter-spacing: 0.15em;
    margin-right: 0.5rem;
  }
  .camp-clinic-tags {
    display: flex;
    gap: 0.6rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
  }
  .clinic-tag {
    font-family: 'Black Ops One', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    color: var(--red);
    border: 1px solid var(--red);
    padding: 0.4rem 0.8rem;
    text-transform: uppercase;
  }
  .camp-cta-row {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
  }


  .hero-real-tagline {
    font-family: 'Crimson Pro', serif;
    font-size: clamp(0.95rem, 1.4vw, 1.15rem);
    color: var(--bone);
    margin: -0.5rem 0 2rem;
    opacity: 0.85;
    letter-spacing: 0.02em;
  }


  /* ===== MISSION & VALUES ===== */
  .mission-values {
    background:
      linear-gradient(180deg, #061021 0%, var(--ink) 100%);
    color: var(--white);
    padding: 8rem 2.5rem;
    position: relative;
  }
  .mission-values::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 6px;
    background: repeating-linear-gradient(
      90deg,
      var(--blue) 0 40px,
      var(--ink) 40px 80px,
      var(--red) 80px 120px,
      var(--ink) 120px 160px
    );
  }
  .mission-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    align-items: start;
  }
  @media (max-width: 900px) {
    .mission-grid { grid-template-columns: 1fr; gap: 2rem; }
  }
  .mission-box {
    background: var(--navy);
    border: 2px solid var(--red);
    padding: 2.5rem;
    position: relative;
    box-shadow: 8px 8px 0 var(--red-deep);
  }
  .mission-box::before {
    content: '';
    position: absolute;
    top: -2px; left: -2px;
    width: 40px; height: 40px;
    border-top: 4px solid var(--red);
    border-left: 4px solid var(--red);
  }
  .mission-box::after {
    content: '';
    position: absolute;
    bottom: -2px; right: -2px;
    width: 40px; height: 40px;
    border-bottom: 4px solid var(--red);
    border-right: 4px solid var(--red);
  }
  .mission-eyebrow {
    font-family: 'Black Ops One', sans-serif;
    font-size: 0.85rem;
    letter-spacing: 0.4em;
    color: var(--red);
    margin-bottom: 1.5rem;
    text-align: center;
    text-transform: uppercase;
  }
  .mission-statement {
    font-family: 'Crimson Pro', serif;
    font-size: clamp(1.2rem, 1.8vw, 1.5rem);
    line-height: 1.4;
    color: var(--white);
    margin-bottom: 1.5rem;
  }
  .mission-body {
    color: var(--bone);
    font-size: 1.05rem;
    line-height: 1.55;
  }
  .values-stack {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
  }
  .value-card {
    background: rgba(11,25,50,0.4);
    border-left: 4px solid var(--red);
    padding: 1.5rem 1.8rem;
    position: relative;
    overflow: hidden;
  }
  .value-num {
    position: absolute;
    top: 0.5rem;
    right: 1rem;
    font-family: 'Black Ops One', sans-serif;
    font-size: clamp(1.6rem, 2.2vw, 2.5rem);
    color: rgba(200,16,46,0.18);
    line-height: 1;
    z-index: 0;
    pointer-events: none;
  }
  .value-title {
    font-family: 'Black Ops One', sans-serif;
    font-size: clamp(1rem, 1.4vw, 1.3rem);
    color: var(--white);
    margin-bottom: 1rem;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
    padding-right: 2.5rem;
  }
  .value-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .value-card ul li {
    color: var(--bone);
    padding: 0.3rem 0 0.3rem 1.5rem;
    position: relative;
    font-size: 0.95rem;
    line-height: 1.5;
  }
  .value-card ul li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--red);
    font-family: 'Black Ops One', sans-serif;
  }


  .squad-placeholder {
    width: 100%;
    height: 100%;
    background:
      repeating-linear-gradient(
        45deg,
        var(--navy) 0 20px,
        #061021 20px 40px
      );
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .placeholder-coming {
    font-family: 'Black Ops One', sans-serif;
    font-size: 1.2rem;
    color: var(--red);
    letter-spacing: 0.2em;
    text-align: center;
    line-height: 1.2;
    text-shadow: 2px 2px 0 rgba(0,0,0,0.5);
  }
  .coach-pending .squad-info {
    border-top-color: var(--steel);
  }
  .coach-featured {
    border: 2px solid var(--red) !important;
  }
  .coach-featured .squad-overlay .squad-num {
    background: var(--ink);
    color: var(--red);
    border: 1px solid var(--red);
  }


  .commander-portrait img {
    object-position: center top;
  }
  .squad-portrait img {
    object-position: center top;
  }


  /* ===== SPONSORS ===== */
  .sponsors-section {
    background: var(--ink);
    color: var(--white);
    padding: 8rem 2.5rem;
    position: relative;
    border-top: 2px solid rgba(244,241,234,0.08);
  }
  .sponsors-intro {
    font-size: 1.1rem;
    color: var(--bone);
    max-width: 720px;
    margin-bottom: 3rem;
    opacity: 0.9;
  }
  .sponsor-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
  @media (max-width: 800px) {
    .sponsor-grid { grid-template-columns: 1fr; }
  }
  .sponsor-slot {
    background: var(--navy);
    border: 1px solid rgba(244,241,234,0.15);
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
  }
  .sponsor-slot:hover {
    border-color: var(--red);
    transform: translateY(-4px);
  }
  .sponsor-placeholder {
    aspect-ratio: 1/1;
    background:
      repeating-linear-gradient(45deg, rgba(244,241,234,0.03) 0 20px, transparent 20px 40px),
      rgba(11,25,50,0.5);
    border: 2px dashed rgba(244,241,234,0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    max-width: 200px;
    margin-left: auto;
    margin-right: auto;
  }
  .sp-icon {
    font-size: 3rem;
    color: var(--steel);
    opacity: 0.4;
    margin-bottom: 0.5rem;
  }
  .sp-label {
    font-family: 'Black Ops One', sans-serif;
    font-size: 0.85rem;
    letter-spacing: 0.3em;
    color: var(--steel);
    text-align: center;
    line-height: 1.4;
  }
  .sp-label span { color: var(--red); }
  .sponsor-info h4 {
    font-family: 'Black Ops One', sans-serif;
    font-size: 1.2rem;
    color: var(--white);
    letter-spacing: 0.05em;
    margin-bottom: 0.6rem;
  }
  .sponsor-info p {
    color: var(--bone);
    font-size: 0.95rem;
    margin-bottom: 1rem;
    line-height: 1.5;
  }
  .sponsor-cta {
    display: inline-block;
    color: var(--red);
    text-decoration: none;
    font-family: 'Black Ops One', sans-serif;
    font-size: 0.85rem;
    letter-spacing: 0.2em;
    border-bottom: 2px solid var(--red);
    padding-bottom: 2px;
    transition: all 0.2s;
  }
  .sponsor-cta:hover {
    color: var(--white);
    background: var(--red);
    padding: 4px 8px;
    margin: 0 -8px;
  }
  .sponsors-contact {
    text-align: center;
    margin-top: 3rem;
    font-family: 'Special Elite', monospace;
    font-size: 0.9rem;
    letter-spacing: 0.15em;
    color: var(--bone);
  }
  .sponsors-contact a {
    color: var(--red);
    text-decoration: none;
  }
  .sponsors-contact a:hover { text-decoration: underline; }


  /* === NAV REDESIGN === */
  nav {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 2rem;
    padding: 0.8rem 2rem;
  }
  .logo-link {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    text-decoration: none;
    color: var(--white);
  }
  .nav-logo { height: 44px; width: auto; border-radius: 4px; }
  .nav-brand {
    font-family: 'Black Ops One', sans-serif;
    font-size: 1rem;
    letter-spacing: 0.2em;
    color: var(--white);
  }
  .nav-menu {
    list-style: none;
    display: flex;
    gap: 1.8rem;
    justify-content: center;
    margin: 0;
    padding: 0;
  }
  .nav-menu a {
    color: var(--white);
    text-decoration: none;
    font-family: 'Black Ops One', sans-serif;
    letter-spacing: 0.18em;
    font-size: 0.75rem;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 4px;
    transition: color 0.3s;
  }
  .nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 2px;
    background: var(--red);
    transition: width 0.3s;
  }
  .nav-menu a:hover { color: var(--red); }
  .nav-menu a:hover::after { width: 100%; }
  .nav-right {
    display: flex;
    align-items: center;
    gap: 1rem;
  }
  .nav-socials {
    display: flex;
    align-items: center;
    gap: 0.4rem;
  }
  .nav-social {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    border-radius: 6px;
    transition: all 0.25s;
    text-decoration: none;
  }
  .nav-social svg {
    width: 18px;
    height: 18px;
    transition: transform 0.2s;
  }
  .nav-social:hover svg { transform: scale(1.15); }
  .nav-social.ig:hover { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); color: #fff; }
  .nav-social.se:hover { background: var(--red); }
  .nav-social.phone:hover { background: var(--blue); }
  .nav-register {
    background: var(--red);
    color: var(--white) !important;
    padding: 0.55rem 1.1rem;
    font-family: 'Black Ops One', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    text-decoration: none;
    border: 2px solid var(--red);
    transition: all 0.25s;
    white-space: nowrap;
  }
  .nav-register:hover {
    background: transparent;
    color: var(--red) !important;
  }
  .nav-register::after { display: none !important; }
  @media (max-width: 900px) {
    nav { grid-template-columns: auto auto; gap: 0.8rem; padding: 0.7rem 1rem; }
    .nav-menu { display: none; }
    .nav-brand { display: none; }
    .nav-logo { height: 38px; }
  }
  @media (max-width: 500px) {
    .nav-social.phone { display: none; }
    .nav-register { padding: 0.5rem 0.7rem; font-size: 0.7rem; }
  }


  /* === GLOBAL TIGHTENING === */
  section { padding: 5rem 2.5rem !important; }
  @media (max-width: 700px) { section { padding: 3.5rem 1.2rem !important; } }
  .section-title { margin-bottom: 2rem !important; font-size: clamp(2rem, 5vw, 3.8rem) !important; }
  .container { max-width: 1200px; }

  /* Tighten coach section */
  .coaches-section { padding: 5rem 2.5rem !important; }
  .coaches-intro { margin-bottom: 2.5rem !important; font-size: 1.05rem !important; }
  .commander-card { padding: 2rem !important; margin-bottom: 2.5rem !important; gap: 2rem !important; }
  .commander-portrait { aspect-ratio: 3/4; max-height: 320px; }
  .commander-bio { font-size: 0.98rem !important; line-height: 1.5 !important; }
  .squadron-grid { gap: 0.9rem !important; margin-bottom: 1.5rem !important; }
  .squad-portrait { aspect-ratio: 3/4; }

  /* Founder section */
  .story { padding: 5rem 2.5rem !important; }
  .story-grid { gap: 3rem !important; }
  .story-body p { font-size: 1rem !important; margin-bottom: 0.9rem !important; }
  .pullquote { font-size: clamp(1.1rem, 1.8vw, 1.4rem) !important; padding: 1rem 0 1rem 1.5rem !important; margin: 1.2rem 0 1.5rem !important; }

  /* Mission */
  .mission-values { padding: 5rem 2.5rem !important; }
  .mission-box { padding: 2rem !important; }
  .mission-statement { font-size: clamp(1.05rem, 1.5vw, 1.25rem) !important; margin-bottom: 1rem !important; }
  .mission-body { font-size: 0.98rem !important; }
  .value-card { padding: 1.2rem 1.5rem !important; }
  .value-title { font-size: 1.15rem !important; margin-bottom: 0.6rem !important; }
  .value-card ul li { font-size: 0.9rem !important; padding: 0.2rem 0 0.2rem 1.2rem !important; }
  .values-stack { gap: 0.8rem !important; }

  /* Mindset / audio */
  .mindset-section { padding: 5rem 2.5rem !important; }
  .mindset-intro { margin-bottom: 2rem !important; font-size: 1.05rem !important; }
  .mindset-player { max-width: 820px; }
  .mindset-body { padding: 1.8rem 1.5rem !important; gap: 1.5rem !important; }
  .mindset-play-btn { width: 70px !important; height: 70px !important; }
  .mindset-play-btn svg { width: 28px !important; height: 28px !important; }
  .mindset-track-title { font-size: 1.25rem !important; }

  /* Programs */
  .programs { padding: 5rem 2.5rem !important; }
  .programs-grid { margin-top: 2.5rem !important; gap: 1.2rem !important; }
  .program-card { padding: 1.8rem !important; }
  .program-card h3 { font-size: 1.4rem !important; margin-bottom: 0.6rem !important; }
  .program-card p { font-size: 0.95rem !important; margin-bottom: 1rem !important; }
  .summer-camp-banner { padding: 1.8rem !important; margin-bottom: 2.5rem !important; gap: 2rem !important; }
  .camp-title { font-size: clamp(1.5rem, 2.8vw, 2rem) !important; margin-bottom: 0.8rem !important; }
  .camp-desc { font-size: 0.98rem !important; margin-bottom: 1rem !important; }
  .camp-sessions li { font-size: 0.88rem !important; padding: 0.3rem 0 0.3rem 1.2rem !important; }

  /* Pillars */
  .pillars { padding: 5rem 2.5rem !important; }
  .pillars-grid { margin-top: 2.5rem !important; }
  .pillar { padding: 1.8rem !important; }
  .pillar .num { font-size: 2.2rem !important; }
  .pillar h3 { font-size: 1.3rem !important; }
  .pillar p { font-size: 0.95rem !important; }
  .stat-counters { margin-top: 2.5rem !important; padding-top: 2rem !important; }

  /* Film Room */
  .film-room { padding: 5rem 1.5rem !important; }
  .film-intro { margin-bottom: 2.5rem !important; font-size: 1.05rem !important; }
  .hero-frame { margin-bottom: 2.5rem !important; }

  /* Voices */
  .voices { padding: 5rem 2.5rem !important; }
  .voices-grid { margin-top: 2rem !important; gap: 1.5rem !important; }
  .voice { padding: 1.5rem !important; }
  .voice blockquote { font-size: 1.1rem !important; margin: 0.8rem 0 1rem !important; }

  /* Countdown */
  .countdown-strip { padding: 4rem 2.5rem !important; }
  .countdown-grid { gap: 2.5rem !important; }
  .countdown-block { padding: 1.5rem !important; }
  .newsletter-block { padding: 1.5rem !important; }
  .newsletter-title { font-size: 1.5rem !important; margin-bottom: 0.7rem !important; }
  .timer-unit { padding: 0.7rem 0.6rem !important; min-width: 70px !important; }
  .timer-unit .num { font-size: clamp(1.5rem, 3vw, 2.2rem) !important; }

  /* Sponsors */
  .sponsors-section { padding: 5rem 2.5rem !important; }
  .sponsor-slot { padding: 1.5rem !important; }
  .sponsor-placeholder { max-width: 150px !important; }

  /* Social wall */
  .social-wall { padding: 5rem 2.5rem !important; }
  .social-handles { margin-bottom: 2.5rem !important; gap: 1rem !important; }
  .social-handle { padding: 1.2rem !important; }
  .social-feed { margin-top: 2rem !important; }

  /* Contact */
  .contact { padding: 5rem 2.5rem !important; }
  .contact-grid { gap: 2.5rem !important; margin-top: 2rem !important; }

  /* Tighten intros */
  .family-lead, .mindset-intro, .film-intro, .coaches-intro,
  .sponsors-intro, .social-intro {
    font-size: 1rem !important;
    margin-bottom: 1.5rem !important;
  }

  /* Tighter section labels & headings */
  .section-label { margin-bottom: 1rem !important; }
  h2.section-title { line-height: 1 !important; }

  /* Strip section */
  .countdown-strip h2 { font-size: clamp(1.8rem, 4vw, 3rem) !important; }


  .voices-compact {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 2px dashed rgba(244,241,234,0.15);
  }
  .voices-header {
    text-align: center;
    margin-bottom: 2rem;
  }
  .voices-label {
    display: inline-block;
    font-family: 'Black Ops One', sans-serif;
    font-size: 0.8rem;
    letter-spacing: 0.4em;
    color: var(--red);
    padding: 0.5rem 1.2rem;
    border: 1px solid var(--red);
    text-transform: uppercase;
  }
  .voices-grid-compact {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
  @media (max-width: 900px) {
    .voices-grid-compact { grid-template-columns: 1fr; }
  }
  .voice-compact {
    background: rgba(11,25,50,0.5);
    border-left: 3px solid var(--red);
    padding: 1.3rem 1.5rem;
    position: relative;
  }
  .voice-compact blockquote {
    font-family: 'Crimson Pro', serif;
    font-size: 1rem;
    line-height: 1.4;
    color: var(--white);
    margin: 0 0 0.7rem;
    font-style: italic;
  }
  .voice-compact cite {
    font-family: 'Black Ops One', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    color: var(--steel);
    font-style: normal;
    text-transform: uppercase;
  }


  /* === HERO ACTION SPLIT (photo + parent quote) === */
  .hero-action-split {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 1.1fr;
    gap: 1.5rem;
    align-items: stretch;
    margin-bottom: 3rem;
    background: var(--ink);
    border: 2px solid var(--red);
    padding: 0;
    box-shadow:
      0 0 0 1px rgba(244,241,234,0.05) inset,
      14px 14px 0 var(--red-deep);
    position: relative;
  }
  .hero-action-split::before {
    content: '';
    position: absolute;
    top: -2px; left: -2px;
    width: 50px; height: 50px;
    border-top: 4px solid var(--red);
    border-left: 4px solid var(--red);
    z-index: 5;
  }
  .hero-action-split::after {
    content: '';
    position: absolute;
    bottom: -2px; right: -2px;
    width: 50px; height: 50px;
    border-bottom: 4px solid var(--red);
    border-right: 4px solid var(--red);
    z-index: 5;
  }
  @media (max-width: 850px) {
    .hero-action-split {
      grid-template-columns: 1fr;
      gap: 0;
    }
  }

  .hero-action-photo {
    position: relative;
    overflow: hidden;
    background: var(--ink);
    aspect-ratio: 3 / 4.2;
    min-height: 0;
  }
  @media (max-width: 850px) {
    .hero-action-photo { aspect-ratio: 3 / 3.8; }
  }
  .hero-action-photo .hero-action-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
  }

  .hero-action-photo .shot-info {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    background: rgba(10,10,10,0.92);
    border-left: 3px solid var(--red);
    padding: 0.8rem 1rem;
    backdrop-filter: blur(8px);
    z-index: 3;
    min-width: 200px;
  }
  .hero-action-photo .shot-stat {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.15rem 0;
    font-size: 0.7rem;
  }
  .hero-action-photo .shot-stat .stat-key {
    font-family: 'Special Elite', monospace;
    color: var(--steel);
    letter-spacing: 0.15em;
    text-transform: uppercase;
  }
  .hero-action-photo .shot-stat .stat-val {
    font-family: 'Black Ops One', sans-serif;
    color: var(--white);
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }
  .hero-action-photo .shot-stat .stat-val.red { color: var(--red); }

  /* QUOTE SIDE */
  .hero-action-quote {
    padding: 2.5rem 2.2rem;
    background:
      linear-gradient(180deg, var(--navy) 0%, #061021 100%);
    color: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
  }
  .hero-action-quote::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: repeating-linear-gradient(
      90deg,
      var(--red) 0 20px,
      transparent 20px 40px
    );
  }
  @media (max-width: 850px) {
    .hero-action-quote { padding: 2rem 1.5rem; }
  }

  .quote-bracket {
    font-family: 'Black Ops One', sans-serif;
    font-size: 6rem;
    color: var(--red);
    line-height: 0.5;
    margin-bottom: 0.5rem;
    opacity: 0.9;
  }
  .parent-quote {
    font-family: 'Crimson Pro', serif;
    font-size: clamp(1.05rem, 1.7vw, 1.35rem);
    line-height: 1.45;
    color: var(--white);
    margin: 0 0 1.8rem;
    padding: 0;
    border: none;
    font-weight: 300;
    font-style: italic;
    letter-spacing: 0.005em;
  }
  .quote-attribution {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1.2rem;
    border-top: 1px dashed rgba(244,241,234,0.18);
  }
  .attr-line {
    width: 40px;
    height: 2px;
    background: var(--red);
    flex-shrink: 0;
  }
  .attr-text {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
  }
  .attr-text strong {
    font-family: 'Black Ops One', sans-serif;
    color: var(--white);
    font-size: 0.95rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
  }
  .attr-text span {
    font-family: 'Special Elite', monospace;
    color: var(--red);
    font-size: 0.7rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
  }

  /* HUD reticles inside hero photo */
  .hero-action-photo .reticle {
    position: absolute;
    width: 30px;
    height: 30px;
    z-index: 4;
  }
  .hero-action-photo .reticle.tl { top: 12px; left: 12px; border-top: 3px solid var(--red); border-left: 3px solid var(--red); }
  .hero-action-photo .reticle.tr { top: 12px; right: 12px; border-top: 3px solid var(--red); border-right: 3px solid var(--red); }
  .hero-action-photo .reticle.bl { bottom: 12px; left: 12px; border-bottom: 3px solid var(--red); border-left: 3px solid var(--red); }
  .hero-action-photo .reticle.br { bottom: 12px; right: 12px; border-bottom: 3px solid var(--red); border-right: 3px solid var(--red); }



  /* ============================================================ */
  /* ===== MULTI-PAGE ADDITIONS (v2.0) =========================== */
  /* ============================================================ */

  /* ===== UPDATED NAV WITH DROPDOWNS ===== */
  nav .nav-menu {
    list-style: none;
    display: flex;
    gap: 2rem;
    align-items: center;
    margin: 0;
    padding: 0;
  }
  nav .nav-menu > li {
    position: relative;
  }
  nav .nav-menu > li > a,
  nav .nav-menu > li > span.nav-trigger {
    color: var(--white);
    text-decoration: none;
    font-family: 'Black Ops One', sans-serif;
    letter-spacing: 0.18em;
    font-size: 0.78rem;
    text-transform: uppercase;
    cursor: pointer;
    padding: 0.5rem 0;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    transition: color 0.3s;
    position: relative;
  }
  nav .nav-menu > li > a:hover,
  nav .nav-menu > li > span.nav-trigger:hover,
  nav .nav-menu > li.active > a {
    color: var(--red);
  }
  /* active page indicator */
  nav .nav-menu > li.active > a::after,
  nav .nav-menu > li.active > span.nav-trigger::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--red);
  }
  /* small chevron after dropdown labels */
  .nav-chevron {
    font-size: 0.55rem;
    transform: translateY(1px);
    opacity: 0.7;
  }

  /* dropdown panel */
  .nav-dropdown {
    position: absolute;
    top: 100%;
    left: -1rem;
    background: rgba(10,10,10,0.97);
    backdrop-filter: blur(14px);
    border: 1px solid var(--red);
    border-top: 2px solid var(--red);
    min-width: 220px;
    padding: 0.4rem 0;
    list-style: none;
    margin: 0;
    box-shadow: 0 12px 30px rgba(0,0,0,0.7);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-6px);
    transition: opacity 0.2s ease, transform 0.2s ease;
    z-index: 110;
  }
  nav .nav-menu > li:hover > .nav-dropdown,
  nav .nav-menu > li:focus-within > .nav-dropdown,
  nav .nav-menu > li.open > .nav-dropdown {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
  .nav-dropdown li a {
    display: block;
    padding: 0.7rem 1.2rem;
    color: var(--white);
    text-decoration: none;
    font-family: 'Black Ops One', sans-serif;
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    transition: background 0.2s, color 0.2s, padding-left 0.2s;
    border-left: 3px solid transparent;
  }
  .nav-dropdown li a:hover,
  .nav-dropdown li a.active {
    background: rgba(200,16,46,0.12);
    color: var(--red);
    border-left-color: var(--red);
    padding-left: 1.5rem;
  }

  /* social icons in nav */
  .nav-socials-row {
    display: flex;
    gap: 0.6rem;
    align-items: center;
  }
  .nav-soc {
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--bone);
    border: 1px solid rgba(244,241,234,0.18);
    border-radius: 4px;
    transition: all 0.2s ease;
  }
  .nav-soc svg { width: 16px; height: 16px; fill: currentColor; }
  .nav-soc:hover {
    color: var(--white);
    background: var(--red);
    border-color: var(--red);
    transform: translateY(-2px);
  }

  /* MOBILE NAV (hamburger) */
  .nav-mobile-toggle {
    display: none;
    background: transparent;
    border: 1px solid var(--red);
    color: var(--white);
    width: 42px;
    height: 42px;
    cursor: pointer;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 0;
  }
  .nav-mobile-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--white);
    transition: all 0.25s ease;
  }
  body.nav-open .nav-mobile-toggle span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  body.nav-open .nav-mobile-toggle span:nth-child(2) { opacity: 0; }
  body.nav-open .nav-mobile-toggle span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

  @media (max-width: 980px) {
    nav { padding: 0.75rem 1rem; }
    .nav-mobile-toggle { display: flex; z-index: 1002; position: relative; }
    .nav-right { display: none; }

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

    /* full-screen menu drawer */
    nav .nav-menu {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      width: 100vw;
      height: 100vh;
      height: 100dvh;
      background: #0a0a0a;
      flex-direction: column;
      align-items: stretch;
      justify-content: flex-start;
      gap: 0;
      padding: 5rem 1.5rem 3rem;
      margin: 0;
      overflow-y: auto;
      transform: translateX(100%);
      transition: transform 0.3s ease;
      border: 0;
      z-index: 1001;
      list-style: none;
      display: flex;
      visibility: hidden;
      -webkit-overflow-scrolling: touch;
    }
    body.nav-open nav .nav-menu {
      transform: translateX(0);
      visibility: visible;
    }
    nav .nav-menu > li {
      border-bottom: 1px solid rgba(200,16,46,0.25);
      padding: 0;
      margin: 0;
      list-style: none;
    }
    nav .nav-menu > li:last-of-type {
      border-bottom: 0;
    }
    nav .nav-menu > li > a,
    nav .nav-menu > li > span.nav-trigger {
      font-family: 'Black Ops One', sans-serif;
      font-size: 1.15rem;
      letter-spacing: 0.2em;
      color: var(--white);
      text-transform: uppercase;
      padding: 1.1rem 0.5rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      width: 100%;
      cursor: pointer;
      text-decoration: none;
    }
    nav .nav-menu > li > a::after,
    nav .nav-menu > li > span.nav-trigger::after {
      display: none;
    }
    nav .nav-menu > li.active > a,
    nav .nav-menu > li.active > span.nav-trigger {
      color: var(--red);
    }
    .nav-chevron {
      font-size: 0.8rem !important;
      opacity: 0.9 !important;
      transition: transform 0.2s ease;
    }
    nav .nav-menu > li.open .nav-chevron {
      transform: rotate(180deg);
    }
    .nav-dropdown {
      position: static !important;
      background: rgba(200,16,46,0.06) !important;
      border: 0 !important;
      border-left: 2px solid var(--red) !important;
      box-shadow: none !important;
      opacity: 1 !important;
      pointer-events: auto !important;
      transform: none !important;
      padding: 0.3rem 0 0.3rem 1.2rem !important;
      margin: 0 0 1rem 0.5rem !important;
      display: none;
      min-width: 0 !important;
      list-style: none !important;
    }
    nav .nav-menu > li.open > .nav-dropdown { display: block; }
    .nav-dropdown li {
      list-style: none;
      padding: 0;
      margin: 0;
    }
    .nav-dropdown li a {
      font-family: 'Black Ops One', sans-serif !important;
      font-size: 0.85rem !important;
      letter-spacing: 0.15em !important;
      padding: 0.7rem 0.4rem !important;
      color: var(--bone) !important;
      text-transform: uppercase;
      display: block;
      text-decoration: none;
    }
    .nav-dropdown li a:hover {
      color: var(--red) !important;
    }
    .nav-mobile-socials {
      display: flex !important;
      gap: 1rem !important;
      padding: 2rem 0 1rem !important;
      justify-content: center !important;
      border-bottom: 0 !important;
      margin-top: 1rem;
    }
    .nav-mobile-socials .nav-soc {
      width: 44px;
      height: 44px;
    }
    .nav-mobile-socials .nav-soc svg {
      width: 22px;
      height: 22px;
    }
    /* mobile register CTA inside the drawer */
    .nav-mobile-cta {
      display: block !important;
      margin: 1.5rem 0 0 !important;
      padding: 1rem !important;
      background: var(--red) !important;
      color: var(--white) !important;
      text-align: center !important;
      font-family: 'Black Ops One', sans-serif !important;
      letter-spacing: 0.25em !important;
      text-transform: uppercase;
      text-decoration: none;
      border: 2px solid var(--red);
      font-size: 1rem;
    }
  }
  .nav-mobile-socials { display: none; }
  .nav-mobile-cta { display: none !important; }
  @media (max-width: 980px) {
    .nav-mobile-cta { display: block !important; }
  }

  /* ===== F-14 HERO BACKGROUND ===== */
  .hero-aviator {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
    padding: 7rem 1.5rem 6rem;
    background:
      linear-gradient(180deg, rgba(10,10,10,0.15) 0%, rgba(10,10,10,0.10) 35%, rgba(10,10,10,0.75) 75%, rgba(10,10,10,0.92) 100%),
      url('../../photos/permanent/hero-bg.jpg') center 30% / cover no-repeat;
  }
  .hero-aviator::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(rgba(200,16,46,0.025) 1px, transparent 1px),
      linear-gradient(90deg, rgba(200,16,46,0.025) 1px, transparent 1px);
    background-size: 120px 120px;
    pointer-events: none;
    opacity: 0.4;
  }
  .hero-aviator .hero-content {
    text-align: center;
    z-index: 2;
    position: relative;
    max-width: 900px;
    padding: 3rem 2rem;
    text-shadow: 0 2px 12px rgba(0,0,0,0.85), 0 0 24px rgba(0,0,0,0.5);
  }
  .hero-aviator .hero-content::before {
    content: '';
    position: absolute;
    inset: -2rem -3rem;
    background: radial-gradient(ellipse at center, rgba(10,10,10,0.55) 0%, rgba(10,10,10,0.25) 50%, transparent 80%);
    z-index: -1;
    pointer-events: none;
  }
  .hero-aviator .hero-real-tagline {
    color: var(--white);
    text-shadow: 0 1px 8px rgba(0,0,0,0.9);
  }

  /* FALLBACK hero (uses action-01 with dark overlay) — kept for safety */
  .hero-fallback {
    background:
      linear-gradient(180deg, rgba(10,10,10,0.7) 0%, rgba(10,10,10,0.5) 40%, rgba(10,10,10,0.92) 100%),
      url('../../photos/action/action-01.jpg') center center / cover no-repeat !important;
  }

  /* ===== PAGE HEADER (for non-home pages) ===== */
  .page-header {
    padding: 11rem 2.5rem 5rem;
    position: relative;
    background:
      radial-gradient(ellipse at 20% 30%, rgba(0,40,104,0.4), transparent 60%),
      radial-gradient(ellipse at 80% 70%, rgba(200,16,46,0.25), transparent 60%),
      var(--navy);
    border-bottom: 6px solid var(--red);
    overflow: hidden;
  }
  .page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(rgba(200,16,46,0.04) 1px, transparent 1px),
      linear-gradient(90deg, rgba(200,16,46,0.04) 1px, transparent 1px);
    background-size: 80px 80px;
    pointer-events: none;
  }
  .page-header .container { position: relative; z-index: 2; }
  .page-header .page-eyebrow {
    font-family: 'Special Elite', monospace;
    color: var(--red);
    font-size: 0.85rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    margin-bottom: 1.2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
  }
  .page-header .page-eyebrow::before {
    content: '';
    width: 50px;
    height: 2px;
    background: var(--red);
  }
  .page-header h1 {
    font-family: 'Black Ops One', sans-serif;
    font-size: clamp(2.6rem, 6.5vw, 5.5rem);
    line-height: 1;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    color: var(--white);
  }
  .page-header h1 .red { color: var(--red); }
  .page-header .page-lead {
    font-family: 'Crimson Pro', serif;
    font-size: clamp(1.05rem, 1.6vw, 1.25rem);
    color: var(--bone);
    max-width: 760px;
    line-height: 1.55;
  }
  .page-header .hud-bracket { z-index: 1; }

  /* breadcrumbs */
  .crumbs {
    font-family: 'Special Elite', monospace;
    font-size: 0.72rem;
    letter-spacing: 0.3em;
    color: var(--steel);
    text-transform: uppercase;
    margin-bottom: 1.5rem;
  }
  .crumbs a { color: var(--bone); text-decoration: none; transition: color 0.2s; }
  .crumbs a:hover { color: var(--red); }
  .crumbs .sep { color: var(--red); margin: 0 0.6rem; }

  /* ===== FLIGHT STATUS — Boarding pass cards on photo background (home, retire after July 2026) ===== */
  .flight-status {
    position: relative;
    padding: 6rem 2.5rem 5.5rem;
    border-top: 6px solid var(--red);
    border-bottom: 2px solid rgba(206,16,46,0.4);
    overflow: hidden;
    isolation: isolate;
  }
  .flight-bg {
    position: absolute;
    inset: 0;
    background-image: url('../../photos/action/reel-powell-kill.jpg');
    background-size: cover;
    background-position: center 35%;
    z-index: -2;
    filter: grayscale(0.15);
  }
  .flight-bg-overlay {
    position: absolute;
    inset: 0;
    background:
      linear-gradient(180deg, rgba(10,14,26,0.92) 0%, rgba(0,40,104,0.78) 50%, rgba(10,14,26,0.95) 100%),
      radial-gradient(ellipse at center, rgba(206,16,46,0.10) 0%, transparent 70%);
    z-index: -1;
  }
  .flight-status .container { position: relative; z-index: 2; }
  .flight-intro {
    font-size: 1.1rem;
    color: var(--bone);
    max-width: 720px;
    margin-bottom: 3rem;
    opacity: 0.95;
    text-shadow: 0 1px 2px rgba(0,0,0,0.5);
  }

  .boarding-passes {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 920px;
    margin: 0 auto;
  }

  .boarding-pass {
    position: relative;
    background:
      linear-gradient(135deg, rgba(10,14,26,0.92) 0%, rgba(0,40,104,0.88) 100%);
    border: 1px solid rgba(244,241,234,0.18);
    border-left: 5px solid var(--red);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    box-shadow:
      0 10px 30px rgba(0,0,0,0.5),
      inset 0 1px 0 rgba(244,241,234,0.05);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  .boarding-pass:hover {
    transform: translateY(-2px);
    box-shadow:
      0 15px 40px rgba(0,0,0,0.6),
      0 0 0 1px rgba(206,16,46,0.4),
      inset 0 1px 0 rgba(244,241,234,0.08);
  }

  /* Faint star watermark across each pass */
  .boarding-pass::before {
    content: '★';
    position: absolute;
    right: -10px;
    top: -30px;
    font-size: 11rem;
    color: rgba(206,16,46,0.06);
    font-family: 'Black Ops One', sans-serif;
    pointer-events: none;
    z-index: 0;
  }

  .bp-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.7rem 1.5rem;
    background: rgba(0,0,0,0.35);
    border-bottom: 1px dashed rgba(244,241,234,0.2);
    position: relative;
    z-index: 1;
  }
  .bp-label {
    font-family: 'Special Elite', monospace;
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    color: var(--steel);
    text-transform: uppercase;
  }
  .bp-status {
    font-family: 'Black Ops One', sans-serif;
    font-size: 0.78rem;
    letter-spacing: 0.18em;
    color: var(--red);
    text-transform: uppercase;
  }
  @keyframes flight-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.55; }
  }
  .bp-status.departing { animation: flight-pulse 2.2s ease-in-out infinite; }

  .bp-body {
    display: grid;
    grid-template-columns: 200px 24px 1fr;
    align-items: stretch;
    position: relative;
    z-index: 1;
  }

  .bp-stub {
    padding: 1.6rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    background: rgba(206,16,46,0.07);
    border-right: 1px dashed rgba(244,241,234,0.18);
  }
  .bp-num {
    font-family: 'Anton', 'Black Ops One', sans-serif;
    font-size: 4.5rem;
    color: var(--red);
    line-height: 1;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 8px rgba(206,16,46,0.4);
  }
  .bp-callsign {
    font-family: 'Black Ops One', sans-serif;
    font-size: 1.5rem;
    color: var(--white);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-top: 0.2rem;
  }
  .bp-division {
    font-family: 'Special Elite', monospace;
    font-size: 0.78rem;
    color: var(--bone);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-top: 0.7rem;
    padding: 0.3rem 0.6rem;
    border: 1px solid rgba(244,241,234,0.3);
    background: rgba(0,0,0,0.3);
  }
  .bp-division-open {
    color: var(--white);
    background: var(--red);
    border-color: var(--red);
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(206,16,46,0.5);
  }

  /* Perforated edge between stub and info */
  .bp-perf {
    position: relative;
    width: 100%;
    background:
      radial-gradient(circle at center, rgba(10,14,26,1) 0px, rgba(10,14,26,1) 4px, transparent 4px) repeat-y,
      transparent;
    background-size: 100% 14px;
  }

  .bp-info {
    padding: 1.5rem 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    justify-content: center;
  }
  .bp-row {
    display: grid;
    grid-template-columns: 70px 1fr;
    align-items: baseline;
    gap: 1rem;
  }
  .bp-key {
    font-family: 'Special Elite', monospace;
    font-size: 0.72rem;
    color: var(--red);
    letter-spacing: 0.22em;
    text-transform: uppercase;
  }
  .bp-val {
    font-family: 'Black Ops One', sans-serif;
    font-size: 0.95rem;
    color: var(--white);
    letter-spacing: 0.05em;
    line-height: 1.45;
  }

  .bp-footer {
    padding: 0.7rem 1.5rem;
    background: rgba(0,0,0,0.35);
    border-top: 1px dashed rgba(244,241,234,0.2);
    font-family: 'Special Elite', monospace;
    font-size: 0.78rem;
    color: var(--bone);
    letter-spacing: 0.1em;
    text-align: center;
    position: relative;
    z-index: 1;
    opacity: 0.85;
  }

  /* Mobile (≤760px): stack stub above info, drop perforation */
  @media (max-width: 760px) {
    .flight-status { padding: 4rem 1rem 3.5rem; }
    .boarding-pass::before { font-size: 8rem; top: -20px; right: -5px; }
    .bp-header { padding: 0.6rem 1rem; flex-wrap: wrap; gap: 0.5rem; }
    .bp-label { font-size: 0.65rem; }
    .bp-body {
      grid-template-columns: 1fr;
      grid-template-rows: auto auto auto;
    }
    .bp-stub {
      padding: 1.3rem 1.25rem;
      flex-direction: row;
      align-items: center;
      gap: 1rem;
      flex-wrap: wrap;
      border-right: none;
      border-bottom: 1px dashed rgba(244,241,234,0.18);
    }
    .bp-num { font-size: 3.2rem; }
    .bp-callsign { font-size: 1.2rem; margin-top: 0; }
    .bp-division { margin-top: 0; flex-basis: 100%; align-self: flex-start; }
    .bp-perf {
      width: 100%;
      height: 8px;
      background:
        radial-gradient(circle at center, rgba(10,14,26,1) 0px, rgba(10,14,26,1) 3px, transparent 3px) repeat-x;
      background-size: 14px 100%;
    }
    .bp-info { padding: 1.25rem 1.25rem; }
    .bp-row { grid-template-columns: 55px 1fr; gap: 0.75rem; }
    .bp-key { font-size: 0.68rem; letter-spacing: 0.18em; }
    .bp-val { font-size: 0.88rem; }
    .bp-footer { padding: 0.65rem 1rem; font-size: 0.7rem; letter-spacing: 0.08em; }
  }

  /* ===== OPEN ROSTER — recruiting callout (home page, retire when filled) ===== */
  .open-roster {
    background: var(--navy);
    padding: 4.5rem 2.5rem;
    border-top: 1px solid rgba(244,241,234,0.08);
  }
  .open-roster-card {
    max-width: 880px;
    margin: 0 auto;
    padding: 2.5rem 2.5rem;
    background: linear-gradient(135deg, rgba(206,17,38,0.10) 0%, rgba(0,40,104,0.30) 100%);
    border: 1px solid rgba(206,17,38,0.4);
    border-left: 6px solid var(--red);
    position: relative;
  }
  .open-roster-card::before,
  .open-roster-card::after {
    content: '';
    position: absolute;
    width: 18px;
    height: 18px;
    border-color: var(--red);
    border-style: solid;
  }
  .open-roster-card::before {
    top: -1px; right: -1px;
    border-width: 2px 2px 0 0;
  }
  .open-roster-card::after {
    bottom: -1px; left: -1px;
    border-width: 0 0 2px 2px;
  }
  .open-roster-eyebrow {
    font-family: 'Special Elite', monospace;
    color: var(--red);
    font-size: 0.82rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    margin-bottom: 1rem;
  }
  .open-roster-title {
    font-family: 'Anton', 'Black Ops One', sans-serif;
    font-size: clamp(1.7rem, 3.5vw, 2.5rem);
    color: var(--white);
    margin: 0 0 1rem;
    line-height: 1.1;
    letter-spacing: 0.02em;
  }
  .open-roster-body {
    font-family: 'Crimson Pro', serif;
    font-size: 1.1rem;
    color: var(--bone);
    line-height: 1.6;
    max-width: 640px;
    margin: 0 0 1.75rem;
  }
  .open-roster-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
  }
  @media (max-width: 600px) {
    .open-roster { padding: 3rem 1.25rem; }
    .open-roster-card { padding: 2rem 1.5rem; }
    .open-roster-cta { flex-direction: column; align-items: stretch; }
    .open-roster-cta .btn { width: 100%; text-align: center; }
  }

  /* ===== RECRUITING PILL on team-row (Boys roster, Fanboy U14) ===== */
  .team-row.recruiting {
    border-left-color: var(--red);
  }
  .recruiting-pill {
    background: var(--red);
    color: var(--white);
    text-decoration: none;
    display: inline-block;
    animation: flight-pulse 2.5s ease-in-out infinite;
  }
  .recruiting-pill:hover {
    background: var(--red-dark, #a30d1f);
    color: var(--white);
  }

  /* ===== UPCOMING EVENTS (Home page flyer cards) ===== */
  .upcoming-events {
    background:
      linear-gradient(180deg, var(--ink) 0%, var(--navy) 100%);
    padding: 7rem 2.5rem;
    position: relative;
    border-top: 6px solid var(--red);
  }
  .upcoming-events::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(rgba(244,241,234,0.018) 1px, transparent 1px),
      linear-gradient(90deg, rgba(244,241,234,0.018) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
  }
  .upcoming-events .container { position: relative; z-index: 2; }
  .events-intro {
    font-size: 1.1rem;
    color: var(--bone);
    max-width: 720px;
    margin-bottom: 3rem;
    opacity: 0.9;
  }
  .events-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
  }
  @media (max-width: 900px) {
    .events-grid { grid-template-columns: 1fr; gap: 3rem; }
  }
  .event-card {
    border: 2px solid var(--red);
    background: var(--ink);
    position: relative;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    box-shadow:
      0 0 0 1px rgba(244,241,234,0.05) inset,
      10px 10px 0 var(--red-deep),
      0 20px 40px rgba(0,0,0,0.5);
    display: flex;
    flex-direction: column;
  }
  .event-card:hover {
    transform: translate(-4px, -4px);
    box-shadow:
      0 0 0 1px rgba(244,241,234,0.05) inset,
      14px 14px 0 var(--red-deep),
      0 26px 50px rgba(0,0,0,0.6);
  }
  .event-card .flyer-strip {
    background: var(--red);
    color: var(--white);
    padding: 0.7rem 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Black Ops One', sans-serif;
    font-size: 0.65rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    border-bottom: 2px solid var(--ink);
  }
  .event-card .flyer-strip.bottom {
    background: var(--ink);
    color: var(--steel);
    border-bottom: 0;
    border-top: 2px solid var(--red);
  }
  .event-card .flyer-rec {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  .event-card .flyer-rec .dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: var(--white);
    animation: pulse-rec 1.2s ease-in-out infinite;
  }
  .event-card .event-image {
    position: relative;
    overflow: hidden;
    background: var(--ink);
    border-bottom: 2px solid var(--red);
  }
  .event-card .event-image img {
    width: 100%;
    height: auto;
    display: block;
  }
  .event-card .event-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 70%, rgba(0,0,0,0.5) 100%);
    pointer-events: none;
  }
  .event-card .event-body {
    padding: 1.6rem 1.4rem 1.8rem;
    flex: 1;
    display: flex;
    flex-direction: column;
  }
  .event-card .event-eyebrow {
    font-family: 'Special Elite', monospace;
    font-size: 0.72rem;
    letter-spacing: 0.3em;
    color: var(--red);
    text-transform: uppercase;
    margin-bottom: 0.6rem;
  }
  .event-card .event-title {
    font-family: 'Black Ops One', sans-serif;
    font-size: 1.3rem;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 0.6rem;
    line-height: 1.15;
  }
  .event-card .event-desc {
    color: var(--bone);
    font-size: 0.98rem;
    line-height: 1.5;
    margin-bottom: 1.2rem;
    flex: 1;
  }
  .event-card .event-cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-top: auto;
  }
  .event-card .btn {
    font-size: 0.72rem;
    padding: 0.85rem 1.3rem;
    flex: 1 1 auto;
    text-align: center;
  }

  /* ===== TEAMS HUB & SUBPAGES ===== */
  .teams-section {
    background:
      linear-gradient(180deg, var(--ink) 0%, #061021 100%);
    color: var(--white);
    padding: 7rem 2.5rem;
    position: relative;
  }
  .teams-hub-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
  }
  @media (max-width: 800px) {
    .teams-hub-grid { grid-template-columns: 1fr; }
  }
  .teams-hub-card {
    border: 2px solid var(--red);
    background: var(--navy);
    box-shadow: 10px 10px 0 var(--red-deep);
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    color: var(--white);
    display: block;
  }
  .teams-hub-card:hover {
    transform: translate(-4px, -4px);
    box-shadow: 14px 14px 0 var(--red-deep);
  }
  .teams-hub-card .hub-image {
    aspect-ratio: 16/9;
    overflow: hidden;
    position: relative;
    border-bottom: 2px solid var(--red);
  }
  .teams-hub-card .hub-image img {
    width: 100%; height: 100%; object-fit: cover; display: block;
    filter: contrast(1.05) brightness(0.85);
    transition: transform 0.5s ease;
  }
  .teams-hub-card:hover .hub-image img { transform: scale(1.04); }
  .teams-hub-card .hub-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(10,10,10,0.85) 100%);
  }
  .teams-hub-card .hub-tag {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--ink);
    border: 1px solid var(--red);
    color: var(--red);
    padding: 0.35rem 0.8rem;
    font-family: 'Black Ops One', sans-serif;
    font-size: 0.65rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    z-index: 2;
  }
  .teams-hub-card .hub-body {
    padding: 1.8rem 1.6rem 2rem;
  }
  .teams-hub-card .hub-title {
    font-family: 'Black Ops One', sans-serif;
    font-size: 2rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 0.5rem;
  }
  .teams-hub-card .hub-title .red { color: var(--red); }
  .teams-hub-card .hub-meta {
    font-family: 'Special Elite', monospace;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    color: var(--steel);
    text-transform: uppercase;
    margin-bottom: 1rem;
  }
  .teams-hub-card .hub-desc {
    color: var(--bone);
    line-height: 1.55;
    margin-bottom: 1.2rem;
  }
  .teams-hub-card .hub-arrow {
    font-family: 'Black Ops One', sans-serif;
    font-size: 0.85rem;
    color: var(--red);
    letter-spacing: 0.2em;
  }

  /* teams list (one team per row) */
  .team-list {
    display: flex;
    flex-direction: column;
    gap: 1.4rem;
    margin-top: 3rem;
  }
  .team-row {
    border: 2px solid rgba(244,241,234,0.12);
    border-left: 6px solid var(--red);
    background: var(--navy);
    padding: 1.8rem 2rem;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 1.5rem;
    align-items: center;
    transition: all 0.3s ease;
  }
  .team-row:hover {
    border-color: var(--red);
    transform: translateX(4px);
  }
  .team-row .team-num {
    font-family: 'Black Ops One', sans-serif;
    font-size: 2.2rem;
    color: var(--red);
    line-height: 1;
    min-width: 60px;
  }
  .team-row .team-info .callsign {
    font-family: 'Black Ops One', sans-serif;
    font-size: 1.4rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 0.3rem;
  }
  .team-row .team-info .coaches {
    font-family: 'Special Elite', monospace;
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    color: var(--bone);
    text-transform: uppercase;
  }
  .team-row .team-info .coaches strong { color: var(--red); }
  .team-row .team-status {
    font-family: 'Black Ops One', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    color: var(--white);
    background: var(--red);
    padding: 0.4rem 0.9rem;
    text-transform: uppercase;
  }
  @media (max-width: 700px) {
    .team-row { grid-template-columns: 1fr; text-align: left; }
    .team-row .team-status { justify-self: start; }
  }

  /* coming soon panel for girls */
  .coming-soon-panel {
    border: 2px dashed var(--red);
    background: rgba(11,25,50,0.4);
    padding: 4rem 2rem;
    text-align: center;
    margin-top: 3rem;
    position: relative;
  }
  .coming-soon-panel .cs-badge {
    font-family: 'Black Ops One', sans-serif;
    color: var(--red);
    letter-spacing: 0.4em;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
  }
  .coming-soon-panel h3 {
    font-family: 'Black Ops One', sans-serif;
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 1rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
  }
  .coming-soon-panel p {
    color: var(--bone);
    font-size: 1.05rem;
    max-width: 600px;
    margin: 0 auto 1.5rem;
    line-height: 1.55;
  }

  /* ===== TRAINING PAGE: two-up flyer layout ===== */
  .training-flyers {
    background:
      linear-gradient(180deg, #061021 0%, var(--navy) 100%);
    color: var(--white);
    padding: 7rem 2.5rem;
    position: relative;
    overflow: hidden;
  }
  .training-flyers::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 6px;
    background: repeating-linear-gradient(
      90deg,
      var(--red) 0 40px,
      var(--white) 40px 80px,
      var(--blue) 80px 120px,
      var(--white) 120px 160px
    );
  }
  .training-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-top: 3rem;
  }
  @media (max-width: 900px) {
    .training-grid { grid-template-columns: 1fr; gap: 4rem; }
  }

  /* ===== CALENDAR PAGE ===== */
  .calendar-section {
    background:
      linear-gradient(180deg, var(--ink) 0%, #061021 100%);
    color: var(--white);
    padding: 7rem 2.5rem;
    position: relative;
  }
  .calendar-frame {
    border: 2px solid var(--red);
    background: var(--ink);
    box-shadow: 12px 12px 0 var(--red-deep);
    margin-top: 3rem;
    overflow: hidden;
  }
  .calendar-frame iframe {
    width: 100%;
    min-height: 700px;
    border: 0;
    display: block;
    filter: invert(1) hue-rotate(180deg);
  }
  .calendar-placeholder {
    padding: 4rem 2rem;
    text-align: center;
    background: rgba(11,25,50,0.5);
  }
  .calendar-placeholder h3 {
    font-family: 'Black Ops One', sans-serif;
    color: var(--white);
    font-size: 1.6rem;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
    text-transform: uppercase;
  }
  .calendar-placeholder p {
    color: var(--bone);
    max-width: 600px;
    margin: 0 auto 1.5rem;
    line-height: 1.5;
  }
  .calendar-list {
    margin-top: 3rem;
    border-top: 1px dashed rgba(244,241,234,0.18);
  }
  .calendar-item {
    display: grid;
    grid-template-columns: 110px 1fr 150px;
    gap: 1.5rem;
    align-items: center;
    padding: 1.4rem 0;
    border-bottom: 1px dashed rgba(244,241,234,0.18);
  }
  .calendar-item .cal-date {
    font-family: 'Black Ops One', sans-serif;
    color: var(--red);
    text-align: center;
    line-height: 1;
  }
  .calendar-item .cal-date .month {
    display: block;
    font-size: 0.75rem;
    letter-spacing: 0.25em;
    color: var(--steel);
    margin-bottom: 0.3rem;
  }
  .calendar-item .cal-date .day {
    font-size: 2.2rem;
    color: var(--red);
  }
  .calendar-item .cal-info .name {
    font-family: 'Black Ops One', sans-serif;
    font-size: 1.1rem;
    letter-spacing: 0.03em;
    color: var(--white);
    text-transform: uppercase;
    margin-bottom: 0.3rem;
  }
  .calendar-item .cal-info .meta {
    font-family: 'Special Elite', monospace;
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    color: var(--bone);
    text-transform: uppercase;
  }
  .calendar-item .cal-cta {
    font-family: 'Black Ops One', sans-serif;
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    color: var(--red);
    text-decoration: none;
    border: 1px solid var(--red);
    padding: 0.6rem 1rem;
    text-transform: uppercase;
    transition: all 0.2s;
    width: 100%;
    text-align: center;
    box-sizing: border-box;
    display: inline-block;
  }
  .calendar-item .cal-cta:hover {
    background: var(--red);
    color: var(--white);
  }
  @media (max-width: 700px) {
    .calendar-item { grid-template-columns: 1fr; }
    .calendar-item .cal-cta { justify-self: start; }
  }

  /* ===== HOME PAGE TEASER CARDS (mindset & founder teasers) ===== */
  .home-teasers {
    background: var(--ink);
    padding: 7rem 2.5rem;
    position: relative;
    border-top: 1px solid rgba(244,241,234,0.06);
  }
  .teaser-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    align-items: center;
  }
  @media (max-width: 900px) {
    .teaser-grid { grid-template-columns: 1fr; }
  }
  .teaser-text .section-label { margin-bottom: 1.2rem; }
  .teaser-text h2 {
    font-family: 'Black Ops One', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
  }
  .teaser-text h2 .red { color: var(--red); }
  .teaser-text p {
    color: var(--bone);
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    line-height: 1.55;
  }
  .teaser-cta-row {
    display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 1.5rem;
  }
  .teaser-photo {
    position: relative;
    border: 2px solid var(--red);
    box-shadow: 10px 10px 0 var(--red-deep);
    overflow: hidden;
    aspect-ratio: 4/5;
  }
  .teaser-photo img {
    width: 100%; height: 100%; object-fit: cover; display: block;
    filter: contrast(1.05) brightness(0.95);
  }
  .teaser-photo .reticle { width: 22px; height: 22px; }

  /* ===== SIMPLER FOOTER (multi-page) ===== */
  footer.site-footer {
    background: var(--ink);
    color: var(--bone);
    padding: 5rem 2.5rem 2.5rem;
    position: relative;
    border-top: 6px solid var(--red);
  }
  .footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 3rem;
    max-width: 1300px;
    margin: 0 auto 3rem;
  }
  @media (max-width: 900px) {
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  }
  @media (max-width: 600px) {
    .footer-grid { grid-template-columns: 1fr; }
  }
  .footer-brand img {
    height: 64px;
    width: auto;
    display: block;
    margin-bottom: 1rem;
    border-radius: 4px;
  }
  .footer-brand .tag {
    font-family: 'Black Ops One', sans-serif;
    color: var(--red);
    letter-spacing: 0.25em;
    font-size: 0.78rem;
    text-transform: uppercase;
    margin-bottom: 1rem;
    display: block;
  }
  .footer-brand p {
    color: var(--bone);
    opacity: 0.8;
    font-size: 0.95rem;
    line-height: 1.55;
    max-width: 280px;
  }
  .footer-col h4 {
    font-family: 'Black Ops One', sans-serif;
    font-size: 0.78rem;
    letter-spacing: 0.3em;
    color: var(--red);
    text-transform: uppercase;
    margin-bottom: 1rem;
    text-align: center;
  }
  .footer-col {
    text-align: center;
  }
  .footer-col ul { list-style: none; padding: 0; margin: 0; }
  .footer-col ul li { margin-bottom: 0.6rem; }
  .footer-col ul a, .footer-col p a {
    color: var(--bone);
    text-decoration: none;
    font-family: 'Special Elite', monospace;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    transition: color 0.2s;
  }
  .footer-col ul a:hover, .footer-col p a:hover { color: var(--red); }
  .footer-col p {
    font-family: 'Special Elite', monospace;
    font-size: 0.85rem;
    color: var(--bone);
    line-height: 1.7;
    margin-bottom: 0.6rem;
  }
  .footer-bottom {
    border-top: 1px dashed rgba(244,241,234,0.18);
    padding-top: 2rem;
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
  }
  .footer-bottom .copyright {
    font-family: 'Special Elite', monospace;
    font-size: 0.78rem;
    letter-spacing: 0.2em;
    color: var(--steel);
    text-transform: uppercase;
  }
  .footer-bottom .copyright .red { color: var(--red); }
  .install-tip {
    display: none;
    width: 100%;
    margin-top: 0.5rem;
    padding: 0.75rem 1rem;
    border: 1px dashed rgba(244,241,234,0.18);
    border-radius: 2px;
    font-family: 'Special Elite', monospace;
    font-size: 0.78rem;
    letter-spacing: 0.05em;
    color: var(--steel);
    text-align: center;
    line-height: 1.5;
  }
  .install-tip strong {
    color: var(--white);
    font-weight: 400;
  }
  /* Show install tip only on touch devices that aren't already in standalone (installed) mode */
  @media (hover: none) and (pointer: coarse) {
    .install-tip { display: block; }
  }
  /* Hide when running as installed PWA (display-mode: standalone) */
  @media all and (display-mode: standalone) {
    .install-tip { display: none !important; }
  }
  .footer-socials {
    display: flex;
    gap: 0.6rem;
    justify-content: center;
  }

  /* ===== CONTACT PAGE GRID ===== */
  .contact-block-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 3rem;
  }
  @media (max-width: 800px) {
    .contact-block-grid { grid-template-columns: 1fr; }
  }
  .contact-info-card {
    background: var(--navy);
    border: 2px solid var(--red);
    padding: 2rem;
    box-shadow: 8px 8px 0 var(--red-deep);
  }
  .contact-info-card h3 {
    font-family: 'Black Ops One', sans-serif;
    color: var(--white);
    font-size: 1.3rem;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    padding-bottom: 0.8rem;
    border-bottom: 2px dashed rgba(244,241,234,0.18);
  }
  .contact-info-card .info-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 1rem;
    padding: 0.7rem 0;
    border-bottom: 1px dashed rgba(244,241,234,0.12);
    font-family: 'Special Elite', monospace;
    font-size: 0.85rem;
    letter-spacing: 0.12em;
  }
  .contact-info-card .info-row:last-child { border-bottom: 0; }
  .contact-info-card .info-row .k {
    color: var(--steel);
    text-transform: uppercase;
  }
  .contact-info-card .info-row .v {
    color: var(--white);
    text-align: right;
    word-break: break-word;
  }
  .contact-info-card .info-row .v a {
    color: var(--white);
    text-decoration: none;
    border-bottom: 1px dashed var(--red);
  }
  .contact-info-card .info-row .v a:hover { color: var(--red); }
  .contact-info-card .quote {
    margin-top: 2rem;
    padding: 1.2rem;
    border-left: 3px solid var(--red);
    font-family: 'Crimson Pro', serif;
    color: var(--bone);
    font-size: 1.05rem;
    font-style: italic;
  }

  /* ===== MISC CSS FIXES ===== */
  /* keep .nav-menu items vertical-centered now that we redefined them */
  .nav-menu { align-items: center; }

  /* fix any leftover desktop hiding of nav menu */
  @media (max-width: 720px) {
    nav ul.nav-menu { display: flex; }
  }

  /* ===== FLYER PLACEHOLDER (until real youth-camps flyer is supplied) ===== */
  .event-placeholder,
  .flyer-placeholder {
    position: relative;
    background:
      linear-gradient(135deg, rgba(0,40,104,0.4) 0%, rgba(10,10,10,0.85) 100%),
      var(--navy);
    background-image:
      linear-gradient(rgba(200,16,46,0.10) 1px, transparent 1px),
      linear-gradient(90deg, rgba(200,16,46,0.10) 1px, transparent 1px),
      linear-gradient(135deg, rgba(0,40,104,0.4) 0%, rgba(10,10,10,0.85) 100%);
    background-size: 40px 40px, 40px 40px, cover;
    border: 1px dashed var(--red);
    color: var(--white);
    padding: 3rem 2rem;
    text-align: center;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    overflow: hidden;
  }
  .flyer-placeholder { min-height: 480px; }
  .placeholder-stamp {
    font-family: 'Special Elite', 'Courier New', monospace;
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    color: var(--red);
    border: 1px solid var(--red);
    padding: 0.3rem 0.8rem;
    margin-bottom: 0.6rem;
    transform: rotate(-2deg);
    opacity: 0.9;
  }
  .placeholder-title {
    font-family: 'Black Ops One', 'Impact', sans-serif;
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    line-height: 1;
    letter-spacing: 0.04em;
    color: var(--white);
    text-shadow: 0 2px 12px rgba(0,0,0,0.7);
  }
  .placeholder-sub {
    font-family: 'Special Elite', 'Courier New', monospace;
    font-size: 0.85rem;
    letter-spacing: 0.2em;
    color: rgba(255,255,255,0.85);
  }
  .placeholder-divider {
    width: 60%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--red), transparent);
    margin: 0.4rem 0;
  }
  .placeholder-meta {
    font-family: 'Crimson Pro', Georgia, serif;
    font-size: 0.95rem;
    color: rgba(255,255,255,0.95);
    line-height: 1.5;
  }
  .placeholder-cta {
    font-family: 'Black Ops One', 'Impact', sans-serif;
    font-size: 0.85rem;
    letter-spacing: 0.25em;
    color: var(--red);
    margin-top: 0.4rem;
    padding: 0.4rem 1rem;
    border-top: 1px solid rgba(200,16,46,0.5);
    border-bottom: 1px solid rgba(200,16,46,0.5);
  }
  .event-placeholder .reticle,
  .flyer-placeholder .reticle {
    position: absolute;
    width: 24px;
    height: 24px;
    border: 2px solid var(--red);
    opacity: 0.7;
  }
  .event-placeholder .reticle.tl, .flyer-placeholder .reticle.tl { top:10px; left:10px; border-right:0; border-bottom:0; }
  .event-placeholder .reticle.tr, .flyer-placeholder .reticle.tr { top:10px; right:10px; border-left:0; border-bottom:0; }
  .event-placeholder .reticle.bl, .flyer-placeholder .reticle.bl { bottom:10px; left:10px; border-right:0; border-top:0; }
  .event-placeholder .reticle.br, .flyer-placeholder .reticle.br { bottom:10px; right:10px; border-left:0; border-top:0; }

  /* ===== GIRLS GALLERY ===== */
  .girls-gallery {
    padding: 6rem 0 3rem;
    background: var(--ink);
    position: relative;
  }
  .girls-gallery-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 1.5rem;
    margin-top: 2.5rem;
  }
  @media (max-width: 900px) {
    .girls-gallery-grid { grid-template-columns: 1fr; }
  }
  .girls-photo {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--red);
    background: var(--navy);
    aspect-ratio: 3 / 2;
  }
  .girls-photo-tall { aspect-ratio: 3 / 2; }
  .girls-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
  }
  .girls-photo:hover img { transform: scale(1.04); }
  .girls-photo-caption {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    background: linear-gradient(180deg, transparent, rgba(0,0,0,0.85));
    color: var(--white);
    padding: 2rem 1rem 0.8rem;
    font-family: 'Special Elite', monospace;
    font-size: 0.7rem;
    letter-spacing: 0.25em;
    text-align: center;
  }
  .girls-photo .reticle {
    position: absolute;
    width: 22px; height: 22px;
    border: 2px solid var(--red);
    opacity: 0.85;
    z-index: 2;
    pointer-events: none;
  }
  .girls-photo .reticle.tl { top:8px; left:8px; border-right:0; border-bottom:0; }
  .girls-photo .reticle.tr { top:8px; right:8px; border-left:0; border-bottom:0; }
  .girls-photo .reticle.bl { bottom:8px; left:8px; border-right:0; border-top:0; }
  .girls-photo .reticle.br { bottom:8px; right:8px; border-left:0; border-top:0; }

  /* ===== VALUES-ONLY VARIANT (3-year plan removed) ===== */
  .mission-grid-values-only {
    grid-template-columns: 1fr !important;
  }
  .mission-grid-values-only .values-stack {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
  @media (max-width: 900px) {
    .mission-grid-values-only .values-stack {
      grid-template-columns: 1fr;
    }
  }

  /* ===== DOSSIER COLLAGE (Film Room focal slot) ===== */
  .dossier-collage {
    max-width: 1100px;
    margin: 0 auto 4rem;
    background: linear-gradient(180deg, rgba(8,12,28,0.85), rgba(4,6,18,0.95));
    border: 2px solid var(--red);
    box-shadow: 6px 6px 0 rgba(200,16,46,0.35), 0 0 80px rgba(200,16,46,0.15) inset;
    position: relative;
  }
  .dossier-strip {
    background: var(--red);
    padding: 0.6rem 1.2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Black Ops One', sans-serif;
    color: #fff;
    font-size: 0.7rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
  }
  .dossier-strip.bottom {
    background: transparent;
    border-top: 1px dashed rgba(200,16,46,0.4);
    color: var(--steel);
  }
  .dossier-rec { display: flex; align-items: center; gap: 0.5rem; }
  .dossier-rec .dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: #fff;
    animation: pulse 1.4s ease-in-out infinite;
  }
  .dossier-board {
    position: relative;
    padding: 3.5rem 2.5rem;
    min-height: 580px;
    background-image:
      linear-gradient(rgba(200,16,46,0.04) 1px, transparent 1px),
      linear-gradient(90deg, rgba(200,16,46,0.04) 1px, transparent 1px);
    background-size: 40px 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 2.5rem;
    align-items: center;
    justify-items: center;
  }
  .dossier-collage .dossier-photo {
    position: relative;
    background: #fdfaf0;
    padding: 0.6rem 0.6rem 0;
    box-shadow:
      0 8px 22px rgba(0,0,0,0.55),
      0 2px 6px rgba(0,0,0,0.4);
    width: 88%;
    margin: 0;
    transition: transform 0.3s ease;
  }
  .dossier-collage .dossier-photo:hover {
    transform: scale(1.04) rotate(0deg) !important;
    z-index: 10;
    box-shadow: 0 14px 32px rgba(0,0,0,0.7), 0 0 0 2px var(--red);
  }
  .dossier-collage .dossier-photo img {
    width: 100%;
    height: 240px;
    object-fit: contain;
    background: #fdfaf0;
    display: block;
  }
  .dossier-collage .dossier-photo figcaption {
    padding: 0.5rem 0.4rem 0.7rem;
    font-family: 'Special Elite', 'Courier New', monospace;
    font-size: 0.65rem;
    color: #2c2818;
    line-height: 1.2;
  }
  .dossier-collage .cap-label {
    display: block;
    font-family: 'Black Ops One', sans-serif;
    letter-spacing: 0.2em;
    color: #c8102e;
    font-size: 0.6rem;
    margin-bottom: 0.15rem;
  }
  .dossier-collage .cap-value {
    display: block;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }
  /* Photo angles (slight rotations for "pinned" look) */
  .dossier-collage .dossier-p1 { transform: rotate(-3deg); }
  .dossier-collage .dossier-p2 { transform: rotate(2deg); }
  .dossier-collage .dossier-p3 { transform: rotate(-1.5deg); }
  .dossier-collage .dossier-p4 { transform: rotate(2.5deg); }
  /* Tape corners */
  .dossier-collage .tape {
    position: absolute;
    width: 56px;
    height: 18px;
    background: rgba(245,235,180,0.75);
    border: 1px solid rgba(180,160,90,0.3);
    box-shadow: 0 2px 4px rgba(0,0,0,0.3);
    pointer-events: none;
  }
  .dossier-collage .tape-tl { top: -7px; left: -12px; transform: rotate(-35deg); }
  .dossier-collage .tape-tr { top: -7px; right: -12px; transform: rotate(35deg); }
  .dossier-collage .tape-bl { bottom: 10px; left: -12px; transform: rotate(35deg); }
  .dossier-collage .tape-br { bottom: 10px; right: -12px; transform: rotate(-35deg); }
  /* Built Different stamp - centered overlay */
  .dossier-collage .dossier-stamp {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-8deg);
    background: rgba(200,16,46,0.92);
    border: 4px double rgba(255,255,255,0.85);
    color: #fff;
    padding: 1.2rem 2.2rem;
    font-family: 'Black Ops One', sans-serif;
    text-align: center;
    pointer-events: none;
    z-index: 5;
    box-shadow:
      0 0 0 2px rgba(200,16,46,0.9),
      0 8px 30px rgba(0,0,0,0.6),
      0 0 60px rgba(200,16,46,0.5);
    text-shadow: 0 2px 4px rgba(0,0,0,0.4);
  }
  .dossier-collage .stamp-text {
    display: block;
    font-size: 2.8rem;
    line-height: 0.95;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #fff;
  }
  .dossier-collage .stamp-line {
    display: block;
    width: 80%;
    margin: 0.4rem auto;
    border-top: 2px solid rgba(255,255,255,0.85);
  }
  .dossier-collage .stamp-sub {
    display: block;
    font-size: 0.6rem;
    letter-spacing: 0.35em;
    margin-top: 0.3rem;
    color: rgba(255,255,255,0.95);
  }

  @media (max-width: 760px) {
    .dossier-collage .dossier-board {
      grid-template-columns: 1fr;
      grid-template-rows: repeat(4, auto);
      padding: 2rem 1.2rem;
      gap: 2rem;
    }
    .dossier-collage .dossier-photo { width: 95%; }
    .dossier-collage .dossier-photo img { height: 220px; }
    .dossier-collage .stamp-text { font-size: 1.6rem; }
    .dossier-collage .dossier-stamp { padding: 0.7rem 1rem; }
  }

  /* ===== TESTIMONIALS SECTION ===== */
  .testimonials-section {
    padding: 5rem 0 5rem;
    background:
      radial-gradient(ellipse at top, rgba(200,16,46,0.06), transparent 60%),
      linear-gradient(180deg, #050a18 0%, #0a1428 100%);
    border-top: 1px solid rgba(200,16,46,0.2);
    border-bottom: 1px solid rgba(200,16,46,0.2);
    position: relative;
  }
  .testimonials-intro {
    color: var(--bone);
    font-family: 'Crimson Pro', serif;
    font-size: clamp(1rem, 1.4vw, 1.15rem);
    line-height: 1.5;
    max-width: 700px;
    margin: 0.5rem 0 3rem;
  }
  .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.6rem;
  }
  .testimonial-card {
    background: linear-gradient(180deg, rgba(10,16,32,0.95), rgba(4,8,20,0.95));
    border: 1px solid rgba(200,16,46,0.35);
    margin: 0;
    padding: 0;
    position: relative;
    transition: border-color 0.2s, transform 0.2s;
  }
  .testimonial-card:hover {
    border-color: var(--red);
    transform: translateY(-2px);
  }
  .testimonial-featured {
    grid-column: 1 / -1;
    background: linear-gradient(180deg, rgba(18,8,16,0.95), rgba(8,4,16,0.95));
    border: 2px solid var(--red);
    box-shadow: 0 0 60px rgba(200,16,46,0.15) inset;
  }
  .t-strip {
    background: rgba(200,16,46,0.15);
    border-bottom: 1px solid rgba(200,16,46,0.35);
    padding: 0.55rem 1.1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Black Ops One', sans-serif;
    color: var(--bone);
    font-size: 0.65rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
  }
  .testimonial-featured .t-strip {
    background: var(--red);
    color: #fff;
  }
  .t-rec { display: flex; align-items: center; gap: 0.45rem; }
  .t-rec .dot {
    width: 7px; height: 7px; border-radius: 50%;
    background: var(--red);
    animation: pulse 1.4s ease-in-out infinite;
  }
  .testimonial-featured .t-rec .dot { background: #fff; }
  .t-tag { color: var(--red); }
  .testimonial-featured .t-tag { color: #fff; }
  .testimonial-card .quote-bracket {
    font-family: 'Crimson Pro', serif;
    color: var(--red);
    font-size: 3.5rem;
    line-height: 0.5;
    padding: 1.8rem 1.6rem 0;
    font-weight: 700;
  }
  .testimonial-card .parent-quote {
    padding: 0.4rem 1.6rem 1.2rem;
    font-size: clamp(0.95rem, 1.4vw, 1.1rem);
  }
  .t-attribution {
    padding: 0 1.6rem 1.4rem;
    display: flex;
    align-items: center;
    gap: 0.9rem;
  }
  .t-attribution .attr-line {
    flex: 0 0 32px;
    height: 2px;
    background: var(--red);
  }
  .t-attribution .attr-text {
    font-family: 'Black Ops One', sans-serif;
    color: var(--white);
    font-size: 0.78rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
  }
  .t-attribution .attr-text strong { display: block; }
  .t-attribution .attr-text span {
    display: block;
    color: var(--red);
    font-size: 0.6rem;
    letter-spacing: 0.22em;
    margin-top: 0.2rem;
  }

  @media (max-width: 760px) {
    .testimonials-grid {
      grid-template-columns: 1fr;
    }
    .testimonials-section { padding: 3rem 0; }
  }
