:root {
  --ink: #080808;
  --muted: #696969;
  --paper: #f7f7f7;
  --white: #ffffff;
  --navy: #080808;
  --blue: #d71920;
  --cyan: #d71920;
  --lime: #d71920;
  --red: #d71920;
  --deep-red: #8f0f13;
  --line: #dedede;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

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

a {
  color: inherit;
  text-decoration: none;
}

.site-intro {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  color: var(--white);
  background:
    radial-gradient(circle at 50% 58%, rgba(215, 25, 32, 0.22), transparent 34%),
    #050505;
  overflow: hidden;
  transition:
    opacity 620ms ease,
    visibility 620ms ease;
}

.site-intro::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transform: translateX(-100%);
  animation: intro-scan 1800ms ease 480ms both;
}

.site-intro.is-hidden {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}

.site-intro-mark {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 22px;
  padding: 0 20px;
  text-align: center;
  animation: intro-rise 900ms ease both;
}

.site-intro-mark img {
  width: clamp(150px, 22vw, 260px);
  padding: 12px 16px;
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
}

.site-intro-mark span {
  color: var(--white);
  font-size: clamp(2.4rem, 7vw, 6.6rem);
  font-weight: 950;
  line-height: 0.92;
  letter-spacing: 0;
}

.site-intro-skip {
  position: absolute;
  right: clamp(18px, 4vw, 54px);
  bottom: clamp(18px, 4vw, 54px);
  z-index: 2;
  min-height: 42px;
  padding: 0 14px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  cursor: pointer;
  font-weight: 850;
}

.site-intro-skip:hover {
  background: var(--red);
}

@keyframes intro-rise {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes intro-scan {
  to {
    transform: translateX(100%);
  }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  min-height: 72px;
  padding: 14px clamp(18px, 4vw, 54px);
  color: var(--white);
  background: rgba(8, 8, 8, 0.92);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
}

.brand,
.site-nav,
.hero-actions {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  min-width: max-content;
  font-weight: 900;
}

.brand-logo {
  width: clamp(92px, 11vw, 140px);
  height: auto;
  padding: 7px 10px;
  background: var(--white);
  border-radius: 6px;
}

.site-nav {
  gap: clamp(14px, 3vw, 34px);
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.94rem;
  font-weight: 750;
}

.site-nav a:hover {
  color: var(--white);
}

.header-cta,
.primary-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 6px;
  font-weight: 850;
}

.header-cta,
.primary-button {
  color: var(--white);
  background: var(--lime);
}

.secondary-button {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.hero {
  position: relative;
  display: grid;
  align-content: end;
  min-height: calc(82svh - 72px);
  padding: clamp(64px, 9vh, 104px) clamp(18px, 5vw, 72px) clamp(20px, 4vh, 36px);
  color: var(--white);
  overflow: hidden;
  background: var(--navy);
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.72;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background: linear-gradient(180deg, rgba(8, 8, 8, 0), rgba(8, 8, 8, 0.96));
  pointer-events: none;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.92), rgba(0, 0, 0, 0.6) 50%, rgba(0, 0, 0, 0.22));
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: min(1040px, 72vw);
}

.hero-brand-phrase {
  position: absolute;
  top: clamp(88px, 13vh, 150px);
  right: clamp(18px, 5vw, 72px);
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.24em;
  max-width: min(980px, 82vw);
  color: rgba(255, 255, 255, 0.13);
  font-size: clamp(3.2rem, 8vw, 8.8rem);
  font-weight: 950;
  line-height: 0.88;
  letter-spacing: 0;
  text-align: right;
  text-transform: uppercase;
  pointer-events: none;
}

.hero-brand-phrase strong {
  min-width: 5.7em;
  color: rgba(255, 255, 255, 0.2);
  font: inherit;
  text-align: left;
  transition:
    opacity 280ms ease,
    transform 280ms ease;
}

.hero-brand-phrase strong.is-changing {
  opacity: 0;
  transform: translateY(12px);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  max-width: 900px;
  font-size: clamp(3rem, 8vw, 7.6rem);
  line-height: 0.92;
  letter-spacing: 0;
}

