:root {
  color-scheme: light;
  --ink: #07192f;
  --navy: #06142a;
  --blue: #0b2d5c;
  --cyan: #13c9d7;
  --teal: #00a7b8;
  --cyan-soft: #d9fbff;
  --orange: #f47b20;
  --gold: #f4c95d;
  --mint: #7ef7e6;
  --red: #df2638;
  --white: #ffffff;
  --paper: #f6fbff;
  --muted: #5d6b7f;
  --line: rgba(7, 25, 47, 0.12);
  --shadow: 0 24px 70px rgba(4, 17, 35, 0.18);
  --soft-shadow: 0 14px 42px rgba(4, 17, 35, 0.1);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 8%, rgba(19, 201, 215, 0.24), transparent 28%),
    radial-gradient(circle at 88% 18%, rgba(244, 201, 93, 0.22), transparent 24%),
    linear-gradient(116deg, transparent 0 21%, rgba(19, 201, 215, 0.08) 21% 29%, transparent 29% 61%, rgba(244, 123, 32, 0.1) 61% 69%, transparent 69%),
    linear-gradient(180deg, rgba(6, 20, 42, 0.045), transparent 780px),
    var(--paper);
  letter-spacing: 0;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(7, 25, 47, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7, 25, 47, 0.045) 1px, transparent 1px),
    repeating-linear-gradient(118deg, transparent 0 46px, rgba(19, 201, 215, 0.045) 46px 48px, transparent 48px 116px);
  background-size: 72px 72px, 72px 72px, auto;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.72), transparent 78%);
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: min(1180px, calc(100% - 32px));
  min-height: 76px;
  margin: 14px auto 0;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--soft-shadow);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  font-weight: 900;
  color: var(--navy);
}

.brand img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.brand span {
  white-space: nowrap;
}

nav {
  display: flex;
  gap: 8px;
}

nav a {
  position: relative;
  min-height: 40px;
  padding: 11px 14px;
  border-radius: 999px;
  color: var(--blue);
  font-size: 0.92rem;
  font-weight: 800;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

nav a:hover {
  color: var(--navy);
  background: var(--cyan-soft);
  transform: translateY(-1px);
}

main {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.enroll-strip {
  display: flex;
  justify-content: flex-end;
  width: min(1180px, calc(100% - 32px));
  margin: 10px auto 0;
  padding-right: 4px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  align-items: center;
  gap: 48px;
  min-height: calc(100vh - 96px);
  padding: 54px 0 28px;
}

.hero-copy {
  display: grid;
  gap: 24px;
}

.eyebrow,
.section-kicker {
  margin: 0;
  width: fit-content;
  padding: 8px 12px;
  border: 1px solid rgba(244, 123, 32, 0.26);
  border-radius: 999px;
  color: #b24f12;
  background: rgba(255, 255, 255, 0.76);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 0;
  max-width: 620px;
  font-size: clamp(2.45rem, 4.8vw, 4.7rem);
  line-height: 1;
  font-weight: 900;
}

h2 {
  margin-bottom: 0;
  max-width: 680px;
  font-size: clamp(1.8rem, 3.2vw, 3.2rem);
  line-height: 1.06;
  font-weight: 900;
}

.lead,
.split p,
.contact-details {
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.72;
}

.lead {
  max-width: 560px;
  margin-bottom: 0;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.hero-tags span {
  padding: 9px 12px;
  border: 1px solid rgba(7, 25, 47, 0.1);
  border-radius: 999px;
  color: var(--blue);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 8px 26px rgba(4, 17, 35, 0.06);
  font-size: 0.9rem;
  font-weight: 800;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 900;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button.primary {
  color: white;
  border-color: rgba(19, 201, 215, 0.34);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent 42%),
    linear-gradient(135deg, var(--navy), #0a4270 52%, var(--teal));
  box-shadow: 0 16px 34px rgba(6, 20, 42, 0.22);
}

.button.secondary {
  color: var(--navy);
  border-color: rgba(19, 201, 215, 0.36);
  background:
    linear-gradient(135deg, rgba(19, 201, 215, 0.12), transparent 46%),
    rgba(255, 255, 255, 0.92);
}

.button.enroll {
  position: relative;
  min-width: min(100%, 326px);
  min-height: 54px;
  color: white;
  border-color: rgba(126, 247, 230, 0.44);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.16), transparent 42%),
    linear-gradient(135deg, #06142a 0%, #0b2d5c 42%, #00a7b8 100%);
  box-shadow: 0 18px 46px rgba(0, 167, 184, 0.26);
  isolation: isolate;
}

.button.enroll::after {
  content: "";
  position: absolute;
  inset: -5px;
  z-index: -1;
  border-radius: calc(var(--radius) + 5px);
  background: linear-gradient(135deg, rgba(19, 201, 215, 0.5), rgba(126, 247, 230, 0.36), rgba(6, 20, 42, 0.32));
  opacity: 0.5;
  animation: enrollPulse 2.2s ease-in-out infinite;
}

.button:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 50px rgba(4, 17, 35, 0.2);
}

.button-icon,
.detail-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.button-icon {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  color: currentColor;
  background: rgba(255, 255, 255, 0.16);
}

.button.secondary .button-icon {
  background: rgba(19, 201, 215, 0.14);
}

.button-icon svg,
.detail-icon svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.phone-button {
  letter-spacing: 0.01em;
}

.whatsapp-button {
  color: #043f42;
  border-color: rgba(0, 167, 184, 0.4);
  background:
    linear-gradient(135deg, rgba(126, 247, 230, 0.34), rgba(255, 255, 255, 0.92)),
    white;
}

.mail-button {
  color: white;
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.09);
}

.hero-media {
  position: relative;
  min-height: 560px;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--navy);
  box-shadow: var(--shadow);
  transform: translateZ(0);
  transition: transform 520ms cubic-bezier(0.2, 0.85, 0.2, 1), box-shadow 520ms ease;
}

