:root {
  --ink: #111318;
  --ink-2: #1b1f27;
  --paper: #ffffff;
  --soft: #f4f5f7;
  --muted: #687080;
  --line: #d9dee7;
  --red: #b11226;
  --red-dark: #86101f;
  --gold: #d7b46a;
  --blue: #215fb9;
  --purple: #6f43b8;
  --brown: #7a4e2b;
  --shadow: 0 20px 60px rgba(17, 19, 24, 0.16);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

section[id] {
  scroll-margin-top: 96px;
}

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

body:not(.is-ready) .site-header,
body:not(.is-ready) .hero-copy,
body:not(.is-ready) .hero-photo,
body:not(.is-ready) .image-placeholder {
  opacity: 0;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 28px;
  min-height: 78px;
  padding: 14px clamp(18px, 4vw, 56px);
  color: var(--paper);
  background: rgba(17, 19, 24, 0.92);
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
  backdrop-filter: blur(16px);
}

body.is-ready .site-header {
  animation: headerDrop 580ms cubic-bezier(0.2, 0.9, 0.2, 1) both;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
  font-size: 13px;
  font-weight: 850;
  line-height: 1.02;
  letter-spacing: 0;
  text-transform: uppercase;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--paper);
  background: var(--red);
  border: 2px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  font-size: 21px;
  font-weight: 900;
  box-shadow: 0 0 0 4px rgba(177, 18, 38, 0.2);
}

.brand-logo {
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: 50%;
  background: #fff;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex: 1;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  font-weight: 700;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 850;
  line-height: 1;
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: var(--paper);
  background: var(--red);
  box-shadow: 0 14px 30px rgba(177, 18, 38, 0.28);
}

.btn-primary:hover {
  background: var(--red-dark);
}

.btn-secondary {
  color: var(--paper);
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  margin-left: auto;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: transparent;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--paper);
}

.section-dark {
  color: var(--paper);
  background:
    linear-gradient(135deg, rgba(177, 18, 38, 0.15), rgba(17, 19, 24, 0) 38%),
    radial-gradient(circle at top right, rgba(215, 180, 106, 0.1), transparent 30%),
    var(--ink);
}

.section-inner {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
}

.hero {
  min-height: calc(100vh - 78px);
  display: grid;
  align-items: center;
  padding: 64px 0 56px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 0.88fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: center;
}

.hero h1 {
  max-width: 780px;
  margin: 0 0 24px;
  font-size: clamp(46px, 7vw, 92px);
  line-height: 0.94;
  letter-spacing: 0;
}

body.is-ready .hero-copy {
  animation: riseIn 780ms cubic-bezier(0.2, 0.9, 0.2, 1) 120ms both;
}

body.is-ready .hero-photo,
body.is-ready .hero .image-placeholder {
  animation: photoIn 900ms cubic-bezier(0.2, 0.9, 0.2, 1) 220ms both;
}

.hero p {
  max-width: 650px;
  margin: 0 0 32px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(18px, 2.2vw, 22px);
}

.image-placeholder {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    repeating-linear-gradient(
      -45deg,
      rgba(255, 255, 255, 0.07) 0 12px,
      rgba(255, 255, 255, 0.02) 12px 24px
    ),
    #232732;
  box-shadow: var(--shadow);
}

.image-placeholder::before,
.image-placeholder::after {
  content: "";
  position: absolute;
  inset: 24px;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.image-placeholder::after {
  inset: auto 24px 24px auto;
  width: 132px;
  height: 132px;
  border-left: 0;
  border-top: 0;
}

.image-placeholder span {
  position: absolute;
  left: 24px;
  bottom: 24px;
  padding: 9px 12px;
  color: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(17, 19, 24, 0.55);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.hero-placeholder {
  aspect-ratio: 4 / 5;
  min-height: 540px;
}

.hero-photo {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: #050608;
  box-shadow: var(--shadow);
}

.hero-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 54% 54%;
}

.ranks-section,
.academy,
.training-library {
  padding: clamp(64px, 9vw, 112px) 0;
  background: var(--paper);
}

.ranks-section {
  color: var(--paper);
  background:
    radial-gradient(circle at 14% 26%, rgba(31, 52, 68, 0.9), transparent 34%),
    radial-gradient(circle at 92% 12%, rgba(77, 89, 100, 0.38), transparent 32%),
    linear-gradient(135deg, #172330 0%, #101821 48%, #0c1118 100%);
}

.ranks-section .section-title h2 {
  color: var(--paper);
}

.ranks-section .section-title p {
  color: var(--red);
}

.schedule-section {
  padding: clamp(64px, 9vw, 112px) 0;
  background: var(--soft);
}

.sponsor-section {
  padding: clamp(54px, 7vw, 84px) 0;
  background: var(--paper);
}

.sponsor-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 320px);
  gap: 32px;
  align-items: center;
  overflow: hidden;
}

