@font-face {
  font-family: "Libre Franklin";
  src: url("https://www.sharksbasketball.com/wp-content/uploads/sharks-v6-4/assets/libre-franklin.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --teal: #163643;
  --teal-deep: #07171e;
  --teal-ink: #0c232d;
  --blue: #3d85a1;
  --red: #a22f2f;
  --red-bright: #bf3d38;
  --grey: #c6c5c4;
  --white: #ffffff;
  --ink: #061016;
  --line: rgb(198 197 196 / 0.22);
  --radius: 2px;
  --shell: min(1240px, calc(100vw - 64px));
  --header-height: 74px;
  --z-header: 40;
  --z-menu: 35;
  --z-skip: 100;
  color-scheme: dark;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--teal-deep);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background:
    linear-gradient(160deg, rgb(61 133 161 / 0.08), transparent 38%),
    var(--teal-deep);
  color: var(--white);
  font-family: "Libre Franklin", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

img,
video {
  display: block;
  max-width: 100%;
}

img {
  height: auto;
}

a {
  color: inherit;
}

button,
input,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--white);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: var(--z-skip);
  padding: 12px 16px;
  transform: translateY(-150%);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  font-weight: 800;
  transition: transform 180ms ease-out;
}

.skip-link:focus {
  transform: translateY(0);
}

.content-shell {
  width: var(--shell);
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: var(--z-header);
  display: flex;
  align-items: center;
  min-height: var(--header-height);
  padding: 0 30px;
  border-bottom: 1px solid rgb(255 255 255 / 0.15);
  background: var(--teal-deep);
}

.brand {
  display: grid;
  width: 62px;
  height: 62px;
  flex: 0 0 auto;
  place-items: center;
}

