/* ==========================================================================
   Aledo Wrestling Club — design tokens + components
   ========================================================================== */

:root {
  /* Type scale */
  --text-xs: clamp(0.75rem, 0.72rem + 0.16vw, 0.8125rem);
  --text-sm: clamp(0.875rem, 0.84rem + 0.2vw, 0.9375rem);
  --text-base: clamp(1rem, 0.96rem + 0.2vw, 1.0625rem);
  --text-lg: clamp(1.125rem, 1.05rem + 0.4vw, 1.375rem);
  --text-xl: clamp(1.5rem, 1.2rem + 1.25vw, 2.25rem);
  --text-2xl: clamp(2rem, 1.2rem + 2.6vw, 3.5rem);
  --text-3xl: clamp(2.5rem, 1rem + 4.2vw, 5rem);
  --text-hero: clamp(2.75rem, 0.4rem + 7.4vw, 7.5rem);

  /* Spacing (4px base) */
  --space-1: 0.25rem;  --space-2: 0.5rem;   --space-3: 0.75rem;
  --space-4: 1rem;     --space-5: 1.25rem;  --space-6: 1.5rem;
  --space-8: 2rem;     --space-10: 2.5rem;  --space-12: 3rem;
  --space-16: 4rem;    --space-20: 5rem;    --space-24: 6rem;
  --space-32: 8rem;

  /* Brand palette — AWC orange + charcoal (from the club's own graphics) */
  --ink:      #232326;   /* charcoal, primary dark surface */
  --ink-2:    #2e2e33;   /* raised charcoal panel */
  --ink-3:    #3a3a41;   /* hairline / raised edge */
  --orange:   #f4791f;   /* primary accent */
  --orange-hot: #ff8c33; /* hover */
  --orange-deep: #ad4b00;/* orange that meets AA on white for small text */
  --paper:    #ffffff;
  --paper-2:  #f5f3f0;
  --navy-accent: #16233d; /* used sparingly on the Texas Select block */

  /* Legacy aliases kept so component rules stay readable */
  --navy-900: var(--ink);
  --navy-800: var(--ink-2);
  --navy-700: var(--ink-3);
  --navy-600: #4a4a52;
  --gold: var(--orange);
  --gold-light: var(--orange-hot);
  --gold-deep: var(--orange-deep);
  --cream: var(--paper);
  --cream-2: var(--paper-2);
  --charcoal: var(--ink);

  /* Radii */
  --radius-sm: 0.25rem;
  --radius-md: 0.375rem;
  --radius-lg: 0.625rem;
  --radius-full: 9999px;

  --transition-interactive: 200ms cubic-bezier(0.16, 1, 0.3, 1);

  /* Content widths */
  --content-narrow: 640px;
  --content-default: 1000px;
  --content-wide: 1240px;

  /* Fonts */
  --font-display: 'Archivo', 'Arial Narrow', 'Helvetica Neue', sans-serif;
  --font-body: 'Satoshi', 'Inter', 'Helvetica Neue', sans-serif;
}

/* ---------- Themes -------------------------------------------------- */
:root,
[data-theme='light'] {
  --color-bg: var(--paper);
  --color-surface: #ffffff;
  --color-surface-offset: var(--paper-2);
  --color-text: #1b1b1e;
  --color-text-muted: #5a5a63;
  --color-text-onnavy: #ffffff;
  --color-text-onnavy-muted: #c9c9d0;
  --color-border: rgba(27, 27, 30, 0.14);
  --color-border-strong: rgba(27, 27, 30, 0.28);
  --color-gold: var(--orange-deep);
  --color-gold-graphic: var(--orange);
  --color-band: var(--ink);
  --color-focus: var(--orange-deep);
  --shadow-sm: 0 1px 2px rgba(20, 20, 22, 0.08);
  --shadow-md: 0 2px 4px rgba(20, 20, 22, 0.07), 0 10px 28px rgba(20, 20, 22, 0.09);
  --shadow-lg: 0 4px 8px rgba(20, 20, 22, 0.09), 0 20px 48px rgba(20, 20, 22, 0.14);
}

[data-theme='dark'] {
  --color-bg: var(--ink);
  --color-surface: var(--ink-2);
  --color-surface-offset: #33333a;
  --color-text: #ffffff;
  --color-text-muted: #c9c9d0;
  --color-text-onnavy: #ffffff;
  --color-text-onnavy-muted: #c9c9d0;
  --color-border: rgba(255, 255, 255, 0.16);
  --color-border-strong: rgba(255, 255, 255, 0.32);
  --color-gold: var(--orange);
  --color-gold-graphic: var(--orange);
  --color-band: var(--ink-2);
  --color-focus: var(--orange-hot);
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.4);
  --shadow-md: 0 2px 6px rgba(0, 0, 0, 0.4), 0 12px 28px rgba(0, 0, 0, 0.34);
  --shadow-lg: 0 6px 14px rgba(0, 0, 0, 0.45), 0 24px 56px rgba(0, 0, 0, 0.45);
}

/* ---------- Typography ---------------------------------------------- */
.display,
h1, h2.section-title, .cta-band h2, .stat-num, .btn, .nav-link, .eyebrow, .card-num {
  font-family: var(--font-display);
}

h1, h2.section-title, .cta-band h2 {
  font-variation-settings: 'wdth' 74, 'wght' 850;
  text-transform: uppercase;
  letter-spacing: -0.005em;
}

h1 { font-size: var(--text-2xl); }
.hero h1 { font-size: var(--text-hero); line-height: 0.9; }
h2.section-title { font-size: var(--text-xl); }
h3 { font-size: var(--text-lg); font-weight: 700; letter-spacing: -0.01em; }
h4 { font-size: var(--text-base); font-weight: 700; }

.eyebrow {
  display: inline-block;
  font-variation-settings: 'wdth' 100, 'wght' 700;
  font-size: var(--text-xs);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: var(--space-4);
}
.eyebrow--onnavy { color: var(--gold-light); }

