/* ==========================================================================
   Marston Athletics
   Gym print culture: rafter banners, taped flyers, painted court lines,
   screen-printed buttons, black & white roster photography.
   Court Black #171310 · Chalk #FAF6EF · Leather #C94F1E · Maple #E5C79A
   Location coding (from their own flyers): Green St #1E5B3C · Union Blue #24457E
   ========================================================================== */

@font-face { font-family: 'Big Shoulders'; font-style: normal; font-weight: 700; font-display: swap; src: url('fonts/bigshoulders-700.woff2') format('woff2'); }
@font-face { font-family: 'Big Shoulders'; font-style: normal; font-weight: 800; font-display: swap; src: url('fonts/bigshoulders-800.woff2') format('woff2'); }
@font-face { font-family: 'Barlow'; font-style: normal; font-weight: 400; font-display: swap; src: url('fonts/barlow-400.woff2') format('woff2'); }
@font-face { font-family: 'Barlow'; font-style: italic; font-weight: 400; font-display: swap; src: url('fonts/barlow-400i.woff2') format('woff2'); }
@font-face { font-family: 'Barlow'; font-style: normal; font-weight: 500; font-display: swap; src: url('fonts/barlow-500.woff2') format('woff2'); }
@font-face { font-family: 'Barlow'; font-style: normal; font-weight: 600; font-display: swap; src: url('fonts/barlow-600.woff2') format('woff2'); }
@font-face { font-family: 'Barlow'; font-style: normal; font-weight: 700; font-display: swap; src: url('fonts/barlow-700.woff2') format('woff2'); }
@font-face { font-family: 'Saira Stencil One'; font-style: normal; font-weight: 400; font-display: swap; src: url('fonts/sairastencil-400.woff2') format('woff2'); }
@font-face { font-family: 'Zilla Slab'; font-style: italic; font-weight: 400; font-display: swap; src: url('fonts/zilla-400i.woff2') format('woff2'); }
@font-face { font-family: 'Zilla Slab'; font-style: italic; font-weight: 500; font-display: swap; src: url('fonts/zilla-500i.woff2') format('woff2'); }

:root {
  --ink: #171310;
  --ink-deep: #0E0B09;
  --chalk: #FAF6EF;
  --leather: #C94F1E;
  --leather-deep: #A83E14;
  --maple: #E5C79A;
  --maple-soft: #F1E4CD;
  --green: #1E5B3C;
  --blue: #24457E;
  --muted: #6B6157;
  --display: 'Big Shoulders', 'Arial Narrow', sans-serif;
  --body: 'Barlow', 'Helvetica Neue', Arial, sans-serif;
  --stencil: 'Saira Stencil One', 'Arial Black', sans-serif;
  --serif: 'Zilla Slab', Georgia, serif;
  --pad: clamp(1.25rem, 5vw, 4rem);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 4.5rem; overflow-x: clip; }
body {
  font-family: var(--body);
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--ink);
  background: var(--chalk);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: var(--leather-deep); }

/* paper grain over everything, like a printed page */
body::after {
  content: '';
  position: fixed; inset: 0;
  z-index: 90;
  pointer-events: none;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.045 0'/%3E%3C/filter%3E%3Crect width='240' height='240' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- shared type ---------- */
.eyebrow {
  font-family: var(--stencil);
  font-size: 0.8125rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--leather-deep);
  margin-bottom: 0.75rem;
}
h2.arc-head {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(2.25rem, 5.5vw, 3.75rem);
  line-height: 0.95;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  text-wrap: balance;
  margin-bottom: 2.5rem;
  position: relative;
  padding-bottom: 1.25rem;
}
/* painted court marking: baseline + free-throw arc */
h2.arc-head::after {
  content: '';
  position: absolute; left: 0; bottom: 0;
  width: min(220px, 60%);
  border-bottom: 3px solid currentColor;
}
h2.arc-head::before {
  content: '';
  position: absolute;
  left: calc(min(220px, 60%) / 2 - 27px); bottom: 0;
  width: 54px; height: 27px;
  border: 3px solid currentColor;
  border-bottom: none;
  border-radius: 54px 54px 0 0;
}