.hero h1 span {
  display: block;
}

.hero p:not(.eyebrow) {
  max-width: min(820px, 66vw);
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.05rem, 1.7vw, 1.35rem);
  line-height: 1.6;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.hero-strip {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: clamp(30px, 5vh, 56px);
  max-width: 1120px;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  overflow: hidden;
}

.hero-strip a {
  min-height: 64px;
  display: grid;
  place-items: center;
  padding: 12px;
  text-align: center;
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
  transition:
    color 180ms ease,
    background 180ms ease;
}

.hero-strip a:hover {
  color: var(--white);
  background: rgba(215, 25, 32, 0.72);
}

.section {
  padding: clamp(58px, 8vw, 104px) clamp(18px, 5vw, 72px);
}

.intro-section {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr);
  gap: 28px;
  align-items: end;
  background: var(--white);
}

.intro-copy h2,
.section-heading h2,
.split-section h2,
.inquiry-copy h2 {
  margin: 0;
  font-size: clamp(2rem, 4.2vw, 4.2rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.intro-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.intro-stats article,
.work-board article,
.process-list article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.intro-stats article {
  min-height: 132px;
  padding: 18px;
}

.intro-stats strong {
  display: block;
  color: var(--blue);
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1;
}

.intro-stats span {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  line-height: 1.35;
  font-weight: 750;
}

.dark-section {
  color: var(--white);
  background: var(--navy);
}

.section-heading {
  max-width: 820px;
  margin-bottom: 28px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.service-card {
  min-width: 0;
  overflow: hidden;
  color: var(--white);
  background: #141414;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.service-card:hover,
.showcase-card:hover,
.intro-stats article:hover,
.work-board article:hover,
.process-list article:hover,
.detail-grid article:hover,
.video-grid article:hover,
.coach-feature-frame:hover,
.coach-proof-grid article:hover,
.coach-package-grid article:hover,
.parent-trust-grid article:hover,
.photo-gallery figure:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}

.service-card:hover {
  border-color: rgba(215, 25, 32, 0.68);
}

.service-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.service-carousel {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--navy);
}

.service-carousel img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  object-fit: cover;
  transition:
    opacity 480ms ease,
    transform 900ms ease;
}

.service-carousel img.is-active {
  opacity: 1;
  transform: scale(1.03);
}

.service-card img.fit-contain {
  background: #080808;
  object-fit: contain;
}

.service-card div {
  padding: 20px;
}

.service-card span {
  color: var(--lime);
  font-size: 0.8rem;
  font-weight: 950;
}

.service-card h3,
.work-board h3,
.process-list strong {
  margin: 8px 0;
  font-size: 1.34rem;
}

.service-card p,
.work-board p,
.process-list span,
.inquiry-copy p,
.site-footer span {
  color: var(--muted);
  line-height: 1.62;
}

.dark-section .service-card p,
.dark-section .section-heading {
  color: rgba(255, 255, 255, 0.72);
}

.work-section {
  background: #f0f0f0;
}

.showcase-section,
.gallery-section {
  background: var(--white);
}

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 28px);
  width: 100%;
  margin: 0 auto;
}