.lede { font-size: var(--text-lg); color: var(--color-text-muted); max-width: 46ch; }
p { max-width: 68ch; }
.prose p + p { margin-top: var(--space-4); }
.muted { color: var(--color-text-muted); }

.rule {
  width: 64px; height: 4px; background: var(--color-gold-graphic);
  border: 0; margin: 0 0 var(--space-6);
}

/* ---------- Layout --------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--content-wide);
  margin-inline: auto;
  padding-inline: var(--space-5);
}
.container--narrow { max-width: 780px; }

.section { padding-block: clamp(var(--space-12), 7vw, var(--space-24)); }
.section--tight { padding-block: clamp(var(--space-10), 5vw, var(--space-16)); }
.section--airy { padding-block: clamp(var(--space-16), 10vw, var(--space-32)); }

.band-navy {
  background: var(--navy-800);
  color: var(--color-text-onnavy);
}
.band-navy p, .band-navy li { color: var(--color-text-onnavy-muted); }
.band-navy h2.section-title, .band-navy h3, .band-navy h4 { color: #fff; }
.band-deep { background: var(--navy-900); color: var(--color-text-onnavy); }
.band-offset { background: var(--color-surface-offset); }

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(var(--space-8), 5vw, var(--space-16));
  align-items: center;
}
.split > * { min-width: 0; }
@media (min-width: 880px) {
  .split { grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr); }
  .split--wide-left { grid-template-columns: minmax(0, 1.3fr) minmax(0, 0.7fr); }
  .split--flip > *:first-child { order: 2; }
}

/* ---------- Header --------------------------------------------------- */
.skip-link {
  position: absolute; left: var(--space-4); top: -100px; z-index: 200;
  background: var(--gold); color: var(--navy-900); padding: var(--space-3) var(--space-5);
  font-weight: 700; border-radius: var(--radius-sm);
}
.skip-link:focus { top: var(--space-3); }

.site-header {
  position: sticky; top: 0; z-index: 90;
  background: var(--navy-900);
  border-bottom: 1px solid rgba(244, 121, 31, 0.28);
}
.header-inner {
  display: flex; align-items: center; gap: var(--space-5);
  min-height: 68px; padding-block: var(--space-3);
}
.brand { display: flex; align-items: center; min-height: 44px; flex: 0 0 auto; color: #fff; text-decoration: none; }
.brand svg { height: 38px; width: auto; }
@media (min-width: 640px) { .brand svg { height: 46px; } }

.primary-nav { margin-left: auto; }
.nav-list { display: flex; align-items: center; gap: var(--space-1); list-style: none; }
.nav-link {
  display: inline-flex; align-items: center; min-height: 44px;
  padding: var(--space-2) var(--space-3);
  font-size: var(--text-sm);
  font-variation-settings: 'wdth' 96, 'wght' 650;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: #e4e4e8; text-decoration: none;
  border-bottom: 2px solid transparent;
}
.nav-link:hover { color: var(--gold-light); }
.nav-link[aria-current='page'] { color: #fff; border-bottom-color: var(--gold); }

.header-actions { display: flex; align-items: center; gap: var(--space-2); }

.theme-toggle {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; color: #e4e4e8;
  border: 1px solid rgba(255, 255, 255, 0.2); border-radius: var(--radius-full);
}
.theme-toggle:hover { color: var(--gold-light); border-color: var(--gold); }

.nav-toggle {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.24); border-radius: var(--radius-sm);
}
.nav-toggle:hover { border-color: var(--gold); color: var(--gold-light); }

@media (max-width: 1023px) {
  .nav-toggle { display: inline-flex; }
  .header-actions .header-cta { display: none; }
  .primary-nav {
    position: fixed; inset: 68px 0 auto 0;
    background: var(--navy-900);
    border-bottom: 3px solid var(--gold);
    padding: var(--space-4) var(--space-5) var(--space-8);
    max-height: calc(100dvh - 68px); overflow-y: auto;
    display: none;
  }
  .primary-nav.is-open { display: block; }
  .nav-list { flex-direction: column; align-items: stretch; gap: 0; }
  .nav-link {
    display: flex; width: 100%;
    font-size: var(--text-lg); padding: var(--space-4) 0; min-height: 56px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }
  .nav-link[aria-current='page'] { border-bottom-color: var(--gold); }
  .nav-list .btn { margin-top: var(--space-5); width: 100%; justify-content: center; }
}
@media (min-width: 1024px) {
  .nav-toggle { display: none; }
  .nav-list .nav-cta-mobile { display: none; }
}
@media (max-width: 1023px) {
  .nav-list .nav-cta-mobile { display: block; }
}

/* ---------- Buttons -------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: var(--space-2);
  min-height: 48px; padding: var(--space-3) var(--space-6);
  font-size: var(--text-sm);
  font-variation-settings: 'wdth' 92, 'wght' 750;
  letter-spacing: 0.1em; text-transform: uppercase; text-decoration: none;
  border-radius: var(--radius-sm); border: 2px solid transparent;
}
.btn-primary { background: var(--gold); color: var(--navy-900); border-color: var(--gold); }
.btn-primary:hover { background: var(--gold-light); border-color: var(--gold-light); transform: translateY(-1px); }
.btn-primary:active { transform: translateY(0); }

.btn-outline { border-color: currentColor; color: var(--color-text); }
.btn-outline:hover { background: var(--color-text); color: var(--color-bg); }
.btn-outline--onnavy { color: #fff; }
.btn-outline--onnavy:hover { background: #fff; color: var(--navy-900); }

.btn-sm { min-height: 42px; padding: var(--space-2) var(--space-4); }
.btn-row { display: flex; flex-wrap: wrap; gap: var(--space-3); margin-top: var(--space-8); }

.textlink {
  color: var(--color-gold); font-weight: 600;
  text-decoration: underline; text-underline-offset: 3px;
  text-decoration-thickness: 2px; text-decoration-color: rgba(244, 121, 31, 0.5);
}
.textlink:hover { text-decoration-color: currentColor; }
.band-navy .textlink, .band-deep .textlink { color: var(--gold-light); }

.arrow-link {
  display: inline-flex; align-items: center; gap: var(--space-2); min-height: 44px;
  font-family: var(--font-display);
  font-variation-settings: 'wdth' 94, 'wght' 700;
  font-size: var(--text-sm); letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--color-gold);
  text-decoration: underline; text-underline-offset: 7px;
  text-decoration-thickness: 2px; text-decoration-color: rgba(244, 121, 31, 0.55);
}
.arrow-link:hover { text-decoration-color: currentColor; }
.arrow-link span { transition: transform var(--transition-interactive); }
.arrow-link:hover span { transform: translateX(4px); }

/* ---------- Reviews wall ---------------------------------------------- */
.reviews-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--space-6);
}
.reviews-score {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin: 0 0 var(--space-2);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}
.reviews-score strong { color: var(--color-text); font-size: var(--text-base); }
.stars {
  display: inline-flex;
  gap: 2px;
  color: var(--color-accent, var(--orange));
  flex: none;
}
.stars svg { width: 15px; height: 15px; display: block; }

