/*
Theme Name: East Lake Silver Sound
Theme URI: https://eastlakeband.com/
Author: East Lake Band Boosters
Author URI: https://eastlakeband.com/
Description: Custom WordPress theme for the East Lake High School Silver Sound Band program. Converted manually from static HTML mockups. Royal blue / silver brand, Bebas Neue + Space Grotesk + Inter typography.
Version: 0.1.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
License: All rights reserved
Text Domain: east-lake-silver-sound
*/

  :root {
    --royal: #1d44d1;          /* primary royal blue, brighter */
    --royal-2: #2954d6;        /* lighter accent royal */
    --royal-3: #3a66e0;        /* even lighter royal for highlights */
    --royal-deep: #142c8a;     /* deeper royal */
    --royal-darker: #0a1d6b;   /* deepest royal still recognizably blue */
    --silver: #c8ccd4;
    --silver-2: #e6e9ef;
    --silver-3: #8e96a6;
    --silver-grad: linear-gradient(135deg, #f0f2f6 0%, #c8ccd4 45%, #8e96a6 100%);
    --silver-grad-flat: linear-gradient(180deg, #e6e9ef 0%, #c8ccd4 100%);
    --black: #050608;
    --black-2: #0c0e14;
    --black-3: #14171f;
    --paper: #f7f8fb;
    --line: rgba(255,255,255,0.12);
  }
  * { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body {
    font-family: 'Inter', system-ui, sans-serif;
    background: var(--paper);
    color: var(--black);
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
  }
  .display { font-family: 'Bebas Neue', system-ui, sans-serif; letter-spacing: 0.005em; line-height: 0.92; }
  h1, h2, h3, h4 { font-family: 'Space Grotesk', system-ui, sans-serif; letter-spacing: -0.02em; line-height: 1.05; }
  a { color: inherit; text-decoration: none; }
  .container { max-width: 1320px; margin: 0 auto; padding: 0 32px; }

  .skip-link {
    position: absolute; left: -9999px; top: 0;
    z-index: 1000;
    padding: 12px 20px;
    background: var(--royal-deep); color: white;
    font-weight: 700; font-size: 14px; letter-spacing: 0.06em;
    text-transform: uppercase;
    border-radius: 0 0 8px 0;
    text-decoration: none;
  }
  .skip-link:focus { left: 0; outline: 3px solid #c9a559; outline-offset: 2px; }
  .sr-only {
    position: absolute; width: 1px; height: 1px;
    padding: 0; margin: -1px; overflow: hidden;
    clip: rect(0,0,0,0); white-space: nowrap; border: 0;
  }
  /* TOP BAR */
  .topbar {
    background: var(--black);
    color: var(--silver);
    font-size: 12px;
    letter-spacing: 0.06em;
    padding: 9px 0;
    border-bottom: 1px solid var(--line);
  }
  .topbar .container { display: flex; justify-content: space-between; align-items: center; }
  .topbar .links a { color: var(--silver); margin-left: 18px; transition: color .2s; font-weight: 500; }
  .topbar .links a:hover { color: white; }
  .topbar .live {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(255,255,255,0.05);
    padding: 3px 10px;
    border-radius: 999px;
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }
  .topbar .live .dot { width: 6px; height: 6px; border-radius: 999px; background: #4caf50; box-shadow: 0 0 10px #4caf50; }

  /* HEADER */
  header.site {
    background: var(--royal-deep);
    color: white;
    position: sticky;
    top: 0;
    z-index: 50;
    border-bottom: 1px solid rgba(255,255,255,0.12);
  }
  header.site .container { display: flex; align-items: center; justify-content: space-between; height: 88px; }
  /* Brand lockup: EAST LAKE [eagle] SILVER SOUND, all on one horizontal line */
  .brand { display: inline-flex; align-items: center; gap: 16px; }
  .brand-text {
    font-family: 'Bebas Neue', system-ui, sans-serif;
    font-size: 30px;
    letter-spacing: 0.06em;
    color: white;
    line-height: 1;
    white-space: nowrap;
  }
  .brand-logo {
    height: 56px;
    width: auto;
    display: block;
    filter: drop-shadow(0 2px 6px rgba(0,0,0,0.18));
  }
  /* Footer uses the same lockup at slightly smaller scale */
  footer.site .brand-logo { height: 46px; filter: none; }
  footer.site .brand-text { font-size: 24px; }
  footer.site .brand { gap: 12px; }

  nav.main { display: flex; gap: 2px; align-items: center; }
  nav.main a { padding: 10px 14px; border-radius: 6px; font-weight: 500; font-size: 13px; letter-spacing: 0.04em; color: rgba(255,255,255,0.72); transition: color .18s, background .18s; text-transform: uppercase; display: inline-flex; align-items: center; gap: 6px; }
  nav.main a:hover, nav.main a.active { color: white; }
  nav.main a.active { background: rgba(255,255,255,0.08); }

  /* Dropdown menus */
  .nav-item { position: relative; }
  .nav-item.has-dropdown > a::after {
    content: "";
    width: 6px; height: 6px;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: rotate(45deg) translateY(-2px);
    transition: transform .2s;
    opacity: 0.75;
  }
  .nav-item.has-dropdown:hover > a::after,
  .nav-item.has-dropdown:focus-within > a::after { transform: rotate(-135deg) translateY(0); opacity: 1; }
  .nav-item.has-dropdown::after {
    /* invisible bridge so the dropdown doesn't close in the gap */
    content: ""; position: absolute; left: 0; right: 0; top: 100%; height: 12px;
    pointer-events: none;
  }
  .nav-item.has-dropdown:hover::after,
  .nav-item.has-dropdown:focus-within::after { pointer-events: auto; }
  .dropdown {
    position: absolute;
    top: calc(100% + 10px);
    left: -8px;
    min-width: 240px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 24px 48px rgba(5,6,8,0.22), 0 4px 12px rgba(5,6,8,0.08);
    padding: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(6px);
    transition: opacity .18s ease, transform .18s ease, visibility .18s;
    z-index: 60;
    border: 1px solid rgba(5,6,8,0.06);
  }
  .nav-item.has-dropdown:hover > .dropdown,
  .nav-item.has-dropdown:focus-within > .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .dropdown a {
    display: block !important;
    padding: 10px 14px !important;
    border-radius: 8px;
    color: var(--black-2) !important;
    text-transform: none !important;
    letter-spacing: 0 !important;
    font-size: 14px !important;
    font-weight: 500;
    line-height: 1.3;
  }
  .dropdown a .sub {
    display: block;
    font-size: 11px;
    font-weight: 500;
    color: var(--silver-3);
    letter-spacing: 0.04em;
    margin-top: 2px;
    text-transform: none;
  }
  .dropdown a:hover { background: var(--paper); color: var(--royal) !important; }
  .dropdown a:hover .sub { color: var(--silver-3) !important; }
  .dropdown.dropdown-wide { min-width: 320px; }
  .dropdown-label {
    display: block;
    padding: 6px 14px 4px;
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--silver-3);
  }
  .dropdown-divider {
    display: block;
    height: 1px;
    background: rgba(5,6,8,0.08);
    margin: 6px 6px;
  }
  .dropdown a.featured {
    background: linear-gradient(135deg, var(--royal-deep) 0%, var(--royal) 100%);
    color: white !important;
    font-weight: 700 !important;
  }
  .dropdown a.featured .sub { color: rgba(255,255,255,0.78) !important; }
  .dropdown a.featured:hover { filter: brightness(1.08); color: white !important; }
  .dropdown a.featured:hover .sub { color: rgba(255,255,255,0.85) !important; }

  /* CTA buttons */
  .nav-cta { margin-left: 12px; display: inline-flex; gap: 8px; }
  .nav-cta a { margin: 0; }
  nav.main .donate {
    border: 1px solid rgba(255,255,255,0.28);
    color: white !important;
    font-weight: 600;
    padding: 11px 22px;
    border-radius: 999px;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 0.14em;
    background: transparent;
  }
  nav.main .donate:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.5); }
  nav.main .join {
    background: var(--silver-grad);
    color: var(--royal-deep) !important;
    font-weight: 700;
    padding: 11px 22px;
    border-radius: 999px;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 0.14em;
    box-shadow: 0 6px 18px rgba(200,204,212,0.25);
  }
  nav.main .join:hover { filter: brightness(1.08); transform: translateY(-1px); box-shadow: 0 10px 24px rgba(200,204,212,0.35); }

  /* HERO */
  .hero {
    background:
      radial-gradient(1400px 700px at 35% -10%, rgba(58, 102, 224, 0.5), transparent 60%),
      radial-gradient(1100px 600px at 10% 110%, rgba(20, 44, 138, 0.5), transparent 60%),
      linear-gradient(180deg, var(--royal) 0%, var(--royal-deep) 60%, var(--royal-darker) 100%);
    color: white;
    padding: 0;
    position: relative;
    overflow: hidden;
    min-height: calc(100vh - 130px);
    display: flex;
    align-items: stretch;
  }
  /* Diagonal light streaks (Boston Crusaders pattern) */
  .hero::before {
    content: ""; position: absolute; inset: 0;
    background-image: repeating-linear-gradient(
      115deg,
      transparent 0,
      transparent 80px,
      rgba(255,255,255,0.04) 80px,
      rgba(255,255,255,0.04) 82px,
      transparent 82px,
      transparent 200px,
      rgba(200,204,212,0.05) 200px,
      rgba(200,204,212,0.05) 204px,
      transparent 204px,
      transparent 320px
    );
    pointer-events: none;
  }
  /* Subtle dot pattern */
  .hero::after {
    content: ""; position: absolute; inset: 0;
    background-image: radial-gradient(rgba(255,255,255,0.05) 1px, transparent 1px);
    background-size: 28px 28px;
    pointer-events: none;
    mask-image: radial-gradient(ellipse 80% 80% at 50% 30%, black, transparent 90%);
    -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 30%, black, transparent 90%);
  }
  .hero .container { position: relative; z-index: 2; }

  /* Watermark word — spans the full hero, bleeding across photo for depth */
  .watermark {
    position: absolute;
    bottom: -90px;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'Bebas Neue';
    font-size: clamp(180px, 24vw, 360px);
    color: rgba(255,255,255,0.08);
    letter-spacing: -0.02em;
    line-height: 0.85;
    white-space: nowrap;
    pointer-events: none;
    text-align: center;
    width: 100%;
    z-index: 1;
  }

  /* Two-column hero — text col on the left, full-bleed photo on the right */
  .hero-text-col {
    flex: 1 1 52%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 48px 48px 56px max(32px, calc((100vw - 1320px) / 2 + 32px));
    position: relative;
    z-index: 2;
    min-width: 0;
  }
  .hero-text {
    max-width: 640px;
    min-width: 0;
  }
  .eyebrow {
    display: inline-flex; align-items: center; gap: 14px;
    font-size: 12px;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--silver-2);
    margin-bottom: 22px;
    font-weight: 500;
  }
  .eyebrow .line { width: 36px; height: 1px; background: var(--silver-2); }

  .wordmark-hero {
    font-family: 'Bebas Neue';
    font-size: clamp(56px, 6.5vw, 108px);
    line-height: 0.88;
    letter-spacing: 0.005em;
    margin-bottom: 22px;
    color: white;
  }
  .wordmark-hero .silver-line {
    background: linear-gradient(135deg, #ffffff 0%, #d6dae3 40%, #8e96a6 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: block;
    text-shadow: 0 0 80px rgba(230,233,239,0.2);
  }

  .tagline {
    font-family: 'Space Grotesk';
    font-size: clamp(18px, 1.5vw, 22px);
    font-weight: 500;
    color: white;
    margin-bottom: 16px;
    letter-spacing: -0.01em;
  }
  .tagline .pipe { color: var(--silver-2); margin: 0 12px; font-weight: 400; opacity: 0.6; }

  .lede {
    font-size: 15px;
    color: rgba(255,255,255,0.85);
    max-width: 56ch;
    margin: 0 0 28px;
    line-height: 1.65;
  }

  /* CTA cluster (4-up Crown pattern) */
  .cta-cluster {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    max-width: 520px;
    margin: 0 0 28px;
  }
  .cta {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 13px 18px;
    border-radius: 12px;
    font-weight: 600;
    text-align: left;
    transition: all .2s;
    border: 1px solid transparent;
  }
  .cta .lbl {
    font-size: 9px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    opacity: 0.75;
    margin-bottom: 4px;
  }
  .cta .val { font-size: 14px; font-weight: 700; }
  .cta.primary { background: var(--silver-grad); color: var(--royal-darker); }
  .cta.primary:hover { transform: translateY(-2px); box-shadow: 0 12px 30px -8px rgba(255,255,255,0.4); }
  .cta.solid { background: white; color: var(--royal-darker); }
  .cta.solid:hover { transform: translateY(-2px); }
  .cta.ghost { background: rgba(255,255,255,0.08); color: white; border-color: rgba(255,255,255,0.2); }
  .cta.ghost:hover { background: rgba(255,255,255,0.14); border-color: rgba(255,255,255,0.4); }

  .hero-stats {
    display: flex;
    gap: 40px;
    padding-top: 22px;
    border-top: 1px solid rgba(255,255,255,0.18);
  }
  .hs { color: white; }
  .hs .n { font-family: 'Bebas Neue'; font-size: 32px; line-height: 1; letter-spacing: 0.02em; }
  .hs .n sup { font-size: 14px; vertical-align: top; color: var(--silver-2); margin-left: 2px; }
  .hs .l { font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.7); margin-top: 6px; }

  /* Hero photo — full-bleed right column with a soft alpha fade into the royal blue */
  .hero-photo {
    flex: 0 0 48%;
    position: relative;
    overflow: hidden;
    border: none;
    border-radius: 0;
    background-image: url('assets/images/hero-band.jpg');
    background-size: cover;
    background-position: center;
    /* Mask the photo itself so its alpha fades into transparent on the left.
       The royal-blue .hero background shows through wherever the photo is masked. */
    -webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,0.4) 18%, rgba(0,0,0,0.85) 38%, black 55%);
    mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,0.4) 18%, rgba(0,0,0,0.85) 38%, black 55%);
  }
  /* Bottom darken for legibility under the watermark — no left-edge tint, mask handles that */
  .hero-photo::before {
    content: ""; position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 65%, rgba(5,14,46,0.5) 100%);
    pointer-events: none;
  }
  .hero-photo .badge-corner {
    position: absolute; top: 32px; right: 32px;
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(10px);
    color: white;
    padding: 9px 16px;
    border-radius: 999px;
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 600;
    z-index: 3;
  }
  .hero-photo .badge-corner .dot { width: 7px; height: 7px; border-radius: 999px; background: var(--silver-2); box-shadow: 0 0 10px var(--silver-2); }
  .hero-photo .photo-caption {
    position: absolute; bottom: 0; left: 0; right: 0;
    padding: 36px 40px 36px;
    color: white;
    z-index: 3;
  }
  .hero-photo .photo-caption .lbl {
    font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase;
    color: var(--silver-2); margin-bottom: 8px;
  }
  .hero-photo .photo-caption h3 {
    font-family: 'Bebas Neue'; font-size: 30px;
    letter-spacing: 0.01em; line-height: 1; color: white;
  }

  /* TICKER */
  .ticker {
    background: var(--silver-grad-flat);
    color: var(--royal-deep);
    overflow: hidden;
    border-top: 4px solid var(--royal-darker);
    border-bottom: 4px solid var(--black);
    position: relative;
    z-index: 2;
  }
  .ticker .track {
    display: flex; gap: 56px;
    padding: 18px 0;
    font-family: 'Bebas Neue';
    font-size: 22px;
    letter-spacing: 0.04em;
    white-space: nowrap;
    animation: scroll 40s linear infinite;
  }
  .ticker span { display: inline-flex; align-items: center; gap: 32px; }
  .ticker span::after { content: "✦"; color: var(--royal); font-size: 14px; }
  @keyframes scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

  /* FEATURED VIDEO / SHOW SECTION */
  .show {
    background: var(--royal-darker);
    color: white;
    padding: 140px 0;
    position: relative;
    overflow: hidden;
  }
  .show::before {
    content: ""; position: absolute; inset: 0;
    background:
      radial-gradient(800px 500px at 70% 40%, rgba(58,102,224,0.35), transparent 60%),
      radial-gradient(500px 400px at 10% 80%, rgba(200,204,212,0.06), transparent 60%);
  }
  .show .container { position: relative; z-index: 2; display: grid; grid-template-columns: 0.4fr 0.6fr; gap: 80px; align-items: center; }
  .show .label { font-size: 11px; letter-spacing: 0.32em; text-transform: uppercase; color: var(--silver-2); margin-bottom: 28px; display: inline-block; }
  .show h2 { font-family: 'Space Grotesk'; font-size: clamp(40px, 5vw, 68px); font-weight: 600; margin-bottom: 24px; letter-spacing: -0.02em; }
  .show h2 .silver { background: linear-gradient(135deg, #fff 0%, #c8ccd4 70%, #8e96a6 100%); -webkit-background-clip: text; background-clip: text; color: transparent; font-style: italic; font-weight: 500; }
  .show p { color: rgba(255,255,255,0.85); margin-bottom: 32px; font-size: 17px; max-width: 44ch; line-height: 1.7; }
  .show .meta-list { display: flex; flex-direction: column; gap: 14px; padding-top: 28px; border-top: 1px solid rgba(255,255,255,0.18); }
  .show .meta-list dt { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--silver-2); }
  .show .meta-list dd { font-size: 16px; color: white; font-weight: 500; }
  .show .meta-list .row { display: grid; grid-template-columns: 0.4fr 0.6fr; gap: 24px; }
  .show .video-large {
    aspect-ratio: 16 / 9;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.15);
    background-image:
      linear-gradient(180deg, rgba(5,14,46,0.2) 0%, rgba(5,14,46,0.65) 100%),
      url('assets/images/welcome-feature.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    box-shadow: 0 40px 80px -30px rgba(20,44,138,0.6);
  }
  .show .video-large .meta {
    position: absolute; top: 24px; left: 24px;
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(0,0,0,0.4);
    backdrop-filter: blur(8px);
    color: white;
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 600;
  }
  .show .video-large .meta .dot { width: 8px; height: 8px; border-radius: 999px; background: #ff3b30; box-shadow: 0 0 10px #ff3b30; }
  .show .video-large .play {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    width: 100px; height: 100px; border-radius: 999px;
    background: var(--silver-grad); display: grid; place-items: center;
    cursor: pointer; transition: all .2s;
    box-shadow: 0 24px 48px -12px rgba(0,0,0,0.5);
  }
  .show .video-large .play:hover { transform: translate(-50%, -50%) scale(1.06); }
  .show .video-large .play svg { width: 36px; height: 36px; fill: var(--royal-darker); margin-left: 6px; }
  .show .video-large .caption {
    position: absolute; bottom: 0; left: 0; right: 0;
    padding: 28px;
    background: linear-gradient(180deg, transparent, rgba(5,29,107,0.85));
  }
  .show .video-large .caption .lbl {
    font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
    color: var(--silver-2); margin-bottom: 6px;
  }
  .show .video-large .caption h3 {
    font-family: 'Bebas Neue'; font-size: 32px;
    letter-spacing: 0.01em; line-height: 1; color: white;
  }
  .show .video-large iframe {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    border: 0;
    border-radius: 24px;
  }

  /* WELCOME */
  .welcome { padding: 140px 0; background: var(--paper); }
  .welcome .container { display: grid; grid-template-columns: 0.42fr 0.58fr; gap: 80px; align-items: start; }
  .welcome .label { font-size: 11px; letter-spacing: 0.32em; text-transform: uppercase; color: var(--silver-3); }
  .welcome h2 { font-family: 'Space Grotesk'; font-size: clamp(48px, 5.5vw, 76px); font-weight: 600; margin-top: 18px; letter-spacing: -0.02em; line-height: 1; color: var(--black); }
  .welcome h2 em { color: var(--royal); font-style: italic; font-weight: 500; }
  .welcome p { font-size: 18px; color: #2a3349; margin-bottom: 22px; max-width: 56ch; line-height: 1.7; }
  .welcome p strong { color: var(--royal-deep); }
  .stats {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 32px; margin-top: 56px; padding-top: 40px;
    border-top: 1px solid #dde1e9;
  }
  .stat .num { font-family: 'Bebas Neue'; font-size: 56px; line-height: 0.95; letter-spacing: 0.02em; color: var(--royal-deep); }
  .stat .num sup { font-size: 24px; vertical-align: top; color: var(--silver-3); margin-left: 4px; }
  .stat .lbl { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: #5b6680; margin-top: 10px; line-height: 1.5; }

  /* PROGRAMS */
  .programs {
    padding: 140px 0;
    background: var(--black-2);
    color: white;
    position: relative;
    overflow: hidden;
  }
  .programs::before {
    content: ""; position: absolute; inset: 0;
    background:
      radial-gradient(1100px 600px at 90% 0%, rgba(29,68,209,0.4), transparent 60%),
      radial-gradient(800px 500px at 0% 100%, rgba(20,44,138,0.45), transparent 60%);
  }
  .programs .head { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 0.5fr; gap: 60px; align-items: end; margin-bottom: 64px; }
  .programs .head .label { font-size: 11px; letter-spacing: 0.32em; text-transform: uppercase; color: var(--silver-2); }
  .programs h2 { font-family: 'Space Grotesk'; font-size: clamp(48px, 5.5vw, 80px); font-weight: 600; margin-top: 16px; letter-spacing: -0.02em; line-height: 1; }
  .programs h2 em { background: var(--silver-grad); -webkit-background-clip: text; background-clip: text; color: transparent; font-style: italic; }
  .programs .sub { color: var(--silver); font-size: 16px; line-height: 1.7; }

  .grid-progs { position: relative; z-index: 2; display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .prog {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px;
    padding: 36px 32px;
    transition: all .25s;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    min-height: 280px;
    display: flex;
    flex-direction: column;
  }
  .prog:hover { background: linear-gradient(135deg, rgba(21,56,183,0.18), rgba(41,84,214,0.08)); border-color: rgba(41,84,214,0.5); transform: translateY(-4px); }
  .prog .num {
    font-family: 'Bebas Neue';
    font-size: 14px;
    letter-spacing: 0.2em;
    color: var(--silver-3);
    margin-bottom: 28px;
  }
  .prog h3 { font-family: 'Space Grotesk'; font-size: 30px; font-weight: 600; margin-bottom: 14px; letter-spacing: -0.01em; }
  .prog p { color: rgba(255,255,255,0.65); font-size: 14px; margin-bottom: 28px; flex-grow: 1; }
  .prog .arrow { display: inline-flex; align-items: center; gap: 8px; color: var(--silver-2); font-weight: 600; font-size: 13px; letter-spacing: 0.06em; text-transform: uppercase; }
  .prog .arrow::after { content: "→"; transition: transform .2s; }
  .prog:hover .arrow::after { transform: translateX(4px); }
  .prog.feature {
    grid-column: span 2;
    background: linear-gradient(135deg, var(--royal) 0%, var(--royal-deep) 100%);
    border-color: rgba(255,255,255,0.18);
    min-height: 320px;
  }
  .prog.feature h3 { font-size: 44px; max-width: 14ch; line-height: 1; margin-bottom: 20px; }
  .prog.feature p { color: rgba(255,255,255,0.85); font-size: 16px; max-width: 50ch; }
  .prog.feature::after {
    content: ""; position: absolute; right: -100px; top: -100px;
    width: 350px; height: 350px;
    background: radial-gradient(circle, rgba(230,233,239,0.15), transparent 60%);
  }

  /* THE CLASSIC FEATURE */
  .classic-feat {
    padding: 0;
    background: var(--royal-darker);
    color: white;
    position: relative;
    overflow: hidden;
  }
  .classic-feat .frame {
    min-height: 560px;
    background:
      linear-gradient(180deg, rgba(5,14,46,0.7), rgba(5,14,46,0.85)),
      radial-gradient(circle at 30% 30%, rgba(21,56,183,0.45), transparent 60%),
      radial-gradient(circle at 70% 70%, rgba(200,204,212,0.08), transparent 60%),
      var(--royal-darker);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 100px 0;
    position: relative;
  }
  /* Big watermark "CLASSIC" */
  .classic-feat .frame::before {
    content: "CLASSIC";
    position: absolute;
    top: 20%;
    right: -80px;
    font-family: 'Bebas Neue';
    font-size: clamp(180px, 22vw, 360px);
    color: rgba(200,204,212,0.04);
    letter-spacing: 0.02em;
    line-height: 0.85;
    pointer-events: none;
  }
  .classic-feat .container { position: relative; z-index: 2; }
  .classic-feat .grid { display: grid; grid-template-columns: 0.6fr 0.4fr; gap: 80px; align-items: center; }
  .classic-feat .num-large {
    font-family: 'Bebas Neue';
    font-size: clamp(80px, 11vw, 180px);
    letter-spacing: 0.005em;
    line-height: 0.85;
    background: var(--silver-grad);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 12px;
  }
  .classic-feat .label { font-size: 11px; letter-spacing: 0.32em; text-transform: uppercase; color: var(--silver-2); margin-bottom: 24px; display: inline-block; }
  .classic-feat h2 { font-family: 'Space Grotesk'; font-size: clamp(36px, 4vw, 56px); font-weight: 600; margin-bottom: 20px; letter-spacing: -0.02em; }
  .classic-feat p { font-size: 17px; color: rgba(255,255,255,0.75); max-width: 50ch; margin-bottom: 32px; line-height: 1.7; }
  .classic-feat .actions { display: flex; gap: 12px; flex-wrap: wrap; }
  .btn {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 16px 28px; border-radius: 999px;
    font-weight: 600; font-size: 14px;
    letter-spacing: 0.04em;
    transition: all .2s;
    border: 1px solid transparent;
  }
  .btn-silver { background: var(--silver-grad); color: var(--royal-deep); }
  .btn-silver:hover { transform: translateY(-2px); }
  .btn-outline-w { color: white; border-color: rgba(255,255,255,0.3); }
  .btn-outline-w:hover { background: rgba(255,255,255,0.1); }

  .classic-info {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px;
    padding: 32px;
  }
  .classic-info h4 { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--silver-2); margin-bottom: 20px; font-weight: 500; }
  .classic-info ul { list-style: none; }
  .classic-info li { display: grid; grid-template-columns: 1fr auto; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.06); font-size: 14px; }
  .classic-info li:last-child { border-bottom: none; }
  .classic-info li .k { color: rgba(255,255,255,0.6); }
  .classic-info li .v { color: white; font-weight: 600; }

  /* JOIN STRIP */
  .join-section { padding: 140px 0; background: var(--paper); }
  .join-card {
    background-image:
      linear-gradient(135deg, rgba(20,44,138,0.92) 0%, rgba(29,68,209,0.88) 60%, rgba(41,84,214,0.85) 100%),
      url('assets/images/join-marching.jpg');
    background-size: cover;
    background-position: center;
    border-radius: 32px;
    padding: 100px;
    color: white;
    display: grid;
    grid-template-columns: 0.6fr 0.4fr;
    gap: 80px;
    align-items: center;
    position: relative;
    overflow: hidden;
  }
  .join-card::after {
    content: ""; position: absolute; right: -150px; bottom: -150px;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(230,233,239,0.25), transparent 60%);
  }
  .join-card::before {
    content: "JOIN"; position: absolute; left: -40px; top: -40px;
    font-family: 'Bebas Neue';
    font-size: 280px;
    color: rgba(255,255,255,0.05);
    letter-spacing: 0.02em;
    line-height: 0.85;
  }
  .join-card > div { position: relative; z-index: 2; }
  .join-card h2 { font-family: 'Space Grotesk'; font-size: clamp(40px, 4.5vw, 64px); margin-bottom: 22px; letter-spacing: -0.02em; line-height: 1; }
  .join-card h2 em { background: var(--silver-grad); -webkit-background-clip: text; background-clip: text; color: transparent; font-style: italic; }
  .join-card p { color: rgba(255,255,255,0.85); margin-bottom: 32px; max-width: 48ch; font-size: 17px; line-height: 1.7; }
  .quote {
    border-left: 3px solid var(--silver-2);
    padding: 8px 0 8px 28px;
    font-size: 17px;
    color: rgba(255,255,255,0.92);
    line-height: 1.6;
    font-style: italic;
  }
  .quote .who { display: block; margin-top: 16px; font-size: 12px; color: var(--silver-2); letter-spacing: 0.18em; text-transform: uppercase; font-style: normal; }

  /* LATEST */
  .latest { padding: 140px 0; background: white; border-top: 1px solid #e6e9f1; }
  .latest .head { display: flex; justify-content: space-between; align-items: end; margin-bottom: 56px; }
  .latest .head .label { font-size: 11px; letter-spacing: 0.32em; text-transform: uppercase; color: var(--silver-3); }
  .latest h2 { font-family: 'Space Grotesk'; font-size: clamp(40px, 4.5vw, 64px); font-weight: 600; letter-spacing: -0.02em; margin-top: 14px; }
  .news-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
  .news {
    border: 1px solid #e6e9f1;
    border-radius: 18px;
    padding: 24px;
    transition: all .25s;
    background: white;
    display: flex; flex-direction: column;
    min-height: 280px;
  }
  .news:hover { border-color: var(--royal); transform: translateY(-4px); box-shadow: 0 24px 48px -16px rgba(21,56,183,0.18); }
  .news .img {
    aspect-ratio: 16 / 10;
    border-radius: 12px;
    margin: -8px -8px 20px;
    margin-top: -8px;
    background-image:
      linear-gradient(180deg, rgba(0,0,0,0.05), rgba(0,0,0,0.4)),
      url('assets/images/news-1.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
  }
  .news .img.alt-1 {
    background-image:
      linear-gradient(180deg, rgba(0,0,0,0.05), rgba(0,0,0,0.4)),
      url('assets/images/join-marching.jpg');
  }
  .news .img.alt-2 {
    background-image:
      linear-gradient(180deg, rgba(0,0,0,0.05), rgba(0,0,0,0.4)),
      url('assets/images/news-3.jpg');
  }
  .news .img.alt-3 {
    background-image:
      linear-gradient(180deg, rgba(0,0,0,0.05), rgba(0,0,0,0.4)),
      url('assets/images/welcome-feature.jpg');
  }
  .news .date { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--silver-3); margin-bottom: 10px; }
  .news .tag {
    display: inline-block;
    padding: 3px 10px; border-radius: 999px;
    background: rgba(21,56,183,0.1); color: var(--royal);
    font-size: 10px; font-weight: 700; letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 12px;
  }
  .news h3 { font-family: 'Space Grotesk'; font-size: 19px; font-weight: 600; line-height: 1.25; color: var(--black); margin-bottom: 10px; flex-grow: 1; }
  .news .more { font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--royal); font-weight: 700; }

  /* SPONSORS */
  .sponsors { padding: 100px 0; background: var(--paper); border-top: 1px solid #e6e9f1; }
  .sponsors .head { text-align: center; margin-bottom: 56px; }
  .sponsors .label { font-size: 11px; letter-spacing: 0.32em; text-transform: uppercase; color: var(--silver-3); }
  .sponsors h2 { font-family: 'Space Grotesk'; font-size: 40px; margin: 12px 0 8px; color: var(--black); }
  .sponsors .sub { color: #5b6680; font-size: 15px; }
  .sponsors .sub a { color: var(--royal); font-weight: 600; text-decoration: underline; text-underline-offset: 4px; }
  .sponsor-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; align-items: center; }
  .sponsor {
    aspect-ratio: 5 / 3;
    background: white;
    border: 1px solid #e6e9f1;
    border-radius: 12px;
    display: grid; place-items: center;
    color: #5b6680;
    font-weight: 600;
    font-size: 12px;
    text-align: center;
    padding: 16px;
    transition: all .2s;
  }
  .sponsor:hover { background: var(--royal); color: white; border-color: var(--royal-deep); }

  /* FOOTER */
  footer.site {
    background: var(--black);
    color: rgba(255,255,255,0.7);
    padding: 100px 0 32px;
    border-top: 4px solid var(--royal);
    position: relative;
    overflow: hidden;
  }
  footer.site::before {
    content: "SILVER SOUND";
    position: absolute;
    bottom: -60px;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'Bebas Neue';
    font-size: clamp(140px, 18vw, 280px);
    color: rgba(200,204,212,0.03);
    letter-spacing: 0.02em;
    pointer-events: none;
    white-space: nowrap;
  }
  footer.site .container { position: relative; z-index: 2; }
  footer.site .grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 64px; }
  footer.site h4 { color: white; font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 22px; font-weight: 600; }
  footer.site a { display: block; color: rgba(255,255,255,0.6); padding: 5px 0; font-size: 14px; transition: color .2s; }
  footer.site a:hover { color: var(--silver-2); }
  footer.site .copy { padding-top: 36px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; font-size: 12px; letter-spacing: 0.06em; color: rgba(255,255,255,0.4); }

  @media (max-width: 1100px) {
    .hero {
      min-height: 0;
      padding: 0;
      display: flex;
      flex-direction: column-reverse;
    }
    .hero-text-col { padding: 32px; flex: 1; }
    .hero-photo {
      flex: 0 0 auto;
      width: 100%;
      aspect-ratio: 16 / 11;
    }
    .hero-photo::before {
      background: linear-gradient(180deg, transparent 60%, rgba(5,14,46,0.6) 100%);
    }
    .hero-text { max-width: 100%; }
    .show .container, .welcome .container, .programs .head, .join-card, .classic-feat .grid { grid-template-columns: 1fr; gap: 40px; padding: 0; }
    .grid-progs { grid-template-columns: 1fr; }
    .prog.feature { grid-column: auto; }
    .news-grid { grid-template-columns: 1fr 1fr; }
    .stats { grid-template-columns: 1fr 1fr; }
    .sponsor-grid { grid-template-columns: repeat(3, 1fr); }
    nav.main .nav-item { display: none; }
    .nav-cta { margin-left: 0; gap: 6px; }
    nav.main .donate { padding: 9px 14px; font-size: 11px; letter-spacing: 0.08em; }
    nav.main .join { padding: 9px 14px; font-size: 11px; letter-spacing: 0.08em; }
    .cta-cluster { grid-template-columns: 1fr 1fr; max-width: 100%; }
    .join-card { padding: 48px 32px; }
    footer.site .grid { grid-template-columns: 1fr 1fr; }
    .hero-stats { gap: 32px; }
  }
  /* MOBILE NAV (hamburger + overlay) */
  .nav-toggle { display: none; width: 44px; height: 44px; margin-left: 8px; background: transparent; border: 1px solid rgba(255,255,255,0.28); border-radius: 999px; color: white; cursor: pointer; align-items: center; justify-content: center; padding: 0; }
  .nav-toggle .bars { width: 18px; height: 12px; position: relative; display: inline-block; }
  .nav-toggle .bars span { position: absolute; left: 0; right: 0; height: 2px; background: white; border-radius: 1px; transition: transform .2s, opacity .2s, top .2s; }
  .nav-toggle .bars span:nth-child(1) { top: 0; }
  .nav-toggle .bars span:nth-child(2) { top: 5px; }
  .nav-toggle .bars span:nth-child(3) { top: 10px; }
  body.menu-open .nav-toggle .bars span:nth-child(1) { top: 5px; transform: rotate(45deg); }
  body.menu-open .nav-toggle .bars span:nth-child(2) { opacity: 0; }
  body.menu-open .nav-toggle .bars span:nth-child(3) { top: 5px; transform: rotate(-45deg); }
  .mobile-menu { position: fixed; top: 88px; left: 0; right: 0; bottom: 0; background: var(--royal-deep); z-index: 49; overflow-y: auto; padding: 24px 32px 80px; transform: translateY(-100%); transition: transform .25s ease; visibility: hidden; }
  body.menu-open .mobile-menu { transform: translateY(0); visibility: visible; }
  .mobile-menu a { display: block; padding: 14px 0; color: white; font-size: 16px; font-weight: 600; border-bottom: 1px solid rgba(255,255,255,0.1); text-decoration: none; letter-spacing: 0.02em; }
  .mobile-menu a:hover, .mobile-menu a:focus { color: var(--silver-2); }
  .mobile-menu .mm-label { display: block; margin-top: 24px; padding-bottom: 4px; font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 700; color: var(--silver-3); }
  .mobile-menu .mm-label:first-child { margin-top: 0; }
  body.menu-open { overflow: hidden; }
  @media (max-width: 900px) { .nav-toggle { display: inline-flex; } nav.main .nav-item { display: none; } .nav-cta { margin-left: 0; gap: 6px; } nav.main .donate, nav.main .join { padding: 9px 14px; font-size: 11px; letter-spacing: 0.08em; } }
  @media (max-width: 540px) { .container { padding: 0 20px; } h1 { font-size: clamp(36px, 9vw, 56px) !important; } section.std, section.featured, section.welcome, section.programs { padding: 60px 0 !important; } footer.site .grid { grid-template-columns: 1fr !important; gap: 32px !important; } .topbar .container span:first-child { display: none; } }

/* === MOBILE-FIXES-PATCH-2026-05-21 (revised 2026-05-24) === */
/* ============================================================
   MOBILE READINESS PATCH — 2026-05-21 / revised 2026-05-24.
   The earlier version applied `html, body { max-width: 100vw }`
   globally, which collided with the desktop layout (visible
   scroll box inside the header, content clipped). The overflow
   guard now lives inside the mobile media query below.
   ============================================================ */

/* 2. Clip oversize watermark/hero decoration on phones */
section.hero { overflow: hidden; }
.watermark { max-width: 100%; pointer-events: none; }

/* 3. Hamburger always sits above page chrome */
.nav-toggle { position: relative; z-index: 60; }

/* 4. Make hamburger reliable on touch (no hover-trap, no double-tap zoom) */
.nav-toggle, .mobile-menu a { -webkit-tap-highlight-color: rgba(255,255,255,0.18); touch-action: manipulation; }

/* 5. Add a dimmed backdrop behind the open menu */
.mobile-menu-backdrop {
  position: fixed; inset: 0; background: rgba(5,10,40,0.55);
  z-index: 48; opacity: 0; visibility: hidden;
  transition: opacity .2s ease, visibility .2s;
}
body.menu-open .mobile-menu-backdrop { opacity: 1; visibility: visible; }

/* 6. Mobile breakpoint — compact header, drawer-style menu */
@media (max-width: 900px) {
  /* Lock horizontal overflow on phones only — desktop must not be constrained. */
  html, body { overflow-x: hidden; }
  .topbar { display: none; }
  header.site .container { height: 64px; }
  .brand { gap: 10px; }
  .brand-logo { height: 38px; }
  .brand-text { font-size: 20px; letter-spacing: 0.04em; }
  /* On phones, drop the leading "EAST LAKE" word — keep eagle + SILVER SOUND */
  .brand .brand-text:first-child { display: none; }
  /* Hide desktop CTAs from the header bar on mobile (they live in the drawer) */
  nav.main .nav-cta { display: none; }
  /* Drawer position */
  .mobile-menu { top: 64px; padding: 18px 22px 96px; }
  .mobile-menu a { padding: 12px 0; font-size: 15px; }
  .mobile-menu .mm-label { margin-top: 20px; font-size: 10px; }
  /* Pinned CTAs at bottom of drawer */
  .mobile-menu .mm-cta { display: flex; gap: 10px; margin-top: 28px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.18); }
  .mobile-menu .mm-cta a { flex: 1; text-align: center; padding: 14px 12px; border-radius: 999px; border: 1px solid rgba(255,255,255,0.4); font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; }
  .mobile-menu .mm-cta a.join { background: var(--silver); color: var(--royal-deep); border-color: transparent; font-weight: 700; }
}

/* 7. Very small phones (sub-380px) — tighten further */
@media (max-width: 380px) {
  .brand-logo { height: 32px; }
  .brand-text { font-size: 17px; }
  .nav-toggle { width: 40px; height: 40px; }
  .container { padding: 0 16px; }
  .mobile-menu { padding: 16px 18px 96px; }
}

/* 8. Belt + suspenders: ensure the hamburger is visible at all mobile widths
   (the original @media at-r