:root {
  --black: #080705;
  --panel: #12100c;
  --gold: #d9ad3f;
  --gold2: #f1d584;
  --cream: #f2eee4;
  --muted: #999386;
  --line: rgba(229, 190, 88, 0.2);
  --display: "Barlow Condensed", sans-serif;
  --body: "Inter", sans-serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--black);
  color: var(--cream);
  font-family: var(--body);
  overflow-x: hidden;
}
a {
  color: inherit;
  text-decoration: none;
}
.grain {
  position: fixed;
  inset: 0;
  z-index: 50;
  opacity: 0.035;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.site-header {
  height: 84px;
  position: absolute;
  inset: 0 0 auto;
  z-index: 20;
  padding: 0 4.5vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(#070604cc, transparent);
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand-mark,
.mini-mark {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
}
.brand-mark {
  width: 41px;
  height: 41px;
}
.brand-mark img,
.mini-mark img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.brand-type {
  font: 800 22px/0.74 var(--display);
  letter-spacing: 0.08em;
}
.brand-type small {
  display: block;
  font: 600 9px var(--body);
  letter-spacing: 0.38em;
  color: var(--gold);
  margin-top: 8px;
}
.site-header nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 13px;
  font-weight: 600;
}
.site-header nav > a:not(.nav-cta) {
  color: #c3bdb1;
}
.site-header nav a {
  transition: 0.2s;
}
.site-header nav a:hover {
  color: var(--gold2);
}
.nav-cta {
  padding: 12px 18px;
  border: 1px solid var(--line);
}
.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  position: relative;
  background: none;
  border: 0;
}
.menu-button span {
  position: absolute;
  left: 9px;
  width: 24px;
  height: 2px;
  background: var(--gold);
}
.menu-button span:first-child {
  top: 15px;
}
.menu-button span:last-child {
  top: 24px;
}
.hero {
  min-height: 100svh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 140px 7vw 90px;
  background:
    radial-gradient(circle at 70% 35%, #4b351628 0, transparent 28%),
    linear-gradient(125deg, #070604 35%, #120f09 80%, #080705);
}
.hero-image {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, #070604 0%, #070604e8 27%, #07060455 58%, #0706041c 100%),
    linear-gradient(0deg, #070604 0%, transparent 28%, #0706042b 100%),
    url("assets/horizon-arena.webp") center/cover no-repeat;
  filter: saturate(0.88) contrast(1.08);
}
.arena-lights {
  position: absolute;
  inset: -10% 0 0;
  display: flex;
  justify-content: space-around;
  opacity: 0.32;
}
.arena-lights i {
  width: 2px;
  height: 52vh;
  background: linear-gradient(var(--gold), transparent);
  box-shadow: 0 0 24px 8px #c6912b55;
  transform: rotate(18deg);
  transform-origin: top;
}
.arena-lights i:nth-child(2) {
  transform: rotate(7deg);
  height: 36vh;
}
.arena-lights i:nth-child(3) {
  transform: rotate(-8deg);
  height: 45vh;
}
.arena-lights i:nth-child(4) {
  transform: rotate(-20deg);
}
.hero-rings {
  position: absolute;
  width: 58vw;
  height: 58vw;
  right: -18vw;
  top: 8vh;
  border: 1px solid #d9ad3f22;
  border-radius: 50%;
  box-shadow:
    0 0 0 8vw #d9ad3f08,
    0 0 0 16vw #d9ad3f05;
}
.hero-copy {
  position: relative;
  z-index: 3;
  max-width: 1050px;
}
.eyebrow,
.section-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--gold);
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
}
.eyebrow span {
  width: 30px;
  height: 2px;
  background: var(--gold);
  box-shadow: 0 0 15px var(--gold);
}
h1,
h2,
h3 {
  font-family: var(--display);
  margin: 0;
  line-height: 0.87;
  letter-spacing: -0.03em;
}
.hero h1 {
  font-size: clamp(6rem, 13vw, 13rem);
  font-weight: 900;
  margin: 26px 0 24px;
}
.hero h1 em,
.academy h2 em,
.school h2 em {
  font-style: italic;
  color: transparent;
  -webkit-text-stroke: 2px var(--gold);
}
.hero blockquote {
  margin: 0;
  max-width: 670px;
  font: 500 clamp(1.15rem, 2.1vw, 1.65rem)/1.5 var(--body);
  color: #d0c9bc;
}
.hero-actions {
  display: flex;
  gap: 12px;
  margin-top: 38px;
}
.button {
  min-height: 54px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 700;
  transition: 0.25s;
}
.button-gold {
  background: linear-gradient(135deg, var(--gold2), var(--gold));
  color: #160f03;
}
.button-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 35px #d9ad3f38;
}
.button-ghost {
  border-color: var(--line);
  background: #08070555;
}
.button-ghost:hover {
  border-color: var(--gold);
}
.button span,
.text-link span {
  margin-left: 14px;
}
.hero-h {
  position: absolute;
  width: min(46vw, 680px);
  height: min(46vw, 680px);
  right: -7vw;
  bottom: -14vw;
  object-fit: contain;
  opacity: 0.12;
  filter: saturate(0.7);
}
.hero-foot {
  position: absolute;
  bottom: 24px;
  left: 4.5vw;
  right: 4.5vw;
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  letter-spacing: 0.2em;
  color: #766f62;
}
.visitor-paths {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  background: #080705;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.path {
  min-height: 225px;
  padding: 42px 4.5vw;
  display: grid;
  grid-template-columns: 44px 1fr auto;
  gap: 25px;
  align-items: center;
  position: relative;
  overflow: hidden;
  transition: 0.3s;
}
.path:first-child {
  border-right: 1px solid var(--line);
}
.path::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 45%, #d9ad3f12);
  opacity: 0;
  transition: 0.3s;
}
.path:hover::after {
  opacity: 1;
}
.path:hover {
  background: #100d08;
}
.path-number,
.path small {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--gold);
}
.path h2 {
  font-size: clamp(2.8rem, 5vw, 5.7rem);
  margin: 10px 0 8px;
}
.path p {
  margin: 0;
  color: #817a6f;
  font-size: 12px;
}
.path > b {
  font-size: 11px;
  letter-spacing: 0.18em;
  z-index: 1;
}
.path b i {
  font-style: normal;
  color: var(--gold);
  margin-left: 10px;
}
.path-school {
  background: linear-gradient(135deg, #161109, #0c0a07);
}
.path-school h2 {
  color: var(--gold2);
}
.flagship,
.match-center,
.school,
.principles {
  padding: 120px 6vw;
}
.flagship {
  background: var(--cream);
  color: var(--black);
}
.flagship .section-label {
  color: #9a6c10;
}
.flagship-head {
  display: grid;
  grid-template-columns: 1.45fr 0.55fr;
  gap: 8vw;
  align-items: end;
  margin: 45px 0 58px;
}
.flagship-head > div > p {
  font: 700 12px var(--body);
  letter-spacing: 0.22em;
  color: #8b7751;
}
.flagship-head h2 {
  font-size: clamp(6rem, 15vw, 15rem);
  font-weight: 900;
}
.flagship-head > p,
.section-head > p,
.academy-copy > p,
.school-intro > p {
  font-size: 16px;
  line-height: 1.75;
  color: #6e685e;
}
.player-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
}
.player-card {
  position: relative;
  min-height: 370px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  background: linear-gradient(155deg, #181510, #090806);
  color: var(--cream);
}
.player-card > span {
  position: absolute;
  top: 16px;
  right: 16px;
  font: 700 14px var(--display);
  color: #776847;
}
.player-glow {
  position: absolute;
  width: 150%;
  aspect-ratio: 1;
  left: -25%;
  top: 7%;
  border-radius: 50%;
  background: radial-gradient(circle, #d9ad3f24, transparent 60%);
  border: 1px solid #d9ad3f14;
}
.player-card p {
  font-size: 10px;
  letter-spacing: 0.24em;
  color: var(--gold);
  margin: 0 0 7px;
}
.player-card h3 {
  font-size: clamp(1.7rem, 2.4vw, 2.6rem);
  position: relative;
}
.coach-strip {
  margin-top: 8px;
  background: #d9ad3f;
  color: #130e04;
  min-height: 108px;
  display: grid;
  grid-template-columns: 90px 1fr 1.3fr 0.7fr;
  align-items: center;
  padding: 24px;
  gap: 25px;
}
.team-cinema,
.school-cinema {
  position: relative;
  margin: 8px 0 0;
  min-height: 560px;
  overflow: hidden;
  background: #080705;
}
.team-cinema img,
.school-cinema img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.team-cinema::after,
.school-cinema::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, #070604e8 100%);
}
.team-cinema figcaption,
.school-cinema figcaption {
  position: absolute;
  z-index: 2;
  left: 38px;
  bottom: 36px;
  color: var(--cream);
}
.team-cinema figcaption span,
.school-cinema figcaption span {
  display: block;
  margin-bottom: 12px;
  color: var(--gold);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.24em;
}
.team-cinema figcaption strong,
.school-cinema figcaption strong {
  font: 900 clamp(3rem, 6vw, 6.5rem)/0.88 var(--display);
  letter-spacing: -0.03em;
}
.coach-index {
  font: 800 13px var(--body);
  letter-spacing: 0.18em;
}
.coach-name small {
  font: 700 9px var(--body);
  letter-spacing: 0.17em;
  display: block;
}
.coach-name strong {
  font: 900 38px var(--display);
}
.coach-strip p {
  font-size: 13px;
  line-height: 1.5;
}
.languages {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-align: right;
}
.match-center {
  background: #0b0907;
}
.section-head {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  gap: 8vw;
  align-items: end;
  margin-bottom: 50px;
}
.section-head h2,
.academy h2,
.school h2 {
  font-size: clamp(4.5rem, 9vw, 9rem);
  font-weight: 900;
  margin-top: 32px;
}
.section-head > p {
  color: #9f978a;
}
.featured-match {
  border: 1px solid var(--line);
  min-height: 260px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  position: relative;
  background: radial-gradient(circle at center, #d9ad3f14, transparent 38%);
}
.live-tag {
  position: absolute;
  top: 20px;
  left: 20px;
  color: var(--gold);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
}
.match-side {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  font: 800 clamp(2rem, 4vw, 4rem) var(--display);
}
.mini-mark,
.unknown {
  width: 72px;
  height: 72px;
  font-size: 42px;
}
.mini-mark {
  background: transparent;
}
.unknown {
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  color: #776c5b;
}
.match-time {
  text-align: center;
  border-left: 1px solid var(--line);
  border-right: 1px solid var(--line);
  padding: 40px 20px;
}
.match-time small,
.match-time span {
  display: block;
  color: #857e72;
}
.match-time strong {
  display: block;
  font: 800 clamp(1.7rem, 3vw, 3rem) var(--display);
  margin: 10px;
}
.match-time span {
  font-size: 12px;
}
.match-tools {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 8px;
}
.archive-card {
  padding: 30px;
  border: 1px solid var(--line);
  min-height: 210px;
  position: relative;
  transition: 0.25s;
}
.archive-card:hover {
  background: #d9ad3f0d;
  border-color: #d9ad3f66;
}
.archive-card > span {
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--gold);
}
.archive-card h3 {
  font-size: clamp(2rem, 4vw, 4rem);
  margin: 34px 0 10px;
}
.archive-card p {
  color: #8f887d;
  font-size: 13px;
}
.archive-card b {
  position: absolute;
  right: 24px;
  top: 24px;
  font-size: 9px;
  letter-spacing: 0.14em;
  color: #6d665b;
}
.quote-break {
  min-height: 650px;
  position: relative;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 100px 9vw;
  overflow: hidden;
  background:
    radial-gradient(ellipse at center, #44301344, transparent 55%), #080705;
}
.horizon-line {
  position: absolute;
  width: 120%;
  height: 55%;
  left: -10%;
  top: 40%;
  border-top: 1px solid #d9ad3f44;
  border-radius: 50%;
  box-shadow: 0 -30px 80px #d9ad3f14;
}
.quote-break blockquote {
  position: relative;
  z-index: 2;
  max-width: 1150px;
  margin: 0;
  font: italic 700 clamp(3rem, 7vw, 7rem)/1.02 var(--display);
}
.quote-break > span {
  position: absolute;
  bottom: 90px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.35em;
  color: var(--gold);
}
.academy {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  min-height: 800px;
  background: var(--cream);
  color: var(--black);
}
.academy-copy {
  padding: 120px 7vw;
}
.academy-copy > p {
  max-width: 620px;
  margin: 35px 0;
}
.academy-facts {
  display: flex;
  gap: 30px;
  border-top: 1px solid #cbc3b4;
  border-bottom: 1px solid #cbc3b4;
  padding: 24px 0;
  margin: 42px 0;
  font-size: 12px;
  color: #746d61;
}
.academy-facts span {
  display: grid;
  gap: 7px;
}
.academy-facts b {
  color: #9a6c10;
  font-size: 9px;
  letter-spacing: 0.14em;
}
.text-link {
  font-weight: 700;
  border-bottom: 1px solid #9a6c10;
  padding-bottom: 6px;
}
.academy-panel {
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, #17130c, #070604);
  color: var(--cream);
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.academy-a {
  position: absolute;
  right: -3vw;
  top: -2vw;
  font: 900 38vw/0.8 var(--display);
  color: transparent;
  -webkit-text-stroke: 1px #d9ad3f33;
}
.academy-panel p {
  font-size: 10px;
  letter-spacing: 0.22em;
  color: var(--gold);
}
.academy-panel h3 {
  font-size: clamp(4rem, 7vw, 7rem);
}
.academy-panel small {
  color: #8d8579;
  line-height: 1.6;
  max-width: 400px;
  margin-top: 25px;
}
.school {
  background: #0c0a07;
}
.school-intro {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  gap: 7vw;
  align-items: end;
}
.school-intro .section-label {
  grid-column: 1/-1;
}
.school-intro > p {
  color: #9a9387;
}
.school-cinema {
  min-height: 500px;
  margin-top: 60px;
}
.school-cinema img {
  object-position: center 48%;
}
.program-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr;
  gap: 8px;
  margin-top: 60px;
}
.program {
  min-height: 440px;
  border: 1px solid var(--line);
  padding: 30px;
  display: flex;
  flex-direction: column;
  background: #100e0b;
}
.program.featured {
  background: linear-gradient(145deg, #d9ad3f, #a97617);
  color: #100c05;
}
.program > span {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--gold);
}
.program.featured > span {
  color: #443009;
}
.program h3 {
  font-size: clamp(2.5rem, 4.5vw, 4.7rem);
  margin: 50px 0 22px;
}
.program p {
  color: #918a7e;
  line-height: 1.65;
  font-size: 14px;
}
.program.featured p {
  color: #342507;
}
.program ul {
  list-style: none;
  padding: 0;
  margin: 20px 0;
  color: #342507;
  font-size: 12px;
}
.program li {
  padding: 9px 0;
  border-top: 1px solid #513b12;
}
.program > a {
  margin-top: auto;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  font-weight: 700;
}
.program.featured > a {
  border-color: #513b12;
}
.mentor {
  margin-top: auto;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 15px;
  align-items: center;
}
.mentor b {
  font: 800 28px var(--display);
  color: var(--gold);
}
.mentor small {
  color: #8d867b;
  line-height: 1.5;
}
.school-note {
  font-size: 11px;
  color: #6f685e;
  margin-top: 18px;
}
.competition-path {
  margin-top: 8px;
  padding: 32px 30px;
  border: 1px solid var(--line);
  display: grid;
  grid-template-columns: 0.55fr 1.5fr auto;
  gap: 36px;
  align-items: center;
  background: linear-gradient(110deg, #17120a, #0c0a07 70%);
}
.competition-path > span {
  color: var(--gold);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
}
.competition-path h3 {
  font-size: clamp(2rem, 3.5vw, 3.7rem);
  margin-bottom: 10px;
}
.competition-path p {
  max-width: 700px;
  margin: 0;
  color: #918a7e;
  font-size: 14px;
  line-height: 1.65;
}
.competition-path a {
  border-bottom: 1px solid var(--gold);
  padding-bottom: 7px;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}
.principles {
  background: #080705;
}
.principle-list {
  margin-top: 50px;
  border-top: 1px solid var(--line);
}
.principle-list article {
  display: grid;
  grid-template-columns: 70px 1fr 1fr;
  gap: 30px;
  align-items: center;
  border-bottom: 1px solid var(--line);
  padding: 32px 0;
}
.principle-list span {
  color: var(--gold);
  font-size: 12px;
}
.principle-list h3 {
  font-size: clamp(2.5rem, 5vw, 5rem);
}
.principle-list p {
  color: #90897e;
}
.closing {
  min-height: 780px;
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 110px 7vw;
  background: linear-gradient(145deg, var(--gold2), #b57d18);
  color: #130d03;
}
.closing-word {
  position: absolute;
  font: 900 30vw var(--display);
  color: #0000000b;
  transform: rotate(-8deg);
}
.closing-inner {
  position: relative;
  z-index: 2;
  max-width: 1150px;
  text-align: center;
}
.closing-inner > p {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.3em;
}
.closing h2 {
  font-size: clamp(3.3rem, 7.6vw, 7.5rem);
  line-height: 0.94;
  margin: 50px 0;
}
.button-dark {
  background: #090705;
  color: var(--cream);
}
.contact-address {
  display: block;
  width: fit-content;
  margin: 22px auto 0;
  padding-bottom: 5px;
  border-bottom: 1px solid #3e2a08;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
}
footer {
  padding: 55px 6vw 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: center;
  border-top: 1px solid var(--line);
}
.footer-links {
  display: flex;
  justify-content: flex-end;
  gap: 22px;
  color: #9a9388;
  font-size: 12px;
}
footer > small {
  grid-column: 1/-1;
  margin-top: 35px;
  color: #5e584f;
  font-size: 9px;
  letter-spacing: 0.15em;
}
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.75s ease,
    transform 0.75s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
@media (max-width: 980px) {
  .player-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .coach-strip {
    grid-template-columns: 70px 1fr 1fr;
  }
  .languages {
    grid-column: 2/-1;
    text-align: left;
  }
  .program-grid {
    grid-template-columns: 1fr 1fr;
  }
  .program.featured {
    grid-column: 1/-1;
  }
  .academy {
    grid-template-columns: 1fr;
  }
  .academy-panel {
    min-height: 600px;
  }
  .academy-a {
    font-size: 70vw;
  }
}
@media (max-width: 720px) {
  .visitor-paths {
    grid-template-columns: 1fr;
  }
  .path {
    min-height: 180px;
    padding: 30px 22px;
    grid-template-columns: 32px 1fr;
  }
  .path:first-child {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .path > b {
    display: none;
  }
  .site-header {
    height: 72px;
    padding: 0 20px;
  }
  .site-header nav {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    padding: 26px 20px;
    background: #090705;
    flex-direction: column;
    align-items: stretch;
    border-bottom: 1px solid var(--line);
  }
  .site-header nav.open {
    display: flex;
  }
  .menu-button {
    display: block;
  }
  .hero {
    padding: 120px 22px 82px;
  }
  .hero-image {
    background:
      linear-gradient(180deg, #07060470 0%, #07060450 34%, #070604 92%),
      url("assets/horizon-arena.webp") 66% center/cover no-repeat;
    opacity: 0.78;
  }
  .hero h1 {
    font-size: clamp(5rem, 23vw, 8rem);
  }
  .hero blockquote {
    font-size: 17px;
  }
  .hero-actions {
    flex-direction: column;
  }
  .hero-foot span:nth-child(2) {
    display: none;
  }
  .flagship,
  .match-center,
  .school,
  .principles {
    padding: 82px 22px;
  }
  .flagship-head,
  .section-head,
  .school-intro {
    display: block;
  }
  .flagship-head > p,
  .section-head > p,
  .school-intro > p {
    margin-top: 28px;
  }
  .player-grid {
    grid-template-columns: 1fr 1fr;
  }
  .player-card {
    min-height: 300px;
  }
  .player-card:last-child {
    grid-column: 1/-1;
  }
  .coach-strip {
    grid-template-columns: 1fr;
  }
  .team-cinema,
  .school-cinema {
    min-height: 430px;
  }
  .team-cinema figcaption,
  .school-cinema figcaption {
    left: 20px;
    right: 20px;
    bottom: 22px;
  }
  .languages {
    grid-column: auto;
  }
  .featured-match {
    grid-template-columns: 1fr;
    padding: 70px 20px 25px;
    gap: 20px;
  }
  .match-time {
    border: 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding: 25px 10px;
  }
  .match-tools,
  .program-grid {
    grid-template-columns: 1fr;
  }
  .program.featured {
    grid-column: auto;
  }
  .competition-path {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 28px 22px;
  }
  .quote-break {
    min-height: 520px;
  }
  .academy-copy {
    padding: 82px 22px;
  }
  .academy-facts {
    flex-direction: column;
  }
  .academy-panel {
    min-height: 500px;
    padding: 35px 22px;
  }
  .principle-list article {
    grid-template-columns: 42px 1fr;
  }
  .principle-list p {
    grid-column: 2;
  }
  .closing {
    min-height: 650px;
    padding: 85px 22px;
  }
  footer {
    grid-template-columns: 1fr;
    padding: 45px 22px 24px;
  }
  .footer-links {
    justify-content: flex-start;
    flex-wrap: wrap;
  }
  footer > small {
    grid-column: 1;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