.review-wall {
  columns: 3 300px;
  column-gap: var(--space-6);
}
.review {
  break-inside: avoid;
  -webkit-column-break-inside: avoid;
  page-break-inside: avoid;
  margin: 0 0 var(--space-6);
  padding: var(--space-6);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
.review blockquote { margin: var(--space-4) 0 var(--space-5); }
.review blockquote p {
  margin: 0;
  font-size: var(--text-sm);
  line-height: 1.65;
  color: var(--color-text);
}
.review figcaption {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}
.review-avatar {
  flex: none;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--color-accent, var(--orange));
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  display: grid;
  place-items: center;
}
.review-who { display: flex; flex-direction: column; line-height: 1.25; }
.review-who strong { font-size: var(--text-sm); }
.review-when { font-size: 0.8125rem; color: var(--color-text-muted); }

@media (max-width: 560px) {
  .review-wall { columns: 1; }
  .reviews-head { display: block; }
  .reviews-score { margin-top: var(--space-5); }
}

/* Club rally cry — pirate flags + Parker County Wrestling */
.rallycry {
  margin-top: var(--space-4);
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: var(--text-lg);
  line-height: 1.25;
  color: var(--orange-deep);
}
@media (prefers-color-scheme: dark) {
  .rallycry { color: var(--orange-hot); }
}
:root[data-theme="dark"] .rallycry { color: var(--orange-hot); }
:root[data-theme="light"] .rallycry { color: var(--orange-deep); }
@media (max-width: 560px) {
  .rallycry { font-size: var(--text-base); letter-spacing: 0.02em; text-wrap: balance; }
}
.band-navy .arrow-link, .band-deep .arrow-link, .hero .arrow-link { color: var(--gold-light); }