/* ---------- screen-printed buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-decoration: none;
  padding: 0.8rem 1.5rem;
  background: var(--leather);
  color: #fff;
  border: 2px solid var(--ink);
  box-shadow: 5px 5px 0 var(--ink);
  transition: background-color 0.15s ease, translate 0.1s ease, box-shadow 0.1s ease, color 0.15s ease;
}
.btn:hover { background: var(--leather-deep); }
.btn:active { translate: 4px 4px; box-shadow: 1px 1px 0 var(--ink); }
.btn:focus-visible { outline: 3px solid var(--leather); outline-offset: 3px; }
.btn-sm { font-size: 0.98rem; padding: 0.5rem 1rem; box-shadow: 4px 4px 0 var(--ink); }
.btn-outline { background: transparent; color: var(--ink); }
.btn-outline:hover { background: var(--ink); color: var(--chalk); }
.btn-ghost {
  background: transparent; color: #fff;
  border-color: rgba(255,255,255,0.85);
  box-shadow: none;
}
.btn-ghost:hover { background: rgba(255,255,255,0.14); }
.btn-ghost:active { translate: 2px 2px; }
.section-dark .btn, .hero .btn:not(.btn-ghost) {
  border-color: var(--ink-deep);
  box-shadow: 5px 5px 0 rgba(0,0,0,0.6);
}
.section-dark .btn:active, .hero .btn:not(.btn-ghost):active { box-shadow: 1px 1px 0 rgba(0,0,0,0.6); }
.btn-elite {
  background: #F2DC89; color: #2E0C49;
  border-color: #1D0930;
  box-shadow: 5px 5px 0 rgba(0,0,0,0.5);
}
.btn-elite:hover { background: #F8E9A8; }

/* ---------- nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; gap: 1.5rem;
  padding: 0.6rem var(--pad);
  background: rgba(250, 246, 239, 0.95);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border-bottom: 2px solid var(--ink);
}
.nav-logo img { height: 42px; width: auto; }
.nav-links { display: flex; gap: 1.1rem; margin-left: auto; flex-wrap: wrap; }
.nav-links a {
  font-family: var(--display); font-weight: 700; font-size: 1.05rem;
  text-transform: uppercase; letter-spacing: 0.05em;
  color: var(--ink); text-decoration: none;
  display: inline-block; padding: 0.55rem 0.2rem;
}
.nav-links a:hover { color: var(--leather); }
.nav-cta { white-space: nowrap; font-size: 0.95rem; padding: 0.5rem 1rem; box-shadow: 3px 3px 0 var(--ink); }
.nav-cta:active { translate: 2px 2px; box-shadow: 1px 1px 0 var(--ink); }

.nav-toggle {
  display: none;
  margin-left: auto;
  background: none; border: none; cursor: pointer;
  width: 48px; height: 44px;
  padding: 10px 8px;
  flex-direction: column; justify-content: space-between;
}
.nav-toggle span {
  display: block; height: 3px; width: 100%;
  background: var(--ink);
  transition: transform 0.28s cubic-bezier(0.3, 0.7, 0.3, 1), opacity 0.2s ease;
}
.nav-toggle:focus-visible { outline: 3px solid var(--leather); outline-offset: 2px; }
.nav.open .nav-toggle span:nth-child(1) { transform: translateY(10.5px) rotate(45deg); }
.nav.open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav.open .nav-toggle span:nth-child(3) { transform: translateY(-10.5px) rotate(-45deg); }

@media (max-width: 860px) {
  .nav { flex-wrap: wrap; gap: 0 1rem; padding-top: 0.5rem; padding-bottom: 0.5rem; }
  .nav-logo img { height: 34px; }
  .nav-toggle { display: flex; }
  .nav-links {
    order: 3; width: 100%;
    flex-direction: column; align-items: stretch; gap: 0;
    max-height: 0; overflow: hidden;
    opacity: 0; visibility: hidden;
    translate: 0 -8px;
    border-top: 0 solid var(--ink);
    transition: max-height 0.42s cubic-bezier(0.25, 0.8, 0.35, 1), opacity 0.28s ease,
                translate 0.35s ease, visibility 0s 0.42s;
  }
  .nav.open .nav-links {
    max-height: 480px;
    opacity: 1; visibility: visible;
    translate: 0 0;
    margin-top: 0.5rem;
    padding: 0.5rem 0 0.25rem;
    border-top: 2px solid var(--ink);
    transition: max-height 0.45s cubic-bezier(0.25, 0.8, 0.35, 1), opacity 0.3s ease 0.05s,
                translate 0.4s ease;
  }
  .nav-links a { font-size: 1.35rem; padding: 0.7rem 0.2rem; border-bottom: 1px solid var(--maple-soft); }
  .nav-cta {
    order: 4; width: 100%; text-align: center;
    max-height: 0; overflow: hidden; opacity: 0; visibility: hidden;
    padding-top: 0; padding-bottom: 0; border-width: 0; margin: 0;
    transition: max-height 0.42s cubic-bezier(0.25, 0.8, 0.35, 1), opacity 0.28s ease, visibility 0s 0.42s;
  }
  .nav.open .nav-cta {
    max-height: 72px; opacity: 1; visibility: visible;
    padding: 0.7rem 1rem; border-width: 2px;
    margin: 0.9rem 0 0.6rem;
    transition: max-height 0.45s cubic-bezier(0.25, 0.8, 0.35, 1), opacity 0.3s ease 0.1s;
  }
  @media (prefers-reduced-motion: no-preference) {
    .nav.open .nav-links a { animation: navItem 0.35s cubic-bezier(0.25, 0.8, 0.35, 1) both; }
    .nav.open .nav-links a:nth-child(1) { animation-delay: 0.05s; }
    .nav.open .nav-links a:nth-child(2) { animation-delay: 0.09s; }
    .nav.open .nav-links a:nth-child(3) { animation-delay: 0.13s; }
    .nav.open .nav-links a:nth-child(4) { animation-delay: 0.17s; }
    .nav.open .nav-links a:nth-child(5) { animation-delay: 0.21s; }
    .nav.open .nav-links a:nth-child(6) { animation-delay: 0.25s; }
    @keyframes navItem { from { opacity: 0; translate: 0 10px; } }
  }
}

/* ---------- hero ---------- */
.hero { position: relative; min-height: min(92vh, 900px); display: flex; align-items: flex-end; overflow: hidden; }
.hero-photo {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover; object-position: center 30%;
}
.hero::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(23,19,16,0.25) 0%, rgba(23,19,16,0.55) 55%, rgba(23,19,16,0.9) 100%);
}
.hero-inner { position: relative; z-index: 1; padding: 6rem var(--pad) 4rem; max-width: 60rem; }
.hero-e { color: var(--maple); }
.hero-h {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(3.25rem, 10.5vw, 7.5rem);
  line-height: 0.9;
  text-transform: uppercase;
  color: #fff;
  display: flex; flex-direction: column;
  margin-bottom: 1.25rem;
}
.hero-h-accent { color: var(--leather); }
.hero-sub { color: rgba(255,255,255,0.92); font-size: clamp(1.05rem, 2vw, 1.3rem); max-width: 38rem; margin-bottom: 1.75rem; }
.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; }

