@font-face {
  font-family: "Oswald";
  src: url("./assets/oswald.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
}

@font-face {
  font-family: "DM Sans";
  src: url("./assets/dm-sans.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
}

:root {
  --ink: #0a0c00;
  --teal: #063434;
  --teal-soft: #3f6262;
  --lime: #e3ff04;
  --paper: #ffffff;
  --mist: #f6f5f3;
  --mist-2: #f8f8f8;
  --line: rgba(10, 12, 0, 0.22);
  --display: "Oswald", "Arial Narrow", sans-serif;
  --body: "DM Sans", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

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

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

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.menu-open,
body.modal-open {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  border: 0;
  border-radius: 0;
  color: inherit;
  font: inherit;
}

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

button {
  cursor: pointer;
}

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

.skip-link {
  position: fixed;
  left: 20px;
  top: -80px;
  z-index: 1000;
  background: var(--lime);
  color: var(--ink);
  padding: 12px 18px;
  border-radius: 99px;
  transition: top 0.25s ease;
}

.skip-link:focus {
  top: 16px;
}

.cursor-glow {
  position: fixed;
  z-index: 999;
  width: 32px;
  height: 32px;
  pointer-events: none;
  border-radius: 50%;
  background: rgba(116, 211, 255, 0.25);
  filter: blur(7px);
  transform: translate3d(-100px, -100px, 0);
  mix-blend-mode: screen;
  transition: width 0.2s ease, height 0.2s ease, opacity 0.25s ease;
}

.cursor-glow.is-active {
  width: 52px;
  height: 52px;
}

.site-header {
  position: absolute;
  z-index: 100;
  inset: 0 0 auto;
  height: 112px;
  padding: 0 clamp(24px, 4vw, 72px);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  color: var(--paper);
  opacity: 0;
  transform: translateY(-18px);
  animation: header-in 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.1s forwards;
}

.site-header.is-fixed {
  position: fixed;
  height: 82px;
  background: rgba(6, 52, 52, 0.94);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.12);
  animation: none;
  opacity: 1;
  transform: none;
}

@keyframes header-in {
  to { opacity: 1; transform: translateY(0); }
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  width: fit-content;
  font-size: 27px;
  font-weight: 600;
  letter-spacing: -0.04em;
}

.brand-mark {
  display: grid;
  place-items: center;
  color: var(--paper);
  font-family: var(--display);
  font-size: 47px;
  font-style: italic;
  font-weight: 500;
  line-height: 1;
  text-shadow: -2px -2px 0 var(--teal), 2px -2px 0 var(--teal), -2px 2px 0 var(--teal), 2px 2px 0 var(--teal), 0 0 0 3px white;
  transform: rotate(-12deg);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.4vw, 34px);
  font-weight: 550;
}

.site-nav a {
  position: relative;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -7px;
  height: 2px;
  background: var(--lime);
  transition: right 0.32s ease;
}

.site-nav a:hover::after,
.site-nav a[aria-current="page"]::after {
  right: 0;
}

.header-cta {
  justify-self: end;
}

.menu-toggle {
  display: none;
}

.button {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 50px;
  border-radius: 999px;
  font-weight: 650;
  line-height: 1;
}

.button span {
  padding: 0 27px;
}

.button b {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  margin-left: -3px;
  border-radius: 50%;
  background: var(--paper);
  color: var(--teal);
  font-size: 21px;
  font-weight: 500;
  transition: transform 0.3s ease, background 0.3s ease;
}

.button:hover b {
  transform: translate(4px, -4px) rotate(8deg);
}

.button-outline {
  min-height: 52px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  color: var(--paper);
}

.button-lime {
  background: var(--lime);
  color: var(--ink);
}

.button-dark {
  background: var(--teal);
  color: var(--paper);
}

.hero {
  position: relative;
  min-height: 720px;
  height: min(100vh, 940px);
  overflow: hidden;
  background: var(--teal) url("./assets/hero.png") center / cover no-repeat;
  color: var(--paper);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(6, 52, 52, 0.98) 0%, rgba(6, 52, 52, 0.88) 35%, rgba(6, 52, 52, 0.18) 72%, rgba(6, 52, 52, 0.08) 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(6, 52, 52, 0.42), transparent 45%);
  pointer-events: none;
}