/* ---------- Hero ----------------------------------------------------- */
.hero {
  position: relative; isolation: isolate;
  background: var(--navy-900);
  color: #fff;
  padding-block: clamp(var(--space-16), 11vw, var(--space-32));
  overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0; z-index: -2;
  background-image: var(--hero-img);
  background-position: var(--hero-pos, center 38%);
  background-size: cover; background-repeat: no-repeat;
  opacity: 0.85;
}
.hero::after {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(97deg, rgba(24, 24, 26, 0.96) 0%, rgba(24, 24, 26, 0.88) 42%, rgba(24, 24, 26, 0.5) 72%, rgba(24, 24, 26, 0.35) 100%),
    linear-gradient(180deg, rgba(24, 24, 26, 0.55) 0%, rgba(24, 24, 26, 0) 34%);
}
.hero-inner { max-width: 900px; }
.hero h1 { color: #fff; }
.hero h1 .line-gold { color: var(--gold-light); display: block; }
.hero .lede { color: #e4e4e8; max-width: 46ch; margin-top: var(--space-6); font-size: var(--text-lg); }
.hero-meta {
  margin-top: var(--space-8); padding-top: var(--space-5);
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  display: flex; flex-wrap: wrap; gap: var(--space-2) var(--space-6);
  font-size: var(--text-sm); color: #c0c0c8;
}

.page-hero {
  position: relative; isolation: isolate; overflow: hidden;
  background: var(--navy-900); color: #fff;
  padding-block: clamp(var(--space-12), 8vw, var(--space-24));
}
.page-hero::before {
  content: ''; position: absolute; inset: 0; z-index: -2;
  background-image: var(--hero-img);
  background-position: var(--hero-pos, center 34%);
  background-size: cover; background-repeat: no-repeat;
}
.page-hero::after {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(96deg, rgba(24, 24, 26, 0.95) 0%, rgba(24, 24, 26, 0.85) 46%, rgba(24, 24, 26, 0.55) 100%),
    linear-gradient(180deg, rgba(24, 24, 26, 0.5) 0%, rgba(24, 24, 26, 0) 40%);
}
.page-hero h1 { color: #fff; max-width: 18ch; }
.page-hero .lede { color: #d5d5db; margin-top: var(--space-5); max-width: 52ch; }

/* diagonal cut used sparingly (hero bottom edge only) */
.cut-bottom { clip-path: polygon(0 0, 100% 0, 100% 100%, 0 calc(100% - 3.2vw)); }

/* ---------- Marquee strip -------------------------------------------- */
.levels-strip {
  background: var(--gold);
  color: var(--navy-900);
  padding-block: var(--space-3);
  overflow: hidden;
}
.levels-strip ul {
  display: flex; flex-wrap: wrap; justify-content: center; gap: var(--space-2) var(--space-6);
  list-style: none;
  font-family: var(--font-display);
  font-variation-settings: 'wdth' 88, 'wght' 750;
  font-size: var(--text-sm); letter-spacing: 0.14em; text-transform: uppercase;
}
.levels-strip li { display: flex; align-items: center; gap: var(--space-6); }
.levels-strip li:not(:last-child)::after {
  content: ''; width: 6px; height: 6px; background: var(--navy-900); transform: rotate(45deg);
}

/* ---------- Cards / lists -------------------------------------------- */
.card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: clamp(var(--space-5), 3vw, var(--space-8));
  box-shadow: var(--shadow-sm);
}
.band-navy .card, .band-deep .card,
.band-navy .callout, .band-deep .callout,
.band-navy .tier, .band-deep .tier {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: none;
}
.band-navy .card p, .band-deep .card p,
.band-navy .callout p, .band-deep .callout p,
.band-navy .info-value, .band-deep .info-value,
.band-navy .muted, .band-deep .muted,
.band-navy .tier li, .band-deep .tier li,
.band-navy .step p, .band-deep .step p,
.band-navy .level p, .band-deep .level p,
.band-navy .faq .faq-body p, .band-deep .faq .faq-body p,
.band-navy .form-note, .band-deep .form-note,
.band-navy .field label, .band-deep .field label,
.band-navy .sched-table caption, .band-deep .sched-table caption,
.band-navy .info-list dt, .band-deep .info-list dt {
  color: var(--color-text-onnavy-muted);
}
.band-navy .card h3, .band-deep .card h3,
.band-navy .callout h3, .band-deep .callout h3,
.band-navy .step h3, .band-deep .step h3,
.band-navy .faq summary, .band-deep .faq summary { color: #fff; }
.band-navy .faq, .band-deep .faq,
.band-navy .faq details, .band-deep .faq details,
.band-navy .levels, .band-deep .levels,
.band-navy .level, .band-deep .level { border-color: rgba(255, 255, 255, 0.18); }
.band-navy .field input, .band-navy .field textarea,
.band-deep .field input, .band-deep .field textarea {
  background: rgba(24, 24, 26, 0.55);
  border-color: rgba(255, 255, 255, 0.3);
  color: #fff;
}
.band-navy .field input::placeholder, .band-navy .field textarea::placeholder { color: #8e9bb2; }
.band-navy .level-name, .band-deep .level-name { color: #fff; }
.card h3 { margin-bottom: var(--space-3); }
.card p { color: var(--color-text-muted); font-size: var(--text-base); }

.grid-2, .grid-3 { display: grid; grid-template-columns: minmax(0, 1fr); gap: var(--space-5); }
@media (min-width: 720px) { .grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 880px) { .grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); } }

/* Level rows: staggered numbered list, not a symmetric 3-up grid */
.levels { list-style: none; border-top: 1px solid var(--color-border); }
.level {
  display: grid; grid-template-columns: minmax(0, 1fr); gap: var(--space-2) var(--space-6);
  padding-block: clamp(var(--space-6), 3vw, var(--space-10));
  border-bottom: 1px solid var(--color-border);
}
@media (min-width: 780px) {
  .level { grid-template-columns: 4.5rem 15rem minmax(0, 1fr); align-items: start; }
}
.level-num {
  font-family: var(--font-display);
  font-variation-settings: 'wdth' 70, 'wght' 800;
  font-size: var(--text-lg); color: var(--color-gold); letter-spacing: 0.04em;
}
.level-name {
  font-family: var(--font-display);
  font-variation-settings: 'wdth' 76, 'wght' 800;
  font-size: var(--text-lg); text-transform: uppercase; letter-spacing: 0.01em;
}
.level-when {
  display: block; margin-top: var(--space-1);
  font-family: var(--font-body); font-size: var(--text-xs); letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--color-text-muted); font-weight: 600;
}
.level p { color: var(--color-text-muted); }

/* Feature callout: one wide + two narrow (asymmetric) */
.feature-grid { display: grid; grid-template-columns: minmax(0, 1fr); gap: var(--space-5); }
@media (min-width: 880px) {
  .feature-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .feature-grid > .feature-wide { grid-column: 1 / -1; }
}
.feature-wide {
  display: grid; grid-template-columns: minmax(0, 1fr); gap: var(--space-5); align-items: center;
  background: var(--navy-800); color: #fff;
  border-radius: var(--radius-lg);
  padding: clamp(var(--space-6), 4vw, var(--space-12));
}
@media (min-width: 780px) { .feature-wide { grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr); gap: var(--space-10); } }
.feature-wide h3 { color: #fff; font-size: var(--text-xl); font-family: var(--font-display);
  font-variation-settings: 'wdth' 76, 'wght' 820; text-transform: uppercase; }
.feature-wide p { color: #cbcbd2; }

/* ---------- Stats ---------------------------------------------------- */
.stat-row { display: grid; grid-template-columns: minmax(0, 1fr); gap: var(--space-6); }
@media (min-width: 640px) { .stat-row { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
.stat-num {
  font-variation-settings: 'wdth' 72, 'wght' 850;
  font-size: var(--text-xl); color: var(--gold-light); line-height: 1;
}
.stat-label {
  display: block; margin-top: var(--space-2); font-size: var(--text-xs);
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--color-text-onnavy-muted);
}

/* ---------- Schedule table ------------------------------------------- */
.table-wrap { max-width: 100%; overflow-x: auto; -webkit-overflow-scrolling: touch; }
.sched-table { font-size: var(--text-base); min-width: 440px; }
.sched-table caption {
  text-align: left; font-size: var(--text-xs); letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--color-text-muted);
  padding-bottom: var(--space-3);
}
.sched-table th, .sched-table td {
  text-align: left; padding: var(--space-4) var(--space-4);
  border-bottom: 1px solid var(--color-border);
}
.sched-table thead th {
  font-family: var(--font-display);
  font-variation-settings: 'wdth' 92, 'wght' 750;
  font-size: var(--text-xs); letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--color-text-muted); border-bottom: 2px solid var(--color-border-strong);
}
.sched-table tbody th { font-weight: 700; white-space: nowrap; }
.sched-table td.group { font-weight: 600; color: var(--color-gold); white-space: nowrap; }
.sched-table tbody tr:hover { background: var(--color-surface-offset); }
.band-navy .sched-table th, .band-navy .sched-table td { border-color: rgba(255, 255, 255, 0.16); }
.band-navy .sched-table thead th { color: #cbcbd2; }
.band-navy .sched-table tbody th { color: #fff; }
.band-navy .sched-table td { color: #d5d5db; }
.band-navy .sched-table td.group { color: var(--gold-light); }
.band-navy .sched-table tbody tr:hover { background: rgba(255, 255, 255, 0.05); }
.scroll-hint { font-size: var(--text-xs); color: var(--color-text-muted); margin-top: var(--space-3); }
@media (min-width: 620px) { .scroll-hint { display: none; } }

/* ---------- Media / gallery placeholders ------------------------------ */
.gallery { display: grid; gap: var(--space-4); grid-template-columns: repeat(2, minmax(0, 1fr)); }
@media (min-width: 780px) { .gallery { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
.tile {
  position: relative;
  aspect-ratio: 4 / 3;
  border: 1px dashed var(--color-border-strong);
  border-radius: var(--radius-md);
  background:
    repeating-linear-gradient(135deg, transparent 0 10px, rgba(244, 121, 31, 0.07) 10px 20px),
    var(--color-surface-offset);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: var(--space-3);
}
.tile--tall { aspect-ratio: 3 / 4; }
@media (min-width: 780px) { .tile--feature { grid-column: span 2; grid-row: span 2; aspect-ratio: auto; } }
.tile-label {
  font-family: var(--font-display);
  font-variation-settings: 'wdth' 92, 'wght' 700;
  font-size: var(--text-xs); letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--color-text-muted);
}
.tile-icon { position: absolute; top: var(--space-3); right: var(--space-3); color: var(--color-gold); opacity: 0.55; }

.video-slot {
  aspect-ratio: 16 / 9;
  border: 1px dashed var(--color-border-strong);
  border-radius: var(--radius-md);
  background: var(--color-surface-offset);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: var(--space-3); text-align: center; padding: var(--space-5);
}
.video-slot .tile-label { color: var(--color-text-muted); }

/* Lightbox (ready for real photos) */
.lightbox {
  position: fixed; inset: 0; z-index: 120; display: none;
  align-items: center; justify-content: center;
  background: rgba(24, 24, 26, 0.94); padding: var(--space-6);
}
.lightbox.is-open { display: flex; }
.lightbox img { max-height: 84dvh; width: auto; border-radius: var(--radius-md); }
.lightbox-caption { color: #d5d5db; font-size: var(--text-sm); margin-top: var(--space-4); text-align: center; }
.lightbox-close {
  position: absolute; top: var(--space-4); right: var(--space-4);
  width: 48px; height: 48px; color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.3); border-radius: var(--radius-full);
  display: flex; align-items: center; justify-content: center;
}
.lightbox-close:hover { border-color: var(--gold); color: var(--gold-light); }

/* ---------- Checklist / steps ---------------------------------------- */
.checklist { list-style: none; display: grid; gap: var(--space-4); }
.checklist li { display: grid; grid-template-columns: 22px 1fr; gap: var(--space-3); align-items: start; }
.checklist svg { margin-top: 0.28em; color: var(--color-gold); flex: none; }
.checklist span { color: var(--color-text-muted); }
.band-navy .checklist span { color: var(--color-text-onnavy-muted); }
.band-navy .checklist svg { color: var(--gold-light); }

.steps { list-style: none; counter-reset: step; display: grid; gap: var(--space-6); }
.step { display: grid; grid-template-columns: 3rem 1fr; gap: var(--space-5); align-items: start; }
.step::before {
  counter-increment: step; content: counter(step, decimal-leading-zero);
  font-family: var(--font-display);
  font-variation-settings: 'wdth' 70, 'wght' 800;
  font-size: var(--text-lg); color: var(--color-gold); line-height: 1.2;
}
.step h3 { margin-bottom: var(--space-2); }
.step p { color: var(--color-text-muted); }

/* ---------- FAQ ------------------------------------------------------- */
.faq { border-top: 1px solid var(--color-border); }
.faq details { border-bottom: 1px solid var(--color-border); }
.faq summary {
  display: flex; justify-content: space-between; align-items: center; gap: var(--space-4);
  padding: var(--space-5) 0; cursor: pointer; list-style: none;
  font-family: var(--font-display);
  font-variation-settings: 'wdth' 88, 'wght' 750;
  font-size: var(--text-base); text-transform: uppercase; letter-spacing: 0.04em;
  min-height: 48px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--color-gold); }
.faq summary::after {
  content: ''; flex: none; width: 12px; height: 12px;
  border-right: 2px solid var(--color-gold); border-bottom: 2px solid var(--color-gold);
  transform: rotate(45deg) translateY(-3px);
  transition: transform var(--transition-interactive);
}
.faq details[open] summary::after { transform: rotate(-135deg) translateY(-3px); }
.faq .faq-body { padding-bottom: var(--space-5); }
.faq .faq-body p { color: var(--color-text-muted); max-width: 68ch; }
.faq .faq-body p + p { margin-top: var(--space-3); }

/* ---------- Results / quote ------------------------------------------- */
.result-list { list-style: none; display: grid; gap: var(--space-5); }
.result-item {
  display: grid; gap: var(--space-1);
  padding-left: var(--space-5);
  border-left: 1px solid rgba(244, 121, 31, 0.45);
}
.result-name {
  font-family: var(--font-display);
  font-variation-settings: 'wdth' 80, 'wght' 800;
  font-size: var(--text-lg); text-transform: uppercase; color: #fff;
}
.result-detail { color: var(--color-text-onnavy-muted); font-size: var(--text-base); }

.pullquote {
  font-family: var(--font-display);
  font-variation-settings: 'wdth' 80, 'wght' 800;
  font-size: var(--text-xl); text-transform: uppercase; line-height: 1.05;
  letter-spacing: -0.005em; max-width: 20ch;
}
.pullquote .accent { color: var(--color-gold); }

/* ---------- Info / address -------------------------------------------- */
.info-list { list-style: none; display: grid; gap: var(--space-5); }
.info-list dt, .info-label {
  font-size: var(--text-xs); letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--color-text-muted); font-weight: 700; margin-bottom: var(--space-1);
}
.band-navy .info-label { color: var(--gold-light); }
.info-value { font-size: var(--text-base); }
address { font-style: normal; }

/* ---------- Form ------------------------------------------------------- */
.form-grid { display: grid; grid-template-columns: minmax(0, 1fr); gap: var(--space-5); }
@media (min-width: 700px) { .form-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } .form-grid .full { grid-column: 1 / -1; } }
.field { display: grid; gap: var(--space-2); }
.field label { font-size: var(--text-sm); font-weight: 600; }
.field input, .field textarea, .field select {
  width: 100%; padding: var(--space-3) var(--space-4);
  background: var(--color-surface);
  border: 1px solid var(--color-border-strong);
  border-radius: var(--radius-sm);
  font-size: var(--text-base);
}
.field textarea { min-height: 140px; resize: vertical; }
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--color-gold); }
.form-note { font-size: var(--text-xs); color: var(--color-text-muted); }

/* ---------- CTA band --------------------------------------------------- */
.cta-band {
  position: relative; isolation: isolate; overflow: hidden;
  background: var(--navy-900); color: #fff;
  padding-block: clamp(var(--space-16), 9vw, var(--space-24));
}
.cta-band::before {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background: url('./assets/img/6d003b21d1ce-lg.webp') center 40% / cover no-repeat;
  opacity: 0.5;
}
.cta-band::after {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(95deg, rgba(24, 24, 26, 0.9) 0%, rgba(24, 24, 26, 0.62) 55%, rgba(24, 24, 26, 0.15) 100%);
}
@media (max-width: 779px) {
  .cta-band::after { background: rgba(24, 24, 26, 0.78); }
}
.cta-band h2 { color: #fff; font-size: var(--text-2xl); max-width: 16ch; }
.cta-band p { color: #d5d5db; margin-top: var(--space-5); }

/* ---------- Figures ----------------------------------------------------- */
.figure { margin: 0; }
.figure img { border-radius: var(--radius-lg); box-shadow: var(--shadow-md); width: 100%; }
.figure figcaption { margin-top: var(--space-3); font-size: var(--text-xs); color: var(--color-text-muted); letter-spacing: 0.04em; }
.figure--sched img { max-width: 480px; margin-inline: auto; }

.callout {
  background: var(--color-surface-offset);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: clamp(var(--space-5), 3vw, var(--space-8));
}
.callout h3 { margin-bottom: var(--space-3); }
.callout p { color: var(--color-text-muted); }

/* ---------- Footer ------------------------------------------------------ */
.site-footer {
  background: var(--navy-900); color: #d5d5db;
  padding-block: clamp(var(--space-12), 6vw, var(--space-20)) var(--space-8);
  border-top: 4px solid var(--gold);
}
.footer-grid { display: grid; grid-template-columns: minmax(0, 1fr); gap: var(--space-10); }
@media (min-width: 780px) { .footer-grid { grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr) minmax(0, 1fr); } }
.site-footer svg.wordmark { height: 42px; width: auto; margin-bottom: var(--space-5); }
.site-footer h2 {
  font-family: var(--font-display);
  font-variation-settings: 'wdth' 92, 'wght' 750;
  font-size: var(--text-xs); letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold-light); margin-bottom: var(--space-4);
}
.site-footer ul { list-style: none; display: grid; gap: var(--space-3); }
.site-footer a { color: #d5d5db; text-decoration: none; }
.site-footer a:hover { color: var(--gold-light); text-decoration: underline; text-underline-offset: 3px; }
.site-footer p { font-size: var(--text-sm); }
.footer-bottom {
  margin-top: var(--space-12); padding-top: var(--space-5);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  display: flex; flex-wrap: wrap; gap: var(--space-3) var(--space-6);
  font-size: var(--text-xs); color: #8e9bb2;
}

/* ---------- Scroll reveal ----------------------------------------------- */
.reveal { opacity: 0; transform: translateY(14px); transition: opacity 700ms ease, transform 700ms cubic-bezier(0.16, 1, 0.3, 1); }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }

.mt-6 { margin-top: var(--space-6); }
.mt-8 { margin-top: var(--space-8); }
.mt-10 { margin-top: var(--space-10); }
.mt-12 { margin-top: var(--space-12); }
.mb-4 { margin-bottom: var(--space-4); }
.mb-8 { margin-bottom: var(--space-8); }

/* Compact schedule table on small screens so it fits without scrolling */
@media (max-width: 619px) {
  .sched-table { min-width: 0; font-size: var(--text-sm); }
  .sched-table th, .sched-table td { padding: var(--space-3) var(--space-2); }
  .sched-table th:first-child, .sched-table td:first-child { padding-left: 0; }
  .sched-table th:last-child, .sched-table td:last-child { padding-right: 0; }
  .sched-table td.group { white-space: normal; }
}


/* ==========================================================================
   Real-photo components (added with the club's Facebook media)
   ========================================================================== */

/* ---------- Photo tiles + gallery ------------------------------------- */
.tile--photo {
  padding: 0; border: 0; overflow: hidden; cursor: zoom-in;
  background: var(--ink-2);
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-md);
  display: block; width: 100%;
}
.tile--photo img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 450ms cubic-bezier(0.16, 1, 0.3, 1), filter 300ms;
}
.tile--photo:hover img, .tile--photo:focus-visible img { transform: scale(1.045); }
.tile--photo::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  box-shadow: inset 0 0 0 2px transparent;
  transition: box-shadow 200ms;
}
.tile--photo:hover::after, .tile--photo:focus-visible::after { box-shadow: inset 0 0 0 3px var(--orange); }
@media (min-width: 780px) { .gallery .tile--photo.tile--feature { aspect-ratio: 1 / 1; } }