@media (prefers-reduced-motion: no-preference) {
  .hero-photo { animation: heroSettle 2.4s cubic-bezier(0.2, 0.6, 0.25, 1) both; }
  @keyframes heroSettle { from { scale: 1.07; } to { scale: 1; } }
  .hero-h span { opacity: 0; translate: 0 0.45em; animation: rise 0.6s cubic-bezier(0.2, 0.7, 0.3, 1) forwards; }
  .hero-h span:nth-child(2) { animation-delay: 0.1s; }
  .hero-h span:nth-child(3) { animation-delay: 0.2s; }
  .hero-h span:nth-child(4) { animation-delay: 0.34s; }
  .hero-e, .hero-sub, .hero-ctas { opacity: 0; animation: fade 0.7s ease 0.55s forwards; }
  @keyframes rise { to { opacity: 1; translate: 0 0; } }
  @keyframes fade { to { opacity: 1; } }
}

/* ---------- ticker ---------- */
.ticker { background: var(--ink); color: var(--chalk); overflow: hidden; border-bottom: 3px solid var(--leather); }
.ticker-track { display: flex; gap: 2.75rem; width: max-content; padding: 0.8rem 0; align-items: center; }
.ticker-track span { font-family: var(--display); font-weight: 700; font-size: 1.15rem; text-transform: uppercase; letter-spacing: 0.08em; white-space: nowrap; }
.ticker-track span::before { content: '/'; color: var(--leather); margin-right: 2.75rem; font-weight: 800; }
.ticker-label { color: var(--maple); }
.ticker-label::before { content: '' !important; margin: 0 !important; }
@media (prefers-reduced-motion: no-preference) {
  .ticker-track { animation: scroll 36s linear infinite; }
  @keyframes scroll { to { transform: translateX(-50%); } }
}
@media (prefers-reduced-motion: reduce) {
  .ticker-track { flex-wrap: wrap; width: auto; padding: 0.8rem var(--pad); }
  .ticker-track span[aria-hidden] { display: none; }
}

