/* ==========================================================================
   Gym Khánh Vân — public site
   Palette and wordmark are taken from the shop signboard in assets/.
   ========================================================================== */

:root {
  --red: #d40f22;
  --red-dark: #a60b1a;
  --red-glow: rgba(212, 15, 34, .35);
  --ink: #0d0d0f;
  --ink-2: #17171b;
  --ink-3: #26262c;
  --paper: #ffffff;
  --paper-2: #f5f5f7;
  --paper-3: #ebebef;
  --muted: #6b6b76;
  --muted-dark: #a3a3ad;
  --line: rgba(13, 13, 15, .12);
  --line-dark: rgba(255, 255, 255, .14);

  --font-body: 'Be Vietnam Pro', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  --font-display: 'Oswald', 'Be Vietnam Pro', Impact, 'Arial Narrow', sans-serif;

  --shell: 1180px;
  --pad: clamp(1rem, 4vw, 2.5rem);
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 18px 40px -22px rgba(13, 13, 15, .45);
  --shadow-lg: 0 32px 70px -30px rgba(13, 13, 15, .55);
  --ease: cubic-bezier(.22, .61, .36, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: clamp(1rem, .96rem + .2vw, 1.0625rem);
  line-height: 1.7;
  color: var(--ink);
  background: var(--paper);
  overflow-x: hidden;
}

img, svg, iframe { max-width: 100%; }
img { height: auto; display: block; }

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: .01em;
  margin: 0 0 .6em;
  text-transform: uppercase;
}
h2 { font-size: clamp(1.8rem, 1.2rem + 2.4vw, 3rem); }
h3 { font-size: clamp(1.1rem, 1rem + .5vw, 1.35rem); }
p { margin: 0 0 1rem; }
ul { margin: 0; padding: 0; list-style: none; }

a { color: inherit; }
a:focus-visible, button:focus-visible, summary:focus-visible, iframe:focus-visible, details:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 3px;
  border-radius: 4px;
}

.shell { width: min(100% - 2 * var(--pad), var(--shell)); margin-inline: auto; }

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

.skip-link {
  position: absolute; left: 50%; translate: -50% -140%;
  z-index: 100; background: var(--red); color: #fff;
  padding: .75rem 1.25rem; border-radius: 0 0 10px 10px; font-weight: 600;
  transition: translate .2s var(--ease);
}
.skip-link:focus { translate: -50% 0; }

.eyebrow {
  font-family: var(--font-display);
  font-size: .82rem; font-weight: 600; letter-spacing: .22em;
  text-transform: uppercase; color: var(--red); margin-bottom: .75rem;
}
.lead { font-size: 1.08rem; color: var(--muted); max-width: 58ch; }
.muted { color: var(--muted); }
.fineprint { font-size: .85rem; color: var(--muted); }