.sponsor-inner .section-title {
  margin-bottom: 0;
}

.sponsor-card {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 320px;
  min-height: 126px;
  padding: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 12px 32px rgba(17, 19, 24, 0.08);
}

.sponsor-card img {
  display: block;
  width: min(100%, 230px);
  max-height: 78px;
  height: auto;
  object-fit: contain;
}

.schedule-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 26px;
  align-items: start;
}

.schedule-table {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1.2fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 12px 38px rgba(17, 19, 24, 0.08);
}

.schedule-table > div {
  min-height: 68px;
  padding: 18px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--ink-2);
  font-size: 16px;
  font-weight: 750;
}

.schedule-table > div:nth-child(3n) {
  border-right: 0;
}

.schedule-head {
  color: var(--paper) !important;
  background: var(--ink-2);
  font-size: 13px !important;
  font-weight: 900 !important;
  text-transform: uppercase;
}

.schedule-note {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 12px 38px rgba(17, 19, 24, 0.08);
}

.schedule-mobile {
  display: none;
}

.schedule-mobile article {
  position: relative;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 10px 26px rgba(17, 19, 24, 0.06);
}

.schedule-mobile strong {
  display: block;
  margin-bottom: 12px;
  color: var(--red);
  font-size: 14px;
  font-weight: 950;
  text-transform: uppercase;
}

.schedule-mobile span,
.schedule-mobile em {
  display: block;
  font-style: normal;
}

.schedule-mobile span {
  color: var(--ink);
  font-size: 20px;
  font-weight: 900;
  line-height: 1.15;
}

.schedule-mobile em {
  margin: 4px 0 12px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
}

.schedule-mobile em:last-child {
  margin-bottom: 0;
}

.schedule-note img,
.schedule-thumb {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.schedule-note p {
  margin: 16px 0;
  color: var(--muted);
}

.section-title {
  max-width: 780px;
  margin-bottom: 34px;
}

.section-title p {
  margin: 0 0 10px;
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.section-dark .section-title p {
  color: var(--gold);
}

.section-title h2 {
  margin: 0;
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1;
  letter-spacing: 0;
}

.compact h2 {
  font-size: clamp(28px, 3vw, 38px);
}

.rank-flow {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.rank-card {
  min-height: 260px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(10px);
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 680ms cubic-bezier(0.2, 0.9, 0.2, 1),
    transform 680ms cubic-bezier(0.2, 0.9, 0.2, 1);
}

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

.reveal-group > * {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 620ms cubic-bezier(0.2, 0.9, 0.2, 1),
    transform 620ms cubic-bezier(0.2, 0.9, 0.2, 1);
}

.reveal-group.is-visible > * {
  opacity: 1;
  transform: translateY(0);
}

.reveal-group.is-visible > *:nth-child(2) {
  transition-delay: 80ms;
}

.reveal-group.is-visible > *:nth-child(3) {
  transition-delay: 140ms;
}

.reveal-group.is-visible > *:nth-child(4) {
  transition-delay: 200ms;
}

.reveal-group.is-visible > *:nth-child(5) {
  transition-delay: 260ms;
}

.belt-swatch {
  display: block;
  width: 100%;
  height: 18px;
  margin-bottom: 22px;
  border-radius: 999px;
  box-shadow: inset 0 0 0 1px rgba(17, 19, 24, 0.15);
}

.rank-white .belt-swatch {
  background: #f8fafc;
}

.rank-blue .belt-swatch {
  background: var(--blue);
}

.rank-purple .belt-swatch {
  background: var(--purple);
}

.rank-brown .belt-swatch {
  background: var(--brown);
}

.rank-black .belt-swatch {
  background: #050608;
}

.rank-card h3,
.program-grid h3,
.academy-card h3,
.schedule-card h3 {
  margin: 0 0 12px;
  font-size: 23px;
  line-height: 1.08;
}

.rank-card p,
.program-grid p,
.academy-card p,
.schedule-card p {
  margin: 0;
  color: var(--muted);
}

.ranks-section .rank-card p {
  color: rgba(255, 255, 255, 0.72);
}

.program,
.curriculum,
.join {
  padding: clamp(64px, 9vw, 112px) 0;
}

.program-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.14);
}

.program-grid article {
  min-height: 248px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.055);
}

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