/* ---------- sections ---------- */
.section { padding: clamp(3.5rem, 8vw, 6.5rem) var(--pad); }
.section-dark { background: var(--ink); color: var(--chalk); }
.section-dark a { color: var(--maple); }
.section-dark a.btn { color: #fff; }
.section-dark a.btn-elite { color: #2E0C49; }
.section-dark .eyebrow { color: var(--maple); }
.section-tint { background: var(--maple-soft); }

/* scroll reveals: translate/rotate as separate properties so tilted items settle into place */
.reveal { opacity: 0; translate: 0 20px; transition: opacity 0.6s ease, translate 0.65s cubic-bezier(0.22, 0.61, 0.36, 1); }
.reveal.in { opacity: 1; translate: 0 0; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; translate: 0 0; transition: none; } }

/* ---------- taped photographs ---------- */
.taped { position: relative; box-shadow: 0 12px 26px rgba(23,19,16,0.22); }
.taped img { border: 8px solid #fff; outline: 1px solid rgba(23,19,16,0.3); width: 100%; }
.taped::before, .taped::after {
  content: '';
  position: absolute; top: -13px;
  width: 84px; height: 26px;
  background: linear-gradient(rgba(229,199,154,0.85), rgba(229,199,154,0.72));
  box-shadow: 0 1px 2px rgba(23,19,16,0.18);
  z-index: 2;
}
.taped::before { left: -17px; transform: rotate(-37deg); }
.taped::after { right: -17px; transform: rotate(35deg); }

/* ---------- mission ---------- */
.mission-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: clamp(2.5rem, 5vw, 4.5rem); align-items: center; max-width: 72rem; margin: 0 auto; }
.mission-grid > div > p { max-width: 34rem; }
.mission-photo { rotate: 1.4deg; margin-top: 1rem; }
.pull {
  margin-top: 2rem;
  border-left: 4px solid var(--leather);
  padding-left: 1.25rem;
  max-width: 34rem;
}
.pull p {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.2rem, 2vw, 1.45rem);
  line-height: 1.5;
}
.pull cite {
  display: block; margin-top: 0.75rem;
  font-family: var(--stencil); font-style: normal;
  font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--muted);
}
@media (max-width: 820px) { .mission-grid { grid-template-columns: 1fr; } .mission-photo { max-width: 24rem; margin: 1.5rem auto 0; } }