.hero-content {
  position: absolute;
  z-index: 2;
  left: clamp(24px, 4vw, 72px);
  top: 28%;
}

.rating {
  display: flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  margin-bottom: 25px;
  padding: 5px 13px;
  border-radius: 99px;
  background: rgba(0, 0, 0, 0.08);
  font-size: 14px;
}

.stars {
  color: #ffc126;
  letter-spacing: 3px;
}

.google-dot {
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  color: #4285f4;
  background: white;
  font-weight: 800;
}

.hero-title,
.section-title,
.image-card h3,
.journey-card h3,
.team-card h3,
.price-card h3,
.price-card h4,
.blog-card h3,
.faq-item button,
.text-link,
.package-button,
.eyebrow {
  font-family: var(--display);
  font-weight: 500;
  text-transform: uppercase;
}

.hero-title {
  margin: 0;
  font-size: clamp(58px, 6.2vw, 88px);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.hero-title span {
  display: block;
  opacity: 0;
  transform: translateY(55px);
  animation: title-in 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero-title span:nth-child(1) { animation-delay: 0.2s; }
.hero-title span:nth-child(2) { animation-delay: 0.28s; }
.hero-title span:nth-child(3) { animation-delay: 0.36s; }

@keyframes title-in {
  to { opacity: 1; transform: translateY(0); }
}

.hero-button {
  margin-top: 34px;
}

.hero-details {
  position: absolute;
  z-index: 2;
  left: clamp(24px, 4vw, 72px);
  bottom: 29px;
  display: flex;
  align-items: center;
  gap: 25px;
  font-size: 16px;
}

.hero-details p { margin: 0; }
.hero-details i { width: 1px; height: 42px; background: rgba(255,255,255,.45); }
.hero-details a:hover { color: var(--lime); }

.bolt-sticker {
  position: absolute;
  z-index: 3;
  color: #fff;
  font-family: var(--display);
  font-size: 112px;
  font-style: italic;
  font-weight: 700;
  line-height: 1;
  text-shadow: -5px -5px 0 #060023, 5px -5px 0 #060023, -5px 5px 0 #060023, 5px 5px 0 #060023, 0 0 16px rgba(117, 255, 239, 0.82);
  transform: rotate(-14deg);
  user-select: none;
}

.hero-bolt {
  left: 48%;
  top: 42%;
  opacity: 0;
  animation: sticker-in 0.75s cubic-bezier(.34,1.56,.64,1) .7s forwards;
}

@keyframes sticker-in {
  from { opacity: 0; transform: scale(.35) rotate(-30deg); }
  to { opacity: 1; transform: scale(1) rotate(-14deg); }
}

.section {
  padding: 105px 0;
}

.section-shell {
  width: min(1240px, calc(100% - 8vw));
  margin: 0 auto;
}

.section-title {
  margin: 0;
  font-size: clamp(44px, 4.2vw, 60px);
  line-height: 1.18;
  letter-spacing: -0.025em;
}

.section-title.centered { text-align: center; }
.section-title.narrow { max-width: 800px; margin-inline: auto; }
.section-title.light { color: var(--paper); }

.reveal,
.reveal-scale {
  opacity: 0;
  will-change: transform, opacity;
}

.reveal { transform: translateY(48px); }
.reveal-scale { transform: scale(.92); }
.reveal.is-visible,
.reveal-scale.is-visible {
  opacity: 1;
  transform: none;
  transition: opacity .8s cubic-bezier(.22,1,.36,1), transform .8s cubic-bezier(.22,1,.36,1);
  transition-delay: var(--delay, 0ms);
}

.services {
  background: var(--paper);
}

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

.image-card .image-wrap,
.team-card > div,
.blog-image {
  overflow: hidden;
  border-radius: 12px;
}

.image-card .image-wrap {
  height: 430px;
  background: #ddd;
}

.image-card img,
.team-card img,
.blog-image img {
  height: 100%;
  object-fit: cover;
  transition: transform .8s cubic-bezier(.22,1,.36,1), filter .5s ease;
}

.image-card:nth-child(1) img { object-position: center; }
.image-card:nth-child(2) img { object-position: center; }
.image-card:nth-child(3) img { object-position: center 25%; }

.image-card:hover img,
.team-card:hover img,
.blog-card:hover img {
  transform: scale(1.06);
}

.image-card h3 {
  margin: 18px 0 0;
  font-size: 28px;
  line-height: 1.2;
}

.trainer-section {
  background: var(--mist-2);
}

.experience-card {
  position: relative;
  width: min(605px, 72vw);
  height: 760px;
  margin: 0 auto 100px;
  overflow: visible;
  border-radius: 28px;
}

.experience-card > img {
  width: 100%;
  height: 100%;
  border-radius: inherit;
  object-fit: cover;
}

.experience-shade {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(0deg, rgba(6,52,52,.98), rgba(6,52,52,.05) 65%);
}

.experience-copy {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 54px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: white;
  text-transform: uppercase;
}

.experience-copy strong {
  color: var(--lime);
  font-family: var(--display);
  font-size: 132px;
  font-weight: 500;
  line-height: .9;
  letter-spacing: -.07em;
}

.experience-copy span {
  margin-top: 18px;
  font-weight: 700;
  letter-spacing: .02em;
}

.experience-bolt {
  right: -25px;
  top: -54px;
}

.trainer-copy-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 10vw;
  align-items: end;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--teal-soft);
  font-size: 14px;
  letter-spacing: .12em;
}

