/* ==========================================================================
   TOE 2 TOE BOXING — main.css
   Shared design system · 8-page static site
   Slice of the Pie Marketing · preview build
   --------------------------------------------------------------------------
   Brand: Gold #D8AB27 on near-black. Gold is a scalpel, not a paint bucket.
   Type:  Oswald (display, uppercase, condensed) + Lato (body).
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. TOKENS
   -------------------------------------------------------------------------- */
:root {
  /* Brand color */
  --gold:        #D8AB27;
  --gold-hover:  #E9C25C;
  --gold-glow:   rgba(216, 171, 39, 0.35);
  --gold-soft:   rgba(216, 171, 39, 0.12);
  --navy:        #192B8F;          /* sparingly */
  --ink:         #0C0C0D;          /* near-black page bg */
  --ink-2:       #101113;          /* alt dark band */
  --card:        #17181A;          /* dark card surface */
  --line:        rgba(255, 255, 255, 0.09);
  --white:       #FFFFFF;
  --paper:       #F1F1F1;          /* light section bg */
  --line-dark:   rgba(12, 12, 13, 0.12);

  /* Text on dark */
  --tx:          #FFFFFF;
  --tx-dim:      rgba(255, 255, 255, 0.72);
  --tx-faint:    rgba(255, 255, 255, 0.45);
  /* Text on light */
  --tx-ink:      #0C0C0D;
  --tx-ink-dim:  rgba(12, 12, 13, 0.72);

  /* Type */
  --f-display:   "Oswald", "Arial Narrow", sans-serif;
  --f-body:      "Lato", "Helvetica Neue", Arial, sans-serif;
  --fs-hero:     clamp(2.9rem, 7.5vw + 0.5rem, 6.25rem);
  --fs-h1:       clamp(2.4rem, 5vw + 0.5rem, 4.5rem);
  --fs-h2:       clamp(1.9rem, 3.2vw + 0.5rem, 3.25rem);
  --fs-h3:       clamp(1.35rem, 1.6vw + 0.5rem, 1.75rem);
  --fs-h4:       clamp(1.1rem, 1vw + 0.5rem, 1.3rem);
  --fs-body:     1.0625rem;
  --fs-sm:       0.9rem;
  --fs-xs:       0.8rem;

  /* Layout */
  --container:   1200px;
  --gutter:      clamp(1.25rem, 4vw, 2.5rem);
  --sp-1: 0.5rem;
  --sp-2: 1rem;
  --sp-3: 1.5rem;
  --sp-4: 2.5rem;
  --sp-5: 4rem;
  --sp-6: 6rem;
  --sec-y:       clamp(4rem, 9vw, 7.5rem);   /* default section padding */
  --sec-y-tight: clamp(2.5rem, 6vw, 4.5rem);
  --header-h:    76px;
  --ribbon-h:    28px;
  --radius:      10px;
  --radius-sm:   6px;

  /* Motion */
  --ease-out:    cubic-bezier(0.22, 1, 0.36, 1);
  --dur:         600ms;
  --dur-fast:    250ms;
}

