/* ==========================================================================
   Gladiators Martial Arts — public site
   Palette: honey on near-black, warm paper for the light sections.
   ========================================================================== */

:root {
  --honey: #F5B301;
  --ink: #0C0C0D;
  --paper: #F6F3EC;
  --paper-2: #EDE8DE;
  --muted: #6B6459;
  --muted-dark: #9A948A;
  --line: rgba(12, 12, 13, .12);
  --line-dark: rgba(255, 255, 255, .12);

  --display: 'Oswald', 'Noto Sans SC', 'PingFang SC', 'Microsoft YaHei', Impact, sans-serif;
  --body: 'Inter', 'Noto Sans SC', 'PingFang SC', 'Microsoft YaHei', system-ui, -apple-system, sans-serif;

  --gap: clamp(1.25rem, 3vw, 2.5rem);
  --pad: clamp(1.25rem, 5vw, 5rem);
  --maxw: 1240px;
  --radius: 4px;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 88px; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

body {
  margin: 0;
  font-family: var(--body);
  font-size: clamp(1rem, .96rem + .2vw, 1.0625rem);
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

img, video { max-width: 100%; display: block; }
a { color: inherit; }

h1, h2, h3 {
  font-family: var(--display);
  font-weight: 700;
  line-height: .95;
  letter-spacing: -.01em;
  text-transform: uppercase;
  margin: 0;
}
h1 { font-size: clamp(2.75rem, 8vw, 6rem); }
h2 { font-size: clamp(2rem, 5vw, 3.5rem); }
h3 { font-size: clamp(1.125rem, 1.8vw, 1.5rem); }
:lang(zh) h1, :lang(zh) h2, :lang(zh) h3 { letter-spacing: .02em; }

p { margin: 0 0 1em; }

/* ------------------------------------------------------------------ buttons */

.btn {
  --btn-bg: var(--honey);
  --btn-fg: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1.4rem;
  font-family: var(--display);
  font-weight: 500;
  font-size: .9375rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  border: 2px solid var(--btn-bg);
  border-radius: var(--radius);
  background: var(--btn-bg);
  color: var(--btn-fg);
  cursor: pointer;
  transition: transform .16s ease, box-shadow .16s ease, background .16s ease, color .16s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 8px 0 -2px rgba(0, 0, 0, .35); }
.btn:active { transform: translateY(0); box-shadow: none; }
.btn-lg { padding: 1rem 2rem; font-size: 1.0625rem; }
.btn-ghost { --btn-bg: transparent; --btn-fg: #fff; border-color: currentColor; }
.btn-ghost:hover { background: #fff; color: var(--ink); border-color: #fff; }
.btn-dark { --btn-bg: var(--ink); --btn-fg: var(--honey); }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  font-family: var(--display);
  font-size: .875rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-decoration: none;
  color: inherit;
  border-bottom: 2px solid var(--honey);
  padding-bottom: 2px;
  transition: gap .16s ease;
}
.link-arrow::after { content: '→'; }
.link-arrow:hover { gap: .9rem; }

:focus-visible { outline: 3px solid var(--honey); outline-offset: 3px; }
.section-dark :focus-visible, .hero :focus-visible { outline-color: var(--honey); }

/* ------------------------------------------------------------------- header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: var(--gap);
  padding: .875rem var(--pad);
  background: rgba(12, 12, 13, .92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line-dark);
  color: #fff;
}

.logo { display: flex; align-items: center; gap: .6rem; text-decoration: none; margin-right: auto; }
.logo-img { height: 48px; width: auto; max-width: 220px; object-fit: contain; }
.logo-crest { height: 46px; width: auto; flex: 0 0 auto; }
@media (max-width: 900px) { .logo-img, .logo-crest { height: 38px; max-width: 150px; } }
.logo-mark {
  display: grid;
  place-items: center;
  width: 38px; height: 38px;
  background: var(--honey);
  color: var(--ink);
  font-family: var(--display);
  font-size: 1.375rem;
  border-radius: 3px;
}
.logo-text {
  display: grid;
  font-family: var(--display);
  text-transform: uppercase;
  line-height: 1;
}
.logo-text b {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: .05em;
  color: var(--honey);
}
.logo-text i {
  font-style: normal;
  font-size: .625rem;
  font-weight: 500;
  letter-spacing: .3em;
  color: rgba(255, 255, 255, .72);
  margin-top: .18rem;
}
@media (max-width: 900px) {
  .logo-text b { font-size: 1.0625rem; }
  .logo-text i { font-size: .5625rem; letter-spacing: .22em; }
}

.nav { display: flex; align-items: center; gap: clamp(.75rem, 1.6vw, 1.6rem); }
.nav > a {
  font-family: var(--display);
  font-size: .8125rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  color: rgba(255, 255, 255, .78);
  padding: .35rem 0;
  border-bottom: 2px solid transparent;
  transition: color .15s ease, border-color .15s ease;
}
.nav > a:hover { color: #fff; border-bottom-color: var(--honey); }

.lang-switch { display: flex; gap: .1rem; padding-left: .9rem; border-left: 1px solid var(--line-dark); }
.lang-switch a {
  font-size: .75rem;
  font-weight: 500;
  white-space: nowrap;
  text-decoration: none;
  color: rgba(255, 255, 255, .6);
  padding: .25rem .45rem;
  border-radius: 3px;
  transition: color .15s ease, background .15s ease;
}
.lang-switch a:hover { color: #fff; background: rgba(255, 255, 255, .1); }
.lang-switch a.is-active { color: var(--ink); background: var(--honey); }

.nav-toggle { display: none; width: 44px; height: 44px; background: none; border: 0; cursor: pointer; padding: 10px; }
.nav-toggle span { display: block; height: 2px; background: #fff; margin: 5px 0; transition: transform .2s ease, opacity .2s ease; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Russian and Spanish menu labels are much longer than the English ones, so the
   header tightens up before it drops the call-to-action entirely. */
@media (max-width: 1340px) {
  .nav { gap: clamp(.6rem, 1.1vw, 1rem); }
  .nav > a { font-size: .75rem; letter-spacing: .06em; }
  .lang-switch { padding-left: .6rem; }
  .header-cta { padding: .7rem 1rem; font-size: .8125rem; }
}
@media (max-width: 1180px) {
  .header-cta { display: none; }
}
@media (max-width: 900px) {
  .nav-toggle { display: block; }
  .nav {
    position: fixed;
    inset: 68px 0 auto;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 1rem var(--pad) 2rem;
    background: var(--ink);
    border-bottom: 3px solid var(--honey);
    transform: translateY(-120%);
    transition: transform .25s ease;
  }
  .nav.is-open { transform: translateY(0); }
  .nav > a { padding: .85rem 0; border-bottom: 1px solid var(--line-dark); font-size: 1rem; }
  .lang-switch { padding: 1rem 0 0; border-left: 0; }
}

/* --------------------------------------------------------------------- hero */

.hero {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: clamp(2rem, 5vw, 4.5rem);
  padding: clamp(2rem, 4vw, 3.5rem) var(--pad) clamp(2.5rem, 5vw, 4rem);
  background:
    radial-gradient(1000px 520px at 82% 18%, rgba(245, 179, 1, .16), transparent 62%),
    var(--ink);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: auto auto -30% -12%;
  width: 46%;
  aspect-ratio: 1;
  border: 2px solid rgba(245, 179, 1, .16);
  border-radius: 50%;
  pointer-events: none;
}

.hero-copy { position: relative; max-width: 34rem; }
.eyebrow {
  font-family: var(--display);
  font-size: clamp(.8125rem, 1.4vw, .9375rem);
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--honey);
  margin-bottom: 1rem;
}
.hero h1 { margin-bottom: 1.25rem; }
.hero h1::after {
  content: '';
  display: block;
  width: 84px;
  height: 6px;
  margin-top: 1.5rem;
  background: var(--honey);
}
.hero-sub { font-size: clamp(1.0625rem, 1.5vw, 1.25rem); color: rgba(255, 255, 255, .8); max-width: 32rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .875rem; margin: 1.75rem 0 0; }
.hero-quote {
  margin: 2.5rem 0 0;
  padding-left: 1.25rem;
  border-left: 3px solid var(--honey);
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(1.0625rem, 1.7vw, 1.375rem);
  line-height: 1.3;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .92);
}

.hero-frame { position: relative; }
.hero-frame::after {
  content: '';
  position: absolute;
  inset: 18px -18px -18px 18px;
  border: 2px solid var(--honey);
  z-index: 0;
  pointer-events: none;
}
.hero-media {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 5 / 6;
  max-height: min(62vh, 540px);
  object-fit: cover;
  object-position: 50% 28%;
  background: #1a1a1c center/cover no-repeat;
  border: 0;
  padding: 0;
  cursor: pointer;
  filter: contrast(1.05) saturate(1.05);
}
.hero-placeholder {
  display: grid;
  place-items: center;
  align-content: center;
  gap: 1.5rem;
  cursor: default;
  padding: 2rem;
  background:
    radial-gradient(60% 50% at 50% 42%, rgba(245, 179, 1, .10), transparent 70%),
    repeating-linear-gradient(-45deg, #141416 0 22px, #1b1b1e 22px 44px);
}
.hero-placeholder img {
  width: clamp(120px, 42%, 210px);
  height: auto;
  filter: drop-shadow(0 12px 28px rgba(0, 0, 0, .55));
}
.hero-placeholder span {
  font-family: var(--display);
  font-size: clamp(1rem, 1.8vw, 1.375rem);
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(245, 179, 1, .55);
  text-align: center;
}
.hero-play { display: grid; place-items: center; }

/* Shield crest, ghosted into the hero background. */
.hero-crest {
  position: absolute;
  left: -4%;
  bottom: -14%;
  width: clamp(180px, 26vw, 380px);
  opacity: .06;
  filter: brightness(3);
  pointer-events: none;
  z-index: 0;
}
@media (max-width: 880px) { .hero-crest { display: none; } }

.play-badge {
  display: grid;
  place-items: center;
  width: 74px; height: 74px;
  border-radius: 50%;
  background: var(--honey);
  color: var(--ink);
  box-shadow: 0 0 0 0 rgba(245, 179, 1, .55);
  transition: transform .2s ease;
}
.play-badge svg { width: 30px; height: 30px; margin-left: 3px; }
.hero-play:hover .play-badge, .video-card:hover .play-badge { transform: scale(1.12); }

@media (max-width: 880px) {
  .hero { grid-template-columns: 1fr; padding-top: 2.5rem; gap: 1.75rem; }
  .hero-frame { order: -1; max-width: 100%; }
  .hero-frame::after { inset: 10px -10px -10px 10px; }
  .hero-media { aspect-ratio: 16 / 10; max-height: none; height: auto; object-position: 50% 24%; }
}

/* --------------------------------------------------------- hazard tape rule */

.tape {
  height: 14px;
  background: repeating-linear-gradient(-45deg,
    var(--honey) 0 18px, var(--ink) 18px 36px);
}

/* ----------------------------------------------------------------- sections */

.section {
  max-width: var(--maxw);
  margin-inline: auto;
  padding: clamp(3.5rem, 8vw, 6.5rem) var(--pad);
}
.section-dark {
  max-width: none;
  background: var(--ink);
  color: #fff;
}
.section-dark > * { max-width: var(--maxw); margin-inline: auto; }

.sec-head { margin-bottom: clamp(2rem, 4vw, 3.25rem); }
.sec-num {
  display: block;
  font-family: var(--display);
  font-size: .875rem;
  letter-spacing: .24em;
  color: var(--honey);
  margin-bottom: .6rem;
}
.sec-head h2 { max-width: 18ch; }
.sec-head h2::after {
  content: '';
  display: block;
  width: 56px;
  height: 4px;
  margin-top: 1.1rem;
  background: var(--honey);
}
.sec-sub { margin-top: 1rem; color: var(--muted); max-width: 52ch; }
.section-dark .sec-sub { color: var(--muted-dark); }

.section-split { display: grid; grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr); gap: var(--gap); }
.section-split .sec-head { margin-bottom: 0; }
.prose { font-size: clamp(1.0625rem, 1.3vw, 1.1875rem); color: #2A2722; max-width: 60ch; }
.prose p:last-child { margin-bottom: 0; }
@media (max-width: 820px) { .section-split { grid-template-columns: 1fr; } }

/* ----------------------------------------------------------------- programs */

.program-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
  gap: clamp(1rem, 2vw, 1.5rem);
}
.program {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-top: 4px solid var(--honey);
  border-radius: var(--radius);
  transition: transform .18s ease, box-shadow .18s ease;
}
.program:hover { transform: translateY(-6px); box-shadow: 0 18px 40px -22px rgba(12, 12, 13, .5); }
.program-photo { aspect-ratio: 16 / 10; overflow: hidden; }
.program-photo img { width: 100%; height: 100%; object-fit: cover; }
/* Badges and crests must not be cropped like a photograph. */
.program-photo.is-contain {
  aspect-ratio: 4 / 3;
  background: #09090A;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.program-photo.is-contain img {
  object-fit: contain;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
}
/* Stand-in band, so a card without a photo still lines up with one that has. */
.program-photo.is-blank {
  aspect-ratio: 4 / 3;
  display: grid;
  place-items: center;
  background:
    radial-gradient(70% 60% at 50% 45%, rgba(245, 179, 1, .14), transparent 70%),
    repeating-linear-gradient(-45deg, #141416 0 18px, #1b1b1e 18px 36px);
}
.program-photo.is-blank span { font-size: clamp(2rem, 4vw, 3rem); opacity: .75; }
.program:hover .program-photo.is-contain img,
.program:hover .program-photo.is-blank span { transform: scale(1.04); transition: transform .25s ease; }
.program-body { position: relative; z-index: 1; padding: 1.5rem; display: flex; flex-direction: column; gap: .6rem; flex: 1; }
.program-icon { font-size: 1.75rem; line-height: 1; }
.program-age {
  font-family: var(--display);
  font-size: .8125rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0;
}
.program-points {
  list-style: none;
  margin: .2rem 0 0;
  padding: 0;
  display: grid;
  gap: .4rem;
  font-size: .875rem;
}
.program-points li {
  display: grid;
  grid-template-columns: 1.1rem 1fr;
  gap: .5rem;
  align-items: start;
  color: #2F2B25;
  font-weight: 500;
}
.program-points li::before {
  content: '✓';
  color: var(--ink);
  background: var(--honey);
  width: 1.1rem;
  height: 1.1rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: .6875rem;
  font-weight: 700;
  margin-top: .18rem;
}
.program-text { color: #443F38; font-size: .9375rem; margin: 0; flex: 1; }
.program-body .link-arrow { align-self: flex-start; margin-top: .5rem; }
.program-watermark {
  position: absolute;
  right: -.5rem; bottom: -2.25rem;
  font-family: var(--display);
  font-size: 8rem;
  line-height: 1;
  color: rgba(12, 12, 13, .05);
  pointer-events: none;
  user-select: none;
}

/* ---------------------------------------------------------------------- why */

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 230px), 1fr));
  gap: clamp(1rem, 2.2vw, 2rem);
}
.why-card { padding-top: 1.5rem; border-top: 2px solid var(--honey); }
.why-icon { font-size: 1.5rem; display: block; margin-bottom: .75rem; }
.why-card h3 { margin-bottom: .6rem; }
.why-card p { color: var(--muted-dark); font-size: .9375rem; margin: 0; }

