/* Redesign layer, loads after dark-theme.css.
   Look: Evolve MMA's grey, black and white with BUMA yellow in place of their red,
   Gracie Barra's video hero, cut-out athletes and black band.
   Two themes on <html data-theme>: light (the new look) and dark (the build it replaced).
   Sizes here are authored at real size, not at the 0.75 scale of the older sheets. */

/* Content fills wide screens: 1680 max, gutters grow with the window. --v-t* grow type
   from its 1440 size up to a cap at 1920. */
:root {
  --v-max: 1680px;
  --v-gut: clamp(16px, 4vw, 96px);
  --v-width: min(var(--v-max), 100% - 2 * var(--v-gut));
  --v-t15: clamp(15px, 1.05vw, 18px);
  --v-t16: clamp(16px, 1.12vw, 19px);
  --v-t17: clamp(17px, 1.19vw, 21px);
  --v-t21: clamp(21px, 1.46vw, 26px);
}

html[data-theme="light"] {
  --v-bg: #f1f1f1;
  --v-bg-alt: #f8f8f8;
  --v-surface: #ffffff;
  --v-surface-2: #e8e8e8;
  --v-ink: #1c1d1f;
  --v-ink-soft: #4a4e54;
  --v-rule: rgba(20, 22, 25, .12);
  --v-topbar: #e4e4e4;
  --v-header: rgba(255, 255, 255, .94);
  --v-hero-wash: linear-gradient(180deg, rgba(241, 241, 241, .8) 0%, rgba(241, 241, 241, .7) 55%, rgba(241, 241, 241, .92) 100%);
  --v-band: #121416;
  --v-band-ink: #ffffff;
  --v-band-soft: #c9ccd1;
  --v-band-btn: #fff300;
  --v-band-btn-ink: #101215;
  --v-link: #101215;
  --v-link-line: #fff300;
  --v-strong-accent: #101215;
  --v-logo: brightness(0);
  --v-field: #ffffff;
  --v-field-line: #c4c7cc;
  --v-form: #e6e6e6;
  --v-shadow: 0 18px 40px rgba(20, 22, 25, .16);
  --v-cut-shadow: drop-shadow(0 16px 22px rgba(20, 22, 25, .22));
  --color-focus: #101215;
  color-scheme: light;
}
html[data-theme="dark"] {
  --v-bg: #0d0f11;
  --v-bg-alt: #121417;
  --v-surface: #16191d;
  --v-surface-2: #1f2328;
  --v-ink: #f5f5f5;
  --v-ink-soft: #b9bcc2;
  --v-rule: rgba(255, 255, 255, .12);
  --v-topbar: #08090b;
  --v-header: rgba(10, 12, 14, .95);
  --v-hero-wash: linear-gradient(180deg, rgba(9, 10, 12, .72) 0%, rgba(9, 10, 12, .62) 55%, rgba(13, 15, 17, .94) 100%);
  --v-band: #fff300;
  --v-band-ink: #101215;
  --v-band-soft: #2b2c20;
  --v-band-btn: #101215;
  --v-band-btn-ink: #fff300;
  --v-link: #fff300;
  --v-link-line: transparent;
  --v-strong-accent: #fff300;
  --v-logo: brightness(0) invert(1);
  --v-field: #0d0f11;
  --v-field-line: #3a3e44;
  --v-form: #1b1e23;
  --v-shadow: 0 18px 40px rgba(0, 0, 0, .45);
  --v-cut-shadow: drop-shadow(0 16px 22px rgba(0, 0, 0, .5));
  color-scheme: dark;
}

/* ---------- Shared building blocks ---------- */
body { background: var(--v-bg); color: var(--v-ink); }
html[data-theme="light"] body {
  --color-ink: #1c1d1f;
  --color-ink-soft: #4a4e54;
  --color-paper: #f1f1f1;
  --color-paper-2: #e6e6e6;
  --color-board: #ffffff;
  --color-board-2: #f8f8f8;
  --color-rule: rgba(20, 22, 25, .12);
  --visit-grey: #4a4e54;
}
#main section[id] { scroll-margin-top: 88px; }

.v2-wrap { width: var(--v-width); margin-inline: auto; }
.v2-center { text-align: center; }
.v2-h2 {
  margin: 0;
  font: 800 clamp(40px, 5.2vw, 76px)/.95 var(--font-display);
  letter-spacing: -.005em;
  color: inherit;
}
.v2-h3 {
  margin: 0 auto 44px;
  padding-inline: 24px;
  text-align: center;
  font: 800 clamp(30px, 3vw, 42px)/1 var(--font-display);
  letter-spacing: .02em;
  text-transform: uppercase;
  color: var(--v-ink);
}
.v2-sub { max-width: 760px; margin: 16px auto 44px; font-size: var(--v-t17); line-height: 1.6; color: var(--v-ink-soft); }

.v2-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  width: fit-content;
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
  font: 700 var(--v-t16)/1.4 var(--font-body);
  color: var(--v-link);
  text-decoration: underline;
  text-decoration-color: var(--v-link-line);
  text-decoration-thickness: 3px;
  text-underline-offset: 5px;
  transition: text-decoration-color 180ms var(--ease-out);
}
.v2-link .chev { transition: transform 180ms var(--ease-out); }
.v2-link:hover .chev { transform: translateX(3px); }
html[data-theme="dark"] .v2-link { text-decoration: none; }
html[data-theme="dark"] .v2-link:hover { text-decoration: underline; text-decoration-color: currentColor; }