/* ---------- Framed photo figures --------------------------------------- */
.photo { margin: 0; position: relative; }
.photo img {
  display: block; width: 100%; height: auto;
  border-radius: var(--radius-lg);
  background: var(--ink-2);
}
.photo--tall img { aspect-ratio: 4 / 5; object-fit: cover; }
.photo--wide img { aspect-ratio: 16 / 10; object-fit: cover; }
.photo--square img { aspect-ratio: 1 / 1; object-fit: cover; }
.photo figcaption {
  margin-top: var(--space-3); font-size: var(--text-xs); letter-spacing: 0.04em;
  color: var(--color-text-muted);
}
.band-navy .photo figcaption, .band-deep .photo figcaption { color: var(--color-text-onnavy-muted); }
/* orange corner rule to keep photos on-brand */
.photo--marked::before {
  content: ''; position: absolute; left: 0; top: 0; width: 56px; height: 5px;
  background: var(--orange); z-index: 2; border-radius: var(--radius-lg) 0 0 0;
}

/* ---------- Three pillars (Coaches. Culture. Community.) --------------- */
.pillars { display: grid; grid-template-columns: minmax(0, 1fr); gap: var(--space-6); }
@media (min-width: 880px) { .pillars { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
.pillar {
  display: flex; flex-direction: column;
  background: var(--ink-2); border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.pillar img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; display: block; }
.pillar-body { padding: clamp(var(--space-5), 3vw, var(--space-8)); }
.pillar h3 {
  font-family: var(--font-display);
  font-variation-settings: 'wdth' 74, 'wght' 850;
  text-transform: uppercase; font-size: var(--text-xl); color: var(--orange);
  line-height: 1;
}
.pillar p { color: var(--color-text-onnavy-muted); margin-top: var(--space-4); }

/* ---------- Pull quote -------------------------------------------------- */
.pullquote { margin: 0; border-left: 5px solid var(--orange); padding-left: clamp(var(--space-5), 3vw, var(--space-8)); }
.pullquote blockquote {
  font-family: var(--font-display);
  font-variation-settings: 'wdth' 82, 'wght' 700;
  font-size: var(--text-xl); line-height: 1.15; text-transform: uppercase;
  max-width: 22ch;
}
.pullquote p { max-width: 22ch; }
.pullquote figcaption { margin-top: var(--space-5); font-size: var(--text-sm); color: var(--color-text-muted); }
.band-navy .pullquote figcaption, .band-deep .pullquote figcaption { color: var(--color-text-onnavy-muted); }

/* ---------- Video embeds ------------------------------------------------ */
.video-grid { display: grid; grid-template-columns: minmax(0, 1fr); gap: var(--space-8); }
@media (min-width: 780px) { .video-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1100px) { .video-grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
.video-card { display: flex; flex-direction: column; min-width: 0; }
.video-frame {
  position: relative; width: 100%; aspect-ratio: 16 / 9;
  background: var(--ink-2); border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-md); overflow: hidden;
}
.video-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.video-fallback {
  position: absolute; inset: 0; z-index: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: var(--space-3); text-align: center; padding: var(--space-5);
  color: var(--color-text-onnavy-muted);
  background: repeating-linear-gradient(135deg, transparent 0 12px, rgba(244, 121, 31, 0.08) 12px 24px), var(--ink-2);
}
.video-frame iframe { z-index: 1; }
.video-fallback .play-mark { color: var(--orange); }
.video-fallback span { font-size: var(--text-xs); letter-spacing: 0.16em; text-transform: uppercase; }
.video-meta { margin-top: var(--space-4); }
.video-meta h3 { font-size: var(--text-base); }
.video-meta p { font-size: var(--text-sm); margin-top: var(--space-2); }
.video-hero .video-frame { border-radius: var(--radius-lg); }

/* ---------- Social icon links ------------------------------------------- */
.social-links { display: flex; align-items: center; gap: var(--space-2); list-style: none; }
.social-links a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: var(--radius-full);
  color: #e4e4e8; border: 1px solid rgba(255, 255, 255, 0.2);
}
.social-links a:hover { color: var(--ink); background: var(--orange); border-color: var(--orange); }
.header-actions .social-links { display: none; }
@media (min-width: 1180px) { .header-actions .social-links { display: flex; } }

/* ---------- Track cards (program) --------------------------------------- */
.track {
  display: grid; grid-template-columns: minmax(0, 1fr); gap: var(--space-6);
  padding-block: clamp(var(--space-8), 4vw, var(--space-12));
  border-bottom: 1px solid var(--color-border);
  align-items: center;
}
@media (min-width: 880px) {
  .track { grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr); gap: var(--space-12); }
  .track:nth-child(even) > .track-media { order: 2; }
}
.track-media img {
  width: 100%; aspect-ratio: 4 / 3; object-fit: cover; display: block;
  border-radius: var(--radius-lg);
}
.track-num {
  display: inline-block;
  font-family: var(--font-display); font-variation-settings: 'wdth' 70, 'wght' 800;
  font-size: var(--text-sm); letter-spacing: 0.18em; color: var(--color-gold);
  margin-bottom: var(--space-2);
}
.track h3 {
  font-family: var(--font-display); font-variation-settings: 'wdth' 74, 'wght' 850;
  text-transform: uppercase; font-size: var(--text-xl); line-height: 1;
}
.track-when {
  display: block; margin-top: var(--space-3); font-size: var(--text-xs);
  letter-spacing: 0.14em; text-transform: uppercase; font-weight: 700;
  color: var(--color-text-muted);
}
.band-navy .track-when, .band-deep .track-when { color: var(--color-text-onnavy-muted); }
.track p { margin-top: var(--space-5); }
.band-navy .track, .band-deep .track { border-color: rgba(255, 255, 255, 0.16); }