.brand img {
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.site-nav {
  display: flex;
  min-width: 0;
  flex: 1 1 auto;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(12px, 1.55vw, 28px);
  white-space: nowrap;
}

.site-nav > a:not(.header-action) {
  position: relative;
  display: inline-flex;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  color: var(--grey);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.025em;
  text-decoration: none;
  transition: color 180ms ease-out;
}

.site-nav > a:not(.header-action)::after {
  position: absolute;
  right: 0;
  bottom: 5px;
  left: 0;
  height: 2px;
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  background: var(--red-bright);
  transition: transform 220ms cubic-bezier(0.16, 1, 0.3, 1);
}

.site-nav > a:hover,
.site-nav > a[aria-current="page"] {
  color: var(--white);
}

.site-nav > a:hover::after,
.site-nav > a[aria-current="page"]::after {
  transform: scaleX(1);
}

.header-action {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid var(--red-bright);
  border-radius: var(--radius);
  background: var(--red);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.035em;
  text-decoration: none;
  transition: background 180ms ease-out, transform 180ms ease-out;
}

.header-action:hover {
  background: var(--red-bright);
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.1;
  text-align: center;
  text-decoration: none;
  transition: transform 180ms ease-out, background 180ms ease-out, color 180ms ease-out, border-color 180ms ease-out;
}

.button:hover:not(:disabled) {
  transform: translateY(-2px);
}

.button:active:not(:disabled) {
  transform: translateY(0);
}

.button--primary {
  border-color: var(--red-bright);
  background: var(--red);
  color: var(--white);
}

.button--primary:hover:not(:disabled) {
  background: var(--red-bright);
}

.button--secondary {
  border-color: rgb(255 255 255 / 0.55);
  background: rgb(7 23 30 / 0.58);
  color: var(--white);
}

.button--secondary:hover:not(:disabled) {
  border-color: var(--white);
  background: rgb(255 255 255 / 0.09);
}

.button:disabled {
  border-color: rgb(198 197 196 / 0.24);
  background: rgb(198 197 196 / 0.1);
  color: rgb(198 197 196 / 0.62);
  cursor: not-allowed;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.external-mark {
  margin-left: 8px;
  font-size: 1.1em;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--grey);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1.35;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-weight: 850;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

h1,
h2 {
  text-wrap: balance;
}

p {
  text-wrap: pretty;
}

/* Kept phrases stay on one line at normal zoom. The container query is written in rem, which
   resolves against the root font size, so at 200% text zoom on a phone (20rem = 640px against
   a 390px main) the phrases are released to wrap instead of clipping. */
main {
  container-type: inline-size;
}

@container (min-width: 20rem) {
  .keep {
    white-space: nowrap;
  }
}

.br-mobile {
  display: none;
}

h2 {
  margin-bottom: 24px;
  font-size: clamp(2.4rem, 5.4vw, 5.8rem);
}

h3 {
  font-size: clamp(1.4rem, 2.4vw, 2.2rem);
}

p {
  max-width: 66ch;
  color: var(--grey);
}

.text-link {
  display: inline-flex;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  color: var(--white);
  font-size: 0.86rem;
  font-weight: 800;
  text-underline-offset: 6px;
  text-decoration-thickness: 2px;
  text-decoration-color: rgb(255 255 255 / 0.55);
  transition: color 180ms ease-out, text-decoration-color 180ms ease-out, text-underline-offset 180ms ease-out;
}

.text-link:hover,
.text-link:focus-visible {
  color: var(--blue);
  text-decoration-color: var(--blue);
  text-decoration-thickness: 3px;
  text-underline-offset: 8px;
}

.home-hero {
  position: relative;
  display: grid;
  min-height: calc(100svh - var(--header-height));
  overflow: hidden;
  align-items: end;
  background-color: var(--ink);
  background-image: url("https://www.sharksbasketball.com/wp-content/uploads/sharks-v6-4/assets/hero-poster-web.jpg");
  background-position: center;
  background-size: cover;
  isolation: isolate;
}

.home-hero__video,
.home-hero__grade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.home-hero__video {
  z-index: -3;
  object-fit: cover;
  object-position: center 42%;
}

.home-hero__grade {
  z-index: -2;
  background:
    linear-gradient(90deg, rgb(7 23 30 / 0.96) 0%, rgb(7 23 30 / 0.7) 44%, rgb(7 23 30 / 0.2) 78%),
    linear-gradient(0deg, var(--teal-deep) 0%, transparent 34%),
    linear-gradient(135deg, rgb(162 47 47 / 0.34), transparent 45%);
}

.home-hero__content {
  width: min(1300px, calc(100vw - 64px));
  margin: 0 auto;
  padding: clamp(52px, 7vh, 84px) 0;
}

.home-hero h1 {
  max-width: 1120px;
  margin: 0 0 22px;
  font-size: clamp(3.4rem, calc(2rem + 6.95vw), 9.6rem);
  letter-spacing: -0.06em;
  line-height: 0.86;
  text-transform: uppercase;
}

.home-hero h1 span {
  display: block;
  color: var(--white);
}

.home-hero__kicker {
  margin-bottom: 0.16em;
  font-size: 0.5em;
  letter-spacing: 0;
}

.home-hero__content > p:not(.eyebrow) {
  max-width: 600px;
  margin-bottom: 28px;
  color: var(--white);
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  line-height: 1.5;
}

.home-page h1,
.home-page h2 {
  text-wrap: balance;
}

.home-page p {
  text-wrap: pretty;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.video-control {
  position: absolute;
  right: 24px;
  bottom: 24px;
  display: grid;
  width: 48px;
  height: 48px;
  padding: 0;
  place-items: center;
  border: 1px solid rgb(255 255 255 / 0.62);
  border-radius: 50%;
  background: rgb(7 23 30 / 0.66);
  color: var(--white);
  cursor: pointer;
  transition: background 180ms ease-out, border-color 180ms ease-out;
}

.video-control[hidden] {
  display: none;
}

.video-control:hover {
  border-color: var(--white);
  background: rgb(7 23 30 / 0.88);
}

.video-control__icon {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.video-control__icon--play {
  display: none;
  margin-left: 2px;
}

.video-control.is-paused .video-control__icon--pause {
  display: none;
}

.video-control.is-paused .video-control__icon--play {
  display: block;
}

.family-stage {
  position: relative;
  display: grid;
  min-height: 860px;
  align-items: end;
  overflow: hidden;
  background: var(--teal);
  isolation: isolate;
}

.family-stage > img,
.family-stage__grade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.family-stage > img {
  z-index: -3;
  object-fit: cover;
  object-position: center bottom;
}

/* The moment (player and kids) lives in the top two thirds; the copy sits on the floor
   below the faces, so the grade is a bottom scrim plus a soft left edge only. */
.family-stage__grade {
  z-index: -2;
  background:
    linear-gradient(0deg, rgb(7 23 30 / 0.96) 0%, rgb(7 23 30 / 0.82) 24%, rgb(7 23 30 / 0.3) 46%, transparent 62%),
    linear-gradient(90deg, rgb(7 23 30 / 0.38), transparent 45%);
}

.family-stage__copy {
  width: var(--shell);
  max-width: 1300px;
  margin-inline: auto;
  padding: 220px 0 76px;
}

.family-stage__copy h2 {
  max-width: 620px;
  font-size: clamp(2.4rem, 4.4vw, 4.6rem);
}

.family-stage__copy p {
  max-width: 620px;
  color: var(--white);
}

.game-status {
  display: grid;
  grid-template-columns: minmax(150px, 0.25fr) minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(24px, 4vw, 64px);
  padding-block: clamp(44px, 5vw, 72px);
  border-bottom: 1px solid var(--line);
}

.game-status .eyebrow,
.game-status h2,
.game-status p {
  margin: 0;
}

.game-status h2 {
  max-width: 760px;
  font-size: clamp(1.65rem, 2.6vw, 2.8rem);
  letter-spacing: -0.035em;
  line-height: 1.03;
}

.game-status p {
  margin-top: 10px;
  font-size: 0.95rem;
}

.team-poster {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  align-items: center;
  gap: clamp(40px, 8vw, 120px);
  padding-block: clamp(100px, 13vw, 180px);
}

.team-poster__type h2 {
  font-size: clamp(2.4rem, 4.7vw, 5rem);
}

.team-poster__image {
  position: relative;
  display: grid;
  min-height: 0;
  gap: 10px;
  border-radius: var(--radius);
}

.team-poster__frame {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
}

.team-poster__image::after,
.community-band__image::after,
.photo-copy::after,
.mascot-statement::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(145deg, rgb(22 54 67 / 0.54), transparent 60%, rgb(162 47 47 / 0.18));
  pointer-events: none;
}

.team-poster__frame img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.team-poster__frame--action img {
  aspect-ratio: 4 / 5;
  object-position: center 30%;
}

.community-band {
  display: grid;
  grid-template-columns: minmax(280px, 0.68fr) minmax(0, 1fr);
  background: var(--red);
}

.community-band__image {
  position: relative;
  min-height: 660px;
  overflow: hidden;
}

.community-band__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.community-band__copy {
  display: flex;
  max-width: 780px;
  flex-direction: column;
  justify-content: center;
  padding: clamp(70px, 9vw, 130px);
}

.community-band__copy h2 {
  font-size: clamp(2.4rem, 4.8vw, 5rem);
}

.community-band__copy p {
  color: var(--white);
}

.partner-compact {
  padding-block: clamp(90px, 10vw, 140px);
  border-top: 2px solid var(--red);
  background: var(--teal-ink);
}

/* Copy left, pull line bottom-right of the same row, rail closes the chapter on its caption. */
.partner-compact__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  align-items: end;
  gap: clamp(48px, 5.5vw, 76px) clamp(40px, 6vw, 96px);
}

.partner-compact__copy {
  max-width: 640px;
}

.partner-compact__copy h2 {
  font-size: clamp(2.4rem, 5vw, 5.2rem);
}

.partner-compact__rail {
  display: grid;
  grid-column: 1 / -1;
  gap: 18px;
}

.owner-line {
  max-width: 520px;
  margin: 30px 0 0;
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 700;
}

.owner-links {
  display: flex;
  flex-wrap: wrap;
  max-width: none;
  margin: 0;
  gap: 4px 28px;
}

.owner-links a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: rgb(255 255 255 / 0.45);
  text-decoration-thickness: 1px;
  text-underline-offset: 6px;
  transition: color 180ms ease-out, text-decoration-color 180ms ease-out;
}

.owner-links a:hover,
.owner-links a:focus-visible {
  color: var(--blue);
  text-decoration-color: var(--blue);
}

.logo-rail.logo-rail--mono {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.logo-rail--mono .logo-cell {
  transition: background 180ms ease-out;
}

.logo-rail--mono .logo-cell:hover {
  background: rgb(255 255 255 / 0.05);
}

.logo-rail--mono .logo-cell img {
  filter: grayscale(1) brightness(0) invert(1);
  opacity: 0.84;
  transition: opacity 180ms ease-out;
}

.logo-rail--mono .logo-cell:hover img {
  opacity: 1;
}

.logo-rail__caption {
  max-width: none;
  margin: 0;
  color: rgb(198 197 196 / 0.78);
  font-weight: 700;
  letter-spacing: 0.12em;
}

.partner-compact__pull {
  max-width: 520px;
  margin: 0 0 6px auto;
  color: var(--white);
  font-size: clamp(1.6rem, 2.9vw, 2.9rem);
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1.15;
  text-align: right;
  text-wrap: balance;
}

.logo-rail {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.logo-cell {
  display: grid;
  min-height: 150px;
  place-items: center;
  padding: 18px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgb(255 255 255 / 0.025);
}

/* Marks are trimmed to their ink and sized per mark so the wordmarks (Alaska, Fidelitas,
   Hyundai, Kia) read at the same optical weight as the emblems (CAF, Mazda). */
.logo-cell img {
  width: var(--mark-w, 112px);
  max-width: 100%;
  height: auto;
  max-height: 96px;
  object-fit: contain;
  filter: grayscale(1) brightness(1.7) contrast(0.7);
  opacity: 0.86;
}

.logo-cell--alaska { --mark-w: 152px; }
.logo-cell--caf { --mark-w: 108px; }
.logo-cell--fidelitas { --mark-w: 156px; }
.logo-cell--mazda { --mark-w: 74px; }
.logo-cell--hyundai { --mark-w: 136px; }
.logo-cell--kia { --mark-w: 134px; }

.shop-stage {
  display: grid;
  grid-template-columns: minmax(380px, 0.8fr) minmax(0, 1.2fr);
  align-items: center;
  gap: clamp(40px, 5vw, 72px);
  overflow: hidden;
  padding-block: clamp(90px, 12vw, 160px);
  border-top: 1px solid var(--line);
}

.shop-stage__copy h2 {
  max-width: 480px;
  font-size: clamp(2.4rem, 4.6vw, 4.8rem);
}

.shop-stage--page {
  border-top: 0;
  padding-block: clamp(88px, 10vw, 140px);
}

.shop-stage--page .shop-stage__copy p:not(.eyebrow) {
  max-width: 420px;
  margin-bottom: 28px;
}

.shop-stage__stage {
  display: grid;
  gap: 26px;
}

.jersey-line {
  position: relative;
  display: grid;
  grid-template-columns: 0.9fr 1.12fr 0.9fr;
  align-items: end;
  padding: 60px 4% 22px;
  isolation: isolate;
}

.jersey-line::before {
  position: absolute;
  inset: -10% -6% -4%;
  z-index: -1;
  content: "";
  background: radial-gradient(ellipse at 50% 58%, rgb(61 133 161 / 0.35), rgb(61 133 161 / 0.12) 40%, transparent 68%);
}

.jersey-line::after {
  position: absolute;
  right: 8%;
  bottom: 0;
  left: 8%;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, transparent, var(--red) 18%, var(--red) 82%, transparent);
}

.jersey-line img {
  width: 100%;
  max-height: 520px;
  object-fit: contain;
  filter: drop-shadow(0 30px 30px rgb(0 0 0 / 0.38));
}

.jersey-line img:nth-child(1) {
  transform: translateX(24%) rotate(-5deg) scale(1.18);
  transform-origin: bottom center;
}

.jersey-line img:nth-child(2) {
  position: relative;
  z-index: 2;
  transform: scale(1.28);
  transform-origin: bottom center;
}

.jersey-line img:nth-child(3) {
  transform: translateX(-22%) rotate(5deg) scale(1.18);
  transform-origin: bottom center;
}

.shop-stage__caption {
  display: flex;
  max-width: none;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 4px 24px;
  margin: 0;
  color: var(--grey);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.page-hero {
  position: relative;
  display: flex;
  min-height: min(780px, calc(100svh - var(--header-height)));
  overflow: hidden;
  align-items: flex-end;
  background: var(--teal-deep);
  isolation: isolate;
}

/* Every hero photo is a real <img> (srcset, dimensions, eager) with an art-directed
   mobile crop through <picture>. Desktop crops keep faces out of the type column. */
.page-hero__media,
.article-header__media {
  position: absolute;
  inset: 0;
  z-index: -2;
  display: block;
}

.page-hero__media img,
.article-header__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.page-hero__wash {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, var(--teal-deep) 0%, rgb(7 23 30 / 0.88) 34%, rgb(7 23 30 / 0.22) 82%),
    linear-gradient(0deg, var(--teal-deep), transparent 48%),
    linear-gradient(135deg, rgb(61 133 161 / 0.38), rgb(162 47 47 / 0.18));
}

.page-hero__type {
  position: relative;
  z-index: 2;
  width: min(1260px, calc(100vw - 64px));
  margin: 0 auto;
  padding: clamp(72px, 10vh, 120px) 0;
}

.page-hero h1 {
  max-width: 980px;
  margin: 0 0 26px;
  font-size: clamp(3.3rem, calc(1.5rem + 5vw), 7.5rem);
  text-transform: uppercase;
}

.page-hero__type > p:not(.eyebrow) {
  max-width: 610px;
  color: var(--white);
  font-size: clamp(1rem, 1.5vw, 1.2rem);
}

.page-hero--team h1,
.page-hero--stack h1 {
  max-width: none;
  font-size: clamp(3rem, calc(1.4rem + 4.9vw), 7.2rem);
}

.page-hero .hero-line {
  display: block;
}

.page-hero--community h1 {
  font-size: clamp(3rem, calc(1.3rem + 4.05vw), 6.2rem);
}

.page-hero--foundation h1,
.page-hero--coaches h1 {
  max-width: 1040px;
  font-size: clamp(3rem, calc(1.4rem + 4.45vw), 6.8rem);
}

.page-hero--role h1 {
  max-width: 1040px;
  font-size: clamp(3rem, calc(1.4rem + 4.3vw), 6.6rem);
}

/* Mirrored variant: the photo's subject sits left, the type column sits right. */
.page-hero--right .page-hero__wash,
.article-header--right .article-header__wash {
  background:
    linear-gradient(270deg, var(--teal-deep) 0%, rgb(7 23 30 / 0.88) 34%, rgb(7 23 30 / 0.22) 82%),
    linear-gradient(0deg, var(--teal-deep), transparent 48%),
    linear-gradient(225deg, rgb(61 133 161 / 0.38), rgb(162 47 47 / 0.18));
}

.page-hero--right .page-hero__type {
  display: grid;
  justify-content: end;
  justify-items: start;
}

.page-hero--right .page-hero__type > * {
  max-width: 760px;
}

.page-hero--right h1 {
  font-size: clamp(2.8rem, calc(1rem + 4.2vw), 5.6rem);
}

.page-hero--right .page-hero__ghost {
  right: auto;
  left: -0.06em;
}

.page-hero__ghost {
  position: absolute;
  right: -0.06em;
  bottom: -0.18em;
  z-index: 1;
  color: transparent;
  font-size: clamp(8rem, 22vw, 22rem);
  font-weight: 900;
  letter-spacing: -0.09em;
  line-height: 0.7;
  opacity: 0.36;
  -webkit-text-stroke: 1px rgb(255 255 255 / 0.26);
  pointer-events: none;
}

.manifesto-band {
  overflow: hidden;
  padding-block: clamp(100px, 14vw, 190px);
  background: var(--red);
}

.manifesto-band .content-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: start;
  gap: 42px;
}

.manifesto-band h2 {
  margin: 0;
  font-size: clamp(4rem, 10vw, 11rem);
  text-transform: uppercase;
}

.manifesto-band p {
  max-width: 720px;
  color: var(--white);
  font-size: clamp(1rem, 1.5vw, 1.25rem);
}

.manifesto-band--compact {
  padding-block: clamp(90px, 10vw, 150px);
}

.manifesto-band--compact h2 {
  font-size: clamp(3.5rem, 8vw, 8rem);
}

.roster-stage,
.tryout-state,
.photo-copy,
.mascot-statement {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  align-items: center;
  gap: clamp(40px, 8vw, 120px);
  padding-block: clamp(88px, 10vw, 140px);
}

/* Section washes live in the photo cell only (grid item, stretched), never over a type column. */
.photo-copy > img,
.photo-copy::after {
  grid-area: 1 / 1;
}

.photo-copy > div {
  grid-area: 1 / 2;
}

.mascot-statement > div {
  grid-area: 1 / 1;
}

.mascot-statement > img,
.mascot-statement::after {
  grid-area: 1 / 2;
}

.photo-copy::after,
.mascot-statement::after {
  position: static;
  align-self: stretch;
  justify-self: stretch;
  border-radius: var(--radius);
}

.tryout-state h2,
.photo-copy h2,
.mascot-statement h2 {
  color: var(--white);
  font-size: clamp(2.6rem, 4.6vw, 4.8rem);
}

.roster-stage > img,
.tryout-state__image,
.photo-copy > img,
.mascot-statement > img {
  width: 100%;
  min-height: 600px;
  object-fit: cover;
  border-radius: var(--radius);
}

.roster-stage {
  padding-block: clamp(88px, 10vw, 140px);
}

.roster-stage > img {
  grid-area: 1 / 2;
  object-position: center;
}

.roster-stage::after {
  grid-area: 1 / 2;
  align-self: stretch;
  justify-self: stretch;
  content: "";
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgb(22 54 67 / 0.54), transparent 60%, rgb(162 47 47 / 0.18));
  pointer-events: none;
}