/* --------------------------------------------------------------------------
   2. RESET / BASE
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 12px);
}

body {
  margin: 0;
  font-family: var(--f-body);
  font-size: var(--fs-body);
  line-height: 1.65;
  color: var(--tx);
  background: var(--ink);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }
ul, ol { margin: 0 0 1.1em; padding-left: 1.2em; }
strong, b { font-weight: 700; }
address { font-style: normal; }
hr { border: 0; border-top: 1px solid var(--line); margin: var(--sp-4) 0; }

h1, h2, h3, h4, h5 {
  font-family: var(--f-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 1.05;
  margin: 0 0 0.5em;
}
h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); letter-spacing: 0; }
h4 { font-size: var(--fs-h4); letter-spacing: 0.02em; font-weight: 600; }

::selection { background: var(--gold); color: var(--ink); }

/* Accessibility */
.skip-link {
  position: absolute;
  top: -100px; left: 12px;
  z-index: 300;
  padding: 0.75rem 1.25rem;
  background: var(--gold);
  color: var(--ink);
  font-family: var(--f-display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-decoration: none;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  transition: top var(--dur-fast) var(--ease-out);
}
.skip-link:focus { top: 0; }

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
  border-radius: 2px;
}

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  margin: -1px; padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/* --------------------------------------------------------------------------
   3. LAYOUT PRIMITIVES
   -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.container--narrow { max-width: 840px; }
.container--wide   { max-width: 1360px; }

.section        { padding-block: var(--sec-y); position: relative; }
.section--tight { padding-block: var(--sec-y-tight); }
.section--flush-top    { padding-top: 0; }
.section--flush-bottom { padding-bottom: 0; }

/* Surface variants (alternating editorial bands) */
.section--dark  { background: var(--ink);   color: var(--tx); }
.section--dark2 { background: var(--ink-2); color: var(--tx); }
.section--light { background: var(--paper); color: var(--tx-ink); }
.section--white { background: var(--white); color: var(--tx-ink); }
.section--light a:not(.btn), .section--white a:not(.btn) { color: inherit; }

/* Grids — 12-col mindset, pragmatic presets, mobile-first */
.grid { display: grid; gap: clamp(1.25rem, 2.5vw, 2rem); }
.grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }
.grid--split { display: grid; gap: clamp(2rem, 4vw, 4rem); grid-template-columns: 1fr; align-items: center; }

@media (min-width: 768px) {
  .grid--2 { grid-template-columns: repeat(2, 1fr); }
  .grid--3 { grid-template-columns: repeat(3, 1fr); }
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .grid--split { grid-template-columns: repeat(2, 1fr); }
  .grid--split-wide { grid-template-columns: 7fr 5fr; }
}
@media (min-width: 1024px) {
  .grid--4 { grid-template-columns: repeat(4, 1fr); }
}

/* Section header pattern: eyebrow + big title + optional lede */
.sec-head { max-width: 720px; margin-bottom: clamp(2rem, 5vw, 3.5rem); }
.sec-head--center { margin-inline: auto; text-align: center; }
.sec-head--center .eyebrow { justify-content: center; }
.sec-head .lede { font-size: clamp(1.05rem, 1.2vw + 0.6rem, 1.25rem); color: var(--tx-dim); }
.section--light .sec-head .lede,
.section--white .sec-head .lede { color: var(--tx-ink-dim); }

/* Eyebrow — gold kicker + rule */
.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 1.1rem;
  font-family: var(--f-display);
  font-weight: 600;
  font-size: var(--fs-xs);
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
}
.eyebrow::before {
  content: "";
  width: 36px; height: 2px;
  background: var(--gold);
  flex: none;
}
.sec-head--center .eyebrow::after {
  content: "";
  width: 36px; height: 2px;
  background: var(--gold);
  flex: none;
}

/* --------------------------------------------------------------------------
   4. BUTTONS
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.95rem 1.9rem;
  font-family: var(--f-display);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  line-height: 1;
  border: 2px solid transparent;
  border-radius: var(--radius-sm);
  cursor: pointer;
  white-space: nowrap;
  transition:
    background-color var(--dur-fast) var(--ease-out),
    border-color var(--dur-fast) var(--ease-out),
    color var(--dur-fast) var(--ease-out),
    box-shadow var(--dur-fast) var(--ease-out),
    transform var(--dur-fast) var(--ease-out);
}

/* Primary — ALWAYS black text on gold */
.btn-gold {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink);
}
.btn-gold:hover, .btn-gold:focus-visible {
  background: var(--gold-hover);
  border-color: var(--gold-hover);
  color: var(--ink);
  box-shadow: 0 0 0 4px var(--gold-soft), 0 8px 30px var(--gold-glow);
  animation: jab 0.45s var(--ease-out);
}

/* Signature "jab" — quick 1-2 punch nudge */
@keyframes jab {
  0%   { transform: translateX(0); }
  22%  { transform: translateX(4px); }
  42%  { transform: translateX(-2px); }
  62%  { transform: translateX(5px); }
  100% { transform: translateX(0); }
}

