:root {
  --red: #ed1c24;
  --red-dark: #c90f16;
  --ink: #0a0a0a;
  --soft-ink: #161616;
  --paper: #f4f1ec;
  --white: #fff;
  --gray: #aaa7a2;
  --line: rgba(10, 10, 10, 0.13);
  --display: "Oswald", Impact, sans-serif;
  --body: "Montserrat", Arial, sans-serif;
  --container: min(1180px, calc(100% - 48px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

button,
.button {
  font: inherit;
}

:focus-visible {
  outline: 3px solid #ffbf00;
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  transform: translateY(-160%);
  background: var(--white);
  color: var(--ink);
  font-weight: 700;
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.section {
  padding: 112px 0;
}

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

h1,
h2,
h3 {
  font-family: var(--display);
  line-height: 1;
  text-transform: uppercase;
}

h1 {
  max-width: 820px;
  margin-bottom: 28px;
  color: var(--white);
  font-size: clamp(3.3rem, 6.7vw, 6.3rem);
  font-weight: 700;
  letter-spacing: -0.025em;
}

h2 {
  margin-bottom: 30px;
  font-size: clamp(2.8rem, 5.5vw, 5.3rem);
  font-weight: 700;
  letter-spacing: -0.025em;
}

h1 em,
h2 em {
  color: var(--red);
  font-style: normal;
}

h3 {
  margin-bottom: 16px;
  font-size: 2rem;
  font-weight: 600;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 25px;
  color: var(--white);
  font-family: var(--display);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.eyebrow span {
  display: inline-block;
  width: 30px;
  height: 3px;
  background: var(--red);
}

.eyebrow.dark {
  color: var(--ink);
}

.lead {
  max-width: 570px;
  font-size: 1.14rem;
  line-height: 1.75;
}

.button {
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  padding: 14px 26px;
  border: 2px solid var(--red);
  background: var(--red);
  color: var(--white);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.button:hover {
  border-color: var(--red-dark);
  background: var(--red-dark);
  transform: translateY(-2px);
}

.button-small {
  min-height: 44px;
  padding: 10px 18px;
  font-size: 0.75rem;
}

.button-outline {
  border-color: rgba(255, 255, 255, 0.75);
  background: rgba(0, 0, 0, 0.22);
}

.button-outline:hover {
  border-color: var(--white);
  background: var(--white);
  color: var(--ink);
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  color: var(--white);
  transition:
    background 180ms ease,
    box-shadow 180ms ease;
}

.site-header.scrolled {
  background: rgba(7, 7, 7, 0.96);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(12px);
}

.nav-wrap {
  display: flex;
  width: min(1320px, calc(100% - 48px));
  min-height: 82px;
  align-items: center;
  gap: 30px;
  margin-inline: auto;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-family: var(--display);
  font-size: 1.18rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.brand img {
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.brand b {
  color: var(--red);
  font-weight: inherit;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2vw, 34px);
  margin-left: auto;
}

.site-nav a {
  position: relative;
  padding: 30px 0;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 22px;
  left: 0;
  height: 2px;
  transform: scaleX(0);
  background: var(--red);
  content: "";
  transform-origin: left;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a.active::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 0;
  background: transparent;
  color: var(--white);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: currentColor;
  transition:
    transform 180ms ease,
    opacity 180ms ease;
}

.hero {
  position: relative;
  display: grid;
  min-height: 760px;
  align-items: center;
  overflow: hidden;
  background: var(--ink);
}

.hero-media {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.68) 45%, rgba(0, 0, 0, 0.23) 100%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.45), transparent 45%),
    url("assets/hero-training.jpg");
  background-position: center, center, center 46%;
  background-size: cover;
  transform: scale(1.015);
}

.hero-media::after {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 100% 6px;
  content: "";
  opacity: 0.35;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  padding-top: 115px;
}

.hero-copy {
  max-width: 650px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-points {
  display: flex;
  gap: 34px;
  margin: 40px 0 0;
  padding: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  list-style: none;
  text-transform: uppercase;
}

.hero-points li {
  position: relative;
  padding-left: 15px;
}

.hero-points li::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 5px;
  height: 5px;
  transform: translateY(-50%) rotate(45deg);
  background: var(--red);
  content: "";
}

.scroll-cue {
  position: absolute;
  z-index: 2;
  right: 44px;
  bottom: 34px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.67rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.scroll-cue svg {
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.intro {
  border-bottom: 1px solid var(--line);
}

.split-heading {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: end;
  gap: 80px;
}

.split-heading h2 {
  margin-bottom: 0;
}

.split-heading .lead {
  margin-bottom: 6px;
}

.programs {
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.section-heading {
  margin-bottom: 54px;
}

.section-heading h2 {
  margin-bottom: 0;
}

.section-heading > p:last-child {
  max-width: 600px;
  margin: 24px auto 0;
  color: rgba(255, 255, 255, 0.65);
}

.section-heading.centered {
  text-align: center;
}

.section-heading.centered .eyebrow {
  justify-content: center;
}

.program-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  border-left: 1px solid rgba(255, 255, 255, 0.15);
}

.program-card {
  position: relative;
  display: flex;
  min-height: 590px;
  flex-direction: column;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  overflow: hidden;
  transition:
    background 220ms ease,
    transform 220ms ease;
}

.program-card::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  transform: scaleX(0);
  background: var(--red);
  content: "";
  transform-origin: left;
  transition: transform 220ms ease;
}

.program-card:hover,
.program-card.featured {
  background: var(--soft-ink);
}

.program-card:hover::before,
.program-card.featured::before {
  transform: scaleX(1);
}

.program-number {
  position: absolute;
  z-index: 2;
  top: 20px;
  right: 24px;
  color: rgba(255, 255, 255, 0.75);
  font-family: var(--display);
  font-size: 3rem;
  font-weight: 700;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.8);
}

.program-photo {
  width: 100%;
  height: 245px;
  object-fit: cover;
  filter: saturate(0.78) contrast(1.08);
  transition:
    filter 300ms ease,
    transform 500ms ease;
}

.program-card:hover .program-photo {
  filter: saturate(1) contrast(1.04);
  transform: scale(1.035);
}

.program-card-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex: 1;
  align-items: flex-start;
  flex-direction: column;
  padding: 34px 34px 38px;
  background: inherit;
}

.program-card .program-tag {
  min-height: 0;
  margin-bottom: 14px;
  color: var(--red);
  font-family: var(--display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.program-card-content > p:not(.program-tag) {
  min-height: 82px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.63);
  font-size: 0.91rem;
}

.program-card a {
  margin-top: auto;
  color: var(--white);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.program-card a span {
  display: inline-block;
  margin-left: 7px;
  color: var(--red);
  transition: transform 180ms ease;
}

.program-card a:hover span {
  transform: translateX(4px);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
  align-items: center;
  gap: clamp(55px, 7vw, 100px);
}

.about-visual {
  position: relative;
}

.about-visual::before {
  position: absolute;
  z-index: -1;
  top: -18px;
  right: 18px;
  bottom: 18px;
  left: -18px;
  border: 1px solid rgba(237, 28, 36, 0.5);
  content: "";
}

.about-visual img {
  width: 100%;
  aspect-ratio: 0.92;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.7) contrast(1.08);
}

.about-stamp {
  position: absolute;
  right: -28px;
  bottom: 34px;
  display: grid;
  width: 125px;
  height: 125px;
  place-content: center;
  background: var(--red);
  color: var(--white);
  font-family: var(--display);
  text-align: center;
  transform: rotate(-4deg);
}

.about-stamp strong {
  font-size: 0.8rem;
  letter-spacing: 0.16em;
}

.about-stamp span {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1;
}

.about-copy > p:not(.eyebrow) {
  color: #4f4c48;
}

.value-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 36px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.value-list div {
  display: flex;
  min-height: 78px;
  align-items: center;
  gap: 13px;
  padding: 16px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.value-list b {
  color: var(--red);
  font-family: var(--display);
}

.value-list span {
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.35;
  text-transform: uppercase;
}

.founder {
  overflow: hidden;
  border-top: 1px solid var(--line);
  background: #e9e5df;
}

.founder-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: clamp(60px, 8vw, 120px);
}

.founder-copy > p:not(.eyebrow) {
  max-width: 650px;
  color: #4f4c48;
}

.founder-visual {
  position: relative;
  padding: 36px;
  background:
    linear-gradient(135deg, transparent 68%, rgba(237, 28, 36, 0.22)),
    var(--ink);
}

.founder-visual::before {
  position: absolute;
  top: -18px;
  right: -18px;
  width: 42%;
  height: 42%;
  border-top: 2px solid var(--red);
  border-right: 2px solid var(--red);
  content: "";
}

.founder-visual img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  filter: contrast(1.08);
}

.founder-card {
  position: absolute;
  right: 18px;
  bottom: 194px;
  display: grid;
  min-width: 280px;
  padding: 20px 24px;
  background: var(--red);
  color: var(--white);
}

.founder-card strong {
  font-family: var(--display);
  font-size: 1.4rem;
  text-transform: uppercase;
}

.founder-card span {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.founder-credentials {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.17);
  border-left: 1px solid rgba(255, 255, 255, 0.17);
}

.founder-credentials div {
  display: grid;
  min-height: 78px;
  align-content: center;
  padding: 14px;
  border-right: 1px solid rgba(255, 255, 255, 0.17);
  border-bottom: 1px solid rgba(255, 255, 255, 0.17);
}

.founder-credentials b {
  color: var(--red);
  font-family: var(--display);
  font-size: 1rem;
  text-transform: uppercase;
}

.founder-credentials span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.56rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.coach {
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.coach-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  align-items: center;
  gap: clamp(55px, 9vw, 130px);
}

.coach-photo {
  position: relative;
}

.coach-photo::before {
  position: absolute;
  right: -20px;
  bottom: -20px;
  width: 70%;
  height: 70%;
  border-right: 3px solid var(--red);
  border-bottom: 3px solid var(--red);
  content: "";
}

.coach-photo::after {
  position: absolute;
  z-index: 2;
  top: -38px;
  left: -30px;
  color: rgba(255, 255, 255, 0.04);
  content: "01";
  font-family: var(--display);
  font-size: 11rem;
  font-weight: 700;
  line-height: 1;
}

.coach-photo img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  filter: contrast(1.08);
}

.coach-copy > p:not(.eyebrow) {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.65);
}

.coach-credentials {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 34px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.coach-credentials div {
  display: flex;
  min-height: 100px;
  align-items: flex-start;
  flex-direction: column;
  justify-content: center;
  padding: 16px;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.coach-credentials strong {
  color: var(--red);
  font-family: var(--display);
  font-size: 1.35rem;
  line-height: 1;
  text-transform: uppercase;
}

.coach-credentials span {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.35;
  text-transform: uppercase;
}

.coach-title {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 36px;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.coach-title strong {
  font-family: var(--display);
  font-size: 1.25rem;
  text-transform: uppercase;
}

.coach-title span {
  color: var(--red);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.gallery {
  background: #e9e5df;
}

.gallery-heading {
  display: grid;
  grid-template-columns: 1fr 0.75fr;
  align-items: end;
  gap: 70px;
  margin-bottom: 55px;
}

.gallery-heading h2,
.gallery-heading > p {
  margin-bottom: 0;
}

.gallery-heading > p {
  color: #55514d;
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-flow: dense;
  grid-auto-rows: 210px;
  gap: 12px;
}

.photo-grid figure {
  position: relative;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  background: var(--ink);
}

.photo-grid figure::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.22), transparent 55%);
  content: "";
  pointer-events: none;
}

.photo-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.76) contrast(1.07);
  transition:
    filter 300ms ease,
    transform 500ms ease;
}