.roster-stage__type {
  grid-area: 1 / 1;
  max-width: 520px;
}

.roster-stage__type h2 {
  color: var(--white);
  font-size: clamp(2.6rem, 4.8vw, 5rem);
  text-wrap: balance;
}

.roster-stage__type p {
  text-wrap: pretty;
}

.tryout-state__image {
  overflow: hidden;
}

.tryout-state__image img {
  width: 100%;
  height: 100%;
  min-height: 650px;
  object-fit: cover;
  object-position: 70% center;
}

.photo-copy > img {
  object-position: center;
}

.mascot-statement > img {
  object-position: center 30%;
}

.honest-state {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  margin-top: 18px;
  padding: 9px 13px;
  border-left: 3px solid var(--red-bright);
  border-radius: var(--radius);
  background: rgb(162 47 47 / 0.15);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 800;
}

.leadership-slab,
.foundation-call,
.partner-promise {
  padding-block: clamp(88px, 10vw, 140px);
  border-top: 1px solid var(--line);
}

.leadership-slab > p,
.partner-promise > p {
  font-size: 1.15rem;
}

.leadership-slab__head {
  max-width: 640px;
}

.leadership-slab__head h2 {
  margin-bottom: 0;
  font-size: clamp(2.6rem, 4.8vw, 5rem);
  text-wrap: balance;
}