/* ------------------------------------------------------------------- videos */

.tabs { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 1.75rem; }
.tab {
  padding: .55rem 1.1rem;
  font-family: var(--display);
  font-size: .8125rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  background: transparent;
  color: var(--muted);
  border: 1px solid var(--line);
  border-radius: 999px;
  cursor: pointer;
  transition: all .15s ease;
}
.tab:hover { border-color: var(--ink); color: var(--ink); }
.tab.is-active { background: var(--ink); border-color: var(--ink); color: var(--honey); }

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 300px), 1fr));
  gap: clamp(.75rem, 1.5vw, 1.25rem);
}
.video-card {
  position: relative;
  display: grid;
  place-items: center;
  aspect-ratio: 16 / 9;
  padding: 0;
  border: 0;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  background: #1a1a1c center/cover no-repeat;
  color: #fff;
  text-align: left;
}
.video-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(12, 12, 13, .92) 0%, rgba(12, 12, 13, .1) 55%, rgba(12, 12, 13, .35) 100%);
}
.video-card .play-badge { position: relative; z-index: 1; width: 58px; height: 58px; }
.video-card .play-badge svg { width: 24px; height: 24px; }
.video-meta { position: absolute; z-index: 1; inset: auto 0 0; padding: 1rem 1.1rem; display: grid; gap: .2rem; }
.video-meta strong { font-family: var(--display); font-size: 1.0625rem; text-transform: uppercase; line-height: 1.15; }
.video-meta em { font-style: normal; font-size: .8125rem; color: rgba(255, 255, 255, .7); }
.video-card[hidden] { display: none; }