.hero-media::before {
  content: "";
  position: absolute;
  inset: 14px;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: calc(var(--radius) - 2px);
  pointer-events: none;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(6, 20, 42, 0.02), rgba(6, 20, 42, 0.54)),
    linear-gradient(135deg, rgba(19, 201, 215, 0.24), transparent 45%, rgba(244, 123, 32, 0.24));
}

.hero-slider {
  position: absolute;
  inset: 0;
}

.hero-slider .slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.06);
  animation: heroSlide 15s infinite;
  transition: transform 900ms cubic-bezier(0.2, 0.85, 0.2, 1), filter 700ms ease;
}

.hero-slider .slide-two {
  animation-delay: 5s;
}

.hero-slider .slide-three {
  animation-delay: 10s;
}

.hero-media:hover {
  box-shadow: 0 34px 100px rgba(4, 17, 35, 0.28);
  transform: translateY(-8px) scale(1.01);
}

.hero-media:hover .slide {
  filter: saturate(1.08) contrast(1.04);
  transform: scale(1.12);
}

.slider-dots {
  position: absolute;
  left: 20px;
  bottom: 20px;
  z-index: 3;
  display: flex;
  gap: 8px;
}

.slider-dots span {
  width: 34px;
  height: 5px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.48);
  overflow: hidden;
}

.slider-dots span::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--cyan), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  animation: dotFill 15s infinite;
}

.slider-dots span:nth-child(2)::before {
  animation-delay: 5s;
}

.slider-dots span:nth-child(3)::before {
  animation-delay: 10s;
}

.hero-badge {
  position: absolute;
  right: 18px;
  bottom: 18px;
  z-index: 2;
  display: grid;
  gap: 2px;
  min-width: 118px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: var(--radius);
  color: white;
  background: rgba(6, 20, 42, 0.72);
  backdrop-filter: blur(12px);
}

.hero-badge strong {
  font-size: 1.8rem;
  line-height: 1;
}

.hero-badge span {
  color: var(--cyan-soft);
  font-weight: 800;
}

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

.stats article,
.coach,
.contact-card,
.contact-details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 12px 34px rgba(4, 17, 35, 0.055);
}