.showcase-card {
  position: relative;
  min-height: 295px;
  overflow: hidden;
  color: var(--white);
  background: var(--navy);
  border-radius: 8px;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.showcase-card.tall {
  min-height: 295px;
}

.showcase-card.wfs-card {
  display: grid;
  align-content: start;
  min-height: 295px;
}

.showcase-card.featured-video-card {
  display: grid;
  align-content: start;
  min-height: 295px;
}

.showcase-card img,
.showcase-card video {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.showcase-card img.feature-focus {
  object-position: center 32%;
}

.showcase-card img.chain-focus {
  object-position: center 18%;
}

.showcase-card img.heisman-focus {
  object-position: center 28%;
}

.showcase-card.wfs-card video {
  aspect-ratio: 4 / 5;
  background: #050505;
  height: auto;
  min-height: 0;
  object-fit: contain;
}

.showcase-card.featured-video-card video {
  aspect-ratio: 9 / 16;
  background: #050505;
  height: auto;
  min-height: 0;
  object-fit: contain;
}

.showcase-card.wfs-card::after,
.showcase-card.featured-video-card::after {
  display: none;
}

.showcase-card.wfs-card div,
.showcase-card.featured-video-card div {
  position: static;
  padding: 18px 20px 22px;
  background: #141414;
}

.showcase-card::after {
  content: "";
  position: absolute;
  inset: 40% 0 0;
  background: linear-gradient(180deg, rgba(8, 8, 8, 0), rgba(8, 8, 8, 0.92));
  pointer-events: none;
}

.showcase-card div {
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  padding: 18px;
}

.showcase-card span {
  color: var(--lime);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.showcase-card h3 {
  max-width: 330px;
  margin: 8px 0 0;
  font-size: clamp(1rem, 1.35vw, 1.28rem);
  line-height: 1.1;
}

.showcase-link {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  margin-top: 14px;
  padding: 0 11px;
  color: var(--white);
  background: var(--red);
  border-radius: 6px;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  transition:
    transform 180ms ease,
    background 180ms ease;
}

.showcase-link:hover {
  transform: translateY(-2px);
  background: var(--deep-red);
}

.gallery-frame {
  display: grid;
  gap: 16px;
}

.gallery-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.gallery-toolbar span {
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 850;
  text-transform: uppercase;
}

.gallery-toolbar div {
  display: flex;
  gap: 8px;
}

.gallery-button {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: var(--white);
  background: var(--navy);
  border: 0;
  border-radius: 6px;
  cursor: pointer;
  font-size: 1.8rem;
  line-height: 1;
}

.photo-gallery {
  display: grid;
  grid-auto-columns: minmax(280px, 31vw);
  grid-auto-flow: column;
  gap: 14px;
  overflow-x: auto;
  padding: 0 0 18px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-color: var(--blue) #dedede;
}

.photo-gallery figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: var(--navy);
  border-radius: 8px;
  scroll-snap-align: start;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.photo-gallery img {
  width: 100%;
  aspect-ratio: 4 / 5.35;
  object-fit: cover;
}

.photo-gallery figcaption {
  position: absolute;
  left: 12px;
  bottom: 12px;
  padding: 7px 9px;
  color: var(--white);
  background: rgba(8, 8, 8, 0.74);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.video-showcase-section {
  color: var(--white);
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.video-grid article {
  overflow: hidden;
  background: #141414;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.video-grid video {
  display: block;
  width: 100%;
  aspect-ratio: 9 / 16;
  background: #050505;
  object-fit: contain;
}

.video-grid h3 {
  margin: 0;
  padding: 18px;
  font-size: 1.2rem;
}

.recap-showcase-section {
  position: relative;
  color: var(--white);
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(8, 8, 8, 0.9), rgba(8, 8, 8, 0.98)),
    radial-gradient(circle at 18% 0%, rgba(215, 25, 32, 0.22), transparent 28%),
    radial-gradient(circle at 88% 12%, rgba(255, 255, 255, 0.1), transparent 30%),
    var(--navy);
}

.recap-showcase-section .section-heading {
  color: rgba(255, 255, 255, 0.76);
}

.recap-showcase-section .section-heading h2 {
  color: var(--white);
}

.recap-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.recap-card {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(20, 20, 20, 0.98), rgba(5, 5, 5, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.24);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.recap-card:hover {
  transform: translateY(-8px);
  border-color: rgba(215, 25, 32, 0.72);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.38);
}

.recap-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: var(--navy);
  transition: aspect-ratio 220ms ease;
}

.recap-media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 -70px 70px rgba(0, 0, 0, 0.52);
}

.recap-card.is-playing .recap-media::after {
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.landscape-recap {
  grid-column: span 2;
}

.recap-card.is-playing .recap-media {
  aspect-ratio: 9 / 16;
}

.landscape-recap.is-playing .recap-media {
  aspect-ratio: 16 / 9;
}

.recap-media video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.recap-play {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  width: 100%;
  padding: 0;
  overflow: hidden;
  color: var(--white);
  background: var(--navy);
  border: 0;
  cursor: pointer;
}

.recap-play::before {
  content: "M2B Sports Recap";
  position: absolute;
  left: 14px;
  top: 14px;
  z-index: 2;
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  color: var(--white);
  background: var(--lime);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
}

.recap-play img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.05);
  transition:
    transform 220ms ease,
    filter 220ms ease;
}

.recap-play span {
  position: absolute;
  z-index: 2;
  display: inline-grid;
  place-items: center;
  width: 70px;
  height: 70px;
  color: transparent;
  background:
    linear-gradient(135deg, rgba(215, 25, 32, 0.96), rgba(143, 15, 19, 0.95));
  border: 5px solid rgba(255, 255, 255, 0.9);
  border-radius: 999px;
  box-shadow:
    0 16px 44px rgba(0, 0, 0, 0.46),
    0 0 0 10px rgba(255, 255, 255, 0.12);
}

.recap-play span::before {
  content: "";
  width: 0;
  height: 0;
  margin-left: 5px;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-left: 18px solid var(--white);
}

.recap-card:hover .recap-play img {
  transform: scale(1.04);
  filter: saturate(1.08) contrast(1.08);
}

.recap-card.is-playing .recap-play {
  display: none;
}

.recap-card > div:last-child {
  flex: 1;
  padding: 20px;
}

.recap-card span {
  color: var(--lime);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.recap-card h3 {
  margin: 8px 0;
  font-size: 1.34rem;
}

.recap-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.62;
}

.video-link {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  margin-top: 14px;
  padding: 0 13px;
  color: var(--white);
  background: var(--lime);
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 850;
}

.service-hero {
  position: relative;
  display: grid;
  align-content: end;
  min-height: calc(92svh - 72px);
  padding: clamp(88px, 13vh, 142px) clamp(18px, 5vw, 72px) clamp(48px, 8vh, 86px);
  color: var(--white);
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.92), rgba(0, 0, 0, 0.58) 54%, rgba(0, 0, 0, 0.2)),
    var(--service-image) center / cover;
}

