/* =========================================================
   Bushido Academy — Design System
   Black / Crimson / White — bold martial-arts styling
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&family=Inter:wght@400;500;600;700&display=swap');

:root {
  --black: #0d0d0d;
  --ink: #161616;
  --ink-2: #1f1f1f;
  --red: #cf1126;
  --red-dark: #a50d1e;
  --red-light: #ef2238;
  --white: #ffffff;
  --cream: #f7f5f1;
  --gray-50: #fafafa;
  --gray-100: #f2f2f3;
  --gray-200: #e6e6e8;
  --gray-300: #d2d2d6;
  --gray-400: #a8a8af;
  --gray-500: #74747c;
  --gray-600: #55555c;
  --gray-700: #34343a;
  --gray-800: #202024;

  --shadow-sm: 0 2px 8px rgba(0, 0, 0, .08);
  --shadow: 0 10px 30px rgba(0, 0, 0, .12);
  --shadow-lg: 0 24px 60px rgba(0, 0, 0, .22);

  --radius: 14px;
  --radius-sm: 8px;
  --radius-lg: 22px;

  --maxw: 1200px;
  --header-h: 80px;

  --font-head: 'Oswald', 'Arial Narrow', sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;

  --ease: cubic-bezier(.22, .61, .36, 1);
}

/* ----------  Reset  ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  font-size: 17px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; padding: 0; }

h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.08;
  text-transform: uppercase;
  letter-spacing: .5px;
}

/* ----------  Layout helpers  ---------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 22px; }
.section { padding: 84px 0; }
.section--tight { padding: 56px 0; }
.section--dark { background: var(--black); color: var(--white); }
.section--ink { background: var(--ink); color: var(--white); }
.section--cream { background: var(--cream); }
.section--gray { background: var(--gray-100); }
.center { text-align: center; }
.mt-1 { margin-top: 10px; }
.mt-2 { margin-top: 20px; }
.mt-3 { margin-top: 34px; }
.maxw-720 { max-width: 720px; }
.mx-auto { margin-inline: auto; }

/* ----------  Typography  ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 14px;
  font-weight: 600;
  color: var(--red);
  margin-bottom: 14px;
}
.eyebrow::before { content: ""; width: 28px; height: 2px; background: var(--red); display: inline-block; }
.eyebrow.center { display: inline-flex; }
.section--dark .eyebrow, .section--ink .eyebrow { color: var(--red-light); }

h1.display { font-size: clamp(2.6rem, 6vw, 4.4rem); letter-spacing: 1px; }
h2.title { font-size: clamp(2rem, 4vw, 3rem); }
h3.subtitle { font-size: clamp(1.3rem, 2.4vw, 1.7rem); color: var(--red); letter-spacing: 1px; }
.lead { font-size: 1.18rem; color: var(--gray-600); }
.section--dark .lead, .section--ink .lead { color: var(--gray-300); }
.muted { color: var(--gray-500); }

.title-accent::after {
  content: ""; display: block; width: 72px; height: 4px;
  background: var(--red); margin-top: 18px; border-radius: 2px;
}
.center .title-accent::after { margin-inline: auto; }

/* ----------  Buttons  ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
  font-size: 15px;
  padding: 15px 30px;
  border-radius: var(--radius-sm);
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), background .2s, color .2s;
  white-space: nowrap;
  cursor: pointer;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary { background: var(--red); color: #fff; box-shadow: 0 8px 22px rgba(207, 17, 38, .35); }
.btn--primary:hover { background: var(--red-light); box-shadow: 0 12px 30px rgba(207, 17, 38, .45); }
.btn--ghost { background: transparent; color: #fff; border: 2px solid rgba(255, 255, 255, .55); }
.btn--ghost:hover { background: #fff; color: var(--black); border-color: #fff; }
.btn--dark { background: var(--black); color: #fff; }
.btn--dark:hover { background: var(--ink-2); }
.btn--lg { padding: 18px 40px; font-size: 17px; }
.btn--block { width: 100%; }

/* ----------  Header / Nav  ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 1000;
  height: var(--header-h);
  background: rgba(13, 13, 13, .92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  transition: background .3s, height .3s;
}
.site-header.scrolled { background: rgba(13, 13, 13, .98); box-shadow: 0 6px 24px rgba(0, 0, 0, .35); }
.nav {
  height: 100%;
  display: flex; align-items: center; justify-content: space-between;
  gap: 18px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { height: 52px; width: auto; }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-text b { font-family: var(--font-head); color: #fff; font-size: 20px; letter-spacing: 2px; text-transform: uppercase; }
.brand-text span { font-size: 10px; letter-spacing: 3px; color: var(--red-light); text-transform: uppercase; font-weight: 600; }

.nav-menu { display: flex; align-items: center; gap: 4px; }
.nav-menu > li { position: relative; }
.nav-menu > li > a {
  display: flex; align-items: center; gap: 6px;
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 14.5px;
  font-weight: 500;
  color: #e9e9ec;
  padding: 12px 14px;
  border-radius: 6px;
  transition: color .2s, background .2s;
}
.nav-menu > li > a:hover, .nav-menu > li > a.active { color: #fff; background: rgba(255, 255, 255, .08); }
.nav-menu > li > a .caret { font-size: 10px; opacity: .7; transition: transform .2s; }
.has-dropdown:hover > a .caret { transform: rotate(180deg); }

.dropdown {
  position: absolute; top: calc(100% + 8px); left: 0;
  min-width: 230px;
  background: #fff;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
  padding: 8px;
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: opacity .2s, transform .2s, visibility .2s;
}
.has-dropdown:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown a {
  display: block;
  padding: 11px 14px;
  border-radius: 6px;
  color: var(--ink);
  font-weight: 500;
  font-size: 15px;
  transition: background .15s, color .15s, padding-left .15s;
}
.dropdown a:hover { background: var(--gray-100); color: var(--red); padding-left: 18px; }

.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-phone {
  display: inline-flex; align-items: center; gap: 8px;
  color: #fff; font-family: var(--font-head); letter-spacing: 1px; font-size: 15px;
}
.nav-phone svg { fill: var(--red-light); }

.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.nav-toggle span { width: 26px; height: 3px; background: #fff; border-radius: 2px; transition: .3s; }
body.menu-open .nav-toggle span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
body.menu-open .nav-toggle span:nth-child(2) { opacity: 0; }
body.menu-open .nav-toggle span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ----------  Hero  ---------- */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex; align-items: center;
  color: #fff;
  padding-top: var(--header-h);
  background: var(--black);
  overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  z-index: 0;
}
.hero__bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(105deg, rgba(13, 13, 13, .96) 0%, rgba(13, 13, 13, .82) 42%, rgba(13, 13, 13, .45) 100%),
    radial-gradient(circle at 80% 20%, rgba(207, 17, 38, .25), transparent 45%);
}
.hero__inner { position: relative; z-index: 1; max-width: 760px; padding: 60px 0; }
.hero h1 { margin-bottom: 22px; }
.hero h1 .hl { color: var(--red-light); }
.hero p { font-size: 1.25rem; color: var(--gray-200); max-width: 620px; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 36px; }
.hero__badges { display: flex; flex-wrap: wrap; align-items: center; gap: 26px; margin-top: 44px; }
.hero__badges img { height: 34px; width: auto; filter: drop-shadow(0 4px 10px rgba(0, 0, 0, .4)); }
.hero__badge-text { font-size: 13px; color: var(--gray-300); letter-spacing: .5px; }
.hero__badge-text b { color: #fff; font-family: var(--font-head); font-size: 17px; display: block; }

/* ----------  Stat strip  ---------- */
.stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 20px; text-align: center;
}
.stat__num { font-family: var(--font-head); font-size: clamp(2.2rem, 4vw, 3rem); color: var(--red); line-height: 1; }
.section--dark .stat__num { color: var(--red-light); }
.stat__label { text-transform: uppercase; letter-spacing: 2px; font-size: 13px; color: var(--gray-500); margin-top: 8px; font-weight: 600; }
.section--dark .stat__label { color: var(--gray-300); }