.trainer-copy > p {
  margin: 0 0 30px;
  color: #4d4d4d;
  font-size: 18px;
}

.certifications {
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 40px;
  margin-top: 72px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  font-weight: 600;
}

.certifications ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 40px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.certifications li::before {
  content: "✓";
  margin-right: 10px;
  color: var(--teal);
}

.journey-section {
  background: var(--teal);
  color: var(--paper);
}

.journey-shell {
  padding-top: 105px;
  padding-bottom: 95px;
}

.journey-intro {
  width: min(460px, 100%);
  margin: 23px 0 55px;
  color: rgba(255,255,255,.76);
  font-size: 18px;
}

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

.journey-card {
  display: flex;
  flex-direction: column;
  min-height: 430px;
  padding: 21px;
  border-radius: 12px;
  background: var(--paper);
  color: var(--ink);
  transition: background .35s ease, transform .35s ease;
}

.journey-card:hover {
  background: var(--lime);
  transform: translateY(-8px);
}

.activity-icon {
  display: grid;
  place-items: center;
  width: 89px;
  height: 89px;
  border-radius: 50%;
  background: var(--lime);
  font-family: var(--display);
  font-size: 28px;
  font-weight: 700;
}

.journey-card h3 {
  margin: 28px 0 8px;
  font-size: 28px;
  line-height: 1.2;
}

.journey-card p {
  margin: 0;
  color: #535353;
  font-size: 17px;
}

.text-link {
  width: fit-content;
  margin-top: auto;
  border-bottom: 1px solid;
  font-size: 18px;
  line-height: 1.2;
  transition: letter-spacing .25s ease;
}

.text-link:hover,
.journey-card:hover .text-link { letter-spacing: .05em; }

.video-banner {
  position: relative;
  height: min(48vw, 470px);
  min-height: 300px;
  overflow: hidden;
}

.video-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(6,52,52,.25);
}

.video-banner img {
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
}