.hero-scroll-gallery {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: var(--navy);
}

.hero-scroll-track {
  display: grid;
  animation: hero-scroll-loop 54s linear infinite;
}

.hero-scroll-track img {
  width: 100%;
  height: auto;
  background: var(--navy);
}

.hero-scroll-gallery::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.94), rgba(0, 0, 0, 0.66) 52%, rgba(0, 0, 0, 0.28)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.58));
  pointer-events: none;
}

@keyframes hero-scroll-loop {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-50%);
  }
}

.service-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 40%;
  background: linear-gradient(180deg, rgba(8, 8, 8, 0), rgba(8, 8, 8, 0.95));
  pointer-events: none;
}

.service-hero-content {
  position: relative;
  z-index: 1;
  max-width: 940px;
}

.service-hero h1 {
  max-width: 980px;
  margin: 0;
  font-size: clamp(3rem, 7vw, 7rem);
  line-height: 0.92;
  letter-spacing: 0;
}

.service-hero p:not(.eyebrow) {
  max-width: 690px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.05rem, 1.7vw, 1.32rem);
  line-height: 1.62;
}

.game-hero {
  background: var(--navy);
}

.media-hero {
  --service-image: url("./assets/work/media-day/concordia/6l4a9328-hero-final.png");
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.66), rgba(0, 0, 0, 0.28) 48%, rgba(0, 0, 0, 0.02)),
    var(--service-image) center / cover;
}

.coach-hero {
  --service-image: url("./assets/work/content-for-coaches/photos/1q8a0220.jpg");
  background-position: center 48%;
}

.camps-hero {
  background: var(--navy);
}

.coach-system-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(24px, 4vw, 54px);
  align-items: start;
  color: var(--white);
  background: var(--navy);
}

.coach-system-copy {
  position: sticky;
  top: 100px;
}

.coach-system-copy h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 0.98;
}

.coach-system-copy p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.62;
}

.coach-visual-board {
  display: grid;
  gap: 16px;
}

.coach-feature-frame {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: #141414;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
}

.coach-feature-frame img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center 38%;
}