.text-link {
  display: inline-block;
  margin-top: 22px;
  color: var(--gold);
  font-weight: 850;
}

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

.coaches-section {
  padding: clamp(64px, 9vw, 112px) 0;
  background:
    linear-gradient(180deg, rgba(5, 6, 8, 0.96), rgba(10, 11, 14, 0.98)),
    var(--ink);
}

.coaches-section .section-title h2 {
  color: var(--paper);
}

.coaches-section .section-title p {
  color: var(--red);
}

.coaches-slider {
  position: relative;
  width: 100%;
  max-width: 100%;
  margin: 0;
  overflow: hidden;
}

.coaches-viewport {
  overflow: hidden;
  width: 100%;
}

.coaches-track {
  display: flex;
  gap: 12px;
  padding: 0;
  transition: transform 520ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.coach-card {
  position: relative;
  flex: 0 0 calc((100% - 24px) / 3);
  height: clamp(460px, 44vw, 650px);
  min-width: 0;
  overflow: hidden;
  border-radius: 0;
  background: var(--ink);
  border-bottom: 4px solid var(--red);
}

.coach-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 56% center;
  transform: scale(1.01);
}

.coach-card:nth-child(1) img,
.coach-card:nth-child(3) img,
.coach-card:nth-child(4) img {
  object-position: 80% center;
}

.coach-card:nth-child(5) img {
  object-position: 66% center;
}

.coach-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(5, 6, 8, 0.94), rgba(5, 6, 8, 0.22) 38%, rgba(5, 6, 8, 0.02) 68%),
    linear-gradient(to right, rgba(5, 6, 8, 0.32), transparent 42%);
}

.coach-card div {
  position: absolute;
  z-index: 2;
  left: 20px;
  right: 20px;
  bottom: 20px;
  color: var(--paper);
}

.coach-card span {
  display: inline-block;
  margin-bottom: 9px;
  color: var(--paper);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.coach-card h3 {
  margin: 0 0 6px;
  font-size: clamp(25px, 2.7vw, 42px);
  line-height: 1;
  text-transform: uppercase;
}

.coach-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.coach-nav {
  position: absolute;
  top: 50%;
  z-index: 4;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  background: rgba(5, 6, 8, 0.58);
  color: var(--paper);
  font-size: 22px;
  line-height: 1;
  transform: translateY(-50%);
  cursor: pointer;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}

.coach-nav:hover {
  background: var(--red);
  border-color: var(--red);
  transform: translateY(-50%) scale(1.04);
}

.coach-nav-prev {
  left: 10px;
}

.coach-nav-next {
  right: 10px;
}

.academy-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--soft);
}

.academy-card ul,
.curriculum-grid ul {
  padding-left: 18px;
  margin: 22px 0;
  color: var(--muted);
}

.academy-card li,
.curriculum-grid li {
  margin: 8px 0;
}

.curriculum-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.curriculum-grid article {
  min-height: 372px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.055);
}

.curriculum-grid span {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
}

.curriculum-grid h3 {
  margin: 0 0 14px;
  font-size: 21px;
}

.curriculum-grid ul {
  color: rgba(255, 255, 255, 0.72);
}

.centered-cta {
  margin-top: 30px;
}

.library-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 42px;
}

.list-panel {
  display: grid;
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.list-panel article {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 20px;
  padding: 18px 20px;
  background: var(--paper);
}

.list-panel strong {
  font-size: 15px;
}

.list-panel span {
  color: var(--muted);
}

.join-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 52px;
  align-items: start;
}

.join-copy {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 18px;
}

.contact-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  max-width: 680px;
  margin: 28px 0;
}

.contact-list span {
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.055);
  color: rgba(255, 255, 255, 0.78);
}

.schedule-card {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.055);
}

.small-placeholder {
  min-height: 240px;
  margin-bottom: 22px;
}

.schedule-thumb {
  margin-bottom: 22px;
}

.page-hero {
  padding: clamp(68px, 9vw, 118px) 0 clamp(48px, 7vw, 86px);
}

.page-hero h1 {
  max-width: 880px;
  margin: 0 0 20px;
  font-size: clamp(42px, 6vw, 76px);
  line-height: 0.98;
}

