/* =====================================================================
   Central Coast RTC — site styles
   Brand colors sampled from the official logo (CMYK → sRGB via its ICC profile)
   ===================================================================== */

:root {
  /* brand */
  --blue: #00a2de;          /* Pacific blue   (C83 M17)        */
  --blue-deep: #0a6f9c;
  --coral: #e55d38;         /* coast coral    (M82 Y100)       */
  --coral-ink: #b8401f;     /* coral for small text on light   */
  --sun: #ee8e36;           /* sunset orange  (M54 Y100)       */
  --char: #252323;          /* logo black     (rich black)     */
  --silver: #a7acaf;        /* logo lettering silver           */

  /* surfaces */
  --ink: #121011;
  --ink-2: #1a1718;
  --night: #0d1114;
  --paper: #f7f3ec;
  --sand: #efe7da;
  --stone: #ebe5dc;

  /* text */
  --text: #1d1a1a;
  --text-2: #5a534e;
  --light: #f6f2eb;
  --light-2: rgba(246, 242, 235, .68);
  --rule-dark: rgba(29, 26, 26, .12);
  --rule-light: rgba(246, 242, 235, .12);

  --grad-sunset: linear-gradient(95deg, #f5a742 0%, #ee8e36 32%, #e55d38 78%, #d8482a 100%);
  --grad-silver: linear-gradient(180deg, #ffffff 0%, #ffffff 56%, #a7acaf 100%);

  --font-display: "Saira", "Arial Narrow", "Helvetica Neue", sans-serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-mono: ui-monospace, "SF Mono", Menlo, Consolas, monospace;

  --gutter: clamp(20px, 4vw, 56px);
  --wrap: 1320px;
  --nav-h: 76px;
  --ease: cubic-bezier(.2, .7, .1, 1);
}

/* ---------- base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--ink);
  color: var(--text);
  font: 400 1rem/1.6 var(--font-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
html.menu-open, html.menu-open body { overflow: hidden; }
main { overflow-x: clip; } /* the tilted ticker is wider than the viewport by design */
img, svg { display: block; max-width: 100%; }
a { color: inherit; }
h1, h2, h3, h4, p { margin: 0; }
[id] { scroll-margin-top: calc(var(--nav-h) - 1px); }
::selection { background: var(--sun); color: var(--ink); }
:focus-visible { outline: 2px solid var(--sun); outline-offset: 3px; border-radius: 6px; }

.wrap { width: min(100% - 2 * var(--gutter), var(--wrap)); margin-inline: auto; position: relative; z-index: 1; }
.nowrap { white-space: nowrap; }
[hidden] { display: none !important; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.skip {
  position: fixed; left: 16px; top: -60px; z-index: 100;
  background: var(--sun); color: var(--ink); padding: 10px 16px; border-radius: 8px;
  font-weight: 600; text-decoration: none; transition: top .2s;
}
.skip:focus { top: 16px; }

.grain {
  position: absolute; inset: 0; z-index: 0; pointer-events: none; opacity: .09; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 .6 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

/* ---------- type system ---------- */
.display, .h2, .h3, .hero__title, .athlete__name, .spotlight__name, .footer__mega {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 800;
  font-stretch: 60%;
  text-transform: uppercase;
  letter-spacing: -.005em;
}
.h2 { font-size: clamp(2.7rem, 5.6vw, 5.5rem); line-height: .88; color: var(--text); margin-top: 18px; padding-right: .06em; }
.h2 em { font-style: inherit; color: var(--coral-ink); }
.h2--light { color: var(--light); }
.h2--light em, .h3 em, .footer__tag span, .sunset-text {
  background: var(--grad-sunset); -webkit-background-clip: text; background-clip: text; color: transparent;
  padding-right: .08em; margin-right: -.08em;
}
.h3 { font-size: clamp(2.3rem, 4.4vw, 4.2rem); line-height: .9; color: var(--light); }

.lede { font-size: clamp(1.05rem, 1.3vw, 1.2rem); line-height: 1.65; color: var(--text-2); margin-top: 22px; max-width: 58ch; }
.lede strong { color: var(--text); font-weight: 600; }
.lede--light { color: var(--light-2); }

.kicker {
  display: flex; align-items: center; gap: 12px;
  font: 600 .76rem/1 var(--font-body); letter-spacing: .18em; text-transform: uppercase; color: var(--text-2);
}
.kicker b { font-family: var(--font-display); font-style: italic; font-weight: 800; font-size: .95rem; letter-spacing: .04em; color: var(--coral); }
.kicker i { width: 36px; height: 1px; background: currentColor; opacity: .5; }
.kicker--light { color: var(--light-2); }
.kicker--light b { color: var(--sun); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font: 600 .74rem/1.3 var(--font-body); letter-spacing: .18em; text-transform: uppercase; color: var(--light);
  padding: 9px 16px 9px 12px; border-radius: 99px;
  background: rgba(18, 16, 17, .45); box-shadow: inset 0 0 0 1px rgba(246, 242, 235, .16);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
}
.pulse-dot, .live-dot { position: relative; width: 8px; height: 8px; border-radius: 50%; background: var(--sun); flex: none; }
.pulse-dot::after, .live-dot::after {
  content: ""; position: absolute; inset: -5px; border-radius: 50%; border: 1.5px solid var(--sun);
  animation: ping 2.4s var(--ease) infinite;
}
@keyframes ping { 0% { transform: scale(.4); opacity: 1; } 100% { transform: scale(1.4); opacity: 0; } }

.textlink {
  font-weight: 600; color: var(--text); text-decoration: underline; text-decoration-color: var(--coral);
  text-decoration-thickness: 2px; text-underline-offset: 5px; transition: color .2s;
}
.textlink:hover { color: var(--coral-ink); }

/* ---------- buttons ---------- */
.btn {
  position: relative; isolation: isolate; display: inline-flex; align-items: center; gap: 10px;
  padding: 17px 28px; text-decoration: none; white-space: nowrap;
  font: italic 800 1.02rem/1 var(--font-display); font-stretch: 78%; letter-spacing: .07em; text-transform: uppercase;
  transition: color .3s var(--ease);
}
.btn::before {
  content: ""; position: absolute; inset: 0; z-index: -1; border-radius: 8px; transform: skewX(-14deg);
  transition: transform .45s var(--ease), background-color .3s, box-shadow .3s;
}
.btn:hover::before { transform: skewX(-14deg) scale(1.045); }
.btn__arrow { width: 18px; height: 18px; transition: transform .35s var(--ease); }
.btn:hover .btn__arrow { transform: translateX(4px); }
.btn--sunset { color: #1a1011; }
.btn--sunset::before { background: var(--grad-sunset); box-shadow: 0 16px 40px -14px rgba(229, 93, 56, .75); }
.btn--ghost { color: var(--light); }
.btn--ghost::before { background: rgba(246, 242, 235, .06); box-shadow: inset 0 0 0 1px rgba(246, 242, 235, .3); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); }
.btn--ghost:hover::before { background: rgba(246, 242, 235, .13); }
.btn--ink { color: var(--ink); padding: 15px 24px; font-size: .95rem; }
.btn--ink::before { background: var(--light); }

/* ---------- nav ---------- */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 60; color: var(--light);
  border-bottom: 1px solid transparent;
  transition: background-color .45s var(--ease), border-color .45s, backdrop-filter .45s;
}
.nav.is-scrolled, html.menu-open .nav {
  background: rgba(18, 16, 17, .74); border-color: var(--rule-light);
  backdrop-filter: saturate(1.5) blur(18px); -webkit-backdrop-filter: saturate(1.5) blur(18px);
}
.nav__inner {
  width: min(100% - 2 * var(--gutter), 1480px); margin-inline: auto; height: var(--nav-h);
  display: flex; align-items: center; gap: 24px;
}
.nav__brand { display: flex; align-items: center; gap: 12px; text-decoration: none; flex: none; }
.nav__brand img { width: 44px; height: 44px; transition: transform .6s var(--ease); }
.nav__brand:hover img { transform: rotate(-12deg) scale(1.06); }
.nav__wordmark {
  display: flex; flex-direction: column; font: italic 800 1.18rem/.86 var(--font-display); font-stretch: 66%;
  text-transform: uppercase; letter-spacing: .01em;
}
.nav__wordmark b { font-weight: 800; }
.nav__wordmark span { background: var(--grad-sunset); -webkit-background-clip: text; background-clip: text; color: transparent; padding-right: .1em; }
.nav__links { margin-left: auto; display: flex; align-items: center; gap: 2px; }
.nav__links a {
  position: relative; padding: 10px 13px; text-decoration: none; color: rgba(246, 242, 235, .74);
  font: 600 .74rem/1 var(--font-body); letter-spacing: .1em; text-transform: uppercase; transition: color .25s;
}
.nav__links a::after {
  content: ""; position: absolute; left: 13px; right: 13px; bottom: 3px; height: 2px; border-radius: 2px;
  background: var(--grad-sunset); transform: scaleX(0); transform-origin: left; transition: transform .45s var(--ease);
}
.nav__links a:hover, .nav__links a.is-active { color: #fff; }
.nav__links a:hover::after, .nav__links a.is-active::after { transform: scaleX(1); }
.nav__usaw {
  display: flex; align-items: center; gap: 12px; flex: none; text-decoration: none;
  padding-left: 22px; border-left: 1px solid var(--rule-light);
  font: 600 .6rem/1.2 var(--font-body); letter-spacing: .14em; text-transform: uppercase; color: var(--light-2);
}
.nav__usaw img { width: 88px; height: auto; }
.nav__toggle {
  display: none; position: relative; width: 46px; height: 46px; margin-left: auto; border: 0; border-radius: 12px;
  background: rgba(246, 242, 235, .08); box-shadow: inset 0 0 0 1px var(--rule-light); color: var(--light); cursor: pointer;
}
.nav__toggle i { position: absolute; left: 13px; right: 13px; height: 2px; border-radius: 2px; background: currentColor; transition: transform .4s var(--ease), top .4s var(--ease); }
.nav__toggle i:nth-of-type(1) { top: 18px; }
.nav__toggle i:nth-of-type(2) { top: 26px; }
.nav__toggle[aria-expanded="true"] i:nth-of-type(1) { top: 22px; transform: rotate(45deg); }
.nav__toggle[aria-expanded="true"] i:nth-of-type(2) { top: 22px; transform: rotate(-45deg); }

.menu {
  position: fixed; inset: 0; z-index: 50; display: flex; flex-direction: column; justify-content: space-between;
  padding: calc(var(--nav-h) + 28px) var(--gutter) 36px; color: var(--light);
  background: radial-gradient(90% 60% at 100% 100%, rgba(229, 93, 56, .35), transparent 70%), var(--ink);
  opacity: 0; transform: translateY(-12px); transition: opacity .35s var(--ease), transform .35s var(--ease);
  overflow-y: auto;
}
.menu[hidden] { display: none; }
.menu.is-open { opacity: 1; transform: none; }
.menu nav { display: flex; flex-direction: column; }
.menu nav a {
  display: flex; align-items: baseline; gap: 14px; padding: 10px 0; text-decoration: none;
  border-bottom: 1px solid var(--rule-light);
  font: italic 800 clamp(2.3rem, 10.5vw, 3.6rem)/1 var(--font-display); font-stretch: 60%; text-transform: uppercase;
}
.menu nav a small { font: 600 .74rem/1 var(--font-body); font-style: normal; letter-spacing: .12em; color: var(--sun); }
.menu__foot { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding-top: 28px; color: var(--light-2); font-size: .85rem; }
.menu__foot img { width: 110px; height: auto; }

/* ---------- hero ---------- */
.hero {
  position: relative; isolation: isolate; overflow: hidden; color: var(--light); background: var(--ink);
  min-height: 100vh; min-height: 100svh; display: flex; flex-direction: column; justify-content: flex-end;
  padding-top: var(--nav-h);
}
.hero__media { position: absolute; inset: -6% 0 -6% 0; z-index: -3; will-change: transform; }
.hero__media picture, .hero__media img { width: 100%; height: 100%; }
.hero__media img { object-fit: cover; object-position: 50% 45%; filter: grayscale(1) contrast(1.15) brightness(.66); }
.hero__media::after {
  content: ""; position: absolute; inset: 0; mix-blend-mode: color; opacity: .58;
  background: linear-gradient(112deg, #0a6f9c 0%, #00a2de 30%, #e55d38 68%, #ee8e36 100%);
}
.hero__shade {
  position: absolute; inset: 0; z-index: -2;
  background:
    radial-gradient(38% 52% at 76% 50%, rgba(238, 142, 54, .30), transparent 72%),
    linear-gradient(90deg, rgba(18, 16, 17, .95) 0%, rgba(18, 16, 17, .8) 34%, rgba(18, 16, 17, .28) 66%, rgba(18, 16, 17, .5) 100%),
    linear-gradient(0deg, var(--ink) 0%, rgba(18, 16, 17, 0) 42%),
    linear-gradient(180deg, rgba(18, 16, 17, .75) 0%, rgba(18, 16, 17, 0) 24%);
}
.hero .grain { z-index: -1; }
.hero__inner {
  display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(0, .92fr); align-items: center; gap: clamp(24px, 4vw, 72px);
  padding-block: clamp(28px, 5vh, 64px) clamp(24px, 4vh, 48px);
}
.hero__title {
  margin: 22px 0 0; font-size: clamp(3.2rem, 6.6vw, 7.2rem); line-height: .86; font-weight: 800;
}
.hero__title .line { display: block; overflow: hidden; padding: .04em .1em .04em 0; margin: -.04em 0; }
.hero__title .line > span {
  display: inline-block; background: var(--grad-silver); -webkit-background-clip: text; background-clip: text; color: transparent;
  padding-right: .08em;
}
.hero__title .line > .sunset-text { background: var(--grad-sunset); -webkit-background-clip: text; background-clip: text; }
.js .hero__title .line > span { transform: translateY(110%); animation: rise 1.1s var(--ease) forwards; animation-delay: calc(var(--d) * 85ms + 120ms); }
@keyframes rise { to { transform: none; } }
.hero__lede { margin-top: 22px; max-width: 56ch; font-size: clamp(1.02rem, 1.25vw, 1.17rem); line-height: 1.65; color: var(--light-2); }
.hero__lede strong { color: var(--light); font-weight: 600; }
.hero__next {
  display: inline-flex; flex-wrap: wrap; margin-top: 30px; overflow: hidden; border-radius: 10px;
  background: rgba(18, 16, 17, .45); box-shadow: inset 0 0 0 1px rgba(246, 242, 235, .18);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  font: 600 .72rem/1 var(--font-body); letter-spacing: .14em; text-transform: uppercase;
}
.hero__next-tag { padding: 13px 14px; background: var(--grad-sunset); color: #1a1011; }
.hero__next-text { padding: 13px 16px; color: var(--light); }
.js .reveal-load { opacity: 0; transform: translateY(18px); animation: fadeUp 1s var(--ease) forwards; animation-delay: calc(var(--d) * 85ms + 200ms); }
@keyframes fadeUp { to { opacity: 1; transform: none; } }

.hero__badge { position: relative; width: min(100%, 540px); aspect-ratio: 1; justify-self: end; display: grid; place-items: center; }
.hero__badge::before {
  content: ""; position: absolute; inset: 14%; border-radius: 50%; filter: blur(24px);
  background: radial-gradient(circle, rgba(238, 142, 54, .6) 0%, rgba(229, 93, 56, .28) 45%, transparent 70%);
}
.hero__logo {
  position: relative; z-index: 2; width: 94%; height: auto;
  filter: drop-shadow(0 34px 50px rgba(0, 0, 0, .55));
  animation: float 8s ease-in-out infinite;
}
@keyframes float { 50% { transform: translateY(-10px) rotate(-.6deg); } }
.ringtext { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 1; animation: spin 48s linear infinite; }
.ringtext text { font: 600 16px var(--font-display); font-stretch: 100%; letter-spacing: .28em; fill: rgba(246, 242, 235, .62); }
@keyframes spin { to { transform: rotate(360deg); } }
.sunrings { position: absolute; inset: 10%; z-index: 0; }
.sunrings i { position: absolute; inset: 0; border-radius: 50%; border: 1.5px solid rgba(238, 142, 54, .55); opacity: 0; animation: ripple 7.5s cubic-bezier(.2, .6, .3, 1) infinite; }
.sunrings i:nth-child(2) { animation-delay: 2.5s; }
.sunrings i:nth-child(3) { animation-delay: 5s; }
@keyframes ripple { 0% { transform: scale(.72); opacity: 0; } 18% { opacity: .85; } 100% { transform: scale(1.32); opacity: 0; } }

.hero__facts { padding-bottom: clamp(44px, 6vh, 60px); }
.facts { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); margin: 0; border-top: 1px solid var(--rule-light); }
.fact { padding: 20px 20px 0 0; }
.fact + .fact { padding-left: 22px; border-left: 1px solid var(--rule-light); }
.fact dt { font: 600 .68rem/1 var(--font-body); letter-spacing: .17em; text-transform: uppercase; color: var(--light-2); }
.fact dd { margin: 10px 0 0; display: flex; flex-direction: column; gap: 5px; }
.fact b.nocase, .ticker .nocase { text-transform: none; }
.fact b { font: italic 800 clamp(1.35rem, 2.1vw, 1.95rem)/1 var(--font-display); font-stretch: 66%; text-transform: uppercase; color: #fff; }
.fact span { font-size: .84rem; color: var(--light-2); }

/* ---------- ticker ---------- */
.ticker {
  position: relative; z-index: 5; overflow: hidden; background: var(--grad-sunset); color: #1a1011;
  transform: rotate(-1.4deg) scale(1.03); margin: -22px 0 -22px; padding: 15px 0;
  box-shadow: 0 24px 60px -20px rgba(0, 0, 0, .35);
}
.ticker__track { display: flex; width: max-content; animation: marquee 46s linear infinite; }
.ticker span, .ticker i {
  flex: none; margin-right: 26px; white-space: nowrap;
  font: italic 800 1.32rem/1 var(--font-display); font-stretch: 68%; text-transform: uppercase; letter-spacing: .02em;
}
.ticker i { font-style: normal; opacity: .55; font-size: 1rem; align-self: center; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- sections ---------- */
.section { position: relative; padding-block: clamp(96px, 11vw, 168px); overflow: hidden; overflow: clip; } /* clip (not hidden) keeps position: sticky working inside */
.section--paper { background: var(--paper); }
.section--sand { background: var(--sand); }
.section--stone { background: var(--stone); }
.section--ink { background: var(--ink); color: var(--light); }
.section--night {
  color: var(--light);
  background:
    radial-gradient(55% 40% at 88% 0%, rgba(0, 162, 222, .2), transparent 72%),
    radial-gradient(45% 35% at 0% 55%, rgba(229, 93, 56, .12), transparent 72%),
    var(--night);
}

/* 01 — home base */
.homebase { padding-top: clamp(120px, 13vw, 190px); }
.homebase__grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.04fr); gap: clamp(44px, 6vw, 100px); align-items: start; }
.pillars { list-style: none; margin: 44px 0 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--rule-dark); }
.pillars li { display: flex; gap: 14px; padding: 24px 20px 24px 0; border-bottom: 1px solid var(--rule-dark); }
.pillars li:nth-child(odd) { border-right: 1px solid var(--rule-dark); }
.pillars li:nth-child(even) { padding-left: 24px; padding-right: 0; }
.pillars__icon {
  flex: none; width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center;
  background: #fff; color: var(--coral); box-shadow: inset 0 0 0 1px var(--rule-dark), 0 8px 18px -10px rgba(120, 60, 20, .35);
}
.pillars__icon svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.pillars h3 { font: italic 800 1.22rem/1.02 var(--font-display); font-stretch: 72%; text-transform: uppercase; margin: 3px 0 7px; color: var(--text); }
.pillars p { font-size: .94rem; line-height: 1.55; color: var(--text-2); }

.homebase__visual { position: relative; display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 340px); column-gap: 28px; align-items: center; }
.homebase__visual .photo--room { grid-column: 1 / -1; }
.homebase__visual { align-self: center; }
.homebase__visual .photo--room figcaption { top: 18px; bottom: auto; }
.photo { margin: 0; position: relative; overflow: hidden; border-radius: 24px; }
.photo--room { aspect-ratio: 2 / 1; box-shadow: 0 50px 90px -40px rgba(60, 35, 15, .55); }
.photo picture, .photo img { width: 100%; height: 100%; }
.photo img { object-fit: cover; transform: scale(1.03); transition: transform 1.4s var(--ease); }
.photo:hover img { transform: scale(1.07); }
.photo--room::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(180deg, rgba(18, 16, 17, 0) 45%, rgba(18, 16, 17, .55) 100%), linear-gradient(125deg, rgba(0, 162, 222, .14), rgba(238, 142, 54, .14));
}
.photo figcaption {
  position: absolute; left: 18px; bottom: 18px; z-index: 2; display: flex; align-items: center; gap: 10px;
  padding: 9px 15px 9px 12px; border-radius: 99px; color: #fff; background: rgba(18, 16, 17, .62);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  font: 600 .68rem/1 var(--font-body); letter-spacing: .14em; text-transform: uppercase;
}
.mapcard {
  position: relative; z-index: 3; grid-column: 2; grid-row: 2; margin: -56px clamp(-28px, -2vw, 0px) 0 0;
  display: grid; grid-template-columns: 96px 1fr; gap: 18px; align-items: center;
  padding: 22px 24px 22px 20px; border-radius: 22px; color: var(--light);
  background: radial-gradient(120% 90% at 0% 100%, rgba(0, 162, 222, .22), transparent 60%), var(--ink);
  box-shadow: 0 36px 70px -26px rgba(20, 12, 8, .6);
}
.mapcard__map { position: relative; }
.mapcard__map img { width: 100%; height: auto; }
.mapcard__pin { position: absolute; width: 13px; height: 13px; transform: translate(-50%, -50%); }
.mapcard__pin i { position: absolute; inset: 0; border-radius: 50%; background: var(--sun); box-shadow: 0 0 0 3px var(--ink); }
.mapcard__pin::before, .mapcard__pin::after {
  content: ""; position: absolute; inset: -9px; border-radius: 50%; border: 2px solid var(--sun); animation: ping 2.6s var(--ease) infinite;
}
.mapcard__pin::after { animation-delay: 1.3s; }
.mapcard__label { font: 600 .64rem/1 var(--font-body); letter-spacing: .18em; text-transform: uppercase; color: var(--sun); }
.mapcard__city { margin-top: 8px; font: italic 800 1.6rem/.95 var(--font-display); font-stretch: 64%; text-transform: uppercase; }
.mapcard__coords { margin-top: 6px; font: 500 .76rem/1 var(--font-mono); letter-spacing: .03em; color: var(--light-2); }
.mapcard__note { margin-top: 12px; font-size: .84rem; line-height: 1.5; color: var(--light-2); }
.homebase__stamp {
  grid-column: 1; grid-row: 2; margin: 14px 0 0 4px; transform: rotate(-5deg); transform-origin: left center;
  font: italic 800 clamp(1.45rem, 2.1vw, 2.05rem)/.95 var(--font-display); font-stretch: 60%; text-transform: uppercase; color: var(--text);
}
.homebase__stamp span { color: var(--coral-ink); }

/* 02 — resident athlete */
.athlete { background: radial-gradient(70% 70% at 22% 62%, #2b1913 0%, var(--ink) 62%); }
.athlete__word {
  position: absolute; left: -1vw; bottom: -5vw; z-index: 0; pointer-events: none; white-space: nowrap; user-select: none;
  font: italic 900 30vw/.8 var(--font-display); font-stretch: 56%; text-transform: uppercase;
  color: transparent; -webkit-text-stroke: 1px rgba(246, 242, 235, .08);
}
.athlete .grain { opacity: .07; }
.athlete__grid { display: grid; grid-template-columns: minmax(0, .92fr) minmax(0, 1fr); gap: clamp(44px, 6vw, 110px); align-items: center; }
.athlete__visual { position: relative; aspect-ratio: 5 / 6; display: flex; align-items: flex-end; justify-content: center; }
.athlete__sun {
  position: absolute; left: 50%; top: 42%; width: 88%; aspect-ratio: 1; transform: translate(-50%, -50%); border-radius: 50%;
  background: radial-gradient(circle at 50% 30%, #f7ae4b 0%, #ee8e36 34%, #e55d38 72%, #c9442a 100%);
  box-shadow: 0 0 140px 10px rgba(229, 93, 56, .28);
}
.athlete__sun i { position: absolute; inset: -6%; border-radius: 50%; border: 2px solid rgba(238, 142, 54, .5); }
.athlete__sun i + i { inset: -13%; border-color: rgba(238, 142, 54, .22); }
.athlete__palms {
  position: absolute; z-index: 1; right: 7%; top: 9%; width: 42%; aspect-ratio: 172 / 129; background: var(--ink);
  -webkit-mask: url("../img/brand/mark-palms.svg") center / contain no-repeat; mask: url("../img/brand/mark-palms.svg") center / contain no-repeat;
}
.athlete__visual picture { position: relative; z-index: 2; width: 86%; }
.athlete__photo {
  width: 100%; height: auto;
  -webkit-mask-image: linear-gradient(180deg, #000 76%, transparent 100%); mask-image: linear-gradient(180deg, #000 76%, transparent 100%);
}
.athlete__plate {
  position: absolute; z-index: 3; left: 0; bottom: 14%; display: flex; flex-direction: column; gap: 5px;
  padding: 13px 18px; border-radius: 14px; background: rgba(18, 16, 17, .7); box-shadow: inset 0 0 0 1px var(--rule-light);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
}
.athlete__plate span { font: 600 .64rem/1 var(--font-body); letter-spacing: .18em; text-transform: uppercase; color: var(--sun); }
.athlete__plate b { font: italic 800 1.25rem/1 var(--font-display); font-stretch: 66%; text-transform: uppercase; }
.athlete__name {
  margin-top: 20px; font-size: clamp(4.2rem, 10.2vw, 10.4rem); line-height: .8; font-weight: 900; font-stretch: 56%;
  background: var(--grad-silver); -webkit-background-clip: text; background-clip: text; color: transparent; padding-right: .1em;
}
.athlete__name span { background: var(--grad-sunset); -webkit-background-clip: text; background-clip: text; color: transparent; padding-right: .1em; }
.athlete__tagline {
  margin-top: 22px; font: italic 700 clamp(1.3rem, 2vw, 1.75rem)/1.05 var(--font-display); font-stretch: 76%;
  text-transform: uppercase; letter-spacing: .02em; color: var(--blue);
}
.athlete__body { margin-top: 18px; max-width: 54ch; font-size: 1.07rem; line-height: 1.72; color: var(--light-2); }
.statline { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); margin: 40px 0 0; border-top: 1px solid var(--rule-light); }
.statline div { padding: 20px 18px 20px 0; border-bottom: 1px solid var(--rule-light); }
.statline div:nth-child(even) { padding-left: 22px; border-left: 1px solid var(--rule-light); }
.statline dt { font: 600 .66rem/1 var(--font-body); letter-spacing: .17em; text-transform: uppercase; color: var(--light-2); }
.statline dd { margin: 10px 0 0; font: italic 800 clamp(1.2rem, 1.8vw, 1.55rem)/1.02 var(--font-display); font-stretch: 68%; text-transform: uppercase; color: #fff; }

.lineage {
  display: grid; grid-template-columns: 180px minmax(0, 1fr); gap: 28px; align-items: center;
  margin-top: clamp(56px, 7vw, 96px); padding-top: 30px; border-top: 1px solid var(--rule-light);
}
.lineage__label { font: 600 .66rem/1.6 var(--font-body); letter-spacing: .18em; text-transform: uppercase; color: var(--light-2); }
.lineage__list { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.lineage__item { display: flex; align-items: center; gap: 14px; min-width: 0; }
.lineage__avatar {
  position: relative; flex: none; width: 70px; height: 70px; overflow: hidden; border-radius: 50%;
  background: #1d2428; box-shadow: 0 0 0 1px var(--rule-light);
}
.lineage__avatar img {
  width: 100%; height: 100%; object-fit: cover; object-position: var(--fx) var(--fy);
  transform-origin: var(--fx) var(--fy); transform: translate(calc(50% - var(--fx)), calc(50% - var(--fy))) scale(var(--zoom));
  filter: grayscale(1) contrast(1.05);
}
.lineage__item.is-current .lineage__avatar {
  background: radial-gradient(circle at 50% 85%, #f7ae4b 0%, #ee8e36 30%, #e55d38 60%, #3a2320 100%);
  box-shadow: 0 0 0 2px var(--sun), 0 0 0 7px rgba(238, 142, 54, .16);
}
.lineage__item.is-current .lineage__avatar img { filter: none; }
.lineage__text { display: flex; flex-direction: column; gap: 5px; min-width: 0; }
.lineage__role { font: 600 .6rem/1 var(--font-body); letter-spacing: .18em; text-transform: uppercase; color: var(--light-2); }
.lineage__item.is-current .lineage__role { color: var(--sun); }
.lineage__text b { font: italic 800 1.35rem/1 var(--font-display); font-stretch: 64%; text-transform: uppercase; color: #fff; }
.lineage__text small { font-size: .8rem; line-height: 1.4; color: var(--light-2); }

/* 03 — guests */
.guests__intro { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr); gap: clamp(28px, 5vw, 80px); align-items: end; margin-bottom: clamp(44px, 5vw, 64px); }
.guests__intro .lede { margin-top: 0; }
.spotlight {
  display: grid; grid-template-columns: minmax(0, 1.12fr) minmax(0, .88fr); min-height: 460px; overflow: hidden; border-radius: 28px;
  background: linear-gradient(140deg, rgba(246, 242, 235, .07), rgba(246, 242, 235, .02)); box-shadow: inset 0 0 0 1px rgba(246, 242, 235, .1);
}
.spotlight__media { position: relative; min-height: 340px; }
.spotlight__media > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ph { position: absolute; inset: 0; overflow: hidden; }
.ph--action {
  background:
    radial-gradient(34% 44% at 50% 62%, #f7ae4b 0%, #ee8e36 45%, rgba(238, 142, 54, 0) 72%),
    linear-gradient(180deg, #0a6f9c 0%, #1790c4 34%, #e55d38 78%, #c9442a 100%);
}
.ph--action::before, .ph--action::after {
  content: ""; position: absolute; left: 50%; top: 62%; width: 62%; aspect-ratio: 1; border-radius: 50%;
  border: 2px solid rgba(247, 174, 75, .5); transform: translate(-50%, -50%);
}
.ph--action::after { width: 80%; border-color: rgba(247, 174, 75, .22); }
.ph__mark {
  position: absolute; z-index: 1; left: 50%; bottom: 7%; width: 74%; aspect-ratio: 176 / 98; transform: translateX(-50%); background: var(--ink);
  -webkit-mask: url("../img/brand/mark-wrestlers.svg") center / contain no-repeat; mask: url("../img/brand/mark-wrestlers.svg") center / contain no-repeat;
}
.spotlight__body { display: flex; flex-direction: column; justify-content: center; gap: 20px; padding: clamp(28px, 4vw, 60px); }
.chip {
  display: inline-flex; align-self: flex-start; align-items: center; gap: 10px; padding: 9px 15px 9px 12px; border-radius: 99px;
  font: 600 .68rem/1 var(--font-body); letter-spacing: .15em; text-transform: uppercase; color: #9fdcf5; background: rgba(0, 162, 222, .14);
}
.chip .live-dot { background: var(--blue); }
.chip .live-dot::after { border-color: var(--blue); }
.spotlight__name { font-size: clamp(3.2rem, 6vw, 5.8rem); line-height: .84; font-weight: 900; font-stretch: 56%; color: var(--light); }
.spotlight__cred { font-weight: 600; font-size: .95rem; letter-spacing: .02em; color: var(--sun); }
.spotlight__meta { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); margin: 6px 0 0; border-top: 1px solid var(--rule-light); }
.spotlight__meta div { padding: 16px 12px 0 0; }
.spotlight__meta dt { font: 600 .64rem/1 var(--font-body); letter-spacing: .16em; text-transform: uppercase; color: var(--light-2); }
.spotlight__meta dd { margin: 8px 0 0; font-size: .92rem; font-weight: 600; line-height: 1.35; }

.alumni { margin-top: clamp(96px, 11vw, 150px); }
.alumni__head { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 18px 40px; margin-bottom: 40px; }
.alumni__head p { max-width: 42ch; color: var(--light-2); font-size: 1.05rem; line-height: 1.6; }
.alumni__grid { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.guest {
  position: relative; overflow: hidden; border-radius: 20px; background: #151a1d; box-shadow: inset 0 0 0 1px rgba(246, 242, 235, .08);
  transition: transform .55s var(--ease), box-shadow .55s var(--ease);
}
.guest::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 3px; background: var(--grad-sunset);
  transform: scaleX(0); transform-origin: left; transition: transform .6s var(--ease);
}
.guest:hover { transform: translateY(-7px); box-shadow: inset 0 0 0 1px rgba(238, 142, 54, .45), 0 34px 60px -30px rgba(229, 93, 56, .45); }
.guest:hover::after { transform: scaleX(1); }
.guest__photo {
  position: relative; aspect-ratio: 4 / 5; overflow: hidden;
  background: radial-gradient(90% 58% at 50% 100%, rgba(229, 93, 56, .6), transparent 72%), linear-gradient(180deg, #1d2428 0%, #12171a 100%);
}
.guest:nth-child(4n+2) .guest__photo { background: radial-gradient(90% 58% at 50% 100%, rgba(0, 162, 222, .55), transparent 72%), linear-gradient(180deg, #1d2428 0%, #12171a 100%); }
.guest:nth-child(4n+3) .guest__photo { background: radial-gradient(90% 58% at 50% 100%, rgba(238, 142, 54, .55), transparent 72%), linear-gradient(180deg, #1d2428 0%, #12171a 100%); }
.guest:nth-child(4n+4) .guest__photo { background: radial-gradient(90% 58% at 50% 100%, rgba(0, 162, 222, .4), transparent 60%), radial-gradient(70% 50% at 50% 100%, rgba(229, 93, 56, .45), transparent 72%), linear-gradient(180deg, #1d2428 0%, #12171a 100%); }
.guest__photo::before {
  content: ""; position: absolute; left: 50%; bottom: 9%; width: 86%; aspect-ratio: 176 / 98; transform: translateX(-50%);
  background: rgba(6, 8, 9, .62);
  -webkit-mask: url("../img/brand/mark-wrestlers.svg") center / contain no-repeat; mask: url("../img/brand/mark-wrestlers.svg") center / contain no-repeat;
  transition: transform .8s var(--ease);
}
.guest:hover .guest__photo::before { transform: translateX(-50%) scale(1.05); }
.guest__photo::after {
  content: attr(data-initials); position: absolute; top: 16px; left: 18px;
  font: italic 900 4.6rem/.8 var(--font-display); font-stretch: 56%; color: transparent; -webkit-text-stroke: 1.5px rgba(246, 242, 235, .26);
}
.guest__photo img { position: absolute; inset: 0; z-index: 1; width: 100%; height: 100%; object-fit: cover; object-position: 50% 22%; transition: transform 1s var(--ease), filter .7s var(--ease); }
.guest__photo img { filter: grayscale(1) contrast(1.08) brightness(.94); }
.guest:hover .guest__photo img { transform: scale(1.05); filter: none; }
.guest__photo:has(img)::after {
  content: ""; inset: 0; z-index: 2; -webkit-text-stroke: 0; pointer-events: none; mix-blend-mode: color;
  background: linear-gradient(180deg, rgba(0, 162, 222, .22) 0%, rgba(229, 93, 56, .38) 100%); transition: opacity .7s var(--ease);
}
.guest:hover .guest__photo:has(img)::after { opacity: 0; }
@media (hover: none) {
  .guest__photo img { filter: none; }
  .guest__photo:has(img)::after { opacity: 0; }
}
.guest--more { background: var(--grad-sunset); box-shadow: none; }
.guest--more::after { display: none; }
.guest--more:hover { box-shadow: 0 34px 60px -30px rgba(229, 93, 56, .65); }
.guest__more {
  position: relative; isolation: isolate; overflow: hidden; display: flex; flex-direction: column; justify-content: space-between; gap: 24px;
  height: 100%; padding: 24px 22px 22px; color: #1a1011; text-decoration: none;
}
.guest__more::before {
  content: ""; position: absolute; z-index: -1; right: -18%; bottom: 16%; width: 118%; aspect-ratio: 176 / 98; background: rgba(26, 16, 17, .13);
  -webkit-mask: url("../img/brand/mark-wrestlers.svg") center / contain no-repeat; mask: url("../img/brand/mark-wrestlers.svg") center / contain no-repeat;
  transition: transform .8s var(--ease);
}
.guest--more:hover .guest__more::before { transform: scale(1.05) translateX(-2%); }
.guest__more-num { font: italic 900 clamp(4.6rem, 8vw, 7rem)/.8 var(--font-display); font-stretch: 56%; padding-right: .06em; }
.guest__more-text { font: italic 800 clamp(1.3rem, 2vw, 1.6rem)/.95 var(--font-display); font-stretch: 62%; text-transform: uppercase; }

.guest__flag {
  position: absolute; z-index: 3; top: 12px; left: 12px; max-width: calc(100% - 24px); padding: 7px 10px; border-radius: 99px;
  color: #fff; background: rgba(18, 16, 17, .78); box-shadow: inset 0 0 0 1px rgba(238, 142, 54, .55);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  font: 600 .58rem/1.3 var(--font-body); letter-spacing: .13em; text-transform: uppercase;
}
.guest__meta { position: relative; padding: 18px 20px 22px; }
.guest__num { position: absolute; top: 21px; right: 18px; font: 500 .7rem/1 var(--font-mono); color: rgba(246, 242, 235, .38); }
.guest__name { margin-right: 28px; font: italic 800 1.5rem/1 var(--font-display); font-stretch: 64%; text-transform: uppercase; color: var(--light); }
.guest__cred { margin-top: 8px; font-size: .84rem; line-height: 1.45; color: var(--light-2); }
.alumni__credits { margin-top: 24px; max-width: 90ch; font-size: .74rem; line-height: 1.6; color: rgba(246, 242, 235, .42); }
.alumni__credits a { color: rgba(246, 242, 235, .62); text-underline-offset: 2px; }
.alumni__credits a:hover { color: var(--light); }
.guest--tba .guest__name { color: rgba(246, 242, 235, .42); }
.guest--tba .guest__cred { color: rgba(246, 242, 235, .36); }

/* 04 — mini camps */
.camps__grid { display: grid; grid-template-columns: minmax(0, .86fr) minmax(0, 1.14fr); gap: clamp(44px, 6vw, 100px); align-items: start; }
.expect { list-style: none; margin: 38px 0 30px; padding: 0; border-top: 1px solid var(--rule-dark); }
.expect li { display: grid; grid-template-columns: 170px 1fr; gap: 18px; padding: 17px 0; border-bottom: 1px solid var(--rule-dark); }
.expect b { font: italic 800 1.16rem/1.1 var(--font-display); font-stretch: 72%; text-transform: uppercase; color: var(--text); }
.expect span { font-size: .95rem; line-height: 1.5; color: var(--text-2); }

.notice { position: relative; padding: 22px 24px; border-radius: 18px; background: #fff; box-shadow: inset 0 0 0 1px var(--rule-dark); }
.notice p { font-size: .94rem; line-height: 1.6; color: var(--text-2); }
.notice p + p, .notice p + a, .notice p + .btn { margin-top: 14px; }
.notice .textlink { display: inline-block; margin-top: 12px; font-size: .92rem; }
.notice__title {
  display: flex; align-items: center; gap: 10px; margin-bottom: 10px;
  font: italic 800 1.14rem/1 var(--font-display) !important; font-stretch: 72%; text-transform: uppercase; color: var(--coral-ink) !important;
}
.notice__title svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; }
.notice--hs { background: #fff8f1; box-shadow: inset 0 0 0 1px rgba(229, 93, 56, .3); }
.notice--hs::before { content: ""; position: absolute; left: 0; top: 20px; bottom: 20px; width: 3px; border-radius: 0 3px 3px 0; background: var(--grad-sunset); }

.camps__schedule {
  position: relative; overflow: hidden; border-radius: 28px; padding: clamp(24px, 3.4vw, 46px); color: var(--light);
  background: radial-gradient(70% 55% at 100% 0%, rgba(229, 93, 56, .28), transparent 70%), radial-gradient(60% 50% at 0% 100%, rgba(0, 162, 222, .16), transparent 70%), var(--ink);
  box-shadow: 0 50px 100px -50px rgba(50, 25, 10, .7);
}
.schedule__head { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 14px; padding-bottom: 24px; border-bottom: 1px solid var(--rule-light); }
.schedule__eyebrow { font: 600 .68rem/1 var(--font-body); letter-spacing: .18em; text-transform: uppercase; color: var(--sun); }
.schedule__title { margin-top: 10px; font: italic 800 clamp(2.1rem, 3.5vw, 3rem)/.9 var(--font-display); font-stretch: 60%; text-transform: uppercase; }
.schedule__badge { padding: 9px 13px; border-radius: 99px; box-shadow: inset 0 0 0 1px var(--rule-light); font: 600 .64rem/1 var(--font-body); letter-spacing: .15em; text-transform: uppercase; color: var(--light-2); }
.schedule { list-style: none; margin: 0; padding: 0; }
.camp { display: grid; grid-template-columns: 112px minmax(0, 1fr) auto; gap: 22px; align-items: center; padding: 22px 12px; margin-inline: -12px; border-bottom: 1px solid var(--rule-light); border-radius: 14px; transition: background-color .35s; }
.camp:hover { background: rgba(246, 242, 235, .04); }
.camp__date {
  display: flex; flex-direction: column; justify-content: center; min-height: 86px; padding: 12px 14px; border-radius: 14px;
  background: rgba(246, 242, 235, .05); box-shadow: inset 0 0 0 1px var(--rule-light);
}
.camp__month { font: italic 900 1.75rem/.9 var(--font-display); font-stretch: 58%; text-transform: uppercase; background: var(--grad-sunset); -webkit-background-clip: text; background-clip: text; color: transparent; padding-right: .1em; }
.camp__year { margin-top: 6px; font: 500 .78rem/1 var(--font-mono); letter-spacing: .06em; color: var(--light-2); }
.camp__title { font: italic 800 1.55rem/1 var(--font-display); font-stretch: 64%; text-transform: uppercase; }
.camp__detail { margin-top: 7px; font-size: .9rem; color: var(--light-2); }
.camp__tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 12px; }
.camp__tags span { padding: 6px 10px; border-radius: 99px; font: 600 .62rem/1 var(--font-body); letter-spacing: .1em; text-transform: uppercase; color: #9fdcf5; background: rgba(0, 162, 222, .14); }
.camp__tags span + span { color: #f8c38e; background: rgba(238, 142, 54, .14); }
.status { display: inline-flex; align-items: center; gap: 8px; padding: 9px 13px; border-radius: 99px; white-space: nowrap; font: 600 .66rem/1 var(--font-body); letter-spacing: .12em; text-transform: uppercase; }
.status::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: currentColor; }
.status--soon { color: #f8c38e; background: rgba(238, 142, 54, .13); }
.status--set { color: #9fdcf5; background: rgba(0, 162, 222, .16); }
.status--full { color: #ffa48d; background: rgba(229, 93, 56, .18); }
.status--done { color: rgba(246, 242, 235, .5); background: rgba(246, 242, 235, .06); }
.camp--next { align-items: start; padding-block: 28px; background: linear-gradient(90deg, rgba(238, 142, 54, .1), rgba(238, 142, 54, 0) 75%); }
.camp--next:hover { background: linear-gradient(90deg, rgba(238, 142, 54, .14), rgba(238, 142, 54, 0) 75%); }
.camp__date--next { min-height: 128px; background: var(--grad-sunset); box-shadow: 0 18px 40px -18px rgba(229, 93, 56, .8); }
.camp__date--next .camp__month { background: none; color: #1a1011; font-size: 1.5rem; }
.camp__days { font: italic 900 2.35rem/.88 var(--font-display); font-stretch: 56%; color: #1a1011; padding-right: .08em; }
.camp__date--next .camp__year { color: rgba(26, 16, 17, .72); }
.camp__eyebrow { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; font: 600 .64rem/1 var(--font-body); letter-spacing: .17em; text-transform: uppercase; color: var(--sun); }
.sessions { list-style: none; margin: 16px 0 0; padding: 0; border-top: 1px solid var(--rule-light); }
.sessions li { display: grid; grid-template-columns: 96px minmax(0, 1fr); gap: 14px; align-items: baseline; padding: 11px 0; border-bottom: 1px solid var(--rule-light); }
.sessions__when { font: 500 .8rem/1.2 var(--font-mono); color: #fff; white-space: nowrap; }
.sessions__when b { margin-right: 4px; font: 700 .64rem/1 var(--font-body); letter-spacing: .12em; text-transform: uppercase; color: var(--sun); }
.sessions__what { font-size: .92rem; line-height: 1.4; color: var(--light-2); }
.camp__room { margin-top: 14px; font-size: .9rem; line-height: 1.55; color: var(--light-2); }
.camp__room b { color: #fff; font-weight: 600; }
.camp--more { border-bottom: 0; }
.camp--more .camp__date { min-height: 72px; }
.camp--more .camp__detail a { color: var(--light); font-weight: 600; text-decoration-color: rgba(238, 142, 54, .7); text-underline-offset: 3px; }
.schedule__foot { margin-top: 22px; font-size: .84rem; line-height: 1.6; color: var(--light-2); }
.schedule__foot a { color: var(--light); font-weight: 600; overflow-wrap: anywhere; text-decoration-color: rgba(238, 142, 54, .7); text-underline-offset: 3px; }

/* 05 — staff */
.staff__head { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr); gap: clamp(28px, 5vw, 80px); align-items: end; margin-bottom: clamp(44px, 5vw, 64px); }
.staff__head .lede { margin-top: 0; }
.staff__grid { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 16px; }
.coach {
  overflow: hidden; border-radius: 20px; background: #fff; box-shadow: inset 0 0 0 1px var(--rule-dark);
  transition: transform .55s var(--ease), box-shadow .55s var(--ease);
}
.coach:hover { transform: translateY(-7px); box-shadow: inset 0 0 0 1px var(--rule-dark), 0 36px 60px -34px rgba(70, 35, 10, .45); }
.coach__photo {
  position: relative; aspect-ratio: 5 / 7; overflow: hidden;
  background: radial-gradient(95% 62% at 50% 100%, #ee8e36 0%, #e55d38 36%, #4a2a22 70%, #1f1819 100%);
}
.coach__photo::before {
  content: ""; position: absolute; left: 50%; top: 36%; width: 118%; aspect-ratio: 1; border-radius: 50%; transform: translate(-50%, -50%);
  box-shadow: inset 0 0 0 1px rgba(247, 174, 75, .22), 0 0 0 26px rgba(247, 174, 75, .04);
}
.coach--lead .coach__photo { background: radial-gradient(95% 62% at 50% 100%, #36b7e8 0%, #00a2de 36%, #0d4460 72%, #121011 100%); }
.coach__photo picture, .coach__photo img { position: absolute; inset: 0; width: 100%; height: 100%; }
.coach__photo img { object-fit: cover; object-position: 50% 100%; transform: translateY(3%); transition: transform .9s var(--ease); }
.coach:hover .coach__photo img { transform: translateY(1%) scale(1.04); }
.coach__flag {
  position: absolute; z-index: 2; top: 12px; left: 12px; padding: 7px 11px; border-radius: 99px; color: #fff; background: rgba(18, 16, 17, .75);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); font: 600 .6rem/1 var(--font-body); letter-spacing: .15em; text-transform: uppercase;
}
.coach__body { padding: 17px 18px 21px; }
.coach__role { font: 600 .64rem/1 var(--font-body); letter-spacing: .16em; text-transform: uppercase; color: var(--coral-ink); }
.coach--lead .coach__role { color: var(--blue-deep); }
.coach__name { margin-top: 8px; font: italic 800 1.5rem/1 var(--font-display); font-stretch: 64%; text-transform: uppercase; color: var(--text); }
.coach__cred { margin-top: 8px; font-size: .84rem; line-height: 1.45; color: var(--text-2); }

.legacy { margin-top: clamp(72px, 9vw, 120px); }
.legacy__head {
  display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 12px 40px;
  margin-bottom: 26px; padding-bottom: 22px; border-bottom: 1px solid var(--rule-dark);
}
.legacy__title { font: italic 800 clamp(2rem, 3.4vw, 3rem)/.9 var(--font-display); font-stretch: 60%; text-transform: uppercase; color: var(--text); }
.legacy__title em { font-style: inherit; color: var(--coral-ink); }
.legacy__intro { max-width: 46ch; font-size: 1rem; line-height: 1.6; color: var(--text-2); }
.legacy__grid { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.legend {
  display: grid; grid-template-columns: minmax(150px, 40%) minmax(0, 1fr); overflow: hidden; border-radius: 22px;
  color: var(--light); background: var(--ink); box-shadow: 0 44px 80px -54px rgba(40, 20, 10, .7);
}
.legend__photo {
  position: relative; min-height: 250px; overflow: hidden;
  background: radial-gradient(95% 75% at 50% 100%, #d3d6d8 0%, #9a9fa2 28%, #45484a 62%, #1b1a1b 100%);
}
.legend__photo picture, .legend__photo img { position: absolute; inset: 0; width: 100%; height: 100%; }
.legend__photo img { object-fit: cover; object-position: 50% 100%; filter: grayscale(1) contrast(1.06); transition: filter .7s var(--ease), transform .9s var(--ease); }
.legend:hover .legend__photo img { filter: none; transform: scale(1.03); }
.legend__body { display: flex; flex-direction: column; justify-content: center; padding: clamp(24px, 2.8vw, 36px); }
.legend__role { font: 600 .64rem/1 var(--font-body); letter-spacing: .17em; text-transform: uppercase; color: var(--sun); }
.legend__name {
  margin-top: 10px; padding-right: .08em; font: italic 900 clamp(2.1rem, 3.4vw, 2.9rem)/.86 var(--font-display); font-stretch: 56%; text-transform: uppercase;
  background: var(--grad-silver); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.legend__creds { list-style: none; margin: 18px 0 0; padding: 0; display: grid; gap: 9px; }
.legend__creds li { position: relative; padding-left: 18px; font-size: .9rem; line-height: 1.45; color: var(--light-2); }
.legend__creds li::before { content: ""; position: absolute; left: 0; top: .66em; width: 9px; height: 2px; border-radius: 2px; background: var(--grad-sunset); }

/* 06 — eligibility */
.elig__grid { display: grid; grid-template-columns: minmax(0, 1.22fr) minmax(0, .78fr); gap: clamp(40px, 5vw, 80px); align-items: start; }
.criteria { display: grid; gap: 14px; margin-top: 40px; }
.criteria__group { padding: 26px 28px; border-radius: 20px; background: #fff; box-shadow: inset 0 0 0 1px var(--rule-dark); }
.criteria__group h3 { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; font: italic 800 1.3rem/1 var(--font-display); font-stretch: 70%; text-transform: uppercase; color: var(--text); }
.criteria__group h3 span { display: grid; place-items: center; width: 32px; height: 32px; border-radius: 9px; background: var(--ink); color: var(--sun); font-size: 1rem; }
.criteria__group ul { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 11px 30px; }
.criteria__group li { position: relative; padding-left: 22px; font-size: .92rem; line-height: 1.5; color: var(--text-2); }
.criteria__group li::before { content: ""; position: absolute; left: 0; top: .72em; width: 11px; height: 2px; border-radius: 2px; background: var(--coral); }
.criteria__note { margin-top: 18px; padding-top: 16px; border-top: 1px dashed var(--rule-dark); font-size: .88rem; line-height: 1.55; color: var(--text-2); }
.elig__aside { position: sticky; top: calc(var(--nav-h) + 24px); display: grid; gap: 14px; }
.notice ul { list-style: none; margin: 4px 0 0; padding: 0; display: grid; gap: 12px; }
.notice li { position: relative; padding-left: 18px; font-size: .92rem; line-height: 1.58; color: var(--text-2); }
.notice li::before { content: ""; position: absolute; left: 0; top: .62em; width: 6px; height: 6px; border-radius: 50%; background: var(--coral); }
.notice li strong { color: var(--text); font-weight: 600; }
.notice--big { padding: 26px 28px; }
.notice--source { background: var(--ink); box-shadow: none; }
.notice--source p { color: var(--light-2); }
.notice--source em { color: var(--light); }
.textlink--light { color: var(--light); text-decoration-color: var(--sun); }
.textlink--light:hover { color: #fff; }

/* affiliation */
.affil { position: relative; overflow: hidden; color: #fff; background: linear-gradient(100deg, #0a5476 0%, #0a6f9c 45%, #0b83b6 100%); }
.affil::before {
  content: ""; position: absolute; right: -8%; top: -60%; width: 46%; aspect-ratio: 1; border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 162, 222, .55), transparent 65%);
}
.affil__inner { display: grid; grid-template-columns: auto minmax(0, 1fr) auto; align-items: center; gap: clamp(24px, 4vw, 64px); padding-block: 46px; }
.affil__logo img { width: clamp(180px, 17vw, 236px); height: auto; }
.affil__text { max-width: 62ch; font-size: clamp(1.02rem, 1.35vw, 1.22rem); line-height: 1.55; color: rgba(255, 255, 255, .88); }
.affil__text strong { color: #fff; font-weight: 600; }
.affil__np { display: flex; flex-direction: column; align-items: flex-start; gap: 6px; padding-left: clamp(24px, 3vw, 40px); border-left: 1px solid rgba(255, 255, 255, .28); }
.affil__np-big { font: italic 900 2.7rem/.85 var(--font-display); font-stretch: 58%; }
.affil__np-small { max-width: 230px; font: 600 .66rem/1.55 var(--font-body); letter-spacing: .16em; text-transform: uppercase; color: rgba(255, 255, 255, .8); }

/* footer */
.footer { position: relative; overflow: hidden; color: var(--light); background: radial-gradient(60% 50% at 50% 100%, rgba(229, 93, 56, .2), transparent 70%), var(--ink); padding-top: clamp(76px, 9vw, 124px); }
.footer .grain { opacity: .06; }
.footer__grid { display: grid; grid-template-columns: minmax(0, 1.45fr) repeat(3, minmax(0, 1fr)); gap: 44px; }
.footer__brand img { width: 230px; height: auto; }
.footer__tag { margin-top: 24px; font: italic 800 clamp(1.7rem, 2.4vw, 2.2rem)/.92 var(--font-display); font-stretch: 60%; text-transform: uppercase; }
.footer__label { margin-bottom: 16px; font: 600 .66rem/1 var(--font-body); letter-spacing: .18em; text-transform: uppercase; color: var(--sun); }
.footer__label--gap { margin-top: 30px; }
.footer__col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 11px; }
.footer__col a { color: var(--light-2); text-decoration: none; font-size: .95rem; transition: color .2s; }
.footer__col a:hover { color: #fff; }
.footer address { font-style: normal; font-size: .95rem; line-height: 1.65; color: var(--light-2); }
.footer__muted { font-size: .95rem; color: rgba(246, 242, 235, .42); }
.footer__muted + .footer__muted, .footer__contact + .footer__muted { margin-top: 10px; }
.footer__contact a { color: var(--light); font-weight: 500; overflow-wrap: anywhere; text-decoration: underline; text-decoration-color: rgba(238, 142, 54, .6); text-underline-offset: 4px; }
.footer__contact a:hover { text-decoration-color: var(--sun); }
.socials { list-style: none; margin: 0; padding: 0; display: flex; gap: 10px; }
.footer__col .socials { display: flex; margin-top: 18px; }
.socials a {
  display: grid; place-items: center; width: 42px; height: 42px; border-radius: 50%; color: var(--light);
  box-shadow: inset 0 0 0 1px var(--rule-light); transition: background-color .3s, color .3s, box-shadow .3s, transform .3s var(--ease);
}
.socials a:hover { background: var(--sun); color: var(--ink); box-shadow: none; transform: translateY(-2px); }
.socials svg { width: 19px; height: 19px; }

.footer__mega {
  position: relative; z-index: 1; margin: clamp(64px, 8vw, 110px) 0 -.12em; text-align: center; white-space: nowrap; user-select: none;
  font-size: clamp(3.4rem, 13.4vw, 17rem); line-height: .8; font-weight: 900; font-stretch: 56%;
  background: linear-gradient(180deg, rgba(246, 242, 235, .16) 0%, rgba(246, 242, 235, .02) 88%); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.footer__legal { display: flex; justify-content: space-between; gap: 12px 40px; padding-block: 24px 30px; border-top: 1px solid var(--rule-light); font-size: .78rem; line-height: 1.6; color: rgba(246, 242, 235, .48); }
.footer__legal p:last-child { max-width: 72ch; text-align: right; }

/* ---------- 404 ---------- */
.notfound { width: min(100% - 2 * var(--gutter), 760px); min-height: 100vh; min-height: 100svh; margin-inline: auto; display: flex; flex-direction: column; justify-content: center; align-items: flex-start; color: var(--light); padding-block: 48px; }
.notfound img { width: 190px; height: auto; margin-bottom: 40px; }
.notfound .lede { margin-bottom: 18px; }

/* ---------- scroll reveal ---------- */
.no-anim *, .no-anim *::before, .no-anim *::after { animation: none !important; transition: none !important; }
.no-anim [data-reveal], .no-anim .reveal-load, .no-anim .hero__title .line > span { opacity: 1 !important; transform: none !important; }
.js [data-reveal] { opacity: 0; transform: translateY(30px); transition: opacity 1s var(--ease), transform 1s var(--ease); transition-delay: var(--rd, 0ms); }
.js [data-reveal].is-in { opacity: 1; transform: none; }
.js .guest[data-reveal].is-in, .js .coach[data-reveal].is-in { transition: opacity 1s var(--ease) var(--rd, 0ms), transform .55s var(--ease), box-shadow .55s var(--ease); }

/* ---------- responsive ---------- */
@media (max-width: 1240px) {
  .nav__links, .nav__usaw { display: none; }
  .nav__toggle { display: block; }
  .staff__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .alumni__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 1080px) {
  .homebase__grid, .camps__grid, .elig__grid { grid-template-columns: 1fr; }
  .homebase__visual { max-width: 720px; }
  .elig__aside { position: static; }
  .footer__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .footer__brand { grid-column: 1 / -1; display: flex; align-items: center; gap: 28px; }
  .legacy__grid { grid-template-columns: 1fr; }
  .footer__brand img { width: 160px; }
  .footer__tag { margin-top: 0; }
}
@media (max-width: 920px) {
  .hero__inner { grid-template-columns: 1fr; padding-top: 18px; }
  .hero__title { font-size: clamp(3.2rem, 11vw, 6.4rem); }
  .hero__badge { order: -1; justify-self: start; width: min(56vw, 300px); margin: 0 0 -8px -2%; }
  .facts { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .fact:nth-child(3) { padding-left: 0; border-left: 0; }
  .fact:nth-child(n+3) { border-top: 1px solid var(--rule-light); margin-top: 18px; }
  .athlete__grid { grid-template-columns: 1fr; }
  .athlete__visual { max-width: 460px; width: 100%; margin-inline: auto; }
  .guests__intro, .staff__head { grid-template-columns: 1fr; align-items: start; }
  .spotlight { grid-template-columns: 1fr; }
  .spotlight__media { min-height: 0; aspect-ratio: 16 / 10; }
  .affil__inner { grid-template-columns: 1fr; justify-items: start; gap: 22px; }
  .lineage { grid-template-columns: 1fr; gap: 20px; }
  .lineage__list { grid-template-columns: 1fr; gap: 16px; }
  .affil__np { padding-left: 0; padding-top: 20px; border-left: 0; border-top: 1px solid rgba(255, 255, 255, .28); }
}
@media (max-width: 720px) {
  :root { --nav-h: 66px; }
  .nav__brand img { width: 38px; height: 38px; }
  .hero__title { font-size: clamp(3rem, 15.5vw, 4.6rem); }
  .hero__next { font-size: .64rem; letter-spacing: .1em; }
  .ticker span { font-size: 1.1rem; }
  .pillars { grid-template-columns: 1fr; }
  .pillars li, .pillars li:nth-child(even) { padding: 20px 0; border-right: 0; }
  .pillars li:nth-child(odd) { border-right: 0; }
  .homebase__visual { grid-template-columns: 1fr; }
  .mapcard { grid-column: 1; grid-row: 2; margin: -22px 14px 0; grid-template-columns: 70px 1fr; gap: 14px; padding: 18px 18px 18px 16px; }
  .mapcard__city { font-size: 1.35rem; }
  .homebase__visual .photo--room figcaption { display: none; }
  .homebase__stamp { grid-column: 1; grid-row: 3; transform: rotate(-3deg); margin: 30px 0 0 6px; }
  .statline div { padding-right: 12px; }
  .statline div:nth-child(even) { padding-left: 14px; }
  .spotlight__meta { grid-template-columns: 1fr 1fr; }
  .alumni__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
  .guest__meta { padding: 14px 14px 18px; }
  .guest__name { font-size: 1.22rem; margin-right: 0; }
  .guest__num { display: none; }
  .guest__flag { top: 8px; left: 8px; max-width: calc(100% - 16px); padding: 6px 8px; font-size: .5rem; letter-spacing: .1em; }
  .legend { grid-template-columns: 1fr; }
  .legend__photo { min-height: 0; aspect-ratio: 4 / 3; }
  .legend__photo img { object-fit: contain; }
  .guest__photo::after { font-size: 3.2rem; }
  .expect li { grid-template-columns: 1fr; gap: 4px; }
  .camp { grid-template-columns: 88px minmax(0, 1fr); gap: 16px; }
  .camp .status { grid-column: 2; justify-self: start; }
  .camp--next { grid-template-columns: 1fr; }
  .camp--next .status { grid-column: 1; grid-row: 1; justify-self: end; align-self: center; }
  .camp--next .camp__info { grid-column: 1; grid-row: 2; }
  .camp__date--next { grid-row: 1; grid-column: 1; flex-direction: row; align-items: baseline; gap: 10px; min-height: 0; justify-self: start; padding: 12px 16px; }
  .camp__date--next .camp__year { margin-top: 0; }
  .sessions li { grid-template-columns: 1fr; gap: 3px; }
  .camp__date { min-height: 76px; padding: 10px 12px; }
  .camp__month { font-size: 1.45rem; }
  .staff__grid {
    grid-template-columns: none; grid-auto-flow: column; grid-auto-columns: 72%; overflow-x: auto; scroll-snap-type: x mandatory;
    margin-inline: calc(-1 * var(--gutter)); padding: 4px var(--gutter) 18px; scroll-padding-inline: var(--gutter); scrollbar-width: none;
  }
  .staff__grid::-webkit-scrollbar { display: none; }
  .coach { scroll-snap-align: start; }
  .criteria__group { padding: 22px 20px; }
  .criteria__group ul { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 36px 24px; }
  .footer__brand { flex-direction: column; align-items: flex-start; gap: 20px; }
  .footer__legal { flex-direction: column; }
  .footer__legal p:last-child { text-align: left; }
}
@media (max-width: 420px) {
  .hero__next { flex-wrap: nowrap; }
  .hero__next-days { display: none; }
  .footer__grid { grid-template-columns: 1fr; }
  .spotlight__meta { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  .js [data-reveal], .js .reveal-load, .js .hero__title .line > span { opacity: 1; transform: none; animation: none; }
  .ticker__track { animation: none; }
}