.play-button {
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 50%;
  display: grid;
  place-items: center;
  width: 132px;
  height: 132px;
  border-radius: 50%;
  background: var(--lime);
  transform: translate(-50%, -50%);
  font-family: var(--display);
  font-size: 32px;
  transition: transform .35s ease;
}

.play-button:hover { transform: translate(-50%, -50%) scale(1.08); }

.team-section { background: var(--paper); }
.team-layout {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-areas:
    "title a b"
    "c d round";
  gap: 60px 18px;
  align-items: center;
}

.team-title { grid-area: title; max-width: 390px; }
.team-a { grid-area: a; }
.team-b { grid-area: b; }
.team-c { grid-area: c; }
.team-d { grid-area: d; }

.team-card > div { height: 390px; }
.team-card h3 { margin: 18px 0 0; text-align: center; font-size: 28px; line-height: 1.2; }
.team-card p { margin: 3px 0 0; text-align: center; text-transform: uppercase; }

.round-link {
  grid-area: round;
  position: relative;
  display: grid;
  place-items: center;
  justify-self: center;
  width: 132px;
  height: 132px;
  border-radius: 50%;
  background: var(--lime);
  font-family: var(--display);
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  transition: transform .35s ease;
}

.round-link b {
  position: absolute;
  z-index: -1;
  right: -38px;
  top: -38px;
  color: white;
  font-size: 95px;
  text-shadow: -4px -4px 0 #060023, 4px -4px 0 #060023, -4px 4px 0 #060023, 4px 4px 0 #060023;
  transform: rotate(-15deg);
}

.round-link:hover { transform: rotate(-8deg) scale(1.05); }

.pricing-section { background: var(--mist); }

.pricing-list {
  display: grid;
  gap: 24px;
  margin-top: 58px;
}

.price-card {
  position: relative;
  min-height: 548px;
  padding: 50px 32px 32px;
  overflow: visible;
  border-radius: 16px;
  background: var(--paper);
}

.price-card.featured { background: var(--lime); }
.price-card h3 { margin: 0; font-size: 32px; line-height: 1.2; }
.price-rule { height: 1px; margin: 12px 0 16px; background: rgba(10,12,0,.65); }
.price-card h4 { margin: 0; font-size: 28px; line-height: 1.2; }
.price-card h4 span { margin-left: 4px; }
.plan-name { margin: 4px 0 28px; text-transform: uppercase; }
.price-card ul { margin: 0 0 28px; padding: 0; list-style: none; }
.price-card li { margin: 8px 0; }
.price-card li::before { content: "●"; margin-right: 12px; font-size: 12px; }

.package-button {
  position: absolute;
  left: 32px;
  right: 32px;
  bottom: 32px;
  display: grid;
  place-items: center;
  height: 60px;
  border-left: 8px solid var(--lime);
  background: var(--ink);
  color: white;
  font-size: 18px;
  transition: color .3s ease, letter-spacing .3s ease;
}

.featured .package-button { border-left-color: white; }
.package-button:hover { color: var(--lime); letter-spacing: .05em; }
.price-bolt { right: -10px; top: -54px; font-size: 92px; }

.faq-section { background: var(--paper); }
.accordion { margin-top: 46px; }
.faq-item { border-bottom: 1px solid rgba(10,12,0,.15); }
.faq-item button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 24px 20px;
  background: transparent;
  text-align: left;
  font-size: 22px;
}