/* ----------  Section head  ---------- */
.section-head { max-width: 760px; margin-bottom: 52px; }
.section-head.center { margin-inline: auto; }

/* ----------  Program cards  ---------- */
.cards-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.prog-card {
  background: #fff; border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  display: flex; flex-direction: column;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.prog-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.prog-card__media { position: relative; aspect-ratio: 4 / 3; overflow: hidden; }
.prog-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.prog-card:hover .prog-card__media img { transform: scale(1.06); }
.prog-card__tag {
  position: absolute; top: 14px; left: 14px;
  background: var(--red); color: #fff;
  font-family: var(--font-head); text-transform: uppercase; letter-spacing: 1px;
  font-size: 12.5px; padding: 6px 14px; border-radius: 50px;
}
.prog-card__body { padding: 26px 24px 28px; display: flex; flex-direction: column; flex: 1; }
.prog-card__body h3 { font-size: 1.5rem; margin-bottom: 10px; }
.prog-card__body p { color: var(--gray-600); margin-bottom: 20px; flex: 1; font-size: .98rem; }
.prog-card__link {
  font-family: var(--font-head); text-transform: uppercase; letter-spacing: 1.5px;
  font-size: 14px; font-weight: 600; color: var(--red);
  display: inline-flex; align-items: center; gap: 8px; transition: gap .2s;
}
.prog-card__link:hover { gap: 14px; }

/* ----------  Feature / benefit grid  ---------- */
.benefits { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.benefit {
  text-align: center; padding: 36px 26px;
  background: #fff; border-radius: var(--radius);
  border: 1px solid var(--gray-200);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
}
.section--dark .benefit, .section--ink .benefit { background: var(--ink-2); border-color: rgba(255, 255, 255, .08); }
.benefit:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--red); }
.benefit__icon {
  width: 76px; height: 76px; margin: 0 auto 22px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  border-radius: 18px; color: #fff;
  box-shadow: 0 10px 24px rgba(207, 17, 38, .3);
}
.benefit__icon svg { width: 38px; height: 38px; fill: #fff; }
.benefit h3 { font-size: 1.3rem; margin-bottom: 12px; }
.benefit p { color: var(--gray-600); font-size: .98rem; }
.section--dark .benefit p, .section--ink .benefit p { color: var(--gray-300); }

/* ----------  Split / feature row  ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.split--reverse .split__media { order: 2; }
.split__media { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); position: relative; }
.split__media img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4 / 3; }
.split__media .frame-accent {
  position: absolute; inset: auto auto -18px -18px; width: 120px; height: 120px;
  border: 4px solid var(--red); border-radius: var(--radius-lg); z-index: -1;
}
.split__body h2 { margin-bottom: 18px; }
.split__body p { color: var(--gray-600); margin-bottom: 16px; }
.section--dark .split__body p { color: var(--gray-300); }
.feature-list { display: grid; gap: 16px; margin-top: 24px; }
.feature-list li { display: flex; gap: 14px; align-items: flex-start; }
.feature-list .fi {
  flex: none; width: 30px; height: 30px; border-radius: 8px;
  background: rgba(207, 17, 38, .12); color: var(--red);
  display: grid; place-items: center; margin-top: 2px;
}
.feature-list .fi svg { width: 16px; height: 16px; fill: var(--red); }
.feature-list b { display: block; font-family: var(--font-head); letter-spacing: .5px; text-transform: uppercase; font-size: 1.02rem; }
.feature-list span { color: var(--gray-600); font-size: .96rem; }
.section--dark .feature-list span { color: var(--gray-300); }

/* ----------  Comparison table  ---------- */
.compare { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.compare__col { padding: 38px 34px; }
.compare__col--bad { background: var(--gray-100); }
.compare__col--good { background: var(--black); color: #fff; }
.compare__col h3 { font-size: 1.4rem; margin-bottom: 24px; display: flex; align-items: center; gap: 12px; }
.compare__col--bad h3 { color: var(--gray-600); }
.compare__col--good h3 { color: var(--red-light); }
.compare li { display: flex; gap: 12px; align-items: flex-start; padding: 12px 0; border-bottom: 1px solid rgba(0, 0, 0, .07); font-size: 1rem; }
.compare__col--good li { border-bottom-color: rgba(255, 255, 255, .1); }
.compare li:last-child { border-bottom: none; }
.compare .mark { flex: none; width: 24px; height: 24px; border-radius: 50%; display: grid; place-items: center; margin-top: 2px; }
.compare__col--bad .mark { background: #e0e0e3; color: var(--gray-500); }
.compare__col--good .mark { background: var(--red); color: #fff; }
.compare .mark svg { width: 13px; height: 13px; }

/* ----------  Testimonials  ---------- */
.reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.review {
  background: #fff; border-radius: var(--radius); padding: 30px 28px;
  border: 1px solid var(--gray-200); box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; gap: 14px;
}
.review__stars { color: #f5a623; letter-spacing: 3px; font-size: 18px; }
.review p { color: var(--gray-700); font-size: 1rem; }
.review__who { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.review__avatar {
  width: 46px; height: 46px; border-radius: 50%; flex: none;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: #fff; display: grid; place-items: center;
  font-family: var(--font-head); font-size: 18px;
}
.review__who b { font-family: var(--font-head); letter-spacing: .5px; }
.review__who span { display: block; font-size: 13px; color: var(--gray-500); }

/* ----------  FAQ  ---------- */
.faq { max-width: 820px; margin-inline: auto; }
.faq-item { border-bottom: 1px solid var(--gray-200); }
.faq-q {
  width: 100%; text-align: left; display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 24px 4px; font-family: var(--font-head); text-transform: uppercase;
  letter-spacing: .5px; font-size: 1.12rem; color: var(--ink);
}
.faq-q .plus { flex: none; width: 30px; height: 30px; border-radius: 50%; background: var(--gray-100); color: var(--red); display: grid; place-items: center; font-size: 20px; transition: transform .3s, background .3s, color .3s; }
.faq-item.open .faq-q .plus { transform: rotate(45deg); background: var(--red); color: #fff; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s var(--ease); }
.faq-a p { padding: 0 4px 24px; color: var(--gray-600); }

/* ----------  Lead / trial form  ---------- */
.lead-form {
  background: #fff; border-radius: var(--radius-lg);
  padding: 40px 38px; box-shadow: var(--shadow-lg);
  border-top: 6px solid var(--red);
}
.lead-form h3 { font-size: 1.6rem; margin-bottom: 8px; }
.lead-form .sub { color: var(--gray-500); margin-bottom: 24px; font-size: .98rem; }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; color: var(--gray-600); margin-bottom: 7px; }
.field input, .field select, .field textarea {
  width: 100%; padding: 14px 16px; font-family: inherit; font-size: 16px;
  border: 1.5px solid var(--gray-300); border-radius: var(--radius-sm); background: var(--gray-50);
  transition: border-color .2s, box-shadow .2s, background .2s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--red); background: #fff; box-shadow: 0 0 0 4px rgba(207, 17, 38, .12);
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.consent { display: flex; gap: 10px; align-items: flex-start; font-size: 12.5px; color: var(--gray-500); margin: 8px 0 20px; line-height: 1.5; }
.consent input { margin-top: 3px; flex: none; }
.form-note { font-size: 12px; color: var(--gray-400); margin-top: 14px; text-align: center; }

.form-success {
  display: none; text-align: center; padding: 20px 10px;
}
.form-success.show { display: block; }
.form-success .ok { width: 64px; height: 64px; border-radius: 50%; background: var(--red); color: #fff; display: grid; place-items: center; margin: 0 auto 16px; font-size: 30px; }
.form-success h3 { color: var(--red); }

/* ----------  CTA band  ---------- */
.cta-band {
  background:
    linear-gradient(rgba(13, 13, 13, .9), rgba(13, 13, 13, .9)),
    radial-gradient(circle at 70% 30%, rgba(207, 17, 38, .35), transparent 50%);
  color: #fff; text-align: center; border-radius: var(--radius-lg);
  padding: 64px 40px;
}
.cta-band h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); margin-bottom: 16px; }
.cta-band p { color: var(--gray-300); max-width: 560px; margin: 0 auto 30px; font-size: 1.12rem; }

/* ----------  Page hero (interior)  ---------- */
.page-hero {
  position: relative; padding: calc(var(--header-h) + 70px) 0 70px;
  color: #fff; background: var(--black); overflow: hidden;
}
.page-hero__bg { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: .35; }
.page-hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(13,13,13,.92), rgba(13,13,13,.6)); }
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { font-size: clamp(2.3rem, 5vw, 3.6rem); }
.page-hero p { color: var(--gray-300); font-size: 1.2rem; max-width: 640px; margin-top: 16px; }
.breadcrumb { display: flex; gap: 8px; align-items: center; font-size: 13px; color: var(--gray-400); text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 18px; }
.breadcrumb a:hover { color: #fff; }

/* ----------  Footer  ---------- */
.site-footer { background: var(--black); color: var(--gray-300); padding-top: 70px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 50px; }
.footer-brand img { height: 70px; margin-bottom: 18px; }
.footer-brand p { font-size: .96rem; color: var(--gray-400); max-width: 320px; }
.footer-social { display: flex; gap: 12px; margin-top: 20px; }
.footer-social a { width: 42px; height: 42px; border-radius: 10px; background: var(--ink-2); display: grid; place-items: center; transition: background .2s, transform .2s; }
.footer-social a:hover { background: var(--red); transform: translateY(-3px); }
.footer-social svg { width: 19px; height: 19px; fill: #fff; }
.footer-col h4 { color: #fff; font-size: 1.05rem; letter-spacing: 1.5px; margin-bottom: 20px; }
.footer-col ul { display: grid; gap: 11px; }
.footer-col a { color: var(--gray-400); font-size: .96rem; transition: color .2s, padding-left .2s; }
.footer-col a:hover { color: var(--red-light); padding-left: 5px; }
.footer-contact li { display: flex; gap: 12px; align-items: flex-start; font-size: .96rem; color: var(--gray-400); margin-bottom: 14px; }
.footer-contact svg { flex: none; width: 18px; height: 18px; fill: var(--red-light); margin-top: 3px; }
.footer-bottom { border-top: 1px solid rgba(255, 255, 255, .08); padding: 24px 0; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 13.5px; color: var(--gray-500); }

/* ----------  Schedule page  ---------- */
.sched-legend { display: flex; flex-wrap: wrap; gap: 18px; justify-content: center; margin-bottom: 40px; }
.sched-legend span { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 600; color: var(--gray-600); }
.sched-legend .dot { width: 14px; height: 14px; border-radius: 4px; }
.dot--bjj-kids { background: #2d7dd2; }
.dot--bjj-teen { background: #16a085; }
.dot--bjj-adult { background: var(--red); }
.dot--muay { background: #e67e22; }
.dot--open { background: #6c5ce7; }
.dot--womens { background: #d63384; }

.timetable-wrap { overflow-x: auto; border-radius: var(--radius); box-shadow: var(--shadow); -webkit-overflow-scrolling: touch; }
table.timetable { width: 100%; min-width: 820px; border-collapse: collapse; background: #fff; font-size: 14.5px; }
table.timetable th, table.timetable td { padding: 0; text-align: center; vertical-align: top; }
table.timetable thead th {
  background: var(--black); color: #fff; font-family: var(--font-head);
  text-transform: uppercase; letter-spacing: 1px; font-size: 14px;
  padding: 16px 10px; position: sticky; top: 0;
}
table.timetable thead th:first-child { text-align: left; padding-left: 18px; }
table.timetable tbody th {
  background: var(--gray-100); font-family: var(--font-head); letter-spacing: .5px;
  color: var(--ink); padding: 14px 18px; text-align: left; white-space: nowrap;
  border-bottom: 1px solid var(--gray-200); font-size: 14px; width: 130px;
}
table.timetable td { border-bottom: 1px solid var(--gray-200); border-left: 1px solid var(--gray-200); padding: 6px; }
.class-chip {
  display: block; border-radius: 8px; padding: 9px 10px; color: #fff;
  text-align: left; cursor: pointer; transition: transform .15s, filter .15s; margin: 2px 0;
}
.class-chip:hover { transform: translateY(-2px); filter: brightness(1.08); }
.class-chip b { display: block; font-family: var(--font-head); font-size: 13.5px; letter-spacing: .5px; line-height: 1.2; }
.class-chip small { font-size: 11.5px; opacity: .92; }
.chip--bjj-kids { background: #2d7dd2; }
.chip--bjj-teen { background: #16a085; }
.chip--bjj-adult { background: var(--red); }
.chip--muay { background: #e67e22; }
.chip--open { background: #6c5ce7; }
.chip--womens { background: #d63384; }

/* mobile day-by-day schedule (hidden on wide screens) */
.sched-mobile { display: none; }
.sched-day { background: #fff; border: 1px solid var(--gray-200); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); margin-bottom: 14px; }
.sched-day__name {
  background: var(--black); color: #fff; font-family: var(--font-head);
  text-transform: uppercase; letter-spacing: 1px; font-size: 15px;
  padding: 12px 16px; display: flex; align-items: center; justify-content: space-between;
}
.sched-day__name span { font-size: 11px; letter-spacing: 1px; color: var(--gray-400); font-family: var(--font-body); font-weight: 600; text-transform: none; }
.sched-day__list { padding: 4px 0; }
.sched-row { display: flex; gap: 12px; align-items: center; padding: 11px 16px; border-left: 4px solid var(--gray-300); }
.sched-row + .sched-row { border-top: 1px solid var(--gray-100); }
.sched-row__time { flex: none; min-width: 70px; font-family: var(--font-head); font-size: 14px; letter-spacing: .3px; color: var(--ink); }
.sched-row__body b { display: block; font-size: 14.5px; letter-spacing: .2px; line-height: 1.25; }
.sched-row__body small { color: var(--gray-500); font-size: 12.5px; }
.sclass--bjj-kids { border-left-color: #2d7dd2; }
.sclass--bjj-teen { border-left-color: #16a085; }
.sclass--bjj-adult { border-left-color: var(--red); }
.sclass--muay { border-left-color: #e67e22; }
.sclass--open { border-left-color: #6c5ce7; }
.sclass--womens { border-left-color: #d63384; }

@media (max-width: 720px) {
  #timetable .timetable-wrap { display: none; }
  #timetable .sched-mobile { display: block; }
}

/* booking cards */
.book-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.book-card {
  background: #fff; border: 1px solid var(--gray-200); border-radius: var(--radius);
  padding: 30px 28px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column;
  border-top: 5px solid var(--red);
}
.book-card h3 { font-size: 1.4rem; margin-bottom: 6px; }
.book-card .ages { color: var(--red); font-weight: 600; letter-spacing: 1px; text-transform: uppercase; font-size: 13px; margin-bottom: 14px; }
.book-card p { color: var(--gray-600); font-size: .96rem; margin-bottom: 20px; flex: 1; }
.book-card .next { font-size: 13.5px; color: var(--gray-500); margin-bottom: 16px; }
.book-card .next b { color: var(--ink); font-family: var(--font-head); }

/* ----------  Booking modal  ---------- */
.modal-overlay {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(8, 8, 8, .7); backdrop-filter: blur(4px);
  display: none; align-items: center; justify-content: center; padding: 20px;
}
.modal-overlay.open { display: flex; }
.modal {
  background: #fff; border-radius: var(--radius-lg); width: 100%; max-width: 520px;
  max-height: 92vh; overflow-y: auto; box-shadow: var(--shadow-lg);
  animation: pop .3s var(--ease);
}
@keyframes pop { from { opacity: 0; transform: translateY(20px) scale(.97); } to { opacity: 1; transform: none; } }
.modal__head { background: var(--black); color: #fff; padding: 26px 30px; border-radius: var(--radius-lg) var(--radius-lg) 0 0; position: relative; }
.modal__head h3 { font-size: 1.5rem; }
.modal__head p { color: var(--gray-300); font-size: .95rem; margin-top: 4px; }
.modal__close { position: absolute; top: 18px; right: 18px; width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,.12); color: #fff; font-size: 22px; display: grid; place-items: center; transition: background .2s; }
.modal__close:hover { background: var(--red); }
.modal__body { padding: 28px 30px 32px; }
.slot-list { display: grid; gap: 10px; margin-bottom: 8px; }
.slot {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 14px 16px; border: 1.5px solid var(--gray-300); border-radius: var(--radius-sm);
  cursor: pointer; transition: border-color .15s, background .15s;
}
.slot:hover { border-color: var(--red); background: rgba(207,17,38,.04); }
.slot.selected { border-color: var(--red); background: rgba(207,17,38,.08); box-shadow: 0 0 0 3px rgba(207,17,38,.12); }
.slot b { font-family: var(--font-head); letter-spacing: .5px; }
.slot small { color: var(--gray-500); display: block; }
.slot .pick { width: 22px; height: 22px; border-radius: 50%; border: 2px solid var(--gray-300); display: grid; place-items: center; }
.slot.selected .pick { border-color: var(--red); background: var(--red); }
.slot.selected .pick::after { content: ""; width: 8px; height: 8px; border-radius: 50%; background: #fff; }

/* booked confirmation toast */
.toast {
  position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%) translateY(120%);
  background: var(--black); color: #fff; padding: 16px 26px; border-radius: 50px;
  box-shadow: var(--shadow-lg); z-index: 3000; display: flex; align-items: center; gap: 12px;
  transition: transform .4s var(--ease); font-weight: 500;
}
.toast.show { transform: translateX(-50%) translateY(0); }
.toast .tcheck { width: 26px; height: 26px; border-radius: 50%; background: var(--red); display: grid; place-items: center; flex: none; }

/* my bookings list */
.mybookings { display: grid; gap: 12px; }
.booking-row {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  background: #fff; border: 1px solid var(--gray-200); border-left: 4px solid var(--red);
  border-radius: var(--radius-sm); padding: 16px 20px;
}
.booking-row .bdate { font-family: var(--font-head); letter-spacing: .5px; }
.booking-row .bclass { color: var(--gray-600); font-size: .92rem; }
.booking-row button { color: var(--gray-400); font-size: 13px; text-decoration: underline; }
.booking-row button:hover { color: var(--red); }
.empty-note { text-align: center; color: var(--gray-500); padding: 30px; background: var(--gray-100); border-radius: var(--radius); }

/* ----------  Map  ---------- */
.map-embed { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--gray-200); }
.map-embed iframe { width: 100%; height: 100%; min-height: 420px; border: 0; display: block; }

.info-card { display: flex; gap: 16px; align-items: flex-start; padding: 22px; background: #fff; border: 1px solid var(--gray-200); border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.info-card__icon { flex: none; width: 52px; height: 52px; border-radius: 12px; background: linear-gradient(135deg, var(--red), var(--red-dark)); display: grid; place-items: center; }
.info-card__icon svg { width: 24px; height: 24px; fill: #fff; }
.info-card h4 { font-size: 1.1rem; margin-bottom: 4px; }
.info-card a, .info-card p { color: var(--gray-600); font-size: .98rem; }
.info-card a:hover { color: var(--red); }

/* ----------  Reveal animation  ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ----------  Responsive  ---------- */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .split { gap: 40px; }
}
@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  .nav-phone { display: none; }
  .nav-menu {
    position: fixed; top: var(--header-h); right: 0; left: auto; bottom: auto;
    height: calc(100vh - var(--header-h));
    height: calc(100dvh - var(--header-h)); /* dynamic vh: accounts for mobile browser chrome */
    width: min(360px, 86vw);
    background: var(--ink); flex-direction: column; align-items: stretch; gap: 0;
    padding: 18px; overflow-y: auto;
    transform: translateX(110%); transition: transform .35s var(--ease);
    box-shadow: -10px 0 40px rgba(0,0,0,.4);
  }
  body.menu-open .nav-menu { transform: translateX(0); }
  body.menu-open { overflow: hidden; }
  .nav-menu > li > a { padding: 15px 12px; font-size: 16px; border-radius: 8px; }
  .dropdown {
    position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none;
    background: rgba(255,255,255,.04); max-height: 0; overflow: hidden; padding: 0 8px;
    transition: max-height .3s var(--ease);
  }
  .has-dropdown.open .dropdown { max-height: 320px; padding: 6px 8px; }
  .dropdown a { color: var(--gray-300); }
  .dropdown a:hover { background: rgba(255,255,255,.06); }
  .nav-menu .nav-trial { margin-top: 10px; }
  .cards-3, .benefits, .reviews, .book-cards { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); gap: 30px; }
  .split { grid-template-columns: 1fr; }
  .split--reverse .split__media { order: 0; }
  .compare { grid-template-columns: 1fr; }
  .hero { min-height: auto; }
}
@media (max-width: 560px) {
  body { font-size: 16px; }
  .section { padding: 60px 0; }
  .field-row { grid-template-columns: 1fr; }
  .reviews, .cards-3 { gap: 18px; }
  .lead-form, .cta-band { padding: 30px 22px; }
  .hero__cta .btn { width: 100%; }
  .footer-grid { grid-template-columns: 1fr; }
}

/* reduce motion */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
}