/* ---------- Notice strip ------------------------------------------------- */
.notice {
  display: flex; flex-wrap: wrap; align-items: center; gap: var(--space-3) var(--space-6);
  background: var(--orange); color: #1b1b1e;
  border-radius: var(--radius-md);
  padding: var(--space-5) var(--space-6);
}
.notice strong {
  font-family: var(--font-display); font-variation-settings: 'wdth' 80, 'wght' 850;
  text-transform: uppercase; letter-spacing: 0.02em; font-size: var(--text-lg);
}
.notice p { color: #1b1b1e; margin: 0; font-weight: 600; }

/* ==========================================================================
   Additions for the real-media build
   ========================================================================== */

/* ---------- Photo row (4-up strip) -------------------------------------- */
.photo-row {
  display: grid; gap: var(--space-3);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: var(--space-10);
}
@media (min-width: 780px) { .photo-row { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: var(--space-4); } }
.photo-row img {
  width: 100%; height: auto; aspect-ratio: 1 / 1; object-fit: cover;
  display: block; border-radius: var(--radius-md); background: var(--ink-2);
}

/* ---------- Gallery --------------------------------------------------- */
.gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); }
@media (min-width: 640px) { .gallery { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (min-width: 1100px) { .gallery { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
.gallery--compact { grid-template-columns: repeat(2, minmax(0, 1fr)); }
@media (min-width: 780px) { .gallery--compact { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
.tile--photo { position: relative; }
@media (min-width: 640px) {
  .gallery .tile--photo.tile--feature { grid-column: span 2; grid-row: span 2; aspect-ratio: 1 / 1; }
}

/* ---------- Lightbox --------------------------------------------------- */
.lightbox {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(10, 10, 12, 0.97);
  align-items: center; justify-content: center;
  padding: clamp(var(--space-4), 4vw, var(--space-12));
  display: none;
}
.lightbox[hidden] { display: none; }
.lightbox.is-open { display: flex; }
.lightbox figure { margin: 0; max-width: 100%; display: flex; flex-direction: column; align-items: center; }
.lightbox img { max-height: 74dvh; max-width: 100%; width: auto; border-radius: var(--radius-md); }
.lightbox-caption { color: #d5d5db; font-size: var(--text-sm); margin-top: var(--space-4);
  text-align: center; max-width: 60ch; }
.lightbox-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 48px; height: 48px; border-radius: var(--radius-full);
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(35, 35, 38, 0.9); color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.28); cursor: pointer;
}
.lightbox-prev { left: var(--space-3); }
.lightbox-next { right: var(--space-3); }
.lightbox-nav:hover { background: var(--orange); color: var(--ink); border-color: var(--orange); }
.lightbox-close { z-index: 2; }
@media (max-width: 520px) {
  .lightbox-nav { top: auto; bottom: var(--space-4); transform: none; }
}

/* ---------- Notice variants --------------------------------------------- */
.notice--quiet {
  background: transparent; color: var(--color-text);
  border: 1px solid var(--color-border-strong); border-left: 5px solid var(--orange);
}
.notice--quiet p { color: var(--color-text-muted); }
.notice--quiet strong { color: var(--color-text); }
.band-navy .notice--quiet strong, .band-deep .notice--quiet strong { color: #fff; }
.band-navy .notice--quiet p, .band-deep .notice--quiet p { color: var(--color-text-onnavy-muted); }

/* ---------- Texas Select band -------------------------------------------- */
.band-select { background: var(--navy-accent); color: #fff; }
.band-select p, .band-select li { color: #d8dce6; }
.band-select h2.section-title, .band-select h3 { color: #fff; }
.band-select .eyebrow--onnavy { color: #ffb877; }
.band-select .rule { border-color: rgba(255, 255, 255, 0.3); }

/* ---------- Tracks ------------------------------------------------------- */
.tracks { border-top: 1px solid var(--color-border); }
.track-media .photo img { border-radius: var(--radius-lg); }

/* ---------- Video meta --------------------------------------------------- */
.video-length {
  font-family: var(--font-body); font-weight: 500; font-size: var(--text-xs);
  color: var(--orange); margin-left: var(--space-2); letter-spacing: 0.08em;
}
.video-hero { min-width: 0; }
.video-grid > * { min-width: 0; }
.mt-2 { margin-top: var(--space-2); }

/* ---------- Header / mobile social --------------------------------------- */
.nav-social-mobile { display: none; }
@media (max-width: 1023px) {
  .nav-social-mobile { display: block; margin-top: var(--space-4); }
  .social-links--stack { justify-content: flex-start; }
}
@media (min-width: 1024px) { .nav-social-mobile { display: none; } }
.site-footer .social-links a { color: #d5d5db; }
.site-footer .social-links a:hover { color: var(--ink); text-decoration: none; }

/* ---------- Guard against horizontal scroll ------------------------------ */
html, body { max-width: 100%; overflow-x: hidden; }
img, iframe { max-width: 100%; }
.site-footer ul.social-links { display: flex; }
.mt-6 { margin-top: var(--space-6); }
.site-footer address { font-style: normal; color: #d5d5db; font-size: var(--text-sm); line-height: 1.7; }

/* --- gallery sections + off-screen render skipping (204 tiles) --- */
.gallery-group + .gallery-group { margin-top: var(--space-12); }
.gallery-group-head {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: var(--space-4); flex-wrap: wrap;
  border-top: 2px solid var(--color-border);
  padding-top: var(--space-4);
}
.gallery-group-title {
  font-family: var(--font-display); font-weight: 700;
  font-size: var(--text-xl); letter-spacing: -0.01em;
  margin: 0; color: var(--color-text);
}
.gallery-group-count {
  margin: 0; font-size: var(--text-sm); letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--orange); font-weight: 600;
  white-space: nowrap;
}
.gallery-group-blurb {
  margin: var(--space-3) 0 0; max-width: 56ch;
  color: var(--color-text-muted); font-size: var(--text-sm);
}
.gallery .tile--photo {
  content-visibility: auto;
  contain-intrinsic-size: auto 300px;
}