/* ---------- rafter banners ---------- */
#train { padding-top: 0; }
.banners {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: clamp(0.9rem, 2.5vw, 1.75rem);
  max-width: 70rem;
  margin: 0 auto clamp(3rem, 7vw, 5rem);
}
.banner {
  clip-path: polygon(0 0, 100% 0, 100% 76%, 50% 100%, 0 76%);
  padding: 1.3rem 0.9rem 2.9rem;
  text-align: center;
  transform-origin: top center;
}
.banner small { display: block; font-family: var(--stencil); font-size: 0.66rem; letter-spacing: 0.2em; text-transform: uppercase; opacity: 0.85; }
.banner strong {
  display: block;
  font-family: var(--display); font-weight: 800;
  font-size: clamp(2rem, 4.5vw, 2.9rem);
  line-height: 1.05;
  font-variant-numeric: tabular-nums;
}
.banner span { display: block; font-size: 0.78rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; opacity: 0.9; }
.b-maple { background: var(--maple); color: var(--ink); rotate: -1.1deg; }
.b-leather { background: var(--leather); color: var(--chalk); rotate: 0.9deg; }
.b-green { background: var(--green); color: var(--chalk); rotate: -0.7deg; }
.b-blue { background: var(--blue); color: var(--chalk); rotate: 1.2deg; }
/* banners drop from the rafters instead of rising */
.banner.reveal { translate: 0 -26px; transition-property: opacity, translate, rotate; }
.banner.reveal:not(.in) { rotate: 0deg; }
.banners .banner:nth-child(2) { transition-delay: 0.08s; }
.banners .banner:nth-child(3) { transition-delay: 0.16s; }
.banners .banner:nth-child(4) { transition-delay: 0.24s; }

/* ---------- programs: the price-board list ---------- */
.programs { max-width: 72rem; margin: 0 auto; }
.program {
  display: grid;
  grid-template-columns: minmax(180px, 320px) 1fr;
  gap: 0.5rem 3rem;
  align-items: start;
  padding: 1.9rem 0;
  border-top: 1px solid rgba(250,246,239,0.22);
}
.program:last-of-type { border-bottom: 1px solid rgba(250,246,239,0.22); }
.program-name h3 {
  font-family: var(--display); font-weight: 800;
  font-size: clamp(1.9rem, 3.6vw, 2.7rem);
  line-height: 0.95;
  text-transform: uppercase;
  color: var(--chalk);
  transition: color 0.25s ease;
}
.program:hover .program-name h3 { color: var(--maple); }
.program-tag {
  display: inline-block;
  font-family: var(--stencil); font-size: 0.62rem;
  letter-spacing: 0.16em; text-transform: uppercase;
  background: var(--leather); color: #fff;
  padding: 0.25rem 0.55rem;
  margin-top: 0.5rem;
}
.program > p { font-size: 1rem; color: rgba(250,246,239,0.85); max-width: 46rem; }
.programs .program:nth-child(even).reveal { transition-delay: 0.06s; }
@media (max-width: 720px) { .program { grid-template-columns: 1fr; } }

.program-note {
  max-width: 72rem;
  margin: 2.5rem auto 0;
  border-left: 3px solid var(--maple);
  padding-left: 1.25rem;
  color: rgba(250,246,239,0.88);
  font-size: 1rem;
}