/* ----------------------------------------------------------------- schedule */

.week {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.day { background: #fff; padding: 1.1rem .85rem; min-height: 150px; }
.day.is-today { background: #FFFBEF; box-shadow: inset 0 3px 0 var(--honey); }
.day h3 { font-size: .875rem; letter-spacing: .1em; margin-bottom: .9rem; color: var(--muted); }
.day-short { display: none; }
.day ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .7rem; }
.day li { display: grid; gap: .1rem; padding-left: .6rem; border-left: 2px solid var(--honey); }
.slot-time { font-family: var(--display); font-size: .875rem; letter-spacing: .04em; }
.slot-name { font-size: .8125rem; color: var(--muted); line-height: 1.3; }
.day-empty { font-size: .8125rem; color: #B3ADA2; margin: 0; }

@media (max-width: 900px) {
  .week { grid-template-columns: 1fr; }
  .day { min-height: 0; display: grid; grid-template-columns: 5.5rem 1fr; gap: 1rem; align-items: start; }
  .day h3 { margin: 0; }
  .day-full { display: none; }
  .day-short { display: inline; }
}

/* ------------------------------------------------------------------ reviews */

.rating-badge {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  padding: .6rem 1.1rem;
  margin-bottom: 1.75rem;
  border: 1px solid var(--line-dark);
  border-radius: 999px;
}
.rating-badge strong { font-family: var(--display); font-size: 1.5rem; color: var(--honey); }
.rating-badge span { font-size: .8125rem; color: var(--muted-dark); }
.stars { display: inline-flex; gap: 2px; color: var(--honey); }
.stars svg { width: 15px; height: 15px; }

.review-row {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(min(88vw, 340px), 1fr);
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 1rem;
  margin-bottom: 1.5rem;
  scrollbar-width: thin;
}
.review {
  scroll-snap-align: start;
  position: relative;
  margin: 0;
  padding: 2.5rem 1.5rem 1.5rem;
  background: rgba(255, 255, 255, .05);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  gap: .9rem;
}
.review::before {
  content: '"';
  position: absolute;
  top: -.55rem; right: 1rem;
  font-family: var(--display);
  font-size: 5rem;
  color: rgba(245, 179, 1, .22);
  line-height: 1;
}
.review blockquote { margin: 0; font-size: .9375rem; color: rgba(255, 255, 255, .88); flex: 1; }
.review figcaption { display: flex; flex-direction: column; gap: .1rem; font-size: .8125rem; }
.review figcaption strong { font-family: var(--display); letter-spacing: .06em; text-transform: uppercase; }
.review figcaption span { color: var(--muted-dark); }

/* --------------------------------------------------------------------- news */

.news-list { display: grid; gap: 1rem; }
.news {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 1.5rem;
  align-items: start;
  padding: 1.25rem;
  background: #fff;
  border: 1px solid var(--line);
  border-left: 4px solid var(--honey);
  border-radius: var(--radius);
}
.news:not(:has(img)) { grid-template-columns: 1fr; }
.news img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: 3px; }

/* Poster / flyer: shown whole, never cropped, click to enlarge. */
.news.has-poster { grid-template-columns: minmax(0, 300px) 1fr; align-items: center; }
.news-poster {
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--ink);
  cursor: zoom-in;
  overflow: hidden;
  display: block;
  transition: transform .18s ease, box-shadow .18s ease;
}
.news-poster:hover { transform: translateY(-3px); box-shadow: 0 16px 34px -20px rgba(12, 12, 13, .7); }
.news-poster img {
  width: 100%;
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
  border-radius: 0;
}
@media (max-width: 700px) {
  .news.has-poster { grid-template-columns: 1fr; }
  .news-poster { max-width: 340px; margin-inline: auto; }
}
.news time { font-family: var(--display); font-size: .8125rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
.news h3 { margin: .35rem 0 .5rem; }
.news p { margin: 0; color: #443F38; font-size: .9375rem; }
@media (max-width: 700px) { .news { grid-template-columns: 1fr; } }

/* ---------------------------------------------------------------------- FAQ */

.qa-list { display: grid; gap: .5rem; max-width: 58rem; }
.qa { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); }
.qa[open] { border-color: var(--honey); }
.qa summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.25rem;
  font-family: var(--display);
  font-size: clamp(1rem, 1.4vw, 1.1875rem);
  text-transform: uppercase;
  line-height: 1.25;
  cursor: pointer;
  list-style: none;
}
.qa summary::-webkit-details-marker { display: none; }
.qa-sign { position: relative; flex: 0 0 20px; height: 20px; }
.qa-sign::before, .qa-sign::after {
  content: '';
  position: absolute;
  inset: 50% 0 auto;
  height: 2px;
  background: var(--ink);
  transition: transform .2s ease;
}
.qa-sign::after { transform: rotate(90deg); }
.qa[open] .qa-sign::after { transform: rotate(0); }
.qa-body { padding: 0 1.25rem 1.25rem; color: #443F38; font-size: .9375rem; }
.qa-body p:last-child { margin-bottom: 0; }

.ask {
  margin-top: 2.5rem;
  padding: clamp(1.5rem, 3vw, 2.25rem);
  max-width: 58rem;
  background: var(--ink);
  color: #fff;
  border-radius: var(--radius);
}
.ask h3 { color: var(--honey); margin-bottom: .5rem; }
.ask > p { color: var(--muted-dark); font-size: .9375rem; }
.ask-form { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 1.1rem; }
.ask-form input {
  flex: 1 1 16rem;
  padding: .85rem 1rem;
  font: inherit;
  font-size: 1rem;
  color: #fff;
  background: rgba(255, 255, 255, .08);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
}
.ask-form input::placeholder { color: rgba(255, 255, 255, .42); }
.ask-form input:focus { background: rgba(255, 255, 255, .14); }
.ask-answer {
  margin-top: 1.25rem;
  padding: 1.1rem 1.25rem;
  background: rgba(245, 179, 1, .1);
  border-left: 3px solid var(--honey);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: .9375rem;
}
.ask-answer p:last-child { margin-bottom: 0; }
.ask-answer small { display: block; margin-top: .75rem; color: var(--muted-dark); font-size: .75rem; }

/* ------------------------------------------------------------------ contact */

.contact {
  max-width: none;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 0;
  padding: 0;
}
.contact-form-side { background: var(--honey); color: var(--ink); padding: clamp(2.5rem, 6vw, 5rem) var(--pad); }
.contact-form-side .sec-num { color: rgba(12, 12, 13, .55); }
.contact-form-side .sec-head h2::after { background: var(--ink); }
.contact-info-side {
  background: var(--ink);
  color: #fff;
  padding: clamp(2.5rem, 6vw, 5rem) var(--pad);
  display: flex;
  flex-direction: column;
  gap: 2rem;
  justify-content: center;
}

.lead-form { display: grid; gap: 1rem; max-width: 32rem; }
.lead-form label {
  display: grid;
  gap: .35rem;
  font-family: var(--display);
  font-size: .8125rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.lead-form input, .lead-form select, .lead-form textarea {
  font: inherit;
  font-size: 1rem;
  padding: .8rem .9rem;
  color: var(--ink);
  background: rgba(255, 255, 255, .75);
  border: 2px solid rgba(12, 12, 13, .18);
  border-radius: var(--radius);
  transition: border-color .15s ease, background .15s ease;
}
.lead-form input:focus, .lead-form select:focus, .lead-form textarea:focus {
  background: #fff;
  border-color: var(--ink);
  outline-offset: 1px;
}
.lead-form textarea { resize: vertical; }
.lead-form .btn { justify-content: center; margin-top: .35rem; }
.form-status { margin: 0; font-size: .875rem; min-height: 1.2em; font-weight: 500; }

.contact-links { display: grid; gap: 1.25rem; }
.contact-links a, .contact-links div {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  color: #fff;
}
.contact-links svg { width: 22px; height: 22px; flex: 0 0 22px; color: var(--honey); }
.contact-links span { display: grid; gap: .1rem; }
.contact-links em {
  font-style: normal;
  font-family: var(--display);
  font-size: .75rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted-dark);
}
.contact-links a:hover span { color: var(--honey); }

.map { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line-dark); }
.map iframe { display: block; width: 100%; height: 280px; border: 0; }

@media (max-width: 880px) { .contact { grid-template-columns: 1fr; } }

/* ------------------------------------------------------------------- footer */

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.5rem var(--gap);
  align-items: center;
  padding: clamp(2rem, 4vw, 3rem) var(--pad);
  background: var(--ink);
  color: rgba(255, 255, 255, .65);
  font-size: .875rem;
}
.footer-brand { display: grid; gap: .6rem; justify-items: start; }
.footer-wordmark { width: clamp(220px, 26vw, 320px); height: auto; }
.site-footer strong {
  display: block;
  font-family: var(--display);
  font-size: 1.25rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: #fff;
}
.site-footer p { margin: .3rem 0 0; }
.footer-social { display: flex; flex-wrap: wrap; gap: 1.1rem; }
.footer-social a { text-decoration: none; border-bottom: 1px solid transparent; }
.footer-social a:hover { color: var(--honey); border-bottom-color: var(--honey); }
.footer-legal {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line-dark);
  font-size: .8125rem;
}
.footer-legal a { color: var(--muted-dark); text-decoration: none; }
.footer-legal a:hover { color: var(--honey); }