/* ── buttons ────────────────────────────────────────────────────────────── */
.btn {
  --btn-bg: var(--red);
  --btn-fg: #fff;
  display: inline-flex; align-items: center; gap: .55rem;
  padding: .75rem 1.4rem; border: 2px solid transparent; border-radius: 999px;
  background: var(--btn-bg); color: var(--btn-fg);
  font-family: var(--font-display); font-weight: 600; font-size: .95rem;
  letter-spacing: .06em; text-transform: uppercase; text-decoration: none;
  cursor: pointer; white-space: nowrap;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), background-color .2s var(--ease), color .2s var(--ease);
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 14px 28px -14px var(--red-glow); }
.btn:active { transform: translateY(0); }
.btn-lg { padding: .95rem 1.8rem; font-size: 1.02rem; }
.btn-block { width: 100%; justify-content: center; }
.btn-primary { background: var(--red); }
.btn-primary:hover { background: var(--red-dark); }
.btn-ghost { background: transparent; border-color: rgba(255, 255, 255, .5); color: #fff; }
.btn-ghost:hover { background: rgba(255, 255, 255, .12); border-color: #fff; box-shadow: none; }
.btn-outline { background: transparent; border-color: var(--ink); color: var(--ink); }
.btn-outline:hover { background: var(--ink); color: #fff; box-shadow: none; }
.btn-light { background: #fff; color: var(--ink); }
.btn-light:hover { background: var(--paper-2); }
.ico { width: 1.15em; height: 1.15em; fill: currentColor; flex: none; }

/* ── header ─────────────────────────────────────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(13, 13, 15, .82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: background-color .3s var(--ease), border-color .3s var(--ease);
}
.site-header.is-stuck { background: rgba(13, 13, 15, .96); border-bottom-color: var(--line-dark); }

.header-inner { display: flex; align-items: center; gap: 1rem; min-height: 72px; }

.brand { display: flex; align-items: center; gap: .7rem; text-decoration: none; color: #fff; margin-right: auto; }
.brand-mark {
  display: grid; place-items: center; width: 46px; height: 46px; flex: none;
  color: var(--red); border-radius: 12px; background: #fff; padding: 4px;
}
.brand-mark img { width: 100%; height: auto; }
.brand-text { display: grid; line-height: 1.15; }
.brand-text strong { font-family: var(--font-display); font-size: 1.02rem; letter-spacing: .06em; }
.brand-text em { font-style: normal; font-size: .66rem; letter-spacing: .2em; color: var(--muted-dark); text-transform: uppercase; }

.site-nav ul { display: flex; gap: .35rem; }
.site-nav a {
  display: block; padding: .5rem .8rem; border-radius: 999px;
  color: rgba(255, 255, 255, .82); text-decoration: none;
  font-size: .92rem; font-weight: 500;
  transition: color .2s var(--ease), background-color .2s var(--ease);
}
.site-nav a:hover, .site-nav a.is-active { color: #fff; background: rgba(255, 255, 255, .12); }

.nav-toggle {
  display: none; width: 44px; height: 44px; border: 0; border-radius: 12px;
  background: rgba(255, 255, 255, .1); cursor: pointer; padding: 12px;
}
.nav-toggle span { display: block; height: 2px; background: #fff; border-radius: 2px; transition: transform .25s var(--ease), opacity .2s var(--ease); }
.nav-toggle span + span { margin-top: 5px; }
.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); }

/* ── hero ───────────────────────────────────────────────────────────────── */
.hero { position: relative; isolation: isolate; display: grid; align-items: center; min-height: min(92vh, 860px); padding: clamp(3rem, 9vh, 7rem) 0 5rem; color: #fff; overflow: hidden; }
.hero-media { position: absolute; inset: 0; z-index: -1; overflow: hidden; }
/* 14% of headroom above the fold so the parallax shift never exposes a gap. */
.hero-media img {
  position: absolute; inset: -14% 0 auto 0;
  width: 100%; height: 128%; object-fit: cover; object-position: center 40%;
  will-change: transform;
}
.hero-scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(105deg, rgba(13, 13, 15, .94) 0%, rgba(13, 13, 15, .8) 42%, rgba(13, 13, 15, .35) 78%, rgba(13, 13, 15, .55) 100%),
    radial-gradient(70% 60% at 12% 50%, var(--red-glow), transparent 70%);
}
.hero-inner { max-width: 720px; }
.hero-title { font-size: clamp(2.8rem, 1.4rem + 7vw, 6.5rem); line-height: .92; margin-bottom: .35rem; }
.hero-title .line { display: block; }
.hero-title .accent { color: var(--red); text-shadow: 0 0 40px var(--red-glow); }
.hero-tagline {
  font-family: var(--font-display); font-size: clamp(.95rem, .8rem + .7vw, 1.4rem);
  letter-spacing: .34em; text-transform: uppercase; color: #fff;
  margin: 0 0 1.4rem; padding-top: .9rem; position: relative;
}
.hero-tagline::before { content: ""; position: absolute; top: 0; left: 0; width: 84px; height: 3px; background: var(--red); }
.hero-copy { color: rgba(255, 255, 255, .82); max-width: 52ch; font-size: 1.06rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; margin: 1.8rem 0 2.6rem; }

.hero-stats { display: flex; flex-wrap: wrap; gap: clamp(1.2rem, 4vw, 3rem); margin: 0; }
.hero-stats > div { border-left: 3px solid var(--red); padding-left: .9rem; }
.hero-stats dt { font-size: .76rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted-dark); }
.hero-stats dd { margin: .15rem 0 0; font-family: var(--font-display); font-size: clamp(1.6rem, 1.2rem + 1.5vw, 2.4rem); line-height: 1; }
.hero-stats .num { font-variant-numeric: tabular-nums; }
.hero-stats .hours-stat { font-variant-numeric: tabular-nums; letter-spacing: -.01em; }
.hero-stats small { font-size: .5em; color: var(--red); margin-left: .12em; }

.hero-scroll { position: absolute; left: 50%; bottom: 1.6rem; translate: -50% 0; width: 26px; height: 42px; border: 2px solid rgba(255, 255, 255, .45); border-radius: 999px; display: grid; justify-items: center; padding-top: 7px; }
.hero-scroll span { width: 4px; height: 8px; border-radius: 4px; background: #fff; animation: scrollDot 1.8s var(--ease) infinite; }
@keyframes scrollDot { 0% { transform: translateY(0); opacity: 0; } 30% { opacity: 1; } 100% { transform: translateY(14px); opacity: 0; } }

/* ── marquee ────────────────────────────────────────────────────────────── */
.marquee { background: var(--red); color: #fff; overflow: hidden; padding: .7rem 0; }
.marquee-track { display: flex; gap: 2rem; width: max-content; animation: slide 26s linear infinite; font-family: var(--font-display); letter-spacing: .24em; font-size: .88rem; text-transform: uppercase; }
@keyframes slide { to { transform: translateX(-50%); } }

/* ── sections ───────────────────────────────────────────────────────────── */
.section { padding: clamp(3.5rem, 8vw, 7rem) 0; }
.section-soft { background: var(--paper-2); }
.section-dark { background: var(--ink); color: #fff; }
.section-dark .lead, .section-dark .muted { color: var(--muted-dark); }
.section-head { max-width: 62ch; margin-bottom: clamp(2rem, 4vw, 3.5rem); }

.about-grid { display: grid; gap: clamp(2rem, 5vw, 4rem); grid-template-columns: 1.15fr .85fr; align-items: start; margin-bottom: clamp(2.5rem, 6vw, 4.5rem); }
.about-copy { min-width: 0; }
.about-media { margin: 0; position: relative; }
.about-media img { border-radius: var(--radius); box-shadow: var(--shadow-lg); }
.about-media figcaption { margin-top: .8rem; font-size: .86rem; color: var(--muted); }

.checks { display: grid; gap: .6rem; margin-top: 1.4rem; }
.checks li { position: relative; padding-left: 2rem; }
.checks li::before {
  content: ""; position: absolute; left: 0; top: .42em; width: 1.25rem; height: 1.25rem;
  border-radius: 50%; background: var(--red);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E") center/78% no-repeat;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E") center/78% no-repeat;
}

.feature-grid { display: grid; gap: 1.1rem; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); }
.feature {
  background: var(--paper-2); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.6rem 1.5rem; position: relative; overflow: hidden;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.feature::after { content: ""; position: absolute; inset: auto auto 0 0; height: 3px; width: 0; background: var(--red); transition: width .4s var(--ease); }
.feature:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: transparent; }
.feature:hover::after { width: 100%; }
.feature-ico { display: grid; place-items: center; width: 46px; height: 46px; border-radius: 13px; background: var(--red); margin-bottom: 1rem; }
.feature-ico svg { width: 26px; height: 26px; fill: #fff; }
.feature p { margin: 0; color: var(--muted); font-size: .96rem; }

/* ── zones ──────────────────────────────────────────────────────────────── */
.zones { display: grid; gap: clamp(1.5rem, 4vw, 3rem); }
.zone { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(1.5rem, 4vw, 3rem); align-items: center; }
.zone-flip .zone-media { order: 2; }
.zone-media { border-radius: var(--radius); overflow: hidden; position: relative; }
.zone-media img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; transition: transform .7s var(--ease); }
.zone:hover .zone-media img { transform: scale(1.05); }
.zone-num { font-family: var(--font-display); font-size: 3.2rem; line-height: 1; color: transparent; -webkit-text-stroke: 1.5px var(--red); display: block; margin-bottom: .3rem; }
.zone-body p { color: var(--muted-dark); }
.tags { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1rem; }
.tags li { font-size: .8rem; letter-spacing: .06em; text-transform: uppercase; padding: .35rem .8rem; border: 1px solid var(--line-dark); border-radius: 999px; color: rgba(255, 255, 255, .8); }

/* ── prices ─────────────────────────────────────────────────────────────── */
.price-grid { display: grid; gap: 1.1rem; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.price-card {
  display: flex; flex-direction: column; gap: .35rem;
  border: 1px solid var(--line); border-radius: var(--radius); padding: 1.8rem 1.6rem;
  background: var(--paper); position: relative;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.price-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.price-card h3 { margin-bottom: .3rem; }
.price { display: flex; align-items: baseline; gap: .3rem; margin: 0 0 .4rem; }
.price .amount { font-family: var(--font-display); font-size: clamp(1.9rem, 1.4rem + 1.6vw, 2.6rem); line-height: 1; color: var(--red); }
.price .unit { font-size: .9rem; color: var(--muted); }
.price-note { font-size: .88rem; color: var(--muted); margin-bottom: .9rem; }
.price-card ul { display: grid; gap: .45rem; margin-bottom: 1.4rem; font-size: .94rem; }
.price-card ul li { position: relative; padding-left: 1.4rem; }
.price-card ul li::before { content: ""; position: absolute; left: 0; top: .62em; width: 7px; height: 7px; border-radius: 50%; background: var(--red); }
.price-card .btn { margin-top: auto; align-self: flex-start; }
.price-card-featured { border-color: var(--red); box-shadow: 0 22px 46px -26px var(--red-glow); }
.badge {
  position: absolute; top: -.85rem; left: 1.6rem;
  background: var(--red); color: #fff; font-family: var(--font-display);
  font-size: .72rem; letter-spacing: .14em; text-transform: uppercase;
  padding: .3rem .8rem; border-radius: 999px;
}

.pt-block {
  margin-top: 1.6rem;
  background: var(--ink); color: #fff; border-radius: var(--radius);
  padding: clamp(1.5rem, 4vw, 2.4rem);
}
.pt-head { display: flex; flex-wrap: wrap; gap: 1.2rem; align-items: center; justify-content: space-between; margin-bottom: 1.6rem; }
.pt-head h3 { margin-bottom: .4rem; }
.pt-head p { margin: 0; color: var(--muted-dark); max-width: 54ch; }

.pt-grid { display: grid; gap: .9rem; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); }
.pt-card {
  display: grid; align-content: start; gap: .25rem;
  border: 1px solid var(--line-dark); border-radius: var(--radius-sm);
  padding: 1.1rem 1.2rem; position: relative;
  transition: border-color .3s var(--ease), transform .3s var(--ease);
}
.pt-card:hover { transform: translateY(-3px); border-color: rgba(255, 255, 255, .34); }
.pt-card.is-best { border-color: var(--red); background: rgba(212, 15, 34, .08); }

.pt-name { font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted-dark); }
.pt-total { margin: .1rem 0 0; font-family: var(--display); font-size: clamp(1.4rem, 1.1rem + 1vw, 1.9rem); line-height: 1; color: #fff; }
.pt-total span { font-size: .55em; margin-left: .1em; color: var(--muted-dark); }
.pt-card.is-best .pt-total { color: var(--red); }
.pt-unit { margin: 0; font-size: .86rem; color: var(--muted-dark); }
.pt-save {
  justify-self: start; margin-top: .55rem; padding: .2rem .6rem; border-radius: 999px;
  font-size: .72rem; font-weight: 600; letter-spacing: .04em;
  background: rgba(255, 255, 255, .12); color: #fff;
}
.pt-card.is-best .pt-save { background: var(--red); }

/* ── gallery ────────────────────────────────────────────────────────────── */
.gallery { display: grid; gap: .9rem; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); grid-auto-rows: 220px; }
.g-item { margin: 0; border-radius: var(--radius-sm); overflow: hidden; }
.g-tall { grid-row: span 2; }
.g-wide { grid-column: span 2; }
.g-open { display: block; width: 100%; height: 100%; padding: 0; border: 0; background: none; cursor: zoom-in; position: relative; }
.g-open img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease), filter .4s var(--ease); }
.g-open:hover img { transform: scale(1.06); filter: brightness(.72); }
.g-zoom {
  position: absolute; inset: 0; display: grid; place-items: center; opacity: 0;
  transition: opacity .3s var(--ease);
}
.g-zoom::before, .g-zoom::after { content: ""; position: absolute; background: #fff; border-radius: 2px; }
.g-zoom::before { width: 30px; height: 3px; }
.g-zoom::after { width: 3px; height: 30px; }
.g-open:hover .g-zoom, .g-open:focus-visible .g-zoom { opacity: 1; }

/* ── schedule ───────────────────────────────────────────────────────────── */
.schedule-grid { display: grid; gap: clamp(2rem, 5vw, 3.5rem); grid-template-columns: 1.15fr .85fr; align-items: start; }
.hours { width: 100%; border-collapse: collapse; margin: 1.5rem 0 .8rem; }
.hours th, .hours td { text-align: left; padding: .85rem .4rem; border-bottom: 1px solid var(--line); }
.hours th { font-weight: 600; }
.hours td:nth-child(2) { font-family: var(--font-display); font-size: 1.05rem; white-space: nowrap; }
.hours .hint { color: var(--muted); font-size: .85rem; }

.busy-card { background: var(--ink); color: #fff; border-radius: var(--radius); padding: clamp(1.4rem, 3vw, 2rem); }
.busy-sub { color: var(--muted-dark); font-size: .86rem; margin-bottom: 1.2rem; }
.busy-bars { display: grid; gap: .55rem; }
.busy-bars li { display: grid; grid-template-columns: 3.4rem 1fr 4.6rem; align-items: center; gap: .7rem; font-size: .84rem; }
.busy-bars .t { color: var(--muted-dark); font-variant-numeric: tabular-nums; }
.busy-bars .bar { height: 10px; border-radius: 999px; background: rgba(255, 255, 255, .1); overflow: hidden; }
.busy-bars .bar i { display: block; height: 100%; width: var(--h, 0%); border-radius: 999px; background: linear-gradient(90deg, #fff, rgba(255, 255, 255, .55)); transform-origin: left; }
.busy-bars .bar.is-peak i { background: linear-gradient(90deg, var(--red), #ff5a6a); }
.busy-bars .v { color: var(--muted-dark); text-align: right; }

/* ── faq ────────────────────────────────────────────────────────────────── */
.faq-shell { max-width: 900px; }
.faq { display: grid; gap: .7rem; }
.faq details { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-sm); overflow: hidden; }
.faq summary {
  cursor: pointer; list-style: none; padding: 1.1rem 3.2rem 1.1rem 1.3rem;
  font-weight: 600; position: relative;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; position: absolute; right: 1.3rem; top: 50%; translate: 0 -50%;
  width: 14px; height: 14px; border-right: 2px solid var(--red); border-bottom: 2px solid var(--red);
  rotate: 45deg; transition: rotate .25s var(--ease);
}
.faq details[open] summary::after { rotate: -135deg; }
.faq details[open] { border-color: var(--red); }
.faq-body { padding: 0 1.3rem 1.2rem; color: var(--muted); }
.faq-body p { margin: 0; }
.faq-body a { color: var(--red); font-weight: 600; }

/* ── contact ────────────────────────────────────────────────────────────── */
.contact-grid { display: grid; gap: clamp(1.5rem, 4vw, 2.5rem); grid-template-columns: .95fr 1.05fr; align-items: start; }
.contact-card { background: var(--paper-2); border-radius: var(--radius); padding: clamp(1.5rem, 4vw, 2.2rem); }
.contact-list { display: grid; gap: 1.5rem; margin-bottom: 1.8rem; }
.contact-list li { display: flex; gap: 1rem; }
.contact-list h3 { font-size: .8rem; letter-spacing: .16em; color: var(--muted); margin-bottom: .35rem; }
.contact-list p, .contact-list address { margin: 0; font-style: normal; }
.c-ico { display: grid; place-items: center; width: 42px; height: 42px; flex: none; border-radius: 12px; background: #fff; box-shadow: var(--shadow); }
.c-ico svg { width: 22px; height: 22px; fill: var(--red); }
.big-link { font-family: var(--font-display); font-size: 1.3rem; color: var(--ink); text-decoration: none; }
.big-link:hover { color: var(--red); }
.link-arrow { display: inline-flex; align-items: center; gap: .35rem; margin-top: .5rem; color: var(--red); font-weight: 600; font-size: .9rem; text-decoration: none; }
.link-arrow::after { content: "→"; transition: translate .2s var(--ease); }
.link-arrow:hover::after { translate: 4px 0; }

.map-card { margin: 0; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); background: var(--paper); box-shadow: var(--shadow); }
.map-card iframe { width: 100%; height: clamp(300px, 42vh, 420px); border: 0; display: block; filter: saturate(.9) contrast(1.03); }
.map-card figcaption { display: grid; gap: .25rem; padding: 1.1rem 1.3rem 1.3rem; font-size: .92rem; }
.map-card figcaption span { color: var(--muted); }

/* ── cta strip ──────────────────────────────────────────────────────────── */
.cta-strip { background: var(--red); color: #fff; padding: clamp(2.5rem, 6vw, 4rem) 0; }
.cta-inner { display: flex; flex-wrap: wrap; gap: 1.5rem; align-items: center; justify-content: space-between; }
.cta-strip h2 { margin-bottom: .3rem; }
.cta-strip p { margin: 0; color: rgba(255, 255, 255, .88); max-width: 50ch; }

/* ── footer ─────────────────────────────────────────────────────────────── */
.site-footer { background: var(--ink); color: rgba(255, 255, 255, .8); padding: clamp(2.5rem, 6vw, 4rem) 0 1.5rem; }
.footer-grid { display: grid; gap: 2rem; grid-template-columns: 1.4fr 1fr 1.3fr 1fr; }
.footer-brand img { background: #fff; border-radius: 12px; padding: 6px; color: var(--red); }
.footer-brand strong { font-family: var(--font-display); letter-spacing: .06em; color: #fff; }
.footer-brand em { font-style: normal; font-size: .72rem; letter-spacing: .18em; text-transform: uppercase; color: var(--muted-dark); }
.site-footer h3 { font-size: .8rem; letter-spacing: .18em; color: #fff; margin-bottom: 1rem; }
.site-footer ul { display: grid; gap: .5rem; font-size: .94rem; }
.site-footer a { text-decoration: none; }
.site-footer a:hover { color: #fff; text-decoration: underline; }
.footer-bottom {
  display: flex; flex-wrap: wrap; gap: .5rem; justify-content: space-between;
  border-top: 1px solid var(--line-dark); margin-top: 2.5rem; padding-top: 1.3rem;
  font-size: .85rem;
}
.footer-bottom p { margin: 0; }

/* ── lightbox ───────────────────────────────────────────────────────────── */
.lightbox { position: fixed; inset: 0; z-index: 90; display: grid; place-items: center; padding: clamp(1rem, 4vw, 3rem); }
.lightbox[hidden] { display: none; }
.lightbox-backdrop { position: absolute; inset: 0; background: rgba(8, 8, 10, .93); backdrop-filter: blur(6px); animation: fade .25s var(--ease); }
.lightbox-figure { position: relative; margin: 0; max-width: min(1100px, 100%); animation: pop .3s var(--ease); }
.lightbox-figure img { max-height: 78vh; width: auto; margin-inline: auto; border-radius: var(--radius-sm); }
.lightbox-figure figcaption { color: #fff; text-align: center; margin-top: .9rem; font-size: .92rem; }
.lightbox-close, .lightbox-nav {
  position: absolute; background: rgba(255, 255, 255, .12); color: #fff; border: 0;
  width: 46px; height: 46px; border-radius: 50%; font-size: 1.8rem; line-height: 1; cursor: pointer;
  display: grid; place-items: center; transition: background-color .2s var(--ease);
}
.lightbox-close:hover, .lightbox-nav:hover { background: var(--red); }
.lightbox-close { top: -58px; right: 0; }
.lightbox-nav { top: 50%; translate: 0 -50%; }
.lightbox-prev { left: -62px; }
.lightbox-next { right: -62px; }
@keyframes fade { from { opacity: 0; } }
@keyframes pop { from { opacity: 0; transform: scale(.96); } }

/* ── floating call button ───────────────────────────────────────────────── */
.call-fab {
  position: fixed; right: 1rem; bottom: 1rem; z-index: 55;
  width: 56px; height: 56px; border-radius: 50%; display: none; place-items: center;
  background: var(--red); color: #fff; box-shadow: 0 12px 30px -10px var(--red-glow);
}
.call-fab svg { width: 26px; height: 26px; fill: currentColor; }
.call-fab::after { content: ""; position: absolute; inset: 0; border-radius: 50%; border: 2px solid var(--red); animation: pulse 2.4s var(--ease) infinite; }
@keyframes pulse { to { transform: scale(1.7); opacity: 0; } }

/* ── scroll reveal ──────────────────────────────────────────────────────── */
/* Only hidden once `boot.js` has marked the document as scripted, so the page
   is fully readable with JavaScript disabled (W-13). */
.js .reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
  transition-delay: calc(var(--d, 0) * 90ms);
}
.js .reveal.is-visible { opacity: 1; transform: none; }

/* ── responsive ─────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .about-grid, .schedule-grid, .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  html { scroll-padding-top: 72px; }
  .header-cta span { display: none; }
  .header-cta { padding: .7rem .9rem; }
  .nav-toggle { display: block; }
  .site-nav {
    position: fixed; inset: 64px 0 auto; background: rgba(13, 13, 15, .98);
    border-bottom: 1px solid var(--line-dark);
    padding: 1rem var(--pad) 1.6rem; display: none;
  }
  .site-nav.is-open { display: block; animation: fade .2s var(--ease); }
  .site-nav ul { flex-direction: column; gap: .2rem; }
  .site-nav a { padding: .8rem 1rem; font-size: 1.02rem; }
  .zone, .zone-flip { grid-template-columns: 1fr; }
  .zone-flip .zone-media { order: 0; }
  .call-fab { display: grid; }
  .lightbox-close { top: .5rem; right: .5rem; }
  .lightbox-prev { left: .4rem; }
  .lightbox-next { right: .4rem; }
}

@media (max-width: 620px) {
  .gallery { grid-auto-rows: 180px; }
  .g-wide, .g-tall { grid-column: span 1; grid-row: span 1; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 1.2rem; }
  .hero-stats > div { flex: 1 1 42%; }
  .contact-list li { flex-direction: column; gap: .6rem; }
}

/* ── motion & contrast preferences ──────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  .js .reveal { opacity: 1; transform: none; }
  .marquee-track { animation: none; }
}

@media (prefers-contrast: more) {
  :root { --muted: #45454f; --muted-dark: #d0d0d8; --line: rgba(13, 13, 15, .3); }
}

@media print {
  .site-header, .call-fab, .hero-scroll, .marquee, .lightbox, .map-card iframe { display: none !important; }
  body { color: #000; background: #fff; }
  .section-dark, .cta-strip, .site-footer { background: #fff !important; color: #000 !important; }
}


/* Fixed busy-level widths, as classes so the page needs no inline styles and
   the CSP can forbid them outright. */
.busy-bars .h20 { --h: 20%; }
.busy-bars .h25 { --h: 25%; }
.busy-bars .h30 { --h: 30%; }
.busy-bars .h45 { --h: 45%; }
.busy-bars .h55 { --h: 55%; }
.busy-bars .h70 { --h: 70%; }
.busy-bars .h100 { --h: 100%; }