/* ---------- schedule boards ---------- */
.free-banner {
  display: block;
  width: fit-content;
  margin: -1rem auto 2.75rem;
  rotate: -0.6deg;
  background: var(--leather);
  color: #fff;
  font-family: var(--stencil);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
  padding: 0.6rem 1.1rem;
  box-shadow: 4px 4px 0 var(--ink);
}
.boards { display: grid; grid-template-columns: 1.35fr 1fr; gap: 2rem; max-width: 72rem; margin: 0 auto; }
.board { border: 3px solid var(--ink); background: #fff; box-shadow: 9px 9px 0 var(--maple); }
.board-head { padding: 1.1rem 1.4rem; color: #fff; }
.board-green .board-head { background: var(--green); }
.board-blue .board-head { background: var(--blue); }
.board-head h3 { font-family: var(--display); font-weight: 800; font-size: 1.9rem; text-transform: uppercase; line-height: 1; }
.board-addr { color: rgba(255,255,255,0.85); font-size: 0.9rem; text-decoration: underline; text-underline-offset: 2px; }
.board-addr:hover { color: #fff; }
.sessions { list-style: none; }
.sessions li {
  display: flex; justify-content: space-between; align-items: baseline; gap: 1rem;
  padding: 0.9rem 1.4rem;
  border-bottom: 1px solid var(--maple-soft);
}
.sessions li strong { font-weight: 700; display: block; }
.doc-link { color: inherit; text-decoration: none; border-bottom: 1.5px dotted var(--leather); }
.doc-link::after { content: ' \2197'; font-size: 0.75em; color: var(--leather-deep); }
.doc-link:hover { color: var(--leather-deep); }
.sessions li span { color: var(--muted); font-size: 0.92rem; }
.sessions li em {
  font-style: normal; font-family: var(--display); font-weight: 800; font-size: 1.2rem;
  color: var(--leather-deep); white-space: nowrap;
  font-variant-numeric: tabular-nums;
}
.sunday-h { font-family: var(--display); font-weight: 700; font-size: 1.25rem; text-transform: uppercase; padding: 1.1rem 1.4rem 0.2rem; }
.sunday-h small { display: block; font-family: var(--body); font-weight: 500; font-size: 0.82rem; text-transform: none; color: var(--muted); }
.sessions-compact li { padding: 0.45rem 1.4rem; border-bottom: none; }
.sessions-compact li div { display: flex; gap: 0.75rem; align-items: baseline; }
.board-photo { padding: 1rem; }
.board-photo img { width: 100%; height: 100%; object-fit: cover; }
.schedule-ctas { display: flex; gap: 1.25rem; justify-content: center; flex-wrap: wrap; margin-top: 3rem; }
.consent-note { text-align: center; margin-top: 1.25rem; font-size: 0.92rem; color: var(--muted); }
@media (max-width: 900px) { .boards { grid-template-columns: 1fr; } .board-photo { display: none; } }

/* ---------- summer: the flyer wall ---------- */
.summer-link { margin: -1.5rem 0 3rem; }
.summer-link a {
  font-family: var(--stencil); font-size: 0.85rem;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--maple);
  text-underline-offset: 4px;
}
.wall {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: clamp(2.5rem, 5vw, 4rem) clamp(1.75rem, 3vw, 3rem);
  max-width: 80rem;
  margin: 0 auto;
  padding-top: 1rem;
}
.flyer { position: relative; transform-origin: top center; }
.flyer > img {
  width: 100%;
  border: 7px solid #fff;
  box-shadow: 0 16px 32px rgba(0,0,0,0.5);
}
/* masking tape holding each flyer to the wall */
.flyer::before, .flyer::after {
  content: '';
  position: absolute; top: -12px;
  width: 82px; height: 26px;
  background: linear-gradient(rgba(229,199,154,0.9), rgba(229,199,154,0.75));
  box-shadow: 0 1px 3px rgba(0,0,0,0.4);
  z-index: 2;
}
.flyer::before { left: -15px; transform: rotate(-38deg); }
.flyer::after { right: -15px; transform: rotate(36deg); }
.wall .flyer:nth-child(5n+1) { rotate: -1.7deg; }
.wall .flyer:nth-child(5n+2) { rotate: 1.2deg; }
.wall .flyer:nth-child(5n+3) { rotate: -0.8deg; }
.wall .flyer:nth-child(5n+4) { rotate: 1.9deg; }
.wall .flyer:nth-child(5n+5) { rotate: -1.3deg; }
.flyer.reveal { transition-property: opacity, translate, rotate; }
.flyer.reveal:not(.in) { rotate: 0deg; translate: 0 26px; }
.flyer-info { padding-top: 1.15rem; }
.flyer-info h3 { font-family: var(--display); font-weight: 700; font-size: 1.4rem; text-transform: uppercase; color: #fff; }
.flyer-info p { font-size: 0.92rem; color: rgba(250,246,239,0.8); margin: 0.3rem 0 0.9rem; }
.flyer-info a:not(.btn) { color: var(--maple); }

/* ---------- coaches ---------- */
.coaches-intro { max-width: 44rem; margin: -1.25rem 0 3rem; color: var(--muted); }
.pete {
  display: grid; grid-template-columns: minmax(240px, 370px) 1fr;
  gap: clamp(2.5rem, 4vw, 4rem);
  max-width: 72rem; margin: 0 auto 4rem;
  align-items: start;
}
.pete-photo { rotate: -1.1deg; margin-top: 0.75rem; }
.pete-bio h3 { font-family: var(--display); font-weight: 800; font-size: clamp(1.8rem, 3.5vw, 2.6rem); text-transform: uppercase; line-height: 1; }
.coach-role { font-family: var(--stencil); font-size: 0.72rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--leather-deep); margin: 0.4rem 0 1rem; }
.pete-bio p + p { margin-top: 0.9rem; }
.pete-creds { margin-top: 1.1rem; padding-left: 1.2rem; font-size: 0.95rem; display: grid; gap: 0.3rem; }
.pete-creds li::marker { color: var(--leather); }
@media (max-width: 820px) { .pete { grid-template-columns: 1fr; } .pete-photo { max-width: 19rem; margin: 0 auto; } }

/* roster: black & white until you meet them */
.staff {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 3rem 2.25rem;
  max-width: 76rem; margin: 0 auto;
}
.coach figure {
  border: 3px solid var(--ink);
  box-shadow: 7px 7px 0 var(--maple);
  overflow: hidden;
}
.coach figure img {
  width: 100%; aspect-ratio: 4 / 5; object-fit: cover; object-position: center top;
  filter: grayscale(1) contrast(1.05);
  transition: filter 0.45s ease, scale 0.5s cubic-bezier(0.2, 0.6, 0.3, 1);
}
@media (hover: hover) {
  .coach:hover figure img { filter: grayscale(0) contrast(1); scale: 1.03; }
}
.coach h3 { font-family: var(--display); font-weight: 700; font-size: 1.5rem; text-transform: uppercase; margin-top: 1.1rem; }
.coach .coach-role { margin: 0.25rem 0 0.5rem; }
.coach-motto { font-family: var(--serif); font-style: italic; font-size: 1.02rem; color: var(--muted); }
.coach-motto::before { content: '\201C'; }
.coach-motto::after { content: '\201D'; }
.coach details { margin-top: 0.6rem; font-size: 0.93rem; }
.coach summary {
  cursor: pointer; width: fit-content;
  font-weight: 600; color: var(--leather-deep);
  text-decoration: underline; text-underline-offset: 3px;
  padding: 0.4rem 0;
}
.coach details p { margin-top: 0.4rem; }
.staff-group { max-width: 72rem; margin: 4rem auto 0; rotate: 0.5deg; }
.staff-group figcaption {
  font-family: var(--stencil); font-size: 0.78rem;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--muted);
  margin-top: 1rem; text-align: center;
}

/* ---------- testimonials: the quote wall ---------- */
.quotes {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 3rem clamp(2.5rem, 6vw, 5.5rem);
  max-width: 68rem; margin: 0 auto;
  align-items: start;
}
.quote { position: relative; padding-left: 2.5rem; }
.quote::before {
  content: '\201C';
  position: absolute; left: 0; top: -0.55rem;
  font-family: var(--serif); font-style: italic;
  font-size: 4.4rem; line-height: 1;
  color: var(--leather);
}
.quote p {
  font-family: var(--serif); font-style: italic;
  font-size: 1.16rem; line-height: 1.55;
}
.quote footer {
  display: flex; align-items: center; gap: 0.7rem;
  margin-top: 0.9rem;
  font-family: var(--stencil); font-size: 0.74rem;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--leather-deep);
}
.quote footer::before { content: ''; width: 28px; height: 2px; background: var(--leather); }
.quotes .quote:nth-child(even) { margin-top: 3rem; }
@media (max-width: 720px) {
  .quotes { grid-template-columns: 1fr; }
  .quotes .quote:nth-child(even) { margin-top: 0; }
}