/* -------------------------------------------------------------- video modal */

.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: var(--pad);
  background: rgba(6, 6, 7, .93);
}
.modal[hidden] { display: none; }
.modal-inner { width: min(1000px, 100%); aspect-ratio: 16 / 9; background: #000; }
.modal-inner.is-image { aspect-ratio: auto; width: auto; max-width: min(96vw, 900px); background: none; }
.modal-inner.is-image img { max-height: 88vh; width: auto; margin-inline: auto; }
.modal-inner iframe, .modal-inner video { width: 100%; height: 100%; border: 0; }
.modal-close {
  position: absolute;
  top: 1rem; right: 1.25rem;
  width: 48px; height: 48px;
  font-size: 2rem;
  line-height: 1;
  color: #fff;
  background: none;
  border: 0;
  cursor: pointer;
}
.modal-close:hover { color: var(--honey); }


/* ------------------------------------------------------- coach-made pages */

.page-head {
  background:
    radial-gradient(800px 420px at 76% 20%, rgba(245, 179, 1, .16), transparent 62%),
    var(--ink);
  color: #fff;
  padding: clamp(2.5rem, 6vw, 5rem) var(--pad) clamp(2.5rem, 5vw, 4rem);
}
.page-head-inner { max-width: var(--maxw); margin-inline: auto; }
.page-back {
  display: inline-block;
  font-family: var(--display);
  font-size: .8125rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--honey);
  margin-bottom: 1rem;
}
.page-back::before { content: '← '; }
.page-head h1 { font-size: clamp(2.25rem, 6vw, 4.25rem); max-width: 20ch; }
.page-head h1::after {
  content: '';
  display: block;
  width: 64px;
  height: 5px;
  margin-top: 1.25rem;
  background: var(--honey);
}
.page-lede {
  margin: 1.25rem 0 0;
  font-size: clamp(1.0625rem, 1.5vw, 1.25rem);
  color: rgba(255, 255, 255, .8);
  max-width: 56ch;
}

