:root {
    --red: #c8102e;          /* Lions red — your accent. Change this and the whole site re-themes. */
    --red-dark: #8a0a1f;
    --black: #0a0a0a;
    --ink: #111111;
    --panel: #161616;
    --panel-2: #1d1d1d;
    --line: #2a2a2a;
    --text: #f5f5f5;
    --muted: #b5b5b5;
    --gold: #d4af37;
    --green: #16a34a;
    --radius: 8px;
    --maxw: 1200px;
    --font-display: "Bebas Neue", "Oswald", "Impact", system-ui, sans-serif;
    --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  }

  /* Reset */
  *,*::before,*::after { box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  body {
    margin: 0;
    font-family: var(--font-body);
    color: var(--text);
    background: var(--black);
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
  }
  img { max-width: 100%; display: block; }
  img.brand-logo { max-width: none; } /* sized in header rules below */
  a { color: inherit; text-decoration: none; }
  button { font: inherit; cursor: pointer; }
  h1,h2,h3,h4 { font-family: var(--font-display); letter-spacing: 0.02em; text-transform: uppercase; margin: 0 0 .5rem; line-height: 1.05; font-weight: 700; }
  h1 { font-size: clamp(2.2rem, 6vw, 4.5rem); }
  h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
  h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); }
  p { margin: 0 0 1rem; color: var(--muted); }
  .container { max-width: var(--maxw); margin: 0 auto; padding: 0 1.25rem; }
  section { padding: clamp(3rem, 8vw, 6rem) 0; }
  .eyebrow { color: var(--red); font-family: var(--font-display); letter-spacing: .25em; font-size: .9rem; }
  .center { text-align: center; }

  /* Buttons */
  .btn {
    display: inline-flex; align-items: center; gap: .5rem;
    padding: .9rem 1.4rem; border-radius: var(--radius); font-weight: 700;
    text-transform: uppercase; letter-spacing: .05em; font-size: .95rem;
    border: 2px solid transparent; transition: transform .15s, background .2s, border-color .2s;
  }
  .btn:hover { transform: translateY(-2px); }
  .btn-primary { background: var(--red); color: #fff; }
  .btn-primary:hover { background: var(--red-dark); }
  .btn-ghost { border-color: #fff3; color: #fff; }
  .btn-ghost:hover { border-color: #fff; background: #ffffff10; }

  /* ----- HEADER / NAV ----- */
  header.site {
    position: fixed; inset: 0 0 auto 0;
    background: rgba(10,10,10,.92); backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--line);
  z-index: 10000;
    overflow: visible;
  isolation: isolate;
  }
  .nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .75rem;
    height: 72px;
    overflow: visible;
  }
  .brand {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    line-height: 0;
    max-height: 72px;
    margin-right: .5rem;
  }
  /* Header — LIONS + MMA CLUB wordmark */
  .brand-logo {
    display: block;
    flex: none;
    height: 46px;
    width: auto;
    max-height: 46px;
    max-width: 160px;
    object-fit: contain;
    object-position: left center;
  }
  .brand-logo--footer {
    display: block;
    width: 180px;
    height: auto;
    max-width: 180px;
    margin-bottom: .5rem;
  }
  @media (min-width: 900px) {
    .nav { height: 76px; }
    .brand { margin-right: 1rem; }
    .brand-logo {
      height: 50px;
      max-height: 50px;
      max-width: 175px;
    }
    .brand-logo--footer {
      width: 200px;
      max-width: 200px;
    }
  }
  .nav ul { display: none; gap: 1.6rem; list-style: none; padding: 0; margin: 0; align-items: center; }
  .nav ul a { text-transform: uppercase; font-size: .85rem; letter-spacing: .1em; font-weight: 600; color: var(--text); }
  .nav ul a:hover { color: var(--red); }
  .lang-switch {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    margin-left: .25rem;
    padding-left: .75rem;
    border-left: 1px solid var(--line);
  }
  .lang-switch a {
    font-size: .72rem;
    letter-spacing: .08em;
    padding: .2rem .35rem;
    opacity: .65;
    text-transform: none;
  }
  .lang-switch a.is-active,
  .lang-switch a[aria-current="page"] {
    color: var(--red);
    opacity: 1;
    font-weight: 700;
  }
  html[lang="zh-Hans"] body {
    font-family: "Noto Sans SC", var(--font-body);
  }
  html[lang="th"] body {
    font-family: "Noto Sans Thai", var(--font-body);
  }
  .nav-ctas {
    display: none;
    align-items: center;
    gap: 0.4rem;
    flex-shrink: 0;
  }
  .nav .cta { display: none; }
  .burger { background: none; border: 0; color: #fff; font-size: 1.6rem; padding: .25rem .5rem; margin-left: auto; }
  @media (min-width: 900px) {
    .nav ul, .nav-ctas { display: flex; }
    .nav-ctas .btn {
      padding: 0.6rem 0.95rem;
      font-size: 0.8rem;
      white-space: nowrap;
    }
    .burger { display: none; }
  }

  /* Mobile menu */
  .mobile-menu {
    display: none; flex-direction: column; gap: 0;
    background: var(--panel); border-bottom: 1px solid var(--line);
  position: relative; z-index: 10001;
  }
  .mobile-menu.open { display: flex; }
  .mobile-menu a { padding: 1rem 1.25rem; border-bottom: 1px solid var(--line); text-transform: uppercase; font-size: .9rem; letter-spacing: .1em; }

  /* ----- HERO ----- */
  .hero {
    position: relative;
    display: flex; flex-direction: column;
    min-height: 100vh; padding-top: 120px; padding-bottom: 0;
    background: var(--black);
    overflow: hidden;  /* keep video bleed clipped */
  }
  .hero .hero-bg {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 110%; /* ~10% bottom cropped by .hero overflow */
    object-fit: cover;
    object-position: center 45%;
    z-index: 0; pointer-events: none;
    background: var(--black);
  }
  .hero::after {
    content: ""; position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(120deg, rgba(10,10,10,.85), rgba(10,10,10,.6) 45%, rgba(10,10,10,.45));
    pointer-events: none;
  }
  .hero > .container {
    position: relative; z-index: 2; flex: 1;
    padding-bottom: clamp(1.5rem, 3vh, 2.5rem);
  }
  .hero .container { display: grid; gap: 2.5rem; align-items: center; }
  @media (min-width: 900px) { .hero .container { grid-template-columns: 1.4fr 1fr; } }
  .hero h1 {
    font-size: clamp(1.35rem, 3.2vw, 2.35rem);
    line-height: 1.12;
    max-width: 22ch;
  }
  @media (min-width: 900px) {
    .hero h1 { max-width: none; }
  }
  .hero-tagline {
    font-family: var(--font-display);
    font-size: clamp(1.45rem, 3.8vw, 2.35rem);
    letter-spacing: 0.02em;
    text-transform: uppercase;
    line-height: 1.08;
    color: #fff;
    margin: 0.65rem 0 0;
    font-weight: 700;
  }
  .hero-tagline span { color: var(--red); }
  .hero .lede { font-size: clamp(1.05rem, 1.6vw, 1.2rem); color: #ddd; max-width: 60ch; }
  .hero-meta { display: flex; flex-wrap: wrap; gap: 1rem 2rem; padding-top: 1.25rem; border-top: 1px solid #ffffff20; margin-top: 1.5rem; }
  .hero-meta div b { display: block; font-family: var(--font-display); font-size: 1.6rem; color: var(--red); }
  .hero-meta div span { font-size: .8rem; text-transform: uppercase; letter-spacing: .15em; color: var(--muted); }
  .hero-cta { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 1.75rem; }

  /* Coach card in hero */
  .coach-card {
    background: linear-gradient(180deg, var(--panel) 0%, var(--ink) 100%);
    border: 1px solid var(--line); border-radius: var(--radius); padding: 1.5rem;
    position: relative; overflow: hidden;
  }
  .coach-card::before {
    content: "7 DISCIPLINES"; position: absolute; top: 12px; right: -34px;
    transform: rotate(35deg); background: var(--red); color: #fff;
    font-family: var(--font-display); padding: .25rem 2.5rem; font-size: .8rem; letter-spacing: .15em;
  }
  .coach-card h4 { color: var(--red); font-size: 1.15rem; }
  .coach-card .role { font-size: .8rem; letter-spacing: .15em; color: var(--muted); text-transform: uppercase; margin-bottom: 1rem; }
  .coach-card ul { list-style: none; padding: 0; margin: 1rem 0 0; display: grid; gap: .5rem; }
  .coach-card ul li::before { content: "▸"; color: var(--red); padding-right: .5rem; }

  /* ----- Trust / Credibility ribbon ----- */
  .trust { background: linear-gradient(180deg, var(--ink), var(--black)); border-block: 1px solid var(--line); }
  .trust .container { display: grid; gap: 1rem; padding-block: 1.5rem; align-items: center; }
  @media (min-width: 800px) { .trust .container { grid-template-columns: repeat(4, 1fr); } }
  .trust-item { display: flex; align-items: center; gap: .75rem; padding: .5rem .25rem; border-right: 1px solid var(--line); }
  .trust-item:last-child { border-right: 0; }
  @media (max-width: 799px) { .trust-item { border-right: 0; border-bottom: 1px solid var(--line); padding-bottom: 1rem; } .trust-item:last-child { border-bottom: 0; } }
  .trust-item .ic {
    width: 40px; height: 40px; flex: 0 0 40px; border-radius: 50%;
    background: var(--panel); border: 1px solid var(--line);
    display: grid; place-items: center; color: var(--red);
  }
  .trust-item .ic svg { width: 22px; height: 22px; display: block; }
  .trust-item .ic.ic-label,
  .info-row .ic.ic-label {
    font-family: var(--font-display); font-size: .65rem; letter-spacing: .08em;
    font-weight: 700;
  }
  .trust-item b { display: block; font-family: var(--font-display); color: #fff; font-size: .95rem; letter-spacing: .1em; line-height: 1.1; }
  .trust-item span { font-size: .72rem; text-transform: uppercase; letter-spacing: .15em; color: var(--muted); }
  .trust .stars { color: var(--gold); letter-spacing: 0; }

  /* ----- Programs ----- */
  .grid-cards { display: grid; gap: 1.25rem; grid-template-columns: repeat(auto-fit, minmax(260px,1fr)); }
  .card {
    background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius);
    padding: 1.5rem; position: relative; transition: border-color .2s, transform .2s;
    overflow: hidden;
  }
  .card:hover { border-color: var(--red); transform: translateY(-4px); }
  .card .card-thumb {
    margin: -1.5rem -1.5rem 1rem; aspect-ratio: 16/10; overflow: hidden;
    border-radius: var(--radius) var(--radius) 0 0;
  }
  .card .card-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
  .card-thumb--bjj img { object-position: center center; }
  .card-thumb--countdown {
    display: flex; align-items: center; justify-content: center;
    background: linear-gradient(145deg, var(--panel-2) 0%, var(--black) 55%, #1a080c 100%);
    border-bottom: 1px solid var(--line);
  }
  .card-thumb--wrestling-poster {
    position: relative;
    background-image: url('assets/images/news/wrestling-new-class.png?v=1');
    background-size: cover;
    background-position: center 42%;
    background-repeat: no-repeat;
  }
  .card-thumb--wrestling-poster::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(8,8,8,.82) 0%, rgba(8,8,8,.5) 45%, rgba(8,8,8,.88) 100%);
    pointer-events: none;
  }
  .card-thumb--wrestling-poster .wrestling-countdown { position: relative; z-index: 1; }
  .wrestling-countdown { width: 100%; padding: 1rem 1.25rem; text-align: center; }
  .wrestling-countdown__label {
    margin: 0 0 .75rem; font-family: var(--font-display); font-size: .95rem;
    letter-spacing: .18em; text-transform: uppercase; color: var(--red);
  }
  .wrestling-countdown__grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: .5rem;
  }
  .wrestling-countdown__grid div {
    background: rgba(0,0,0,.35); border: 1px solid var(--line); border-radius: var(--radius);
    padding: .55rem .35rem;
  }
  .wrestling-countdown__grid b {
    display: block; font-family: var(--font-display); font-size: clamp(1.6rem, 4vw, 2.2rem);
    line-height: 1; color: #fff; font-weight: 700;
  }
  .wrestling-countdown__grid span {
    display: block; margin-top: .2rem; font-size: .65rem; text-transform: uppercase;
    letter-spacing: .12em; color: var(--muted);
  }
  .wrestling-countdown.is-live .wrestling-countdown__grid { display: none; }
  .wrestling-countdown.is-live .wrestling-countdown__label {
    margin: 0; font-size: clamp(1.1rem, 3vw, 1.35rem); color: #fff;
  }
  .card h3 { color: #fff; }
  .card a.more { color: var(--red); font-weight: 700; text-transform: uppercase; font-size: .85rem; letter-spacing: .1em; }
  .card a.more + a.more { display: block; margin-top: .35rem; }

  /* ----- About ----- */
  .about { background: var(--ink); }
  .about .grid { display: grid; gap: 2.5rem; align-items: center; }
  @media (min-width: 900px) { .about .grid { grid-template-columns: 1.1fr 1fr; } }
  .about .img-wrap {
    position: relative; aspect-ratio: 4/3; border-radius: var(--radius); overflow: hidden;
  }
  .about .img-wrap img {
    width: 100%; height: 100%; object-fit: cover; object-position: center center; display: block;
  }
  .about .img-wrap::after {
    content: ""; position: absolute; inset: -8px; border: 3px solid var(--red); border-radius: var(--radius); z-index: -1;
    transform: translate(14px,14px);
  }

  /* ----- Coaches ----- */
  .coach { background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
  .coach .photo { aspect-ratio: 1/1; background: center/cover no-repeat; }
  .coach .body { padding: 1.25rem; }
  .coach .body small { color: var(--red); letter-spacing: .15em; text-transform: uppercase; font-size: .75rem; font-weight: 700; }
  .coach .body h3 { margin: .25rem 0 .5rem; }

  /* ----- Fighters ----- */
  .fighters {
    background: var(--black); position: relative; overflow: hidden;
    padding: clamp(2rem, 5vw, 3.25rem) 0;
  }
  .fighters-intro { margin-bottom: 1.25rem; position: relative; z-index: 1; }
  .fighters-intro h2 { margin-top: .35rem; }
  .fighters-intro p { margin-bottom: 0; font-size: .9rem; line-height: 1.45; }
  .fighters-apply { margin-top: 1.25rem; position: relative; z-index: 1; }
  .fighters-apply p { max-width: 52ch; margin: 0 auto .75rem; font-size: .875rem; color: var(--muted); }
  .fighters::before {
    content: ""; position: absolute; inset: 0;
    background: radial-gradient(circle at 80% 20%, rgba(200,16,46,.15), transparent 50%);
    pointer-events: none;
  }
  /* Featured fighter */
  .featured-fighter {
    display: grid; gap: 0; grid-template-columns: 1fr; margin-bottom: 2.5rem;
    background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius);
    overflow: hidden; position: relative; z-index: 1;
  }
  @media (min-width: 800px) { .featured-fighter { grid-template-columns: 1fr 1.2fr; } }
  .featured-fighter .photo {
    aspect-ratio: 4/3; background: center/cover no-repeat; position: relative;
  }
  .featured-fighter .photo::after {
    content: "FEATURED FIGHTER"; position: absolute; top: 1rem; left: 1rem;
    background: var(--red); color: #fff; padding: .35rem .75rem; border-radius: 4px;
    font-size: .7rem; font-weight: 700; letter-spacing: .15em;
  }
  .featured-fighter .body { padding: 2rem; display: flex; flex-direction: column; justify-content: center; }
  .featured-fighter .nick { color: var(--gold); font-style: italic; margin-bottom: .25rem; }
  .featured-fighter h3 { font-size: clamp(1.8rem, 4vw, 2.6rem); color: #fff; margin-bottom: .5rem; }
  .featured-fighter .record { display: flex; gap: 1.5rem; padding: 1rem 0; border-block: 1px solid var(--line); margin: 1rem 0; }
  .featured-fighter .record div b { display: block; font-family: var(--font-display); font-size: 1.6rem; color: var(--red); line-height: 1; }
  .featured-fighter .record div span { font-size: .7rem; text-transform: uppercase; letter-spacing: .15em; color: var(--muted); }
  .featured-fighter .tags { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1rem; }
  .featured-fighter .tags span { background: var(--ink); border: 1px solid var(--line); padding: .35rem .75rem; border-radius: 100px; font-size: .75rem; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); }

  /* Fighter grid */
  .fighters-grid {
    display: grid; gap: 1.25rem; grid-template-columns: repeat(auto-fit, minmax(240px,1fr));
    position: relative; z-index: 1;
  }
  /* Homepage roster: 3 equal cards, compact layout */
  .fighters-grid--roster {
    max-width: 960px;
    margin-inline: auto;
    gap: .85rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  @media (min-width: 720px) {
    .fighters-grid--roster { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  }
  .fighters-grid--roster .fighter-card .photo { aspect-ratio: 3 / 4; min-height: 220px; }
  .fighters-grid--roster .fighter-card .body { padding: .75rem .85rem; }
  .fighters-grid--roster .fighter-card h4 { font-size: 1.05rem; margin: .2rem 0 .15rem; }
  .fighters-grid--roster .fighter-card .nick { font-size: .8rem; margin-bottom: .35rem; line-height: 1.35; }
  .fighters-grid--roster .fighter-card .record-line { padding-top: .5rem; font-size: .8rem; }
  .fighters-grid--roster .fighter-card .record-line b { font-size: 1rem; }
  .fighters-grid--roster .fighter-card .photo .flag { top: .5rem; right: .5rem; font-size: .75rem; padding: .2rem .4rem; }
  .fighter-card {
    background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius);
    overflow: hidden; transition: border-color .2s, transform .2s;
    display: flex; flex-direction: column;
  }
  .fighter-card:hover { border-color: var(--red); transform: translateY(-4px); }
  .fighter-card .photo {
    aspect-ratio: 3 / 4;
    background-color: var(--panel-2);
    position: relative;
  }
  .fighter-portrait,
  .coach-page-hero__photo.fighter-portrait,
  .coach-index-card .photo.fighter-portrait {
    background-color: var(--panel-2);
    background-size: contain;
    background-position: center bottom;
    background-repeat: no-repeat;
  }
  .fighter-card .photo .flag {
    position: absolute; top: .75rem; right: .75rem;
    background: rgba(0,0,0,.6); padding: .25rem .5rem; border-radius: 4px;
    font-size: .85rem;
  }
  .fighter-card .body { padding: 1.1rem; flex: 1; display: flex; flex-direction: column; }
  .fighter-card .division { color: var(--red); font-size: .7rem; text-transform: uppercase; letter-spacing: .15em; font-weight: 700; }
  .fighter-card h4 { color: #fff; font-size: 1.25rem; margin: .35rem 0 .25rem; }
  .fighter-card .nick { font-style: italic; color: var(--gold); font-size: .85rem; margin-bottom: .75rem; }
  .fighter-card .record-line {
    margin-top: auto; padding-top: .75rem; border-top: 1px solid var(--line);
    display: flex; justify-content: space-between; align-items: center;
    font-size: .85rem;
  }
  .fighter-card .record-line b { color: #fff; font-family: var(--font-display); font-size: 1.1rem; letter-spacing: .05em; }
  .fighter-card .record-line .pro { color: var(--muted); text-transform: uppercase; letter-spacing: .1em; font-size: .7rem; }

  /* ----- Schedule ----- */
  .schedule { background: var(--ink); }
  .schedule-grid { display: grid; gap: .5rem; grid-template-columns: 140px repeat(7, minmax(80px,1fr)); overflow-x: auto; }
  .schedule-grid > div { padding: .75rem .5rem; border-radius: 6px; background: var(--panel); font-size: .85rem; text-align: center; }
  .schedule-grid .head { background: var(--red); color: #fff; font-family: var(--font-display); letter-spacing: .15em; }
  .schedule-grid .time { background: transparent; font-weight: 700; text-align: left; padding-left: 0; }
  .schedule-grid .mt { color: #fff; }
  .schedule-grid .bjj { color: var(--gold); }
  .schedule-grid .mma { color: var(--red); }
  .schedule-grid .other { color: #7ec3ff; }
  @media (max-width: 700px) { .schedule-grid { grid-template-columns: 100px repeat(7, 130px); } .schedule { overflow-x: auto; } }

  /* ----- Pricing ----- */
  .price-table-wrap {
    background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius);
    overflow: hidden; max-width: 900px; margin: 0 auto;
  }
  .price-table { width: 100%; border-collapse: collapse; }
  .price-table th {
    background: var(--red); color: #fff; padding: 1rem .9rem;
    font-family: var(--font-display); letter-spacing: .15em; font-size: .85rem;
    text-align: left; text-transform: uppercase;
  }
  .price-table th:not(:first-child) { text-align: center; }
  .price-table td {
    padding: .95rem .9rem; border-bottom: 1px solid var(--line);
    font-size: .95rem; color: var(--muted);
  }
  .price-table td:first-child { color: #fff; font-weight: 600; }
  .price-table td:not(:first-child) { text-align: center; font-family: var(--font-display); letter-spacing: .05em; font-size: 1.05rem; }
  .price-table tbody tr:last-child td { border-bottom: 0; }
  .price-table tbody tr:hover { background: rgba(255,255,255,.02); }
  .price-table tr.featured td { background: rgba(200,16,46,.08); color: #fff; }
  .price-table tr.featured td:first-child { color: var(--red); }
  .price-table tr.featured td:not(:first-child) { color: #fff; font-weight: 700; }
  .price-table .dash { color: #444; }
  @media (max-width: 700px) {
    .price-table th, .price-table td { padding: .65rem .45rem; font-size: .82rem; }
    .price-table td:not(:first-child) { font-size: .9rem; }
  }
  /* keep legacy class so the old .pricing-grid markup never breaks if reused */
  .pricing-grid { display: grid; gap: 1.25rem; grid-template-columns: repeat(auto-fit, minmax(240px,1fr)); }
  .price {
    background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius);
    padding: 1.75rem 1.25rem; position: relative; text-align: center;
  }
  .price.featured { border-color: var(--red); transform: scale(1.02); }
  .price.featured::before {
    content: "MOST POPULAR"; position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
    background: var(--red); color: #fff; padding: .25rem .75rem; border-radius: 4px;
    font-size: .7rem; letter-spacing: .15em; font-weight: 700;
  }
  .price h3 { color: #fff; }
  .price .amount { font-family: var(--font-display); font-size: 3rem; color: var(--red); margin: .5rem 0 .25rem; }
  .price .amount small { font-size: 1rem; color: var(--muted); }
  .price ul { list-style: none; padding: 0; margin: 1rem 0 1.5rem; text-align: left; }
  .price ul li { padding: .4rem 0; border-bottom: 1px dashed var(--line); font-size: .9rem; color: var(--muted); }
  .price ul li::before { content: "✓"; color: var(--green); margin-right: .5rem; font-weight: 700; }

  /* ----- Facility / Zones (AKA-inspired premium grid) ----- */
  .facility { background: var(--black); position: relative; overflow: hidden; }
  .facility::before {
    content: ""; position: absolute; inset: 0;
    background: radial-gradient(circle at 15% 30%, rgba(200,16,46,.12), transparent 55%);
    pointer-events: none;
  }
  .facility-intro {
    display: grid; gap: 1.25rem; align-items: end; margin-bottom: 2.5rem; position: relative; z-index: 1;
  }
  @media (min-width: 800px) { .facility-intro { grid-template-columns: 1.4fr 1fr; gap: 3rem; } }
  .facility-intro p { max-width: 56ch; }
  .award-badge {
    background: linear-gradient(180deg, var(--panel), var(--ink));
    border: 1px solid var(--gold); border-radius: var(--radius);
    padding: 1.25rem; display: flex; gap: 1rem; align-items: center;
  }
  .award-badge .star {
    width: 56px; height: 56px; flex: 0 0 56px; border-radius: 50%;
    background: var(--gold); color: var(--black); display: grid; place-items: center;
    font-size: 1.8rem; font-weight: 900;
  }
  .award-badge b { display: block; color: var(--gold); font-family: var(--font-display); font-size: 1.05rem; letter-spacing: .1em; line-height: 1.1; }
  .award-badge span { font-size: .8rem; color: var(--muted); text-transform: uppercase; letter-spacing: .12em; }

  .zones-grid { display: grid; gap: 1.25rem; grid-template-columns: repeat(auto-fit, minmax(280px,1fr)); position: relative; z-index: 1; }
  .zone-card {
    background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius);
    overflow: hidden; display: flex; flex-direction: column;
    transition: transform .25s, border-color .25s;
  }
  .zone-card:hover { transform: translateY(-4px); border-color: var(--red); }
  .zone-card .photo {
    aspect-ratio: 16/10; position: relative; overflow: hidden;
  }
  .zone-card .photo img {
    position: absolute; inset: 0; width: 100%; height: 100%;
    object-fit: cover; object-position: center center; display: block;
    image-rendering: auto;
  }
  .zone-card .photo.zone-photo--mat {
    aspect-ratio: 21/9;
  }
  .zone-card .photo.zone-photo--mat img {
    object-position: center 42%;
  }
  .zone-card .photo.zone-photo--recovery img {
    object-position: center 55%;
  }
  .zone-card .photo::after {
    content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
    background: linear-gradient(180deg, transparent 55%, rgba(0,0,0,.72));
  }
  .zone-card .photo .badge {
    position: absolute; top: .85rem; left: .85rem; z-index: 2;
    background: var(--red); color: #fff; padding: .3rem .65rem; border-radius: 4px;
    font-size: .7rem; letter-spacing: .15em; font-weight: 700;
  }
  .zone-card .photo .ttl {
    position: absolute; left: 1rem; right: 1rem; bottom: .8rem; z-index: 2;
    font-family: var(--font-display); color: #fff; font-size: 1.6rem; letter-spacing: .05em;
  }
  .zone-card .body { padding: 1.1rem 1.25rem; flex: 1; }
  .zone-card .body p { margin: 0 0 .85rem; font-size: .92rem; }
  .zone-card .specs { display: flex; flex-wrap: wrap; gap: .4rem; }
  .zone-card .specs span {
    background: var(--ink); border: 1px solid var(--line); padding: .25rem .6rem;
    border-radius: 100px; font-size: .72rem; color: var(--muted);
    text-transform: uppercase; letter-spacing: .1em;
  }
  .zone-card.coming { opacity: .85; }
  .zone-card.coming .badge { background: var(--gold); color: var(--black); }

  /* ----- Private classes (schedule page; was homepage section) ----- */
  .private-classes {
    margin-top: clamp(2.5rem, 6vw, 3.5rem);
    padding-top: clamp(2rem, 5vw, 3rem);
    border-top: 1px solid var(--line);
  }
  #pricing > .container > .private-classes {
    margin-left: -1.25rem;
    margin-right: -1.25rem;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
    background: var(--ink);
  }
  @media (min-width: 1240px) {
    #pricing > .container > .private-classes {
      margin-left: 0;
      margin-right: 0;
      border-radius: var(--radius);
    }
  }
  .private-grid {
    display: grid; gap: 1.5rem;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
  .private-card {
    background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius);
    padding: clamp(1.35rem, 3vw, 1.75rem);
    display: flex; flex-direction: column;
    transition: border-color .2s, transform .2s;
  }
  .private-card:hover { border-color: #fff2; transform: translateY(-3px); }
  .private-tag {
    display: inline-block; margin-bottom: .5rem;
    font-family: var(--font-display); font-size: .78rem; letter-spacing: .2em;
    color: var(--gold); font-weight: 700;
  }
  .private-card h3,
  .private-card h4 { color: #fff; margin-bottom: .5rem; }
  .private-price {
    margin: 0 0 1rem;
    padding: .85rem 1rem;
    background: var(--ink);
    border: 1px solid var(--line);
    border-radius: 8px;
  }
  .private-price dt {
    font-size: .72rem;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: var(--muted);
    margin-bottom: .35rem;
  }
  .private-price dd {
    margin: 0;
    font-family: var(--font-display);
    font-size: 1.35rem;
    color: var(--red);
    letter-spacing: .06em;
    line-height: 1.2;
  }
  .private-price dd + dt { margin-top: .65rem; }
  .private-price dd span {
    display: block;
    font-family: var(--font-body);
    font-size: .78rem;
    color: var(--muted);
    letter-spacing: .04em;
    margin-top: .2rem;
  }
  .private-card p { margin: 0 0 1rem; font-size: .95rem; }
  .private-card ul {
    list-style: none; padding: 0; margin: 0 0 1.5rem; flex: 1;
  }
  .private-card ul li {
    padding: .35rem 0; font-size: .88rem; color: var(--muted);
    border-bottom: 1px dashed var(--line);
  }
  .private-card ul li::before { content: "— "; color: var(--red); font-weight: 700; }
  .private-cta { display: flex; flex-wrap: wrap; gap: .75rem; }
  .private-note {
    margin-top: 2rem; font-size: .88rem; color: var(--muted); max-width: 52ch;
    margin-inline: auto;
  }

  /* ----- Testimonials ----- */
  .quotes { display: grid; gap: 1.25rem; grid-template-columns: repeat(auto-fit, minmax(280px,1fr)); }
  .quote { background: var(--panel); border-left: 4px solid var(--red); padding: 1.5rem; border-radius: var(--radius); }
  .quote p { color: #ddd; font-style: italic; }
  .quote .who { display: flex; align-items: center; gap: .75rem; margin-top: 1rem; }
  .quote .who .av { width: 44px; height: 44px; border-radius: 50%; background: var(--red); display: grid; place-items: center; font-weight: 700; }
  .quote .who b { display: block; color: #fff; font-style: normal; }
  .quote .who span { font-size: .8rem; color: var(--muted); }
  .stars-q { color: var(--gold); margin-bottom: .5rem; }

  /* Reviews section — compact like fighters */
  .reviews-section {
    background: var(--ink);
    padding: clamp(2rem, 5vw, 3.25rem) 0;
  }

  .google-reviews-widget {
    margin: 0 auto 2rem;
    max-width: 920px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
  }

  .google-reviews-widget iframe {
    display: block;
    width: 100%;
    height: 360px;
    border: 0;
    background: #111;
  }

  .map-open-google {
    margin: 0;
    padding: 0.65rem 1rem;
    text-align: center;
    font-size: 0.85rem;
    background: rgba(255, 255, 255, 0.04);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .map-open-google a {
    color: var(--red);
    font-weight: 600;
  }
  .reviews-intro { margin-bottom: 0.75rem; }
  .reviews-intro h2 { margin-top: .25rem; margin-bottom: 0; }
  .reviews-intro .eyebrow { display: block; margin-bottom: 0; }
  .reviews-rating {
    font-size: 1.15rem;
    font-family: var(--font-display);
    letter-spacing: .05em;
    color: var(--gold);
    margin: 0.4rem 0 0;
  }
  .reviews-count { font-size: .85rem; color: var(--muted); margin: 0.25rem 0 0; }
  .reviews-count strong { color: #fff; }
  .reviews-write { margin-top: 0.65rem; margin-bottom: 0; }
  .reviews-footer { margin-top: 1rem; }

  .google-reviews-panel {
    display: grid;
    gap: 0.75rem;
    margin: 1rem auto 1.25rem;
    max-width: 920px;
    align-items: stretch;
  }
  @media (min-width: 768px) {
    .google-reviews-panel {
      grid-template-columns: 200px 1fr;
      gap: 1rem;
    }
  }
  .google-reviews-badge {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.2rem;
    padding: 1rem 1rem;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: linear-gradient(145deg, rgba(255,255,255,.05), rgba(0,0,0,.3));
    text-decoration: none;
    color: #fff;
    transition: border-color .2s;
  }
  .google-reviews-badge:hover {
    border-color: var(--gold);
    transform: none;
  }
  .google-reviews-badge__g {
    font-family: Georgia, serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
  }
  .google-reviews-badge__score {
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.02em;
  }
  .google-reviews-badge__meta {
    font-size: 0.82rem;
    color: var(--muted);
  }
  .google-reviews-badge__cta {
    margin-top: 0.35rem;
    font-size: 0.78rem;
    color: var(--red);
    font-weight: 600;
  }
  .google-reviews-embed {
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--line);
    background: #111;
    height: 200px;
  }
  @media (min-width: 768px) {
    .google-reviews-embed { height: 220px; }
  }
  .google-reviews-embed iframe {
    display: block;
    width: 100%;
    height: 200px;
    border: 0;
  }
  @media (min-width: 768px) {
    .google-reviews-embed iframe { height: 220px; }
  }

  .btn-pay-nav {
    letter-spacing: 0.04em;
    text-transform: uppercase;
    border-color: var(--gold);
    color: var(--gold);
  }
  .btn-pay-nav:hover {
    background: rgba(212, 175, 55, 0.12);
    color: #fff;
  }

  .footer-business {
    margin-top: 1.25rem;
    padding-top: 1rem;
    border-top: 1px solid var(--line);
    font-size: 0.8rem;
    color: var(--muted);
    line-height: 1.5;
  }
  .footer-business p { margin: 0 0 0.4rem; }
  .footer-business p:last-child { margin-bottom: 0; }
  .footer-business strong { color: #ccc; }
  .footer-social-trust a {
    color: var(--gold);
    font-weight: 600;
  }
  .footer-social-trust a:hover { color: var(--red); }

  .payment-success-hero {
    padding-top: 120px !important;
    padding-bottom: 2.5rem !important;
    min-height: 0 !important;
  }
  .payment-success-inner {
    max-width: 640px;
    margin-inline: auto;
  }
  .payment-success-hero .lede {
    margin-bottom: 0;
    max-width: 40ch;
  }
  .payment-success-steps {
    margin-top: 1.5rem;
    padding: 1.15rem 1.1rem;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(0,0,0,.45);
    text-align: left;
  }
  .payment-success-steps h2 {
    font-family: var(--font-display, "Bebas Neue", sans-serif);
    font-size: 1.35rem;
    letter-spacing: 0.06em;
    margin: 0 0 0.75rem;
    color: var(--gold);
  }
  .payment-success-steps ol {
    margin: 0;
    padding-left: 1.15rem;
    color: var(--text);
  }
  .payment-success-steps li {
    margin-bottom: 0.65rem;
    font-size: 0.92rem;
    line-height: 1.45;
  }
  .payment-success-steps li:last-child {
    margin-bottom: 0;
  }
  .quotes--reviews {
    gap: .85rem;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  }
  .quotes--reviews .quote {
    padding: 1rem 1.1rem;
    border-left-width: 3px;
  }
  .quotes--reviews .quote p {
    font-size: .875rem;
    line-height: 1.45;
    margin: 0;
  }
  .quotes--reviews .stars-q { font-size: .85rem; margin-bottom: .35rem; }
  .quotes--reviews .quote .who { margin-top: .75rem; gap: .6rem; }
  .quotes--reviews .quote .who .av {
    width: 36px;
    height: 36px;
    font-size: .8rem;
  }
  .quotes--reviews .quote .who b { font-size: .9rem; }
  .quotes--reviews .quote .who span { font-size: .75rem; }

  /* ----- FAQ ----- */
  details { background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); padding: 1rem 1.25rem; margin-bottom: .75rem; }
  details summary { cursor: pointer; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; list-style: none; display: flex; justify-content: space-between; align-items: center; }
  details summary::after { content: "+"; font-size: 1.5rem; color: var(--red); }
  details[open] summary::after { content: "−"; }
  details p { margin-top: .75rem; }

  /* ----- Contact ----- */
  .contact { background: var(--ink); }
  .contact-grid { display: grid; gap: 2rem; }
  @media (min-width: 900px) { .contact-grid { grid-template-columns: 1fr 1fr; } }

  .contact-page { padding: clamp(2rem, 5vw, 3.5rem) 0; background: var(--ink); }
  .contact-wa-banner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
    padding: 1.5rem 1.75rem;
    margin-bottom: 2.5rem;
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: var(--panel);
  }
  .contact-form-panel {
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 1.75rem;
  }
  .contact-form label {
    display: block;
    margin: 1rem 0 0.35rem;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--muted);
  }
  .contact-form label:first-of-type { margin-top: 0; }
  .contact-form input,
  .contact-form select,
  .contact-form textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    border: 1px solid var(--line);
    background: var(--ink);
    color: var(--text);
    font-family: var(--font-body);
    font-size: 1rem;
  }
  .contact-form input:focus,
  .contact-form select:focus,
  .contact-form textarea:focus {
    outline: 2px solid var(--red);
    border-color: var(--red);
  }

.contact-form-status {
  margin-top: .9rem;
  padding: .7rem .9rem;
  border-radius: 8px;
  border: 1px solid rgba(22, 163, 74, 0.35);
  background: rgba(22, 163, 74, 0.12);
  color: #d6f5df;
  font-size: .9rem;
}
  .info-row { display: flex; gap: .9rem; padding: 1rem 0; border-bottom: 1px solid var(--line); align-items: flex-start; }
  .info-row > .ic {
    flex: 0 0 40px;
    width: 40px; height: 40px;
    border-radius: 50%;
    background: var(--panel);
    border: 1px solid var(--line);
    display: grid; place-items: center;
    color: var(--red);
  }
  .info-row > .ic svg { display: block; }
  .info-row b { color: #fff; display: block; font-size: .85rem; letter-spacing: .1em; text-transform: uppercase; }
  .info-row span { color: var(--muted); font-size: .95rem; }

  .social--icons { display: flex; flex-wrap: wrap; gap: .5rem; }
  .social--icons a {
    display: inline-flex; align-items: center; gap: .5rem;
    padding: .55rem .9rem;
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: 100px;
    color: var(--text);
    font-size: .82rem;
    text-transform: uppercase;
    letter-spacing: .1em;
    font-weight: 600;
    transition: background .15s, border-color .15s, color .15s, transform .15s;
  }
  .social--icons a:hover {
    background: var(--red);
    border-color: var(--red);
    color: #fff;
    transform: translateY(-1px);
  }
  .social--icons a svg { transition: transform .15s; }
  .social--icons a:hover svg { transform: scale(1.1); }

  /* ----- Booking modal ----- */
  .modal-bg { position: fixed; inset: 0; background: rgba(0,0,0,.8); display: none; align-items: center; justify-content: center; z-index: 100; padding: 1rem; }
  .modal-bg.open { display: flex; }
  .modal { background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); padding: 2rem; max-width: 500px; width: 100%; position: relative; }
  .modal h2 { color: #fff; }
  .modal .close { position: absolute; top: 1rem; right: 1rem; background: none; border: 0; color: #fff; font-size: 1.6rem; }
  .modal label { display: block; margin: 1rem 0 .35rem; font-size: .85rem; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); }
  .modal input, .modal select, .modal textarea {
    width: 100%; padding: .8rem; background: var(--ink); border: 1px solid var(--line); border-radius: 6px;
    color: #fff; font: inherit;
  }
  .modal input:focus, .modal select:focus, .modal textarea:focus { outline: 2px solid var(--red); border-color: var(--red); }
  .fighters-apply .btn-primary { min-width: 14rem; }
  .apply-form-msg { margin-top: .75rem; font-size: .85rem; text-align: center; }
  .apply-form-msg--error { color: var(--red); }
  .apply-success { text-align: center; padding: .5rem 0; }
  .apply-success .eyebrow { color: var(--gold); }

  /* ----- Sticky CTA ----- */
  .sticky-cta {
    position: fixed;
    bottom: calc(1rem + env(safe-area-inset-bottom, 0px));
    right: calc(1rem + env(safe-area-inset-right, 0px));
    z-index: 40;
    background: var(--red); color: #fff; padding: 0.9rem 1.2rem;
    border-radius: 100px; font-weight: 700; text-transform: uppercase;
    font-size: 0.85rem;
    box-shadow: 0 8px 30px rgba(200,16,46,.4); display: flex; gap: .5rem; align-items: center;
    border: 0;
  }
  .sticky-cta:hover { background: var(--red-dark); }
  @media (max-width: 600px) {
    .sticky-cta {
      left: max(1rem, env(safe-area-inset-left, 0px));
      right: max(1rem, env(safe-area-inset-right, 0px));
      justify-content: center;
    }
  }

  /* ----- WhatsApp float ----- */
  .whats {
    position: fixed; bottom: 1rem; left: 1rem; z-index: 40;
    width: 56px; height: 56px; border-radius: 50%; background: #25d366; display: grid; place-items: center;
    box-shadow: 0 6px 20px rgba(0,0,0,.4);
  }
  @media (max-width: 600px) { .whats { display: none; } }

  /* ----- Footer ----- */
  footer {
    position: relative;
    z-index: 5;
    background: #000;
    padding: 2.5rem 0 2rem;
    border-top: 1px solid var(--line);
  }
  footer .grid {
    display: grid;
    gap: 1.75rem;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
  footer h4 { color: #fff; font-size: 1rem; margin: 0 0 0.75rem; }
  footer ul { list-style: none; padding: 0; margin: 0; }
  footer ul li {
    color: var(--muted);
    font-size: 0.9rem;
    padding: 0.2rem 0;
    line-height: 1.4;
  }
  footer ul li a { color: var(--muted); padding: 0.2rem 0; display: block; }
  footer ul li a:hover { color: var(--red); }
  footer .social { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 0.75rem; }
  footer .grid > div > p { margin-bottom: 0.75rem; }
  footer .social a {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: var(--panel);
    border: 1px solid var(--line);
    display: grid; place-items: center;
    color: var(--text);
    transition: background .15s, border-color .15s, color .15s, transform .15s;
  }
  footer .social a svg { display: block; width: 20px; height: 20px; }
  footer .social a:hover { background: var(--red); border-color: var(--red); color: #fff; transform: translateY(-1px); }
  .legal {
    border-top: 1px solid var(--line);
    margin-top: 1.25rem;
    padding-top: 1rem;
    text-align: center;
    color: var(--muted);
    font-size: .85rem;
    line-height: 1.45;
  }

  /* Room above sticky mobile CTA so footer text is never hidden */
  body:has(.sticky-cta) footer {
    padding-bottom: calc(2rem + env(safe-area-inset-bottom, 0px));
  }
  @media (max-width: 600px) {
    body:has(.sticky-cta) footer {
      padding-bottom: calc(6.5rem + env(safe-area-inset-bottom, 0px));
    }
    footer {
      scroll-margin-bottom: 6rem;
    }
    .sticky-cta {
      padding: 0.85rem 1rem;
      font-size: 0.82rem;
    }
  }
  html.cookie-banner-open body:has(.sticky-cta) footer {
    padding-bottom: calc(10.5rem + env(safe-area-inset-bottom, 0px));
  }

/* ============================================================
   PROGRAM SUB-PAGE STYLES
   Used on muay-thai.html, bjj-gi.html, kids-bjj.html,
   mma-amateur.html, mma-pro.html, boxing.html
   ============================================================ */

.program-hero {
  padding-top: 140px;
  padding-bottom: 4rem;
  background:
    linear-gradient(120deg, rgba(10,10,10,.93), rgba(10,10,10,.7) 55%, rgba(10,10,10,.5)),
    var(--ph, none) center/cover no-repeat,
    linear-gradient(180deg, var(--ink), var(--black));
  border-bottom: 1px solid var(--line);
  position: relative;
}
.program-hero .back-link {
  display: inline-flex; align-items: center; gap: .5rem;
  color: var(--muted); text-transform: uppercase; letter-spacing: .15em;
  font-size: .8rem; margin-bottom: 1rem;
}
.program-hero .back-link:hover { color: var(--red); }
.program-hero h1 { font-size: clamp(2.4rem, 6vw, 4.5rem); }
.program-hero h1 span { color: var(--red); }
.program-hero .lede { font-size: clamp(1.05rem, 1.6vw, 1.2rem); color: #ddd; max-width: 60ch; }
.program-hero .meta {
  display: flex; flex-wrap: wrap; gap: 1.5rem 2.5rem;
  padding: 1.25rem 0; margin: 1.5rem 0;
  border-block: 1px solid #ffffff22;
}
.program-hero .meta div b { display: block; font-family: var(--font-display); color: var(--red); font-size: 1.6rem; line-height: 1; }
.program-hero .meta div span { font-size: .75rem; text-transform: uppercase; letter-spacing: .15em; color: var(--muted); }
.program-hero .cta-row { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 1.5rem; }
.program-hero--kids { background-position: center, center 40%, center; }
.program-hero--muay-thai { background-position: center, center 45%, center; }
.program-hero--mma-pro { background-position: center, center 35%, center; }
.program-hero--mma-amateur { background-position: center, center 40%, center; }
.program-hero--bjj { background-position: center, center center, center; }
.program-hero--wrestling { background-position: center, center top, center; }

/* Kids BJJ — point parents to lionskidsbjj.com */
.kids-parent-link {
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(90deg, rgba(40,10,16,.65), var(--panel) 50%, var(--black));
}
.kids-parent-link .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.kids-parent-link p {
  margin: 0;
  max-width: 50ch;
  font-size: .92rem;
  line-height: 1.45;
  color: #ccc;
}
.kids-parent-link p strong { color: var(--gold); }
.program-hero--contact { background-position: center, center 38%, center; }

/* Schedule & pricing — text-only page header (no hero image) */
.page-header {
  padding-top: calc(72px + clamp(1.75rem, 4vw, 2.5rem));
  padding-bottom: clamp(1.75rem, 4vw, 2.5rem);
  background: var(--ink);
  border-bottom: 1px solid var(--line);
}
.page-header .back-link {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .15em;
  font-size: .8rem;
  margin-bottom: 1rem;
}
.page-header .back-link:hover { color: var(--red); }
.page-header h1 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  margin: .35rem 0 0;
  max-width: 18ch;
}
.page-header h1 span { color: var(--red); }
.page-header-lede {
  margin: 1rem 0 0;
  max-width: 62ch;
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: #ccc;
  line-height: 1.55;
}
.page-header .meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem 2rem;
  padding: 1.25rem 0;
  margin: 1.5rem 0 0;
  border-block: 1px solid var(--line);
}
.page-header .meta div b {
  display: block;
  font-family: var(--font-display);
  color: var(--red);
  font-size: 1.45rem;
  line-height: 1;
}
.page-header .meta div span {
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--muted);
}
.page-header .cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
  margin-top: 1.25rem;
}

body.page-schedule section.page-header {
  padding-block: calc(72px + clamp(1.5rem, 3vw, 2rem)) clamp(1.25rem, 3vw, 1.75rem);
}

body.page-schedule section.schedule {
  padding-top: clamp(1.25rem, 3vw, 2rem);
}

.program-detail { background: var(--black); }
.program-detail .grid { display: grid; gap: 2.5rem; }
@media (min-width: 900px) { .program-detail .grid { grid-template-columns: 1.2fr 1fr; } }
.program-detail h2 { color: #fff; }
.program-detail ul.tick { list-style: none; padding: 0; margin: 1rem 0 0; display: grid; gap: .65rem; }
.program-detail ul.tick li { display: flex; gap: .75rem; align-items: flex-start; color: #ddd; }
.program-detail ul.tick li::before { content: "▸"; color: var(--red); font-weight: 700; flex: 0 0 auto; }
.program-detail aside {
  background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.5rem;
}
.program-detail aside h3 { color: #fff; font-size: 1.15rem; margin-bottom: .75rem; }
.program-detail aside p { font-size: .95rem; }
.program-detail aside .pill {
  display: inline-block; background: var(--ink); border: 1px solid var(--line);
  padding: .3rem .65rem; border-radius: 100px; font-size: .72rem;
  text-transform: uppercase; letter-spacing: .12em; color: var(--muted);
  margin: .25rem .25rem 0 0;
}

.program-times { background: var(--ink); }
.program-times h2 { color: #fff; }
.program-times .row {
  display: grid; grid-template-columns: 1fr; gap: .75rem;
  margin-top: 1.5rem;
}
.program-times .slot {
  background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1rem 1.25rem; display: flex; flex-wrap: wrap; align-items: center; gap: 1rem;
  justify-content: space-between;
}
.program-times .slot b {
  font-family: var(--font-display); color: var(--red);
  font-size: 1.4rem; letter-spacing: .05em; min-width: 90px;
}
.program-times .slot .what { color: #fff; font-weight: 600; flex: 1; min-width: 180px; }
.program-times .slot .days { color: var(--muted); font-size: .85rem; text-transform: uppercase; letter-spacing: .12em; }

.program-pricing-mini { background: var(--black); }
.program-pricing-mini .tiers {
  display: grid; gap: 1rem; grid-template-columns: repeat(auto-fit, minmax(200px,1fr));
  max-width: 800px; margin: 1.5rem auto 0;
}
.program-pricing-mini .tier {
  background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.5rem 1rem; text-align: center;
}
.program-pricing-mini .tier.featured { border-color: var(--red); }
.program-pricing-mini .tier small { color: var(--muted); text-transform: uppercase; letter-spacing: .15em; font-size: .72rem; font-weight: 700; }
.program-pricing-mini .tier .amt { font-family: var(--font-display); color: var(--red); font-size: 2.4rem; line-height: 1; margin: .5rem 0 .25rem; }
.program-pricing-mini .tier .per { color: var(--muted); font-size: .8rem; }
.program-pricing-mini .tier .btn-stripe {
  display: inline-flex; margin-top: 1rem; width: 100%; justify-content: center;
  font-size: .78rem; padding: .65rem .75rem;
}
.program-pricing-mini .tier .pay-at-gym {
  display: block; margin-top: 1rem; font-size: .72rem; color: var(--muted);
  text-transform: uppercase; letter-spacing: .08em; font-weight: 600;
}
.program-pricing-mini .program-pay-all .btn-stripe { margin-top: 0; width: auto; max-width: 100%; }

.program-coaches {
  background: var(--ink);
  border-top: 1px solid var(--line);
}
.program-coaches .section-intro { margin-bottom: 2rem; }
.program-coaches .section-intro p {
  max-width: 62ch;
  margin-inline: auto;
  color: var(--muted);
  font-size: .95rem;
}
.program-coaches-subhead { margin-bottom: 1.25rem; }
.program-coach-strip--featured { margin-bottom: 2.5rem; }
.program-coach-strip--featured .row { background: transparent; border: 0; padding: 0; }
.program-coach-strip .av.av--mustapha {
  background-image: url('assets/images/coaches/mustapha.png?v=4');
  background-position: center 20%;
}

.program-coaches-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
}
@media (min-width: 700px) {
  .program-coaches-grid { grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); }
}

.program-coach-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  text-align: center;
}
.program-coach-card .photo {
  aspect-ratio: 1 / 1;
  background: var(--panel);
  overflow: hidden;
}
.program-coach-card .photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
}
.program-coach-card .body { padding: .9rem .75rem 1rem; }
.program-coach-card h3 {
  margin: 0 0 .35rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: .05em;
  color: #fff;
}
.program-coach-card p { margin: 0; font-size: .78rem; color: var(--muted); }

.program-coach-strip { background: var(--ink); }
.program-coach-strip .row {
  display: grid; gap: 1.25rem; align-items: center;
  background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.5rem;
}
@media (min-width: 700px) { .program-coach-strip .row { grid-template-columns: 100px 1fr auto; } }
.program-coach-strip .av {
  width: 90px; height: 90px; border-radius: 50%; background-size: cover; background-position: center 20%; background-repeat: no-repeat;
  border: 3px solid var(--red);
}
.program-coach-strip .av.av--roger {
  width: 120px; height: 120px;
  background-size: 115%;
  background-position: center 18%;
}
@media (min-width: 700px) {
  .program-coach-strip--roger .row { grid-template-columns: 120px 1fr auto; }
}
.coach .photo.coach-photo--roger {
  background-size: 118%;
  background-position: center 18%;
}
.program-coach-strip small { color: var(--red); letter-spacing: .15em; text-transform: uppercase; font-size: .72rem; font-weight: 700; }
.program-coach-strip h3 { color: #fff; margin: .25rem 0; }
.program-coach-strip p { margin: 0; font-size: .9rem; }

.program-other { background: var(--black); border-top: 1px solid var(--line); }
.program-other .grid {
  display: grid; gap: .75rem; grid-template-columns: repeat(auto-fit, minmax(150px,1fr)); margin-top: 1.5rem;
}
.program-other a {
  background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius);
  padding: .9rem 1rem; text-align: center; display: block;
  font-family: var(--font-display); letter-spacing: .1em; font-size: .9rem;
  transition: border-color .2s, background .2s, color .2s;
}
.program-other a:hover { border-color: var(--red); color: var(--red); }
.program-other a.current { background: var(--red); color: #fff; border-color: var(--red); pointer-events: none; }

/* ============================================================
   PROGRAMS HOVER DROPDOWN (desktop nav)
   ============================================================ */
.nav .has-dropdown { position: relative; }
.nav .has-dropdown > a { display: inline-flex; align-items: center; gap: .35rem; }
.nav .has-dropdown > a .caret {
  font-size: .65rem; line-height: 1; transition: transform .2s;
  position: relative; top: 1px;
}
.nav .has-dropdown:hover > a .caret,
.nav .has-dropdown:focus-within > a .caret { transform: rotate(180deg); }

.nav .dropdown {
  /* Override the parent .nav ul flex */
  display: block !important;
  position: absolute; top: calc(100% + .25rem); left: 0;
  min-width: 220px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: .4rem 0;
  margin: 0;
  list-style: none;
  box-shadow: 0 16px 40px rgba(0,0,0,.5);
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s;
  z-index: 10002;
}
.nav .has-dropdown:hover .dropdown,
.nav .has-dropdown:focus-within .dropdown {
  opacity: 1; visibility: visible; transform: translateY(0);
}
/* keep the dropdown reachable while the cursor crosses the gap */
.nav .has-dropdown::after {
  content: ""; position: absolute; left: 0; right: 0; top: 100%; height: .5rem;
}
.nav .dropdown li { display: block; }
.nav .dropdown a {
  display: block;
  padding: .65rem 1.1rem;
  font-size: .82rem;
  letter-spacing: .08em;
  white-space: nowrap;
  color: var(--text);
  border-left: 3px solid transparent;
  transition: background .15s, color .15s, border-color .15s;
}
.nav .dropdown a:hover {
  background: rgba(255,255,255,.04);
  color: var(--red);
  border-left-color: var(--red);
}

/* Mobile menu: show program sub-items indented under "Programs" */
.mobile-menu a.mm-sub {
  padding-left: 2.25rem;
  font-size: .8rem;
  background: var(--ink);
  color: var(--muted);
  letter-spacing: .08em;
}
.mobile-menu a.mm-sub:hover { color: var(--red); }

/* ----- DTV banner (homepage compact + full on other pages) ----- */
.dtv-banner {
  display: block; position: relative; overflow: hidden;
  width: 100%;
  margin-top: 72px;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(120deg, rgba(10,10,10,.88) 0%, rgba(10,10,10,.5) 55%, rgba(10,10,10,.7) 100%),
    var(--dtv-bg, url('assets/images/dtv/dtv-hero-thailand.jpg?v=1')) center/cover no-repeat;
  text-decoration: none;
  isolation: isolate;
  z-index: 45;
  cursor: pointer;
  transition: box-shadow .2s, filter .2s;
}
.dtv-banner:hover {
  box-shadow: inset 0 0 0 1px rgba(212,175,55,.4);
  filter: brightness(1.04);
}
.dtv-banner__hit {
  position: absolute; inset: 0;
  z-index: 1;
}
.dtv-banner__hit:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: -4px;
}
.dtv-banner .pulse { pointer-events: auto; position: relative; z-index: 3; }
.dtv-banner__more {
  color: var(--gold); font-weight: 600;
}
.dtv-banner:hover .dtv-banner__more { text-decoration: underline; }
@media (min-width: 900px) { .dtv-banner { margin-top: 76px; } }
.dtv-banner::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 85% 30%, rgba(212,175,55,.22), transparent 55%),
    radial-gradient(circle at 10% 80%, rgba(200,16,46,.15), transparent 50%);
  pointer-events: none; z-index: 0;
}
.dtv-banner .inner {
  position: relative; z-index: 2;
  max-width: var(--maxw); margin: 0 auto;
  display: grid; gap: .75rem; align-items: center;
  pointer-events: none;
}
.dtv-banner .inner > div {
  position: relative;
  z-index: 2;
}
@media (min-width: 800px) { .dtv-banner .inner { grid-template-columns: 1.5fr auto; gap: 1.25rem; } }
.dtv-banner .stamp {
  display: inline-flex; align-items: center;
  background: var(--gold); color: var(--black);
  padding: .2rem .55rem; border-radius: 4px;
  font-family: var(--font-display); letter-spacing: .12em; font-size: .68rem; font-weight: 700;
  text-transform: uppercase; width: max-content; margin-bottom: .4rem;
}
.dtv-banner h2 {
  color: #fff; margin-bottom: .25rem; line-height: 1.05;
}
.dtv-banner h2 span { color: var(--gold); }
.dtv-banner p { color: #ddd; max-width: 52ch; margin: 0; line-height: 1.4; }
.dtv-banner .pulse {
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--red); color: #fff;
  padding: .6rem 1rem; border-radius: 100px;
  font-family: var(--font-display); letter-spacing: .1em; font-weight: 700;
  text-transform: uppercase; box-shadow: 0 6px 18px rgba(200,16,46,.35);
  transition: transform .2s, background .2s;
  white-space: nowrap;
}
.dtv-banner:hover .pulse { transform: translateY(-2px); background: var(--red-dark); }
.dtv-banner .pulse::after { content: " →"; margin-left: .15rem; }
.dtv-banner .badges { display: flex; flex-wrap: wrap; gap: .35rem; margin-top: .6rem; }
.dtv-banner .badges span {
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.18);
  padding: .2rem .5rem; border-radius: 100px; font-size: .65rem; color: #fff;
  text-transform: uppercase; letter-spacing: .07em;
}

/* DTV block inside schedule/pricing page (not under fixed header) */
#pricing .dtv-banner--pricing {
  margin-top: 2.5rem;
  margin-bottom: 0;
  border-radius: 10px;
  overflow: hidden;
}
@media (min-width: 900px) {
  #pricing .dtv-banner--pricing { margin-top: 2.5rem; }
}

/* Homepage: smaller than full banner, still clearly visible */
.dtv-banner--compact {
  min-height: clamp(110px, 14vw, 155px);
}
.dtv-banner--compact .inner {
  padding: clamp(.85rem, 2vw, 1.15rem) 1.25rem;
}
.dtv-banner--compact h2 {
  font-size: clamp(1.15rem, 2.4vw, 1.65rem);
}
.dtv-banner--compact p {
  font-size: clamp(.78rem, 1vw, .88rem);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.dtv-banner--compact .badges span { font-size: .62rem; padding: .15rem .45rem; }
.dtv-banner--compact .pulse {
  font-size: .78rem; padding: .55rem .95rem;
}
@media (max-width: 599px) {
  .dtv-banner--compact .badges span:nth-child(3) { display: none; }
  .dtv-banner--compact .inner { padding-bottom: 1rem; }
}

/* DTV above hero: hero height = viewport minus header + DTV strip */
.dtv-banner--compact + section.hero {
  margin-top: 0;
  padding-top: clamp(2rem, 4vw, 3rem);
  min-height: calc(100dvh - 72px - clamp(110px, 14vw, 155px));
  min-height: calc(100svh - 72px - clamp(110px, 14vw, 155px));
}

/* ----- First-timer strip (footer of hero — does not cover video) ----- */
.hero .beginner-strip {
  position: relative;
  bottom: auto;
  left: auto;
  right: auto;
  margin-top: auto;
}
.beginner-strip {
  z-index: 4;
  width: 100%;
  flex-shrink: 0;
  background: rgba(10, 10, 10, .92);
  border-top: 1px solid rgba(255, 255, 255, .18);
  padding: clamp(0.85rem, 2vw, 1.15rem) 0;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.beginner-strip-inner {
  display: grid; gap: 1rem; align-items: center;
}
@media (min-width: 800px) {
  .beginner-strip-inner { grid-template-columns: 1.4fr auto; gap: 2rem; }
}
.beginner-strip-inner--with-notice {
  grid-template-columns: 1fr;
  align-items: center;
  gap: 0.85rem;
}
@media (min-width: 768px) {
  .beginner-strip-inner--with-notice {
    grid-template-columns: 1fr minmax(260px, 340px);
    gap: 1rem 1.25rem;
  }
  .beginner-strip-inner--with-notice .beginner-strip-copy {
    grid-column: 1;
    grid-row: 1 / 3;
  }
  .beginner-strip-inner--with-notice .site-notice--hero {
    grid-column: 2;
    grid-row: 1;
    align-self: start;
  }
  .beginner-strip-inner--with-notice .beginner-strip-actions {
    grid-column: 2;
    grid-row: 2;
    justify-content: flex-start;
    align-self: start;
  }
}
@media (min-width: 1100px) {
  .beginner-strip-inner--with-notice {
    grid-template-columns: 1.25fr minmax(300px, 360px) auto;
    gap: 1rem 1.5rem;
  }
  .beginner-strip-inner--with-notice .beginner-strip-copy { grid-row: 1; }
  .beginner-strip-inner--with-notice .site-notice--hero {
    grid-column: 2;
    grid-row: 1;
  }
  .beginner-strip-inner--with-notice .beginner-strip-actions {
    grid-column: 3;
    grid-row: 1;
    align-self: center;
    justify-content: flex-end;
  }
}
.beginner-strip .site-notice--hero {
  margin-bottom: 0;
  width: 100%;
  max-width: 360px;
  padding: 0.75rem 1rem;
  flex-direction: column;
  align-items: stretch;
  gap: 0.65rem;
}
.beginner-strip .site-notice--hero .site-notice__copy {
  flex: none;
  min-width: 0;
}
.beginner-strip .site-notice--hero .site-notice__title {
  font-size: 0.88rem;
}
.beginner-strip .site-notice--hero .site-notice__text {
  font-size: 0.75rem;
  line-height: 1.45;
  max-width: none;
}
.beginner-strip .site-notice--hero .site-notice__actions {
  width: 100%;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.beginner-strip .site-notice--hero .site-notice__actions .btn {
  flex: 1 1 auto;
  min-width: 7.5rem;
  font-size: 0.75rem;
  padding: 0.5rem 0.65rem;
}
@media (max-width: 767px) {
  .beginner-strip .site-notice--hero {
    max-width: none;
  }
  .beginner-strip .site-notice--hero .site-notice__text {
    font-size: 0.78rem;
  }
}
.beginner-strip .eyebrow {
  color: var(--gold);
  font-size: .82rem;
  letter-spacing: .2em;
}
.beginner-strip h2 {
  font-size: clamp(1.35rem, 2.8vw, 1.85rem);
  color: #fff;
  margin-top: .3rem;
  text-shadow: 0 1px 12px rgba(0,0,0,.5);
}
.beginner-strip p {
  margin: 0;
  max-width: 55ch;
  color: #e4e4e4;
  font-size: clamp(.92rem, 1.2vw, 1rem);
  line-height: 1.55;
}
.beginner-strip p strong { color: #fff; font-weight: 700; }
.beginner-strip-actions { display: flex; flex-wrap: wrap; gap: .75rem; }
@media (max-width: 599px) {
  .hero-beginner .beginner-strip-actions { width: 100%; }
  .hero-beginner .beginner-strip-actions .btn { flex: 1; justify-content: center; min-width: 9rem; }
}

/* ----- Pricing teaser ----- */
.pricing-strip {
  background: var(--ink);
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  border-bottom: 1px solid var(--line);
}
.pricing-strip-head { margin-bottom: 1.75rem; }
.pricing-strip-head h2 { margin-top: .35rem; color: #fff; }
.pricing-strip-head p { margin: .35rem 0 0; }
.pricing-strip-grid {
  display: grid; gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
}
.price-tile {
  background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.25rem 1rem; text-align: center; transition: border-color .2s;
}
.price-tile:hover { border-color: #fff2; }
.price-tile.highlight { border-color: var(--red); background: linear-gradient(180deg, #1a1012, var(--panel)); }
.price-tile b {
  display: block; font-family: var(--font-display); font-size: clamp(1.8rem, 4vw, 2.4rem);
  color: var(--red); line-height: 1;
}
.price-tile.highlight b { color: #fff; }
.price-tile > span {
  display: block; margin-top: .35rem;
  font-size: .8rem; text-transform: uppercase; letter-spacing: .12em; color: #fff; font-weight: 600;
}
.price-tile small {
  display: block; margin-top: .5rem; font-size: .72rem; color: var(--muted); line-height: 1.35;
}
.price-tile .btn-stripe {
  display: inline-flex; margin-top: .85rem; width: 100%; justify-content: center;
  padding: .55rem .75rem; font-size: .78rem;
}
.btn-stripe,
.btn-pay {
  display: inline-flex; align-items: center; justify-content: center; gap: .35rem;
  background: #635bff; color: #fff !important; border: none;
  font-family: var(--font-display); letter-spacing: .08em; text-transform: uppercase; font-weight: 700;
  border-radius: var(--radius); transition: background .2s, transform .15s, opacity .2s;
  text-decoration: none; cursor: pointer;
}
.btn-stripe:hover,
.btn-pay:hover { background: #4f46e5; color: #fff !important; transform: translateY(-1px); }
.btn-stripe--disabled,
.btn-stripe.btn-stripe--disabled,
.btn-stripe.stripe-pay--pending,
.btn-pay.stripe-pay--pending {
  background: var(--panel-2); border: 1px solid var(--line); color: #888 !important;
  cursor: not-allowed; transform: none; opacity: .85;
}
.btn-stripe--disabled:hover,
.btn-stripe.stripe-pay--pending:hover { background: var(--panel-2); transform: none; }
.btn-stripe--sm { padding: .35rem .55rem; font-size: .68rem; letter-spacing: .06em; min-width: 3.5rem; }
.price-table .price-cell-pay {
  display: flex; flex-direction: column; align-items: center; gap: .4rem;
}
.price-table .price-cell-pay .amt { font-family: var(--font-display); font-size: 1.05rem; color: #fff; }
.price-table td.pay-actions { vertical-align: middle; }
.pay-at-gym {
  display: inline-block; margin-top: .5rem;
  font-size: .72rem; font-weight: 600; letter-spacing: .06em;
  text-transform: uppercase; color: var(--gold);
}
.price-tile .pay-at-gym { margin-top: .85rem; font-size: .78rem; }

.stripe-setup-banner {
  margin: 0 0 1rem; padding: .65rem 1rem; font-size: .82rem; text-align: center;
  background: rgba(99,91,255,.12); border: 1px solid rgba(99,91,255,.35); border-radius: var(--radius);
  color: #ccc;
}

/* Long-term pass cards (schedule.html) */
.longterm-passes {
  margin-top: 2.5rem; padding-top: 2rem;
  border-top: 1px solid var(--line);
}
.longterm-passes-head {
  text-align: center; max-width: 52ch; margin: 0 auto 1.75rem;
}
.longterm-passes-head p {
  margin: .5rem 0 0; font-size: .88rem; color: var(--muted); line-height: 1.5;
}
.longterm-passes-head code { color: #bbb; }
.longterm-grid {
  display: grid; gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
}
.longterm-card {
  container-type: inline-size;
  container-name: longterm-card;
  min-width: 0;
  max-width: 100%;
  padding: 1.1rem 1rem 1rem;
  background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius);
  box-sizing: border-box;
}
.longterm-card--featured {
  border-color: rgba(200,16,46,.45);
  background: linear-gradient(180deg, #1a1012, var(--panel));
  position: relative;
}
.tier-badge--popular {
  display: inline-block;
  background: var(--red);
  color: #fff;
  font-size: .65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .14em;
  padding: .25rem .55rem;
  border-radius: 100px;
  margin-bottom: .5rem;
}
.longterm-card h4 {
  margin: 0; font-size: 1rem; color: #fff; letter-spacing: .04em;
}
.longterm-base {
  margin: .35rem 0 .85rem; font-size: .78rem; color: var(--muted);
}
.longterm-durations {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .5rem;
  width: 100%;
}
/* 4-across only when the card itself is wide enough (not viewport) */
@container longterm-card (min-width: 340px) {
  .longterm-durations {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
.longterm-dur {
  display: flex; flex-direction: column; align-items: stretch; gap: .3rem;
  min-width: 0;
  padding: .5rem .35rem .45rem;
  background: rgba(0,0,0,.25); border-radius: calc(var(--radius) - 2px);
  text-align: center;
  box-sizing: border-box;
}
.longterm-amt {
  font-family: var(--font-display);
  font-size: clamp(.72rem, 3.5cqi, .92rem);
  color: #fff; line-height: 1.15;
  max-width: 100%;
  overflow-wrap: anywhere;
}
.longterm-label {
  font-size: .65rem; text-transform: uppercase; letter-spacing: .06em;
  color: var(--muted); font-weight: 600;
}
.longterm-dur .btn-stripe {
  width: 100%; max-width: 100%; min-width: 0;
  margin-top: .1rem; box-sizing: border-box;
  padding-left: .3rem; padding-right: .3rem;
  font-size: clamp(.58rem, 2.5cqi, .68rem);
}
.longterm-note {
  margin: 1.25rem 0 0; font-size: .75rem; color: var(--muted); text-align: center; line-height: 1.45;
}
.longterm-note code { font-size: .9em; color: #999; }

/* WhatsApp float label */
.whats .whats-label {
  font-family: var(--font-display); font-size: .75rem; letter-spacing: .05em; font-weight: 700;
}

/* Full-size DTV banner (e.g. if used without --compact) */
.dtv-banner:not(.dtv-banner--compact) {
  min-height: clamp(160px, 22vw, 260px);
}
.dtv-banner:not(.dtv-banner--compact) .inner {
  padding: clamp(1.4rem, 3vw, 2.25rem) 1.25rem;
}
.dtv-banner:not(.dtv-banner--compact) h2 {
  font-size: clamp(1.2rem, 2.8vw, 1.95rem);
}
.dtv-banner:not(.dtv-banner--compact) p {
  font-size: clamp(.82rem, 1.1vw, .92rem);
}

/* DTV PAGE styles (uses program-page primitives + a few extras) */
.dtv-steps { display: grid; gap: 1.25rem; grid-template-columns: 1fr; counter-reset: step; }
@media (min-width: 700px) { .dtv-steps { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .dtv-steps { grid-template-columns: repeat(3, 1fr); } }
.dtv-step {
  background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.5rem 1.25rem; position: relative; counter-increment: step;
}
.dtv-step::before {
  content: counter(step, decimal-leading-zero);
  position: absolute; top: 1rem; right: 1rem;
  font-family: var(--font-display); color: var(--red); font-size: 2rem; line-height: 1;
  opacity: .35;
}
.dtv-step h3 { color: #fff; font-size: 1.1rem; }
.dtv-step p { font-size: .92rem; margin: 0; }

.dtv-fact {
  display: grid; gap: 1rem; grid-template-columns: repeat(auto-fit, minmax(180px,1fr));
  margin: 1.5rem 0;
}
.dtv-fact div {
  background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.25rem; text-align: center;
}
.dtv-fact b { display: block; font-family: var(--font-display); color: var(--red); font-size: 1.6rem; line-height: 1; }
.dtv-fact span { font-size: .75rem; text-transform: uppercase; letter-spacing: .15em; color: var(--muted); }

/* ============================================================
   LATEST NEWS — equal cards, full copy visible (no clipping)
   ============================================================ */
.news-section {
  background: var(--ink);
  padding: clamp(2rem, 5vw, 3.25rem) 0;
}
.news-intro { margin-bottom: 1.35rem; }
.news-intro h2 { margin-top: .35rem; }
.news-intro__lede {
  color: var(--muted);
  font-size: .9rem;
  line-height: 1.5;
  max-width: 40ch;
  margin: .6rem auto 0;
}
.news-footer { margin-top: 1.35rem; }
.news-footer--actions {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
  justify-content: center;
  align-items: center;
}
.news-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
  align-items: stretch;
}
@media (min-width: 560px) {
  .news-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1080px) {
  .news-grid { grid-template-columns: repeat(4, 1fr); gap: 1.1rem; }
}
.news-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 0;
  transition: transform .2s, border-color .2s, box-shadow .2s;
  text-decoration: none;
  color: inherit;
}
.news-card:hover {
  transform: translateY(-2px);
  border-color: var(--red);
  box-shadow: 0 8px 24px rgba(0, 0, 0, .35);
}
.news-card .photo {
  aspect-ratio: 16 / 9;
  width: 100%;
  flex-shrink: 0;
  background: center / cover no-repeat;
}
.news-card .photo--pos-high { background-position: center 32%; }
.news-card .photo--pos-mid { background-position: center 38%; }
.news-card .body {
  padding: 1rem 1.05rem 1.1rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 0;
}
.news-card .tag {
  display: block;
  margin-bottom: .4rem;
  font-size: .68rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--muted);
  line-height: 1.35;
}
.news-card .tag b { color: var(--red); font-weight: 700; font-family: var(--font-display); letter-spacing: .12em; }
.news-card h3 {
  color: #fff;
  font-size: clamp(.95rem, 2vw, 1.05rem);
  margin: 0 0 .45rem;
  line-height: 1.35;
}
.news-card p {
  font-size: .84rem;
  line-height: 1.5;
  margin: 0;
  flex: 1;
  color: #ccc;
}
.news-card .more {
  color: var(--red);
  font-weight: 700;
  text-transform: uppercase;
  font-size: .72rem;
  letter-spacing: .1em;
  margin-top: .85rem;
  padding-top: .65rem;
  border-top: 1px solid var(--line);
}

/* ============================================================
   HEAD COACH FEATURED CARD — sits above the coaches grid
   ============================================================ */
.head-coach {
  display: grid; gap: 0; grid-template-columns: 1fr;
  background: linear-gradient(180deg, var(--panel), var(--ink));
  border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; position: relative; margin-bottom: 2rem;
}
@media (min-width: 800px) { .head-coach { grid-template-columns: 1fr 1.4fr; } }

.head-coach .photo {
  aspect-ratio: 4/3; background: center/cover no-repeat; position: relative;
}
.head-coach .photo::after {
  content: "HEAD COACH"; position: absolute; top: 1rem; left: 1rem;
  background: var(--red); color: #fff;
  padding: .35rem .85rem; border-radius: 4px;
  font-family: var(--font-display); letter-spacing: .15em; font-size: .75rem; font-weight: 700;
}
.head-coach .photo .belt {
  position: absolute; bottom: 1rem; left: 1rem; right: 1rem;
  display: flex; gap: .4rem; flex-wrap: wrap;
}
.head-coach .photo .belt span {
  background: rgba(0,0,0,.65); border: 1px solid var(--gold); color: var(--gold);
  padding: .25rem .65rem; border-radius: 100px;
  font-size: .72rem; text-transform: uppercase; letter-spacing: .12em; font-weight: 700;
}

.head-coach .body { padding: 2rem 1.75rem; display: flex; flex-direction: column; justify-content: center; }
.head-coach .role { color: var(--red); letter-spacing: .15em; text-transform: uppercase; font-size: .75rem; font-weight: 700; }
.head-coach h3 { color: #fff; font-size: clamp(1.8rem, 3.5vw, 2.6rem); margin: .35rem 0 .25rem; }
.head-coach .nick { color: var(--gold); font-style: italic; margin-bottom: 1rem; }
.head-coach p { color: #ddd; margin-bottom: 1rem; }
.head-coach .stat-row {
  display: flex; gap: 1.5rem; padding: 1rem 0; border-block: 1px solid var(--line);
  margin: .5rem 0; flex-wrap: wrap;
}
.head-coach .stat-row div b { display: block; font-family: var(--font-display); color: var(--red); font-size: 1.4rem; line-height: 1; }
.head-coach .stat-row div span { font-size: .7rem; text-transform: uppercase; letter-spacing: .12em; color: var(--muted); }

/* ============================================================
   HOMEPAGE (body.home on index.html) — unified vertical rhythm
   ============================================================ */
body.home {
  --home-section-pad: clamp(1.75rem, 4vw, 2.75rem);
  --home-intro-gap: 1.35rem;
}

/* All content sections except hero + compact DTV strip (has its own padding) */
body.home section:not(.hero):not(.dtv-banner) {
  padding-block: var(--home-section-pad);
}

body.home .pricing-strip {
  padding-block: var(--home-section-pad);
}

body.home .fighters,
body.home .reviews-section,
body.home .news-section {
  padding-block: var(--home-section-pad);
}

/* Section headers (programs, coaches, FAQ, contact) */
body.home .section-intro {
  margin-bottom: var(--home-intro-gap);
}

body.home .fighters-intro,
body.home .news-intro {
  margin-bottom: 1rem;
}
body.home .reviews-intro {
  margin-bottom: 0.5rem;
}
body.home .google-reviews-panel {
  margin-top: 0.75rem;
  margin-bottom: 1rem;
}
body.home .quotes--reviews {
  margin-top: 0;
}

body.home .pricing-strip-head {
  margin-bottom: 1.15rem;
}

body.home .facility-intro {
  margin-bottom: var(--home-intro-gap);
}
@media (min-width: 800px) {
  body.home .facility-intro {
    gap: 2rem;
  }
}

body.home .about .grid {
  gap: 1.75rem;
}

body.home .head-coach {
  margin-bottom: 1.35rem;
}

body.home .contact-grid {
  gap: 1.5rem;
}

body.home .reviews-footer,
body.home .news-footer,
body.home .fighters-apply {
  margin-top: 1rem;
}

/* Hero: DTV above hero; beginner bar pinned inside hero */
body.home .hero .container {
  gap: 2rem;
}
body.home .hero > .container {
  padding-bottom: clamp(9rem, 18vh, 12rem);
}
body.home section.hero {
  padding-top: clamp(2rem, 4vw, 3rem);
  min-height: calc(100dvh - 72px - clamp(110px, 14vw, 155px));
  min-height: calc(100svh - 72px - clamp(110px, 14vw, 155px));
  padding-bottom: 0;
}
body.home .dtv-banner--compact {
  padding-block: 0;
  position: relative;
  z-index: 50;
  scroll-margin-top: 72px;
}
body.home .dtv-banner--compact + section.hero {
  margin-top: 0;
}
@media (min-width: 900px) {
  body.home .hero-beginner.beginner-strip {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 4;
  }
}
@media (max-width: 899px) {
  /* Hero: no 100vh trap, no empty video black box, stack content */
  .hero {
    min-height: 0;
    overflow: visible;
    padding-top: 88px;
    background:
      linear-gradient(120deg, rgba(10, 10, 10, 0.92), rgba(10, 10, 10, 0.78)),
      url("assets/images/facility/lions-exterior-soi-taiad.jpg?v=4") center 42% / cover no-repeat;
  }
  .hero .hero-bg {
    display: none;
  }
  .hero > .container {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    flex: none;
    padding-bottom: 0;
    align-items: stretch;
  }
  .hero .coach-card {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }
  .hero .lede {
    max-width: none;
  }
  .hero-meta {
    gap: 0.65rem 1rem;
    margin-top: 1rem;
    padding-top: 1rem;
  }
  .hero-meta div b {
    font-size: 1.25rem;
  }
  .hero-cta {
    margin-top: 1.25rem;
  }
  .hero-cta .btn {
    flex: 1 1 45%;
    justify-content: center;
    min-width: 0;
  }
  .beginner-strip,
  body.home .hero-beginner.beginner-strip {
    position: relative !important;
    bottom: auto !important;
    left: auto !important;
    right: auto !important;
    width: 100%;
    margin-top: 0;
  }
  body.home section.hero {
    min-height: 0;
    padding-bottom: 0;
  }
  body.home .hero > .container {
    padding-bottom: 0;
  }
  .trust .container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
  }
  .trust-item {
    border-right: 0 !important;
    border-bottom: 1px solid var(--line);
    padding: 0.85rem 0;
  }
  .trust-item:last-child {
    border-bottom: 0;
  }
}

body.home .trust .container {
  padding-block: 1.1rem;
}

body.home footer {
  padding-top: clamp(2rem, 4vw, 2.5rem);
  padding-left: 0;
  padding-right: 0;
}
body.home:has(.sticky-cta) footer {
  padding-bottom: calc(2rem + env(safe-area-inset-bottom, 0px));
}
@media (max-width: 600px) {
  body.home:has(.sticky-cta) footer {
    padding-bottom: calc(6.5rem + env(safe-area-inset-bottom, 0px));
  }
}
html.cookie-banner-open body.home:has(.sticky-cta) footer {
  padding-bottom: calc(10.5rem + env(safe-area-inset-bottom, 0px));
}
body.home footer .footer-business {
  margin-top: 1rem;
  padding-top: 0.85rem;
}
body.home footer .legal {
  margin-top: 1rem;
  padding-top: 0.85rem;
}

/* Homepage timetable — compact, horizontal scroll on narrow screens */
body.home .schedule .section-intro {
  margin-bottom: var(--home-intro-gap);
}
body.home .schedule-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-inline: calc(-1 * clamp(1rem, 4vw, 1.5rem));
  padding-inline: clamp(1rem, 4vw, 1.5rem);
}
body.home .schedule-grid {
  min-width: min(100%, 720px);
}
body.home .schedule-grid > div {
  padding: .6rem .45rem;
  font-size: .8rem;
}
@media (max-width: 700px) {
  body.home .schedule-grid {
    grid-template-columns: 88px repeat(7, 118px);
  }
  body.home .schedule-grid > div {
    font-size: .75rem;
  }
}
body.home .schedule-note {
  margin-top: 1rem;
  font-size: .8rem;
  text-align: center;
  color: var(--muted);
}
body.home .schedule-cta {
  margin-top: 1.15rem;
}

/* ============================================================
   INNER PAGES — spacing & contact page rhythm
   ============================================================ */
body:not(.home) {
  --page-section-pad: clamp(2rem, 5vw, 3.25rem);
}

body:not(.home) section {
  padding-block: var(--page-section-pad);
}

body:not(.home) section.program-hero {
  padding-top: 140px;
  padding-bottom: clamp(2.5rem, 5vw, 4rem);
}

body:not(.home) section.contact-page,
body:not(.home) section.reviews-section {
  padding-block: var(--page-section-pad);
}

body.page-contact section.contact-page {
  padding-bottom: clamp(1.25rem, 3vw, 2rem);
}

body.page-contact section.contact-page + .reviews-section {
  padding-top: 0;
  border-top: 1px solid var(--line);
}

body:not(.home) #pricing {
  padding-block: var(--page-section-pad);
}

body:not(.home) #pricing > .container > .dtv-banner--pricing,
body:not(.home) #pricing > .container > .longterm-passes,
body:not(.home) #pricing > .container > .private-classes {
  padding-block: 0;
}

body:not(.home) footer {
  padding-top: clamp(2rem, 4vw, 2.5rem);
  padding-left: 0;
  padding-right: 0;
}
body:not(.home):has(.sticky-cta) footer {
  padding-bottom: calc(2rem + env(safe-area-inset-bottom, 0px));
}
@media (max-width: 600px) {
  body:not(.home):has(.sticky-cta) footer {
    padding-bottom: calc(6.5rem + env(safe-area-inset-bottom, 0px));
  }
}
html.cookie-banner-open body:not(.home):has(.sticky-cta) footer {
  padding-bottom: calc(10.5rem + env(safe-area-inset-bottom, 0px));
}

body:not(.home) footer .footer-business {
  margin-top: 1rem;
  padding-top: 0.85rem;
}
body:not(.home) footer .legal {
  margin-top: 1rem;
  padding-top: 0.85rem;
}

.contact-grid.contact-grid--page {
  gap: 2rem;
}

@media (min-width: 900px) {
  .contact-grid.contact-grid--page {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}

.contact-wa-banner p {
  margin: 0;
  max-width: 42ch;
}

.contact-map {
  display: block;
  border: 0;
  width: 100%;
  height: 280px;
  border-radius: var(--radius);
  margin-top: 1.5rem;
}

.contact-directions {
  margin-top: 1rem;
}

.contact-form-panel > p:first-of-type {
  margin-top: 0;
}

body:not(.home) [id] {
  scroll-margin-top: 88px;
}

/* Pay & book online notice */
.site-notice--online {
  background: linear-gradient(90deg, rgba(198, 40, 40, 0.15), rgba(212, 175, 55, 0.12));
  border-bottom: 1px solid var(--line);
  padding: 0.85rem 0;
}
.site-notice--online.site-notice--inset {
  border-bottom: none;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  margin-bottom: 1.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  align-items: center;
  justify-content: space-between;
}
.site-notice--online .container {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  align-items: center;
  justify-content: space-between;
}
.site-notice__copy {
  flex: 1 1 280px;
  min-width: 0;
}
.site-notice__title {
  margin: 0;
  font-size: 0.95rem;
  color: #fff;
  letter-spacing: 0.04em;
}
.site-notice__title strong { color: var(--gold); }
.site-notice__text {
  margin: 0.35rem 0 0;
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.5;
  max-width: 62ch;
}
.site-notice__text a { color: var(--red); font-weight: 600; }
.site-notice__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  flex-shrink: 0;
}
.site-notice__actions .btn { font-size: 0.8rem; padding: 0.55rem 1rem; }

/* Schedule & pricing — site footer */
.footer-schedule-cta {
  margin-top: 1rem;
  padding-top: 0.9rem;
  border-top: 1px solid var(--line);
  text-align: center;
}
.footer-schedule-cta__link {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  transition: color 0.15s ease;
}
.footer-schedule-cta__link:hover {
  color: #fff;
}
.footer-schedule-cta__sub {
  margin: 0.4rem 0 0;
  font-size: 0.72rem;
  color: var(--muted);
}
.footer-payments {
  margin-top: 0.85rem;
  text-align: center;
}
.footer-payments__label {
  margin: 0 0 0.55rem;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
}
.footer-payments__logos {
  display: inline-flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  margin: 0;
  padding: 0;
  list-style: none;
  max-width: 100%;
}
.footer-payments__logos li {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
}
.footer-payments__logos img {
  display: block;
  width: 52px;
  height: 32px;
  border-radius: 4px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
}
@media (max-width: 400px) {
  .footer-payments__logos {
    gap: 0.35rem;
  }
  .footer-payments__logos img {
    width: 46px;
    height: 28px;
  }
}

/* Cookie consent */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10050;
  background: var(--panel);
  border-top: 1px solid var(--line);
  padding: 1rem 0;
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.45);
}
.cookie-banner__inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 1.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
}
.cookie-banner__inner p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--muted);
  max-width: 52ch;
}
.cookie-banner__inner a { color: var(--red); font-weight: 600; }
.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
html.cookie-banner-open body { padding-bottom: 5.5rem; }

/* Booking hint */
.booking-hint {
  margin-top: 1.5rem;
  padding: 1.25rem 1.5rem;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  max-width: 52rem;
  margin-inline: auto;
  text-align: left;
}
.booking-hint h3 {
  margin: 0 0 0.75rem;
  font-size: 1rem;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.booking-hint ul {
  margin: 0;
  padding-left: 1.2rem;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
}
.booking-hint li + li { margin-top: 0.35rem; }
.booking-hint--compact { margin-top: 1.25rem; margin-bottom: 0.5rem; }
.page-header .booking-hint--compact { max-width: none; }

/* Schedule downloads */
.schedule-downloads {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  align-items: center;
}

/* Google review excerpts */
.review-source {
  display: inline-block;
  margin-top: 0.65rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.quote blockquote {
  margin: 0;
  padding: 0;
  border: 0;
}
.quote blockquote p { margin: 0; }

/* Mobile nav scroll lock */
body.nav-open { overflow: hidden; }
.burger:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.legal-prose h2 {
  color: #fff;
  margin-top: 2rem;
  font-size: 1.1rem;
}
.legal-prose p,
.legal-prose li {
  color: var(--muted);
  line-height: 1.6;
}

/* ============================================================
   MOBILE — footer visible, no horizontal bleed, touch-friendly
   ============================================================ */
html {
  overflow-x: clip;
  -webkit-text-size-adjust: 100%;
}
body {
  overflow-x: clip;
  max-width: 100%;
}

@media (max-width: 767px) {
  .container {
    padding-left: max(1rem, env(safe-area-inset-left, 0px));
    padding-right: max(1rem, env(safe-area-inset-right, 0px));
  }

  footer {
    padding-top: 2rem;
  }
  footer .grid {
    grid-template-columns: 1fr;
    gap: 1.35rem;
  }
  footer .brand-logo--footer {
    width: 150px;
    max-width: min(180px, 70vw);
    margin-bottom: 0.65rem !important;
  }
  footer .grid > div > p {
    font-size: 0.88rem;
    line-height: 1.45;
    margin-bottom: 0.65rem;
  }
  footer h4 {
    font-size: 0.92rem;
    margin-bottom: 0.5rem;
  }
  footer .social {
    margin-top: 0.5rem;
    gap: 0.6rem;
  }
  footer .footer-business {
    margin-top: 0.85rem;
    padding-top: 0.85rem;
    font-size: 0.78rem;
    line-height: 1.45;
  }
  footer .legal {
    margin-top: 0.85rem;
    padding-top: 0.85rem;
    font-size: 0.78rem;
  }

  body.home footer,
  body:not(.home) footer {
    padding-top: 2rem;
  }

  .google-reviews-panel {
    margin-left: 0;
    margin-right: 0;
  }
  .google-reviews-badge {
    padding: 0.85rem 1rem;
  }

  .coach-card {
    padding: 1.15rem;
  }
  .coach-card::before {
    font-size: 0.7rem;
    right: -28px;
  }

  .beginner-strip-inner--with-notice {
    gap: 0.75rem;
  }
  .beginner-strip h2 {
    font-size: 1.25rem;
  }

  .mobile-menu a {
    padding: 0.9rem 1rem;
    font-size: 0.85rem;
  }

  .cookie-banner__inner {
    flex-direction: column;
    align-items: stretch;
    text-align: left;
  }
  .cookie-banner__actions {
    width: 100%;
  }
  .cookie-banner__actions .btn {
    flex: 1;
    justify-content: center;
  }
}

@media (max-width: 380px) {
  footer .legal {
    font-size: 0.72rem;
  }
}

/* Program SEO expansion + blog */
.program-seo-expand { background: var(--ink); padding: 4rem 0; }
.program-seo-expand h2, .program-seo-expand h3 { color: #fff; }
.program-seo-expand p { color: #ddd; max-width: 72ch; }
.program-session { background: var(--black); padding: 4rem 0; }
.program-session h2 { color: #fff; }
.program-session .session-steps {
  list-style: none; padding: 0; margin: 2rem 0 0;
  display: grid; gap: 1rem; max-width: 720px;
}
.program-session .session-steps li {
  background: var(--panel); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 1.25rem 1.5rem;
  display: grid; gap: .35rem;
}
.program-session .session-steps strong { color: #fff; font-size: 1rem; }
.program-session .session-steps span { color: var(--muted); font-size: .92rem; }
.program-coach-seo { background: var(--ink); padding: 3.5rem 0; border-top: 1px solid var(--line); }
.program-coach-seo h2 { color: #fff; }
.program-coach-seo p { color: #ddd; max-width: 72ch; }
.program-faq { background: var(--black); padding: 4rem 0; }
.program-faq h2 { color: #fff; }
.program-faq .faq-list { max-width: 720px; margin-top: 1.5rem; display: grid; gap: .65rem; }
.program-faq details {
  background: var(--panel); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 1rem 1.25rem;
}
.program-faq summary { cursor: pointer; color: #fff; font-weight: 600; }
.program-faq details[open] summary { margin-bottom: .75rem; color: var(--red); }
.program-faq details p { color: var(--muted); font-size: .92rem; margin: 0; }

.blog-hero {
  background: var(--ink); padding: 5rem 0 3rem;
  border-bottom: 1px solid var(--line);
}
.blog-hero h1 { color: #fff; font-family: var(--font-display); font-size: clamp(2.2rem, 5vw, 3.2rem); line-height: 1.05; }
.blog-hero .meta { color: var(--muted); font-size: .85rem; margin-top: 1rem; }
.blog-content { padding: 3rem 0 4rem; background: var(--black); }
.blog-content .container { max-width: 720px; }
.blog-content h2 { color: #fff; margin: 2.5rem 0 1rem; font-size: 1.35rem; }
.blog-content h3 { color: #fff; margin: 1.75rem 0 .75rem; font-size: 1.1rem; }
.blog-content p, .blog-content li { color: #ddd; line-height: 1.7; }
.blog-content ul, .blog-content ol { margin: 1rem 0 1.5rem 1.25rem; }
.blog-content a { color: var(--red); }
.blog-index-grid {
  display: grid; gap: 1.25rem; margin-top: 2rem;
}
@media (min-width: 700px) { .blog-index-grid { grid-template-columns: 1fr 1fr; } }
.blog-card {
  background: var(--panel); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 1.5rem;
  display: block; text-decoration: none; transition: border-color .15s;
}
.blog-card:hover { border-color: var(--red); }
.blog-card h2 { color: #fff; font-size: 1.2rem; margin: 0 0 .5rem; }
.blog-card p { color: var(--muted); font-size: .9rem; margin: 0; }
.blog-card .read { color: var(--red); font-size: .8rem; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; margin-top: 1rem; display: inline-block; }

/* Coach profile pages */
.coach-page-hero {
  background: var(--ink);
  padding: 4rem 0 3rem;
  border-bottom: 1px solid var(--line);
}
.coach-page-hero__grid {
  display: grid; gap: 2rem; align-items: center;
}
@media (min-width: 900px) {
  .coach-page-hero__grid { grid-template-columns: 340px 1fr; }
}
.coach-page-hero__photo {
  aspect-ratio: 4/5;
  border-radius: var(--radius);
  background-size: cover;
  background-position: center 20%;
  border: 1px solid var(--line);
}
.coach-page-hero h1 { color: #fff; font-family: var(--font-display); font-size: clamp(2rem, 4vw, 2.8rem); line-height: 1.05; }
.coach-page-hero .lede { color: var(--muted); max-width: 56ch; }
.coach-nick { color: var(--red); font-weight: 600; margin: -.25rem 0 .75rem; }
.coach-stat-row {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: .75rem; margin-top: 1.25rem;
}
@media (min-width: 540px) { .coach-stat-row { grid-template-columns: repeat(4, 1fr); } }
.coach-stat {
  background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius);
  padding: .85rem .75rem; text-align: center;
}
.coach-stat b { display: block; color: var(--red); font-family: var(--font-display); font-size: 1.35rem; }
.coach-stat span { color: var(--muted); font-size: .72rem; text-transform: uppercase; letter-spacing: .1em; }
.coach-page-content { background: var(--black); padding: 4rem 0; }
.coach-page-content__grid {
  display: grid; gap: 2.5rem;
}
@media (min-width: 900px) { .coach-page-content__grid { grid-template-columns: 1.15fr 1fr; } }
.coach-page-main h2, .coach-page-aside h2 { color: #fff; font-size: 1.15rem; }
.coach-page-main p { color: #ddd; max-width: 68ch; line-height: 1.7; }
.coach-secondary-photo { margin-top: 2rem; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); }
.coach-secondary-photo img { width: 100%; height: auto; display: block; }
.coach-page-aside {
  background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.5rem;
}
.coach-record-table { width: 100%; border-collapse: collapse; margin-top: 1rem; font-size: .9rem; }
.coach-record-table th {
  text-align: left; color: var(--muted); font-weight: 600; padding: .5rem .75rem .5rem 0;
  border-bottom: 1px solid var(--line); width: 42%;
}
.coach-record-table td { color: #fff; padding: .5rem 0; border-bottom: 1px solid var(--line); }
.coach-index { background: var(--black); padding: 3rem 0 4rem; }
.coach-index-grid {
  display: grid; gap: 1.25rem;
}
@media (min-width: 700px) { .coach-index-grid { grid-template-columns: repeat(3, 1fr); } }
.coach-index-card {
  display: flex; flex-direction: column; text-decoration: none;
  background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; transition: border-color .15s;
}
.coach-index-card:hover { border-color: var(--red); }
.coach-index-card .photo {
  aspect-ratio: 1; background-size: cover; background-position: center 20%;
}
.coach-index-card .body { padding: 1.25rem; }
.coach-index-card small { color: var(--muted); letter-spacing: .12em; font-size: .7rem; }
.coach-index-card h2 { color: #fff; font-size: 1.2rem; margin: .35rem 0 .5rem; }
.coach-index-card p { color: var(--muted); font-size: .88rem; margin: 0; }
.coach-index-card .read { color: var(--red); font-size: .75rem; font-weight: 700; text-transform: uppercase; margin-top: 1rem; display: inline-block; }

.location-local {
  background: var(--ink);
  padding: 4rem 0;
  border-top: 1px solid var(--line);
}
.location-local h2 { color: #fff; }
.location-local p { color: #ddd; max-width: 72ch; line-height: 1.7; }
.location-local .landmarks {
  display: grid; gap: 1rem; margin: 1.5rem 0 0;
}
@media (min-width: 700px) { .location-local .landmarks { grid-template-columns: 1fr 1fr; } }
.location-local .landmark {
  background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1rem 1.25rem;
}
.location-local .landmark b { color: #fff; display: block; margin-bottom: .35rem; }
.location-local .landmark span { color: var(--muted); font-size: .9rem; }

.program-tagline {
  font-family: var(--font-display);
  color: #fff;
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  line-height: 1.1;
  margin: .5rem 0 1rem;
  letter-spacing: .02em;
}
.program-tagline span { color: var(--red); }

.program-reviews-snippet {
  background: var(--ink);
  padding: 2rem 0;
  border-bottom: 1px solid var(--line);
}
.program-reviews-snippet__inner { max-width: 640px; }
.program-reviews-snippet__rating { color: #fff; font-weight: 600; margin-bottom: 1rem; }
.program-reviews-snippet blockquote {
  margin: 0; padding: 1.25rem; background: var(--panel);
  border-left: 3px solid var(--red); border-radius: var(--radius);
}
.program-reviews-snippet blockquote p { color: #ddd; font-size: .95rem; margin: 0 0 .75rem; }
.program-reviews-snippet footer { font-size: .82rem; color: var(--muted); }

.email-capture {
  background: linear-gradient(135deg, var(--ink) 0%, var(--black) 100%);
  padding: 3rem 0;
  border-top: 1px solid var(--line);
}
.email-capture__inner {
  display: grid; gap: 1.5rem; align-items: center;
}
@media (min-width: 768px) {
  .email-capture__inner { grid-template-columns: 1fr 1fr; }
}
.email-capture__form {
  display: flex; gap: .75rem; flex-wrap: wrap;
}
.email-capture__form input[type="email"] {
  flex: 1; min-width: 200px; padding: .85rem 1rem;
  border: 1px solid var(--line); border-radius: var(--radius);
  background: var(--panel); color: #fff;
}

.dtv-guarantee .btn { margin-top: 1rem; }

.contact-map--google { min-height: 320px; border-radius: var(--radius); border: 1px solid var(--line); }

a.fighter-card { display: block; transition: transform .15s, border-color .15s; }
a.fighter-card:hover { transform: translateY(-2px); }

/* Subpage polish */
.blog-hero h1 { margin-top: .75rem; }
.blog-hero .meta { max-width: 68ch; line-height: 1.65; }
.back-link {
  display: inline-block;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: .5rem;
}
.back-link:hover { color: var(--red); }
.lang-switch a { font-size: .72rem; padding: .2rem .45rem; }
header.site .nav > ul { gap: .15rem 1rem; }

.why-promo {
  background: linear-gradient(90deg, rgba(196, 30, 58, .12) 0%, var(--ink) 55%);
  border-bottom: 1px solid var(--line);
  padding: 1.1rem 0;
}
.why-promo__inner {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1rem;
}
.why-promo__text { margin: 0; color: #ddd; font-size: .95rem; max-width: 58ch; }

.seo-hub {
  background: var(--black);
  padding: 3.5rem 0;
  border-top: 1px solid var(--line);
}
.seo-hub__grid {
  display: grid; gap: .85rem;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
}
.seo-hub__card {
  display: block; padding: 1.1rem 1.25rem;
  background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius);
  transition: border-color .15s, transform .15s;
}
.seo-hub__card:hover { border-color: var(--red); transform: translateY(-2px); }
.seo-hub__card b { display: block; color: #fff; font-size: 1rem; margin-bottom: .35rem; }
.seo-hub__card span { color: var(--muted); font-size: .85rem; line-height: 1.45; }

/* Sponsorship / partners page */
.sponsors-hero .lede { max-width: 58ch; }
.sponsors-stats {
  background: var(--black);
  border-bottom: 1px solid var(--line);
  padding: 1.5rem 0;
}
.sponsors-stats__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  text-align: center;
}
@media (min-width: 640px) {
  .sponsors-stats__grid { grid-template-columns: repeat(4, 1fr); }
}
.sponsors-stats__grid b {
  display: block;
  font-family: var(--font-display);
  color: var(--red);
  font-size: clamp(1.4rem, 3vw, 1.85rem);
  line-height: 1;
}
.sponsors-stats__grid span {
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--muted);
  margin-top: .35rem;
}
.sponsors-section {
  padding: clamp(2.5rem, 5vw, 3.5rem) 0;
  background: var(--ink);
}
.sponsors-section--tiers { background: var(--black); }
.sponsors-section--logos { background: var(--ink); border-top: 1px solid var(--line); }
.sponsor-placements {
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 900px) {
  .sponsor-placements { grid-template-columns: 1fr; }
  .sponsor-placement--featured { grid-column: 1 / -1; }
  .sponsor-placement--featured {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 0;
  }
  .sponsor-placement--featured .sponsor-placement__visual { min-height: 280px; }
}
.sponsor-placement {
  display: grid;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
@media (min-width: 700px) {
  .sponsor-placement:not(.sponsor-placement--featured) {
    grid-template-columns: 220px 1fr;
  }
}
.sponsor-placement__visual {
  min-height: 180px;
  background: center / cover no-repeat;
}
.sponsor-placement__body { padding: 1.25rem 1.35rem; }
.sponsor-placement__label {
  font-size: .68rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--gold);
  font-weight: 700;
}
.sponsor-placement h3 {
  color: #fff;
  margin: .4rem 0 .6rem;
  font-size: 1.15rem;
}
.sponsor-placement p,
.sponsor-placement li {
  color: #ccc;
  font-size: .88rem;
  line-height: 1.55;
}
.sponsor-placement ul {
  margin: .75rem 0 0;
  padding-left: 1.15rem;
}
.sponsor-tiers {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
}
.sponsor-tier {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.25rem 1.2rem 1.1rem;
  display: flex;
  flex-direction: column;
}
.sponsor-tier--title {
  border-color: var(--gold);
  background: linear-gradient(180deg, rgba(201, 162, 39, .08), var(--panel));
}
.sponsor-tier__name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: .06em;
  color: #fff;
}
.sponsor-tier__tag {
  color: var(--muted);
  font-size: .8rem;
  margin: .25rem 0 .85rem;
}
.sponsor-tier ul {
  margin: 0;
  padding-left: 1.1rem;
  flex: 1;
  font-size: .84rem;
  color: #ccc;
  line-height: 1.5;
}
.sponsor-logo-slot {
  margin-top: 1rem;
  min-height: 56px;
  border: 1px dashed var(--line);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, .25);
}
.sponsor-logo-slot span {
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--muted);
}
.sponsor-logo-slot--sm { min-height: 44px; }
.sponsors-audience {
  display: grid;
  gap: 2rem;
  align-items: start;
}
@media (min-width: 800px) {
  .sponsors-audience { grid-template-columns: 1.35fr 1fr; }
}
.sponsors-audience p { color: #ddd; line-height: 1.65; }
.sponsors-fit {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.35rem;
}
.sponsors-fit__list {
  margin: 0;
  padding-left: 1.15rem;
  color: #ccc;
  font-size: .88rem;
  line-height: 1.6;
}
.sponsor-logo-wall {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 1rem;
}
.sponsor-logo-wall__slot {
  aspect-ratio: 3 / 2;
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.sponsor-logo-wall__slot span {
  font-size: .68rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--muted);
  text-align: center;
}
.sponsors-cta-band {
  background: linear-gradient(135deg, #1a0508, var(--black));
  border-top: 2px solid var(--red);
  padding: 2.75rem 0;
}
.sponsors-cta-band__inner {
  display: grid;
  gap: 1.5rem;
  align-items: center;
}
@media (min-width: 860px) {
  .sponsors-cta-band__inner { grid-template-columns: 1.2fr 1fr; }
}
.sponsors-cta-band__actions {
  display: flex;
  flex-direction: column;
  gap: .65rem;
}

.final-book-cta {
  background: linear-gradient(135deg, #1a0508 0%, var(--black) 45%, var(--ink) 100%);
  border-top: 2px solid var(--red);
  padding: 3.5rem 0;
}
.final-book-cta__inner {
  display: grid; gap: 2rem; align-items: center;
}
@media (min-width: 860px) {
  .final-book-cta__inner { grid-template-columns: 1.4fr 1fr; }
}
.final-book-cta h2 { color: #fff; margin: .5rem 0 1rem; font-size: clamp(1.75rem, 4vw, 2.35rem); }
.final-book-cta p { color: #ccc; max-width: 52ch; line-height: 1.65; margin: 0; }
.final-book-cta__ticks {
  list-style: none; padding: 0; margin: 1.25rem 0 0;
  display: flex; flex-wrap: wrap; gap: .5rem 1.25rem;
  font-size: .82rem; color: var(--gold); font-weight: 600;
}
.final-book-cta__ticks li::before { content: "✓ "; color: var(--red); }
.final-book-cta__actions {
  display: flex; flex-direction: column; gap: .75rem; align-items: stretch;
}
@media (min-width: 480px) {
  .final-book-cta__actions { align-items: flex-start; }
}
