@font-face {
  font-family: "Barlow Condensed";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../fonts/barlow-condensed-500.woff2") format("woff2");
}

@font-face {
  font-family: "Barlow Condensed";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../fonts/barlow-condensed-600.woff2") format("woff2");
}

@font-face {
  font-family: "Barlow Condensed";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/barlow-condensed-700.woff2") format("woff2");
}

@font-face {
  font-family: "Barlow Condensed";
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url("../fonts/barlow-condensed-800.woff2") format("woff2");
}

@font-face {
  font-family: "Barlow Condensed";
  font-style: italic;
  font-weight: 600;
  font-display: swap;
  src: url("../fonts/barlow-condensed-italic-600.woff2") format("woff2");
}

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

@font-face {
  font-family: "Roboto Slab";
  font-style: normal;
  font-weight: 700 800;
  font-display: swap;
  src: url("../fonts/roboto-slab-700-800.woff2") format("woff2");
}

:root {
  --ink: #151413;
  --charcoal: #252220;
  --charcoal-soft: #302c29;
  --paper: #f0eadb;
  --paper-bright: #fffaf0;
  --gold: #c99948;
  --gold-light: #e2c47e;
  --rust: #a85e31;
  --mineral: #192637;
  --line-dark: rgba(240, 234, 219, 0.18);
  --line-light: rgba(21, 20, 19, 0.16);
  --display: "Barlow Condensed", "Arial Narrow", sans-serif;
  --brand-serif: "Roboto Slab", Rockwell, Georgia, serif;
  --body: "Manrope", Arial, sans-serif;
  --shell: min(1180px, calc(100vw - 48px));
  --header-height: 88px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  min-width: 320px;
  background: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}

body.layout--headerless {
  --header-height: env(safe-area-inset-top);
}

main {
  background: var(--paper);
}