.page-body { display: grid; gap: 2rem; justify-items: start; }
.page-photo {
  width: 100%;
  max-height: 460px;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--line);
}
.page-body .prose { max-width: 68ch; }
.page-cta { margin-top: .5rem; }

/* ------------------------------------------------- hero, second pass ----- */

.hero { min-height: auto; align-content: center; }

/* Diagonal gold slash echoing the brochure artwork. */
.hero::after {
  content: '';
  position: absolute;
  inset: 0 auto 0 -8%;
  width: 42%;
  background: linear-gradient(102deg, transparent 46%, rgba(245, 179, 1, .07) 47%, transparent 52%);
  pointer-events: none;
}

.eyebrow { display: flex; align-items: center; gap: .8rem; }
.eyebrow::after { content: ''; flex: 1; max-width: 90px; height: 2px; background: rgba(245, 179, 1, .45); }

/* Staggered entrance — skipped entirely for reduced-motion visitors. */
@media (prefers-reduced-motion: no-preference) {
  .hero-copy > * { animation: riseIn .7s cubic-bezier(.2, .7, .3, 1) backwards; }
  .hero-copy > :nth-child(1) { animation-delay: .05s; }
  .hero-copy > :nth-child(2) { animation-delay: .14s; }
  .hero-copy > :nth-child(3) { animation-delay: .23s; }
  .hero-copy > :nth-child(4) { animation-delay: .32s; }
  .hero-copy > :nth-child(5) { animation-delay: .41s; }
  .hero-copy > :nth-child(6) { animation-delay: .5s; }
  .hero-frame { animation: riseIn .9s cubic-bezier(.2, .7, .3, 1) .2s backwards; }
}
@keyframes riseIn {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: none; }
}

