
  :root {
    --navy:        #001f3f;
    --black:       #000000;
    --soft-navy:   #324a5f;
    --electric:    #2a6f97;
    --ice:         #d4e8f7;
    --charcoal:    #2a2a2a;
    --steel:       #6c6c6c;
    --pale:        #f5f5f5;
    --white:       #ffffff;

    --bg:   var(--pale);
    --ink:  var(--navy);
    --body: var(--charcoal);
    --mute: var(--steel);
    --line: rgba(0, 31, 63, 0.14);

    --max: 1320px;
    --pad: clamp(20px, 4vw, 56px);
    --easing: cubic-bezier(0.2, 0.7, 0.2, 1);
  }

  * { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
  body {
    font-family: 'Raleway', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg); color: var(--body);
    line-height: 1.55; overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
  }
  body.loading { overflow: hidden; height: 100vh; }
  img, svg { display: block; max-width: 100%; }
  a { color: inherit; text-decoration: none; }
  button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
  input { font: inherit; color: inherit; }

  .display { font-family: 'Bebas Neue', sans-serif; text-transform: uppercase; line-height: 0.86; }
  .editorial { font-family: 'Inter', Georgia, serif; font-style: italic; }
  .eyebrow {
    font-family: 'Raleway', sans-serif;
    font-size: 11px; font-weight: 800; letter-spacing: 0.26em;
    text-transform: uppercase; color: var(--ink);
    display: inline-flex; align-items: center; gap: 12px;
  }
  .eyebrow .dot { width: 8px; height: 8px; background: var(--electric); border-radius: 50%; }
  .eyebrow.invert { color: var(--white); }
  .eyebrow.invert .dot { background: var(--ice); }

  .wrap { max-width: var(--max); margin: 0 auto; padding-left: var(--pad); padding-right: var(--pad); }
  .section { padding: clamp(80px, 12vw, 160px) 0; position: relative; }

  .reveal { opacity: 0; transform: translateY(28px); transition: opacity 1s var(--easing), transform 1s var(--easing); }
  .reveal.in { opacity: 1; transform: none; }
  .reveal.delay-1 { transition-delay: 0.08s; }
  .reveal.delay-2 { transition-delay: 0.16s; }
  .reveal.delay-3 { transition-delay: 0.24s; }
  .reveal.delay-4 { transition-delay: 0.32s; }
  .reveal.delay-5 { transition-delay: 0.40s; }

  /* ============================================================
     BRIDGE OPENING LOADER
  ============================================================ */
  .bridge-loader {
    position: fixed; inset: 0; z-index: 200;
    background: var(--ice);
    display: flex; align-items: center; justify-content: center;
    overflow: hidden; transition: transform 0.9s var(--easing);
    will-change: transform;
  }
  .bridge-loader.lifted { transform: translateY(-100%); }
  .bridge-loader::before {
    content: ""; position: absolute; inset: 0;
    background: radial-gradient(ellipse at 50% 50%, rgba(42,111,151,0.12), transparent 55%);
  }
  .bridge-loader .bridge-svg { width: min(95vw, 1400px); height: auto; position: relative; z-index: 1; }
  .bridge-loader .stroke { stroke: #000; fill: none; stroke-width: 2; stroke-linecap: round; }
  .bridge-loader .deck   { stroke-width: 3; stroke-dasharray: 1700; stroke-dashoffset: 1700; animation: draw 1.2s var(--easing) 0.05s forwards; }
  .bridge-loader .wing   { stroke-width: 3;   stroke-dasharray: 1100; stroke-dashoffset: 1100; animation: draw 1.0s var(--easing) 0.4s forwards; }
  .bridge-loader .tower  { stroke-width: 3.5; stroke-dasharray: 920;  stroke-dashoffset: 920;  animation: draw 0.8s var(--easing) 0.7s forwards; }
  .bridge-loader .port   { stroke-width: 1.6; opacity: 0; animation: fadeIn 0.4s var(--easing) 1.4s forwards; }
  .bridge-loader .wire   { stroke-width: 1.1; opacity: 0.8; stroke-dasharray: 800; stroke-dashoffset: 800; animation: draw 0.7s var(--easing) 1.0s forwards; }
  .bridge-loader .anchor { fill: #000; opacity: 0; animation: pop 0.5s var(--easing) 1.6s forwards; }

  /* Circular bridge-mark variant of the loader */
  .bridge-loader .bridge-mark-svg { width: min(55vw, 380px); height: auto; position: relative; z-index: 1; }
  .bridge-loader .circle-mark { stroke: #000; fill: none; stroke-width: 3.5; stroke-linecap: round; stroke-dasharray: 640; stroke-dashoffset: 640; animation: draw 1.1s var(--easing) 0.05s forwards; }
  .bridge-loader .deck-mark   { stroke: #000; fill: none; stroke-width: 8; stroke-linecap: round; stroke-dasharray: 200; stroke-dashoffset: 200; animation: draw 0.5s var(--easing) 1.15s forwards; }
  .bridge-loader .tower-mark  { stroke: #000; fill: none; stroke-width: 8; stroke-linecap: round; stroke-linejoin: round; stroke-dasharray: 300; stroke-dashoffset: 300; animation: draw 0.6s var(--easing) 0.45s forwards; }
  .bridge-loader .cable-outer { stroke: #000; fill: none; stroke-width: 8; stroke-linecap: round; stroke-dasharray: 220; stroke-dashoffset: 220; animation: draw 0.6s var(--easing) 0.7s forwards; }
  .bridge-loader .cable-inner { stroke: #000; fill: none; stroke-width: 8; stroke-linecap: round; stroke-dasharray: 180; stroke-dashoffset: 180; animation: draw 0.6s var(--easing) 0.9s forwards; }
  .bridge-loader .port-mark   { stroke: #000; fill: none; stroke-width: 5; opacity: 0; animation: fadeIn 0.4s var(--easing) 1.4s forwards; }
  .bridge-loader .anchor-mark { fill: #000; opacity: 0; animation: pop 0.5s var(--easing) 1.6s forwards; }

  .bridge-loader .bridge-mark-img {
    width: min(42vw, 260px); height: auto; position: relative; z-index: 1;
    transform-origin: 50% 50%;
    animation: spinBuild 1.8s var(--easing) forwards;
  }
  @keyframes spinBuild {
    0%   { transform: rotate(0deg) scale(0.15); opacity: 0; }
    55%  { opacity: 1; }
    100% { transform: rotate(360deg) scale(1); opacity: 1; }
  }
  @keyframes draw { to { stroke-dashoffset: 0; } }
  @keyframes pop  { to { opacity: 1; } }
  .crossing-beam {
    position: absolute; top: 50%; left: -25%; width: 25%; height: 6px;
    background: linear-gradient(to right, transparent, var(--electric) 40%, var(--navy) 50%, var(--electric) 60%, transparent);
    box-shadow: 0 0 32px 8px rgba(42,111,151,0.35);
    transform: translateY(-50%); animation: cross 2.1s var(--easing) 0.2s forwards;
    filter: blur(0.5px);
  }
  @keyframes cross { 0% { left: -25%; } 100% { left: 110%; } }
  .crossing-label {
    position: absolute; bottom: 12vh; left: 50%; transform: translateX(-50%);
    font-family: 'Raleway'; font-size: 11px; letter-spacing: 0.42em; text-transform: uppercase;
    color: #000; font-weight: 800; opacity: 0;
    animation: fadeIn 0.6s var(--easing) 0.4s forwards, fadeOut 0.4s var(--easing) 2.1s forwards;
    text-align: center; white-space: nowrap;
  }
  .crossing-label .head { font-family: 'Bebas Neue'; font-size: 32px; letter-spacing: 0.04em; color: #000; display: block; margin-bottom: 12px; }
  @keyframes fadeIn  { from { opacity: 0; } to { opacity: 1; } }
  @keyframes fadeOut { from { opacity: 1; } to { opacity: 0; } }
  @media (prefers-reduced-motion: reduce) {
    .bridge-loader.lifted { opacity: 0; pointer-events: none; transform: none; }
    .bridge-loader .stroke, .bridge-loader .anchor, .bridge-loader .port, .crossing-beam, .crossing-label,
    .bridge-loader .circle-mark, .bridge-loader .deck-mark, .bridge-loader .tower-mark,
    .bridge-loader .cable-outer, .bridge-loader .cable-inner, .bridge-loader .port-mark, .bridge-loader .anchor-mark,
    .bridge-loader .bridge-mark-img
      { animation: none !important; }
    .bridge-loader .stroke, .bridge-loader .circle-mark, .bridge-loader .deck-mark, .bridge-loader .tower-mark,
    .bridge-loader .cable-outer, .bridge-loader .cable-inner { stroke-dashoffset: 0; }
    .bridge-loader .anchor, .bridge-loader .port, .bridge-loader .port-mark, .bridge-loader .anchor-mark { opacity: 1; }
    .bridge-loader .bridge-mark-img { opacity: 1; transform: none; }
  }

  /* ============================================================
     NAV
  ============================================================ */
  .nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 50;
    padding: 22px var(--pad);
    display: flex; align-items: center; justify-content: space-between;
    background: rgba(245, 245, 245, 0.92);
    backdrop-filter: blur(18px) saturate(140%);
    -webkit-backdrop-filter: blur(18px) saturate(140%);
    border-bottom: 1px solid var(--line);
    transition: background 0.4s var(--easing), backdrop-filter 0.4s var(--easing), border-color 0.4s var(--easing);
  }
  .nav.scrolled {
    background: rgba(245, 245, 245, 0.92);
    backdrop-filter: blur(18px) saturate(140%);
    -webkit-backdrop-filter: blur(18px) saturate(140%);
    border-bottom: 1px solid var(--line);
  }
  .brand { display: flex; align-items: center; gap: 14px; }
  .brand-mark { width: 42px; height: 42px; color: #000; flex-shrink: 0; transition: transform 0.4s var(--easing); }
  .brand:hover .brand-mark { transform: rotate(-6deg) scale(1.05); }
  .brand-word { font-family: 'Bebas Neue'; font-size: 19px; line-height: 1; letter-spacing: 0.04em; color: var(--ink); }
  .brand-word small {
    display: block; font-family: 'Raleway'; font-size: 9.5px; font-weight: 700;
    letter-spacing: 0.22em; text-transform: uppercase; color: var(--mute); margin-top: 5px;
  }
  .nav-links { display: flex; gap: 28px; align-items: center; }
  .nav-links a {
    font-family: 'Raleway'; font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
    color: var(--ink); transition: color 0.25s var(--easing);
  }
  .nav-links a:hover { color: var(--electric); }
  .nav-links a.donate {
    background: var(--ink); color: var(--white); padding: 12px 22px;
    font-weight: 800; letter-spacing: 0.1em; font-size: 12px;
    transition: background 0.25s var(--easing), transform 0.25s var(--easing);
  }
  .nav-links a.donate:hover { background: var(--electric); transform: translateY(-1px); }
  .menu-toggle { display: none; width: 28px; height: 18px; position: relative; }
  .menu-toggle span {
    position: absolute; left: 0; right: 0; height: 1.8px; background: var(--ink);
    transition: transform 0.3s var(--easing), opacity 0.3s var(--easing);
  }
  .menu-toggle span:nth-child(1) { top: 0; }
  .menu-toggle span:nth-child(2) { top: 50%; transform: translateY(-50%); }
  .menu-toggle span:nth-child(3) { bottom: 0; }
  .menu-toggle.open span:nth-child(1) {
    top: 50%; transform: translateY(-50%) rotate(45deg);
  }
  .menu-toggle.open span:nth-child(2) {
    opacity: 0;
  }
  .menu-toggle.open span:nth-child(3) {
    top: 50%; bottom: auto; transform: translateY(-50%) rotate(-45deg);
  }
  @media (max-width: 940px) {
    .menu-toggle { display: block; }
    .nav-links {
      position: fixed; top: 70px; right: 0; bottom: 0;
      width: min(86vw, 380px); background: var(--ink); color: var(--white);
      flex-direction: column; align-items: flex-start; justify-content: flex-start;
      padding: 40px 40px 40px; gap: 28px;
      transform: translateX(100%); transition: transform 0.45s var(--easing);
      height: 100vh; z-index: 100; overflow-x: auto; max-height: calc(100vh - 70px);
    }
    .nav-links.open { transform: none; flex-direction: column; align-items: flex-start; justify-content: flex-start; scroll-behavior: auto; }
    .nav-links a { color: var(--white); font-size: 22px; font-family: 'Bebas Neue'; letter-spacing: 0.04em; }
    .nav-links a.donate { background: var(--electric); }
  }

  /* ============================================================
     HERO
  ============================================================ */
  .hero {
    position: relative;
    min-height: 100vh; min-height: 100svh;
    background: var(--bg); color: var(--ink);
    overflow: hidden; isolation: isolate;
    padding: clamp(120px, 16vh, 180px) var(--pad) clamp(60px, 8vh, 100px);
    display: flex; align-items: center;
  }
  .hero-bg-img {
    position: absolute; inset: 0; z-index: 0;
  }
  .hero-bg-img img {
    width: 100%; height: 100%; object-fit: cover; object-position: center 30%;
    display: block;
  }
  .hero::before {
    content: ""; position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(
      105deg,
      rgba(240,246,252,0.92) 0%,
      rgba(240,246,252,0.80) 55%,
      rgba(240,246,252,0.45) 100%
    );
  }
  .hero-grid-bg {
    position: absolute; inset: 0; z-index: 2;
    background-image:
      linear-gradient(to right, rgba(0,31,63,0.05) 1px, transparent 1px),
      linear-gradient(to bottom, rgba(0,31,63,0.05) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black 60%, transparent 100%);
    -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black 60%, transparent 100%);
  }
  .hero-bridge {
    position: absolute; bottom: 0; left: 0; right: 0;
    width: 100%; height: clamp(280px, 45vh, 460px);
    z-index: 3; opacity: 0.7; pointer-events: none;
    object-fit: contain; object-position: bottom center;
    display: block;
  }

  .hero-content { position: relative; z-index: 3; width: 100%; max-width: 1240px; margin: 0 auto; }
  .hero-meta {
    display: flex; justify-content: space-between; align-items: center;
    margin-bottom: clamp(36px, 5vw, 64px); flex-wrap: wrap; gap: 16px;
  }
  .hero-pill {
    display: inline-flex; align-items: center; gap: 12px;
    background: var(--ink); color: var(--white); padding: 10px 18px;
    font-family: 'Raleway'; font-size: 11px; font-weight: 800; letter-spacing: 0.24em; text-transform: uppercase;
  }
  .hero-pill .pulse {
    width: 7px; height: 7px; border-radius: 50%; background: var(--electric);
    box-shadow: 0 0 0 0 rgba(42,111,151,0.7);
    animation: pulse 1.8s ease-out infinite;
  }
  @keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(42,111,151,0.55); }
    70% { box-shadow: 0 0 0 14px rgba(42,111,151,0); }
    100% { box-shadow: 0 0 0 0 rgba(42,111,151,0); }
  }
  .hero-loc {
    font-family: 'Raleway'; font-size: 11px; font-weight: 800; letter-spacing: 0.24em; text-transform: uppercase;
    color: var(--ink); display: inline-flex; align-items: center; gap: 10px;
  }
  .hero-loc::before { content: ""; width: 30px; height: 1.5px; background: var(--ink); }

  .hero h1 {
    font-family: 'Bebas Neue'; text-transform: uppercase;
    font-size: clamp(60px, 13vw, 220px); line-height: 0.84; letter-spacing: -0.005em;
    color: var(--ink);
  }
  .hero h1 .line { display: block; overflow: hidden; }
  .hero h1 .line span { display: inline-block; transform: translateY(110%); animation: rise 1s var(--easing) forwards; }
  .hero h1 .line:nth-child(1) span { animation-delay: 1.6s; }
  .hero h1 .line:nth-child(2) span { animation-delay: 1.75s; }
  .hero h1 .line:nth-child(3) span { animation-delay: 1.9s; }
  @keyframes rise { to { transform: translateY(0); } }
  .hero h1 .accent { color: var(--electric); }
  .hero h1 .hero-no { color: var(--navy); }
  .hero h1 .hero-hl { color: var(--electric); }
  .hero h1 .strike { position: relative; display: inline-block; }
  .hero h1 .strike::after {
    content: ""; position: absolute; left: -2%; right: -2%; top: 50%;
    height: 0.16em; background: var(--electric); transform: translateY(-50%) skewY(-2deg); z-index: -1;
  }

  .hero-foot {
    margin-top: clamp(40px, 6vw, 80px);
    display: grid; grid-template-columns: repeat(3, minmax(0, 300px));
    justify-content: center;
    gap: clamp(16px, 2vw, 24px); align-items: stretch;
    opacity: 0; transform: translateY(20px);
    animation: fadeUp 0.8s var(--easing) 2.1s forwards;
  }
  @keyframes fadeUp { to { opacity: 1; transform: none; } }
  @media (max-width: 1000px) {
    .hero-foot { grid-template-columns: repeat(2, minmax(0, 300px)); }
  }
  @media (max-width: 560px) {
    .hero-foot { grid-template-columns: minmax(0, 340px); }
  }
  .lede-card {
    background: var(--ink); color: var(--white);
    padding: clamp(22px, 2.6vw, 32px);
    display: flex; flex-direction: column; justify-content: space-between;
    gap: 22px; position: relative; overflow: hidden;
  }
  .lede-card::before {
    content: ""; position: absolute;
    width: 130px; height: 130px; background: var(--electric);
    top: -40px; right: -40px; transform: rotate(45deg); opacity: 0.95;
  }
  .lede-card p {
    font-size: clamp(15px, 1.45vw, 17px); line-height: 1.5;
    color: var(--white); position: relative; z-index: 1; font-weight: 500;
  }
  .lede-card p strong { font-weight: 800; color: var(--ice); }
  .lede-card .cta {
    display: inline-flex; align-items: center; gap: 14px;
    background: var(--electric); color: var(--white);
    padding: 16px 24px;
    font-weight: 800; font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
    align-self: flex-start;
    transition: transform 0.3s var(--easing), background 0.3s var(--easing);
    z-index: 1; position: relative;
  }
  .lede-card .cta:hover { background: var(--white); color: var(--ink); transform: translateY(-2px); }
  .arrow { width: 22px; height: 1.5px; background: currentColor; position: relative; display: inline-block; }
  .arrow::after {
    content: ""; position: absolute; right: 0; top: 50%;
    width: 8px; height: 8px;
    border-top: 1.5px solid currentColor; border-right: 1.5px solid currentColor;
    transform: translateY(-50%) rotate(45deg);
  }

  .stat-card {
    padding: clamp(20px, 2.4vw, 28px);
    display: flex; flex-direction: column; justify-content: space-between;
    gap: 18px; position: relative; overflow: hidden;
    transition: transform 0.4s var(--easing);
    border: 1px solid var(--line);
  }
  .stat-card:hover { transform: translateY(-6px); }
  .stat-card.s1 { background: var(--white); color: var(--ink); }
  .stat-card.s2 { background: var(--electric); color: var(--white); border-color: transparent; }
  .stat-card.s3 { background: var(--ice); color: var(--ink); border-color: transparent; }
  .stat-card.s4 { background: var(--soft-navy); color: var(--white); border-color: transparent; }
  .stat-card .num {
    font-family: 'Bebas Neue';
    font-size: clamp(54px, 6vw, 88px); line-height: 0.85;
  }
  .stat-card .num small { font-size: 0.42em; letter-spacing: 0.02em; margin-left: 4px; opacity: 0.85; }
  .stat-card .label {
    font-family: 'Raleway'; font-size: 12px; line-height: 1.45; font-weight: 800;
    text-transform: uppercase; letter-spacing: 0.12em;
  }
  .stat-card .tag {
    position: absolute; top: 14px; right: 14px;
    font-family: 'Raleway'; font-size: 9.5px; font-weight: 800; letter-spacing: 0.2em; text-transform: uppercase;
    background: var(--ink); color: var(--white); padding: 5px 10px;
  }
  .stat-card.s2 .tag, .stat-card.s4 .tag { background: var(--white); color: var(--ink); }
  .stat-card.s3 .tag { background: var(--ink); color: var(--white); }

  /* ============================================================
     SECTION HEADING (shared)
  ============================================================ */
  .sec-head {
    display: grid; grid-template-columns: 1fr 2fr; gap: 60px;
    align-items: end;
    padding-bottom: 56px; border-bottom: 2px solid var(--line);
  }
  @media (max-width: 820px) { .sec-head { grid-template-columns: 1fr; gap: 24px; padding-bottom: 36px; } }
  .sec-head.invert { border-bottom-color: rgba(255,255,255,0.18); }
  .sec-head .sec-num { font-family: 'Bebas Neue'; font-size: clamp(20px, 2vw, 28px); color: var(--mute); }
  .sec-head .sec-title { font-family: 'Bebas Neue'; text-transform: uppercase; font-size: clamp(40px, 6vw, 88px); line-height: 0.92; color: var(--ink); }
  .sec-head.invert .sec-title { color: var(--white); }
  .sec-head.invert .sec-num { color: rgba(255,255,255,0.55); }
  .sec-title .em-electric { color: var(--electric); }
  .sec-title .em-ice { color: var(--ice); }
  .sec-title .italic { font-family: 'Inter'; font-weight: 500; font-style: italic; letter-spacing: -0.03em; padding-left: 0.12em; }

  /* ============================================================
     MARQUEE
  ============================================================ */
  .marquee { overflow: hidden; padding: 22px 0; background: var(--ink); color: var(--white); border-top: 4px solid var(--electric); }
  .marquee-track { display: flex; gap: 56px; white-space: nowrap; animation: scroll 38s linear infinite; will-change: transform; }
  .marquee-item { font-family: 'Bebas Neue'; font-size: clamp(36px, 6vw, 92px); letter-spacing: 0.01em; line-height: 1; display: flex; align-items: center; gap: 56px; }
  .marquee-item.solid { color: var(--white); }
  .marquee-item.outline { color: transparent; -webkit-text-stroke: 1.5px var(--white); }
  .marquee-item.elec { color: var(--electric); }
  .marquee-item.ice { color: var(--ice); }
  .marquee-item .star {
    width: 26px; height: 26px; flex-shrink: 0; background: currentColor;
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
  }
  @keyframes scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

  /* ============================================================
     MISSION
  ============================================================ */
  .mission { background: var(--bg); }
  .mission-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(40px, 8vw, 120px); margin-top: 80px; }
  @media (max-width: 900px) { .mission-grid { grid-template-columns: 1fr; } }
  .mission-quote {
    font-family: 'Inter'; font-style: italic; font-weight: 400;
    font-size: clamp(28px, 3.6vw, 52px); line-height: 1.08; letter-spacing: -0.02em; color: var(--ink);
  }
  .mission-quote .pull { color: var(--electric); }
  .mission-quote .punc { color: var(--electric); font-size: 1.2em; line-height: 0; vertical-align: -0.15em; }
  .mission-body p { font-size: 17px; line-height: 1.7; color: var(--charcoal); margin-bottom: 22px; font-weight: 500; }
  .mission-tags { margin-top: 36px; display: flex; flex-wrap: wrap; gap: 10px; }
  .tag {
    font-family: 'Raleway'; font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
    padding: 9px 14px; color: var(--ink); font-weight: 800;
    background: var(--white); border: 1px solid var(--line);
  }
  .tag.fill-navy     { background: var(--ink);       color: var(--white); border-color: transparent; }
  .tag.fill-electric { background: var(--electric);  color: var(--white); border-color: transparent; }
  .tag.fill-ice      { background: var(--ice);       color: var(--ink);   border-color: transparent; }
  .tag.fill-soft     { background: var(--soft-navy); color: var(--white); border-color: transparent; }

  /* ============================================================
     MLK QUOTE BAND
  ============================================================ */
  .quote-band { background: var(--ink); color: var(--white); padding: clamp(80px, 10vw, 140px) 0; position: relative; overflow: hidden; }
  .quote-band::before {
    content: ""; position: absolute; inset: 0;
    background: radial-gradient(ellipse at 80% 30%, rgba(42,111,151,0.45), transparent 55%), radial-gradient(ellipse at 10% 90%, rgba(212,232,247,0.12), transparent 55%);
  }
  .quote-band-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 100px); align-items: center; }
  @media (max-width: 900px) { .quote-band-inner { grid-template-columns: 1fr; gap: 32px; } }
  .quote-band .lead {
    font-family: 'Inter'; font-style: italic; font-weight: 400;
    font-size: clamp(28px, 3.6vw, 52px); line-height: 1.12; color: var(--white); letter-spacing: -0.01em;
  }
  .quote-band .lead .accent { color: var(--ice); }
  .quote-band .lead .punc { color: var(--electric); font-size: 1.4em; line-height: 0; vertical-align: -0.18em; }
  .quote-band .attr { font-family: 'Raleway'; font-size: 12px; font-weight: 800; letter-spacing: 0.22em; text-transform: uppercase; color: var(--ice); margin-top: 28px; display: inline-flex; align-items: center; gap: 14px; }
  .quote-band .attr::before { content: ""; width: 36px; height: 1.5px; background: var(--ice); }
  .quote-band-second { border-left: 2px solid rgba(255,255,255,0.18); padding-left: clamp(24px, 3vw, 48px); }
  @media (max-width: 900px) { .quote-band-second { border-left: 0; padding-left: 0; border-top: 2px solid rgba(255,255,255,0.18); padding-top: 32px; } }
  .quote-band-second p { font-family: 'Inter'; font-style: italic; font-size: clamp(20px, 2.2vw, 26px); line-height: 1.4; color: var(--white); margin-bottom: 18px; }
  .quote-band-second .step { font-family: 'Raleway'; font-size: 12px; font-weight: 800; letter-spacing: 0.22em; text-transform: uppercase; color: var(--ice); }

  /* Sponsorship tier display */
  .tier-name-display { font-family: 'Inter'; font-style: italic; font-weight: 400; font-size: clamp(28px, 3.6vw, 52px); line-height: 1.12; color: var(--ice); letter-spacing: -0.01em; }
  .tier-amount-display { font-family: 'Bebas Neue'; font-size: clamp(28px, 3.6vw, 52px); line-height: 1; color: white; text-align: center; font-weight: 900; letter-spacing: 0.02em; }
  .tier-amount-display .pre { font-size: 0.5em; vertical-align: 0.1em; margin-right: 8px; }
  .tier-benefits-display { background: rgba(255,255,255,0.08); padding: 32px; border-radius: 6px; border-left: 4px solid var(--electric); }
  .tier-benefits-display h3 { font-family: 'Raleway'; font-weight: 700; color: var(--white); }
  .tier-benefits-display li { color: rgba(255,255,255,0.95); }

  /* ============================================================
     IMPACT — animated counters
  ============================================================ */
  .impact { background: var(--bg); }
  .impact-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 80px; }
  @media (max-width: 820px) { .impact-grid { grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 480px) { .impact-grid { grid-template-columns: 1fr; } }
  .impact-cell {
    padding: clamp(28px, 3.5vw, 44px);
    position: relative; transition: transform 0.4s var(--easing);
    display: flex; flex-direction: column; gap: 18px; min-height: 280px;
    border: 1px solid var(--line); background: var(--white); color: var(--ink);
  }
  .impact-cell:hover { transform: translateY(-6px); }
  .impact-cell.c1 { background: var(--ink); color: var(--white); border-color: transparent; }
  .impact-cell.c2 { background: var(--electric); color: var(--white); border-color: transparent; }
  .impact-cell.c3 { background: var(--ice); color: var(--ink); border-color: transparent; }
  .impact-cell.c4 { background: var(--soft-navy); color: var(--white); border-color: transparent; }
  .impact-num { font-family: 'Bebas Neue'; font-size: clamp(64px, 8vw, 128px); line-height: 0.85; }
  .impact-num .unit { font-size: 0.4em; margin-left: 6px; vertical-align: 0.55em; opacity: 0.85; }
  .impact-label { font-family: 'Raleway'; font-size: 13px; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 800; }
  .impact-note { font-size: 14px; line-height: 1.55; opacity: 0.86; font-weight: 500; }

  /* ============================================================
     PROGRAMS — interactive tabs
  ============================================================ */
  .programs { background: var(--white); border-top: 2px solid var(--line); }
  .program-tabs { margin-top: 60px; }
  .tab-buttons {
    display: flex; gap: 0; flex-wrap: wrap;
    border-bottom: 2px solid var(--line);
    margin-bottom: 0;
  }
  .tab-btn {
    padding: 18px 24px;
    font-family: 'Bebas Neue'; font-size: clamp(20px, 2.2vw, 28px);
    letter-spacing: 0.04em; color: var(--mute);
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
    transition: color 0.3s var(--easing), border-color 0.3s var(--easing), background 0.3s var(--easing);
    position: relative;
  }
  .tab-btn:hover { color: var(--ink); }
  .tab-btn.active { color: var(--ink); border-bottom-color: var(--electric); }
  .tab-btn .num {
    font-family: 'Raleway'; font-size: 10px; font-weight: 800; letter-spacing: 0.24em;
    color: var(--mute); display: block; margin-bottom: 6px;
  }
  .tab-btn.active .num { color: var(--electric); }

  .tab-panels { padding: clamp(40px, 5vw, 64px) 0; }
  .tab-panel { display: none; opacity: 0; transform: translateY(12px); transition: opacity 0.5s var(--easing), transform 0.5s var(--easing); }
  .tab-panel.active { display: grid; grid-template-columns: 1.5fr 1fr; gap: clamp(40px, 5vw, 80px); align-items: center; opacity: 1; transform: none; }
  @media (max-width: 900px) { .tab-panel.active { grid-template-columns: 1fr; } }
  .tab-content h3 { font-family: 'Bebas Neue'; font-size: clamp(40px, 5vw, 72px); line-height: 0.95; color: var(--ink); margin-bottom: 20px; letter-spacing: 0.005em; }
  .tab-content h3 .accent { color: var(--electric); }
  .tab-content p { font-size: 17px; line-height: 1.7; color: var(--charcoal); margin-bottom: 20px; font-weight: 500; max-width: 560px; }
  .tab-stats {
    display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
    margin-top: 28px; padding-top: 28px;
    border-top: 1px solid var(--line);
  }
  .tab-stat .v { font-family: 'Bebas Neue'; font-size: 48px; line-height: 1; color: var(--electric); }
  .tab-stat .l { font-family: 'Raleway'; font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; font-weight: 800; color: var(--mute); margin-top: 8px; }
  .tab-content .tab-cta {
    display: inline-flex; align-items: center; gap: 14px;
    margin-top: 28px;
    background: var(--ink); color: var(--white);
    padding: 16px 24px; font-family: 'Raleway';
    font-weight: 800; font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
    transition: background 0.3s var(--easing), transform 0.3s var(--easing);
  }
  .tab-content .tab-cta:hover { background: var(--electric); transform: translateY(-2px); }

  .tab-visual {
    aspect-ratio: 4/5; position: relative; overflow: hidden;
    background: var(--ink); border: 1px solid var(--line);
  }
  .tab-visual::before {
    content: ""; position: absolute; inset: 0;
    background:
      radial-gradient(ellipse at 50% 50%, rgba(42,111,151,0.5), transparent 55%),
      linear-gradient(180deg, var(--soft-navy) 0%, var(--ink) 100%);
  }
  .tab-visual svg { position: absolute; inset: 8% 12%; width: 76%; height: 84%; }
  .tab-visual img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
  .tab-visual::before { z-index: 1; opacity: 0.45; }
  .tab-visual .badge { z-index: 2; }
  .tab-visual .badge {
    position: absolute; bottom: 20px; left: 20px;
    font-family: 'Raleway'; font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
    color: var(--ice); font-weight: 800;
    background: rgba(0,31,63,0.7); padding: 8px 14px; backdrop-filter: blur(8px);
  }

  /* ============================================================
     YOUTUBE SERIES
  ============================================================ */
  .series { background: var(--ink); color: var(--white); }
  .series .sec-head { border-bottom-color: rgba(255,255,255,0.18); }
  .series .sec-num { color: rgba(255,255,255,0.55); }
  .series .sec-title { color: var(--white); }

  .series-feature {
    margin-top: 60px;
    display: grid; grid-template-columns: 1.4fr 1fr; gap: clamp(28px, 4vw, 60px); align-items: center;
  }
  @media (max-width: 900px) { .series-feature { grid-template-columns: 1fr; } }
  .feature-thumb {
    position: relative; aspect-ratio: 16/9; overflow: hidden;
    background: var(--soft-navy); display: block;
    transition: transform 0.4s var(--easing);
  }
  .feature-thumb:hover { transform: translateY(-4px); }
  .feature-thumb::before {
    content: ""; position: absolute; inset: 0;
    background:
      radial-gradient(ellipse at 50% 50%, rgba(42,111,151,0.45), transparent 60%),
      linear-gradient(135deg, var(--soft-navy) 0%, var(--navy) 100%);
  }
  .feature-thumb::after {
    content: ""; position: absolute; inset: 0;
    background-image: repeating-linear-gradient(90deg, transparent 0, transparent 60px, rgba(255,255,255,0.04) 60px, rgba(255,255,255,0.04) 61px);
  }
  .play-btn {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    width: 96px; height: 96px; border-radius: 50%;
    background: var(--electric); display: grid; place-items: center;
    transition: transform 0.3s var(--easing), background 0.3s var(--easing);
    z-index: 2;
  }
  .feature-thumb:hover .play-btn { transform: translate(-50%, -50%) scale(1.08); background: var(--ice); }
  .play-btn span {
    width: 0; height: 0; margin-left: 6px;
    border-left: 22px solid var(--white);
    border-top: 14px solid transparent;
    border-bottom: 14px solid transparent;
  }
  .feature-thumb:hover .play-btn span { border-left-color: var(--ink); }
  .feature-overlay {
    position: absolute; left: 24px; bottom: 24px; right: 24px; z-index: 2;
    display: flex; justify-content: space-between; align-items: end; gap: 16px; flex-wrap: wrap;
  }
  .feature-tag {
    font-family: 'Raleway'; font-size: 10px; font-weight: 800; letter-spacing: 0.24em; text-transform: uppercase;
    background: var(--ice); color: var(--ink); padding: 6px 12px;
  }
  .feature-overlay h3 {
    font-family: 'Bebas Neue'; font-size: clamp(22px, 2.6vw, 36px); line-height: 1; color: var(--white); letter-spacing: 0.02em;
  }
  .feature-meta p { font-size: 16px; line-height: 1.65; color: rgba(255,255,255,0.84); margin-bottom: 24px; font-weight: 500; }
  .series-cta {
    display: inline-flex; align-items: center; gap: 14px;
    background: var(--electric); color: var(--white);
    padding: 16px 24px; font-family: 'Raleway';
    font-weight: 800; font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
    transition: background 0.3s var(--easing), transform 0.3s var(--easing);
  }
  .series-cta:hover { background: var(--ice); color: var(--ink); transform: translateY(-2px); }

  .series-grid {
    margin-top: 48px;
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px;
  }
  @media (max-width: 1000px) { .series-grid { grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 540px)  { .series-grid { grid-template-columns: 1fr; } }
  .episode {
    position: relative; display: block; overflow: hidden;
    background: var(--soft-navy);
    transition: transform 0.4s var(--easing);
  }
  .episode:hover { transform: translateY(-6px); }
  .ep-thumb {
    position: relative; aspect-ratio: 16/9; overflow: hidden;
  }
  .ep-thumb::before {
    content: ""; position: absolute; inset: 0;
    background:
      radial-gradient(ellipse at 50% 50%, rgba(42,111,151,0.5), transparent 60%),
      linear-gradient(135deg, var(--soft-navy) 0%, var(--navy) 100%);
  }
  .ep-thumb::after {
    content: ""; position: absolute; inset: 0;
    background-image: repeating-linear-gradient(45deg, transparent 0, transparent 30px, rgba(255,255,255,0.04) 30px, rgba(255,255,255,0.04) 31px);
  }
  .ep-num {
    position: absolute; top: 14px; left: 14px;
    font-family: 'Bebas Neue'; font-size: 22px; color: var(--ice); letter-spacing: 0.04em; z-index: 2;
  }
  .ep-thumb .play-btn-sm {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    width: 56px; height: 56px; border-radius: 50%;
    background: var(--electric); display: grid; place-items: center;
    transition: transform 0.3s var(--easing), background 0.3s var(--easing);
    z-index: 2;
  }
  .episode:hover .play-btn-sm { transform: translate(-50%, -50%) scale(1.1); background: var(--ice); }
  .play-btn-sm span {
    width: 0; height: 0; margin-left: 4px;
    border-left: 14px solid var(--white);
    border-top: 9px solid transparent;
    border-bottom: 9px solid transparent;
  }
  .episode:hover .play-btn-sm span { border-left-color: var(--ink); }
  .ep-meta {
    padding: 18px;
    display: flex; flex-direction: column; gap: 6px;
  }
  .ep-meta .ep-tag {
    font-family: 'Raleway'; font-size: 10px; font-weight: 800; letter-spacing: 0.22em; text-transform: uppercase;
    color: var(--ice);
  }
  .ep-meta h4 {
    font-family: 'Bebas Neue'; font-size: 22px; line-height: 1.05; color: var(--white); letter-spacing: 0.02em;
  }

  /* ============================================================
     SUCCESSES / MILESTONES — interactive timeline
  ============================================================ */
  .successes { background: var(--bg); }
  .timeline-controls {
    display: flex; gap: 6px; margin-top: 60px; flex-wrap: wrap;
    border-bottom: 2px solid var(--line); padding-bottom: 0;
  }
  .year-btn {
    padding: 16px 22px;
    font-family: 'Bebas Neue'; font-size: 26px; letter-spacing: 0.04em;
    color: var(--mute);
    border-bottom: 3px solid transparent; margin-bottom: -2px;
    transition: color 0.3s var(--easing), border-color 0.3s var(--easing);
    position: relative;
  }
  .year-btn:hover { color: var(--ink); }
  .year-btn.active { color: var(--ink); border-bottom-color: var(--electric); }
  .year-btn .y-tag { display: block; font-family: 'Raleway'; font-size: 10px; font-weight: 800; letter-spacing: 0.22em; color: var(--mute); margin-bottom: 4px; }
  .year-btn.active .y-tag { color: var(--electric); }

  .timeline-stage {
    margin-top: 48px;
    display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 64px); align-items: center;
    min-height: 320px;
    position: relative;
  }
  @media (max-width: 900px) { .timeline-stage { grid-template-columns: 1fr; } }
  .ms-panel { display: none; opacity: 0; transition: opacity 0.4s var(--easing); }
  .ms-panel.active { display: contents; opacity: 1; }
  .ms-text h3 {
    font-family: 'Bebas Neue'; font-size: clamp(36px, 5vw, 64px); line-height: 0.95; color: var(--ink);
    letter-spacing: 0.005em; margin-bottom: 20px;
  }
  .ms-text h3 .accent { color: var(--electric); }
  .ms-text p { font-size: 17px; line-height: 1.7; color: var(--charcoal); font-weight: 500; max-width: 540px; margin-bottom: 16px; }
  .ms-text .ms-list { list-style: none; max-width: 540px; margin: 0 0 16px; padding: 0; display: flex; flex-direction: column; gap: 10px; }
  .ms-text .ms-list li { font-size: 17px; line-height: 1.5; color: var(--charcoal); font-weight: 500; padding-left: 22px; position: relative; }
  .ms-text .ms-list li::before { content: ""; position: absolute; left: 0; top: 9px; width: 8px; height: 8px; border-radius: 50%; background: var(--electric); }
  .ms-text .ms-cat {
    font-family: 'Raleway'; font-size: 11px; font-weight: 800; letter-spacing: 0.22em; text-transform: uppercase;
    color: var(--electric); margin-bottom: 16px; display: inline-flex; align-items: center; gap: 12px;
  }
  .ms-text .ms-cat::before { content: ""; width: 30px; height: 1.5px; background: currentColor; }

  .ms-visual {
    aspect-ratio: 4/3; position: relative; overflow: hidden;
    background: var(--ink); display: grid; place-items: center;
  }
  .ms-visual::before {
    content: ""; position: absolute; inset: 0;
    background:
      radial-gradient(ellipse at 50% 60%, rgba(42,111,151,0.5), transparent 55%),
      linear-gradient(180deg, var(--soft-navy) 0%, var(--ink) 100%);
  }
  .ms-visual .big-year {
    font-family: 'Bebas Neue';
    font-size: clamp(96px, 14vw, 200px); line-height: 0.9;
    color: var(--ice); letter-spacing: -0.005em;
    position: relative; z-index: 1;
  }
  .ms-visual .ms-badge {
    position: absolute; top: 20px; left: 20px;
    font-family: 'Raleway'; font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
    color: var(--ice); font-weight: 800;
    background: rgba(0,31,63,0.7); padding: 8px 14px; backdrop-filter: blur(8px);
    z-index: 2;
  }

  /* ============================================================
     ABOUT US
  ============================================================ */
  .about { background: var(--white); border-top: 2px solid var(--line); }
  .about-grid {
    margin-top: 60px;
    display: grid; grid-template-columns: 1.4fr 1fr; gap: clamp(40px, 6vw, 80px);
  }
  @media (max-width: 900px) { .about-grid { grid-template-columns: 1fr; } }
  .about-story .lead-statement {
    font-family: 'Inter'; font-style: italic; font-weight: 400;
    font-size: clamp(24px, 2.8vw, 38px); line-height: 1.2; letter-spacing: -0.015em;
    color: var(--ink); margin-bottom: 28px;
  }
  .about-story p { font-size: 17px; line-height: 1.7; color: var(--charcoal); font-weight: 500; margin-bottom: 22px; }
  .values-block { background: var(--bg); padding: clamp(28px, 3vw, 40px); border-left: 4px solid var(--electric); }
  .values-block h4 {
    font-family: 'Bebas Neue'; font-size: 28px; letter-spacing: 0.02em; line-height: 1;
    color: var(--ink); margin-bottom: 24px;
  }
  .values { list-style: none; display: flex; flex-direction: column; gap: 18px; }
  .values li { display: grid; grid-template-columns: 36px 1fr; gap: 16px; align-items: start; }
  .values li .v-num {
    font-family: 'Bebas Neue'; font-size: 22px; color: var(--electric); letter-spacing: 0.02em;
  }
  .values li strong {
    display: block;
    font-family: 'Raleway'; font-weight: 800; font-size: 14px; color: var(--ink);
    margin-bottom: 4px; letter-spacing: 0.04em;
  }
  .values li > div span,
  .values li div {
    font-family: 'Raleway'; font-size: 13.5px; line-height: 1.5; color: var(--charcoal); font-weight: 500;
  }

  .team-head { margin-top: clamp(60px, 8vw, 100px); margin-bottom: 28px; }
  .coaches-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(20px, 3vw, 36px); }
  @media (max-width: 720px) { .coaches-grid { grid-template-columns: 1fr; } }
  .coach-tile {
    background: var(--bg); padding: clamp(24px, 3vw, 36px);
    border-left: 4px solid var(--electric);
    display: grid; gap: 12px;
  }
  .coach-tile .role {
    font-family: 'Raleway'; font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
    color: var(--electric); font-weight: 800;
  }
  .coach-tile .name {
    font-family: 'Bebas Neue'; font-size: clamp(36px, 4vw, 50px); line-height: 0.95;
    color: var(--ink); letter-spacing: 0.02em;
  }
  .coach-tile .bio {
    font-family: 'Raleway'; font-size: 15px; line-height: 1.65; color: var(--charcoal); font-weight: 500;
  }

  .join-coach {
    margin-top: clamp(40px, 5vw, 60px); padding: clamp(28px, 3vw, 40px);
    background: var(--ink); color: var(--white);
    display: flex; justify-content: space-between; align-items: center; gap: 24px; flex-wrap: wrap;
  }
  .join-coach h4 { font-family: 'Bebas Neue'; font-size: clamp(28px, 3vw, 40px); letter-spacing: 0.02em; line-height: 1; margin-bottom: 8px; }
  .join-coach p { font-size: 15px; line-height: 1.6; color: rgba(255,255,255,0.78); font-weight: 500; max-width: 540px; }
  .join-coach a {
    display: inline-flex; align-items: center; gap: 14px;
    background: var(--electric); color: var(--white);
    padding: 16px 24px;
    font-family: 'Raleway'; font-weight: 800; font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
    transition: background 0.3s var(--easing), transform 0.3s var(--easing);
  }
  .join-coach a:hover { background: var(--ice); color: var(--ink); transform: translateY(-2px); }

  /* ============================================================
     GIVING — interactive donation calculator
  ============================================================ */
  .giving { background: var(--ink); color: var(--white); position: relative; overflow: hidden; }
  .giving::before {
    content: ""; position: absolute; inset: 0;
    background: radial-gradient(ellipse at 80% 30%, rgba(42,111,151,0.4), transparent 55%);
  }

  .calculator {
    margin-top: 60px; position: relative; z-index: 1;
    display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(40px, 5vw, 70px);
    align-items: stretch;
    background: var(--soft-navy);
    padding: clamp(32px, 4vw, 56px);
    overflow: auto;
  }
  @media (max-width: 900px) { .calculator { grid-template-columns: 1fr; } }

  .calc-controls h3 {
    font-family: 'Bebas Neue'; font-size: clamp(34px, 4vw, 52px); line-height: 0.95;
    color: var(--white); margin-bottom: 12px; letter-spacing: 0.005em;
  }
  .calc-controls h3 .accent { color: var(--ice); }
  .calc-controls p { font-size: 15px; line-height: 1.6; color: rgba(255,255,255,0.78); font-weight: 500; margin-bottom: 32px; max-width: 460px; }

  .preset-row { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 28px; }
  .preset {
    padding: 14px 20px;
    background: rgba(255,255,255,0.08);
    color: var(--white);
    font-family: 'Bebas Neue'; font-size: 22px; letter-spacing: 0.02em;
    border: 2px solid transparent;
    transition: background 0.25s var(--easing), border-color 0.25s var(--easing), transform 0.25s var(--easing);
  }
  .preset:hover { background: rgba(255,255,255,0.16); transform: translateY(-2px); }
  .preset.active { background: var(--electric); border-color: var(--ice); }

  .slider-wrap { margin-bottom: 32px; }
  .slider-label {
    display: flex; justify-content: space-between; align-items: center;
    margin-bottom: 14px;
    font-family: 'Raleway'; font-size: 11px; font-weight: 800; letter-spacing: 0.22em; text-transform: uppercase;
    color: rgba(255,255,255,0.7);
  }
  .slider-label .min, .slider-label .max { font-family: 'Bebas Neue'; font-size: 14px; letter-spacing: 0.02em; color: var(--ice); font-weight: 400; }
  input[type="range"].donation-slider {
    -webkit-appearance: none; appearance: none;
    width: 100%; height: 6px; background: rgba(255,255,255,0.12);
    outline: none; border-radius: 999px;
    cursor: pointer;
  }
  input[type="range"].donation-slider::-webkit-slider-thumb {
    -webkit-appearance: none; appearance: none;
    width: 28px; height: 28px; border-radius: 50%;
    background: var(--electric); border: 4px solid var(--ice);
    cursor: pointer; transition: transform 0.2s var(--easing);
    box-shadow: 0 4px 14px rgba(0,0,0,0.3);
  }
  input[type="range"].donation-slider::-webkit-slider-thumb:hover { transform: scale(1.15); }
  input[type="range"].donation-slider::-moz-range-thumb {
    width: 28px; height: 28px; border-radius: 50%;
    background: var(--electric); border: 4px solid var(--ice);
    cursor: pointer;
  }

  .custom-input {
    display: flex; align-items: center; gap: 12px;
    background: rgba(255,255,255,0.06);
    padding: 16px 20px; border-left: 3px solid var(--electric);
  }
  .custom-input .dollar { font-family: 'Bebas Neue'; font-size: 28px; color: var(--ice); }
  .custom-input input {
    flex: 1; background: transparent; border: 0; outline: 0;
    font-family: 'Bebas Neue'; font-size: 28px; color: var(--white); letter-spacing: 0.02em;
  }
  .custom-input input::placeholder { color: rgba(255,255,255,0.4); }

  .calc-readout {
    background: var(--ink); padding: clamp(28px, 3.5vw, 44px);
    display: flex; flex-direction: column; gap: 24px;
    position: relative; overflow: hidden;
  }
  .calc-readout::before {
    content: ""; position: absolute; width: 130px; height: 130px;
    background: var(--electric); top: -40px; right: -40px;
    transform: rotate(45deg); opacity: 0.85;
  }
  .calc-amount {
    font-family: 'Bebas Neue';
    font-size: clamp(72px, 9vw, 130px); line-height: 0.85; color: var(--white);
    letter-spacing: -0.005em; position: relative; z-index: 1;
  }
  .calc-amount .pre { font-size: 0.5em; vertical-align: 0.6em; opacity: 0.7; }
  .calc-label {
    font-family: 'Raleway'; font-size: 11px; font-weight: 800; letter-spacing: 0.24em; text-transform: uppercase;
    color: var(--ice); position: relative; z-index: 1;
  }
  .calc-impact-list { display: grid; gap: 12px; position: relative; z-index: 1; }
  .impact-line {
    display: grid; grid-template-columns: auto 1fr; gap: 14px;
    padding: 14px 0;
    border-top: 1px solid rgba(255,255,255,0.14);
    align-items: baseline;
  }
  .impact-line:first-child { border-top: 0; padding-top: 0; }
  .impact-line .qty {
    font-family: 'Bebas Neue'; font-size: clamp(28px, 3vw, 38px); line-height: 1;
    color: var(--ice); letter-spacing: 0.005em;
    min-width: 80px;
  }
  .impact-line .desc {
    font-family: 'Raleway'; font-size: 13.5px; line-height: 1.5;
    color: rgba(255,255,255,0.86); font-weight: 500;
  }
  .calc-cta {
    margin-top: auto; position: relative; z-index: 1;
    display: inline-flex; align-items: center; justify-content: space-between;
    background: var(--ice); color: var(--ink);
    padding: 20px 24px; font-family: 'Raleway';
    font-weight: 800; font-size: 13px; letter-spacing: 0.16em; text-transform: uppercase;
    transition: background 0.3s var(--easing), transform 0.3s var(--easing);
    gap: 24px;
  }
  .calc-cta:hover { background: var(--white); transform: translateY(-2px); }

  /* Tier cards still available below the calculator */
  .giving-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px;
    margin-top: 36px; position: relative; z-index: 1;
  }
  @media (max-width: 1000px) { .giving-grid { grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 540px)  { .giving-grid { grid-template-columns: 1fr; } }
  .gift {
    background: var(--soft-navy); color: var(--white);
    padding: clamp(22px, 2.6vw, 30px);
    display: flex; flex-direction: column; gap: 14px;
    position: relative; overflow: hidden;
    transition: background 0.35s var(--easing), transform 0.35s var(--easing);
  }
  .gift:hover { background: var(--electric); transform: translateY(-6px); }
  .gift .amt { font-family: 'Bebas Neue'; font-size: clamp(40px, 4.5vw, 60px); line-height: 0.9; color: var(--ice); transition: color 0.35s var(--easing); }
  .gift:hover .amt { color: var(--white); }
  .gift .role-name { font-family: 'Bebas Neue'; font-size: clamp(20px, 2vw, 26px); line-height: 1; letter-spacing: 0.02em; }
  .gift .gift-line { font-size: 13.5px; line-height: 1.5; color: rgba(255,255,255,0.86); font-weight: 500; }
  .gift .gift-cta { margin-top: auto; font-family: 'Raleway'; font-size: 11px; font-weight: 800; letter-spacing: 0.22em; text-transform: uppercase; color: var(--white); display: inline-flex; align-items: center; gap: 10px; }
  .gift .gift-cta::after { content: ""; width: 22px; height: 1.5px; background: currentColor; }

  /* ============================================================
     STORY / FOUNDERS  (kept light — main bio in About)
  ============================================================ */
  .story { background: var(--bg); }
  .story-grid { margin-top: 80px; display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 80px); align-items: start; }
  @media (max-width: 900px) { .story-grid { grid-template-columns: 1fr; } }
  .story-image { aspect-ratio: 4/5; position: relative; background: var(--ink); overflow: hidden; }
  .story-image::after {
    content: "EST. 2021 — STATEN ISLAND, NY";
    position: absolute; bottom: 24px; left: 24px;
    font-family: 'Raleway'; font-size: 11px; letter-spacing: 0.22em; color: var(--white);
    font-weight: 800;
    background: var(--electric); padding: 8px 14px;
  }
  .story-image .figure {
    position: absolute; inset: 0;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 500'><g fill='none' stroke='%23d4e8f7' stroke-width='1.4' opacity='0.6'><path d='M50 480 Q60 320 110 260 Q150 215 180 200 Q210 185 220 140 Q230 100 250 90 Q280 80 310 110' stroke-linecap='round'/><circle cx='250' cy='75' r='14'/><path d='M310 110 Q345 120 360 160' stroke-linecap='round'/><path d='M180 200 L160 280 L140 380' stroke-linecap='round'/><path d='M220 140 L260 220 L240 320 L260 420' stroke-linecap='round'/></g><circle cx='340' cy='180' r='38' fill='%232a6f97'/><path d='M340 142 V218 M302 180 H378 M314 156 Q340 175 366 156 M314 204 Q340 185 366 204' stroke='%23ffffff' stroke-width='1.5' fill='none'/></svg>");
    background-size: cover; background-position: center;
  }

  /* ============================================================
     FACILITY / VISION — capital campaign feature
  ============================================================ */
  .facility-vision { background: var(--ink); color: var(--white); position: relative; overflow: hidden; }
  .facility-vision::before {
    content: ""; position: absolute; inset: 0;
    background:
      radial-gradient(ellipse at 80% 10%, rgba(42,111,151,0.4), transparent 55%),
      radial-gradient(ellipse at 0% 100%, rgba(212,232,247,0.08), transparent 50%);
  }
  .facility-vision .sec-head { border-bottom-color: rgba(255,255,255,0.18); position: relative; z-index: 1; }
  .facility-vision .sec-num { color: rgba(255,255,255,0.55); }
  .facility-vision .sec-title { color: var(--white); }

  .vision-hero {
    margin-top: 60px; position: relative; z-index: 1;
    display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 80px); align-items: center;
  }
  @media (max-width: 900px) { .vision-hero { grid-template-columns: 1fr; } }
  .vision-lead {
    font-family: 'Inter', serif; font-style: italic;
    font-size: clamp(28px, 3.4vw, 48px); line-height: 1.12; color: var(--ice);
    letter-spacing: -0.015em; margin-bottom: 24px;
  }
  .vision-body { font-size: 17px; line-height: 1.7; color: rgba(255,255,255,0.86); font-weight: 500; max-width: 520px; }
  .vision-image {
    aspect-ratio: 16/10; position: relative; overflow: hidden;
    background: var(--soft-navy);
    border: 1px solid rgba(255,255,255,0.12);
  }
  .vision-image > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 2; }
  .vision-image > img:not([src]), .vision-image > img[src=""] { display: none; }
  .vision-image .placeholder { position: absolute; inset: 0; z-index: 1; display: grid; place-items: center; }
  .vision-image .placeholder::before {
    content: ""; position: absolute; inset: 0;
    background: linear-gradient(135deg, var(--soft-navy) 0%, var(--ink) 100%),
                radial-gradient(ellipse at 70% 30%, rgba(42,111,151,0.45), transparent 60%);
  }
  .vision-tag {
    position: absolute; top: 20px; left: 20px;
    font-family: 'Raleway'; font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
    color: var(--ice); font-weight: 800;
    background: rgba(0,31,63,0.8); padding: 8px 14px; backdrop-filter: blur(8px);
    z-index: 3;
  }
  .vision-image svg { position: relative; z-index: 1; width: 60%; height: auto; opacity: 0.6; }

  .vision-grid {
    margin-top: clamp(60px, 8vw, 100px); position: relative; z-index: 1;
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px;
  }
  @media (max-width: 1000px) { .vision-grid { grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 540px)  { .vision-grid { grid-template-columns: 1fr; } }
  .vision-item {
    padding: clamp(22px, 2.6vw, 30px);
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    transition: background 0.3s var(--easing), transform 0.3s var(--easing);
    display: flex; flex-direction: column; gap: 12px;
  }
  .vision-item:hover { background: rgba(42,111,151,0.2); transform: translateY(-4px); border-color: var(--electric); }
  .vision-item .v-num { font-family: 'Bebas Neue'; font-size: 22px; color: var(--ice); letter-spacing: 0.02em; }
  .vision-item h4 { font-family: 'Bebas Neue'; font-size: clamp(22px, 2.2vw, 28px); line-height: 1; color: var(--white); letter-spacing: 0.02em; }
  .vision-item p { font-size: 14px; line-height: 1.55; color: rgba(255,255,255,0.78); font-weight: 500; }

  .vision-foot {
    margin-top: 60px; position: relative; z-index: 1;
    padding-top: 32px; border-top: 1px solid rgba(255,255,255,0.18);
    display: flex; justify-content: space-between; align-items: center; gap: 24px; flex-wrap: wrap;
  }
  .vision-foot p {
    font-family: 'Inter', serif; font-style: italic;
    font-size: clamp(18px, 1.8vw, 22px); line-height: 1.4; color: var(--white); max-width: 640px;
  }
  .vision-foot a {
    display: inline-flex; align-items: center; gap: 14px;
    background: var(--electric); color: var(--white);
    padding: 18px 28px; font-family: 'Raleway';
    font-weight: 800; font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase;
    transition: background 0.3s var(--easing), transform 0.3s var(--easing);
  }
  .vision-foot a:hover { background: var(--ice); color: var(--ink); transform: translateY(-2px); }

  /* ============================================================
     INVESTMENT / SPONSORSHIP LADDER
  ============================================================ */
  .investment { background: var(--bg); border-top: 2px solid var(--line); }
  .invest-lede {
    margin-top: 40px;
    font-family: 'Inter', serif; font-style: italic;
    font-size: clamp(20px, 2.2vw, 28px); line-height: 1.4; color: var(--ink);
    max-width: 880px;
  }
  .invest-lede .accent { color: var(--electric); font-weight: 500; }

  .ladder { margin-top: 56px; display: flex; flex-direction: column; gap: 12px; }
  .tier {
    display: grid; grid-template-columns: 280px 1fr auto; gap: clamp(24px, 4vw, 60px);
    padding: clamp(28px, 3.5vw, 44px) clamp(24px, 3vw, 36px);
    background: var(--white);
    border-left: 4px solid var(--electric);
    transition: background 0.4s var(--easing), color 0.4s var(--easing), transform 0.4s var(--easing), border-color 0.4s var(--easing);
    align-items: center;
  }
  .tier:hover { background: var(--ink); color: var(--white); transform: translateX(8px); border-left-color: var(--ice); }
  .tier:hover .tier-amount,
  .tier:hover .tier-name,
  .tier:hover .tier-includes li,
  .tier:hover .tier-cta { color: var(--white); }
  .tier:hover .tier-amount .pre { color: var(--ice); }
  .tier:hover .tier-includes li::before { background: var(--ice); }
  @media (max-width: 1000px) {
    .tier { grid-template-columns: 1fr; gap: 16px; }
  }
  .tier.lead { border-left-color: var(--ink); border-left-width: 6px; background: var(--ice); }
  .tier.lead:hover { background: var(--ink); }
  .tier-amount {
    font-family: 'Bebas Neue'; font-size: clamp(48px, 5.5vw, 76px); line-height: 0.9;
    color: var(--ink); letter-spacing: 0.005em;
    transition: color 0.4s var(--easing);
  }
  .tier-amount .pre { font-size: 0.5em; vertical-align: 0.5em; opacity: 0.7; margin-right: 2px; color: var(--electric); }
  .tier-name {
    font-family: 'Bebas Neue'; font-size: clamp(22px, 2.2vw, 30px); line-height: 1; color: var(--ink); letter-spacing: 0.02em;
    margin-bottom: 14px;
    transition: color 0.4s var(--easing);
  }
  .tier-includes { list-style: none; display: grid; gap: 6px; }
  .tier-includes li {
    font-family: 'Raleway'; font-size: 14px; line-height: 1.5; color: var(--charcoal); font-weight: 500;
    padding-left: 18px; position: relative;
    transition: color 0.4s var(--easing);
  }
  .tier-includes li::before {
    content: ""; position: absolute; left: 0; top: 0.55em;
    width: 8px; height: 1.5px; background: var(--electric); transition: background 0.4s var(--easing);
  }
  .tier-cta {
    font-family: 'Raleway'; font-size: 12px; font-weight: 800; letter-spacing: 0.16em; text-transform: uppercase;
    color: var(--ink); display: inline-flex; align-items: center; gap: 12px; white-space: nowrap;
    transition: color 0.4s var(--easing);
  }

  /* ============================================================
     STEWARDSHIP
  ============================================================ */
  .stewardship { background: var(--white); border-top: 2px solid var(--line); }
  .stewardship-grid {
    margin-top: 60px;
    display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px;
  }
  @media (max-width: 1100px) { .stewardship-grid { grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 540px)  { .stewardship-grid { grid-template-columns: 1fr; } }
  .steward {
    padding: clamp(24px, 2.6vw, 32px);
    background: var(--bg); border-top: 3px solid var(--electric);
    display: flex; flex-direction: column; gap: 12px;
    transition: background 0.3s var(--easing), color 0.3s var(--easing), transform 0.3s var(--easing);
  }
  .steward:hover { background: var(--ink); color: var(--white); transform: translateY(-4px); }
  .steward .s-num { font-family: 'Bebas Neue'; font-size: 32px; color: var(--electric); line-height: 1; letter-spacing: 0.02em; }
  .steward:hover .s-num { color: var(--ice); }
  .steward h4 { font-family: 'Bebas Neue'; font-size: clamp(20px, 2vw, 24px); line-height: 1.05; color: var(--ink); letter-spacing: 0.02em; transition: color 0.3s var(--easing); }
  .steward:hover h4 { color: var(--white); }
  .steward p { font-size: 13.5px; line-height: 1.55; color: var(--charcoal); font-weight: 500; transition: color 0.3s var(--easing); }
  .steward:hover p { color: rgba(255,255,255,0.78); }

  /* ============================================================
     PARTNERS
  ============================================================ */
  .partners { background: var(--bg); border-top: 2px solid var(--line); }
  .partner-grid {
    margin-top: 60px;
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px;
  }
  @media (max-width: 820px) { .partner-grid { grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 480px) { .partner-grid { grid-template-columns: 1fr; } }
  .partner {
    height: clamp(110px, 13vw, 160px);
    padding: clamp(20px, 2.6vw, 34px);
    background: var(--white); border: 1px solid var(--line);
    display: grid;
    transition: background 0.3s var(--easing), border-color 0.3s var(--easing), transform 0.3s var(--easing);
    position: relative; overflow: hidden;
  }
  .partner:hover { background: var(--ink); transform: translateY(-4px); border-color: transparent; }
  .partner > img { width: 100%; height: 100%; min-width: 0; min-height: 0; object-fit: contain; z-index: 2; }
  .partner.p-nike { padding: 0; }
  .partner.p-lg { padding: clamp(14px, 1.8vw, 22px); }
  .partner.p-dycd { padding: clamp(8px, 1vw, 12px); }
  .partner > img:not([src]), .partner > img[src=""] { display: none; }
  .partner .name {
    font-family: 'Bebas Neue'; font-size: clamp(22px, 2.2vw, 30px); letter-spacing: 0.06em; color: var(--ink);
    transition: color 0.3s var(--easing); z-index: 1;
  }
  .partner:hover .name { color: var(--ice); }

  .partners-foot {
    margin-top: 32px; padding-top: 24px; border-top: 1px solid var(--line);
    font-family: 'Raleway'; font-size: 13px; line-height: 1.6; color: var(--charcoal); font-weight: 500;
    max-width: 720px;
  }

  /* ============================================================
     DONATE
  ============================================================ */
  .donate-section { background: var(--electric); color: var(--white); position: relative; overflow: hidden; }
  .donate-section::before {
    content: ""; position: absolute; inset: 0;
    background: radial-gradient(ellipse at 80% 20%, rgba(0,31,63,0.5), transparent 55%), radial-gradient(ellipse at 10% 90%, rgba(212,232,247,0.18), transparent 55%);
  }
  .donate-inner {
    position: relative; z-index: 1; padding: clamp(80px, 12vw, 160px) 0;
    display: grid; grid-template-columns: 1.2fr 1fr; gap: 60px; align-items: end;
  }
  @media (max-width: 820px) { .donate-inner { grid-template-columns: 1fr; align-items: start; } }
  .donate-inner h2 {
    font-family: 'Bebas Neue'; text-transform: uppercase;
    font-size: clamp(56px, 11vw, 168px); line-height: 0.84; letter-spacing: -0.005em; color: var(--white);
    text-align: center;
  }
  .donate-inner h2 .italic { font-family: 'Inter'; font-style: italic; font-weight: 500; letter-spacing: -0.04em; color: var(--ice); }
  .donate-text { font-size: 17px; line-height: 1.65; color: rgba(255,255,255,0.94); max-width: 420px; margin-bottom: 32px; font-weight: 500; }
  .donate-actions { display: flex; flex-direction: column; gap: 14px; align-items: flex-start; }
  .donate-actions a {
    display: inline-flex; align-items: center; justify-content: space-between;
    width: 100%; max-width: 380px; padding: 22px 26px;
    font-family: 'Raleway'; font-weight: 800; font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
    background: var(--ink); color: var(--white);
    transition: transform 0.3s var(--easing), background 0.3s var(--easing); gap: 30px;
  }
  .donate-actions a:hover { transform: translateY(-3px); background: var(--white); color: var(--ink); }
  .donate-actions a.ghost { background: transparent; color: var(--white); border: 2px solid var(--white); }
  .donate-actions a.ghost:hover { background: var(--white); color: var(--ink); }
  .donate-meta {
    margin-top: 40px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.3);
    display: flex; gap: 28px; flex-wrap: wrap;
    font-family: 'Raleway'; font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
    color: rgba(255,255,255,0.85); font-weight: 800;
  }

  /* ============================================================
     FOOTER
  ============================================================ */
  .footer { background: var(--black); color: var(--white); padding: clamp(60px, 8vw, 100px) 0 32px; }
  .footer-grid {
    display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: clamp(28px, 4vw, 60px); padding-bottom: 60px;
    border-bottom: 1px solid rgba(255,255,255,0.15);
  }
  @media (max-width: 820px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
  @media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }
  .footer-brand-wrap { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 16px; }
  .footer-brand-wrap .brand-mark { color: var(--white); width: 48px; height: auto; object-fit: contain; }
  .footer-brand { font-family: 'Bebas Neue'; font-size: 30px; line-height: 1; letter-spacing: 0.02em; }
  .footer-brand small { display: block; font-family: 'Raleway'; font-size: 11px; font-weight: 800; letter-spacing: 0.22em; color: rgba(255,255,255,0.6); margin-top: 8px; }
  .footer p { font-size: 14px; line-height: 1.7; color: rgba(255,255,255,0.7); max-width: 320px; font-weight: 500; }
  .footer h5 { font-family: 'Raleway'; font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--ice); font-weight: 800; margin-bottom: 18px; }
  .footer ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
  .footer ul a { font-size: 14px; color: var(--white); transition: color 0.25s var(--easing); font-weight: 500; }
  .footer ul a:hover { color: var(--electric); }
  .footer-bottom { padding-top: 32px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px; font-size: 12px; color: rgba(255,255,255,0.5); font-weight: 500; }

  .floating-donate {
    position: fixed; bottom: 24px; right: 24px; z-index: 40;
    background: var(--electric); color: var(--white); padding: 22px 34px;
    font-family: 'Raleway'; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; font-size: 15px;
    box-shadow: 0 16px 36px rgba(42,111,151,0.4);
    opacity: 0; transform: translateY(20px) scale(0.95);
    transition: opacity 0.5s var(--easing), transform 0.5s var(--easing), background 0.3s var(--easing);
    pointer-events: none;
    display: inline-flex; align-items: center; gap: 14px;
  }
  .floating-donate.show { opacity: 1; transform: none; pointer-events: auto; }
  .floating-donate:hover { background: var(--ink); }
  @media (max-width: 540px) { .floating-donate { bottom: 16px; right: 16px; padding: 16px 22px; font-size: 13px; } }

  ::selection { background: var(--electric); color: var(--white); }

  .sub-page{
    align-items: start !important;
  }

  /* ============================================================
     PROGRAMS GRID SECTION  (#all-programs)
  ============================================================ */

  .prog-grid-section {
    background: var(--bg);
    padding: clamp(60px, 8vw, 100px) 0;
    border-top: 1px solid var(--line);
  }

  /* Mission header */
  .prog-grid-mission-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(40px, 6vw, 80px);
    line-height: 0.92;
    color: var(--ink);
    letter-spacing: 0.02em;
    margin-bottom: 18px;
  }
  .prog-grid-mission-title .accent { color: var(--electric); }

  .prog-grid-mission-body {
    font-family: 'Raleway', sans-serif;
    font-size: clamp(15px, 1.6vw, 19px);
    font-weight: 600;
    line-height: 1.55;
    color: var(--charcoal);
    max-width: 680px;
    margin: 0 auto 18px;
  }
  .prog-grid-mission-body em {
    font-style: italic;
    color: var(--electric);
    font-weight: 700;
  }

  .prog-grid-sub {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(20px, 2.6vw, 32px);
    color: var(--electric);
    letter-spacing: 0.05em;
    margin: 0;
  }

  /* Grid — 5 equal columns, gap fixed */
  .prog-card-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
  }
  @media (max-width: 1080px) { .prog-card-grid { grid-template-columns: repeat(3, 1fr); } }
  @media (max-width: 600px)  { .prog-card-grid { grid-template-columns: repeat(2, 1fr); } }

  /* Card — label is ABSOLUTELY positioned so it never affects card height */
  .prog-card {
    display: block;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    /* Fixed aspect ratio for the whole card including label overlay */
    aspect-ratio: 4 / 3;
    background: var(--soft-navy);
    transition: transform 0.35s var(--easing), box-shadow 0.35s var(--easing);
  }
  .prog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0, 31, 63, 0.2);
  }

  /* Photo fills the entire card */
  .prog-card-img {
    position: absolute;
    inset: 0;
  }
  .prog-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s var(--easing);
  }
  .prog-card-img img[src=""] { display: none; }
  .prog-card:hover .prog-card-img img {
    transform: scale(1.06);
  }

  /* Dark gradient scrim so label is always readable */
  .prog-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 55%;
    background: linear-gradient(to top, rgba(0,19,38,0.88) 0%, transparent 100%);
    pointer-events: none;
  }

  /* Label — pinned to bottom, always the same height */
  .prog-card-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
    background: rgba(0, 19, 38, 0.82);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border-top: 2px solid var(--electric);
    color: var(--white);
    font-family: 'Raleway', sans-serif;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 9px 12px;
    display: flex;
    align-items: center;
    gap: 7px;
    line-height: 1.25;
    /* Fixed height — prevents any card from being taller */
    min-height: 40px;
    transition: background 0.3s var(--easing), border-color 0.3s var(--easing);
  }
  .prog-card:hover .prog-card-label {
    background: rgba(42, 111, 151, 0.92);
    border-top-color: var(--ice);
  }

  .prog-card-label .prog-icon {
    font-size: 14px;
    flex-shrink: 0;
    line-height: 1;
  }

  /* ============================================================
     DROPDOWN NAV
  ============================================================ */
  .nav-drop { position: relative; display: flex; align-items: center; }
  .nav-drop-btn {
    font-family: 'Raleway', sans-serif; font-size: 12px; font-weight: 700;
    letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink);
    background: none; border: 0; cursor: pointer;
    display: flex; align-items: center; gap: 5px;
    transition: color 0.25s var(--easing); padding: 0; line-height: 1;
  }
  .nav-drop-btn:hover,
  .nav-drop.is-open .nav-drop-btn { color: var(--electric); }
  .nav-caret {
    display: inline-block; width: 0; height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 5px solid currentColor;
    transition: transform 0.25s var(--easing); flex-shrink: 0; margin-top: 1px;
  }
  .nav-drop.is-open .nav-caret { transform: rotate(180deg); }
  .nav-drop-menu {
    position: absolute; top: calc(100% + 16px); left: -16px;
    background: var(--white); border: 1px solid var(--line);
    box-shadow: 0 14px 44px rgba(0,31,63,0.14);
    list-style: none; padding: 6px 0; min-width: 230px;
    opacity: 0; pointer-events: none;
    transform: translateY(-6px);
    transition: opacity 0.2s var(--easing), transform 0.2s var(--easing);
    z-index: 60;
  }
  .nav-drop.is-open .nav-drop-menu {
    opacity: 1; pointer-events: auto; transform: none;
  }
  .nav-drop-menu li a {
    display: block; padding: 10px 20px;
    font-family: 'Raleway', sans-serif; font-size: 11px; font-weight: 700;
    letter-spacing: 0.08em; text-transform: uppercase;
    color: var(--ink);
    transition: color 0.2s var(--easing), background 0.2s var(--easing);
  }
  .nav-drop-menu li a:hover { color: var(--electric); background: var(--bg); }

  /* Mobile drawer — overrides */
  @media (max-width: 940px) {
    .nav-drop { width: 100%; flex-direction: column; align-items: flex-start; }
    .nav-drop-btn {
      color: var(--white); font-size: 22px;
      font-family: 'Bebas Neue', sans-serif; letter-spacing: 0.04em;
    }
    .nav-drop-btn:hover,
    .nav-drop.is-open .nav-drop-btn { color: var(--ice); }
    .nav-drop-menu {
      position: static; background: rgba(255,255,255,0.06); box-shadow: none;
      border: none; border-left: 2px solid var(--electric);
      margin: 6px 0 0 4px; padding: 6px 0; min-width: 0; width: 100%;
      opacity: 0; pointer-events: none; transform: none; max-height: 0; overflow: hidden;
      transition: opacity 0.25s var(--easing), max-height 0.3s var(--easing);
    }
    .nav-drop.is-open .nav-drop-menu {
      opacity: 1; pointer-events: auto; max-height: 400px;
    }
    .nav-drop-menu li a {
      color: rgba(255,255,255,0.8); font-size: 15px;
      font-family: 'Bebas Neue', sans-serif; letter-spacing: 0.04em; padding: 8px 16px;
    }
    .nav-drop-menu li a:hover { color: var(--ice); background: transparent; }
  }