.coach-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(28px, 4vw, 56px);
  margin: clamp(44px, 5vw, 64px) 0 44px;
}

/* Both coaches sit on one graded teal field: a sideline frame and a studio shot read as a
   pair once they share the brand's duotone (BRAND.md §11 imagery rule). */
.coach-card__photo {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  background: var(--teal);
}

/* Both coach cards carry the matching studio headshots from the same session. They sit on
   black, so lifting the blacks lets the teal multiply read as one field across the pair. */
.coach-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
  filter: grayscale(1) contrast(0.82) brightness(1.55);
}

.coach-card__photo::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(200deg, rgb(61 133 161 / 0.55), rgb(22 54 67 / 0.62) 55%, rgb(12 35 45 / 0.78)),
    linear-gradient(20deg, rgb(162 47 47 / 0.42), transparent 40%);
  mix-blend-mode: multiply;
  pointer-events: none;
}

.coach-card__photo::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background: linear-gradient(0deg, rgb(7 23 30 / 0.55), transparent 34%);
  pointer-events: none;
}

.coach-card__body {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.coach-card__body h2,
.coach-card__body h3 {
  margin-bottom: 8px;
  font-size: clamp(1.6rem, 2.2vw, 2.1rem);
  font-weight: 800;
  letter-spacing: -0.03em;
}

.coach-card .role-line {
  margin: 0 0 16px;
  color: var(--grey);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1.35;
  text-transform: uppercase;
}

.coach-card__body p:not(.role-line) {
  max-width: 52ch;
  margin-bottom: 14px;
  text-wrap: pretty;
}

.coach-card__body .text-link {
  margin-top: 2px;
}

.schedule-empty,
.single-task {
  display: grid;
  min-height: 640px;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.85fr);
  align-items: center;
  gap: 60px;
  overflow: hidden;
  padding-block: clamp(80px, 10vw, 140px);
}