/* What a parent weighs up before calling. */
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem 1.5rem;
  margin-top: 1.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line-dark);
}
.trust-item { display: inline-flex; align-items: center; gap: .45rem; font-size: .875rem; }
.trust-item b { font-family: var(--display); font-size: 1.125rem; color: var(--honey); }
.trust-item em { font-style: normal; color: rgba(255, 255, 255, .75); }
.trust-item i {
  display: grid;
  place-items: center;
  width: 18px; height: 18px;
  font-size: .625rem;
  font-style: normal;
  font-weight: 700;
  color: var(--ink);
  background: var(--honey);
  border-radius: 50%;
}

/* Quiet nudge that there is more below. */
.hero-scroll {
  position: absolute;
  left: 50%;
  bottom: 1.25rem;
  translate: -50% 0;
  width: 26px;
  height: 42px;
  border: 2px solid rgba(255, 255, 255, .28);
  border-radius: 14px;
  display: grid;
  justify-items: center;
  padding-top: 7px;
}
.hero-scroll span {
  width: 4px;
  height: 8px;
  border-radius: 2px;
  background: var(--honey);
}
@media (prefers-reduced-motion: no-preference) {
  .hero-scroll span { animation: scrollHint 1.8s ease-in-out infinite; }
}
@keyframes scrollHint {
  0%, 100% { transform: translateY(0); opacity: 1; }
  60% { transform: translateY(13px); opacity: .15; }
}
.hero-scroll:hover { border-color: var(--honey); }
@media (max-width: 880px) { .hero-scroll { display: none; } }

