/* ============================================================
   WARRIOR KICKBOXING: Design System
   Brand: black #111 + gold #C9A84C · Barlow Condensed / Inter
   Sharp corners (0 radius). High-energy, bold.
   Migrated off Manus → static HTML/CSS/JS (Cloudflare Pages).
   ============================================================ */

:root {
  --black: #111111;
  --gold: #C9A84C;
  --gold-dark: #765D0B;
  --gold-light: #E8D87A;
  --white: #FFFFFF;
  --gray-bg: #F5F5F5;
  --gray-line: #E8E8E8;
  --text: #111111;
  --text-muted: #555555;
  --text-soft: #777777;
  --maxw: 1200px;
  --nav-h: 68px;
  --font-head: "Barlow Condensed", sans-serif;
  --font-body: "Inter", sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: var(--gold-dark); text-decoration: none; }
.section-dark a, .footer a, .page-hero a, .hero a, .card-dark a, .nav a { color: var(--gold); }

:focus-visible {
  outline: 3px solid #1F6FEB;
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: 0.5rem;
  left: 0.5rem;
  z-index: 2000;
  padding: 0.7rem 1rem;
  background: var(--white);
  color: var(--black);
  transform: translateY(-150%);
}
.skip-link:focus { transform: translateY(0); }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 0.95;
  margin: 0;
}

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 1.5rem;
  width: 100%;
}

/* ---------- Eyebrow label ---------- */
.eyebrow {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

/* ---------- Buttons ---------- */
.btn-gold, .btn-black, .btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.9rem 1.75rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.12s ease, background 0.15s ease, color 0.15s ease;
  text-align: center;
  line-height: 1;
}
.btn-gold, .section-dark .btn-gold, .footer .btn-gold, .page-hero .btn-gold, .hero .btn-gold, .card-dark .btn-gold, .nav .btn-gold { background: var(--gold); color: var(--black); border-color: var(--gold); }
.btn-gold:hover { background: var(--gold-light); border-color: var(--gold-light); transform: translateY(-2px); }
.btn-black, .section-dark .btn-black, .footer .btn-black, .page-hero .btn-black, .hero .btn-black, .card-dark .btn-black, .nav .btn-black { background: var(--black); color: var(--white); border-color: var(--black); }
.btn-black:hover { background: #000; transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--white); border-color: var(--white); }
.btn-outline:hover { background: var(--white); color: var(--black); }
.btn-outline.dark { color: var(--black); border-color: var(--black); }
.btn-outline.dark:hover { background: var(--black); color: var(--white); }

@keyframes goldPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(201,168,76,0.5); }
  50% { box-shadow: 0 0 0 12px rgba(201,168,76,0); }
}
.btn-gold-pulse { animation: goldPulse 2s infinite; }

/* ---------- Navbar ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: rgba(17,17,17,0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  z-index: 1000;
}
.nav-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  height: 100%;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo { display: flex; align-items: center; gap: 0.6rem; }
.nav-logo img { width: auto; height: 30px; object-fit: contain; transition: transform .25s ease; }
.nav-logo:hover img { transform: translateY(-1px) scale(1.04); }
.nav-logo span {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 1.25rem;
  text-transform: uppercase;
  color: var(--white);
  letter-spacing: 0.02em;
}
.nav-logo span b { color: var(--gold); font-weight: 900; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
  margin: 0; padding: 0;
}
.nav-links a {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  transition: color 0.15s;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-cta { margin-left: 0.5rem; }
.nav-cta .btn-gold { padding: 0.65rem 1.25rem; font-size: 0.85rem; }
.nav-toggle {
  display: none;
  background: none; border: none; cursor: pointer;
  width: 32px; height: 32px;
  flex-direction: column; justify-content: center; gap: 5px;
}
.nav-toggle span { display: block; height: 2px; width: 24px; background: var(--white); transition: 0.2s; }

/* Mobile nav */
@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed;
    top: var(--nav-h); left: 0; right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: var(--black);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease;
  }
  .nav-links.open { max-height: 80vh; }
  .nav-links li { width: 100%; }
  .nav-links a { display: block; padding: 1rem 1.5rem; border-bottom: 1px solid rgba(255,255,255,0.06); width: 100%; }
  .nav-cta { width: 100%; margin: 0; padding: 1rem 1.5rem; }
  .nav-cta .btn-gold { width: 100%; justify-content: center; }
}