.schedule-empty > div,
.single-task > div {
  min-width: 0;
}

.schedule-empty__word,
.single-task__signal {
  max-width: 100%;
  color: transparent;
  font-size: clamp(7rem, 18vw, 17rem);
  font-weight: 900;
  letter-spacing: -0.12em;
  line-height: 0.8;
  -webkit-text-stroke: 2px rgb(61 133 161 / 0.65);
}

.schedule-empty h2,
.single-task h2 {
  font-size: clamp(2.4rem, 3.8vw, 4rem);
}

.photo-statement {
  position: relative;
  min-height: 820px;
  overflow: hidden;
  isolation: isolate;
}

.photo-statement > img {
  position: absolute;
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
}

.photo-statement::after {
  position: absolute;
  inset: 0;
  z-index: -2;
  content: "";
  background: linear-gradient(90deg, var(--teal-deep), rgb(7 23 30 / 0.74), transparent);
}

.photo-statement > div {
  width: min(1240px, calc(100vw - 64px));
  margin: 0 auto;
  padding-top: 180px;
}

.photo-statement h2,
.photo-statement p {
  max-width: 700px;
}

.photo-statement h2 {
  max-width: 840px;
  font-size: clamp(2.6rem, 4.6vw, 4.8rem);
}

.photo-statement p {
  color: var(--white);
}

.program-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 18px;
  padding-block: clamp(88px, 10vw, 140px);
}

.program-feature h2 {
  margin-bottom: 14px;
  font-size: clamp(2rem, 3.1vw, 3rem);
}

.program-feature--wide h2 {
  font-size: clamp(2.4rem, 4.6vw, 4.8rem);
}

.program-feature {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--teal);
}

.program-feature--wide {
  grid-row: span 2;
  min-height: 880px;
}

.program-feature img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.program-feature > div {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 36px;
  background: linear-gradient(0deg, var(--teal-deep) 0%, rgb(7 23 30 / 0.88) 55%, transparent);
}

.program-feature > div p {
  color: var(--white);
}

.program-feature--red {
  display: flex;
  align-items: flex-end;
  background: var(--red);
}

.program-feature--red > div {
  position: relative;
  background: none;
}

.foundation-call {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 40px;
}

.foundation-call h2 {
  max-width: 900px;
  font-size: clamp(2.6rem, 4.8vw, 5rem);
}

.partner-promise {
  max-width: 1000px;
  margin-inline: auto;
  text-align: left;
}

.path-layout {
  padding-block: clamp(88px, 10vw, 140px);
  border-top: 1px solid var(--line);
}

.path-layout h2 {
  max-width: 900px;
}

.path-columns {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  border-top: 1px solid var(--line);
}

.path-columns article {
  min-height: 280px;
  padding: 34px 34px 50px 0;
  border-bottom: 1px solid var(--line);
}

.path-columns article:nth-child(even) {
  padding-left: 34px;
  border-left: 1px solid var(--line);
}

.miles-story {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  min-height: 720px;
  background: var(--red);
}

.miles-story h2 {
  font-size: clamp(2.2rem, 3.6vw, 3.6rem);
}

.miles-story img {
  width: 100%;
  height: 100%;
  min-height: 720px;
  object-fit: cover;
  mix-blend-mode: multiply;
}

.miles-story > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(44px, 6.5vw, 94px);
}

.miles-story p {
  color: var(--white);
}

/* Proof band: community first, then what the partner actually backs, then the ask (§6.4). */
.proof-band {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  align-items: end;
  gap: clamp(32px, 5vw, 80px);
  padding-block: clamp(88px, 10vw, 140px) clamp(56px, 6vw, 84px);
  border-top: 1px solid var(--line);
}

.proof-band__head h2 {
  margin-bottom: 0;
  font-size: clamp(2.4rem, 4.2vw, 4.4rem);
}

.proof-band > p {
  max-width: 46ch;
  margin: 0 0 6px;
  color: var(--white);
  font-size: clamp(1rem, 1.35vw, 1.15rem);
}

.partner-marks {
  padding-block: clamp(40px, 5vw, 64px) clamp(88px, 10vw, 140px);
}

.partner-marks h2 {
  max-width: 760px;
  margin-bottom: clamp(36px, 4vw, 56px);
  font-size: clamp(2.6rem, 4.8vw, 5rem);
}

.partner-marks__rail {
  display: grid;
  gap: 18px;
}

.form-preview {
  padding-block: clamp(90px, 10vw, 140px);
  border-top: 2px solid var(--red);
  background: var(--teal-ink);
}

.form-preview--compact {
  padding-block: clamp(56px, 6vw, 84px);
}

.form-preview--compact .form-preview__inner {
  align-items: center;
  gap: clamp(36px, 6vw, 84px);
}

.form-preview--compact .form-preview__intro h2 {
  font-size: clamp(2.4rem, 4.2vw, 4.4rem);
}

.form-preview__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  align-items: start;
  gap: clamp(50px, 9vw, 130px);
}

.form-preview__intro {
  max-width: 640px;
}

.form-preview__intro h2 {
  font-size: clamp(2.6rem, 4.8vw, 5rem);
  text-wrap: balance;
}

.form-preview__intro > p:not(.eyebrow) {
  text-wrap: pretty;
}

.preview-note {
  margin: 30px 0 0;
  color: rgb(198 197 196 / 0.78);
  font-weight: 700;
  letter-spacing: 0.12em;
}

.form-note {
  margin: 0;
  color: rgb(198 197 196 / 0.7);
  font-size: 0.78rem;
  font-weight: 500;
}

.disabled-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px 20px;
  padding-top: 6px;
}

.field {
  display: grid;
  gap: 6px;
}

.field:has(textarea),
.field:only-of-type {
  grid-column: 1 / -1;
}

.field label {
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 800;
}

.field input,
.field textarea {
  width: 100%;
  min-height: 48px;
  padding: 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  color: var(--grey);
}

.field textarea {
  min-height: 110px;
}

.field input:disabled,
.field textarea:disabled {
  opacity: 1;
}

.disabled-form .button {
  width: 100%;
}

.disabled-form .button--primary:disabled {
  border-color: rgb(191 61 56 / 0.42);
  background: rgb(162 47 47 / 0.34);
  color: rgb(255 255 255 / 0.62);
}