.coach-feature-frame figcaption {
  position: absolute;
  left: 14px;
  bottom: 14px;
  padding: 7px 10px;
  color: var(--white);
  background: rgba(215, 25, 32, 0.88);
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 950;
  text-transform: uppercase;
}

.coach-proof-grid,
.coach-package-grid {
  display: grid;
  gap: 14px;
}

.coach-proof-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.coach-proof-grid article,
.coach-package-grid article {
  min-width: 0;
  border-radius: 8px;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.coach-proof-grid article {
  padding: 18px;
  background: #141414;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.coach-proof-grid span,
.coach-package-grid span {
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.coach-proof-grid strong {
  display: block;
  margin-top: 8px;
  font-size: 1.22rem;
}

.coach-proof-grid p,
.coach-package-grid p {
  margin: 8px 0 0;
  line-height: 1.58;
}

.coach-proof-grid p {
  color: rgba(255, 255, 255, 0.68);
}

.coach-package-section {
  background: #f0f0f0;
}

.coach-package-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.coach-package-grid article {
  min-height: 245px;
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--line);
}

.coach-package-grid h3 {
  margin: 10px 0;
  font-size: 1.34rem;
}

.coach-package-grid p {
  color: var(--muted);
}

.coach-callout-section {
  padding-top: clamp(34px, 5vw, 64px);
  padding-bottom: clamp(34px, 5vw, 64px);
  color: var(--white);
  background: var(--navy);
}

.coach-callout {
  display: grid;
  grid-template-columns: minmax(180px, 0.3fr) minmax(0, 1fr);
  gap: clamp(20px, 4vw, 48px);
  align-items: center;
  padding: clamp(22px, 4vw, 42px);
  background:
    linear-gradient(135deg, rgba(215, 25, 32, 0.22), rgba(255, 255, 255, 0.06)),
    #141414;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
}

.coach-callout strong {
  color: var(--red);
  font-size: clamp(4.8rem, 14vw, 11rem);
  line-height: 0.82;
  letter-spacing: 0;
}

.coach-callout span {
  display: block;
  color: var(--white);
  font-size: clamp(1.55rem, 3vw, 3rem);
  font-weight: 950;
  line-height: 1;
}

.coach-callout p {
  max-width: 840px;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  line-height: 1.62;
}

.parent-trust-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(24px, 4vw, 54px);
  align-items: start;
  background: var(--white);
}

.parent-trust-copy h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 0.98;
}

.parent-trust-copy p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.62;
}

.parent-trust-grid {
  display: grid;
  gap: 14px;
}

.parent-trust-grid article {
  min-height: 178px;
  padding: 20px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.parent-trust-grid article:hover {
  transform: translateY(-8px);
  border-color: rgba(215, 25, 32, 0.34);
  box-shadow: var(--shadow);
}

.parent-trust-grid span {
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.parent-trust-grid h3 {
  margin: 8px 0;
  font-size: 1.34rem;
}

.parent-trust-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.58;
}

.coach-portfolio-section {
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(8, 8, 8, 0.96), rgba(8, 8, 8, 0.9)),
    var(--navy);
}

.coach-portfolio-section .section-heading {
  color: rgba(255, 255, 255, 0.72);
}

.coach-portfolio-section .section-heading h2 {
  color: var(--white);
}

.portfolio-category {
  display: grid;
  gap: 18px;
}