/* ---------- Sections ---------- */
section { position: relative; }
.section { padding: 5rem 0; }
.section-dark { background: var(--black); color: var(--white); }
.section-gray { background: var(--gray-bg); }
.section-gold { background: var(--gold); color: var(--black); }

.section-dark h1, .section-dark h2, .section-dark h3 { color: var(--white); }
.gold-text { color: var(--gold); }
.italic { font-style: italic; }

h1.display { font-size: clamp(2.8rem, 7vw, 5.5rem); letter-spacing: -0.01em; }
h2.display { font-size: clamp(2rem, 5vw, 3.5rem); }
.lead { font-size: 1.05rem; color: var(--text-muted); line-height: 1.75; max-width: 560px; }
.section-dark .lead { color: rgba(255,255,255,0.65); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  color: var(--white);
  background: var(--black);
  padding-top: var(--nav-h);
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.4;
  z-index: 0;
}
.hero-bg-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(17,17,17,0.92) 0%, rgba(17,17,17,0.6) 60%, rgba(17,17,17,0.4) 100%);
  z-index: 1;
}
.hero .container { position: relative; z-index: 2; }
.hero-accent { position: absolute; top: 0; left: 0; width: 5px; height: 100%; background: var(--gold); z-index: 3; }

/* Page hero (interior) */
.page-hero {
  position: relative;
  background: var(--black);
  color: var(--white);
  padding: calc(var(--nav-h) + 4rem) 0 4rem;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; opacity: 0.3; z-index: 0;
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero .hero-accent { z-index: 3; }

/* ---------- Stat strip ---------- */
.stats { display: flex; flex-wrap: wrap; gap: 2.5rem; margin-top: 2.5rem; }
.stat .num { font-family: var(--font-head); font-weight: 900; font-size: 2.5rem; color: var(--gold); line-height: 1; }
.stat .label { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.12em; color: rgba(255,255,255,0.6); margin-top: 0.3rem; }
.section-gray .stat .label, .section-default .stat .label { color: var(--text-soft); }

/* ---------- Cards / grids ---------- */
.grid { display: grid; gap: 2rem; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

.card {
  background: var(--white);
  border: 1px solid var(--gray-line);
  padding: 2rem;
}
.card-dark { background: var(--black); color: var(--white); border: none; padding: 2rem; }
.card .num-badge {
  font-family: var(--font-head); font-weight: 900; font-size: 1.5rem;
  color: var(--gold); margin-bottom: 0.75rem;
}
.card h3 { font-size: 1.35rem; margin-bottom: 0.6rem; }
.card p { font-size: 0.9rem; color: var(--text-muted); margin: 0; line-height: 1.7; }
.card-dark p { color: rgba(255,255,255,0.6); }
.card .icon { font-size: 1.8rem; margin-bottom: 0.75rem; display: block; }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: center; }
@media (max-width: 860px) { .split { grid-template-columns: 1fr; gap: 2rem; } }

.media-frame { position: relative; }
.media-frame img { width: 100%; height: 100%; object-fit: cover; }
.media-badge {
  position: absolute; bottom: 1.25rem; left: 1.25rem;
  background: var(--gold); color: var(--black);
  padding: 0.75rem 1rem; font-family: var(--font-head); font-weight: 900;
}
.media-badge .big { font-size: 1.6rem; line-height: 1; }
.media-badge .small { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.1em; }

/* ---------- Reviews ---------- */
.review { background: var(--white); border: 1px solid var(--gray-line); padding: 2rem; }
.section-dark .review { background: #1a1a1a; border-color: rgba(255,255,255,0.1); }
.review .stars { color: var(--gold); letter-spacing: 2px; margin-bottom: 1rem; }
.review p { font-size: 0.95rem; line-height: 1.7; margin: 0 0 1.25rem; }
.review .who { font-family: var(--font-head); font-weight: 800; text-transform: uppercase; font-size: 1.05rem; }
.review .where { font-size: 0.75rem; color: var(--text-soft); text-transform: uppercase; letter-spacing: 0.1em; }
.section-dark .review .where { color: rgba(255,255,255,0.45); }

/* ---------- Checklist ---------- */
.checklist { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem 1.5rem; }
@media (max-width: 640px) { .checklist { grid-template-columns: 1fr; } }
.checklist li { display: flex; align-items: flex-start; gap: 0.6rem; font-size: 0.92rem; color: var(--text-muted); }
.checklist li::before { content: "✓"; color: var(--gold); font-weight: 800; flex-shrink: 0; }
.section-dark .checklist li { color: rgba(255,255,255,0.7); }

/* ---------- Forms ---------- */
.form-card { background: var(--black); padding: 2.5rem; position: relative; }
.form-card::before {
  content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
}
.form-card h2 { color: var(--white); font-size: 1.8rem; letter-spacing: 0.04em; margin-bottom: 0.25rem; }
.form-card .form-sub { font-size: 0.78rem; color: rgba(255,255,255,0.45); margin-bottom: 2rem; }
.field { margin-bottom: 1rem; }
.field label {
  font-family: var(--font-body); font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.12em; color: rgba(255,255,255,0.55); text-transform: uppercase;
  display: block; margin-bottom: 0.4rem;
}
.wk-input, .wk-select, textarea.wk-input {
  width: 100%; padding: 0.85rem 1rem;
  font-family: var(--font-body); font-size: 0.9rem; color: var(--white);
  background: #1c1c1c; border: 1px solid rgba(255,255,255,0.15);
  outline: none; transition: border-color 0.15s;
}
.wk-input::placeholder { color: rgba(255,255,255,0.3); }
.wk-input:focus, .wk-select:focus { border-color: var(--gold); }
.wk-select { appearance: none; cursor: pointer; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
.select-wrap { position: relative; }
.select-wrap::after {
  content: "▼"; position: absolute; right: 1rem; top: 50%; transform: translateY(-50%);
  color: var(--gold); pointer-events: none; font-size: 0.7rem;
}
.form-disclaimer { font-size: 0.7rem; color: rgba(255,255,255,0.35); text-align: center; line-height: 1.6; margin-top: 0.75rem; }
.form-note { font-size: 0.85rem; padding: 0.85rem 1rem; margin-top: 0.5rem; }
.form-note.success { background: rgba(201,168,76,0.15); color: var(--gold-light); border: 1px solid rgba(201,168,76,0.4); }
.form-note.error { background: rgba(192,57,43,0.15); color: #ff9b8e; border: 1px solid rgba(192,57,43,0.4); }
#waiver-note.error { background: #FDECEA; color: #7A1712; border-color: #B42318; }
.form-note.hidden { display: none; }
.field-error { width: 100%; margin-top: .4rem; color: #9B1C1C; font-size: .78rem; font-weight: 600; }
.field-invalid .wk-input, .field-invalid .wk-select, .field-invalid #sig-pad { border-color: #B42318 !important; box-shadow: 0 0 0 3px rgba(180,35,24,.15); }

/* Light form (waiver) */
.form-light { background: var(--white); padding: 2rem; }
.form-light h2 { color: var(--black); font-size: 1.5rem; letter-spacing: 0.04em; margin-bottom: 1.5rem; }
.form-light label { color: var(--text-muted); }
.form-light .wk-input, .form-light .wk-select {
  color: var(--black); background: var(--white); border: 1.5px solid #ddd;
}
.form-light .wk-input::placeholder { color: #aaa; }
.req { color: #c0392b; }

/* ---------- Info rows (location details) ---------- */
.info-list { display: flex; flex-direction: column; }
.info-row { display: flex; gap: 1rem; align-items: flex-start; padding: 1.25rem 0; border-bottom: 1px solid rgba(255,255,255,0.08); }
.section-default .info-row, .form-light .info-row { border-color: var(--gray-line); }
.info-row .ico { font-size: 1.1rem; flex-shrink: 0; }
.info-row .k { font-size: 0.6rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.35); margin-bottom: 0.25rem; }
.info-row .v { font-size: 0.9rem; color: rgba(255,255,255,0.7); }
.info-row .v a { color: var(--gold); }

/* ---------- Schedule ---------- */
.sched { display: grid; grid-template-columns: repeat(7, 1fr); gap: 0.75rem; }
@media (max-width: 800px) { .sched { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .sched { grid-template-columns: 1fr; } }
.sched-day { background: var(--white); border: 1px solid var(--gray-line); padding: 1rem; text-align: center; }
.section-dark .sched-day { background: #1a1a1a; border-color: rgba(255,255,255,0.1); }
.sched-day .dow { font-family: var(--font-head); font-weight: 800; text-transform: uppercase; font-size: 1.05rem; margin-bottom: 0.75rem; }
.slot { font-size: 0.78rem; padding: 0.4rem; margin-bottom: 0.4rem; font-weight: 600; }
.slot.live { background: var(--gold); color: var(--black); }
.slot.soon { border: 1px solid var(--gray-line); color: var(--text-soft); }
.section-dark .slot.soon { border-color: rgba(255,255,255,0.2); color: rgba(255,255,255,0.5); }
.slot.closed { color: var(--text-soft); font-style: italic; }

/* ---------- Location tabs (book) ---------- */
.loc-tabs { display: flex; border: 2px solid var(--black); width: fit-content; }
.loc-tab {
  font-family: var(--font-head); font-weight: 800; font-size: 1rem; letter-spacing: 0.08em;
  text-transform: uppercase; padding: 0.85rem 2rem; border: none; cursor: pointer;
  background: var(--white); color: var(--black); transition: 0.15s;
}
.loc-tab + .loc-tab { border-left: 2px solid var(--black); }
.loc-tab.active { background: var(--black); color: var(--gold); }

/* ---------- Embed slot ---------- */
.embed-slot {
  background: var(--white); box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  min-height: 600px; display: flex; align-items: center; justify-content: center;
  padding: 2rem; text-align: center;
}
.embed-slot iframe { width: 100%; min-height: 700px; border: none; display: block; }
.embed-placeholder { color: var(--text-soft); max-width: 420px; }
.embed-placeholder strong { color: var(--text); display: block; font-family: var(--font-head); text-transform: uppercase; font-size: 1.2rem; margin-bottom: 0.5rem; }

/* ---------- Callout / banner ---------- */
.callout { background: rgba(201,168,76,0.1); border: 1px solid rgba(201,168,76,0.3); padding: 0.85rem 1.25rem; display: inline-flex; align-items: center; gap: 0.6rem; font-size: 0.85rem; }
.section-default .callout { background: #fff8e1; border-color: var(--gold); color: var(--text-muted); }
.banner-left { border-left: 4px solid var(--gold); background: #f8f8f8; padding: 1.5rem 1.75rem; }

/* ---------- Breadcrumb ---------- */
.crumb { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 1.25rem; font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; }
.crumb a { color: rgba(255,255,255,0.4); }
.crumb .sep { color: rgba(255,255,255,0.25); }
.crumb .here { color: var(--gold); }

/* ---------- Footer ---------- */
.footer { background: #0c0c0c; color: rgba(255,255,255,0.6); padding: 3.5rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.2fr; gap: 2.5rem; }
@media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-logo { display: flex; align-items: center; gap: 0.6rem; margin-bottom: 1rem; }
.footer-logo img { width: auto; height: 38px; object-fit: contain; }
.footer-logo span { font-family: var(--font-head); font-weight: 900; font-size: 1.3rem; text-transform: uppercase; color: var(--white); }
.footer h4 { color: var(--white); font-size: 1rem; letter-spacing: 0.06em; margin-bottom: 1rem; }
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer li { margin-bottom: 0.5rem; }
.footer a { color: rgba(255,255,255,0.6); font-size: 0.85rem; }
.footer a:hover { color: var(--gold); }
.footer .tagline { font-size: 0.85rem; line-height: 1.7; max-width: 280px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); margin-top: 2.5rem; padding-top: 1.5rem; font-size: 0.75rem; color: rgba(255,255,255,0.4); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 0.5rem; }

/* ---------- CTA band ---------- */
.cta-band { text-align: center; padding: 5rem 0; }
.cta-band h2 { margin-bottom: 0.75rem; }
.cta-band p { max-width: 480px; margin: 0 auto 2rem; }
.cta-band .btn-row { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ---------- Utilities ---------- */
.btn-row { display: flex; gap: 1rem; flex-wrap: wrap; }
.mt-1 { margin-top: 1rem; } .mt-2 { margin-top: 2rem; } .mb-2 { margin-bottom: 2rem; }
.center { text-align: center; }
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.in { opacity: 1; transform: none; }
.section-head { max-width: 640px; margin-bottom: 2.5rem; }
.section-head.center { margin-left: auto; margin-right: auto; }

/* ============================================================
   POLISH LAYER: craft pass
   Elevates the base system without renaming any classes.
   Combat-sport / industrial-editorial: grain, depth, motion.
   ============================================================ */

/* --- Atmosphere: faint diagonal grain on dark sections --- */
.section-dark, .hero, .page-hero, .footer {
  background-image:
    repeating-linear-gradient(115deg, rgba(255,255,255,0.014) 0 2px, transparent 2px 7px);
}
.section-dark { position: relative; }

/* A thin gold hairline crowning every dark section for rhythm */
.section-dark::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,0.55), transparent);
}

/* --- Display headings: tighter, more cinematic --- */
h1.display, h2.display { letter-spacing: -0.015em; }
.gold-text {
  background: linear-gradient(180deg, var(--gold-light) 0%, var(--gold) 70%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: var(--gold);
}
.eyebrow { position: relative; padding-left: 2.25rem; }
.eyebrow::before {
  content: ""; position: absolute; left: 0; top: 50%; transform: translateY(-50%);
  width: 1.5rem; height: 2px; background: var(--gold);
}
.section-head.center .eyebrow { padding-left: 0; }
.section-head.center .eyebrow::before { display: none; }

/* --- Hero: deeper layered treatment + slow zoom --- */
.hero-bg { animation: heroZoom 18s ease-out forwards; transform-origin: center; }
@keyframes heroZoom { from { transform: scale(1.12); } to { transform: scale(1); } }
.hero-bg-overlay {
  background:
    radial-gradient(120% 90% at 18% 30%, rgba(17,17,17,0.55), rgba(17,17,17,0.92) 70%),
    linear-gradient(90deg, rgba(17,17,17,0.95) 0%, rgba(17,17,17,0.55) 60%, rgba(17,17,17,0.35) 100%);
}
/* staggered entrance for hero content */
.hero .container > * { opacity: 0; transform: translateY(18px); animation: heroRise 0.7s cubic-bezier(.2,.7,.2,1) forwards; }
.hero .container > *:nth-child(1) { animation-delay: 0.05s; }
.hero .container > *:nth-child(2) { animation-delay: 0.13s; }
.hero .container > *:nth-child(3) { animation-delay: 0.21s; }
.hero .container > *:nth-child(4) { animation-delay: 0.29s; }
.hero .container > *:nth-child(5) { animation-delay: 0.37s; }
.hero .container > *:nth-child(6) { animation-delay: 0.45s; }
@keyframes heroRise { to { opacity: 1; transform: none; } }

/* --- Cards: ghost numeral + lift + gold sweep --- */
.card, .card-dark { position: relative; overflow: hidden; transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease; }
.card { transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease; }
.card:hover { transform: translateY(-5px); box-shadow: 0 18px 40px -18px rgba(0,0,0,0.35); border-color: var(--gold); }
.card-dark:hover { transform: translateY(-5px); box-shadow: 0 18px 40px -18px rgba(0,0,0,0.6); }
.card-dark::after, .card::after {
  content: ""; position: absolute; top: 0; left: 0; height: 3px; width: 0;
  background: var(--gold); transition: width 0.3s ease;
}
.card:hover::after, .card-dark:hover::after { width: 100%; }
/* oversized translucent index numeral behind numbered cards */
.card .num-badge, .card-dark .num-badge { position: relative; z-index: 1; }

/* --- Buttons: arrow nudge + sharper press --- */
.btn-gold, .btn-black, .btn-outline { position: relative; overflow: hidden; }
.btn-gold:active, .btn-black:active, .btn-outline:active { transform: translateY(0) scale(0.98); }

/* --- Stat numbers: gradient + subtle baseline rule --- */
.stat .num {
  background: linear-gradient(180deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.stats { gap: 2.5rem 3rem; }

/* --- Media frame: gold corner accent + depth --- */
.media-frame { box-shadow: 0 24px 60px -28px rgba(0,0,0,0.55); }
.media-frame::after {
  content: ""; position: absolute; top: -10px; right: -10px; width: 64px; height: 64px;
  border-top: 3px solid var(--gold); border-right: 3px solid var(--gold); z-index: 2;
}

/* --- Reveal: gentle stagger when siblings reveal together --- */
.grid > .reveal:nth-child(2) { transition-delay: 0.08s; }
.grid > .reveal:nth-child(3) { transition-delay: 0.16s; }
.grid > .reveal:nth-child(4) { transition-delay: 0.24s; }

/* --- Schedule: live slot subtle pulse --- */
.slot.live { position: relative; }
.slot.live::after {
  content: ""; position: absolute; top: 6px; right: 6px; width: 6px; height: 6px; border-radius: 50%;
  background: var(--black); opacity: 0.55; animation: livePulse 1.8s ease-in-out infinite;
}
@keyframes livePulse { 0%,100% { opacity: 0.25; } 50% { opacity: 0.8; } }

/* --- CTA gold band: subtle texture + heading scale --- */
.section-gold { position: relative; overflow: hidden; }
.section-gold::before {
  content: ""; position: absolute; inset: 0;
  background: repeating-linear-gradient(125deg, rgba(0,0,0,0.04) 0 2px, transparent 2px 9px);
  pointer-events: none;
}
.cta-band h2 { font-size: clamp(2.2rem, 5vw, 3.8rem); }

/* --- Nav: gold underline grow on hover --- */
.nav-links a:not(.btn-gold) { position: relative; }
.nav-links a:not(.btn-gold)::after {
  content: ""; position: absolute; left: 0; bottom: -4px; height: 2px; width: 0;
  background: var(--gold); transition: width 0.2s ease;
}
.nav-links a:not(.btn-gold):hover::after, .nav-links a.active:not(.btn-gold)::after { width: 100%; }
@media (max-width: 900px) { .nav-links a:not(.btn-gold)::after { display: none; } }

/* --- Form card: focus glow --- */
.wk-input:focus, .wk-select:focus { box-shadow: 0 0 0 3px rgba(201,168,76,0.18); }

/* --- Page hero: oversized faded wordmark accent --- */
.page-hero::after {
  content: ""; position: absolute; right: -2%; bottom: -40%; width: 40vw; height: 40vw; max-width: 520px; max-height: 520px;
  background: radial-gradient(circle, rgba(201,168,76,0.10), transparent 65%); pointer-events: none; z-index: 1;
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .hero-bg, .hero .container > *, .slot.live::after { animation: none !important; }
  .reveal { transition: none; }
}

/* ============================================================
   AWARD LAYER v3: cinematic combat-sport motion
   3D tilt · scroll parallax · kinetic marquee · ambient depth
   Brand-locked (black #111 + gold #C9A84C, sharp corners).
   Added 2026-06-13 for the warriorkickboxinggym.com launch pass.
   ============================================================ */

/* ---- Scroll progress bar (gold hairline, top of viewport) ---- */
.wk-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  z-index: 2000; pointer-events: none;
  box-shadow: 0 0 12px rgba(201,168,76,0.6);
  transition: width .1s linear;
}

/* ---- Custom cursor (desktop, pointer:fine only) ---- */
@media (hover: hover) and (pointer: fine) {
  body.wk-cursor-on { cursor: none; }
  body.wk-cursor-on a, body.wk-cursor-on button,
  body.wk-cursor-on input, body.wk-cursor-on select, body.wk-cursor-on textarea { cursor: none; }
  .wk-cursor {
    position: fixed; top: 0; left: 0; width: 30px; height: 30px;
    border: 1.5px solid var(--gold); border-radius: 50%;
    transform: translate(-50%, -50%); pointer-events: none; z-index: 3000;
    transition: width .2s ease, height .2s ease, background .2s ease, border-color .2s ease;
    mix-blend-mode: difference; will-change: transform;
  }
  .wk-cursor-dot {
    position: fixed; top: 0; left: 0; width: 5px; height: 5px;
    background: var(--gold); border-radius: 50%;
    transform: translate(-50%, -50%); pointer-events: none; z-index: 3001; will-change: transform;
  }
  .wk-cursor.hot { width: 54px; height: 54px; background: rgba(201,168,76,0.12); border-color: var(--gold-light); }
}

/* ---- Nav: shrink + deepen on scroll ---- */
.nav { transition: height .28s ease, background .28s ease, box-shadow .28s ease; }
.nav.scrolled { height: 58px; background: rgba(12,12,12,0.98); box-shadow: 0 8px 30px -12px rgba(0,0,0,0.7); }
.nav.scrolled .nav-logo img { height: 26px; }

/* ---- Kinetic marquee strip ---- */
.wk-marquee {
  background: var(--gold); color: var(--black);
  overflow: hidden; white-space: nowrap; padding: .7rem 0;
  border-top: 2px solid var(--black); border-bottom: 2px solid var(--black);
  position: relative;
}
.wk-marquee.dark { background: var(--black); color: var(--gold); border-color: var(--gold); }
.wk-marquee-track { display: inline-flex; gap: 0; animation: wkMarquee 28s linear infinite; }
.wk-marquee:hover .wk-marquee-track { animation-play-state: paused; }
.wk-marquee span {
  font-family: var(--font-head); font-weight: 900; text-transform: uppercase;
  font-size: 1.15rem; letter-spacing: .08em; padding: 0 1.5rem; display: inline-flex; align-items: center;
}
.wk-marquee span::after { content: "🥊"; margin-left: 1.5rem; font-size: .9em; opacity: .55; }
@keyframes wkMarquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---- 3D tilt (JS feeds --rx/--ry/--mx/--my) ---- */
[data-tilt] {
  transform: perspective(900px) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg)) translateZ(0);
  transform-style: preserve-3d; transition: transform .18s ease;
  will-change: transform;
}
[data-tilt]::before {
  content: ""; position: absolute; inset: 0; z-index: 4; pointer-events: none; opacity: 0;
  background: radial-gradient(220px circle at var(--mx, 50%) var(--my, 50%), rgba(201,168,76,0.18), transparent 60%);
  transition: opacity .25s ease;
}
[data-tilt].tilting::before { opacity: 1; }
[data-tilt].tilting { transition: transform .05s linear; }

/* ---- Button shine sweep ---- */
.btn-gold::after, .btn-black::after {
  content: ""; position: absolute; top: 0; left: -120%; width: 60%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,0.45), transparent);
  transform: skewX(-18deg); transition: left .6s ease; pointer-events: none;
}
.btn-black::after { background: linear-gradient(100deg, transparent, rgba(201,168,76,0.35), transparent); }
.btn-gold:hover::after, .btn-black:hover::after { left: 130%; }

/* ---- Magnetic buttons (JS feeds --tx/--ty) ---- */
.btn-gold, .btn-black { transform: translate(var(--tx, 0), var(--ty, 0)); }
.btn-gold:hover, .btn-black:hover { transform: translate(var(--tx, 0), calc(var(--ty, 0) - 2px)); }

/* ---- Ambient gold glow orbs on dark sections ---- */
.section-dark { overflow: hidden; }
.section-dark > .container { position: relative; z-index: 1; }
.section-dark::after {
  content: ""; position: absolute; width: 55vw; height: 55vw; max-width: 720px; max-height: 720px;
  right: -12vw; top: -18vw; border-radius: 50%; pointer-events: none; z-index: 0;
  background: radial-gradient(circle, rgba(201,168,76,0.10), transparent 62%);
}

/* ---- Hero: animated gold motion streaks ---- */
.hero-streaks { position: absolute; inset: 0; z-index: 1; overflow: hidden; pointer-events: none; }
.hero-streaks i {
  position: absolute; height: 2px; width: 40vw; left: -45vw; opacity: 0;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,0.85), transparent);
  animation: wkStreak 5.5s ease-in-out infinite;
}
.hero-streaks i:nth-child(1) { top: 24%; animation-delay: .4s; }
.hero-streaks i:nth-child(2) { top: 52%; width: 55vw; animation-delay: 1.8s; }
.hero-streaks i:nth-child(3) { top: 73%; width: 32vw; animation-delay: 3.1s; }
@keyframes wkStreak {
  0% { transform: translateX(0) skewX(-12deg); opacity: 0; }
  12% { opacity: .9; }
  40% { opacity: .5; }
  60% { transform: translateX(150vw) skewX(-12deg); opacity: 0; }
  100% { opacity: 0; }
}

/* ---- Parallax (JS feeds --py) ---- */
[data-parallax] { will-change: transform; }

/* ---- Media frame: gold clip-wipe reveal on scroll ---- */
.media-frame { clip-path: inset(0 0 0 0); }
.media-frame.wk-wipe { clip-path: inset(0 100% 0 0); }
.media-frame.wk-wipe.in { clip-path: inset(0 0 0 0); transition: clip-path 1s cubic-bezier(.7,0,.2,1); }

/* ---- Richer base reveal (deeper, smoother) ---- */
.reveal { transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1); transform: translateY(30px); }
.grid > .reveal:nth-child(5) { transition-delay: .32s; }
.grid > .reveal:nth-child(6) { transition-delay: .40s; }

/* ---- Stat counter: monospaced tabular feel while counting ---- */
.stat .num { font-variant-numeric: tabular-nums; }

/* ---- Section eyebrow: animated tick on reveal ---- */
.reveal.in .eyebrow::before { animation: wkTick .5s ease both; }
@keyframes wkTick { from { width: 0; } to { width: 1.5rem; } }

/* ---- Schedule live slot: clickable affordance ---- */
a.slot, .sched-day a.slot { display: block; text-decoration: none; transition: transform .15s ease, filter .15s ease; }
a.slot.live:hover { transform: translateY(-2px); filter: brightness(1.06); }
.sched-day { transition: transform .2s ease, box-shadow .2s ease; }
.sched-day:hover { transform: translateY(-3px); box-shadow: 0 14px 30px -16px rgba(0,0,0,0.5); }

/* ---- "Now Open" badge pulse for Somerset ---- */
.badge-live { position: relative; }
.badge-live::after {
  content: ""; position: absolute; right: -3px; top: -3px; width: 7px; height: 7px; border-radius: 50%;
  background: #36d07a; box-shadow: 0 0 0 0 rgba(54,208,122,0.7); animation: wkLive 1.8s infinite;
}
@keyframes wkLive { 0% { box-shadow: 0 0 0 0 rgba(54,208,122,0.6);} 70%{ box-shadow:0 0 0 8px rgba(54,208,122,0);} 100%{box-shadow:0 0 0 0 rgba(54,208,122,0);} }

/* ---- Booking embed: premium framed container ---- */
.embed-slot { box-shadow: 0 30px 70px -34px rgba(0,0,0,0.5); border-top: 3px solid var(--gold); }
.embed-slot iframe { min-height: 720px; }

/* ---- Reduced motion: disable kinetic layer ---- */
@media (prefers-reduced-motion: reduce) {
  .wk-marquee-track, .hero-streaks i { animation: none !important; }
  [data-tilt] { transform: none !important; }
  .media-frame.wk-wipe { clip-path: none !important; }
  [data-parallax] { transform: none !important; }
  .wk-progress { display: none; }
}