/* Ghost */
.btn-ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.55);
  color: var(--white);
}
.btn-ghost:hover, .btn-ghost:focus-visible {
  border-color: var(--gold);
  color: var(--gold);
  box-shadow: 0 0 0 4px var(--gold-soft);
}
.section--light .btn-ghost, .section--white .btn-ghost {
  border-color: rgba(12, 12, 13, 0.45);
  color: var(--tx-ink);
}
.section--light .btn-ghost:hover, .section--white .btn-ghost:hover,
.section--light .btn-ghost:focus-visible, .section--white .btn-ghost:focus-visible {
  border-color: var(--gold);
  color: var(--tx-ink);
  background: var(--gold-soft);
}

.btn--lg { padding: 1.15rem 2.4rem; font-size: 1.05rem; }
.btn--sm { padding: 0.65rem 1.2rem; font-size: 0.85rem; }
.btn--block { width: 100%; }

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

/* Big gold text-link arrow ("See the full schedule →" pattern) */
.link-lead {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--f-display);
  font-size: clamp(1.15rem, 1.6vw + 0.5rem, 1.6rem);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: border-color var(--dur-fast) var(--ease-out), gap var(--dur-fast) var(--ease-out);
}
.link-lead:hover, .link-lead:focus-visible { border-color: var(--gold); gap: 1rem; }
.link-lead .arr { transition: transform var(--dur-fast) var(--ease-out); }
.link-lead:hover .arr { transform: translateX(4px); }

/* --------------------------------------------------------------------------
   5. PREVIEW RIBBON
   -------------------------------------------------------------------------- */
.ribbon {
  position: relative;
  z-index: 210;
  height: var(--ribbon-h);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding-inline: 2.5rem;
  background: #000;
  border-bottom: 1px solid rgba(216, 171, 39, 0.25);
  color: var(--gold);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  text-align: center;
}
.ribbon.is-hidden { display: none; }
.ribbon__close {
  position: absolute;
  right: 0.4rem; top: 50%;
  transform: translateY(-50%);
  width: 22px; height: 22px;
  display: grid; place-items: center;
  background: none;
  border: 0;
  color: var(--tx-faint);
  font-size: 0.95rem;
  line-height: 1;
  cursor: pointer;
  border-radius: 4px;
  transition: color var(--dur-fast);
}
.ribbon__close:hover { color: var(--gold); }

/* --------------------------------------------------------------------------
   6. HEADER / NAV
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: transparent;
  transition: background-color 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out);
}
.site-header.scrolled {
  background: rgba(12, 12, 13, 0.96);
  box-shadow: 0 1px 0 var(--line), 0 12px 32px rgba(0, 0, 0, 0.45);
}
@supports (backdrop-filter: blur(8px)) {
  .site-header.scrolled { background: rgba(12, 12, 13, 0.82); backdrop-filter: blur(10px); }
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  width: 100%;
}
.nav__logo { display: block; flex: none; }
.nav__logo img { height: 46px; width: auto; }

.nav__links {
  display: none;
  align-items: center;
  gap: clamp(1rem, 1.8vw, 1.75rem);
  list-style: none;
  margin: 0; padding: 0;
}
.nav__link {
  position: relative;
  font-family: var(--f-display);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--tx-dim);
  padding: 0.4rem 0;
  transition: color var(--dur-fast) var(--ease-out);
}
/* underline sweep left→right */
.nav__link::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease-out);
}
.nav__link:hover, .nav__link:focus-visible { color: var(--white); }
.nav__link:hover::after, .nav__link:focus-visible::after { transform: scaleX(1); }
.nav__link.is-current { color: var(--white); }
.nav__link.is-current::after { transform: scaleX(1); }

.nav__cta { display: none; }

/* Hamburger */
.nav__toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px; height: 44px;
  padding: 10px;
  background: none;
  border: 0;
  cursor: pointer;
}
.nav__toggle span {
  display: block;
  width: 100%; height: 2px;
  background: var(--white);
  transition: transform 0.3s var(--ease-out), opacity 0.3s var(--ease-out);
}
.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); }