.portfolio-category + .portfolio-category {
  margin-top: clamp(42px, 6vw, 72px);
  padding-top: clamp(34px, 5vw, 58px);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.portfolio-category-heading {
  max-width: 760px;
}

.portfolio-category-heading h3 {
  margin: 0;
  color: var(--white);
  font-size: clamp(1.85rem, 3vw, 3rem);
  line-height: 1;
}

.coach-video-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.coach-video-grid article {
  overflow: hidden;
  background: #141414;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.coach-video-grid article:hover {
  transform: translateY(-8px);
  border-color: rgba(215, 25, 32, 0.72);
  box-shadow: var(--shadow);
}

.coach-video-grid video {
  width: 100%;
  aspect-ratio: 9 / 16;
  display: block;
  background: #050505;
  object-fit: contain;
}

.coach-video-grid div {
  padding: 18px;
}

.coach-video-grid span {
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.coach-video-grid h3 {
  margin: 8px 0 0;
  font-size: 1.18rem;
  line-height: 1.12;
}

.camps-video-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.camps-video-grid-two {
  grid-template-columns: repeat(2, minmax(0, 360px));
}

.camps-video-grid-three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.camps-video-grid-camps {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.camps-video-grid article {
  overflow: hidden;
  background: #141414;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.camps-video-grid article:hover {
  transform: translateY(-8px);
  border-color: rgba(215, 25, 32, 0.72);
  box-shadow: var(--shadow);
}

.camps-video-grid video {
  width: 100%;
  aspect-ratio: 9 / 16;
  display: block;
  background: #050505;
  object-fit: contain;
}

.camps-video-grid div {
  padding: 18px;
}

.camps-video-grid span {
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.camps-video-grid h3 {
  margin: 8px 0 0;
  font-size: 1.12rem;
  line-height: 1.12;
}

.landscape-camps-video {
  grid-column: span 2;
}

.landscape-camps-video video {
  aspect-ratio: 16 / 9;
}

.portfolio-placeholder-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.portfolio-placeholder-grid article {
  min-height: 260px;
  display: grid;
  align-content: end;
  padding: 22px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(215, 25, 32, 0.08), rgba(215, 25, 32, 0.24)),
    #141414;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.portfolio-placeholder-grid article:hover {
  transform: translateY(-8px);
  border-color: rgba(215, 25, 32, 0.72);
  box-shadow: var(--shadow);
}

.portfolio-placeholder-grid span {
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.portfolio-placeholder-grid h3 {
  max-width: 420px;
  margin: 10px 0 0;
  color: var(--white);
  font-size: clamp(1.3rem, 2vw, 2rem);
  line-height: 1.04;
}

.service-detail {
  background: var(--white);
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.detail-grid article {
  min-height: 230px;
  padding: 22px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.detail-grid h3 {
  margin: 0 0 10px;
  font-size: 1.42rem;
}

.detail-grid span {
  display: block;
  margin-bottom: 10px;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.detail-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.62;
}

.camps-overview-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.work-board {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.work-board article {
  min-height: 250px;
  padding: 22px;
  background: var(--white);
}

.work-number {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--white);
  background: var(--blue);
  border-radius: 6px;
  font-weight: 950;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(360px, 1fr);
  gap: 38px;
  align-items: start;
  background: var(--white);
}

.process-list {
  display: grid;
  gap: 12px;
}

.process-list article {
  display: grid;
  gap: 4px;
  padding: 18px;
}

.process-list strong {
  margin: 0;
}

.inquiry-section {
  display: grid;
  grid-template-columns: minmax(280px, 440px) minmax(0, 1fr);
  gap: 28px;
  align-items: start;
  background: var(--navy);
}

.inquiry-copy {
  position: sticky;
  top: 100px;
  color: var(--white);
}

.inquiry-copy p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.72);
}

.form-shell {
  min-height: 923px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px clamp(18px, 5vw, 72px);
  background: var(--white);
  border-top: 1px solid var(--line);
}

.site-footer strong {
  display: block;
  font-weight: 950;
}

.site-footer span {
  display: block;
}

.footer-contact {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.footer-contact a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 44px;
  padding: 0 14px;
  color: var(--white);
  background: var(--navy);
  border: 1px solid rgba(215, 25, 32, 0.28);
  border-radius: 6px;
  font-size: 0.92rem;
  font-weight: 850;
  transition:
    transform 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.footer-contact a:hover {
  transform: translateY(-3px);
  background: var(--red);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.16);
}

.footer-contact span {
  display: inline-grid;
  place-items: center;
  width: 20px;
  color: var(--white);
  font-size: 1rem;
  line-height: 1;
}

@media (max-width: 980px) {
  .site-nav {
    display: none;
  }

  .hero {
    min-height: 76svh;
  }

  .hero-content,
  .hero p:not(.eyebrow) {
    max-width: 100%;
  }

  .hero-brand-phrase {
    top: 90px;
    right: 18px;
    max-width: 92vw;
    font-size: clamp(2.5rem, 12vw, 5rem);
  }

  .hero-strip,
  .intro-section,
  .intro-stats,
  .service-grid,
  .video-grid,
  .recap-grid,
  .detail-grid,
  .camps-overview-grid,
  .work-board,
  .coach-system-section,
  .coach-proof-grid,
  .coach-package-grid,
  .coach-callout,
  .parent-trust-section,
  .coach-video-grid,
  .camps-video-grid,
  .camps-video-grid-two,
  .camps-video-grid-three,
  .portfolio-placeholder-grid,
  .split-section,
  .inquiry-section {
    grid-template-columns: 1fr;
  }

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

  .inquiry-copy {
    position: static;
  }

  .coach-system-copy {
    position: static;
  }

  .landscape-recap {
    grid-column: auto;
  }

  .landscape-camps-video {
    grid-column: auto;
  }
}

@media (max-width: 620px) {
  .site-header {
    min-height: 66px;
  }

  .brand-logo {
    width: 90px;
    padding: 6px 8px;
  }

  .header-cta {
    min-height: 40px;
    padding: 0 12px;
    font-size: 0.88rem;
  }

  .hero {
    min-height: auto;
    padding-top: 76px;
  }

  .service-hero {
    min-height: auto;
    padding-top: 86px;
  }

  .hero h1,
  .service-hero h1 {
    font-size: 3rem;
  }

  .hero-strip a {
    min-height: 54px;
  }

  .service-card img {
    aspect-ratio: 16 / 11;
  }

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

  .showcase-card,
  .showcase-card.tall,
  .photo-gallery figure {
    grid-column: auto;
    grid-row: auto;
    min-height: 340px;
  }

  .service-card img,
  .service-carousel,
  .showcase-card img,
  .photo-gallery img {
    object-fit: contain;
    background: #080808;
  }

  .service-card img,
  .service-carousel {
    aspect-ratio: 4 / 5;
  }

  .showcase-card:not(.featured-video-card) {
    min-height: 0;
    background: #141414;
  }

  .showcase-card:not(.featured-video-card) img {
    height: auto;
    min-height: 0;
    aspect-ratio: 4 / 5;
  }

  .showcase-card:not(.featured-video-card)::after {
    display: none;
  }

  .showcase-card:not(.featured-video-card) div {
    position: static;
    background: #141414;
  }

  .photo-gallery img {
    aspect-ratio: 4 / 5.35;
  }

  .recap-play img {
    object-fit: contain;
    background: #050505;
  }

  .video-grid,
  .coach-video-grid,
  .camps-video-grid,
  .camps-video-grid-two,
  .camps-video-grid-three,
  .camps-video-grid-camps {
    gap: 22px;
  }

  .photo-gallery {
    grid-auto-columns: minmax(260px, 82vw);
  }

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

  .footer-contact {
    width: 100%;
    justify-content: flex-start;
  }

  .footer-contact a {
    width: 100%;
  }
}

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

  .service-card,
  .site-intro,
  .site-intro::before,
  .site-intro-mark,
  .hero-brand-phrase strong,
  .hero-scroll-track,
  .showcase-card,
  .intro-stats article,
  .work-board article,
  .process-list article,
  .detail-grid article,
  .video-grid article,
  .recap-card,
  .coach-feature-frame,
  .coach-proof-grid article,
  .coach-package-grid article,
  .parent-trust-grid article,
  .coach-video-grid article,
  .camps-video-grid article,
  .portfolio-placeholder-grid article,
  .photo-gallery figure {
    transition: none;
  }

  .service-card:hover,
  .showcase-card:hover,
  .intro-stats article:hover,
  .work-board article:hover,
  .process-list article:hover,
  .detail-grid article:hover,
  .video-grid article:hover,
  .recap-card:hover,
  .coach-feature-frame:hover,
  .coach-proof-grid article:hover,
  .coach-package-grid article:hover,
  .parent-trust-grid article:hover,
  .coach-video-grid article:hover,
  .camps-video-grid article:hover,
  .portfolio-placeholder-grid article:hover,
  .photo-gallery figure:hover {
    transform: none;
  }
}