.consent-row {
  display: flex;
  grid-column: 1 / -1;
  min-height: 44px;
  align-items: flex-start;
  gap: 12px;
  color: var(--grey);
  font-size: 0.78rem;
}

.consent-row input {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  margin-top: 2px;
}

.disabled-form .button,
.disabled-form .form-note {
  grid-column: 1 / -1;
}

.archive-notice {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 22px;
  margin-block: 48px;
  padding: 22px;
  border-left: 4px solid var(--red-bright);
  border-radius: var(--radius);
  background: rgb(162 47 47 / 0.13);
}

.archive-notice strong {
  color: var(--white);
  font-size: 0.78rem;
  text-transform: uppercase;
}

.archive-notice p {
  margin: 0;
}

.coach-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
  gap: clamp(28px, 4vw, 56px);
  padding-block: clamp(88px, 10vw, 140px);
}

.coach-card--profile .coach-card__body p:not(.role-line) {
  max-width: 58ch;
  margin-bottom: 18px;
}

.coach-card--profile .coach-card__body .text-link {
  margin-top: 6px;
}

.role-line {
  color: var(--white);
  font-weight: 750;
}

.news-index {
  padding-block: clamp(80px, 10vw, 140px);
}

.news-index article {
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
  padding-block: 34px;
  border-bottom: 1px solid var(--line);
}

.news-index time {
  color: var(--grey);
  font-size: 0.78rem;
  font-weight: 700;
}

.news-index h2 {
  margin: 0;
  font-size: clamp(1.5rem, 2.8vw, 2.7rem);
  line-height: 1.08;
}

.news-index h2 a {
  text-decoration: none;
}

.role-index {
  padding-block: 60px 150px;
}

.role-index a {
  display: flex;
  min-height: 84px;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  font-size: clamp(1.45rem, 3vw, 3.2rem);
  font-weight: 850;
  letter-spacing: -0.04em;
  text-decoration: none;
  transition: color 180ms ease-out, transform 180ms ease-out;
}

.role-index a:hover {
  color: var(--blue);
  transform: translateX(4px);
}

.role-detail {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  gap: 60px;
  padding-block: 60px 130px;
}

.article-shell {
  background: var(--teal-deep);
}

.article-header {
  position: relative;
  display: flex;
  min-height: min(820px, calc(100svh - var(--header-height)));
  overflow: hidden;
  align-items: flex-end;
  background: var(--teal-deep);
  isolation: isolate;
}

.article-header__wash {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(0deg, var(--teal-deep) 0%, rgb(7 23 30 / 0.58) 58%, rgb(7 23 30 / 0.2)), linear-gradient(90deg, rgb(22 54 67 / 0.9), transparent);
}

.article-header--right .article-header__wash {
  background: linear-gradient(0deg, var(--teal-deep) 0%, rgb(7 23 30 / 0.58) 58%, rgb(7 23 30 / 0.2)), linear-gradient(270deg, rgb(22 54 67 / 0.9), transparent);
}

.article-header > div:last-child {
  width: min(1180px, calc(100vw - 64px));
  margin: 0 auto;
  padding: 90px 0;
}

.article-header--right > div:last-child {
  display: grid;
  justify-content: end;
  justify-items: start;
}

.article-header--right h1 {
  max-width: 760px;
}

.article-header h1 {
  max-width: 1120px;
  margin-bottom: 22px;
  font-size: clamp(3rem, calc(1.3rem + 3.9vw), 6.4rem);
  text-transform: uppercase;
}

.article-header time {
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 800;
}

.article-body {
  max-width: 860px;
  padding-block: 70px 150px;
}

.article-body > p {
  color: rgb(255 255 255 / 0.84);
  font-size: clamp(1.08rem, 1.7vw, 1.3rem);
  line-height: 1.75;
}

.article-body .actions {
  margin-top: 40px;
}

.site-footer {
  padding: clamp(64px, 8vw, 110px) 0 40px;
  border-top: 3px solid var(--red);
  background: #000;
}

.site-footer__inner {
  width: min(1340px, calc(100vw - 64px));
  margin: 0 auto;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 30px;
  padding-block: 56px;
}

.footer-links h2 {
  margin-bottom: 14px;
  color: var(--grey);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1.35;
  text-transform: uppercase;
}

.footer-links a {
  display: flex;
  min-height: 44px;
  align-items: center;
  width: fit-content;
  min-width: 44px;
  color: var(--white);
  font-size: 0.92rem;
  text-decoration: underline;
  text-decoration-color: rgb(255 255 255 / 0.45);
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
  transition: color 180ms ease-out, text-decoration-color 180ms ease-out;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--blue);
  text-decoration-color: var(--blue);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.footer-bottom p {
  margin: 0;
  font-size: 0.72rem;
}

.footer-bottom button {
  min-height: 44px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: transparent;
  color: var(--grey);
  font-size: 0.7rem;
}

.is-reveal-ready [data-reveal] {
  transform: translateY(22px);
  opacity: 0;
  transition: transform 650ms cubic-bezier(0.16, 1, 0.3, 1), opacity 520ms ease-out;
}

.is-reveal-ready [data-reveal].is-visible {
  transform: translateY(0);
  opacity: 1;
}