@media (min-width: 1024px) {
  .nav__links { display: flex; }
  .nav__cta { display: inline-flex; }
  .nav__toggle { display: none; }
}

/* Full-screen mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 190;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: calc(var(--header-h) + 2rem) var(--gutter) 3rem;
  background: rgba(12, 12, 13, 0.98);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s var(--ease-out), visibility 0s linear 0.35s;
}
.mobile-menu.open {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.35s var(--ease-out);
}
.mobile-menu__links {
  list-style: none;
  margin: 0; padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.mobile-menu__links a {
  display: block;
  padding: 0.55rem 0;
  font-family: var(--f-display);
  font-size: clamp(1.75rem, 6vw, 2.5rem);
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--tx-dim);
  transform: translateY(14px);
  opacity: 0;
  transition: color var(--dur-fast), transform 0.5s var(--ease-out), opacity 0.5s var(--ease-out);
}
.mobile-menu.open .mobile-menu__links a { transform: translateY(0); opacity: 1; }
.mobile-menu__links a:hover, .mobile-menu__links a:focus-visible,
.mobile-menu__links a.is-current { color: var(--gold); }
.mobile-menu .btn { margin-top: 2rem; align-self: flex-start; }
.mobile-menu__meta {
  margin-top: 2.25rem;
  font-size: var(--fs-sm);
  color: var(--tx-faint);
}
.mobile-menu__meta a { color: var(--tx-dim); text-decoration: none; }
.mobile-menu__meta a:hover { color: var(--gold); }
body.menu-open { overflow: hidden; }

/* --------------------------------------------------------------------------
   7. HERO
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100svh;
  margin-top: calc(var(--header-h) * -1);   /* pull under transparent header */
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}
.hero--short { min-height: 62svh; }         /* interior page headers */

.hero__media { position: absolute; inset: 0; z-index: -2; overflow: hidden; }
.hero__media img,
.hero__poster {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
/* YouTube cover iframe (built by JS into #heroVideo) */
.hero__media iframe {
  position: absolute;
  top: 50%; left: 50%;
  width: max(100vw, 177.78vh);
  height: max(100vh, 56.25vw);
  transform: translate(-50%, -50%);
  pointer-events: none;
  border: 0;
  opacity: 0;
  transition: opacity 1.2s ease 0.4s;
}
.hero__media iframe.is-live { opacity: 1; }

.hero__scrim {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(12, 12, 13, 0.72) 0%, rgba(12, 12, 13, 0.42) 40%, rgba(12, 12, 13, 0.88) 100%),
    radial-gradient(120% 90% at 20% 60%, rgba(12, 12, 13, 0.55) 0%, transparent 60%);
}

.hero__content {
  width: 100%;
  padding-block: clamp(7rem, 16vh, 10rem) clamp(5rem, 12vh, 8rem);
}
.hero__logo { width: clamp(150px, 20vw, 220px); margin-bottom: 1.75rem; }
.hero__kicker {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: clamp(0.8rem, 1vw, 0.95rem);
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.hero__title {
  font-size: var(--fs-hero);
  max-width: 13ch;
  margin-bottom: 1.25rem;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}
.hero__title em {
  font-style: normal;
  color: var(--gold);
}
.hero__sub {
  max-width: 46ch;
  font-size: clamp(1.05rem, 1.3vw + 0.5rem, 1.3rem);
  color: var(--tx-dim);
  margin-bottom: 2.25rem;
}

/* Scroll cue */
.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 2rem;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--tx-faint);
  font-size: 0.68rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  text-decoration: none;
  transition: color var(--dur-fast);
}
.scroll-cue:hover { color: var(--gold); }
.scroll-cue__line {
  width: 2px; height: 44px;
  background: linear-gradient(180deg, var(--gold), transparent);
  animation: cue-drop 2s var(--ease-out) infinite;
  transform-origin: top;
}
@keyframes cue-drop {
  0%   { transform: scaleY(0); }
  45%  { transform: scaleY(1); }
  100% { transform: scaleY(1); opacity: 0; }
}