/* The approved pill, at the size these layouts need. */
.button.v2-btn-lg {
  --disc: 52px;
  min-height: 52px;
  padding: 14px 26px 14px 18px;
  gap: 14px;
  font-size: var(--v-t15);
  letter-spacing: .06em;
}
.button.v2-btn-block { width: 100%; justify-content: center; }
.button.v2-btn-block::before { left: 0; }
/* On a light page the label never leaves a light ground, so it stays ink. */
html[data-theme="light"] .button:hover { animation: none; }
html[data-theme="light"] .text-button { color: var(--v-ink); border-color: var(--v-ink); }
html[data-theme="light"] .text-button:hover { animation: none; color: var(--v-ink); }

/* Bands: black on the light theme, yellow on the dark one. */
.v2-band { background: var(--v-band); color: var(--v-band-ink); }
.v2-band .button { color: var(--v-band-btn-ink); }
.v2-band .button::before { background: var(--v-band-btn); }
.v2-band .button svg.mark { fill: var(--v-band-btn-ink); }
html[data-theme="light"] .v2-band .button:hover { animation: button-relabel .6s var(--ease-out); }
html[data-theme="dark"] .v2-band .button:hover { animation: v2-relabel-band .6s var(--ease-out); }
@keyframes v2-relabel-band {
  0% { color: var(--v-band-btn-ink); }
  24%, 58% { color: #101215; }
  100% { color: var(--v-band-btn-ink); }
}

/* ---------- Header ---------- */
.site-header.v2-header {
  display: block;
  min-height: 0;
  padding: 0;
  position: sticky;
  top: -34px;
  z-index: 40;
  background: var(--v-header);
  color: var(--v-ink);
  border-bottom: 1px solid var(--v-rule);
  backdrop-filter: blur(12px);
}
.v2-topbar { background: var(--v-topbar); font: 600 clamp(12.5px, .87vw, 14.5px)/1 var(--font-body); letter-spacing: .06em; text-transform: uppercase; }
.v2-topbar-inner {
  width: var(--v-width);
  height: 34px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.v2-topbar a { color: var(--v-ink-soft); transition: color 150ms var(--ease-out); }
.v2-topbar a:hover { color: var(--v-ink); }
.v2-quick { display: flex; gap: 28px; }
.v2-quick a { white-space: nowrap; }
.v2-bar {
  width: var(--v-width);
  height: clamp(76px, 5.3vw, 92px);
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: 28px;
}
.v2-header .brand { flex: 0 0 auto; gap: 10px; }
.v2-header .brand img { width: clamp(52px, 3.6vw, 68px); height: clamp(52px, 3.6vw, 68px); background: transparent; border-radius: 0; filter: var(--v-logo); }
.v2-header .brand strong { font-size: clamp(22px, 1.53vw, 30px); color: var(--v-ink); }
.v2-header .brand small { margin-top: 5px; font-size: clamp(11px, .76vw, 14px); color: var(--v-ink-soft); }
html[data-theme="dark"] .v2-header .brand small { color: #fff300; }
.v2-header .main-nav {
  margin-left: auto;
  gap: clamp(26px, 1.8vw, 40px);
  font: 700 clamp(16px, 1.12vw, 19px) var(--font-body);
  letter-spacing: 0;
  text-transform: none;
}
.v2-header .main-nav a {
  padding: 8px 0;
  border-bottom: 3px solid transparent;
  color: var(--v-ink);
  transition: border-color 150ms var(--ease-out);
}
.v2-header .main-nav a:hover { border-bottom-color: var(--v-strong-accent); }
.v2-header .main-nav .v2-nav-extra { display: none; }
.v2-actions { display: flex; align-items: center; gap: 12px; }
.theme-toggle {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1.5px solid var(--v-rule);
  border-radius: 50%;
  background: transparent;
  color: var(--v-ink);
  cursor: pointer;
  transition: border-color 150ms var(--ease-out), transform 150ms var(--ease-out);
}
.theme-toggle:hover { border-color: var(--v-ink); }
.theme-toggle:active { transform: scale(.94); }
.theme-toggle svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; }
.theme-toggle .icon-moon { fill: currentColor; stroke: none; }
html[data-theme="light"] .theme-toggle .icon-sun,
html[data-theme="dark"] .theme-toggle .icon-moon { display: none; }
.v2-outline {
  min-height: 46px;
  padding: 0 22px;
  border: 2px solid var(--v-ink);
  border-radius: 999px;
  background: transparent;
  color: var(--v-ink);
  cursor: pointer;
  font: 700 clamp(15px, 1.05vw, 17px) var(--font-body);
  transition: background 180ms var(--ease-out), color 180ms var(--ease-out), transform 150ms var(--ease-out);
}
.v2-outline:hover { background: var(--v-ink); color: var(--v-bg); }
.v2-outline:active { transform: translateY(1px); }
.button.v2-header-cta {
  --disc: 46px;
  min-height: 46px;
  padding: 12px 22px 12px 16px;
  font-size: clamp(14px, .97vw, 16px);
  letter-spacing: .05em;
}
.v2-header .nav-toggle span { background: var(--v-ink); }

@media (min-width: 1121px) {
  .v2-header .main-nav { display: flex; }
  .v2-header .nav-toggle { display: none; }
}
@media (max-width: 1120px) {
  .v2-header .main-nav { display: none; }
  .v2-actions { margin-left: auto; }
  .v2-outline { display: none; }
  .v2-header .nav-toggle { display: flex; width: 42px; height: 42px; margin-left: 0; align-items: center; }
  .v2-header .nav-toggle span { width: 22px; }
  .v2-header .main-nav.open {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 8px 24px 20px;
    background: var(--v-surface);
    border-bottom: 1px solid var(--v-rule);
    box-shadow: var(--v-shadow);
  }
  .v2-header .main-nav.open a { padding: 13px 0; font-size: 17px; border-bottom: 1px solid var(--v-rule); }
  .v2-header .main-nav.open .v2-nav-extra { display: block; }
}
@media (max-width: 760px) {
  .v2-quick a:not([href^="tel"]) { display: none; }
}
@media (max-width: 560px) {
  .site-header.v2-header { top: -30px; }
  .v2-topbar { font-size: 11px; letter-spacing: .03em; }
  .v2-topbar-inner, .v2-bar { width: calc(100% - 32px); }
  .v2-topbar-inner { height: 30px; }
  .v2-topbar-inner > a { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
  .v2-bar { height: 64px; gap: 10px; }
  .v2-header .brand img { width: 42px; height: 42px; }
  .v2-header .brand strong { font-size: 18px; }
  .v2-header .brand small { font-size: 9.5px; }
  .v2-actions { gap: 8px; }
  .button.v2-header-cta { display: none; }
  .theme-toggle { width: 38px; height: 38px; }
}

/* ---------- Hero, Gracie Barra ---------- */
.v2-hero {
  position: relative;
  z-index: 2;
  isolation: isolate;
  display: grid;
  place-items: center;
  min-height: clamp(560px, calc(100svh - 170px), 820px);
  padding: 72px 24px 110px;
  text-align: center;
  background: var(--v-bg);
}
.v2-hero-video,
.v2-hero-wash {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.v2-hero-video { z-index: -3; object-fit: cover; }
.v2-hero-wash { z-index: -2; background: var(--v-hero-wash); }
.v2-hero-copy { position: relative; z-index: 2; max-width: 1040px; }
.v2-hero-kicker {
  margin: 0;
  font: 800 clamp(26px, 2.8vw, 44px)/1 var(--font-display);
  letter-spacing: .03em;
  text-transform: uppercase;
}
.v2-hero-kicker span { padding: 0 .12em; }
html[data-theme="light"] .v2-hero-kicker span { background: linear-gradient(transparent 56%, #fff300 56% 94%, transparent 94%); color: #101215; }
html[data-theme="dark"] .v2-hero-kicker span { color: #fff300; }
.v2-hero h1 {
  margin: 20px 0 24px;
  font: 800 clamp(58px, 9.2vw, 142px)/.88 var(--font-display);
  letter-spacing: -.005em;
  text-transform: uppercase;
  color: var(--v-ink);
  text-wrap: balance;
}
.v2-hero-sub {
  margin: 0 0 34px;
  font: 600 clamp(20px, 2vw, 30px)/1.2 var(--font-display);
  letter-spacing: .01em;
  color: var(--v-ink-soft);
}
.v2-hero-cut {
  position: absolute;
  z-index: 1;
  right: max(1.5vw, calc(50% - 900px));
  bottom: -40px;
  height: min(74%, 560px);
  width: auto;
  max-width: 34vw;
  object-fit: contain;
  object-position: bottom right;
  filter: var(--v-cut-shadow);
  pointer-events: none;
}
@media (max-width: 1760px) and (min-width: 901px) {
  .v2-hero-copy { max-width: min(760px, 64vw); margin-right: 22vw; }
  .v2-hero-cut { height: min(66%, 520px); }
}
@media (max-width: 900px) {
  .v2-hero {
    min-height: 0;
    padding: 56px 16px 0;
    place-items: start center;
  }
  .v2-hero-cut {
    position: relative;
    right: auto;
    bottom: auto;
    width: min(88%, 460px);
    max-width: none;
    height: auto;
    max-height: 380px;
    margin: 30px auto -64px;
  }
}

/* ---------- About + video + why band ---------- */
.v2-about { position: relative; z-index: 1; background: var(--v-surface); padding-top: 120px; }
.v2-about-copy { max-width: 1040px; margin-inline: auto; text-align: center; }
.v2-about-copy > p { margin: 26px auto 0; max-width: 64ch; text-align: left; font-size: var(--v-t17); line-height: 1.65; color: var(--v-ink-soft); }
.v2-about-links { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 14px 28px; }
.v2-rating { font: 600 var(--v-t15) var(--font-body); color: var(--v-ink-soft); }
.v2-rating:hover { color: var(--v-ink); }
.v2-stars { color: #f5b544; letter-spacing: .08em; margin-right: 4px; }
.v2-about-media {
  margin-top: 64px;
  padding-inline: 24px;
  background: linear-gradient(var(--v-surface) 50%, var(--v-band) 50%);
}
.v2-video {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #0a0b0d;
  border-radius: 4px;
  box-shadow: var(--v-shadow);
}
.v2-video-about { width: min(1280px, 100%); margin-inline: auto; }
.v2-video video { display: block; width: 100%; height: 100%; object-fit: cover; }
.v2-play {
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 16px;
  padding: 24px;
  border: 0;
  cursor: pointer;
  color: #fff;
  background: linear-gradient(180deg, rgba(10, 11, 13, .15), rgba(10, 11, 13, .62));
  transition: background 220ms var(--ease-out);
}
.v2-play:hover { background: linear-gradient(180deg, rgba(10, 11, 13, .05), rgba(10, 11, 13, .5)); }
.v2-video.is-playing .v2-play { opacity: 0; visibility: hidden; transition: opacity 160ms ease-out, visibility 0s 160ms; }
.v2-play-crest { width: 84px; height: 84px; padding: 14px; border-radius: 50%; background: #fff300; filter: none; }
.v2-play-title { font: 800 clamp(26px, 3.6vw, 48px)/1 var(--font-display); letter-spacing: .02em; text-transform: uppercase; text-shadow: 0 2px 18px rgba(0, 0, 0, .4); }
.v2-play-title b { display: block; color: #fff300; }
.v2-play-icon {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #fff300;
  transition: transform 180ms var(--ease-out);
}
.v2-play:hover .v2-play-icon { transform: scale(1.06); }
.v2-play-icon svg { width: 26px; height: 26px; fill: #101215; margin-left: 3px; }
.v2-video-about .v2-play-icon { position: absolute; right: 22px; bottom: 22px; width: 56px; height: 56px; }

.v2-why { padding: 76px 0 96px; text-align: center; }
.v2-why-lead { max-width: 60ch; margin: 22px auto 0; font-size: var(--v-t17); line-height: 1.65; color: var(--v-band-soft); }
.v2-why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(32px, 3vw, 64px);
  max-width: 1400px;
  margin: 56px auto 0;
  text-align: left;
}
.v2-why-grid > div { padding-top: 18px; border-top: 3px solid var(--v-band-btn); }
.v2-why-grid h3 { margin: 0 0 10px; font: 800 clamp(28px, 1.95vw, 36px)/1 var(--font-display); text-transform: uppercase; letter-spacing: .02em; }
.v2-why-grid p { margin: 0; font-size: var(--v-t16); line-height: 1.55; color: var(--v-band-soft); }

/* ---------- Programs, Gracie Barra rows ---------- */
.v2-programs { padding: 100px 0 150px; background: var(--v-surface); }
.v2-prog-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(22px, 2vw, 40px) clamp(40px, 4vw, 80px);
  margin-top: 56px;
}
.v2-prog {
  display: grid;
  grid-template-columns: minmax(170px, 42%) 1fr;
  gap: 26px;
  align-items: start;
  padding: 12px;
  border-radius: 4px;
  transition: background 200ms var(--ease-out);
}
.v2-prog:hover { background: var(--v-surface-2); }
.v2-prog img { width: 100%; height: auto; aspect-ratio: 3 / 2; object-fit: cover; display: block; }
.v2-prog h3 { margin: 10px 0 8px; font: 700 var(--v-t21)/1.2 var(--font-body); color: var(--v-ink); }
.v2-prog p { margin: 0; font-size: var(--v-t16); line-height: 1.55; color: var(--v-ink-soft); }
.v2-prog .v2-badge { display: inline-flex; align-items: stretch; gap: 3px; margin: 0; font-style: normal; }
.v2-badge b,
.v2-badge i {
  display: grid;
  place-items: center;
  min-height: 34px;
  padding: 2px 8px 0;
  font: 900 30px/1 var(--font-display);
  font-style: normal;
  letter-spacing: -.01em;
}
.v2-badge b { padding-inline: 0 2px; color: var(--v-ink); }
.v2-badge i { background: #fff300; color: #101215; border-radius: 3px; font-size: 24px; letter-spacing: .02em; }

/* ---------- Journey band + values marquee ---------- */
.v2-journey { position: relative; }
.v2-journey-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr);
  align-items: end;
  min-height: 400px;
}
.v2-journey-copy { padding: 72px 0 64px; }
.v2-journey-copy .v2-h2 { max-width: 860px; margin-bottom: 34px; font-size: clamp(40px, 4.6vw, 70px); text-transform: none; }
.v2-journey-cut {
  align-self: end;
  justify-self: center;
  width: auto;
  height: 460px;
  max-width: 100%;
  margin-top: -130px;
  object-fit: contain;
  object-position: bottom;
  filter: drop-shadow(0 20px 24px rgba(0, 0, 0, .35));
}
.v2-marquee {
  overflow: hidden;
  padding: 18px 0 22px;
  border-top: 1px solid color-mix(in srgb, var(--v-band-ink) 16%, transparent);
}
.v2-marquee-track { display: flex; width: max-content; animation: v2-marquee 38s linear infinite; }
.v2-marquee-set { display: flex; align-items: center; gap: 36px; padding-right: 36px; }
.v2-marquee span { font: 800 clamp(34px, 3.6vw, 52px)/1 var(--font-display); letter-spacing: .02em; text-transform: uppercase; white-space: nowrap; }
.v2-marquee img { width: 38px; height: 38px; filter: var(--v-logo); opacity: .9; }
html[data-theme="light"] .v2-marquee img { filter: brightness(0) invert(1); }
html[data-theme="dark"] .v2-marquee img { filter: brightness(0); }
@keyframes v2-marquee { to { transform: translateX(-50%); } }

/* ---------- Evolve sections ---------- */
.v2-evolve { padding: 84px 0 96px; background: var(--v-bg); }
.v2-featured,
.v2-benefits,
.v2-location { background: var(--v-bg-alt); }
.v2-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 48px;
  align-items: center;
}
.v2-split-copy { display: grid; gap: 18px; justify-items: start; }
.v2-split-copy > p { margin: 0; max-width: 62ch; font-size: var(--v-t17); line-height: 1.65; color: var(--v-ink); }
.v2-split-copy .button { margin-top: 18px; max-width: 760px; }
.v2-split-cut { width: 100%; height: auto; max-height: 520px; object-fit: contain; filter: var(--v-cut-shadow); }
.v2-benefits .v2-split { align-items: end; }
.v2-kick { max-height: 640px; }

/* Featured class cards with the corner ribbon */
.v2-feature-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.v2-feature { display: grid; gap: 14px; }
.v2-feature h3 { margin: 0; text-align: center; font: 700 var(--v-t21)/1.2 var(--font-body); color: var(--v-ink-soft); transition: color 180ms var(--ease-out); }
.v2-feature:hover h3 { color: var(--v-ink); }
.v2-feature-img { position: relative; display: block; overflow: visible; }
.v2-feature-img img { display: block; width: 100%; height: auto; aspect-ratio: 370 / 228; object-fit: cover; background: #0a0b0d; }
.v2-ribbon {
  position: absolute;
  right: -8px;
  bottom: 30px;
  padding: 10px 22px 10px 26px;
  background: #fff300;
  color: #101215;
  font: 800 var(--v-t15)/1 var(--font-body);
  border-radius: 4px 0 0 4px;
  transition: transform 200ms var(--ease-out);
}
.v2-ribbon::after {
  content: '';
  position: absolute;
  right: 0;
  bottom: -8px;
  border-top: 8px solid #6d6800;
  border-right: 8px solid transparent;
}
.v2-feature:hover .v2-ribbon { transform: translateX(-6px); }
.v2-more { display: flex; justify-content: flex-end; margin: 30px 0 0; }

/* Benefits */
.v2-video-benefits { width: 100%; max-width: 760px; }
.v2-video-benefits .v2-play { place-content: end start; justify-items: start; text-align: left; padding: 26px; }
.v2-video-benefits .v2-play-title { font-size: clamp(24px, 2.6vw, 36px); }
.v2-video-benefits .v2-play-icon { position: absolute; left: 50%; top: 50%; translate: -50% -60%; }
.v2-benefit-list { margin: 8px 0 0; padding-left: 22px; display: grid; gap: 10px; font-size: var(--v-t17); line-height: 1.45; color: var(--v-ink); }
.v2-benefit-list li::marker { color: var(--v-ink); }

/* ---------- Instructors ---------- */
.v2-coaches { padding: 96px 0 104px; background: var(--v-surface); }
.v2-coach-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(24px, 2vw, 36px); }
.v2-coach { position: relative; overflow: hidden; border-radius: 4px; background: var(--v-surface-2); }
.v2-coach img { display: block; width: 100%; aspect-ratio: 4 / 4.4; object-fit: cover; object-position: center 22%; transition: transform 500ms var(--ease-out); }
.v2-coach:hover img { transform: scale(1.03); }
.v2-coach div { padding: 20px 24px 26px; }
.v2-coach p { display: inline-block; margin: 0 0 8px; padding: 4px 9px 3px; background: #fff300; color: #101215; font: 800 clamp(13px, .9vw, 16px)/1.2 var(--font-display); letter-spacing: .1em; text-transform: uppercase; border-radius: 3px; }
.v2-coach h3 { margin: 0 0 6px; font: 800 clamp(30px, 2.1vw, 38px)/1 var(--font-display); text-transform: uppercase; color: var(--v-ink); }
.v2-coach span { font-size: var(--v-t16); color: var(--v-ink-soft); }

/* ---------- First-class form, Evolve ---------- */
.v2-trial-grid { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: 48px; align-items: start; }
.v2-trial-cut { width: 100%; height: auto; max-height: 620px; object-fit: contain; object-position: top; margin-top: 40px; filter: var(--v-cut-shadow); }
.v2-trial-copy > p { margin: 0 0 14px; font-size: var(--v-t17); line-height: 1.6; color: var(--v-ink); }
.v2-form {
  display: grid;
  gap: 16px;
  margin-top: 26px;
  padding: 30px 30px 26px;
  border-radius: 16px;
  background: var(--v-form);
}
.v2-field { display: grid; grid-template-columns: 140px 1fr; gap: 6px 18px; align-items: start; margin: 0; padding: 0; border: 0; min-width: 0; }
.v2-field > label,
.v2-field > legend { float: left; padding: 10px 0 0; font: 700 var(--v-t16) var(--font-body); color: var(--v-ink); }
fieldset.v2-field { display: block; }
fieldset.v2-field > legend { width: 140px; margin-right: 18px; }
fieldset.v2-field > .v2-radios { margin-left: 158px; }
.v2-field abbr { color: #c1121f; text-decoration: none; }
html[data-theme="dark"] .v2-field abbr { color: #fff300; }
.v2-form input:not([type="radio"]),
.v2-form textarea {
  width: 100%;
  min-height: clamp(44px, 3.2vw, 54px);
  padding: 10px 14px;
  border: 1px solid var(--v-field-line);
  border-radius: 3px;
  background: var(--v-field);
  color: var(--v-ink);
  font: 400 var(--v-t16) var(--font-body);
  transition: border-color 150ms var(--ease-out), box-shadow 150ms var(--ease-out);
}
.v2-form textarea { resize: vertical; min-height: 88px; }
.v2-form input:focus,
.v2-form textarea:focus { outline: none; border-color: var(--v-ink); box-shadow: 0 0 0 3px color-mix(in srgb, #fff300 70%, transparent); }
.v2-field-short input:not([type="radio"]) { max-width: 90px; }
.v2-phone { display: grid; grid-template-columns: auto 1fr; gap: 0; }
.v2-phone > span { display: grid; place-items: center; padding: 0 12px; border: 1px solid var(--v-field-line); border-right: 0; border-radius: 3px 0 0 3px; background: var(--v-surface-2); color: var(--v-ink); font-size: 15px; }
.v2-phone input { border-radius: 0 3px 3px 0 !important; }
.v2-phone .v2-field-error { grid-column: 1 / -1; }
.v2-radios { display: grid; gap: 7px; padding-top: 10px; }
.v2-radios label { display: flex; align-items: center; gap: 10px; font-size: var(--v-t16); color: var(--v-ink); cursor: pointer; }
.v2-radios input { width: 18px; height: 18px; margin: 0; accent-color: #101215; }
html[data-theme="dark"] .v2-radios input { accent-color: #fff300; }
.v2-field-error { margin: 0; min-height: 0; font-size: 14px; font-weight: 600; color: #b3121d; }
html[data-theme="dark"] .v2-field-error { color: #ff8a8a; }
.v2-field-error:empty { display: none; }
.v2-field.has-error input:not([type="radio"]) { border-color: #b3121d; }
.v2-form-foot { display: grid; gap: 10px; margin-top: 8px; }
.v2-form-status { margin: 0; font-weight: 700; font-size: 16px; color: var(--v-ink); }
.v2-form-status:empty { display: none; }
.v2-form-note { margin: 0; font-size: var(--v-t15); color: var(--v-ink-soft); }
.v2-form.is-sent .v2-form-status { padding: 12px 14px; border-left: 4px solid #fff300; background: var(--v-surface); }

/* ---------- Location, Evolve ---------- */
.v2-loc-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(24px, 2.5vw, 48px); }
.v2-loc { display: grid; align-content: start; gap: 12px; }
.v2-loc h3 { margin: 0 0 6px; text-align: center; font: 700 clamp(22px, 1.53vw, 28px)/1.2 var(--font-body); color: var(--v-ink-soft); }
.v2-loc > img,
.v2-loc .v2-map { width: 100%; aspect-ratio: 565 / 300; object-fit: cover; display: block; border-radius: 0; }
.v2-loc .v2-map { position: relative; grid-column: auto; grid-row: auto; height: auto; min-height: 0; overflow: hidden; border: 0; background: var(--v-surface-2); }
.v2-loc .v2-map .map-view-toggle button { font-size: 13px; padding: 7px 14px; }
.v2-loc .v2-map iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.v2-loc-row { display: flex; justify-content: space-between; align-items: center; gap: 12px; flex-wrap: wrap; margin-top: 6px; }
.v2-loc-row strong { font: 700 clamp(18px, 1.25vw, 23px) var(--font-body); color: var(--v-ink); }
.v2-loc-row a { display: inline-flex; align-items: center; gap: 8px; font: 700 var(--v-t17) var(--font-body); color: var(--v-ink); }
.v2-loc-row svg { width: 18px; height: 18px; fill: #101215; }
html[data-theme="dark"] .v2-loc-row svg { fill: #fff300; }
.v2-loc-row a[href^="mailto"] svg path { fill: none; stroke: currentColor; }
.v2-loc > p { margin: 0; font-size: var(--v-t16); line-height: 1.55; color: var(--v-ink-soft); }

/* ---------- Visit popup, Tiger Muay Thai ---------- */
.v2-popup { position: fixed; inset: 0; z-index: 90; display: grid; place-items: center; padding: 16px; }
.v2-popup[hidden] { display: none; }
.v2-popup-backdrop { position: absolute; inset: 0; background: rgba(6, 7, 8, .82); opacity: 0; transition: opacity 200ms ease-out; }
.v2-popup-card {
  position: relative;
  width: min(580px, 100%);
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  justify-items: center;
  opacity: 0;
  transform: translateY(14px) scale(.98);
  transition: opacity 220ms var(--ease-out), transform 220ms var(--ease-out);
}
.v2-popup.is-open .v2-popup-backdrop { opacity: 1; }
.v2-popup.is-open .v2-popup-card { opacity: 1; transform: none; }
.v2-popup-close {
  position: absolute;
  z-index: 3;
  top: 8px;
  right: 0;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, .1);
  color: #fff;
  cursor: pointer;
  transition: background 150ms var(--ease-out);
}
.v2-popup-close:hover { background: rgba(255, 255, 255, .22); }
.v2-popup-close svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; }
.v2-popup-cut { position: relative; z-index: 1; width: auto; height: min(300px, 38svh); max-width: 92%; margin-bottom: -10px; object-fit: contain; object-position: bottom; filter: drop-shadow(0 10px 20px rgba(0, 0, 0, .5)); }
.v2-popup-box { position: relative; z-index: 2; width: 100%; min-width: 0; background: #1d1f22; border: 2px solid #fff300; color: #fff; }
.v2-popup-ticker { overflow: hidden; background: #fff300; color: #101215; padding: 9px 0; }
.v2-popup-track { display: flex; width: max-content; animation: v2-marquee 16s linear infinite; }
.v2-popup-track span { font: 800 17px/1 var(--font-display); letter-spacing: .06em; text-transform: uppercase; white-space: nowrap; }
.v2-popup-track i { padding: 0 16px; font-style: normal; font-size: 12px; }
.v2-popup-body { display: grid; justify-items: center; gap: 14px; padding: 24px 26px 26px; text-align: center; }
.v2-popup-body h2 { margin: 0; font: 800 clamp(34px, 5vw, 46px)/1 var(--font-display); text-transform: uppercase; letter-spacing: .02em; }
.v2-popup-body p { margin: 0; font-size: 16px; line-height: 1.55; color: #d4d6da; }
.v2-popup-body b { color: #fff; }

/* ---------- Tablet and phone ---------- */
@media (max-width: 1000px) {
  .v2-prog-list { grid-template-columns: 1fr; max-width: 760px; margin-inline: auto; }
  .v2-coach-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 900px) {
  .v2-about { padding-top: 110px; }
  .v2-split,
  .v2-trial-grid,
  .v2-loc-grid { grid-template-columns: 1fr; }
  .v2-split-cut { max-height: 400px; }
  .v2-trial-cut { order: 2; max-height: 380px; margin-top: 0; }
  .v2-journey-inner { grid-template-columns: 1fr; min-height: 0; }
  .v2-journey-copy { padding: 60px 0 10px; }
  .v2-journey-cut { width: min(100%, 560px); height: auto; margin-top: 0; }
  .v2-feature-grid { grid-template-columns: 1fr; max-width: 520px; margin-inline: auto; }
  .v2-why-grid { grid-template-columns: 1fr; gap: 24px; }
}
@media (max-width: 600px) {
  .v2-wrap { width: calc(100% - 32px); }
  .v2-about-media { padding-inline: 16px; margin-top: 44px; }
  .v2-about-links { justify-content: flex-start; }
  .v2-programs { padding: 72px 0 90px; }
  .v2-prog { grid-template-columns: 112px 1fr; gap: 14px; padding: 0; }
  .v2-prog img { aspect-ratio: 1 / 1; border-radius: 3px; }
  .v2-prog h3 { margin-top: 6px; font-size: 18px; }
  .v2-prog p { font-size: 15px; }
  .v2-badge b, .v2-badge i { min-height: 28px; font-size: 25px; }
  .v2-badge i { font-size: 20px; }
  .v2-prog-list { gap: 26px; margin-top: 36px; }
  .v2-evolve { padding: 64px 0 72px; }
  .v2-h3 { margin-bottom: 30px; }
  .v2-coach-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
  .v2-coach div { padding: 12px 12px 14px; }
  .v2-coach p { font-size: 11px; }
  .v2-coach h3 { font-size: 21px; }
  .v2-coach span { font-size: 13px; }
  .v2-form { padding: 22px 16px 20px; }
  .v2-field { grid-template-columns: 1fr; }
  .v2-field > label, .v2-field > legend { float: none; padding-top: 0; }
  fieldset.v2-field > legend { width: auto; margin: 0 0 4px; }
  fieldset.v2-field > .v2-radios { margin-left: 0; padding-top: 4px; }
  .v2-video-about .v2-play-icon { width: 46px; height: 46px; right: 14px; bottom: 14px; }
  .v2-play-crest { width: 60px; height: 60px; padding: 10px; }
  .v2-video-benefits .v2-play { padding: 18px; }
  .v2-popup-body { padding: 20px 18px 22px; }
  .v2-marquee span { font-size: 30px; }
  .v2-marquee img { width: 30px; height: 30px; }
}

@media (prefers-reduced-motion: reduce) {
  .v2-marquee-track,
  .v2-popup-track { animation: none; }
  .v2-popup-card,
  .v2-popup-backdrop { transition: none; }
  .v2-coach:hover img { transform: none; }
}

/* ---------- Light theme for the schedule, reviews and FAQ pages ----------
   dark-theme.css hard-codes white text in places, so the light theme restates those rules. */
html[data-theme="light"] .eyebrow,
html[data-theme="light"] .eyebrow.dark,
html[data-theme="light"] .section-dark .eyebrow { color: #101215; }
html[data-theme="light"] .section-heading > p,
html[data-theme="light"] .section-heading.light > p,
html[data-theme="light"] .section-dark .lead,
html[data-theme="light"] .lead { color: var(--v-ink-soft); }
html[data-theme="light"] .section-dark { background: var(--v-surface); color: var(--v-ink); }
html[data-theme="light"] .program-card,
html[data-theme="light"] .schedule-layout,
html[data-theme="light"] .class-row,
html[data-theme="light"] .testimonial-card,
html[data-theme="light"] .testimonial-card:first-child,
html[data-theme="light"] .coach-card > div { background: #ffffff; color: var(--v-ink); }
html[data-theme="light"] .schedule-layout { box-shadow: 0 1px 0 var(--v-rule), var(--v-shadow); }
html[data-theme="light"] .class-row time { color: #101215; }
html[data-theme="light"] .class-row p,
html[data-theme="light"] .class-row span { color: var(--v-ink-soft); }
html[data-theme="light"] .day-tabs { background: #ececec; }
html[data-theme="light"] .day-tab { color: #101215; }
html[data-theme="light"] .schedule-note span { background: #fff300; color: #101215; }
html[data-theme="light"] .faq-item { background: #ffffff; border-color: rgba(20, 22, 25, .1); }
html[data-theme="light"] .faq-item[open] { background: #ffffff; border-color: #101215; }
html[data-theme="light"] .faq-item summary:hover { background: #f6f6f6; }
html[data-theme="light"] .faq-item summary i::before,
html[data-theme="light"] .faq-item summary i::after { background: #101215; }
html[data-theme="light"] .faq-body { color: var(--v-ink-soft); }
html[data-theme="light"] .faq-defs b,
html[data-theme="light"] .faq-split b,
html[data-theme="light"] .faq-cta p { color: var(--v-ink); }
html[data-theme="light"] .faq-times time { color: #101215; }
html[data-theme="light"] .faq-times li { border-top-color: rgba(20, 22, 25, .1); }
html[data-theme="light"] .faq-cta { border-top-color: rgba(20, 22, 25, .12); }
html[data-theme="light"] .faq-tabs button { color: #101215; }
html[data-theme="light"] .faq-tabs button:hover { border-color: #101215; }
html[data-theme="light"] .review-chip { background: #ffffff; border-color: rgba(20, 22, 25, .1); color: var(--v-ink); }
html[data-theme="light"] .review-chip p { color: var(--v-ink-soft); }
html[data-theme="light"] .testimonial-card p { color: var(--v-ink-soft); }
html[data-theme="light"] .testimonial-mark { color: #101215; }

/* ---------- Old pages at real size ----------
   The schedule, FAQ and community bodies are still drawn by styles.css at 0.75 scale.
   zoom scales type, spacing and boxes together; below 981 the older sheets already
   switch to phone sizes, so the zoom stops there. */
@media (min-width: 981px) {
  #schedule.schedule,
  #faq.faq,
  #community.community { zoom: 1.3333; padding-inline: calc(var(--v-gut) / 1.3333); }
  #schedule.schedule > *,
  #faq.faq > *,
  #community.community > * { max-width: calc(var(--v-max) / 1.3333); margin-inline: auto; }
}
@media (min-width: 1680px) {
  #schedule.schedule,
  #faq.faq,
  #community.community { zoom: 1.5; padding-inline: calc(var(--v-gut) / 1.5); }
  #schedule.schedule > *,
  #faq.faq > *,
  #community.community > * { max-width: calc(var(--v-max) / 1.5); }
}

/* ---------- Ask BUMA launcher, readable ---------- */
.chat-launcher { zoom: 1.55; }
@media (max-width: 650px) {
  .chat-launcher { zoom: 1.3; }
}

/* ---------- Footer at real size ---------- */
.footer-main {
  gap: clamp(28px, 4vw, 88px);
  padding: clamp(48px, 6vw, 104px) max(var(--v-gut), (100% - var(--v-max)) / 2) clamp(36px, 4vw, 64px);
}
@media (min-width: 981px) {
  .footer-main { grid-template-columns: minmax(300px, 1.5fr) repeat(2, minmax(160px, .8fr)) minmax(280px, 1.15fr); }
}
.footer-identity { max-width: 520px; }
.footer-brand img { width: clamp(64px, 4.6vw, 88px); height: clamp(64px, 4.6vw, 88px); }
.footer-brand strong { font-size: clamp(26px, 1.9vw, 34px); }
.footer-brand small { font-size: clamp(12px, .83vw, 15px); }
.footer-tagline { margin: 24px 0 12px; font-size: clamp(24px, 1.8vw, 34px); }
.footer-blurb { font-size: var(--v-t16); line-height: 1.6; }
.footer-social { gap: 12px; margin-top: 26px; }
.footer-social a { width: 48px; height: 48px; }
.footer-social svg { width: 20px; height: 20px; }
.footer-col h2 { margin-bottom: 22px; font-size: clamp(12px, .83vw, 15px); }
.footer-col ul { gap: clamp(12px, .9vw, 17px); }
.footer-col ul a { font-size: var(--v-t17); }
.footer-contact .button { --disc: 52px; min-height: 52px; padding: 14px 26px 14px 18px; gap: 12px; font-size: var(--v-t15); letter-spacing: .06em; }
.footer-contact address { margin-bottom: 22px; font-size: var(--v-t17); }
.footer-contact address span { margin-top: 6px; font-size: var(--v-t15); }
.footer-col .footer-line { margin-bottom: 18px; font-size: clamp(18px, 1.3vw, 24px); }
.footer-line small,
.footer-hours small { margin-bottom: 6px; font-size: clamp(11px, .76vw, 13.5px); }
.footer-hours { margin-bottom: 24px; font-size: var(--v-t16); }
.footer-affiliations { gap: 28px; padding: clamp(36px, 3.5vw, 64px) var(--v-gut); }
.footer-aff-label { font-size: clamp(12px, .9vw, 15px); }
.footer-aff-marks { gap: clamp(28px, 6vw, 140px); }
.aff-mark { gap: 24px; max-width: 520px; }
.aff-mark img { width: auto; height: clamp(110px, 8.4vw, 160px); padding: 10px 14px; border-radius: 6px; }
.aff-mark p { font-size: var(--v-t16); }
.aff-mark p span { margin-top: 4px; font-size: var(--v-t15); }
.footer-legal {
  padding: 24px max(var(--v-gut), (100% - var(--v-max)) / 2) 28px;
  padding-right: max(var(--v-gut), (100% - var(--v-max)) / 2, 220px);
  font-size: clamp(11px, .76vw, 13px);
}
@media (max-width: 650px) {
  .footer-legal { padding-right: var(--v-gut); padding-bottom: 96px; }
  .aff-mark img { height: 96px; }
}