.stats article {
  position: relative;
  display: grid;
  gap: 8px;
  min-height: 142px;
  padding: 22px;
  overflow: hidden;
  transition: transform 260ms cubic-bezier(0.2, 0.85, 0.2, 1), border-color 260ms ease, box-shadow 260ms ease;
}

.stats article::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.9;
  pointer-events: none;
}

.stat-age {
  border-color: rgba(19, 201, 215, 0.34);
}

.stat-age::before {
  background:
    linear-gradient(135deg, rgba(19, 201, 215, 0.16), transparent 48%),
    linear-gradient(24deg, transparent 0 64%, rgba(19, 201, 215, 0.2) 64% 78%, transparent 78%);
}

.stat-tff {
  grid-template-columns: auto 1fr;
  align-items: center;
  border-color: rgba(223, 38, 56, 0.28);
}

.stat-tff::before {
  background:
    linear-gradient(135deg, rgba(223, 38, 56, 0.12), transparent 46%),
    linear-gradient(24deg, transparent 0 62%, rgba(244, 201, 93, 0.18) 62% 78%, transparent 78%);
}

.stat-tff img {
  position: relative;
  z-index: 1;
  width: 58px;
  height: 58px;
  object-fit: contain;
  filter: drop-shadow(0 10px 16px rgba(4, 17, 35, 0.14));
}

.stat-tff div,
.stats strong,
.stats span {
  position: relative;
  z-index: 1;
}

.stat-location {
  border-color: rgba(244, 123, 32, 0.36);
}

.stat-location::before {
  background:
    linear-gradient(135deg, rgba(244, 123, 32, 0.16), transparent 48%),
    linear-gradient(24deg, transparent 0 62%, rgba(244, 201, 93, 0.22) 62% 78%, transparent 78%);
}

.stats article:hover,
.coach:hover {
  border-color: rgba(19, 201, 215, 0.45);
  box-shadow: 0 26px 68px rgba(4, 17, 35, 0.17);
  transform: translateY(-10px) scale(1.018);
}

.stats strong {
  color: var(--blue);
  font-size: 2rem;
  font-weight: 900;
}

.stats span,
.coach span {
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 800;
}

.split {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 38px;
  padding: 82px 0;
  border-top: 1px solid var(--line);
}

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

.about-title h2 {
  max-width: none;
  width: 100%;
  white-space: nowrap;
}

.split p:last-child {
  margin-bottom: 0;
}

.team-section,
.gallery-section,
.kit-section,
.contact-section {
  padding: 82px 0;
  border-top: 1px solid var(--line);
}

.section-heading {
  display: grid;
  gap: 14px;
  max-width: 820px;
  margin-bottom: 28px;
}

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

.coach {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px 13px;
  min-height: 132px;
  padding: 22px;
  background:
    linear-gradient(135deg, rgba(19, 201, 215, 0.09), transparent 46%),
    rgba(255, 255, 255, 0.9);
  transition: transform 260ms cubic-bezier(0.2, 0.85, 0.2, 1), border-color 260ms ease, box-shadow 260ms ease;
}

.coach-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(19, 201, 215, 0.34);
  border-radius: 50%;
  color: var(--teal);
  background:
    linear-gradient(135deg, rgba(19, 201, 215, 0.16), rgba(244, 201, 93, 0.1)),
    rgba(255, 255, 255, 0.82);
  box-shadow: 0 10px 24px rgba(4, 17, 35, 0.08);
  transition: transform 260ms cubic-bezier(0.2, 0.85, 0.2, 1), color 260ms ease, background 260ms ease;
}

.coach-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.coach-role {
  align-self: center;
}

.coach:hover .coach-icon {
  color: var(--navy);
  background: linear-gradient(135deg, var(--cyan), var(--gold));
  transform: rotate(-6deg) scale(1.12);
}

.coach strong {
  grid-column: 1 / -1;
  align-self: end;
  color: var(--navy);
  font-size: 1.35rem;
  line-height: 1.1;
}

.lead-coach {
  color: white;
  border-color: transparent;
  background:
    linear-gradient(135deg, rgba(19, 201, 215, 0.2), transparent),
    linear-gradient(135deg, var(--navy), var(--blue));
}