/* --------------------------------------------------------------------------
   8. CARDS
   -------------------------------------------------------------------------- */
.card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform 0.45s var(--ease-out), box-shadow 0.45s var(--ease-out), border-color 0.45s var(--ease-out);
}
/* gold underline sweep */
.card::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease-out);
  z-index: 2;
}
.card:hover, .card:focus-within {
  transform: translateY(-6px);
  border-color: rgba(216, 171, 39, 0.4);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.45);
}
.card:hover::after, .card:focus-within::after { transform: scaleX(1); }

/* light-section variant */
.section--light .card, .section--white .card {
  background: var(--white);
  border-color: var(--line-dark);
  box-shadow: 0 2px 10px rgba(12, 12, 13, 0.05);
}
.section--light .card:hover, .section--white .card:hover,
.section--light .card:focus-within, .section--white .card:focus-within {
  box-shadow: 0 24px 48px rgba(12, 12, 13, 0.16);
}

.card__media {
  position: relative;
  aspect-ratio: 3 / 2;
  overflow: hidden;
}
.card__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out);
}
.card:hover .card__media img { transform: scale(1.05); }

.card__body { padding: clamp(1.25rem, 2vw, 1.75rem); flex: 1; }
.card__tag {
  display: inline-block;
  margin-bottom: 0.6rem;
  font-family: var(--f-display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
}
.card__title { margin-bottom: 0.4rem; }
.card__text { font-size: var(--fs-sm); color: var(--tx-dim); margin: 0; }
.section--light .card__text, .section--white .card__text { color: var(--tx-ink-dim); }
.card__more {
  margin-top: 1rem;
  font-family: var(--f-display);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}

/* --------------------------------------------------------------------------
   9. STATS BAND
   -------------------------------------------------------------------------- */
.stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.25rem 1rem;
  text-align: center;
}
@media (min-width: 768px) { .stats { grid-template-columns: repeat(4, 1fr); } }

.stat { position: relative; }
.stat + .stat::before {
  content: "";
  position: absolute;
  left: -0.5rem; top: 50%;
  transform: translateY(-50%);
  width: 1px; height: 56px;
  background: var(--line);
}
@media (max-width: 767px) { .stat:nth-child(odd)::before { display: none; } }

.stat__num {
  display: block;
  font-family: var(--f-display);
  font-size: clamp(2.4rem, 4.5vw, 3.75rem);
  font-weight: 700;
  line-height: 1;
  color: var(--gold);
  font-variant-numeric: tabular-nums;
}
.stat__label {
  display: block;
  margin-top: 0.6rem;
  font-size: var(--fs-xs);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--tx-faint);
}
.stat a { text-decoration: none; }
.stat a:hover .stat__label { color: var(--gold); }

/* --------------------------------------------------------------------------
   10. TESTIMONIALS
   -------------------------------------------------------------------------- */
.stars {
  display: inline-flex;
  gap: 2px;
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 2px;
}
.t-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 2.5vw, 2.25rem);
  background: var(--white);
  border: 1px solid var(--line-dark);
  border-top: 3px solid var(--gold);
  border-radius: var(--radius);
  box-shadow: 0 2px 10px rgba(12, 12, 13, 0.05);
  transition: transform 0.45s var(--ease-out), box-shadow 0.45s var(--ease-out);
}
.t-card:hover { transform: translateY(-6px); box-shadow: 0 24px 48px rgba(12, 12, 13, 0.14); }
.t-card__quote {
  flex: 1;
  margin: 0;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--tx-ink);
}
.t-card__quote::before { content: "\201C"; color: var(--gold); font-family: var(--f-display); font-weight: 700; margin-right: 2px; }
.t-card__quote::after  { content: "\201D"; color: var(--gold); font-family: var(--f-display); font-weight: 700; margin-left: 2px; }
.t-card__who {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--tx-ink);
}
.t-card__who .stars { display: flex; margin-top: 0.35rem; font-size: 0.85rem; }