/* The crest gets a slow breathing glow instead of sitting there flat. */
.hero-placeholder img { animation: crestGlow 6s ease-in-out infinite; }
@keyframes crestGlow {
  0%, 100% { filter: drop-shadow(0 10px 26px rgba(0, 0, 0, .55)); }
  50% { filter: drop-shadow(0 10px 34px rgba(245, 179, 1, .35)); }
}
@media (prefers-reduced-motion: reduce) { .hero-placeholder img { animation: none; } }

/* ------------------------------------------------------------- marquee --- */

.marquee {
  overflow: hidden;
  background: var(--honey);
  border-block: 3px solid var(--ink);
  padding: .7rem 0;
  user-select: none;
}
.marquee-track { display: flex; width: max-content; }
.marquee-run {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding-right: 2rem;
  font-family: var(--display);
  font-size: clamp(1rem, 2vw, 1.5rem);
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink);
  white-space: nowrap;
}
.marquee-run i { font-style: normal; font-size: .75em; opacity: .55; }
@media (prefers-reduced-motion: no-preference) {
  .marquee-track { animation: slide 34s linear infinite; }
  .marquee:hover .marquee-track { animation-play-state: paused; }
}
@keyframes slide { to { transform: translateX(-50%); } }

/* --------------------------------------------------------------- stats --- */

.stats { background: var(--ink); color: #fff; padding: clamp(2rem, 4vw, 3.25rem) var(--pad); }
.stats-inner {
  max-width: var(--maxw);
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: clamp(1rem, 3vw, 2.5rem);
  text-align: center;
}
.stats .stat { display: grid; gap: .3rem; }
.stats .stat b {
  font-family: var(--display);
  font-size: clamp(2.5rem, 6vw, 4rem);
  line-height: 1;
  color: var(--honey);
  font-variant-numeric: tabular-nums;
}
.stats .stat span {
  font-size: .8125rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted-dark);
}

/* ------------------------------------------------------------- gallery --- */

.shot-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 230px), 1fr));
  gap: .6rem;
}
.shot {
  position: relative;
  aspect-ratio: 1;
  padding: 0;
  border: 0;
  border-radius: var(--radius);
  background: var(--ink) center/cover no-repeat;
  cursor: zoom-in;
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease;
}
.shot::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(12, 12, 13, .75), transparent 55%);
  opacity: 0;
  transition: opacity .2s ease;
}
.shot:hover { transform: translateY(-4px); box-shadow: 0 16px 34px -20px rgba(12, 12, 13, .7); }
.shot:hover::after { opacity: 1; }
.shot span {
  position: absolute;
  z-index: 1;
  inset: auto .8rem .7rem;
  font-family: var(--display);
  font-size: .8125rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #fff;
  text-align: left;
  opacity: 0;
  transition: opacity .2s ease;
}
.shot:hover span { opacity: 1; }

/* ---------------------------------------------------------- sticky CTA --- */

.sticky-cta { display: none; }
@media (max-width: 720px) {
  .sticky-cta {
    position: fixed;
    inset: auto 0 0;
    z-index: 60;
    display: flex;
    gap: .5rem;
    padding: .6rem .75rem calc(.6rem + env(safe-area-inset-bottom));
    background: rgba(12, 12, 13, .96);
    backdrop-filter: blur(10px);
    border-top: 1px solid var(--line-dark);
  }
  .sticky-call {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    padding: .75rem 1rem;
    font-family: var(--display);
    font-size: .875rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    text-decoration: none;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, .3);
    border-radius: var(--radius);
  }
  .sticky-call svg { width: 18px; height: 18px; color: var(--honey); }
  .sticky-book { flex: 1; justify-content: center; }
  body { padding-bottom: 74px; }
  .hero-scroll { display: none; }
}

/* WhatsApp glyph on the trial buttons. */
.btn-wa { display: inline-flex; }
.btn-wa svg { width: 1.15em; height: 1.15em; }

/* --------------------------------------------------- Ask Gladiator bubble */