/* ---------- gear ---------- */
.gear-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2.5rem 2rem;
  max-width: 58rem; margin: 0 auto; padding-top: 0.75rem;
}
.gear-grid figure img { aspect-ratio: 1; object-fit: cover; }
.gear-grid figure:nth-child(1) { rotate: -1.4deg; }
.gear-grid figure:nth-child(2) { rotate: 1deg; }
.gear-grid figure:nth-child(3) { rotate: -0.7deg; }
.gear-note { text-align: center; margin-top: 2.25rem; color: var(--muted); }
.pay-qrs { display: flex; gap: 2.5rem; justify-content: center; flex-wrap: wrap; margin-top: 1.75rem; }
.qr { width: 148px; text-align: center; }
.qr img { border: 6px solid #fff; outline: 1px solid rgba(23,19,16,0.3); box-shadow: 0 8px 18px rgba(23,19,16,0.18); }
.qr figcaption { font-family: var(--stencil); font-size: 0.66rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); margin-top: 0.6rem; }

/* ---------- contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1.3fr 0.7fr; gap: clamp(2rem, 5vw, 4rem); max-width: 72rem; margin: 0 auto; align-items: start; }
.contact-big { margin: 0.5rem 0; }
.contact-big a {
  font-family: var(--display); font-weight: 800;
  font-size: clamp(2.4rem, 6vw, 4rem);
  color: #fff; text-decoration: none; line-height: 1;
  font-variant-numeric: tabular-nums;
}
.contact-big a:hover { color: var(--maple); }
.contact-links { display: flex; gap: 1.5rem; flex-wrap: wrap; margin-top: 1.5rem; }
.contact-links a {
  font-family: var(--display); font-weight: 700; font-size: 1.15rem;
  text-transform: uppercase; letter-spacing: 0.05em;
  text-underline-offset: 4px;
}
.locations { display: grid; gap: 1rem; margin-top: 2rem; font-size: 0.98rem; }
.loc-green, .loc-blue { font-family: var(--stencil); font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; padding: 0.12rem 0.5rem; color: #fff; }
.loc-green { background: var(--green); }
.loc-blue { background: var(--blue); }
.elite-card { background: #2E0C49; border: 2px solid #F2DC89; box-shadow: 8px 8px 0 rgba(0,0,0,0.45); padding: 2rem 1.75rem; }
.elite-card .eyebrow { color: #F2DC89; }
.elite-card h3 { font-family: var(--display); font-weight: 800; font-size: 2rem; text-transform: uppercase; color: #F2DC89; margin-bottom: 0.6rem; }
.elite-card p { color: rgba(250,246,239,0.88); font-size: 0.98rem; margin-bottom: 1.4rem; }
@media (max-width: 820px) { .contact-grid { grid-template-columns: 1fr; } }

/* ---------- footer ---------- */
.footer { background: var(--ink-deep); color: rgba(250,246,239,0.75); text-align: center; padding: 3rem var(--pad) 2.5rem; }
.footer-logo { height: 38px; width: auto; margin: 0 auto 1rem; }
.footer-line { font-family: var(--stencil); font-size: 0.85rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--maple); margin-bottom: 0.75rem; }
.footer-fine { font-size: 0.85rem; }
.footer-fine a { color: inherit; }