.rating-line {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--f-display);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  font-size: 0.95rem;
}
.rating-line:hover .rating-line__label { color: var(--gold); }
.rating-line__label { transition: color var(--dur-fast); }

/* --------------------------------------------------------------------------
   11. PHOTO BREAK (parallax band)
   -------------------------------------------------------------------------- */
.photo-break {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding-block: clamp(6rem, 16vw, 11rem);
  text-align: center;
  color: var(--white);
}
.photo-break__bg {
  position: absolute;
  inset: -12% 0;               /* headroom for parallax travel */
  z-index: -2;
}
.photo-break__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  will-change: transform;
}
.photo-break::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(12, 12, 13, 0.78), rgba(12, 12, 13, 0.6) 50%, rgba(12, 12, 13, 0.82));
}
.photo-break__line {
  font-family: var(--f-display);
  font-size: clamp(1.9rem, 4.5vw, 3.5rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 1.1;
  max-width: 18ch;
  margin: 0 auto 1.5rem;
}
.photo-break__line em { font-style: normal; color: var(--gold); }

/* --------------------------------------------------------------------------
   12. PARTNER MARQUEE
   -------------------------------------------------------------------------- */
.marquee {
  overflow: hidden;
  position: relative;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee__track {
  display: flex;
  align-items: center;
  gap: clamp(2rem, 4vw, 4rem);
  width: max-content;
  animation: marquee 55s linear infinite;
}
.marquee:hover .marquee__track { animation-play-state: paused; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.marquee__item { flex: none; }
.marquee__item img {
  height: 72px;
  width: auto;
  object-fit: contain;
  filter: grayscale(1) contrast(0.9);
  opacity: 0.75;
  transition: filter var(--dur-fast), opacity var(--dur-fast);
}
.marquee__item img:hover { filter: none; opacity: 1; }

/* --------------------------------------------------------------------------
   13. SCHEDULE TEASER STRIP (home)
   -------------------------------------------------------------------------- */
.week-strip {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}
@media (min-width: 768px)  { .week-strip { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 1024px) { .week-strip { grid-template-columns: repeat(7, 1fr); } }

.day-col {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 1rem 0.9rem 1.1rem;
  transition: border-color var(--dur-fast) var(--ease-out), transform 0.45s var(--ease-out);
}
.day-col:hover { border-color: rgba(216, 171, 39, 0.4); transform: translateY(-4px); }
.day-col.is-today {
  border-color: var(--gold);
  box-shadow: 0 0 0 1px var(--gold), 0 10px 28px rgba(0, 0, 0, 0.4);
}
.day-col.is-today .day-col__name::after {
  content: "Today";
  margin-left: 0.5rem;
  padding: 0.1rem 0.45rem;
  font-size: 0.6rem;
  letter-spacing: 0.14em;
  background: var(--gold);
  color: var(--ink);
  border-radius: 3px;
  vertical-align: middle;
}
.day-col__name {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding-bottom: 0.5rem;
  margin-bottom: 0.65rem;
  border-bottom: 1px solid var(--line);
}
.day-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.45rem; }
.day-col li { font-size: 0.78rem; line-height: 1.35; color: var(--tx-dim); }
.day-col li .slot-time {
  display: block;
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: var(--gold);
}
.day-col--closed { display: grid; place-items: center; text-align: center; }
.day-col--closed .day-col__rest {
  font-size: 0.8rem;
  color: var(--tx-faint);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* --------------------------------------------------------------------------
   14. GALLERY
   -------------------------------------------------------------------------- */
.gallery {
  columns: 2;
  column-gap: 0.9rem;
}
@media (min-width: 768px)  { .gallery { columns: 3; } }
@media (min-width: 1024px) { .gallery { columns: 4; } }
.gallery__item {
  display: block;
  margin-bottom: 0.9rem;
  break-inside: avoid;
  border-radius: var(--radius-sm);
  overflow: hidden;
  position: relative;
}
.gallery__item img {
  width: 100%;
  transition: transform 0.9s var(--ease-out), filter 0.9s var(--ease-out);
}
.gallery__item:hover img { transform: scale(1.06); filter: brightness(1.08); }

/* --------------------------------------------------------------------------
   15. LOCATION / HOURS
   -------------------------------------------------------------------------- */
.hours-table {
  width: 100%;
  border-collapse: collapse;
  font-size: var(--fs-sm);
}
.hours-table caption {
  text-align: left;
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  padding-bottom: 0.6rem;
}
.hours-table th, .hours-table td {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--line);
  text-align: left;
  font-weight: 400;
  color: var(--tx-dim);
}
.hours-table th {
  font-family: var(--f-display);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--tx);
  padding-right: 1rem;
  white-space: nowrap;
}
.hours-table td:last-child { text-align: right; }
.hours-table .is-closed td, .hours-table .is-closed th { color: var(--tx-faint); }
.hours-table .is-today th, .hours-table .is-today td { color: var(--gold); }

.map-embed {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  aspect-ratio: 4 / 3;
}
.map-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  border: 0;
  filter: grayscale(0.35) contrast(1.05);
}

.contact-list { list-style: none; margin: 0 0 1.5rem; padding: 0; display: grid; gap: 0.9rem; }
.contact-list a { text-decoration: none; color: var(--tx); transition: color var(--dur-fast); }
.contact-list a:hover { color: var(--gold); }
.contact-list__label {
  display: block;
  font-family: var(--f-display);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.15rem;
}

/* --------------------------------------------------------------------------
   16. CTA BAND
   -------------------------------------------------------------------------- */
.cta-band {
  position: relative;
  text-align: center;
  background:
    radial-gradient(60% 120% at 50% 0%, rgba(216, 171, 39, 0.1), transparent 65%),
    var(--ink-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.cta-band__title {
  font-size: clamp(2.2rem, 5vw, 4rem);
  color: var(--gold);
  max-width: 16ch;
  margin-inline: auto;
}
.cta-band__sub { max-width: 52ch; margin: 0 auto 2.25rem; color: var(--tx-dim); }
.cta-band .btn-row { justify-content: center; }

/* --------------------------------------------------------------------------
   17. FOOTER
   -------------------------------------------------------------------------- */
.site-footer {
  background: #000;
  border-top: 1px solid var(--line);
  padding: var(--sp-6) 0 calc(var(--sp-4) + 64px);  /* clearance for mobile bar */
  font-size: var(--fs-sm);
  color: var(--tx-dim);
}
@media (min-width: 768px) { .site-footer { padding-bottom: var(--sp-4); } }

.footer-grid {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: 1fr;
  margin-bottom: 3rem;
}
@media (min-width: 768px)  { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1.2fr; } }

.site-footer h4 {
  font-size: 0.8rem;
  letter-spacing: 0.24em;
  color: var(--gold);
  margin-bottom: 1.1rem;
}
.site-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.55rem; }
.site-footer a { color: var(--tx-dim); text-decoration: none; transition: color var(--dur-fast); }
.site-footer a:hover, .site-footer a:focus-visible { color: var(--gold); }
.footer-logo img { height: 64px; width: auto; margin-bottom: 1.25rem; }
.footer-tagline { color: var(--tx-faint); max-width: 34ch; }
.footer-hours { font-size: 0.82rem; }
.footer-hours ul li { display: flex; justify-content: space-between; gap: 1rem; }
.footer-hours .d { font-family: var(--f-display); font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--tx); }
.footer-bottom {
  padding-top: 1.75rem;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 2rem;
  justify-content: space-between;
  font-size: 0.78rem;
  color: var(--tx-faint);
}
.footer-areas { color: var(--tx-faint); font-size: 0.82rem; line-height: 1.7; }