.ask-bubble {
  position: fixed;
  right: clamp(1rem, 2.5vw, 2rem);
  bottom: clamp(1rem, 2.5vw, 2rem);
  z-index: 55;
  display: flex;
  align-items: center;
  gap: .65rem;
  padding: .4rem .4rem .4rem .45rem;
  text-decoration: none;
  background: var(--ink);
  border: 2px solid var(--honey);
  border-radius: 999px;
  box-shadow: 0 14px 34px -12px rgba(0, 0, 0, .75);
  transition: transform .18s ease, box-shadow .18s ease;
}
.ask-bubble:hover { transform: translateY(-3px); box-shadow: 0 20px 40px -14px rgba(0, 0, 0, .85); }

.ask-face {
  position: relative;
  display: grid;
  place-items: center;
  width: 52px; height: 52px;
  flex: 0 0 52px;
  border-radius: 50%;
  overflow: hidden;
  background: #000;
}
.ask-face img { width: 100%; height: 100%; object-fit: cover; }

/* A slow ring so the button is noticed without nagging. */
.ask-bubble::before {
  content: '';
  position: absolute;
  left: .45rem;
  width: 52px; height: 52px;
  border-radius: 50%;
  border: 2px solid var(--honey);
  pointer-events: none;
}
@media (prefers-reduced-motion: no-preference) {
  .ask-bubble::before { animation: askPulse 2.8s ease-out infinite; }
}
@keyframes askPulse {
  0% { transform: scale(1); opacity: .7; }
  70%, 100% { transform: scale(1.6); opacity: 0; }
}

.ask-label {
  font-family: var(--display);
  font-size: .875rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #fff;
  white-space: nowrap;
}
.ask-wa {
  display: grid;
  place-items: center;
  width: 30px; height: 30px;
  flex: 0 0 30px;
  margin-right: .3rem;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
}
.ask-wa svg { width: 18px; height: 18px; }

/* On a phone the sticky booking bar owns the bottom edge — sit above it,
   and drop the label so the bubble stays out of the way. */
@media (max-width: 720px) {
  .ask-bubble { bottom: calc(74px + env(safe-area-inset-bottom) + .6rem); right: .75rem; padding: .35rem; gap: 0; }
  .ask-label { display: none; }
  .ask-wa {
    position: absolute;
    right: -2px; bottom: -2px;
    width: 24px; height: 24px;
    margin: 0;
    border: 2px solid var(--ink);
  }
  .ask-wa svg { width: 13px; height: 13px; }
  .ask-bubble::before { left: .35rem; }
}

/* ------------------------------------------------------- Instagram band --- */

.ig-band {
  background:
    linear-gradient(100deg, transparent 42%, rgba(245, 179, 1, .10) 43%, transparent 58%),
    radial-gradient(700px 340px at 78% 30%, rgba(245, 179, 1, .16), transparent 65%),
    var(--ink);
  color: #fff;
  padding: clamp(2.5rem, 5vw, 4rem) var(--pad);
  border-block: 3px solid var(--honey);
}
.ig-inner {
  max-width: var(--maxw);
  margin-inline: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: clamp(1rem, 3vw, 2.5rem);
}
.ig-glyph {
  display: grid;
  place-items: center;
  width: 76px; height: 76px;
  flex: 0 0 76px;
  color: var(--ink);
  background: var(--honey);
  border-radius: 20px;
}
.ig-glyph svg { width: 42px; height: 42px; }
.ig-copy { flex: 1 1 18rem; min-width: 0; }
.ig-copy h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); }
.ig-copy p { margin: .5rem 0 0; color: rgba(255, 255, 255, .78); max-width: 46ch; }
.ig-handle {
  font-family: var(--display);
  letter-spacing: .06em;
  color: var(--honey) !important;
  margin-top: .35rem !important;
}

/* Footer social links become icon buttons rather than a row of words. */
.footer-social a {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
}
@media (max-width: 700px) { .ig-inner { justify-content: center; text-align: center; } }

/* The building itself, beside the address — so people know the door. */
.storefront {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  border: 1px solid var(--line-dark);
}

/* Map under the address, with a directions button pinned to its corner. */
.map { position: relative; }
.map iframe { filter: grayscale(.25) contrast(1.05); }
.map-directions {
  position: absolute;
  right: .6rem;
  bottom: .6rem;
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .5rem .85rem;
  font-family: var(--display);
  font-size: .8125rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ink);
  background: var(--honey);
  border-radius: var(--radius);
  box-shadow: 0 6px 18px -8px rgba(0, 0, 0, .8);
}
.map-directions svg { width: 15px; height: 15px; }
.map-directions:hover { filter: brightness(.94); }

/* Quiet credential under the About heading — a fact, not a headline. */
.credential {
  margin-top: 1.25rem;
  padding-left: .9rem;
  border-left: 2px solid var(--honey);
  font-size: .875rem;
  line-height: 1.5;
  color: var(--muted);
  max-width: 26ch;
}

/* Services that do not need a card, kept small under the programme grid. */
.also-here {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .45rem .5rem;
  margin: 1.5rem 0 0;
  font-size: .8125rem;
}
.also-here > span {
  font-family: var(--display);
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-right: .2rem;
}
.also-here em {
  font-style: normal;
  padding: .22rem .65rem;
  color: #443F38;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
}