.lead-coach span,
.lead-coach strong {
  color: white;
}

.lead-coach .coach-icon {
  color: white;
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.12);
}

.lead-coach:hover .coach-icon {
  color: var(--navy);
}

.wide-photo {
  width: 100%;
  max-height: 560px;
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: var(--shadow);
  border: 4px solid rgba(255, 255, 255, 0.76);
  transition: transform 520ms cubic-bezier(0.2, 0.85, 0.2, 1), filter 520ms ease, box-shadow 520ms ease;
}

.wide-photo:hover {
  filter: saturate(1.08);
  box-shadow: 0 34px 94px rgba(4, 17, 35, 0.26);
  transform: translateY(-9px) scale(1.012);
}

.gallery {
  display: grid;
  grid-template-columns: 1.28fr 0.86fr;
  grid-template-rows: repeat(2, minmax(250px, 1fr));
  gap: 14px;
  min-height: 560px;
}

figure {
  position: relative;
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.72);
  background:
    linear-gradient(135deg, rgba(19, 201, 215, 0.1), rgba(244, 201, 93, 0.08)),
    white;
  box-shadow: 0 12px 34px rgba(4, 17, 35, 0.08);
  transition: transform 300ms cubic-bezier(0.2, 0.85, 0.2, 1), box-shadow 300ms ease, border-color 300ms ease;
}

figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms ease, filter 600ms ease;
}

figure:hover {
  border-color: rgba(19, 201, 215, 0.62);
  box-shadow: 0 28px 74px rgba(4, 17, 35, 0.22);
  transform: translateY(-11px) scale(1.018);
}

figure:hover img {
  filter: saturate(1.1) contrast(1.04);
  transform: scale(1.09);
}

figcaption {
  position: absolute;
  left: 14px;
  bottom: 14px;
  z-index: 2;
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 999px;
  color: white;
  background: rgba(6, 20, 42, 0.62);
  backdrop-filter: blur(10px);
  font-size: 0.86rem;
  font-weight: 900;
}

.gallery figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 48%, rgba(6, 20, 42, 0.52));
  pointer-events: none;
}

.featured-photo {
  grid-column: 1;
  grid-row: span 2;
}

.kit-section {
  overflow: hidden;
}

.kit-marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
  border: 1px solid rgba(19, 201, 215, 0.28);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(19, 201, 215, 0.14), transparent 44%),
    linear-gradient(24deg, transparent 0 66%, rgba(244, 123, 32, 0.14) 66% 78%, transparent 78%),
    rgba(255, 255, 255, 0.7);
  box-shadow: var(--soft-shadow);
}

.kit-marquee::before,
.kit-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: 88px;
  pointer-events: none;
}

.kit-marquee::before {
  left: 0;
  background: linear-gradient(90deg, var(--paper), transparent);
}

.kit-marquee::after {
  right: 0;
  background: linear-gradient(270deg, var(--paper), transparent);
}

.kit-track {
  display: flex;
  width: max-content;
  gap: 14px;
  padding: 16px;
  animation: kitScroll 22s linear infinite;
}

.kit-marquee:hover .kit-track {
  animation-play-state: paused;
}

.kit-card {
  flex: 0 0 clamp(230px, 27vw, 330px);
  height: clamp(250px, 34vw, 390px);
  background: white;
}

.kit-card img {
  object-fit: contain;
  padding: 12px;
}

.contact-section {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 14px;
  padding-bottom: 46px;
}

.contact-card {
  display: grid;
  gap: 22px;
  padding: 34px;
  color: white;
  background:
    linear-gradient(135deg, rgba(19, 201, 215, 0.24), transparent 42%),
    linear-gradient(24deg, transparent 0 62%, rgba(244, 123, 32, 0.22) 62% 78%, transparent 78%),
    var(--navy);
}

.contact-card h2 {
  color: white;
}

.contact-card .button.secondary {
  color: white;
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
}

.contact-card .button.primary {
  color: white;
  border-color: rgba(126, 247, 230, 0.34);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), transparent 42%),
    linear-gradient(135deg, #08305c, #00a7b8);
}