/* --------------------------------------------------------------------------
   18. MOBILE STICKY ACTION BAR
   -------------------------------------------------------------------------- */
.mobile-bar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 180;
  display: grid;
  grid-template-columns: 1fr 1fr 1.4fr;
  background: rgba(12, 12, 13, 0.97);
  border-top: 1px solid var(--line);
  padding-bottom: env(safe-area-inset-bottom, 0);
}
.mobile-bar a {
  display: grid;
  place-items: center;
  padding: 0.9rem 0.5rem;
  font-family: var(--f-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--tx-dim);
}
.mobile-bar a:active { color: var(--gold); }
.mobile-bar a.is-gold { background: var(--gold); color: var(--ink); }
@media (min-width: 768px) { .mobile-bar { display: none; } }

/* --------------------------------------------------------------------------
   19. SCROLL REVEAL UTILITIES
   -------------------------------------------------------------------------- */
.rv, .rv-l, .rv-r {
  opacity: 0;
  transition: opacity var(--dur) var(--ease-out), transform var(--dur) var(--ease-out);
  will-change: opacity, transform;
}
.rv   { transform: translateY(28px); }
.rv-l { transform: translateX(-36px); }
.rv-r { transform: translateX(36px); }
.rv.in, .rv-l.in, .rv-r.in { opacity: 1; transform: none; }