.faq-item.is-open { background: var(--mist-2); }
.faq-item.is-open button { padding-bottom: 8px; }
.faq-item button b { font-family: var(--body); font-size: 28px; font-weight: 400; }
.faq-answer { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .45s cubic-bezier(.22,1,.36,1); }
.faq-answer > p { overflow: hidden; margin: 0; padding: 0 20px; color: #555; font-size: 17px; }
.faq-item.is-open .faq-answer { grid-template-rows: 1fr; }
.faq-item.is-open .faq-answer > p { padding-bottom: 24px; }

.blog-section { background: var(--mist); }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 50px; }
.blog-card { min-height: 570px; padding: 20px; border-radius: 16px; background: var(--paper); }
.blog-card > a { display: flex; flex-direction: column; height: 100%; }
.blog-image { height: 275px; }
.blog-card h3 { margin: 25px 0 12px; font-size: 24px; line-height: 1.3; }
.blog-card p { margin: 0 0 26px; color: #5a5a5a; font-size: 17px; }
.blog-card .text-link { margin-top: auto; }
.centered-button { margin: 42px auto 0; }

.final-cta-section { background: var(--paper); }
.final-cta {
  width: min(1110px, calc(100% - 8vw));
  margin: 0 auto;
  padding: 78px 40px;
  border-radius: 28px;
  background: var(--lime);
  text-align: center;
}
.final-cta .section-title { max-width: 630px; margin: 0 auto; font-size: clamp(58px, 6vw, 78px); }
.final-cta p { margin: 20px 0 32px; font-size: 17px; }
.final-cta .button { margin: 0 auto; }

.site-footer {
  position: relative;
  overflow: hidden;
  padding: 78px 0 28px;
  background: var(--teal);
  color: var(--paper);
}

.footer-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.2fr .7fr .7fr 1.25fr;
  gap: 65px;
}

.footer-grid h3 { margin: 0 0 20px; text-transform: uppercase; }
.footer-grid > div:not(.footer-brand) a,
.footer-brand > a:not(.brand) { display: block; width: fit-content; margin: 8px 0; color: rgba(255,255,255,.75); }
.footer-grid a:hover { color: var(--lime) !important; }
.footer-label { margin: 22px 0 4px; color: rgba(255,255,255,.7); }
.footer-form label { display: block; margin-bottom: 17px; color: rgba(255,255,255,.68); font-size: 14px; }
.footer-form label span { display: block; }
.footer-form input,
.footer-form textarea { width: 100%; padding: 8px 0; resize: none; border-bottom: 1px solid rgba(255,255,255,.5); background: transparent; color: white; outline: 0; }
.footer-form input:focus,
.footer-form textarea:focus { border-color: var(--lime); }
.footer-form button { width: 100%; padding: 12px; background: var(--lime); color: var(--ink); transition: background .25s ease; }
.footer-form button:hover { background: white; }
.form-status { min-height: 24px; margin: 8px 0 0; color: var(--lime); font-size: 14px; }
.footer-bottom { position: relative; z-index: 2; display: flex; justify-content: space-between; margin-top: 50px; padding-top: 25px; border-top: 1px solid rgba(255,255,255,.28); color: rgba(255,255,255,.7); }
.footer-word { position: absolute; left: 50%; bottom: -75px; color: rgba(255,255,255,.035); font-family: var(--display); font-size: 250px; line-height: 1; transform: translateX(-50%); white-space: nowrap; }

.back-to-top {
  position: fixed;
  z-index: 90;
  left: 20px;
  bottom: 18px;
  display: grid;
  place-items: center;
  width: 41px;
  height: 41px;
  border-radius: 50%;
  background: var(--lime);
  color: var(--ink);
  font-size: 23px;
  opacity: 0;
  transform: translateY(18px);
  pointer-events: none;
  transition: opacity .3s ease, transform .3s ease;
}
.back-to-top.is-visible { opacity: 1; transform: none; pointer-events: auto; }

.video-modal {
  position: fixed;
  z-index: 1000;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(0, 18, 18, .92);
  color: white;
  opacity: 0;
  visibility: hidden;
  transition: opacity .35s ease, visibility .35s ease;
}
.video-modal.is-open { opacity: 1; visibility: visible; }
.video-modal > div { max-width: 650px; text-align: center; }
.video-modal .brand-mark { display: block; margin-bottom: 18px; color: var(--lime); font-size: 90px; }
.video-modal h2 { margin: 0; font: 500 clamp(45px,7vw,80px)/1.05 var(--display); text-transform: uppercase; }
.video-modal p { font-size: 18px; }
.video-modal > button { position: absolute; right: 30px; top: 24px; background: transparent; color: white; font-size: 44px; }