@media (max-width: 1080px) {
  :root {
    --header-height: 68px;
  }

  .site-header {
    justify-content: space-between;
    padding-inline: 18px;
  }

  .brand,
  .brand img {
    width: 54px;
    height: 54px;
  }

  .menu-toggle {
    display: flex;
    min-width: 92px;
    min-height: 44px;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 0 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: transparent;
    color: var(--white);
    font-size: 0.76rem;
    font-weight: 800;
  }

  .menu-toggle__bars {
    display: grid;
    width: 20px;
    gap: 5px;
  }

  .menu-toggle__bars span {
    display: block;
    height: 2px;
    background: currentColor;
    transition: transform 180ms ease-out;
  }

  .menu-toggle[aria-expanded="true"] .menu-toggle__bars span:first-child {
    transform: translateY(3.5px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] .menu-toggle__bars span:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
  }

  .site-nav {
    position: fixed;
    inset: var(--header-height) 0 0;
    z-index: var(--z-menu);
    display: grid;
    align-content: start;
    justify-content: stretch;
    gap: 0;
    overflow-y: auto;
    padding: 18px;
    transform: translateY(-120%);
    background: var(--teal-deep);
    opacity: 0;
    pointer-events: none;
    transition: transform 300ms cubic-bezier(0.16, 1, 0.3, 1), opacity 220ms ease-out;
  }

  .site-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav > a:not(.header-action) {
    min-height: 58px;
    border-bottom: 1px solid var(--line);
    color: var(--white);
    font-size: 1rem;
  }

  .site-nav > a:not(.header-action)::after {
    display: none;
  }

  .site-nav .header-action {
    min-height: 54px;
    margin-top: 18px;
  }

  body.menu-open {
    overflow: hidden;
  }

  .team-poster,
  .shop-stage,
  .schedule-empty,
  .single-task,
  .form-preview__inner,
  .roster-stage,
  .tryout-state,
  .photo-copy,
  .mascot-statement,
  .miles-story,
  .role-detail {
    grid-template-columns: 1fr;
  }

  .roster-stage > img,
  .roster-stage::after,
  .mascot-statement > img,
  .mascot-statement::after {
    grid-area: 2 / 1;
  }

  .mascot-statement > div {
    grid-area: 1 / 1;
  }

  .photo-copy > img,
  .photo-copy::after {
    grid-area: 1 / 1;
  }

  .photo-copy > div {
    grid-area: 2 / 1;
  }

  .partner-compact__inner,
  .proof-band {
    grid-template-columns: 1fr;
  }

  .partner-compact__pull {
    max-width: none;
    margin: 0;
    text-align: left;
  }

  .schedule-empty__word,
  .single-task__signal {
    line-height: 0.55;
  }

  .roster-stage > img,
  .tryout-state__image,
  .photo-copy > img,
  .mascot-statement > img {
    min-height: 520px;
  }

  .logo-rail.logo-rail--mono {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .footer-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .miles-story img {
    min-height: 500px;
  }

  .manifesto-band .content-shell,
  .foundation-call {
    grid-template-columns: 1fr;
    align-items: start;
  }
}

@media (max-width: 767px) {
  :root {
    --shell: calc(100vw - 32px);
  }

  body {
    font-size: 16px;
  }

  h2 {
    font-size: clamp(2.35rem, 12vw, 4.2rem);
  }

  .home-hero {
    min-height: calc(100svh - var(--header-height));
  }

  .home-hero__video {
    object-position: 62% center;
  }

  .home-hero__grade {
    background:
      linear-gradient(0deg, var(--teal-deep) 0%, rgb(7 23 30 / 0.75) 50%, rgb(7 23 30 / 0.18)),
      linear-gradient(90deg, rgb(7 23 30 / 0.82), transparent);
  }

  .home-hero__content,
  .page-hero__type,
  .article-header > div:last-child,
  .photo-statement > div {
    width: calc(100vw - 32px);
  }

  .home-hero__content {
    padding: 42px 0 76px;
  }

  .home-hero__video {
    display: none;
  }

  /* Phones never load the clip; a still from the same season carries the hero. */
  .home-hero {
    background-image: url("https://www.sharksbasketball.com/wp-content/uploads/sharks-v6-4/assets/home-hero-mobile.jpg");
    background-position: center 30%;
  }

  /* Single words that cannot fit at 200% text zoom break rather than clip. */
  h1 {
    overflow-wrap: anywhere;
  }

  .home-hero h1 {
    margin-bottom: 18px;
    font-size: clamp(1.8rem, calc(1rem + 9.8vw), 4rem);
    letter-spacing: -0.05em;
    line-height: 0.9;
  }

  .home-hero__kicker {
    margin-bottom: 0.2em;
    font-size: 0.52em;
  }

  .home-hero__content > p:not(.eyebrow) {
    max-width: 330px;
    margin-bottom: 22px;
    font-size: 0.95rem;
  }

  .video-control {
    right: 16px;
    bottom: 14px;
  }

  .actions {
    display: grid;
    width: 100%;
    grid-template-columns: 1fr;
  }

  .actions .button {
    width: 100%;
  }

  .schedule-empty,
  .single-task {
    grid-template-columns: minmax(0, 1fr);
  }

  .schedule-empty__word,
  .single-task__signal {
    font-size: clamp(6rem, 33vw, 11rem);
    line-height: 0.62;
  }

  /* Phone: the photo stacks above the copy, so no type ever sits on a face. */
  .family-stage {
    min-height: 0;
    align-items: start;
  }

  .family-stage > img {
    position: static;
    aspect-ratio: 4 / 3;
    height: auto;
    object-position: 56% center;
  }

  .family-stage__grade {
    display: none;
  }

  .family-stage__copy {
    width: calc(100vw - 32px);
    margin: 0 auto;
    padding: 44px 0 70px;
  }

  .game-status {
    grid-template-columns: 1fr;
    gap: 14px;
    padding-block: 42px;
  }

  .game-status h2 {
    font-size: clamp(1.75rem, 7.8vw, 2.3rem);
  }

  .game-status .text-link {
    margin-top: 2px;
  }

  .team-poster,
  .partner-compact,
  .shop-stage,
  .roster-stage,
  .tryout-state,
  .photo-copy,
  .mascot-statement {
    gap: 38px;
    padding-block: 88px;
  }

  .tryout-state__image,
  .photo-copy > img,
  .mascot-statement > img {
    min-height: 410px;
  }

  .team-poster__image,
  .roster-stage > img {
    min-height: 0;
  }

  .team-poster__frame img,
  .roster-stage > img {
    display: block;
    height: auto;
  }

  .team-poster__frame--action img {
    aspect-ratio: auto;
    object-position: center;
  }

  .photo-statement > img {
    object-position: 40% bottom;
  }

  .logo-cell {
    padding: 14px;
  }

  .logo-cell--alaska { --mark-w: 120px; }
  .logo-cell--caf { --mark-w: 84px; }
  .logo-cell--fidelitas { --mark-w: 124px; }
  .logo-cell--mazda { --mark-w: 60px; }
  .logo-cell--hyundai { --mark-w: 108px; }
  .logo-cell--kia { --mark-w: 106px; }

  .tryout-state__image img {
    min-height: 460px;
  }

  .community-band {
    grid-template-columns: 1fr;
  }

  .community-band__image {
    min-height: 480px;
  }

  .community-band__copy {
    padding: 64px 16px 72px;
  }

  .logo-rail,
  .logo-rail.logo-rail--mono {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .logo-cell {
    min-height: 122px;
  }

  .logo-cell img {
    max-height: 80px;
  }

  .shop-stage {
    padding-bottom: 72px;
  }

  .shop-stage__copy h2 {
    max-width: none;
  }

  .jersey-line {
    grid-template-columns: 0.95fr 1.15fr 0.95fr;
    margin-inline: -8px;
    padding: 26px 0 24px;
  }

  .jersey-line img:nth-child(1) {
    transform: translateX(26%) rotate(-5deg) scale(1.12);
  }

  .jersey-line img:nth-child(2) {
    transform: scale(1.2);
  }

  .jersey-line img:nth-child(3) {
    transform: translateX(-24%) rotate(5deg) scale(1.12);
  }

  /* Phone heroes stack: a square art-directed crop above the type on the teal field. */
  .page-hero,
  .article-header {
    display: grid;
    min-height: 0;
    align-items: start;
  }

  .page-hero__media,
  .article-header__media {
    position: relative;
    inset: auto;
    z-index: 0;
    width: 100%;
    aspect-ratio: 1;
  }

  .page-hero__media img,
  .article-header__media img {
    object-position: 50% 32%;
  }

  .page-hero__wash,
  .article-header__wash {
    display: none;
  }

  .page-hero--right .page-hero__type {
    display: block;
  }

  .page-hero--right .page-hero__type > *,
  .article-header--right h1 {
    max-width: 100%;
  }

  .article-header--right > div:last-child {
    display: block;
  }

  .page-hero__type {
    padding: 44px 0 72px;
  }

  .page-hero h1,
  .page-hero--right h1 {
    max-width: 100%;
    margin-bottom: 20px;
    font-size: clamp(1.6rem, calc(0.9rem + 9.3vw), 4.6rem);
    line-height: 0.9;
  }

  .page-hero__ghost {
    bottom: -0.08em;
    font-size: 9rem;
  }

  .page-hero--team h1,
  .page-hero--stack h1,
  .page-hero--coaches h1 {
    font-size: clamp(1.5rem, calc(0.75rem + 7.75vw), 4.6rem);
  }

  .page-hero .hero-line--soft {
    display: inline;
    white-space: normal;
  }

  .page-hero--stack h1 {
    text-wrap: wrap;
  }

  .br-mobile {
    display: inline;
  }

  .page-hero--community h1 {
    font-size: clamp(1.5rem, calc(0.75rem + 7.4vw), 4.6rem);
  }

  .page-hero--partners h1,
  .page-hero--foundation h1 {
    font-size: clamp(1.5rem, calc(0.7rem + 7vw), 4.6rem);
  }

  .page-hero--role h1 {
    font-size: clamp(1.4rem, calc(0.7rem + 7vw), 4rem);
  }

  .page-hero--crunch h1 {
    font-size: clamp(1.6rem, calc(0.8rem + 8.7vw), 4.6rem);
  }

  .shop-stage--page {
    padding-block: 88px 72px;
  }

  .miles-story h2 {
    font-size: clamp(2.2rem, 10.5vw, 4.2rem);
  }

  .program-feature h2,
  .program-feature--wide h2 {
    font-size: clamp(2rem, 9.6vw, 3.4rem);
  }

  .manifesto-band {
    padding-block: 90px;
  }

  .manifesto-band .content-shell {
    gap: 36px;
  }

  .manifesto-band h2,
  .manifesto-band--compact h2 {
    overflow-wrap: anywhere;
    font-size: clamp(3rem, 12.2vw, 4.7rem);
  }

  .schedule-empty,
  .single-task {
    min-height: 0;
    gap: 46px;
    padding-block: 90px;
  }

  .photo-statement {
    min-height: 690px;
  }

  .photo-statement > img {
    object-position: 58% center;
  }

  .photo-statement > div {
    padding-top: 120px;
  }

  .photo-statement h2 {
    font-size: clamp(2.2rem, 9.6vw, 4.2rem);
  }

  .program-grid {
    grid-template-columns: 1fr;
    gap: 14px;
    padding-block: 90px;
  }

  .program-feature,
  .program-feature--wide {
    min-height: 520px;
    grid-row: auto;
  }

  .program-feature--red {
    min-height: 0;
  }

  .program-feature > div {
    padding: 26px;
  }

  .path-columns {
    grid-template-columns: 1fr;
  }

  .path-columns article,
  .path-columns article:nth-child(even) {
    min-height: 0;
    padding: 28px 0 38px;
    border-left: 0;
  }

  .miles-story {
    min-height: 0;
  }

  .miles-story img {
    min-height: 420px;
  }

  .miles-story > div {
    padding: 66px 16px 74px;
  }

  .shop-editorial__products {
    grid-template-columns: 1fr;
  }

  .shop-editorial figure img {
    aspect-ratio: 1 / 1;
  }

  .form-preview {
    padding-block: 80px;
  }

  .form-preview--compact {
    padding-block: 56px;
  }

  .form-preview__inner {
    gap: 44px;
  }

  .form-preview--compact .form-preview__inner {
    gap: 32px;
  }

  .preview-note {
    margin-top: 22px;
  }

  .disabled-form {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .coach-cards {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .field,
  .field:has(textarea),
  .consent-row,
  .disabled-form .button,
  .disabled-form .form-note {
    grid-column: 1;
  }

  .archive-notice {
    grid-template-columns: 1fr;
  }

  .coach-layout {
    grid-template-columns: 1fr;
    gap: 44px;
    padding-bottom: 100px;
  }

  .news-index article {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .role-index {
    padding-bottom: 100px;
  }

  .role-index a {
    min-height: 74px;
    font-size: 1.5rem;
  }

  .role-detail {
    gap: 26px;
  }

  .article-header > div:last-child {
    padding: 44px 0 64px;
  }

  .article-header h1 {
    font-size: clamp(1.6rem, calc(0.9rem + 8.6vw), 4.2rem);
    line-height: 0.92;
  }

  .article-body {
    padding-block: 40px 100px;
  }

  .site-footer {
    padding: 56px 0 32px;
  }

  .site-footer__inner {
    width: calc(100vw - 32px);
  }

  .footer-links {
    grid-template-columns: 1fr;
    gap: 30px;
    padding-block: 42px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .is-reveal-ready [data-reveal] {
    transform: none;
    opacity: 1;
  }

  .home-hero__video {
    display: none;
  }
}