.photo-grid figure:hover img {
  filter: saturate(1) contrast(1);
  transform: scale(1.035);
}

.photo-grid .span-2 {
  grid-column: span 2;
}

.photo-grid .row-2 {
  grid-row: span 2;
}

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

.testimonials .section-heading .eyebrow {
  color: var(--ink);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.testimonial-grid blockquote {
  display: flex;
  min-height: 390px;
  flex-direction: column;
  margin: 0;
  padding: 38px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.stars {
  margin-bottom: 28px;
  color: var(--red);
  font-size: 0.9rem;
  letter-spacing: 0.22em;
}

.testimonial-grid blockquote > p {
  color: #393633;
  font-family: var(--display);
  font-size: clamp(1.25rem, 1.8vw, 1.55rem);
  font-weight: 500;
  line-height: 1.5;
}

.testimonial-grid footer {
  display: grid;
  gap: 2px;
  margin-top: auto;
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 700;
  text-transform: uppercase;
}

.testimonial-grid footer span {
  color: #77736e;
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.04em;
}

.first-class {
  background:
    radial-gradient(circle at 85% 20%, rgba(237, 28, 36, 0.12), transparent 28%),
    var(--ink);
  color: var(--white);
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 70px 0 0;
  padding: 0;
  counter-reset: steps;
  list-style: none;
}

.steps li {
  position: relative;
  padding: 0 45px 0 36px;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.steps li:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.step-number {
  display: grid;
  width: 46px;
  height: 46px;
  margin-bottom: 28px;
  place-content: center;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--red);
  font-family: var(--display);
  font-size: 1.1rem;
  font-weight: 700;
}

.steps h3 {
  font-size: 1.65rem;
}

.steps p {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.88rem;
}

.center-action {
  margin-top: 58px;
  text-align: center;
}

.faq {
  border-bottom: 1px solid var(--line);
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  align-items: start;
  gap: clamp(55px, 8vw, 120px);
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  padding: 27px 55px 27px 0;
  font-family: var(--display);
  font-size: 1.2rem;
  font-weight: 600;
  list-style: none;
  cursor: pointer;
  text-transform: uppercase;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::before,
.faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 5px;
  width: 20px;
  height: 2px;
  transform: translateY(-50%);
  background: var(--red);
  content: "";
  transition: transform 180ms ease;
}

.faq-list summary::after {
  transform: translateY(-50%) rotate(90deg);
}

.faq-list details[open] summary::after {
  transform: translateY(-50%) rotate(0);
}

.faq-list details p {
  max-width: 680px;
  padding: 0 55px 24px 0;
  color: #5e5a55;
  font-size: 0.9rem;
}

.schedule-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: center;
  gap: clamp(50px, 8vw, 120px);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
  border-bottom: 2px solid var(--red);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.text-link span {
  color: var(--red);
  font-size: 1.3rem;
}

.schedule-card {
  border-top: 4px solid var(--red);
  background: var(--white);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.schedule-row {
  display: flex;
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 18px 30px;
  border-bottom: 1px solid var(--line);
}

.schedule-row div {
  display: grid;
}

.schedule-row strong {
  font-family: var(--display);
  font-size: 1.12rem;
  text-transform: uppercase;
}

.schedule-row span {
  color: #77736e;
  font-size: 0.7rem;
}

.schedule-row time {
  font-size: 0.8rem;
  font-weight: 600;
  text-align: right;
}

.schedule-row.muted {
  color: #77736e;
}

.trial {
  position: relative;
  overflow: hidden;
  background: var(--red);
  color: var(--white);
}

.trial::before {
  position: absolute;
  top: -130px;
  right: 8%;
  color: rgba(0, 0, 0, 0.08);
  content: "R";
  font-family: var(--display);
  font-size: 33rem;
  font-weight: 700;
  line-height: 1;
}

.trial-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 0.75fr;
  align-items: center;
  gap: 80px;
}

.trial h2 {
  color: var(--white);
}

.trial h2 em {
  color: var(--ink);
}

.trial p:not(.eyebrow) {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.82);
}

.trial .eyebrow span {
  background: var(--ink);
}

.trial-actions {
  display: grid;
  gap: 14px;
}

.button-light {
  display: grid;
  min-height: 82px;
  border-color: var(--white);
  background: var(--white);
  color: var(--ink);
  text-align: left;
}

.button-light span {
  font-size: 0.7rem;
}

.button-light strong {
  font-family: var(--display);
  font-size: 1.55rem;
  letter-spacing: 0.02em;
}

.button-light:hover {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--white);
}