body::before {
  position: fixed;
  inset: 0;
  z-index: 100;
  pointer-events: none;
  content: "";
  opacity: 0.025;
  background-image:
    repeating-linear-gradient(0deg, transparent 0 3px, #000 4px),
    repeating-linear-gradient(90deg, transparent 0 5px, #fff 6px);
  mix-blend-mode: multiply;
}

::selection {
  color: var(--ink);
  background: var(--gold-light);
}

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

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

button,
input,
textarea {
  font: inherit;
}

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

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

h1,
h2 {
  letter-spacing: -0.035em;
}

h1 em,
h2 em {
  color: var(--gold);
  font-weight: 600;
}

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

.section {
  padding: 120px 0;
}

.eyebrow {
  margin-bottom: 18px;
  color: var(--rust);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow::before {
  display: inline-block;
  width: 28px;
  height: 1px;
  margin: 0 11px 0.2em 0;
  content: "";
  background: currentColor;
  box-shadow: 0 -4px 0 -0.25px currentColor;
}

.skip-link {
  position: fixed;
  top: calc(env(safe-area-inset-top, 0px) + 12px);
  left: 12px;
  z-index: 1000;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  border: 0;
  margin: -1px;
  color: var(--ink);
  background: var(--paper-bright);
  white-space: nowrap;
  clip-path: inset(50%);
}

.skip-link:focus-visible {
  width: auto;
  height: auto;
  padding: 10px 16px;
  overflow: visible;
  margin: 0;
  clip-path: none;
  outline: 2px solid var(--gold-light);
  outline-offset: 3px;
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  border: 0 !important;
  margin: -1px !important;
  white-space: nowrap !important;
  clip-path: inset(50%) !important;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 26px;
  padding: 0 22px;
  border: 1px solid var(--gold);
  color: var(--paper-bright);
  background: var(--ink);
  font-family: var(--display);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  line-height: 1;
  text-transform: uppercase;
  clip-path: polygon(0 0, calc(100% - 9px) 0, 100% 9px, 100% 100%, 9px 100%, 0 calc(100% - 9px));
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.button:hover {
  color: var(--ink);
  background: var(--gold);
  transform: translateY(-2px);
}

.button:focus-visible,
.text-link:focus-visible,
.desktop-nav a:focus-visible,
.site-logo:focus-visible {
  outline: 2px solid var(--gold-light);
  outline-offset: 5px;
}

.button:focus-visible {
  outline: 0;
  filter:
    drop-shadow(0 0 1px var(--ink))
    drop-shadow(0 0 4px var(--gold-light));
}

.button--small {
  min-height: 42px;
  gap: 18px;
  padding-inline: 18px;
  font-size: 0.74rem;
}

.button--light {
  border-color: var(--paper-bright);
  color: var(--ink);
  background: var(--paper-bright);
}

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

.button--disabled {
  cursor: not-allowed;
  opacity: 0.58;
}

.button--disabled:hover {
  color: var(--paper-bright);
  background: var(--ink);
  transform: none;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding-bottom: 7px;
  border-bottom: 1px solid currentColor;
  font-family: var(--display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.text-link span {
  color: var(--gold);
  transition: transform 180ms ease;
}

.text-link:hover span {
  transform: translateX(5px);
}

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

.brand-mark {
  position: relative;
  display: inline-block;
  width: 84px;
  height: 84px;
  flex: 0 0 auto;
  overflow: hidden;
}

.brand-mark img {
  display: block;
  width: 100%;
  height: auto;
}

.brand-mark--symbol img {
  width: 130%;
  max-width: none;
  transform: translate(-11.5%, -0.5%);
}

.brand-mark--full {
  width: 150px;
  height: 150px;
  overflow: visible;
}

.brand-mark--compact {
  width: 50px;
  height: 50px;
}

.site-header {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 50;
  height: var(--header-height);
  border-bottom: 1px solid var(--line-dark);
  color: var(--paper);
}

.site-header__inner {
  display: grid;
  height: 100%;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

.site-logo {
  display: inline-flex;
  align-items: center;
  justify-self: start;
}

.site-logo__image {
  display: block;
  width: 176px;
  height: auto;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 26px;
}

.desktop-nav a {
  position: relative;
  font-family: var(--display);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: -10px;
  left: 0;
  height: 1px;
  content: "";
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.desktop-nav a:hover::after,
.desktop-nav a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

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

.mobile-nav {
  display: none;
}

body.mobile-nav-open {
  overflow: hidden;
}

.home-hero {
  position: relative;
  min-height: 820px;
  overflow: hidden;
  color: var(--paper);
  background:
    radial-gradient(circle at 78% 47%, rgba(201, 153, 72, 0.13), transparent 28%),
    linear-gradient(135deg, #1b1a19 0%, var(--charcoal) 48%, #2d2926 100%);
}

.home-hero::after {
  position: absolute;
  right: -5%;
  bottom: -48%;
  z-index: 0;
  width: 65vw;
  height: 65vw;
  border: 1px solid rgba(201, 153, 72, 0.12);
  border-radius: 50%;
  content: "";
}

.home-hero__media {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  width: min(40vw, 520px);
  overflow: hidden;
  background: #121110;
}

@media (min-width: 981px) {
  .home-hero__media {
    width: min(52vw, 760px);
    -webkit-mask-image: linear-gradient(
      90deg,
      transparent 0%,
      rgba(0, 0, 0, 0.08) 8%,
      rgba(0, 0, 0, 0.38) 24%,
      rgba(0, 0, 0, 0.78) 48%,
      #000 72%,
      #000 100%
    );
    mask-image: linear-gradient(
      90deg,
      transparent 0%,
      rgba(0, 0, 0, 0.08) 8%,
      rgba(0, 0, 0, 0.38) 24%,
      rgba(0, 0, 0, 0.78) 48%,
      #000 72%,
      #000 100%
    );
  }
}

.home-hero__video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.78) saturate(0.82) contrast(1.05);
}

.home-hero__video-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, #1b1a19 0%, rgba(27, 26, 25, 0.98) 44%, rgba(27, 26, 25, 0.78) 67%, rgba(27, 26, 25, 0.22) 100%),
    linear-gradient(180deg, rgba(18, 17, 16, 0.34), transparent 42%, rgba(18, 17, 16, 0.55));
}

.home-hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 740px;
  padding-top: var(--header-height);
  grid-template-columns: minmax(0, 1.08fr) minmax(430px, 0.92fr);
  align-items: center;
  gap: 36px;
}

.home-hero__copy {
  padding: 70px 0 40px;
}

.home-hero h1 {
  max-width: 740px;
  margin-bottom: 28px;
  font-size: clamp(3.9rem, 6.3vw, 6rem);
}

.home-hero h1 span,
.home-hero h1 em {
  display: block;
}

.home-hero__intro {
  max-width: 560px;
  margin-bottom: 28px;
  color: rgba(240, 234, 219, 0.72);
  font-size: 1rem;
}

.home-hero__offer {
  display: flex;
  max-width: 560px;
  margin-bottom: 30px;
  padding: 16px 0;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  align-items: center;
  gap: 20px;
}

.home-hero__offer > strong {
  color: var(--gold-light);
  font-family: var(--brand-serif);
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: -0.07em;
  line-height: 0.85;
}

.home-hero__offer p,
.home-hero__offer b,
.home-hero__offer span {
  display: block;
  margin: 0;
}

.home-hero__offer b {
  color: var(--paper-bright);
  font-family: var(--display);
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.home-hero__offer span {
  margin-top: 4px;
  color: rgba(240, 234, 219, 0.52);
  font-size: 0.66rem;
}

.home-hero__emblem {
  position: relative;
  display: grid;
  width: min(39vw, 480px);
  aspect-ratio: 1;
  place-items: center;
  justify-self: end;
}

.emblem-orbit {
  position: absolute;
  border: 1px solid rgba(201, 153, 72, 0.62);
  border-radius: 50%;
}

.emblem-orbit--outer {
  inset: 2%;
  animation: slow-spin 28s linear infinite;
}

.emblem-orbit--outer::before,
.emblem-orbit--outer::after {
  position: absolute;
  width: 18px;
  height: 18px;
  border: 1px solid var(--gold);
  content: "";
  background: var(--charcoal);
  transform: rotate(45deg);
}

.emblem-orbit--outer::before {
  top: 9%;
  left: 9%;
}

.emblem-orbit--outer::after {
  right: 9%;
  bottom: 9%;
}

.emblem-orbit--inner {
  inset: 13%;
  border-style: double;
  border-width: 5px;
}

.emblem-wordmark {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
}

.emblem-wordmark .brand-mark--full {
  width: min(32vw, 350px);
  height: min(32vw, 350px);
}

.emblem-note {
  position: absolute;
  margin: 0;
  color: rgba(240, 234, 219, 0.45);
  font-family: var(--display);
  font-size: 0.56rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.emblem-note--one {
  left: -8px;
}

.emblem-note--two {
  right: -8px;
  transform: rotate(180deg);
}

.home-hero__ornament {
  position: absolute;
  top: 23%;
  width: 86px;
  height: 1px;
  background: rgba(201, 153, 72, 0.32);
}

.home-hero__ornament::before {
  position: absolute;
  top: -4px;
  width: 9px;
  height: 9px;
  border: 1px solid var(--gold);
  content: "";
  transform: rotate(45deg);
}

.home-hero__ornament--left {
  left: 0;
}

.home-hero__ornament--left::before {
  right: -4px;
}

.home-hero__ornament--right {
  right: 0;
}

.home-hero__ornament--right::before {
  left: -4px;
}

.hero-rail {
  position: relative;
  z-index: 3;
  display: flex;
  height: 80px;
  align-items: center;
  gap: 28px;
  border-top: 1px solid var(--line-dark);
  color: rgba(240, 234, 219, 0.5);
  font-family: var(--display);
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero-rail__line {
  height: 1px;
  flex: 1;
  background: var(--line-dark);
}

.marquee {
  position: relative;
  z-index: 4;
  overflow: hidden;
  padding: 16px 0;
  color: var(--ink);
  background: var(--gold);
  font-family: var(--display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.marquee > div {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 42px;
  white-space: nowrap;
  animation: marquee 24s linear infinite;
}

.marquee i {
  color: var(--paper-bright);
  font-size: 0.5rem;
}

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

.section-heading h2,
.schedule-preview h2,
.final-cta h2 {
  margin: 0;
  font-size: clamp(3.5rem, 7vw, 6.4rem);
}

.section-heading > p {
  max-width: 430px;
  margin: 0 0 7px;
  color: rgba(21, 20, 19, 0.62);
}

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

.class-card {
  position: relative;
  display: flex;
  min-height: 350px;
  padding: 24px 26px;
  border-right: 1px solid var(--line-light);
  flex-direction: column;
  transition: color 220ms ease, background 220ms ease, transform 220ms ease;
}

.class-card::after {
  position: absolute;
  top: 27px;
  right: 27px;
  width: 30px;
  height: 6px;
  content: "";
  opacity: 0.58;
  background:
    linear-gradient(var(--rust), var(--rust)) 0 0 / 100% 1px no-repeat,
    linear-gradient(var(--rust), var(--rust)) 8px 5px / 22px 1px no-repeat;
  transition: opacity 220ms ease, background 220ms ease;
}

.class-card:first-child {
  border-left: 1px solid var(--line-light);
}

.class-card:hover {
  z-index: 2;
  color: var(--paper);
  background: var(--charcoal);
  transform: translateY(-8px);
}

.class-card:hover::after {
  opacity: 0.9;
  background:
    linear-gradient(var(--gold-light), var(--gold-light)) 0 0 / 100% 1px no-repeat,
    linear-gradient(var(--gold-light), var(--gold-light)) 8px 5px / 22px 1px no-repeat;
}

.class-card__number {
  color: var(--rust);
  font-family: var(--brand-serif);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
}

.class-card__body {
  margin-top: auto;
  margin-bottom: 36px;
}

.class-card h3 {
  margin-bottom: 18px;
  font-size: clamp(2.8rem, 4.2vw, 4.5rem);
  line-height: 0.88;
}

.class-card__frequency {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 16px;
  padding: 5px 9px;
  border: 1px solid rgba(168, 94, 49, 0.45);
  color: var(--rust);
  font-family: var(--display);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  line-height: 1;
  text-transform: uppercase;
  transition: color 220ms ease, border-color 220ms ease;
}

.class-card__body > p:last-child {
  margin: 0;
  color: rgba(21, 20, 19, 0.62);
  font-size: 1rem;
  line-height: 1.55;
  transition: color 220ms ease;
}

.class-card:hover .class-card__body > p:last-child {
  color: rgba(240, 234, 219, 0.65);
}

.class-card:hover .class-card__frequency {
  border-color: rgba(226, 196, 126, 0.65);
  color: var(--gold-light);
}

.class-card > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  border-top: 1px solid var(--line-light);
  font-family: var(--display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.class-card > a span {
  color: var(--gold);
}
.class-card--linked {
  color: inherit;
  cursor: pointer;
}

.class-card--linked:focus-visible {
  z-index: 3;
  outline: 3px solid var(--gold);
  outline-offset: -3px;
}

.service-overview-section,
.service-practical-section {
  background: var(--paper);
}

.service-overview-grid {
  display: grid;
  gap: 52px;
}

.service-section-copy {
  max-width: 650px;
}

.service-section-copy h2,
.service-section-heading h2 {
  margin-bottom: 24px;
  font-size: clamp(2.85rem, 12vw, 5.3rem);
  font-style: normal;
  line-height: 0.92;
}

.service-section-copy > p:last-child,
.service-section-heading > p {
  margin-bottom: 0;
  color: rgba(21, 20, 19, 0.68);
  font-size: 1rem;
  line-height: 1.7;
}

.service-detail-grid {
  display: grid;
  margin: 0;
  border-top: 1px solid var(--line-light);
}

.service-detail-grid > div {
  min-width: 0;
  padding: 24px 0;
  border-bottom: 1px solid var(--line-light);
}

.service-detail-grid dt {
  margin-bottom: 8px;
  font-family: var(--display);
  font-size: 1.55rem;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.service-detail-grid dd {
  margin: 0;
  color: rgba(21, 20, 19, 0.64);
  font-size: 0.92rem;
  line-height: 1.6;
}

.service-format-section {
  color: var(--paper);
  background: var(--charcoal);
}

.service-section-heading {
  display: grid;
  margin-bottom: 48px;
  gap: 24px;
}

.service-format-section .service-section-heading h2 {
  color: var(--paper-bright);
}

.service-format-section .service-section-heading > p {
  color: rgba(240, 234, 219, 0.68);
}

.service-step-grid {
  display: grid;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line-dark);
  border-left: 1px solid var(--line-dark);
  list-style: none;
}

.service-step-grid li {
  min-width: 0;
  padding: 26px;
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.service-step-grid li > span {
  display: grid;
  width: 34px;
  height: 34px;
  border: 1px solid var(--gold);
  color: var(--gold-light);
  font-family: var(--brand-serif);
  font-size: 0.72rem;
  place-items: center;
}

.service-step-grid h3 {
  margin: 32px 0 12px;
  font-size: 2rem;
}

.service-step-grid p {
  margin: 0;
  color: rgba(240, 234, 219, 0.68);
  font-size: 0.92rem;
  line-height: 1.65;
}

.service-levels-section {
  background: var(--paper-bright);
}

.service-section-heading--light {
  border-bottom: 1px solid var(--line-light);
  padding-bottom: 48px;
}

.service-level-grid {
  display: grid;
  border-top: 1px solid var(--line-light);
}

.service-level-grid article {
  min-width: 0;
  padding: 34px 0;
  border-bottom: 1px solid var(--line-light);
}

.service-level-grid h3,
.service-practical-grid h3 {
  margin-bottom: 14px;
  font-size: 2.2rem;
}

.service-level-grid article > p:last-child,
.service-practical-grid article > p {
  margin-bottom: 0;
  color: rgba(21, 20, 19, 0.66);
  line-height: 1.7;
}

.service-practical-section .service-section-copy {
  margin-bottom: 48px;
}

.service-practical-grid {
  display: grid;
  border-top: 1px solid var(--line-light);
}

.service-practical-grid article {
  min-width: 0;
  padding: 30px 0;
  border-bottom: 1px solid var(--line-light);
}

.service-practical-grid .text-link {
  margin-top: 24px;
}

.service-final-cta h2 {
  max-width: 900px;
  margin-right: auto;
  margin-left: auto;
  font-size: clamp(3.2rem, 12vw, 6.8rem);
  font-style: normal;
}

.service-final-cta__copy {
  max-width: 680px;
  margin: -18px auto 34px;
  color: rgba(21, 20, 19, 0.72);
  line-height: 1.7;
}

.service-final-cta__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 28px;
}

.service-final-cta .text-link span {
  color: var(--ink);
}

@media (min-width: 641px) {
  .service-detail-grid,
  .service-level-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-detail-grid > div,
  .service-level-grid article {
    padding-right: 28px;
  }

  .service-detail-grid > div:nth-child(even),
  .service-level-grid article:nth-child(even) {
    padding-right: 0;
    padding-left: 28px;
    border-left: 1px solid var(--line-light);
  }

  .service-practical-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .service-practical-grid article {
    padding: 30px 24px;
    border-right: 1px solid var(--line-light);
  }

  .service-practical-grid article:first-child {
    padding-left: 0;
  }

  .service-practical-grid article:last-child {
    padding-right: 0;
    border-right: 0;
  }

  .service-final-cta__actions {
    flex-direction: row;
  }
}

@media (min-width: 981px) {
  .service-overview-grid {
    grid-template-columns: 0.9fr 1.1fr;
    align-items: start;
    gap: 100px;
  }

  .service-section-heading {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: end;
    gap: 100px;
  }

  .service-step-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .service-step-grid li {
    min-height: 250px;
  }
}

.classes-section .section-heading {
  margin-bottom: 48px;
}

.classes-section .section-heading h2 {
  font-size: clamp(4.2rem, 8vw, 7.4rem);
}

.classes-section .section-heading > p {
  max-width: 500px;
  font-size: 1.16rem;
  line-height: 1.55;
}

.classes-section .eyebrow {
  font-size: 0.78rem;
}

.founder-note-section {
  position: relative;
  overflow: hidden;
  color: var(--ink);
  background:
    radial-gradient(circle at 82% 18%, rgba(255, 250, 240, 0.13), transparent 28%),
    var(--gold);
}

.founder-note-section::before {
  position: absolute;
  top: -260px;
  right: -190px;
  width: 620px;
  height: 620px;
  border: 1px solid rgba(21, 20, 19, 0.14);
  border-radius: 50%;
  content: "";
}

.founder-note {
  position: relative;
  display: grid;
  width: 100%;
  grid-template-columns: minmax(320px, 0.34fr) minmax(0, 0.66fr);
}

.founder-note__portrait {
  position: relative;
  min-height: 0;
  margin: clamp(48px, 6vw, 96px) 0 clamp(48px, 6vw, 96px) clamp(24px, 4vw, 72px);
  overflow: hidden;
  border: 1px solid rgba(21, 20, 19, 0.6);
  background: #11100f;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.3);
}

.founder-note__portrait::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 58%, rgba(10, 9, 9, 0.9));
  content: "";
  pointer-events: none;
}

.founder-note__portrait img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
  filter: saturate(0.82) contrast(1.06);
}

.founder-note__portrait figcaption {
  position: absolute;
  right: 30px;
  bottom: 28px;
  left: 30px;
  z-index: 1;
  display: flex;
  flex-direction: column;
  font-family: var(--display);
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.founder-note__portrait figcaption span {
  color: var(--paper-bright);
  font-size: 1.1rem;
  font-weight: 700;
}

.founder-note__portrait figcaption strong {
  margin-top: 6px;
  color: var(--gold-light);
  font-size: 0.66rem;
}

.founder-note__content {
  position: relative;
  padding: clamp(48px, 6vw, 96px);
  background:
    linear-gradient(135deg, rgba(21, 20, 19, 0.07), transparent 42%),
    radial-gradient(circle at 100% 0%, rgba(255, 250, 240, 0.12), transparent 34%);
}

.founder-note__content header {
  max-width: 900px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(21, 20, 19, 0.2);
}

.founder-note__content h2 {
  margin: 0;
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(3.5rem, 5.8vw, 5.8rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 0.88;
  text-transform: uppercase;
}

.founder-note__content h2 em {
  display: block;
  color: var(--ink);
  font-weight: 600;
}

.founder-note__copy {
  max-width: 820px;
  padding-top: 32px;
}

.founder-note__copy p {
  margin: 0;
  color: rgba(21, 20, 19, 0.86);
  font-size: clamp(1.18rem, 1.55vw, 1.4rem);
  font-weight: 600;
  letter-spacing: 0.015em;
  line-height: 1.62;
  text-align: justify;
  text-justify: inter-word;
}

.founder-note__copy p + p {
  margin-top: 28px;
}

.founder-note__cta {
  margin-top: 40px;
}

.trial-section {
  color: var(--gold);
  background:
    radial-gradient(circle at 88% 18%, rgba(201, 153, 72, 0.11), transparent 32%),
    linear-gradient(135deg, #1b1a19 0%, var(--charcoal) 48%, #2d2926 100%);
}

.trial-section__offer {
  max-width: 720px;
}

.trial-section .eyebrow {
  color: var(--gold-light);
}

.trial-section__price {
  display: flex;
  margin: 0 0 20px;
  align-items: baseline;
  gap: 14px;
}

.trial-section__price strong {
  color: var(--gold);
  font-family: var(--brand-serif);
  font-size: clamp(4.6rem, 8vw, 7.2rem);
  font-weight: 800;
  letter-spacing: -0.07em;
  line-height: 0.85;
}

.trial-section__price span {
  font-family: var(--display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.trial-section__offer h2 {
  margin-bottom: 25px;
  color: var(--paper-bright);
  font-size: clamp(3.5rem, 6vw, 5.8rem);
}

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

.trial-section__offer > p:not(.eyebrow, .trial-section__price) {
  max-width: 540px;
  margin-bottom: 32px;
  color: var(--paper-bright);
}

.start-step-grid li > span,
.coach-card > span,
.youth-assurance-grid span {
  color: var(--gold-light);
  font-family: var(--display);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.testimonial-section {
  position: relative;
  overflow: hidden;
  color: var(--paper);
  background:
    radial-gradient(circle at 94% 10%, rgba(201, 153, 72, 0.12), transparent 32%),
    var(--charcoal);
}

.testimonial-section::before {
  position: absolute;
  top: -260px;
  right: -180px;
  width: 560px;
  height: 560px;
  border: 1px solid rgba(201, 153, 72, 0.13);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.testimonial-section__header {
  position: relative;
  z-index: 1;
  display: grid;
  margin-bottom: 52px;
  grid-template-columns: minmax(0, 1.05fr) minmax(260px, 0.62fr);
  align-items: end;
  gap: 80px;
}

.testimonial-section__header .eyebrow {
  margin-bottom: 18px;
}

.testimonial-section__header h2 {
  max-width: 690px;
  margin: 0;
  color: var(--paper-bright);
  font-size: clamp(3.7rem, 6.5vw, 6rem);
  line-height: 0.9;
}

.testimonial-section__header h2 em {
  display: block;
  color: var(--gold);
}

.testimonial-section__header > p {
  max-width: 420px;
  margin: 0 0 7px;
  color: rgba(240, 234, 219, 0.64);
  font-size: 1.16rem;
  line-height: 1.55;
}

.testimonial-video-grid {
  position: relative;
  z-index: 1;
  display: grid;
  max-width: 860px;
  margin: 0 auto;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.testimonial-video-card {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(201, 153, 72, 0.42);
  background: #1a1918;
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.22);
}

.testimonial-video-card__media {
  position: relative;
  aspect-ratio: 9 / 16;
  overflow: hidden;
  background: #090909;
}

.testimonial-video-card__media::after {
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(240, 234, 219, 0.12);
  content: "";
  pointer-events: none;
}

.testimonial-video-card video {
  display: block;
  width: 100%;
  height: 100%;
  background: #090909;
  object-fit: cover;
}

.testimonial-video-card video:focus-visible {
  outline: 3px solid var(--gold-light);
  outline-offset: -5px;
}

.testimonial-video-card figcaption {
  display: flex;
  min-height: 80px;
  padding: 18px 22px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  font-family: var(--display);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.testimonial-video-card figcaption strong {
  color: var(--paper-bright);
  font-size: 1.35rem;
  line-height: 1;
}

.testimonial-video-card figcaption span {
  color: var(--gold-light);
  font-size: 0.62rem;
  font-weight: 700;
  text-align: right;
}

.testimonial-section__footer {
  position: relative;
  z-index: 1;
  display: flex;
  max-width: 860px;
  margin: 42px auto 0;
  padding-top: 28px;
  border-top: 1px solid var(--line-dark);
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.testimonial-section__footer p {
  max-width: 340px;
  margin: 0;
  color: rgba(240, 234, 219, 0.56);
  font-size: 1.16rem;
  line-height: 1.55;
}

.how-portrait {
  position: relative;
  display: grid;
  min-height: 500px;
  overflow: hidden;
  border: 1px solid var(--line-dark);
  background:
    radial-gradient(circle, rgba(201, 153, 72, 0.18), transparent 44%),
    #1a1918;
  place-items: center;
}

.how-portrait::before {
  position: absolute;
  inset: 44px;
  border: 1px solid rgba(201, 153, 72, 0.24);
  border-radius: 50%;
  content: "";
}

.how-portrait .brand-mark {
  position: relative;
  z-index: 2;
  width: min(70%, 290px);
  height: auto;
  opacity: 0.82;
}

.how-portrait > span {
  position: absolute;
  right: 24px;
  bottom: 22px;
  left: 24px;
  z-index: 2;
  color: var(--gold-light);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-align: center;
  text-transform: uppercase;
}

.reviews-hero {
  position: relative;
  overflow: hidden;
  padding: calc(var(--header-height) + env(safe-area-inset-top) + 30px) 0 38px;
  border-bottom: 1px solid rgba(201, 153, 72, 0.32);
  background:
    radial-gradient(circle at 92% 18%, rgba(201, 153, 72, 0.13), transparent 38%),
    var(--charcoal);
  color: var(--paper-bright);
}

.reviews-hero::after {
  position: absolute;
  right: -62px;
  bottom: -118px;
  width: 230px;
  height: 230px;
  border: 1px solid rgba(201, 153, 72, 0.16);
  border-radius: 50%;
  content: "";
}

.reviews-hero__inner {
  position: relative;
  z-index: 1;
}

.reviews-hero .eyebrow {
  margin-bottom: 14px;
  color: var(--gold-light);
}

.reviews-hero h1 {
  max-width: 900px;
  margin: 0;
  color: var(--paper-bright);
  font-size: clamp(3.45rem, 17vw, 5rem);
  line-height: 0.88;
}

.reviews-hero h1 span {
  color: var(--gold);
}

.reviews-hero__rule {
  display: block;
  width: 76px;
  height: 3px;
  margin-top: 24px;
  background: var(--gold);
}

.section.review-wall-section {
  padding-top: 30px;
  background:
    linear-gradient(rgba(201, 153, 72, 0.035) 1px, transparent 1px),
    var(--paper);
  background-size: 100% 36px;
}

.review-grid {
  display: grid;
  gap: 18px;
}

.review-card {
  position: relative;
  display: flex;
  min-height: 0;
  overflow: hidden;
  padding: 26px 22px 24px;
  border: 1px solid rgba(21, 20, 19, 0.16);
  background: rgba(250, 247, 239, 0.94);
  box-shadow: 0 12px 34px rgba(21, 20, 19, 0.07);
  flex-direction: column;
  justify-content: space-between;
}

.review-card::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  background: var(--gold);
  content: "";
}

.review-card__photo {
  display: block;
  margin-top: 0;
  overflow: hidden;
  border: 1px solid rgba(201, 153, 72, 0.42);
  border-radius: 6px;
  background: var(--charcoal);
  box-shadow: 0 8px 22px rgba(21, 20, 19, 0.1);
}

.review-card__photo figure {
  margin: 0;
}

.review-card__photo-frame {
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--charcoal);
}

.review-card__photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 240ms ease;
}

.review-card__photo--portrait img {
  object-position: center 64%;
}

.review-card__photo:hover img {
  transform: scale(1.025);
}

.review-card__photo:focus-visible,
.review-source-note a:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}

.review-card__stars {
  color: var(--gold);
  font-size: 1.05rem;
  letter-spacing: 0.18em;
  line-height: 1;
}

.review-card blockquote {
  margin: 30px 0;
  color: var(--ink);
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.65;
  white-space: pre-line;
}

.review-card--text-only blockquote {
  margin-top: 24px;
}

.review-card footer {
  display: flex;
  padding-top: 20px;
  border-top: 1px solid var(--line-light);
  flex-direction: column;
  gap: 3px;
  font-family: var(--display);
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.review-card footer strong {
  font-size: 1.5rem;
  line-height: 1;
}

.review-source-note {
  max-width: 660px;
  margin: 34px 0 0;
  color: rgba(21, 20, 19, 0.58);
  font-size: 0.78rem;
  line-height: 1.65;
}

.review-source-note a {
  padding-bottom: 2px;
  border-bottom: 1px solid currentColor;
  color: var(--ink);
  font-weight: 700;
}

.review-source-note a span {
  color: var(--gold);
}

@media (min-width: 720px) {
  .reviews-hero {
    padding-top: calc(var(--header-height) + env(safe-area-inset-top) + 54px);
    padding-bottom: 58px;
  }

  .reviews-hero h1 {
    font-size: clamp(5rem, 8.5vw, 7.5rem);
  }

  .section.review-wall-section {
    padding-top: 54px;
  }

  .review-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
  }

  .review-card {
    min-height: 360px;
    padding: 38px 36px;
  }

  .review-card__photo {
    margin-top: 30px;
  }

  .review-card--with-photo {
    display: grid;
    min-height: 0;
    grid-column: 1 / -1;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    grid-template-rows: auto 1fr;
    column-gap: 48px;
    justify-content: normal;
  }

  .review-card--with-photo .review-card__photo {
    margin: 0;
    grid-column: 1;
    grid-row: 1 / 3;
  }

  .review-card--with-photo blockquote {
    margin: 0 0 34px;
    grid-column: 2;
    grid-row: 1;
  }

  .review-card--with-photo footer {
    align-self: end;
    grid-column: 2;
    grid-row: 2;
  }

}

.why-section {
  background: var(--paper-bright);
}

.why-section__inner {
  max-width: 1060px;
}

.why-section h2,
.how-section h2 {
  max-width: 850px;
  margin-bottom: 54px;
  font-size: clamp(4rem, 8vw, 7.2rem);
}

.why-section__copy {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 70px;
}

.why-section__copy p {
  margin: 0;
  color: rgba(21, 20, 19, 0.68);
}

.why-section__bottom-line {
  display: grid;
  margin-top: 70px;
  padding: 34px 38px;
  border-left: 4px solid var(--rust);
  color: var(--paper);
  background: var(--charcoal);
  grid-template-columns: 170px 1fr;
  align-items: center;
  gap: 35px;
}

.why-section__bottom-line strong {
  color: var(--gold-light);
  font-family: var(--display);
  font-size: 1.35rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.why-section__bottom-line p {
  margin: 0;
  color: rgba(240, 234, 219, 0.74);
}

.how-section {
  color: var(--paper);
  background: #121110;
}

.how-section__grid {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  align-items: center;
  gap: 100px;
}

.how-section h2 {
  margin-bottom: 38px;
}

.how-section__copy > p:not(.eyebrow, .how-section__signoff) {
  max-width: 720px;
  color: rgba(240, 234, 219, 0.68);
}

.how-section__signoff {
  display: flex;
  margin-top: 40px;
  color: var(--gold-light);
  font-family: var(--display);
  font-size: 1rem;
  letter-spacing: 0.08em;
  flex-direction: column;
  text-transform: uppercase;
}

.how-section__signoff strong {
  margin-top: 6px;
  color: var(--paper-bright);
  font-size: 1.8rem;
}

.coaches-section {
  background: var(--paper-bright);
}

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

.coach-card {
  padding: 34px 30px;
  border-right: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.coach-card .eyebrow {
  min-height: 34px;
  margin-top: 55px;
}

.coach-card h3 {
  min-height: 104px;
  margin-bottom: 22px;
  font-size: clamp(2.4rem, 3.5vw, 3.5rem);
}

.coach-card > strong {
  display: block;
  min-height: 52px;
  color: var(--rust);
  font-family: var(--display);
  font-size: 1rem;
  text-transform: uppercase;
}

.coach-card ul {
  display: grid;
  margin: 26px 0 0;
  padding: 24px 0 0;
  border-top: 1px solid var(--line-light);
  gap: 10px;
  color: rgba(21, 20, 19, 0.62);
  font-size: 0.7rem;
  list-style: none;
}

.coach-card li::before {
  margin-right: 9px;
  color: var(--gold);
  content: "◆";
  font-size: 0.36rem;
}

.coach-intro-section {
  padding-top: clamp(52px, 7vw, 82px);
  color: var(--paper);
  background: var(--charcoal);
}

.coaches-page .page-hero {
  min-height: 0;
}

.coaches-page .coach-intro-section {
  background: transparent;
}

.coaches-page .page-hero__crest {
  top: 100px;
  bottom: auto;
}

.coach-intro {
  position: relative;
  z-index: 2;
  border-top: 1px solid var(--line-dark);
}

.coaching-philosophy h2 {
  margin: 0;
  font-size: clamp(3.8rem, 6.2vw, 6.4rem);
}

.coach-intro__copy {
  display: grid;
  max-width: 1040px;
  padding-top: 30px;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: end;
  column-gap: clamp(44px, 8vw, 100px);
}

.coach-intro__copy > p:first-child {
  grid-row: span 2;
  align-self: start;
  max-width: 440px;
  margin-bottom: 0;
  color: var(--paper-bright);
  font-family: var(--display);
  font-size: clamp(2.4rem, 4.4vw, 4.6rem);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 0.88;
  text-transform: uppercase;
}

.coach-intro__copy > p:nth-child(2) {
  grid-column: 2;
  max-width: 650px;
  margin: 0 0 30px;
  color: rgba(240, 234, 219, 0.64);
}

.coach-intro__copy .button-row {
  grid-column: 2;
}

.coaches-page .page-hero__intro,
.coaches-page .coach-intro__copy > p:nth-child(2),
.coaches-page .coach-profile__intro,
.coaches-page .coach-profile__approach,
.coaches-page .coaching-philosophy__intro > p:last-child {
  font-size: clamp(1.15rem, 1.15vw + 0.55rem, 1.25rem);
  line-height: 1.7;
}

.coaches-page .coach-profile__experience li {
  font-size: clamp(1rem, 1vw + 0.58rem, 1.06rem);
  line-height: 1.6;
}

.coach-profiles-section {
  background: var(--paper);
}

.coach-profile {
  display: grid;
  padding: 104px 0;
  border-top: 1px solid var(--line-light);
  grid-template-columns: minmax(0, 0.93fr) minmax(0, 1.07fr);
  align-items: center;
  gap: 96px;
}

.coach-profile:first-child {
  border-top: 0;
}

.coach-profile__media {
  position: relative;
  min-width: 0;
  margin: 0;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--charcoal);
  box-shadow: 18px 18px 0 rgba(201, 153, 72, 0.16);
}

.coach-profile__media::after {
  position: absolute;
  inset: 14px;
  pointer-events: none;
  border: 1px solid rgba(240, 234, 219, 0.26);
  content: "";
}

.coach-profile__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.82) contrast(1.05);
  transition: filter 360ms ease, transform 700ms cubic-bezier(0.2, 0.75, 0.25, 1);
}

.coach-profile__media:hover img {
  filter: saturate(1) contrast(1.02);
  transform: scale(1.025);
}

.coach-profile__media::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  content: "";
  background: linear-gradient(180deg, transparent 52%, rgba(18, 17, 16, 0.78));
}

.coach-profile__number {
  position: absolute;
  top: 28px;
  left: 30px;
  z-index: 2;
  color: var(--paper-bright);
  font-family: var(--display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.coach-profile__media figcaption {
  position: absolute;
  right: 38px;
  bottom: 34px;
  left: 38px;
  z-index: 2;
  display: flex;
  color: var(--paper-bright);
  flex-direction: column;
}

.coach-profile__media figcaption span {
  margin-bottom: 8px;
  color: var(--gold-light);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.coach-profile__media figcaption strong {
  max-width: 340px;
  font-family: var(--display);
  font-size: clamp(1.55rem, 2.5vw, 2.25rem);
  line-height: 1;
  text-transform: uppercase;
}

.coach-profile--reverse .coach-profile__media {
  order: 2;
}

.coach-profile--reverse .coach-profile__body {
  order: 1;
}

.coach-profile__role {
  margin-bottom: 18px;
  color: var(--rust);
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1.4;
  text-transform: uppercase;
}

.coach-profile__body h2 {
  max-width: 610px;
  margin-bottom: 30px;
  font-size: clamp(4rem, 6.1vw, 6.5rem);
}

.coach-profile__intro {
  max-width: 650px;
  margin-bottom: 34px;
  color: rgba(21, 20, 19, 0.68);
  font-size: 0.94rem;
}

.coach-profile__experience {
  margin-bottom: 32px;
  padding: 27px 0 28px;
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.coach-profile__experience .eyebrow {
  margin-bottom: 20px;
}

.coach-profile__experience ul {
  display: grid;
  margin: 0;
  padding: 0;
  gap: 12px;
  list-style: none;
}

.coach-profile__experience li {
  position: relative;
  padding-left: 21px;
  color: rgba(21, 20, 19, 0.72);
  font-size: 0.76rem;
  line-height: 1.5;
}

.coach-profile__experience li::before {
  position: absolute;
  top: 0.55em;
  left: 0;
  color: var(--gold);
  content: "◆";
  font-size: 0.42rem;
}

.coach-profile__approach {
  max-width: 650px;
  margin-bottom: 31px;
  color: rgba(21, 20, 19, 0.67);
  font-size: 0.8rem;
}

.coaching-philosophy {
  position: relative;
  overflow: hidden;
  color: var(--paper);
  background:
    radial-gradient(circle at 12% 76%, rgba(201, 153, 72, 0.13), transparent 26%),
    var(--charcoal);
}

.coaching-philosophy::after {
  position: absolute;
  right: -230px;
  bottom: -350px;
  width: 650px;
  height: 650px;
  border: 1px solid rgba(201, 153, 72, 0.16);
  border-radius: 50%;
  content: "";
}

.coaching-philosophy__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  align-items: start;
  gap: 100px;
}

.coaching-philosophy__intro > p:last-child {
  max-width: 330px;
  margin: 34px 0 0;
  color: rgba(240, 234, 219, 0.58);
}

.coaching-principles {
  display: grid;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line-dark);
  grid-template-columns: repeat(2, 1fr);
  list-style: none;
}

.coaching-principles li {
  display: flex;
  min-height: 210px;
  padding: 26px 28px;
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  flex-direction: column;
  justify-content: space-between;
}

.coaching-principles li:nth-child(odd) {
  border-left: 1px solid var(--line-dark);
}

.coaching-principles span {
  color: var(--gold);
  font-family: var(--display);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.15em;
}

.coaching-principles strong {
  max-width: 240px;
  font-family: var(--display);
  font-size: clamp(1.65rem, 2.4vw, 2.3rem);
  line-height: 1;
  text-transform: uppercase;
}

.coach-cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
}

.coach-cta-actions .text-link {
  color: var(--paper-bright);
}

.schedule-preview {
  color: var(--paper);
  background: var(--charcoal);
}

.schedule-preview__grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 100px;
}

.schedule-preview__copy {
  align-self: center;
}

.schedule-preview__copy > p:not(.eyebrow) {
  max-width: 430px;
  margin: 26px 0 36px;
  color: rgba(240, 234, 219, 0.62);
}

.schedule-preview__list {
  border-top: 1px solid var(--line-dark);
}

.schedule-promises {
  border-top: 1px solid var(--line-dark);
}

.schedule-promises > div {
  display: grid;
  min-height: 120px;
  padding: 25px 8px;
  border-bottom: 1px solid var(--line-dark);
  grid-template-columns: 170px 1fr;
  align-items: center;
  gap: 30px;
}

.schedule-promises strong {
  color: var(--gold-light);
  font-family: var(--display);
  font-size: 1.55rem;
  text-transform: uppercase;
}

.schedule-promises p {
  margin: 0;
  color: rgba(240, 234, 219, 0.58);
  font-size: 0.78rem;
}

.preview-day {
  display: grid;
  min-height: 120px;
  padding: 22px 8px;
  border-bottom: 1px solid var(--line-dark);
  grid-template-columns: 70px 1fr auto;
  align-items: center;
  gap: 22px;
  transition: padding 180ms ease, background 180ms ease;
}

.preview-day:hover {
  padding-inline: 20px;
  background: rgba(255, 255, 255, 0.035);
}

.preview-day > span {
  color: var(--gold);
  font-family: var(--display);
  font-size: 1.7rem;
  font-weight: 700;
  text-transform: uppercase;
}

.preview-day strong,
.preview-day small {
  display: block;
}

.preview-day strong {
  font-family: var(--display);
  font-size: 1.28rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.preview-day small {
  margin-top: 6px;
  color: rgba(240, 234, 219, 0.48);
  font-size: 0.7rem;
}

.preview-day i {
  color: var(--gold);
  font-style: normal;
}

.draft-note {
  margin: 18px 0 0;
  color: rgba(240, 234, 219, 0.38);
  font-size: 0.67rem;
}

.ethos-section {
  position: relative;
  overflow: hidden;
}

.ethos-section__inner {
  display: grid;
  grid-template-columns: 160px 1.15fr 0.55fr;
  align-items: center;
  gap: 60px;
}

.ethos-mark {
  display: grid;
  width: 140px;
  height: 140px;
  border: 1px solid var(--line-light);
  background: var(--charcoal);
  place-items: center;
  transform: rotate(45deg);
}

.ethos-mark .brand-mark {
  transform: rotate(-45deg);
}

.ethos-section blockquote {
  margin-bottom: 0;
  font-family: var(--display);
  font-size: clamp(2.9rem, 5vw, 5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 0.96;
  text-transform: uppercase;
}

.ethos-section__inner > p {
  margin: 0;
  color: rgba(21, 20, 19, 0.58);
  font-size: 0.86rem;
}

.final-cta {
  position: relative;
  overflow: hidden;
  color: var(--ink);
  background: var(--gold);
}

.final-cta::before,
.final-cta::after {
  position: absolute;
  border: 1px solid rgba(21, 20, 19, 0.18);
  border-radius: 50%;
  content: "";
}

.final-cta::before {
  top: -330px;
  left: -170px;
  width: 540px;
  height: 540px;
}

.final-cta::after {
  right: -150px;
  bottom: -360px;
  width: 620px;
  height: 620px;
}

.final-cta__inner {
  position: relative;
  z-index: 2;
  text-align: center;
}

.final-cta .eyebrow,
.final-cta h2 em {
  color: var(--ink);
}

.final-cta--trial {
  color: var(--ink);
  background: var(--gold);
}

.final-cta--trial::before,
.final-cta--trial::after {
  border-color: rgba(21, 20, 19, 0.18);
}

.final-cta--trial .eyebrow,
.final-cta--trial h2 em {
  color: var(--ink);
}

.final-cta .eyebrow,
.membership-footnote .eyebrow,
.team-creed .eyebrow {
  text-align: center;
}

.final-cta h2 {
  margin-bottom: 42px;
}

.page-hero {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  color: var(--paper);
  background:
    radial-gradient(circle at 80% 40%, rgba(201, 153, 72, 0.12), transparent 28%),
    var(--charcoal);
}

.page-hero__inner {
  position: relative;
  z-index: 2;
  padding-top: 205px;
  padding-bottom: 90px;
}

.page-hero h1 {
  max-width: 860px;
  margin-bottom: 28px;
  font-size: clamp(5rem, 10vw, 9.5rem);
}

.page-hero__intro {
  max-width: 600px;
  margin: 0;
  color: var(--paper-bright);
}

.page-hero__crest {
  position: absolute;
  z-index: 1;
  right: 1vw;
  bottom: -30%;
  display: grid;
  width: min(54vw, 680px);
  aspect-ratio: 1;
  isolation: isolate;
  pointer-events: none;
  place-items: center;
}

.page-hero__crest::before,
.page-hero__crest::after {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  content: "";
}

.page-hero__crest::before {
  inset: -5%;
  background: radial-gradient(
    circle,
    rgba(226, 196, 126, 0.26) 0%,
    rgba(201, 153, 72, 0.14) 46%,
    transparent 84%
  );
  filter: blur(64px);
  transform: translateY(-8%) scale(1.38);
}

.page-hero__crest::after {
  inset: 12%;
  border: 1px solid rgba(201, 153, 72, 0.18);
  box-shadow: 0 0 72px rgba(201, 153, 72, 0.2);
}

.page-hero__crest img {
  display: block;
  width: 100%;
  height: 100%;
  opacity: 0.15;
  object-fit: contain;
}

.privacy-policy-section {
  background: var(--paper);
}

.privacy-policy-content {
  max-width: 860px;
  margin-inline: auto;
  color: rgba(21, 20, 19, 0.78);
}

.privacy-policy-content .privacy-updated {
  margin-bottom: 24px;
  color: var(--rust);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.privacy-policy-content .privacy-lead {
  max-width: 760px;
  margin-bottom: 42px;
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.04;
}

.privacy-summary {
  margin-bottom: 64px;
  padding: 26px 28px;
  border-left: 4px solid var(--rust);
  background: rgba(168, 94, 49, 0.08);
}

.privacy-summary p {
  margin: 0;
  color: var(--ink);
}

.privacy-policy-content h2 {
  margin: 64px 0 20px;
  color: var(--ink);
  font-size: clamp(2.7rem, 6vw, 4.25rem);
}

.privacy-policy-content h2:first-of-type {
  margin-top: 0;
}

.privacy-policy-content h3 {
  margin: 38px 0 14px;
  color: var(--ink);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
}

.privacy-policy-content p,
.privacy-policy-content li {
  font-size: 1rem;
  line-height: 1.78;
}

.privacy-policy-content p {
  margin-bottom: 20px;
}

.privacy-policy-content ul,
.privacy-policy-content ol {
  padding-left: 1.35rem;
  margin: 0 0 26px;
}

.privacy-policy-content li {
  padding-left: 0.35rem;
  margin-bottom: 10px;
}

.privacy-policy-content a,
.privacy-policy-content button[data-consent-settings],
.privacy-policy-content button[data-consent-open] {
  border: 0;
  border-bottom: 1px solid currentColor;
  padding: 0;
  color: var(--rust);
  background: transparent;
  font: inherit;
  font-weight: 700;
  text-align: left;
  text-decoration: none;
  cursor: pointer;
}

.privacy-policy-content a:hover,
.privacy-policy-content button[data-consent-settings]:hover,
.privacy-policy-content button[data-consent-open]:hover {
  color: var(--ink);
}

.privacy-policy-content a:focus-visible,
.privacy-policy-content button[data-consent-settings]:focus-visible,
.privacy-policy-content button[data-consent-open]:focus-visible {
  border-bottom-color: transparent;
  outline: 2px solid var(--rust);
  outline-offset: 4px;
}

.editorial-notice {
  display: grid;
  margin-bottom: 48px;
  padding: 18px 22px;
  border: 1px solid rgba(168, 94, 49, 0.32);
  background: rgba(168, 94, 49, 0.07);
  grid-template-columns: 160px 1fr;
  align-items: center;
  gap: 24px;
}

.editorial-notice span {
  color: var(--rust);
  font-family: var(--display);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.editorial-notice p {
  margin: 0;
  color: rgba(21, 20, 19, 0.62);
  font-size: 0.76rem;
}

.timetable-section {
  padding-bottom: 80px;
}

.live-calendar-heading {
  display: flex;
  margin-bottom: 42px;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
}

.live-calendar-heading h2 {
  margin: 0;
  font-size: clamp(3.5rem, 7vw, 6rem);
}

.live-calendar {
  overflow: hidden;
  border: 1px solid var(--line-light);
  background: var(--paper-bright);
}

.live-calendar iframe {
  display: block;
  width: 100%;
  min-height: 920px;
  border: 0;
}

.timetable-explorer {
  display: grid;
  grid-template-columns: 280px 1fr;
  border: 1px solid var(--line-light);
}

.day-tabs {
  display: flex;
  border-right: 1px solid var(--line-light);
  flex-direction: column;
}

.day-tabs button {
  display: flex;
  min-height: 82px;
  padding: 18px 22px;
  border: 0;
  border-bottom: 1px solid var(--line-light);
  color: var(--ink);
  background: transparent;
  cursor: pointer;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  transition: color 180ms ease, background 180ms ease;
}

.day-tabs button:last-child {
  border-bottom: 0;
}

.day-tabs button:hover,
.day-tabs button.is-active {
  color: var(--paper);
  background: var(--charcoal);
}

.day-tabs button span {
  font-family: var(--display);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.day-tabs button small {
  color: var(--rust);
  font-size: 0.6rem;
}

.day-tabs button.is-active small {
  color: var(--gold);
}

.day-schedule {
  padding: 54px;
}

.day-schedule__heading {
  display: flex;
  margin-bottom: 52px;
  align-items: end;
  justify-content: space-between;
}

.day-schedule__heading .eyebrow {
  margin: 0;
}

.day-schedule h2 {
  margin: 0;
  font-size: clamp(3.5rem, 7vw, 6rem);
}

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

.session-row {
  display: grid;
  min-height: 112px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line-light);
  grid-template-columns: 44px 120px 1fr auto;
  align-items: center;
  gap: 24px;
}

.session-row__index {
  color: rgba(21, 20, 19, 0.34);
  font-family: var(--display);
  font-size: 0.64rem;
}

.session-row time {
  color: var(--rust);
  font-family: var(--display);
  font-size: 1.1rem;
  font-weight: 700;
}

.session-row h3 {
  margin: 0 0 6px;
  font-size: 1.5rem;
  letter-spacing: 0.01em;
}

.session-row p {
  margin: 0;
  color: rgba(21, 20, 19, 0.48);
  font-size: 0.68rem;
}

.session-row__arrow {
  color: var(--gold);
}

.timetable-notes {
  padding-top: 60px;
  background: var(--paper-bright);
}

.timetable-notes__grid {
  display: grid;
  grid-template-columns: 0.6fr 1.4fr;
  gap: 80px;
}

.timetable-notes h2,
.membership-footnote h2 {
  font-size: clamp(3.5rem, 6vw, 5.6rem);
}

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

.note-grid article {
  padding-top: 20px;
  border-top: 1px solid var(--line-light);
}

.note-grid article > span {
  color: var(--rust);
  font-family: var(--display);
  font-size: 0.65rem;
}

.note-grid h3 {
  margin: 60px 0 16px;
  font-size: 1.65rem;
}

.note-grid p {
  margin: 0;
  color: rgba(21, 20, 19, 0.58);
  font-size: 0.76rem;
}

.section.memberships-section {
  padding-top: clamp(44px, 6vw, 72px);
}

.membership-grid {
  display: grid;
  padding-top: 0;
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
}

.membership-card {
  position: relative;
  display: flex;
  min-height: 570px;
  padding: 38px 32px;
  border: 1px solid var(--line-light);
  border-right: 0;
  flex-direction: column;
}

.membership-card:last-child {
  border-right: 1px solid var(--line-light);
}

.membership-card--featured {
  top: -24px;
  min-height: 618px;
  border-color: var(--charcoal);
  color: var(--paper);
  background: var(--charcoal);
}

.membership-card__flag {
  position: absolute;
  top: 0;
  right: 0;
  padding: 8px 14px;
  color: var(--ink);
  background: var(--gold);
  font-family: var(--display);
  font-size: 0.56rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.membership-card h2 {
  margin-bottom: 14px;
  font-size: 2.7rem;
}

.membership-card__price {
  margin-bottom: 34px;
  color: var(--rust);
  font-family: var(--display);
  font-size: 1.2rem;
  font-weight: 700;
  text-transform: uppercase;
}

.membership-card--featured .membership-card__price,
.membership-card--featured .eyebrow {
  color: var(--gold);
}

.membership-card > p:not(.eyebrow, .membership-card__price) {
  color: rgba(21, 20, 19, 0.6);
  font-size: 0.82rem;
}

.membership-card--featured > p:not(.eyebrow, .membership-card__price) {
  color: rgba(240, 234, 219, 0.62);
}

.membership-card ul {
  display: grid;
  margin: 30px 0 38px;
  padding: 0;
  gap: 13px;
  list-style: none;
}

.membership-card li {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 0.72rem;
}

.membership-card li span {
  color: var(--gold);
  font-size: 0.4rem;
}

.membership-card .button {
  width: 100%;
  margin-top: auto;
}

.membership-footnote {
  color: var(--ink);
  background: var(--gold);
}

.membership-footnote__inner {
  max-width: 850px;
  text-align: center;
}

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

.membership-footnote h2 {
  margin-bottom: 25px;
}

.membership-footnote p:last-child {
  max-width: 560px;
  margin: auto;
  color: rgba(21, 20, 19, 0.72);
}

.membership-footnote .button {
  margin-top: 32px;
}

.trial-section .button--light,
.membership-footnote .button--light,
.final-cta--trial .button--light {
  border-color: var(--ink);
  color: var(--paper-bright);
  background: var(--ink);
}

.trial-section .button--light {
  border-color: var(--gold);
  color: var(--ink);
  background: var(--gold);
}

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

.membership-footnote .button--light:hover,
.final-cta--trial .button--light:hover {
  border-color: var(--paper-bright);
  color: var(--ink);
  background: var(--paper-bright);
}

.offer-detail-section {
  background: var(--paper-bright);
}

.trial-offer-section {
  padding-top: calc(var(--header-height) + 72px);
  background:
    linear-gradient(
      to bottom,
      var(--charcoal) 0 var(--header-height),
      var(--paper-bright) var(--header-height) 100%
    );
}

.offer-detail-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  align-items: center;
  gap: 100px;
}

.offer-detail-price {
  display: flex;
  margin: 0 0 22px;
  align-items: baseline;
  gap: 14px;
}

.offer-detail-price strong {
  color: var(--gold);
  font-family: var(--brand-serif);
  font-size: clamp(5rem, 9vw, 8rem);
  font-weight: 800;
  letter-spacing: -0.07em;
  line-height: 0.85;
}

.offer-detail-price span {
  color: rgba(21, 20, 19, 0.5);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.offer-detail-copy h1 {
  margin-bottom: 25px;
  font-size: clamp(3.4rem, 6vw, 5.5rem);
}

.offer-detail-copy > p:not(.eyebrow, .offer-detail-price) {
  margin-bottom: 30px;
  color: rgba(21, 20, 19, 0.62);
}

.offer-detail-copy > small {
  display: block;
  margin-top: 13px;
  color: rgba(21, 20, 19, 0.42);
  font-size: 0.62rem;
}

.offer-stack {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line-light);
  list-style: none;
}

.offer-stack li {
  position: relative;
  display: grid;
  min-height: 96px;
  padding: 20px 0 20px 54px;
  border-bottom: 1px solid var(--line-light);
  grid-template-columns: minmax(190px, 0.72fr) 1fr;
  align-items: center;
  gap: 28px;
}

.offer-stack li::before {
  position: absolute;
  left: 0;
  display: grid;
  width: 32px;
  height: 32px;
  border: 1px solid var(--gold);
  color: var(--ink);
  content: "✓";
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1;
  place-items: center;
}

.offer-stack h3 {
  margin: 0;
  font-size: 1.55rem;
}

.offer-stack p {
  margin: 0;
  color: rgba(21, 20, 19, 0.58);
  font-size: 0.75rem;
}

.start-steps-section {
  padding-block: 88px;
  color: var(--paper);
  background: var(--charcoal);
}

.start-steps-section .section-heading {
  margin-bottom: 42px;
}

.start-steps-section .section-heading h2 {
  color: var(--paper-bright);
  font-size: clamp(2.8rem, 5vw, 4.4rem);
  font-style: normal;
}

.start-steps-section .section-heading > p {
  color: rgba(240, 234, 219, 0.62);
}

.start-step-grid {
  display: grid;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line-dark);
  border-left: 1px solid var(--line-dark);
  grid-template-columns: repeat(3, 1fr);
  list-style: none;
}

.start-step-grid li {
  min-height: 190px;
  padding: 24px;
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.start-step-grid li > span {
  display: grid;
  width: 32px;
  height: 32px;
  border: 1px solid var(--gold);
  place-items: center;
}

.start-step-grid h3 {
  margin: 28px 0 10px;
  font-size: 1.7rem;
}

.start-step-grid p {
  margin: 0;
  color: rgba(240, 234, 219, 0.58);
  font-size: 0.76rem;
}

.trial-faq-section {
  background: var(--paper-bright);
}

.home-faq-section {
  background: var(--paper-bright);
}

.home-faq-grid {
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  gap: 100px;
}

.home-faq-grid h2 {
  margin-bottom: 24px;
  font-size: clamp(3.7rem, 7vw, 6.4rem);
}

.home-faq-grid > div:first-child > p:last-child {
  max-width: 440px;
  color: rgba(21, 20, 19, 0.58);
}

.location-section {
  position: relative;
  overflow: hidden;
  background: var(--paper);
}

.location-section::before {
  position: absolute;
  top: -240px;
  left: -180px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(168, 94, 49, 0.12);
  border-radius: 50%;
  content: "";
}

.location-section__heading {
  position: relative;
  display: grid;
  margin-bottom: 60px;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: end;
  gap: 100px;
}

.location-section h2 {
  max-width: 670px;
  margin: 0;
}

.location-section h2,
.classes-section .section-heading h2,
.home-faq-grid h2,
.trial-faq-grid h2 {
  color: var(--gold);
  font-size: clamp(3rem, 5vw, 4.6rem);
  font-weight: 600;
  font-style: italic;
}

.location-section h2 em,
.classes-section .section-heading h2 em,
.home-faq-grid h2 em,
.trial-faq-grid h2 em {
  display: block;
  color: var(--ink);
  font-size: 1.28em;
  font-weight: 700;
  font-style: normal;
}

.home-faq-grid h2,
.trial-faq-grid h2 {
  font-style: normal;
}

.location-section__details {
  padding: 26px 0;
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.location-section__details > span {
  display: block;
  margin-bottom: 8px;
  color: var(--rust);
  font-family: var(--display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.location-section__details address {
  max-width: 520px;
  margin-bottom: 12px;
  font-family: var(--display);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-style: normal;
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.05;
  text-transform: uppercase;
}

.location-section__details p {
  max-width: 500px;
  margin-bottom: 24px;
  color: rgba(21, 20, 19, 0.58);
  font-size: 0.82rem;
}

.location-section__visuals {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.location-photo,
.location-map {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border: 1px solid var(--line-light);
  background: var(--charcoal);
}

.location-photo {
  margin: 0;
}

.location-photo::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background: linear-gradient(180deg, transparent 52%, rgba(15, 14, 13, 0.82));
}

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

.location-photo figcaption {
  position: absolute;
  right: 28px;
  bottom: 24px;
  left: 28px;
  z-index: 1;
  display: flex;
  padding-top: 14px;
  border-top: 1px solid rgba(240, 234, 219, 0.28);
  justify-content: space-between;
  color: rgba(240, 234, 219, 0.68);
  font-family: var(--display);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.location-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 430px;
  border: 0;
  filter: grayscale(0.2) contrast(0.96) saturate(0.72);
}

.trial-faq-grid {
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  gap: 100px;
}

.trial-faq-grid h2 {
  margin-bottom: 22px;
}

.trial-faq-grid > div:first-child > p:last-child {
  color: rgba(21, 20, 19, 0.58);
}

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

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

.faq-list summary {
  display: flex;
  min-height: 82px;
  cursor: pointer;
  list-style: none;
  align-items: center;
  justify-content: space-between;
  font-family: var(--display);
  font-size: 1.35rem;
  font-weight: 700;
  text-transform: uppercase;
}

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

.faq-list summary::after {
  width: 20px;
  height: 20px;
  margin-left: 20px;
  content: "";
  flex: 0 0 20px;
  background:
    linear-gradient(var(--rust), var(--rust)) center / 100% 2px no-repeat,
    linear-gradient(var(--rust), var(--rust)) center / 2px 100% no-repeat;
  transition: transform 220ms ease, background-size 220ms ease;
}

.faq-list details[open]:not(.is-closing) summary::after {
  background-size: 100% 2px, 2px 0;
  transform: rotate(180deg);
}

.faq-list details p {
  max-width: 650px;
  margin: -6px 0 25px;
  color: rgba(21, 20, 19, 0.62);
  font-size: 0.8rem;
}

.term-offer {
  color: var(--ink);
  background: var(--gold);
}

.term-offer__inner {
  display: flex;
  min-height: 250px;
  padding: 48px 0;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

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

.term-offer h2 {
  margin-bottom: 14px;
  font-size: clamp(3rem, 6vw, 5.4rem);
}

.term-offer p:last-child {
  max-width: 620px;
  margin: 0;
  color: rgba(21, 20, 19, 0.72);
}

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

.programme-card {
  position: relative;
  display: flex;
  min-height: 350px;
  padding: 24px 26px;
  border-right: 1px solid var(--line-light);
  flex-direction: column;
  transition: color 220ms ease, background 220ms ease, transform 220ms ease;
}

.programme-card::after {
  position: absolute;
  top: 27px;
  right: 27px;
  width: 30px;
  height: 6px;
  content: "";
  opacity: 0.58;
  background:
    linear-gradient(var(--rust), var(--rust)) 0 0 / 100% 1px no-repeat,
    linear-gradient(var(--rust), var(--rust)) 8px 5px / 22px 1px no-repeat;
  transition: opacity 220ms ease, background 220ms ease;
}

.programme-card:hover {
  z-index: 2;
  color: var(--paper);
  background: var(--charcoal);
  transform: translateY(-8px);
}

.programme-card:hover::after {
  opacity: 0.9;
  background:
    linear-gradient(var(--gold-light), var(--gold-light)) 0 0 / 100% 1px no-repeat,
    linear-gradient(var(--gold-light), var(--gold-light)) 8px 5px / 22px 1px no-repeat;
}

.programme-card__number {
  color: var(--rust);
  font-family: var(--brand-serif);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
}

.programme-card__body {
  margin-top: 48px;
}

.programme-card .eyebrow {
  margin-bottom: 14px;
}

.programme-card h3 {
  margin-bottom: 18px;
  font-size: clamp(3rem, 4.2vw, 4.5rem);
  line-height: 0.88;
}

.programme-card__body > strong {
  display: block;
  color: var(--rust);
  font-family: var(--display);
  font-size: 1rem;
  line-height: 1.2;
  text-transform: uppercase;
  transition: color 220ms ease;
}

.programme-card__body > p:last-child {
  margin: 18px 0 0;
  color: rgba(21, 20, 19, 0.58);
  font-size: 1rem;
  line-height: 1.55;
  transition: color 220ms ease;
}

.programme-card:hover .programme-card__body > strong {
  color: var(--gold-light);
}

.programme-card:hover .programme-card__body > p:last-child {
  color: rgba(240, 234, 219, 0.65);
}

.youth-schedule-section {
  color: var(--paper);
  background: var(--charcoal);
}

.youth-schedule-grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  align-items: center;
  gap: 100px;
}

.youth-schedule-grid h2 {
  margin-bottom: 25px;
  font-size: clamp(3.5rem, 6vw, 5.8rem);
}

.youth-schedule-grid > div:first-child > p:last-child {
  color: rgba(240, 234, 219, 0.58);
}

.youth-schedule {
  border-top: 1px solid var(--line-dark);
}

.youth-schedule > div {
  display: grid;
  min-height: 120px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line-dark);
  grid-template-columns: minmax(150px, 0.9fr) minmax(100px, 0.65fr) 1.2fr;
  align-items: center;
  gap: 25px;
}

.youth-schedule strong {
  font-family: var(--display);
  font-size: clamp(2rem, 3.2vw, 2.8rem);
  line-height: 0.9;
  text-transform: uppercase;
}

.youth-schedule span {
  color: var(--gold-light);
  font-family: var(--display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1.2;
  text-transform: uppercase;
}

.youth-schedule time {
  color: rgba(240, 234, 219, 0.58);
  font-size: 0.75rem;
}

.youth-assurance-section {
  background: var(--paper-bright);
}

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

.youth-assurance-grid > div {
  min-height: 290px;
  padding: 30px;
  border-right: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.youth-assurance-grid h3 {
  margin: 48px 0 16px;
  font-size: 1.8rem;
}

.youth-assurance-grid p {
  margin: 0;
  color: rgba(21, 20, 19, 0.58);
  font-size: 0.75rem;
}

.fight-team-tables {
  display: grid;
  gap: 30px;
}

.team-record-table-heading {
  display: flex;
  margin-bottom: 14px;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.team-record-table-heading .eyebrow,
.team-record-table-heading > p:last-child {
  margin: 0;
}

.team-record-table-heading > p:last-child {
  color: rgba(21, 20, 19, 0.48);
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.roster-table-wrap {
  overflow: hidden;
  border-top: 1px solid var(--line-light);
  border-left: 1px solid var(--line-light);
  background: var(--paper-bright);
}

.roster-table {
  width: 100%;
  border-spacing: 0;
  border-collapse: collapse;
  table-layout: fixed;
}

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

.roster-table__name {
  width: 58%;
}

.roster-table__age {
  width: 12%;
}

.roster-table__record {
  width: 30%;
}

.roster-table th,
.roster-table td {
  padding: 14px 18px;
  border-right: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
  text-align: left;
  vertical-align: middle;
}

.roster-table thead {
  color: var(--paper);
  background: var(--charcoal);
}

.roster-table thead th {
  color: var(--gold-light);
  font-family: var(--display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.roster-table thead th span {
  color: rgba(240, 234, 219, 0.58);
  font-size: 0.82em;
  letter-spacing: 0.08em;
}

.team-record-table th,
.team-record-table td {
  width: 25%;
  text-align: center;
}

.team-record-table tbody td {
  color: var(--ink);
  font-family: var(--display);
  font-size: 1.35rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  line-height: 1;
}

.roster-table__group th {
  padding-block: 9px;
  color: var(--rust);
  background: rgba(201, 153, 72, 0.08);
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.roster-table__fighter > th {
  font-family: var(--display);
  font-size: 1.35rem;
  line-height: 1;
  text-transform: uppercase;
}

.roster-table thead th:nth-child(n + 2),
.roster-table__fighter > td {
  text-align: center;
}

.roster-table__fighter > td:nth-child(2) {
  color: var(--ink);
  font-family: var(--display);
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1;
}

.roster-table__fighter > td:last-child > strong {
  color: var(--ink);
  font-family: var(--display);
  font-size: 1.35rem;
  font-variant-numeric: tabular-nums;
  line-height: 1;
}

.team-creed {
  position: relative;
  overflow: hidden;
  color: var(--ink);
  background: var(--gold);
}

.team-creed::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 700px;
  height: 700px;
  border: 1px solid rgba(21, 20, 19, 0.18);
  border-radius: 50%;
  content: "";
  transform: translate(-50%, -50%);
}

.team-creed__inner {
  position: relative;
  z-index: 2;
  text-align: center;
}

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

.team-creed blockquote {
  margin: 0 auto 44px;
  font-family: var(--display);
  font-size: clamp(3.3rem, 7vw, 6.5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 0.95;
  text-transform: uppercase;
}

.team-creed blockquote em {
  color: var(--ink);
  font-weight: 600;
}

.term-offer .button--light,
.team-creed .button--light,
.final-cta .button--light {
  border-color: var(--ink);
  color: var(--paper-bright);
  background: var(--ink);
}

.term-offer .button--light:hover,
.team-creed .button--light:hover,
.final-cta .button--light:hover {
  border-color: var(--paper-bright);
  color: var(--ink);
  background: var(--paper-bright);
}

.site-footer {
  color: var(--paper);
  background: #121110;
}

.site-footer__top {
  display: grid;
  padding: 82px 0 66px;
  grid-template-columns: 1.35fr 0.45fr 0.6fr;
  gap: 80px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 28px;
}

.footer-brand__home {
  display: inline-flex;
}

.footer-brand__home:focus-visible {
  outline: 2px solid var(--gold-light);
  outline-offset: 5px;
}

.footer-brand .brand-mark--full {
  width: 118px;
  height: 118px;
}

.footer-links,
.footer-contact {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 8px;
}

.footer-links .eyebrow,
.footer-contact .eyebrow {
  margin-bottom: 14px;
}

.footer-links a,
.footer-contact a,
.footer-contact p,
.footer-contact span {
  margin: 0;
  color: rgba(240, 234, 219, 0.55);
  font-size: 0.72rem;
}

.footer-socials {
  display: flex;
  margin-top: 12px;
  gap: 12px;
}

.footer-socials a {
  display: inline-flex;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line-dark);
  align-items: center;
  justify-content: center;
}

.footer-socials svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.footer-socials .social-icon-fill {
  fill: currentColor;
  stroke: none;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--gold);
}

.site-footer__bottom {
  display: flex;
  padding: 22px 0;
  border-top: 1px solid var(--line-dark);
  justify-content: space-between;
  color: rgba(240, 234, 219, 0.34);
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.js [data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 650ms ease, transform 650ms cubic-bezier(0.2, 0.75, 0.25, 1);
}

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

@keyframes slow-spin {
  to { transform: rotate(360deg); }
}

@keyframes marquee {
  to { transform: translateX(-50%); }
}

@media (max-width: 1180px) and (min-width: 981px) {
  .site-logo__image {
    width: 158px;
  }

  .desktop-nav {
    gap: 17px;
  }

  .desktop-nav a {
    font-size: 0.68rem;
    letter-spacing: 0.09em;
  }

  .header-cta {
    gap: 12px;
    padding-inline: 14px;
    font-size: 0.67rem;
  }
}

@media (max-width: 980px) {
  :root {
    --shell: min(100% - 36px, 760px);
  }

  .coach-profile,
  .coaching-philosophy__grid {
    grid-template-columns: 1fr;
  }

  .coach-intro__copy {
    grid-template-columns: 1fr;
    row-gap: 0;
  }

  .coaches-page .page-hero__crest {
    top: 200px;
  }

  .coach-intro__copy > p:first-child,
  .coach-intro__copy > p:nth-child(2),
  .coach-intro__copy .button-row {
    grid-column: auto;
  }

  .coach-intro__copy > p:first-child {
    grid-row: auto;
    max-width: 560px;
    margin-bottom: 22px;
    font-size: clamp(2.4rem, 10vw, 4.2rem);
  }

  .coach-intro__copy > p:nth-child(2) {
    margin-bottom: 28px;
  }

  .coach-profile {
    gap: 62px;
  }

  .coach-profile__media {
    width: min(100%, 610px);
  }

  .coach-profile--reverse .coach-profile__media,
  .coach-profile--reverse .coach-profile__body {
    order: initial;
  }

  .coaching-philosophy__grid {
    gap: 60px;
  }

  .founder-note {
    grid-template-columns: 1fr;
  }

  .founder-note__portrait {
    min-height: 0;
    width: calc(100% - 36px);
    aspect-ratio: 4 / 5;
    margin: 0 auto;
    border: 1px solid rgba(21, 20, 19, 0.6);
  }

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

  .site-header__inner {
    display: flex;
    justify-content: space-between;
  }

  .site-header {
    height: calc(var(--header-height) + env(safe-area-inset-top));
    padding-top: env(safe-area-inset-top);
    background: rgba(21, 20, 19, 0.18);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
  }

  .mobile-nav {
    display: block;
  }

  .mobile-nav summary {
    display: grid;
    width: 46px;
    height: 46px;
    cursor: pointer;
    list-style: none;
    place-content: center;
    gap: 7px;
  }

  .mobile-nav summary::-webkit-details-marker {
    display: none;
  }

  .mobile-nav summary span {
    display: block;
    width: 25px;
    height: 1px;
    background: var(--paper);
    transition: transform 180ms ease;
  }

  .mobile-nav[open] summary span:first-child {
    transform: translateY(4px) rotate(45deg);
  }

  .mobile-nav[open] summary span:last-child {
    transform: translateY(-4px) rotate(-45deg);
  }

  .mobile-nav nav {
    position: fixed;
    top: calc(var(--header-height) + env(safe-area-inset-top));
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    min-height: calc(100dvh - var(--header-height) - env(safe-area-inset-top));
    padding: 30px 24px calc(36px + env(safe-area-inset-bottom));
    overflow-y: auto;
    border-top: 1px solid var(--line-dark);
    background:
      radial-gradient(circle at 92% 90%, rgba(201, 153, 72, 0.12), transparent 34%),
      var(--charcoal);
    flex-direction: column;
    gap: 4px;
    overscroll-behavior: contain;
    transform-origin: top center;
    will-change: opacity, transform;
  }

  .mobile-nav:not([open]) nav {
    display: none;
  }

  .mobile-nav nav > a:not(.button) {
    padding: 13px 0;
    border-bottom: 1px solid var(--line-dark);
    font-family: var(--display);
    font-size: 1.35rem;
    text-transform: uppercase;
  }

  .mobile-nav .button {
    margin-top: 18px;
  }

  .home-hero__inner {
    min-height: auto;
    padding-top: calc(180px + env(safe-area-inset-top));
    padding-bottom: 80px;
    grid-template-columns: 1fr;
  }

  .home-hero__copy {
    padding: 0;
  }

  .home-hero__emblem {
    position: absolute;
    right: -170px;
    bottom: -100px;
    width: 430px;
    opacity: 0.25;
  }

  .home-hero__media {
    inset: 0;
    width: 100%;
  }

  .home-hero__video-overlay {
    background:
      linear-gradient(
        180deg,
        #151413 0,
        #151413 env(safe-area-inset-top),
        rgba(21, 20, 19, 0.97) calc(env(safe-area-inset-top) + 76px),
        rgba(21, 20, 19, 0.78) calc(env(safe-area-inset-top) + 150px),
        rgba(21, 20, 19, 0) calc(env(safe-area-inset-top) + 300px)
      ),
      linear-gradient(180deg, rgba(18, 17, 16, 0.5) 0%, rgba(18, 17, 16, 0.7) 58%, rgba(18, 17, 16, 0.92) 100%),
      linear-gradient(90deg, rgba(18, 17, 16, 0.62), rgba(18, 17, 16, 0.32));
  }

  .emblem-wordmark .brand-mark--full {
    width: 300px;
    height: 300px;
  }

  .home-hero h1 {
    font-size: clamp(3.7rem, 10vw, 5.4rem);
  }

  .home-hero h1 em {
    padding-left: 0;
  }

  .hero-rail {
    gap: 18px;
  }

  .section-heading,
  .schedule-preview__grid,
  .testimonial-section__header,
  .how-section__grid,
  .offer-detail-grid,
  .trial-faq-grid,
  .home-faq-grid,
  .location-section__heading,
  .location-section__visuals,
  .youth-schedule-grid,
  .ethos-section__inner,
  .timetable-notes__grid,
  .site-footer__top {
    grid-template-columns: 1fr;
  }

  .section-heading,
  .schedule-preview__grid,
  .testimonial-section__header,
  .how-section__grid,
  .offer-detail-grid,
  .trial-faq-grid,
  .home-faq-grid,
  .location-section__heading,
  .youth-schedule-grid,
  .timetable-notes__grid {
    gap: 56px;
  }

  .ethos-section__inner {
    gap: 46px;
  }

  .ethos-section__inner > p {
    max-width: 500px;
  }

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

  .why-section__copy {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .how-portrait {
    width: min(100%, 520px);
  }

  .testimonial-section__header > p {
    max-width: 560px;
    font-size: 1.075rem;
    line-height: 1.7;
  }

  .class-grid,
  .coach-grid,
  .programme-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .class-card {
    min-height: 380px;
    border-bottom: 1px solid var(--line-light);
    border-left: 1px solid var(--line-light);
  }

  .programme-card {
    min-height: 380px;
    border-bottom: 1px solid var(--line-light);
  }

  .term-offer__inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .membership-card,
  .membership-card:last-child {
    min-height: 500px;
    border-right: 1px solid var(--line-light);
    border-bottom: 0;
  }

  .membership-card:last-child {
    border-bottom: 1px solid var(--line-light);
  }

  .membership-card--featured {
    top: 0;
    min-height: 520px;
  }

  .roster-table th,
  .roster-table td {
    padding-inline: 16px;
  }

  .timetable-explorer {
    grid-template-columns: 1fr;
  }

  .day-tabs {
    overflow-x: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line-light);
    flex-direction: row;
  }

  .day-tabs button,
  .day-tabs button:last-child {
    min-width: 112px;
    border-right: 1px solid var(--line-light);
    border-bottom: 0;
    flex-direction: column;
    align-items: flex-start;
  }

  .site-footer__top {
    grid-template-columns: 1.4fr 0.6fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  :root {
    --shell: calc(100% - 30px);
    --header-height: 76px;
  }

  .coaching-philosophy h2 {
    font-size: clamp(3.35rem, 17vw, 4.7rem);
  }

  .coach-intro .button-row,
  .coach-cta-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .coach-profile {
    padding: 76px 0;
    gap: 50px;
  }

  .coach-profile__media {
    aspect-ratio: 1;
    box-shadow: 10px 10px 0 rgba(201, 153, 72, 0.16);
  }

  .coach-profile__media figcaption {
    right: 28px;
    bottom: 26px;
    left: 28px;
  }

  .coach-profile__body h2 {
    margin-bottom: 24px;
    font-size: clamp(3.7rem, 18vw, 5.4rem);
    white-space: nowrap;
  }

  .coach-profile__body h2.coach-profile__name--long {
    max-width: 100%;
    font-size: clamp(3rem, 14vw, 4.5rem);
    white-space: normal;
  }

  .coach-profile__body h2.coach-profile__name--wide {
    font-size: clamp(2.75rem, 13vw, 4.4rem);
  }

  .coach-profile__name--long span {
    display: block;
  }

  .coach-profile__intro {
    font-size: 0.88rem;
  }

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

  .coaching-principles li {
    min-height: 165px;
    border-left: 1px solid var(--line-dark);
  }

  .coach-cta-actions {
    gap: 28px;
  }

  body {
    font-size: 15px;
  }

  .section {
    padding: 84px 0;
  }

  .trial-offer-section {
    padding-top: calc(var(--header-height) + 56px);
  }

  .start-steps-section {
    padding-block: 64px;
  }

  .site-logo__image {
    width: 140px;
  }

  .home-hero {
    min-height: 720px;
  }

  .home-hero__inner {
    padding-top: calc(150px + env(safe-area-inset-top));
  }

  .home-hero h1 {
    font-size: clamp(3.25rem, 14vw, 4.45rem);
  }

  .home-hero__offer {
    align-items: flex-start;
  }

  .home-hero__offer > strong {
    font-size: 2.5rem;
  }

  .home-hero__intro {
    max-width: 95%;
  }

  .button-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-rail {
    height: 64px;
    gap: 14px;
  }

  .hero-rail span:nth-child(3),
  .hero-rail span:nth-child(4),
  .hero-rail__line {
    display: none;
  }

  .section-heading {
    margin-bottom: 44px;
    gap: 24px;
  }

  .founder-note-section {
    padding-block: 44px;
  }

  .founder-note__portrait img {
    object-position: 50% 44%;
  }

  .founder-note__content {
    padding: clamp(34px, 8vw, 60px);
  }

  .founder-note__content h2 {
    font-size: clamp(2rem, 10vw, 2.75rem);
    letter-spacing: -0.045em;
  }

  .founder-note__content h2 > span {
    display: block;
    white-space: nowrap;
  }

  .location-section__heading {
    margin-bottom: 42px;
    gap: 36px;
  }

  .location-photo,
  .location-map,
  .location-map iframe {
    min-height: 300px;
  }

  .location-photo figcaption {
    right: 20px;
    bottom: 18px;
    left: 20px;
  }

  .location-photo figcaption span:first-child {
    display: none;
  }

  .section-heading h2,
  .schedule-preview h2,
  .final-cta h2,
  .why-section h2,
  .how-section h2,
  .timetable-notes h2,
  .membership-footnote h2 {
    font-size: clamp(3.25rem, 17vw, 4.6rem);
  }

  .class-card {
    min-height: 350px;
    padding: 24px;
  }

  .how-portrait {
    min-height: 390px;
  }

  .testimonial-section__header {
    margin-bottom: 36px;
    gap: 20px;
  }

  .testimonial-section__header h2 {
    font-size: clamp(3.25rem, 15vw, 4.5rem);
  }

  .testimonial-video-grid {
    display: flex;
    width: calc(100% + 15px);
    max-width: none;
    margin-right: -15px;
    padding: 0 15px 14px 0;
    overflow-x: auto;
    gap: 16px;
    scroll-padding-left: 0;
    scroll-snap-type: x mandatory;
    scrollbar-color: var(--gold) rgba(240, 234, 219, 0.1);
    scrollbar-width: thin;
  }

  .testimonial-video-card {
    flex: 0 0 min(82vw, 330px);
    scroll-snap-align: start;
  }

  .testimonial-video-card__media::after {
    inset: 8px;
  }

  .testimonial-video-card figcaption {
    min-height: 72px;
    padding: 16px 18px;
  }

  .testimonial-video-card figcaption strong {
    font-size: 1.25rem;
  }

  .testimonial-section__footer {
    margin-top: 28px;
    padding-top: 24px;
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
  }

  .testimonial-section__footer p {
    font-size: 1.075rem;
    line-height: 1.7;
  }

  .why-section__bottom-line {
    padding: 28px 25px;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .class-grid,
  .coach-grid,
  .programme-grid,
  .start-step-grid,
  .youth-assurance-grid {
    grid-template-columns: 1fr;
  }

  .programme-card,
  .youth-assurance-grid > div {
    min-height: 0;
  }

  .offer-stack li {
    min-height: 0;
    padding: 18px 0 18px 44px;
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .offer-stack li::before {
    width: 28px;
    height: 28px;
  }

  .start-step-grid li {
    min-height: 0;
    padding: 22px;
  }

  .start-step-grid li > span {
    width: 28px;
    height: 28px;
  }

  .start-step-grid h3 {
    margin-top: 22px;
  }

  .trial-offer-section .eyebrow,
  .start-steps-section .eyebrow,
  .trial-faq-section .eyebrow {
    font-size: 0.76rem;
    letter-spacing: 0.16em;
    line-height: 1.35;
  }

  .trial-offer-section .offer-detail-price span {
    font-size: 0.7rem;
  }

  .trial-offer-section .offer-detail-copy h1 {
    font-size: clamp(3.55rem, 15vw, 4.25rem);
  }

  .start-steps-section .section-heading h2 {
    font-size: clamp(2.95rem, 13vw, 3.6rem);
  }

  .trial-faq-section .trial-faq-grid h2 {
    font-size: clamp(3.1rem, 14vw, 3.75rem);
    font-weight: 700;
    line-height: 0.9;
  }

  .trial-faq-section .trial-faq-grid h2 em {
    font-size: 1em;
    font-weight: inherit;
  }

  .trial-final-cta h2 {
    font-size: clamp(3.4rem, 17vw, 4.5rem);
  }

  .trial-offer-section .offer-detail-copy > p:not(.eyebrow, .offer-detail-price),
  .start-steps-section .section-heading > p,
  .trial-faq-grid > div:first-child > p:last-child {
    font-size: 1.075rem;
    line-height: 1.7;
  }

  .trial-offer-section .offer-detail-copy > p:not(.eyebrow, .offer-detail-price),
  .trial-faq-grid > div:first-child > p:last-child {
    color: rgba(21, 20, 19, 0.72);
  }

  .start-steps-section .section-heading > p {
    color: rgba(240, 234, 219, 0.72);
  }

  .trial-offer-section .offer-detail-copy > small {
    font-size: 0.72rem;
    line-height: 1.55;
  }

  .trial-offer-section .offer-stack h3 {
    font-size: 1.75rem;
    line-height: 1.05;
  }

  .start-steps-section .start-step-grid h3 {
    font-size: 1.85rem;
  }

  .trial-offer-section .offer-stack p,
  .start-steps-section .start-step-grid p,
  .trial-faq-section .faq-list details p {
    font-size: 1rem;
    line-height: 1.6;
  }

  .trial-offer-section .offer-stack p {
    color: rgba(21, 20, 19, 0.68);
  }

  .start-steps-section .start-step-grid p {
    color: rgba(240, 234, 219, 0.68);
  }

  .trial-faq-section .faq-list summary {
    padding-block: 18px;
    font-size: 1.6rem;
    line-height: 1.08;
  }

  .trial-faq-section .faq-list details p {
    margin-bottom: 28px;
    color: rgba(21, 20, 19, 0.7);
  }

  .trial-offer-section .button,
  .trial-final-cta .button {
    min-height: 66px;
    gap: 34px;
    padding-inline: 28px;
    font-size: 1.05rem;
  }

  .trial-offer-section .button span,
  .trial-final-cta .button span {
    font-size: 1.25rem;
  }

  .coach-card h3,
  .coach-card > strong {
    min-height: auto;
  }

  .schedule-promises > div {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .live-calendar-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .live-calendar iframe {
    min-height: 780px;
  }

  .youth-schedule > div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .schedule-preview__grid {
    gap: 48px;
  }

  .preview-day {
    grid-template-columns: 48px 1fr auto;
  }

  .ethos-mark {
    width: 110px;
    height: 110px;
  }

  .ethos-section blockquote {
    font-size: 3.2rem;
  }

  .page-hero {
    min-height: 500px;
  }

  .page-hero__inner {
    padding-top: 165px;
    padding-bottom: 70px;
  }

  .page-hero h1 {
    font-size: clamp(3.8rem, 19vw, 5.5rem);
  }

  .page-hero__crest {
    right: -150px;
    bottom: -98px;
    width: 480px;
  }

  .editorial-notice {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .day-schedule {
    padding: 34px 20px;
  }

  .day-schedule__heading {
    margin-bottom: 32px;
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .day-schedule h2 {
    font-size: 4rem;
  }

  .session-row {
    min-height: 130px;
    grid-template-columns: 70px 1fr auto;
    gap: 14px;
  }

  .session-row__index {
    display: none;
  }

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

  .note-grid h3 {
    margin-top: 28px;
  }

  .membership-card {
    padding: 34px 25px;
  }

  .fight-team-tables {
    gap: 24px;
  }

  .team-record-table-heading {
    align-items: flex-start;
    gap: 16px;
  }

  .team-record-table-heading > p:last-child {
    max-width: 110px;
    text-align: right;
  }

  .roster-table__name {
    width: 52%;
  }

  .roster-table__age {
    width: 14%;
  }

  .roster-table__record {
    width: 34%;
  }

  .roster-table th,
  .roster-table td {
    padding: 10px;
  }

  .roster-table thead th {
    font-size: 0.68rem;
    letter-spacing: 0.09em;
    line-height: 1.05;
  }

  .roster-table thead th span {
    display: block;
    margin-top: 3px;
  }

  .team-record-table tbody td {
    font-size: 1.18rem;
  }

  .roster-table__group th {
    padding-block: 8px;
  }

  .roster-table__fighter > th {
    font-size: 1.18rem;
    line-height: 1.05;
  }

  .roster-table__fighter > td:nth-child(2) {
    font-size: 1.08rem;
    line-height: 1.05;
  }

  .roster-table__fighter > td:last-child > strong {
    font-size: 1.18rem;
    line-height: 1.05;
  }

  .site-footer__top {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .footer-brand {
    grid-column: auto;
    align-items: flex-start;
    flex-direction: column;
  }

  .site-footer__bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  /* Approved mobile reading scale, established on the two-week trial page. */
  .eyebrow {
    font-size: 0.76rem;
    letter-spacing: 0.16em;
    line-height: 1.35;
  }

  .button {
    min-height: 66px;
    max-width: 100%;
    gap: 34px;
    padding-inline: 28px;
    font-size: 1.05rem;
  }

  .button span {
    font-size: 1.25rem;
  }

  .text-link {
    min-height: 44px;
    align-items: center;
    font-size: 1rem;
    line-height: 1.15;
  }

  .section-heading h2,
  .classes-section .section-heading h2,
  .location-section h2,
  .home-faq-section .home-faq-grid h2,
  .live-calendar-heading h2,
  .timetable-notes h2,
  .membership-footnote h2,
  .term-offer h2,
  .youth-schedule-grid h2,
  .coaching-philosophy h2 {
    font-size: clamp(3.1rem, 14vw, 3.75rem);
  }

  .classes-section .section-heading h2 em,
  .location-section h2 em,
  .home-faq-section .home-faq-grid h2 em {
    font-size: 1em;
  }

  .home-faq-section .home-faq-grid h2 {
    font-weight: 700;
    line-height: 0.9;
  }

  .home-faq-section .home-faq-grid h2 em {
    font-weight: inherit;
  }

  .home-hero__intro,
  .page-hero__intro,
  .section-heading > p,
  .trial-section__offer > p:not(.eyebrow, .trial-section__price),
  .home-faq-grid > div:first-child > p:last-child,
  .location-section__details p,
  .coach-intro__copy > p:nth-child(2),
  .coach-profile__intro,
  .coaching-philosophy__intro > p:last-child,
  .membership-footnote p:last-child,
  .term-offer p:last-child,
  .youth-schedule-grid > div:first-child > p:last-child,
  .footer-brand > div > p:last-child {
    font-size: 1.075rem;
    line-height: 1.7;
  }

  .privacy-policy-section {
    padding-block: 80px;
  }

  .privacy-policy-content .privacy-lead {
    margin-bottom: 34px;
    font-size: clamp(1.9rem, 9.5vw, 2.5rem);
  }

  .privacy-summary {
    margin-bottom: 52px;
    padding: 22px 20px;
  }

  .privacy-policy-content h2 {
    margin-top: 52px;
    font-size: clamp(2.55rem, 13vw, 3.35rem);
  }

  .privacy-policy-content p,
  .privacy-policy-content li {
    font-size: 0.98rem;
    line-height: 1.72;
  }

  .home-hero__offer b {
    font-size: 1.2rem;
  }

  .home-hero__offer span {
    font-size: 0.9rem;
    line-height: 1.5;
  }

  .membership-card > p:not(.eyebrow, .membership-card__price),
  .membership-card li,
  .programme-card__body > p:last-child,
  .youth-assurance-grid p,
  .note-grid p,
  .coach-profile__experience li,
  .coach-profile__approach,
  .schedule-promises p,
  .faq-list details p {
    font-size: 1rem;
    line-height: 1.6;
  }

  .membership-card h2 {
    font-size: 3rem;
  }

  .membership-card__price {
    font-size: 1.3rem;
  }

  .note-grid h3,
  .youth-assurance-grid h3 {
    font-size: 1.85rem;
  }

  .programme-card__body > strong {
    font-size: 1.15rem;
    line-height: 1.2;
  }

  .programme-card {
    min-width: 0;
  }

  .programme-card h3 {
    font-size: clamp(2.8rem, 14.2vw, 3.3rem);
  }

  .youth-schedule strong {
    font-size: clamp(2.8rem, 14vw, 3.3rem);
  }

  .youth-schedule span {
    font-size: 0.9rem;
  }

  .youth-schedule time {
    font-size: 1rem;
    line-height: 1.5;
  }

  .coaching-principles strong {
    font-size: 1.8rem;
  }

  .faq-list summary {
    padding-block: 18px;
    font-size: 1.6rem;
    line-height: 1.08;
  }

  .home-faq-section .faq-list details p {
    margin-bottom: 28px;
    color: rgba(21, 20, 19, 0.7);
  }

  .location-section__details > span,
  .coach-profile__role {
    font-size: 0.82rem;
  }

  .session-row p {
    font-size: 0.85rem;
    line-height: 1.45;
  }

  .footer-links a {
    font-size: 1.3rem;
    line-height: 1.5;
  }

  .footer-contact a,
  .footer-contact p,
  .footer-contact span {
    font-size: 1rem;
    line-height: 1.5;
  }

  .footer-brand {
    align-items: center;
    text-align: center;
  }

  .footer-brand .brand-mark--full {
    width: 142px;
    height: 142px;
  }

  .footer-links,
  .footer-contact {
    width: 100%;
    align-items: center;
    gap: 10px;
    text-align: center;
  }

  .footer-links .eyebrow {
    margin-bottom: 10px;
    font-size: 1rem;
  }

  .footer-contact .eyebrow {
    margin-bottom: 8px;
    font-size: 0.82rem;
  }

  .footer-links a,
  .footer-contact a {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
  }

  .footer-socials {
    margin-top: 14px;
    gap: 12px;
  }

  .footer-socials a {
    width: 48px;
    height: 48px;
  }

  .footer-socials svg {
    width: 24px;
    height: 24px;
  }

  .site-footer__bottom {
    align-items: center;
    font-size: 0.72rem;
    line-height: 1.5;
    text-align: center;
  }
}

/* The Gladiator campaign removes general navigation and keeps only the useful trust/contact footer. */
.site-footer--campaign .site-footer__top {
  grid-template-columns: 1fr 1fr;
}

.site-footer--campaign .footer-contact {
  max-width: 360px;
  justify-self: end;
}

@media (max-width: 980px) {
  .site-footer--campaign .site-footer__top {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .site-footer--campaign .footer-brand,
  .site-footer--campaign .footer-contact {
    justify-self: center;
    align-items: center;
  }
}

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

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

/* Privacy controls use the theme's existing surfaces without competing with page CTAs. */
.site-footer__utility {
  display: flex;
  align-items: center;
  gap: 20px;
}

.site-footer__utility a,
.site-footer__utility button {
  padding: 0;
  border: 0;
  color: inherit;
  background: transparent;
  font: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
  cursor: pointer;
}

.site-footer__utility a:hover,
.site-footer__utility button:hover {
  color: var(--gold);
}

.site-footer__utility a:focus-visible,
.site-footer__utility button:focus-visible,
.consent-action:focus-visible,
.consent-dialog__close:focus-visible,
.consent-dialog a:focus-visible,
.consent-option input:focus-visible {
  outline: 2px solid var(--gold-light);
  outline-offset: 4px;
}

.consent-banner[hidden] {
  display: none;
}

.consent-banner {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 999;
  border-top: 2px solid var(--gold);
  color: var(--paper);
  background:
    radial-gradient(circle at 92% 10%, rgba(201, 153, 72, 0.13), transparent 36%),
    #171614;
  box-shadow: 0 -18px 52px rgba(0, 0, 0, 0.3);
}

.consent-banner__inner {
  width: min(1180px, calc(100vw - 32px));
  max-height: min(86vh, 720px);
  padding: 22px 0 calc(22px + env(safe-area-inset-bottom));
  overflow-y: auto;
  margin-inline: auto;
}

.consent-banner__copy .eyebrow,
.consent-dialog .eyebrow {
  margin-bottom: 8px;
  color: var(--gold-light);
}

.consent-banner__copy h2,
.consent-dialog h2 {
  margin-bottom: 10px;
  color: var(--paper-bright);
  font-size: clamp(2rem, 10vw, 2.65rem);
  line-height: 0.96;
}

.consent-banner__copy > p:last-child {
  max-width: 680px;
  margin-bottom: 18px;
  color: rgba(240, 234, 219, 0.72);
  font-size: 0.88rem;
  line-height: 1.55;
}

.consent-banner__actions {
  display: grid;
  gap: 9px;
}

.consent-action {
  display: inline-flex;
  min-height: 50px;
  padding: 10px 18px;
  border: 1px solid rgba(240, 234, 219, 0.45);
  align-items: center;
  justify-content: center;
  color: var(--paper-bright);
  background: transparent;
  font-family: var(--display);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.1;
  text-transform: uppercase;
  cursor: pointer;
}

.consent-action:hover {
  border-color: var(--gold);
  color: var(--ink);
  background: var(--gold);
}

.consent-action--primary {
  border-color: var(--gold);
  color: var(--ink);
  background: var(--gold);
}

.consent-action--primary:hover {
  border-color: var(--gold-light);
  background: var(--gold-light);
}

.consent-action--text {
  min-height: 44px;
  border-color: transparent;
  color: var(--gold-light);
  background: transparent;
}

.consent-action--text:hover {
  border-color: transparent;
  color: var(--paper-bright);
  background: transparent;
}

.consent-dialog {
  width: min(620px, calc(100vw - 24px));
  max-height: calc(100vh - 24px);
  padding: 0;
  overflow: auto;
  border: 1px solid var(--gold);
  color: var(--ink);
  background: var(--paper);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.5);
}

.consent-dialog::backdrop {
  background: rgba(12, 11, 10, 0.82);
  backdrop-filter: blur(3px);
}

.consent-dialog form {
  padding: 24px;
}

.consent-dialog__header {
  display: flex;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line-light);
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.consent-dialog .eyebrow {
  color: var(--rust);
}

.consent-dialog h2 {
  margin: 0;
  color: var(--ink);
}

.consent-dialog__close {
  display: inline-grid;
  width: 46px;
  min-width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid var(--line-light);
  color: var(--ink);
  background: transparent;
  font-family: var(--display);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  place-items: center;
}

.consent-dialog__intro {
  margin: 20px 0;
  color: rgba(21, 20, 19, 0.7);
  font-size: 0.9rem;
  line-height: 1.55;
}

.consent-option {
  display: flex;
  min-height: 78px;
  padding: 15px 0;
  border-top: 1px solid var(--line-light);
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.consent-option > div,
.consent-option > span {
  display: grid;
  gap: 4px;
}

.consent-option strong {
  font-family: var(--display);
  font-size: 1.15rem;
  letter-spacing: 0.04em;
  line-height: 1.1;
  text-transform: uppercase;
}

.consent-option span span,
.consent-option div span {
  color: rgba(21, 20, 19, 0.66);
  font-size: 0.78rem;
  line-height: 1.45;
}

.consent-option input {
  width: 25px;
  min-width: 25px;
  height: 25px;
  accent-color: var(--rust);
}

.consent-option input:disabled {
  opacity: 0.6;
}

.consent-dialog__footer {
  display: grid;
  padding-top: 22px;
  border-top: 1px solid var(--line-light);
  gap: 18px;
}

.consent-dialog__footer a {
  justify-self: start;
  padding-bottom: 3px;
  border-bottom: 1px solid currentColor;
  color: var(--rust);
  font-family: var(--display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.consent-dialog .consent-action--primary {
  color: var(--paper-bright);
  background: var(--ink);
}

@media (min-width: 720px) {
  .consent-banner__inner {
    display: grid;
    padding-block: 26px;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
    gap: 48px;
  }

  .consent-banner__copy > p:last-child {
    margin-bottom: 0;
  }

  .consent-banner__actions {
    grid-template-columns: repeat(2, auto);
  }

  .consent-action--text {
    grid-column: 1 / -1;
  }

  .consent-dialog form {
    padding: 36px;
  }

  .consent-dialog__footer {
    grid-template-columns: 1fr auto;
    align-items: center;
  }
}

@media (max-width: 640px) {
  .site-footer__utility {
    align-items: center;
    flex-direction: column;
    gap: 8px;
  }

  .site-footer__utility a,
  .site-footer__utility button {
    min-height: 44px;
  }
}