/* [data-stagger] children get transition-delay from JS; fallback below */
[data-stagger] > .rv:nth-child(2), [data-stagger] > .rv-l:nth-child(2), [data-stagger] > .rv-r:nth-child(2) { transition-delay: 80ms; }
[data-stagger] > .rv:nth-child(3), [data-stagger] > .rv-l:nth-child(3), [data-stagger] > .rv-r:nth-child(3) { transition-delay: 160ms; }
[data-stagger] > .rv:nth-child(4), [data-stagger] > .rv-l:nth-child(4), [data-stagger] > .rv-r:nth-child(4) { transition-delay: 240ms; }
[data-stagger] > .rv:nth-child(5), [data-stagger] > .rv-l:nth-child(5), [data-stagger] > .rv-r:nth-child(5) { transition-delay: 320ms; }
[data-stagger] > .rv:nth-child(6), [data-stagger] > .rv-l:nth-child(6), [data-stagger] > .rv-r:nth-child(6) { transition-delay: 400ms; }
[data-stagger] > .rv:nth-child(7), [data-stagger] > .rv-l:nth-child(7), [data-stagger] > .rv-r:nth-child(7) { transition-delay: 480ms; }

/* No-JS safety: if JS never runs, content must still be visible */
html.no-js .rv, html.no-js .rv-l, html.no-js .rv-r { opacity: 1; transform: none; }

/* --------------------------------------------------------------------------
   20. MISC UTILITIES
   -------------------------------------------------------------------------- */
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.mt-0 { margin-top: 0; }
.mt-2 { margin-top: var(--sp-2); }
.mt-3 { margin-top: var(--sp-3); }
.mt-4 { margin-top: var(--sp-4); }
.mb-0 { margin-bottom: 0; }
.img-frame { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); }
.img-frame img { width: 100%; height: 100%; object-fit: cover; }
.note {
  font-size: var(--fs-sm);
  color: var(--tx-faint);
}
.section--light .note, .section--white .note { color: var(--tx-ink-dim); }

/* --------------------------------------------------------------------------
   21. REDUCED MOTION — full opt-out
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    transition-delay: 0ms !important;
    scroll-behavior: auto !important;
  }
  .rv, .rv-l, .rv-r { opacity: 1 !important; transform: none !important; }
  .marquee__track { animation: none !important; }
  .marquee { overflow-x: auto; -webkit-mask-image: none; mask-image: none; }
  .scroll-cue__line { animation: none !important; transform: scaleY(1); }
  .btn-gold:hover { animation: none !important; }
  .card:hover, .t-card:hover, .day-col:hover { transform: none !important; }
  .card:hover .card__media img, .gallery__item:hover img { transform: none !important; }
  .photo-break__bg { inset: 0; }
  .photo-break__bg img { transform: none !important; }
  .hero__media iframe { display: none !important; }  /* poster only */
}