.button-outline-light {
  border-color: rgba(255, 255, 255, 0.7);
  background: transparent;
}

.button-outline-light:hover {
  border-color: var(--ink);
  background: var(--ink);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  align-items: start;
  gap: 90px;
}

.contact-details {
  display: grid;
}

.contact-details a {
  display: grid;
  grid-template-columns: 0.5fr 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 115px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.contact-details a:first-child {
  border-top: 1px solid var(--line);
}

.contact-details small {
  color: #77736e;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-details strong {
  font-family: var(--display);
  font-size: 1.35rem;
  line-height: 1.3;
  text-transform: uppercase;
}

.contact-details span {
  color: var(--red);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
}

.site-footer {
  padding: 72px 0 26px;
  background: var(--ink);
  color: var(--white);
}

.footer-main {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 50px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-main p {
  margin: 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.8rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 25px;
}

.footer-links a {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.footer-links a:hover {
  color: var(--red);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 24px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.68rem;
}

.footer-bottom a:hover {
  color: var(--white);
}

.mobile-cta {
  display: none;
}

.site-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.fighters-hero {
  position: relative;
  display: grid;
  min-height: 760px;
  align-items: center;
  overflow: hidden;
  background: var(--ink);
}

.fighters-hero-media {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(0, 0, 0, 0.94) 0%, rgba(0, 0, 0, 0.72) 48%, rgba(0, 0, 0, 0.26) 100%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.65), transparent 52%),
    url("assets/florida-training-4.jpeg");
  background-position: center, center, 73% 42%;
  background-size: cover;
  filter: saturate(0.72) contrast(1.08);
}

.fighters-hero-media::after {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 100% 6px;
  content: "";
  opacity: 0.35;
}

.fighters-hero-content {
  position: relative;
  z-index: 2;
  padding-top: 105px;
}

.fighters-hero-content h1 {
  max-width: 760px;
}

.fighters-hero-content > p:not(.eyebrow) {
  max-width: 650px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.05rem;
}

.fighters-hero-index {
  position: absolute;
  z-index: 2;
  right: 42px;
  bottom: 35px;
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(255, 255, 255, 0.55);
}

.fighters-hero-index span {
  color: var(--red);
  font-family: var(--display);
  font-size: 2.7rem;
  font-weight: 700;
  line-height: 1;
}

.fighters-hero-index small {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.fight-principles {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  background: #101010;
  color: var(--white);
}

.fight-principles .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.fight-principles .container > div {
  display: flex;
  min-height: 112px;
  align-items: center;
  gap: 14px;
  padding: 24px;
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.fight-principles .container > div:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.fight-principles span {
  color: var(--red);
  font-family: var(--display);
  font-size: 1rem;
  font-weight: 700;
}

.fight-principles strong {
  font-family: var(--display);
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.fighter-roster {
  background:
    radial-gradient(circle at 90% 12%, rgba(237, 28, 36, 0.08), transparent 24%),
    var(--paper);
}

.roster-heading {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: end;
  gap: 80px;
  margin-bottom: 60px;
}

.roster-heading h2,
.roster-intro > p {
  margin-bottom: 0;
}

.roster-intro {
  display: grid;
  gap: 25px;
  padding-bottom: 8px;
}

.roster-intro > p {
  color: #55514d;
}

.roster-status {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 9px;
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.roster-status i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 5px rgba(237, 28, 36, 0.12);
}

.fighter-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.fighter-card {
  min-width: 0;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.fighter-card-art {
  position: relative;
  display: grid;
  height: 350px;
  place-content: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 75% 25%, rgba(237, 28, 36, 0.32), transparent 32%),
    linear-gradient(145deg, #1d1d1d, #050505);
}

.fighter-card:nth-child(2) .fighter-card-art {
  background:
    linear-gradient(125deg, transparent 48%, rgba(237, 28, 36, 0.23) 49%, transparent 72%),
    #0b0b0b;
}

.fighter-card:nth-child(3) .fighter-card-art {
  background:
    radial-gradient(circle at 30% 80%, rgba(237, 28, 36, 0.28), transparent 36%),
    linear-gradient(35deg, #050505, #1b1b1b);
}

.fighter-card-art::after {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 42px 42px;
  content: "";
  mask-image: linear-gradient(180deg, black, transparent);
}

.fighter-card-art > span {
  position: absolute;
  z-index: 2;
  top: 22px;
  right: 25px;
  color: rgba(255, 255, 255, 0.15);
  font-family: var(--display);
  font-size: 4.5rem;
  font-weight: 700;
  line-height: 1;
}

.fighter-card-art img {
  position: relative;
  z-index: 1;
  width: 155px;
  height: 155px;
  object-fit: contain;
  opacity: 0.24;
  filter: grayscale(1);
}

.fighter-card-real .fighter-card-art > .fighter-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
  opacity: 1;
  filter: saturate(0.9) contrast(1.06);
}

.fighter-badge {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 14px 20px;
  background: rgba(237, 28, 36, 0.94);
  color: var(--white);
  font-family: var(--display);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

.fighter-card-body {
  padding: 32px;
}

.fighter-card-body small {
  color: var(--red);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.fighter-card-body h3 {
  min-height: 64px;
  margin: 14px 0 25px;
  font-size: 1.75rem;
}

.fighter-summary {
  margin: -7px 0 25px;
  color: #55514d;
  font-size: 0.78rem;
  line-height: 1.65;
}

.fighter-card-body dl {
  margin: 0;
  border-top: 1px solid var(--line);
}

.fighter-card-body dl > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 49px;
  border-bottom: 1px solid var(--line);
}

.fighter-card-body dt {
  color: #77736e;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.fighter-card-body dd {
  margin: 0;
  font-size: 0.66rem;
  font-weight: 600;
  text-align: right;
}

.fighter-standard {
  background:
    radial-gradient(circle at 80% 20%, rgba(237, 28, 36, 0.11), transparent 28%),
    var(--ink);
  color: var(--white);
}

.fighter-standard-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: clamp(60px, 9vw, 130px);
}

.fighter-standard-visual {
  position: relative;
}

.fighter-standard-visual::before {
  position: absolute;
  top: -18px;
  right: 18px;
  bottom: 18px;
  left: -18px;
  border: 1px solid rgba(237, 28, 36, 0.55);
  content: "";
}

.fighter-standard-visual img {
  position: relative;
  width: 100%;
  aspect-ratio: 0.88;
  object-fit: cover;
  filter: saturate(0.72) contrast(1.08);
}

.fighter-standard-visual span {
  position: absolute;
  right: -30px;
  bottom: 35px;
  padding: 18px 22px;
  background: var(--red);
  color: var(--white);
  font-family: var(--display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.fighter-standard-grid > div:last-child > p:not(.eyebrow) {
  max-width: 670px;
  color: rgba(255, 255, 255, 0.64);
}

.fighter-standard-grid .button {
  margin-top: 18px;
}

@media (max-width: 1020px) {
  .site-nav {
    gap: 16px;
  }

  .nav-cta {
    display: none;
  }

  .hero {
    min-height: 720px;
  }

  .split-heading,
  .about-grid,
  .founder-grid,
  .coach-grid,
  .gallery-heading,
  .faq-grid,
  .schedule-grid,
  .trial-grid,
  .contact-grid {
    gap: 55px;
  }

  .program-card-content {
    padding: 30px 25px 34px;
  }

  .steps li {
    padding: 0 28px;
  }

  .roster-heading,
  .fighter-standard-grid {
    gap: 55px;
  }

  .fighter-card-body {
    padding: 26px 22px;
  }
}

@media (max-width: 800px) {
  :root {
    --container: min(100% - 36px, 680px);
  }

  html {
    scroll-padding-top: 72px;
  }

  .section {
    padding: 82px 0;
  }

  .nav-wrap {
    width: calc(100% - 30px);
    min-height: 72px;
  }

  .brand img {
    width: 50px;
    height: 50px;
  }

  .nav-wrap > .brand {
    position: relative;
    z-index: 2;
  }

  .menu-toggle {
    position: relative;
    z-index: 2;
    display: block;
    margin-left: auto;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .site-nav {
    position: fixed;
    z-index: 1;
    top: 0;
    right: 0;
    bottom: 0;
    display: flex;
    width: 100vw;
    align-items: flex-start;
    flex-direction: column;
    gap: 0;
    padding: 105px 34px 34px;
    transform: translateX(105%);
    background: #080808;
    box-shadow: -20px 0 50px rgba(0, 0, 0, 0.45);
    transition: transform 240ms ease;
  }

  .site-nav.open {
    transform: translateX(0);
  }

  .site-nav a {
    width: 100%;
    padding: 18px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.13);
    font-family: var(--display);
    font-size: 1.5rem;
  }

  .site-nav a::after {
    display: none;
  }

  .hero {
    min-height: 750px;
  }

  .hero-media {
    background-image:
      linear-gradient(90deg, rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.54)),
      linear-gradient(0deg, rgba(0, 0, 0, 0.6), transparent 50%),
      url("assets/hero-training.jpg");
    background-position: center, center, 57% center;
  }

  .hero-content {
    padding-top: 100px;
  }

  .scroll-cue {
    display: none;
  }

  .split-heading,
  .about-grid,
  .founder-grid,
  .coach-grid,
  .gallery-heading,
  .faq-grid,
  .schedule-grid,
  .trial-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

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

  .program-card {
    min-height: 535px;
  }

  .program-card p {
    min-height: 0;
  }

  .about-visual {
    max-width: 560px;
  }

  .about-stamp {
    right: 18px;
  }

  .founder-copy {
    order: 2;
  }

  .founder-visual {
    width: min(100%, 560px);
  }

  .coach-photo {
    width: min(100%, 520px);
  }

  .coach-copy {
    max-width: 680px;
  }

  .gallery-heading {
    align-items: start;
    gap: 25px;
  }

  .photo-grid {
    height: auto;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: none;
    grid-auto-rows: 260px;
  }

  .coach-credentials {
    grid-template-columns: 1fr 1fr;
  }

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

  .testimonial-grid blockquote {
    min-height: 320px;
  }

  .steps {
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: 50px;
  }

  .steps li {
    min-height: 0;
    padding: 30px 20px 30px 80px;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    border-right: 0 !important;
    border-left: 0;
  }

  .steps li:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

  .step-number {
    position: absolute;
    top: 30px;
    left: 12px;
  }

  .trial-actions {
    max-width: 520px;
  }

  .contact-details a {
    grid-template-columns: 0.4fr 1fr;
  }

  .contact-details span {
    display: none;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .fighters-hero {
    min-height: 700px;
  }

  .fighters-hero-media {
    background-image:
      linear-gradient(90deg, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.45)),
      linear-gradient(0deg, rgba(0, 0, 0, 0.6), transparent 50%),
      url("assets/florida-training-4.jpeg");
    background-position: center, center, 67% center;
  }

  .fighters-hero-index {
    display: none;
  }

  .fight-principles .container {
    grid-template-columns: 1fr 1fr;
  }

  .fight-principles .container > div:nth-child(2) {
    border-right: 1px solid rgba(255, 255, 255, 0.14);
  }

  .roster-heading,
  .fighter-standard-grid {
    grid-template-columns: 1fr;
  }

  .roster-heading {
    align-items: start;
    gap: 28px;
  }

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

  .fighter-card {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
  }

  .fighter-card-art {
    height: 100%;
    min-height: 360px;
  }

  .fighter-standard-visual {
    width: min(100%, 560px);
  }
}

@media (max-width: 520px) {
  :root {
    --container: calc(100% - 30px);
  }

  body {
    padding-bottom: 58px;
  }

  .section {
    padding: 68px 0;
  }

  h1 {
    font-size: clamp(2.85rem, 14vw, 4.2rem);
  }

  h2 {
    font-size: clamp(2.55rem, 13vw, 3.7rem);
  }

  .brand span {
    display: none;
  }

  .hero {
    min-height: 720px;
  }

  .hero-media {
    background-color: var(--ink);
    background-image:
      radial-gradient(circle at 88% 22%, rgba(237, 28, 36, 0.3), transparent 31%),
      linear-gradient(145deg, rgba(255, 255, 255, 0.04), transparent 36%),
      linear-gradient(180deg, #101010 0%, #050505 100%);
    background-position: center;
    background-size: cover;
  }

  .hero-content {
    padding-top: 82px;
  }

  .hero-copy {
    font-size: 0.94rem;
  }

  .hero-actions {
    display: grid;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-points {
    flex-direction: column;
    gap: 10px;
    margin-top: 28px;
  }

  .split-heading {
    gap: 30px;
  }

  .program-card {
    min-height: 330px;
  }

  .program-photo {
    height: 220px;
  }

  .program-card-content {
    min-height: 320px;
    padding: 30px 27px 34px;
  }

  .value-list {
    grid-template-columns: 1fr;
  }

  .about-visual::before {
    display: none;
  }

  .founder-visual {
    padding: 20px;
  }

  .founder-card {
    right: 8px;
    bottom: 178px;
    min-width: 240px;
    padding: 16px 18px;
  }

  .coach-title {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .photo-grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-auto-rows: 280px;
  }

  .photo-grid .span-2,
  .photo-grid .row-2 {
    grid-column: auto;
    grid-row: auto;
  }

  .photo-grid .row-2 {
    min-height: 390px;
  }

  .testimonial-grid blockquote {
    min-height: 340px;
    padding: 30px 25px;
  }

  .faq-list summary {
    padding-right: 44px;
    font-size: 1.08rem;
  }

  .schedule-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
    padding: 17px 20px;
  }

  .schedule-row time {
    text-align: left;
  }

  .contact-details a {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .footer-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
  }

  .mobile-cta {
    position: fixed;
    z-index: 90;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    min-height: 58px;
    place-content: center;
    background: var(--red);
    color: var(--white);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
  }

  .fighters-hero {
    min-height: 680px;
  }

  .fighters-hero-media {
    background-color: var(--ink);
    background-image:
      radial-gradient(circle at 88% 22%, rgba(237, 28, 36, 0.3), transparent 31%),
      linear-gradient(145deg, rgba(255, 255, 255, 0.04), transparent 36%),
      linear-gradient(180deg, #101010 0%, #050505 100%);
    background-position: center;
    background-size: cover;
  }

  .fighters-hero-content {
    padding-top: 90px;
  }

  .fighters-hero-content > p:not(.eyebrow) {
    font-size: 0.93rem;
  }

  .fight-principles .container {
    grid-template-columns: 1fr;
  }

  .fight-principles .container > div,
  .fight-principles .container > div:nth-child(2),
  .fight-principles .container > div:last-child {
    min-height: 74px;
    border-right: 1px solid rgba(255, 255, 255, 0.14);
  }

  .fighter-card {
    display: block;
  }

  .fighter-card-art {
    height: 300px;
    min-height: 0;
  }

  .fighter-card-body h3 {
    min-height: 0;
  }

  .fighter-standard-visual::before {
    display: none;
  }

  .fighter-standard-visual span {
    right: 0;
    bottom: 20px;
  }
}

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