/* ============================================================
   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-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); text-decoration: none; }

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 { 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 { 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: 34px; height: 34px; object-fit: contain; }
.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); }
.form-note.hidden { display: none; }

/* 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: 40px; height: 40px; object-fit: contain; filter: invert(1); }
.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 (frontend-design)
   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; }
}