.contact-card .contact-enroll {
  min-width: auto;
}

.contact-card .button-icon {
  background: rgba(255, 255, 255, 0.14);
}

.contact-details {
  display: grid;
  gap: 14px;
  padding: 34px;
  font-style: normal;
  border-color: rgba(19, 201, 215, 0.28);
  background:
    linear-gradient(135deg, rgba(19, 201, 215, 0.12), transparent 48%),
    linear-gradient(24deg, transparent 0 64%, rgba(244, 201, 93, 0.16) 64% 78%, transparent 78%),
    rgba(255, 255, 255, 0.9);
}

.contact-details strong {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 12px;
  color: var(--navy);
  font-size: 1.2rem;
}

.contact-details a {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border: 1px solid rgba(19, 201, 215, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.56);
  overflow-wrap: anywhere;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.contact-details a:hover {
  border-color: rgba(19, 201, 215, 0.42);
  background: rgba(255, 255, 255, 0.88);
  transform: translateX(4px);
}

.detail-icon {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(19, 201, 215, 0.28);
  border-radius: 50%;
  color: var(--teal);
  background:
    linear-gradient(135deg, rgba(19, 201, 215, 0.16), rgba(126, 247, 230, 0.12)),
    white;
  box-shadow: 0 8px 22px rgba(4, 17, 35, 0.07);
}

footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 32px 0 44px;
  color: var(--muted);
  font-weight: 800;
}

footer img {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  object-fit: cover;
}

.js .reveal {
  opacity: 0;
  filter: blur(8px);
  transform: translateY(54px) scale(0.972);
  transition: opacity 760ms ease, transform 760ms cubic-bezier(0.2, 0.85, 0.2, 1), filter 760ms ease;
}

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

@keyframes heroSlide {
  0%,
  28% {
    opacity: 1;
    transform: scale(1.06);
  }

  33%,
  95% {
    opacity: 0;
    transform: scale(1.13);
  }

  100% {
    opacity: 1;
    transform: scale(1.06);
  }
}

@keyframes dotFill {
  0%,
  2% {
    transform: scaleX(0);
  }

  28% {
    transform: scaleX(1);
  }

  33%,
  100% {
    transform: scaleX(0);
  }
}

@keyframes enrollPulse {
  0%,
  100% {
    opacity: 0.42;
    transform: scale(1);
  }

  50% {
    opacity: 0.9;
    transform: scale(1.045);
  }
}

@keyframes kitScroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 7px));
  }
}

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

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

  .js .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 920px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  nav {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  nav a {
    flex: 1 0 auto;
    text-align: center;
    background: rgba(19, 201, 215, 0.12);
  }

  .enroll-strip {
    justify-content: center;
  }

  .hero,
  .split,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .about-title h2 {
    white-space: normal;
  }

  .hero {
    min-height: auto;
    gap: 28px;
    padding-top: 40px;
  }

  .hero-media,
  .hero-slider .slide {
    min-height: 420px;
  }

  .stats,
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    min-height: 0;
  }

  .featured-photo {
    grid-column: auto;
    grid-row: auto;
  }

  .gallery figure {
    min-height: 300px;
  }
}

@media (max-width: 620px) {
  .site-header,
  main,
  footer {
    width: min(100% - 22px, 1180px);
  }

  .brand span {
    font-size: 0.98rem;
  }

  h1 {
    font-size: clamp(2.3rem, 11vw, 3.45rem);
  }

  h2 {
    font-size: clamp(1.72rem, 8vw, 2.45rem);
  }

  .hero-actions,
  .contact-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .button.enroll {
    min-width: 0;
  }

  .hero-media,
  .hero-slider .slide {
    min-height: 360px;
  }

  .stats,
  .team-grid,
  .gallery {
    grid-template-columns: 1fr;
  }

  .stats {
    padding-bottom: 58px;
  }

  .split,
  .team-section,
  .gallery-section,
  .kit-section,
  .contact-section {
    padding: 64px 0;
  }

  .gallery {
    grid-auto-rows: auto;
  }

  .contact-card,
  .contact-details {
    padding: 24px;
  }
}