.page-hero p {
  max-width: 760px;
  margin: 0 0 28px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 19px;
}

.content-section {
  padding: clamp(54px, 8vw, 96px) 0;
  background: var(--paper);
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.content-card {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--soft);
}

.content-card h2,
.content-card h3 {
  margin: 0 0 14px;
  line-height: 1.08;
}

.content-card p {
  color: var(--muted);
}

.content-card ul,
.content-card ol {
  padding-left: 20px;
  color: var(--muted);
}

.content-card li {
  margin: 8px 0;
}

.wide-card {
  grid-column: 1 / -1;
}

.term-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.term-card {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.term-card strong {
  display: block;
  margin-bottom: 8px;
}

.term-card span {
  color: var(--muted);
}

@keyframes headerDrop {
  from {
    opacity: 0;
    transform: translateY(-14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes photoIn {
  from {
    opacity: 0;
    transform: translateY(24px) scale(0.985);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }

  .reveal,
  .reveal-group > * {
    opacity: 1;
    transform: none;
  }
}

.site-footer {
  padding: 44px clamp(18px, 4vw, 56px) 28px;
  color: rgba(255, 255, 255, 0.76);
  background: #08090d;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr 1.25fr;
  gap: 30px;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.site-footer h4 {
  margin: 0 0 12px;
  color: var(--paper);
}

.site-footer a:not(.brand):not(.btn) {
  display: block;
  margin: 7px 0;
}

.footer-cta strong {
  display: block;
  margin-bottom: 16px;
  color: var(--paper);
  font-size: 20px;
  line-height: 1.2;
}

.copyright {
  width: min(1180px, 100%);
  margin: 36px auto 0;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 13px;
}

@media (max-width: 1040px) {
  .hero-grid,
  .library-grid,
  .join-grid,
  .schedule-layout,
  .sponsor-inner {
    grid-template-columns: 1fr;
  }

  .rank-flow,
  .curriculum-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .program-grid,
  .academy-grid,
  .footer-inner,
  .term-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .coach-card {
    flex-basis: calc((100% - 12px) / 2);
    height: 560px;
  }

  .hero-placeholder {
    min-height: 420px;
  }
}

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

  .menu-toggle {
    display: block;
  }

  .site-nav,
  .header-cta {
    display: none;
  }

  .site-header.is-open {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .site-header.is-open .site-nav {
    display: grid;
    flex: 1 0 100%;
    gap: 8px;
    padding-top: 12px;
  }

  .site-header.is-open .site-nav a {
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius);
  }

  .site-header.is-open .header-cta {
    display: inline-flex;
  }

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

  .hero h1 {
    font-size: clamp(40px, 14vw, 58px);
  }

  .image-placeholder,
  .hero-placeholder {
    min-height: 300px;
  }

  .rank-flow,
  .program-grid,
  .academy-grid,
  .curriculum-grid,
  .footer-inner,
  .contact-list,
  .list-panel article,
  .content-grid,
  .term-grid {
    grid-template-columns: 1fr;
  }

  .coaches-track {
    gap: 10px;
    padding: 0;
  }

  .coach-card {
    flex-basis: 100%;
    height: 560px;
  }

  .coach-card div {
    left: 18px;
    right: 18px;
    bottom: 18px;
  }

  .coach-nav {
    width: 36px;
    height: 36px;
    font-size: 18px;
  }

  .schedule-table {
    display: none !important;
  }

  .schedule-mobile {
    display: grid !important;
    gap: 12px;
  }

  .schedule-section .section-title {
    margin-bottom: 20px;
  }

  .schedule-section .section-title h2 {
    font-size: 32px;
    line-height: 1.08;
  }

  .schedule-mobile article {
    display: grid;
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 18px 18px 18px 20px;
    border-left: 5px solid var(--red);
  }

  .schedule-mobile strong {
    margin-bottom: 4px;
    font-size: 13px;
  }

  .schedule-mobile span {
    font-size: 20px;
  }

  .schedule-mobile em {
    margin: 0 0 10px;
    font-size: 13px;
  }

  .schedule-note {
    padding: 14px;
  }

  .sponsor-card {
    max-width: 240px;
    min-height: 104px;
    padding: 14px;
    justify-self: start;
  }

  .sponsor-card img {
    width: min(100%, 180px);
    max-height: 62px;
  }

  .rank-card,
  .curriculum-grid article {
    min-height: auto;
  }

  .section-title h2 {
    font-size: clamp(30px, 10vw, 42px);
  }
}