/* Additional static pages */
.subpage-hero {
  position: relative;
  min-height: 700px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--teal);
  color: white;
}
.subpage-hero.has-image { background-position: center; background-size: cover; }
.subpage-hero::before { content: ""; position: absolute; inset: 0; background: rgba(6,52,52,.82); }
.subpage-hero-content { position: relative; z-index: 2; width: min(1240px, calc(100% - 8vw)); margin: 90px auto 0; }
.subpage-hero.centered .subpage-hero-content { text-align: center; }
.subpage-hero h1 { max-width: 880px; margin: 0; font: 500 clamp(64px,8vw,104px)/1.08 var(--display); letter-spacing: -.04em; text-transform: uppercase; }
.subpage-hero.centered h1 { margin-inline: auto; }
.subpage-hero p { max-width: 590px; margin: 20px 0 0; color: rgba(255,255,255,.8); font-size: 18px; }
.subpage-hero.centered p { margin-inline: auto; }
.subpage-section { padding: 105px 0; }
.subpage-section.alt { background: var(--mist); }
.subpage-section.dark { background: var(--teal); color: white; }
.split-feature { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.split-feature.reverse > :first-child { order: 2; }
.feature-image { position: relative; min-height: 600px; overflow: hidden; border-radius: 22px; }
.feature-image img { position: absolute; inset: 0; height: 100%; object-fit: cover; }
.feature-copy > p { color: #555; font-size: 18px; }
.dark .feature-copy > p { color: rgba(255,255,255,.72); }
.service-list,
.goal-grid,
.locations-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; margin-top: 50px; }
.simple-card { min-height: 330px; display: flex; flex-direction: column; padding: 30px; border-radius: 16px; background: white; color: var(--ink); }
.simple-card:nth-child(2) { background: var(--lime); }
.simple-card h3 { margin: 15px 0 10px; font: 500 30px/1.2 var(--display); text-transform: uppercase; }
.simple-card p { color: #555; }
.simple-card .text-link { margin-top: auto; }
.mission-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 70px; align-items: start; }
.mission-copy { font-size: clamp(30px,4vw,55px); line-height: 1.2; }
.mission-images { display: grid; grid-template-columns: 1.2fr .8fr; gap: 18px; }
.mission-images img { height: 450px; object-fit: cover; border-radius: 18px; }
.metric-strip { display: grid; grid-template-columns: repeat(4,1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.metric { padding: 42px 20px; text-align: center; }
.metric + .metric { border-left: 1px solid var(--line); }
.metric strong { display:block; color: var(--teal); font: 500 70px/1 var(--display); }
.metric span { text-transform: uppercase; font-weight: 700; }
.testimonial { max-width: 920px; margin: 0 auto; text-align: center; }
.testimonial blockquote { margin: 0; font: 500 clamp(34px,4.5vw,60px)/1.23 var(--display); text-transform: uppercase; }
.testimonial cite { display: block; margin-top: 25px; font-style: normal; }
.class-showcase { display: grid; grid-template-columns: 1.2fr .8fr; gap: 18px; margin-top: 45px; }
.class-showcase img { height: 650px; object-fit: cover; border-radius: 18px; }
.class-showcase .class-stack { display: grid; gap: 18px; }
.class-showcase .class-stack img { height: 316px; }
.coach-strip { display: grid; grid-auto-flow: column; grid-auto-columns: minmax(230px, 1fr); gap: 18px; overflow-x: auto; padding: 5px 0 20px; scrollbar-color: var(--lime) transparent; }
.coach-card img { height: 330px; object-fit: cover; border-radius: 14px; }
.coach-card h3 { margin: 14px 0 0; font: 500 24px var(--display); text-transform: uppercase; }
.coach-card p { margin: 2px 0; color: #666; }
.schedule { width: 100%; margin-top: 40px; border-collapse: collapse; font-size: 14px; }
.schedule th,
.schedule td { padding: 18px 12px; border: 1px solid rgba(10,12,0,.16); text-align: center; }
.schedule th { background: var(--teal); color: white; text-transform: uppercase; }
.schedule td:nth-child(odd):not(:first-child) { background: rgba(227,255,4,.18); }
.facility-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; margin-top: 45px; background: rgba(10,12,0,.15); border: 1px solid rgba(10,12,0,.15); }
.facility { min-height: 150px; padding: 25px; background: white; }
.facility span { display:block; margin-bottom: 18px; color: var(--teal); font-size: 27px; }
.facility h3 { margin: 0; font: 500 21px var(--display); text-transform: uppercase; }
.filter-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-bottom: 45px; }
.filter-row button { padding: 10px 18px; border-radius: 99px; background: white; border: 1px solid var(--line); }
.filter-row button.is-active { background: var(--lime); border-color: var(--lime); }
.blog-list { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.blog-list .blog-card { transition: opacity .3s ease, transform .3s ease; }
.blog-list .blog-card.is-hidden { display: none; }
.contact-layout { display: grid; grid-template-columns: .9fr 1.1fr; gap: 80px; align-items: start; }
.contact-form { padding: 42px; border-radius: 18px; background: white; }
.contact-form label { display: block; margin: 0 0 20px; }
.contact-form span { display: block; margin-bottom: 5px; font-size: 14px; }
.contact-form input,
.contact-form textarea { width:100%; padding: 13px 0; border-bottom:1px solid var(--line); background: transparent; outline:0; }
.contact-form button { width:100%; margin-top:12px; padding: 16px; background:var(--lime); font-weight:700; }
.location-card { padding: 30px; border-radius: 16px; background: white; }
.location-card h3 { margin: 0 0 10px; font:500 28px var(--display); text-transform:uppercase; }
.legal { max-width: 850px; margin: 0 auto; }
.legal h2 { margin-top: 45px; font: 500 34px var(--display); text-transform:uppercase; }
.error-page { min-height: 100vh; display:grid; place-items:center; padding: 80px 24px; background:var(--teal); color:white; text-align:center; }
.error-page strong { display:block; color:var(--lime); font:500 clamp(150px,25vw,340px)/.8 var(--display); }
.error-page h1 { font:500 clamp(45px,7vw,90px)/1 var(--display); text-transform:uppercase; }

@media (max-width: 1050px) {
  .site-header { grid-template-columns: 1fr auto; }
  .site-nav { position: fixed; inset: 0; z-index: -1; display: flex; flex-direction: column; justify-content: center; gap: 18px; background: var(--teal); font: 500 46px/1.15 var(--display); text-transform: uppercase; opacity: 0; visibility: hidden; transform: translateY(-22px); transition: opacity .35s ease, transform .35s ease, visibility .35s ease; }
  .site-nav.is-open { opacity: 1; visibility: visible; transform:none; }
  .menu-toggle { position: relative; z-index: 3; display: grid; place-items:center; justify-self:end; width:50px; height:50px; border-radius:50%; background:white; }
  .menu-toggle span { position:absolute; width:20px; height:2px; background:var(--teal); transition: transform .3s ease; }
  .menu-toggle span:first-child { transform: translateY(-4px); }
  .menu-toggle span:last-child { transform: translateY(4px); }
  .menu-toggle[aria-expanded="true"] span:first-child { transform: rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:last-child { transform: rotate(-45deg); }
  .header-cta { display:none; }
  .team-layout { grid-template-columns: 1fr 1fr; grid-template-areas:"title title" "a b" "c d" "round round"; }
  .team-title { max-width: none; text-align:center; }
  .footer-grid { grid-template-columns: 1.1fr .8fr .8fr; }
  .footer-form { grid-column: 1 / -1; }
  .service-list,.goal-grid,.locations-grid { grid-template-columns: 1fr 1fr; }
  .facility-grid { grid-template-columns:repeat(2,1fr); }
  .blog-list { grid-template-columns:1fr 1fr; }
}

@media (max-width: 760px) {
  .cursor-glow { display:none; }
  .site-header { height:82px; padding-inline: 20px; }
  .brand { font-size:23px; }
  .brand-mark { font-size:39px; }
  .hero { min-height: 720px; height: 100svh; background-position: 62% center; }
  .hero::before { background: linear-gradient(90deg, rgba(6,52,52,.98), rgba(6,52,52,.64)); }
  .hero-content { left:20px; right:20px; top:25%; }
  .rating { font-size:12px; gap:8px; }
  .hero-title { font-size: clamp(50px, 15vw, 72px); }
  .hero-details { left:20px; right:20px; bottom:22px; gap:16px; font-size:12px; }
  .hero-details i { height:34px; }
  .hero-bolt { left:auto; right:10%; top:53%; font-size:72px; }
  .section { padding:78px 0; }
  .section-shell { width: calc(100% - 40px); }
  .section-title { font-size:clamp(39px,12vw,52px); }
  .service-grid,.journey-grid,.blog-grid { grid-template-columns:1fr; }
  .image-card .image-wrap { height: 400px; }
  .experience-card { width:100%; height:560px; margin-bottom:70px; }
  .experience-copy strong { font-size:100px; }
  .experience-bolt { right:-2px; top:-40px; font-size:80px; }
  .trainer-copy-grid { grid-template-columns:1fr; gap:25px; }
  .certifications { grid-template-columns:1fr; }
  .certifications ul { grid-template-columns:1fr; }
  .journey-shell { padding-top:78px; padding-bottom:70px; }
  .journey-card { min-height:390px; }
  .video-banner { height:360px; }
  .play-button { width:100px; height:100px; }
  .team-layout { grid-template-columns:1fr; grid-template-areas:"title" "a" "b" "c" "d" "round"; gap:42px; }
  .team-card > div { height:420px; }
  .price-card { min-height:540px; padding:35px 20px 22px; }
  .package-button { left:20px; right:20px; bottom:22px; }
  .faq-item button { padding-inline:10px; font-size:19px; }
  .faq-answer > p { padding-inline:10px; }
  .blog-card { min-height:530px; }
  .final-cta { width:calc(100% - 40px); padding:58px 22px; }
  .final-cta .section-title { font-size:49px; }
  .footer-grid { grid-template-columns:1fr 1fr; gap:42px 24px; }
  .footer-brand,.footer-form { grid-column:1 / -1; }
  .footer-bottom { flex-direction:column; gap:8px; }
  .footer-word { font-size:110px; bottom:-32px; }
  .subpage-hero { min-height:620px; }
  .subpage-hero-content { width:calc(100% - 40px); }
  .subpage-section { padding:78px 0; }
  .split-feature,.mission-grid,.contact-layout { grid-template-columns:1fr; gap:42px; }
  .split-feature.reverse > :first-child { order:0; }
  .feature-image { min-height:460px; }
  .service-list,.goal-grid,.locations-grid,.blog-list { grid-template-columns:1fr; }
  .mission-images { grid-template-columns:1fr; }
  .mission-images img { height:330px; }
  .metric-strip { grid-template-columns:1fr 1fr; }
  .metric:nth-child(3) { border-left:0; border-top:1px solid var(--line); }
  .metric:nth-child(4) { border-top:1px solid var(--line); }
  .class-showcase { grid-template-columns:1fr; }
  .class-showcase img { height:450px; }
  .class-showcase .class-stack { grid-template-columns:1fr 1fr; }
  .class-showcase .class-stack img { height:250px; }
  .facility-grid { grid-template-columns:1fr; }
  .schedule { display:block; overflow-x:auto; white-space:nowrap; }
  .contact-form { padding:28px 20px; }
}

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