/* =========================================================
   SHAKTI X GYM AND FITNESS — main stylesheet
   Cinematic editorial · gold on charcoal · lightning motif
   ========================================================= */

/* ---------- Tokens: DARK (default) ---------- */
:root {
  --bg-0: #0a0807;
  --bg-1: #110e0a;
  --bg-2: #181410;
  --bg-3: #221b14;
  --line: rgba(232, 181, 71, 0.16);
  --line-strong: rgba(232, 181, 71, 0.32);

  --ink-0: #f5ebd7;
  --ink-1: #d8cdb6;
  --ink-2: #9a917e;
  --ink-3: #6b6354;

  --gold-0: #e8b547;
  --gold-1: #f3d079;
  --gold-2: #b8853c;
  --gold-3: #7a560f;
  --gold-glow: rgba(232, 181, 71, 0.55);

  --shadow-1: 0 1px 0 rgba(255,255,255,.04) inset, 0 12px 32px -16px rgba(0,0,0,.6);
  --shadow-gold: 0 0 0 1px rgba(232,181,71,.28), 0 24px 60px -28px rgba(232,181,71,.45);
  --radius: 14px;
  --radius-lg: 22px;

  --maxw: 1200px;
  --gutter: clamp(20px, 5vw, 48px);

  --header-h: 68px;

  --font-display: "Big Shoulders Display", "Antonio", "Bebas Neue", system-ui, sans-serif;
  --font-italic:  "Cormorant Garamond", Georgia, serif;
  --font-body:    "Manrope", "Inter", system-ui, sans-serif;
}

/* ---------- Tokens: LIGHT ---------- */
[data-theme="light"] {
  --bg-0: #f5efe3;
  --bg-1: #ede5d4;
  --bg-2: #e3d8be;
  --bg-3: #d6c79e;
  --line: rgba(122, 86, 15, 0.22);
  --line-strong: rgba(122, 86, 15, 0.42);

  --ink-0: #14110d;
  --ink-1: #2a241b;
  --ink-2: #5e5644;
  --ink-3: #7d745f;

  --gold-0: #a07014;
  --gold-1: #c79332;
  --gold-2: #7a560f;
  --gold-3: #4d3608;
  --gold-glow: rgba(160, 112, 20, 0.40);

  --shadow-1: 0 1px 0 rgba(255,255,255,.6) inset, 0 18px 40px -22px rgba(40,28,8,.22);
  --shadow-gold: 0 0 0 1px rgba(160,112,20,.30), 0 24px 60px -28px rgba(160,112,20,.45);
}

/* ============================
   RESET + BASE
============================ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 92px; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: clamp(15px, 1vw + 12px, 17px);
  line-height: 1.6;
  color: var(--ink-1);
  background: var(--bg-0);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  transition: background-color .35s ease, color .35s ease;
}
img, svg { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
input, select, textarea { font: inherit; color: inherit; }
ul, ol { margin: 0; padding: 0; list-style: none; }

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

.skip-link {
  position: absolute; top: -100px; left: 12px;
  background: var(--gold-0); color: var(--bg-0); padding: 10px 14px; border-radius: 8px;
  font-weight: 700; z-index: 1000;
}
.skip-link:focus { top: 12px; }

/* ============================
   ATMOSPHERE
============================ */
body::before {
  content: "";
  position: fixed; inset: -10%;
  pointer-events: none; z-index: -1;
  background:
    radial-gradient(ellipse 60vw 50vh at 15% 0%, var(--gold-glow), transparent 60%),
    radial-gradient(ellipse 50vw 40vh at 100% 30%, color-mix(in oklab, var(--gold-1) 70%, transparent), transparent 60%),
    radial-gradient(ellipse 80vw 60vh at 50% 100%, color-mix(in oklab, var(--gold-2) 70%, transparent), transparent 70%);
  opacity: .14;
  mix-blend-mode: screen;
  transition: opacity .4s ease;
}
[data-theme="light"] body::before { opacity: .35; mix-blend-mode: multiply; }

/* faint film grain */
body::after {
  content: "";
  position: fixed; inset: 0;
  pointer-events: none; z-index: -1;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 .55 0'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='.4'/></svg>");
  opacity: .05;
}
[data-theme="light"] body::after { opacity: .035; }

/* ============================
   LAYOUT HELPERS
============================ */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ============================
   TYPOGRAPHY
============================ */
.eyebrow {
  font-family: var(--font-body);
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold-0);
  display: inline-flex;
  align-items: center;
  gap: .55em;
  margin: 0 0 .8em;
}
.eyebrow .bolt { width: .9em; height: 1.1em; color: var(--gold-0); filter: drop-shadow(0 0 6px var(--gold-glow)); }
.eyebrow--gold { color: var(--gold-1); }
.eyebrow--hero { font-size: .85rem; }

.section-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 5vw + .5rem, 4.6rem);
  line-height: .97;
  letter-spacing: -0.01em;
  color: var(--ink-0);
  margin: 0 0 .35em;
  text-transform: uppercase;
}
.section-title em {
  font-family: var(--font-italic);
  font-style: italic;
  font-weight: 500;
  letter-spacing: -0.005em;
  color: var(--gold-1);
  text-transform: none;
  padding-right: .12em;
}

.section-num {
  font-family: var(--font-italic);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px var(--gold-2);
  display: block;
  margin-bottom: .15em;
  letter-spacing: -.02em;
  opacity: .85;
}

.section-head {
  margin-bottom: clamp(28px, 4vw, 56px);
  max-width: 50ch;
}
.section-head--center {
  margin-left: auto; margin-right: auto;
  text-align: center;
  max-width: 32ch;
}
.section-head--center .eyebrow { justify-content: center; }

.lead {
  font-size: clamp(1.05rem, .9vw + .85rem, 1.3rem);
  line-height: 1.55;
  color: var(--ink-0);
  font-weight: 400;
  margin: 0 0 1em;
}
p { margin: 0 0 1em; }
em { font-family: var(--font-italic); font-style: italic; color: var(--gold-1); font-weight: 500; }
strong { color: var(--ink-0); font-weight: 600; }
.muted { color: var(--ink-2); }
.muted-link {
  display: inline-flex; align-items: center; gap: .4em;
  color: var(--gold-1); font-weight: 500;
  font-size: .9rem;
  text-decoration: none;
  border-bottom: 1px dashed transparent;
  padding-bottom: 2px;
  transition: border-color .2s ease, color .2s ease;
}
.muted-link:hover { border-color: var(--gold-1); }
.muted-link .i { width: 16px; height: 16px; }

/* ============================
   ICONS / BOLTS
============================ */
.i { width: 1em; height: 1em; flex: none; }
.i--arrow { width: 1.1em; height: 1.1em; }
.bolt { width: 1em; height: 1.2em; color: var(--gold-0); flex: none; }

/* ============================
   BUTTONS
============================ */
.cta {
  --p: 14px 22px;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: .65em;
  padding: var(--p);
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  font-size: .92rem;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease, box-shadow .3s ease;
  white-space: nowrap;
}
.cta .i--arrow { transition: transform .25s ease; }
.cta:hover .i--arrow { transform: translateX(3px); }
.cta--sm { --p: 10px 16px; font-size: .82rem; }
.cta--lg { --p: 16px 28px; font-size: 1rem; }
.cta--block { display: flex; width: 100%; justify-content: center; }

.cta--gold {
  background: linear-gradient(180deg, var(--gold-1), var(--gold-0));
  color: #0a0807;
  border-color: var(--gold-2);
  box-shadow: 0 12px 30px -14px var(--gold-glow), inset 0 1px 0 rgba(255,255,255,.4);
}
.cta--gold:hover { transform: translateY(-1px); box-shadow: 0 20px 38px -16px var(--gold-glow), inset 0 1px 0 rgba(255,255,255,.5); }

.cta--ghost {
  background: transparent;
  color: var(--ink-0);
  border-color: var(--line-strong);
}
.cta--ghost:hover { border-color: var(--gold-1); color: var(--gold-1); }

/* ============================
   HEADER + NAV
============================ */
.topbar {
  background: linear-gradient(90deg, var(--gold-3), var(--gold-2), var(--gold-1), var(--gold-2), var(--gold-3));
  color: #1a1408;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  overflow: hidden;
  border-bottom: 1px solid rgba(0,0,0,.25);
}
.topbar__track {
  display: flex;
  width: max-content;
  animation: marquee 38s linear infinite;
}
.topbar__group {
  display: flex; align-items: center; gap: 28px;
  padding: 8px 14px;
}
.topbar__group .bolt { width: 12px; height: 14px; color: #1a1408; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .topbar__track { animation: none; }
}

.site-header {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(16px) saturate(1.4);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  background: color-mix(in oklab, var(--bg-0) 70%, transparent);
  border-bottom: 1px solid transparent;
  transition: background-color .3s ease, border-color .3s ease;
}
.site-header.is-scrolled {
  background: color-mix(in oklab, var(--bg-0) 92%, transparent);
  border-bottom-color: var(--line);
}
.site-header__inner {
  height: var(--header-h);
  display: flex;
  align-items: center;
  gap: 16px;
}
.brand {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none;
  color: var(--ink-0);
}
.brand__mark {
  width: 40px; height: 40px;
  border-radius: 8px;
  object-fit: cover;
  border: 1px solid var(--line-strong);
  box-shadow: var(--shadow-1);
}
.brand__wordmark { display: flex; flex-direction: column; line-height: 1; }
.brand__name {
  font-family: var(--font-display);
  font-weight: 900;
  letter-spacing: .04em;
  font-size: 1.25rem;
  display: inline-flex; align-items: center; gap: .08em;
  text-transform: uppercase;
}
.brand__bolt {
  width: .55em; height: .9em;
  color: var(--gold-0);
  filter: drop-shadow(0 0 6px var(--gold-glow));
  margin: 0 .04em;
  transform: translateY(-1px);
}
.brand__tag {
  font-family: var(--font-italic);
  font-style: italic;
  font-size: .85rem;
  color: var(--ink-2);
  letter-spacing: .02em;
  margin-top: 2px;
}

.primary-nav { display: none; margin-left: auto; }
.primary-nav ul { display: flex; gap: clamp(14px, 1.5vw, 26px); }
.primary-nav a {
  color: var(--ink-1);
  font-weight: 500; font-size: .92rem;
  padding: 6px 0;
  position: relative;
  transition: color .2s ease;
}
.primary-nav a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--gold-1), var(--gold-2));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
}
.primary-nav a:hover { color: var(--gold-1); }
.primary-nav a:hover::after { transform: scaleX(1); }

.header-actions { display: flex; align-items: center; gap: 8px; margin-left: auto; }

.icon-btn {
  width: 40px; height: 40px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 10px;
  border: 1px solid var(--line);
  color: var(--ink-0);
  background: color-mix(in oklab, var(--bg-1) 60%, transparent);
  transition: border-color .2s ease, color .2s ease, background .2s ease;
  position: relative;
}
.icon-btn svg { width: 18px; height: 18px; }
.icon-btn:hover { border-color: var(--gold-1); color: var(--gold-1); }

.theme-toggle .i--moon { display: block; }
.theme-toggle .i--sun { display: none; }
[data-theme="light"] .theme-toggle .i--moon { display: none; }
[data-theme="light"] .theme-toggle .i--sun  { display: block; }

.menu-toggle { display: inline-flex; }

@media (min-width: 1024px) {
  .primary-nav { display: block; }
  .menu-toggle { display: none; }
}

/* Mobile drawer */
.mobile-drawer {
  position: fixed; inset: 0;
  margin: 0;
  width: 100%; height: 100dvh;
  max-width: none; max-height: none;
  background: var(--bg-0);
  border: 0;
  color: var(--ink-0);
  padding: 0;
  z-index: 80;
  transform: translateY(-100%);
  transition: transform .35s cubic-bezier(.6,.05,.25,1);
}
.mobile-drawer[open] { transform: translateY(0); }
.mobile-drawer::backdrop { display: none; }
.mobile-drawer__inner {
  display: flex; flex-direction: column;
  height: 100%;
  padding: 18px var(--gutter) calc(env(safe-area-inset-bottom) + 28px);
}
.mobile-drawer__head {
  display: flex; align-items: center; justify-content: space-between;
  padding-bottom: 18px; border-bottom: 1px solid var(--line);
}
.mobile-nav {
  margin-top: 24px;
  display: flex; flex-direction: column;
  gap: 4px;
}
.mobile-nav a {
  display: flex; align-items: baseline; gap: 14px;
  padding: 14px 4px;
  font-family: var(--font-display);
  font-size: 1.85rem;
  font-weight: 700;
  color: var(--ink-0);
  text-transform: uppercase;
  letter-spacing: .02em;
  border-bottom: 1px solid var(--line);
  transition: color .2s ease, padding-left .2s ease;
}
.mobile-nav a:hover { color: var(--gold-1); padding-left: 8px; }
.mobile-nav span {
  font-family: var(--font-italic);
  font-style: italic; font-weight: 400;
  font-size: .9rem;
  color: var(--gold-1);
  letter-spacing: .04em;
}
.mobile-drawer__foot {
  margin-top: auto;
  display: flex; flex-direction: column; gap: 14px;
  padding-top: 22px;
}
.mobile-drawer__foot .muted-link {
  align-self: center;
  color: var(--ink-2);
}
.mobile-drawer__foot .muted-link:hover { color: var(--gold-1); }

/* ============================
   SECTIONS
============================ */
.section {
  padding: clamp(64px, 9vw, 128px) 0;
  position: relative;
}
.section + .section { border-top: 1px solid var(--line); }

/* Hero =================== */
.hero {
  position: relative;
  min-height: 92dvh;
  display: flex;
  align-items: stretch;
  overflow: hidden;
  padding-top: clamp(28px, 5vw, 64px);
  padding-bottom: clamp(48px, 7vw, 96px);
  isolation: isolate;
}
.hero__bg {
  position: absolute; inset: 0;
  z-index: -1;
}
.hero__bg img {
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(.75) contrast(1.08) brightness(.5);
  transform: scale(1.06);
}
.hero__veil {
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 75% 25%, color-mix(in oklab, var(--gold-0) 50%, transparent), transparent 50%),
    linear-gradient(180deg, color-mix(in oklab, var(--bg-0) 30%, transparent) 0%, color-mix(in oklab, var(--bg-0) 70%, transparent) 50%, var(--bg-0) 100%);
}
[data-theme="light"] .hero__bg img { filter: saturate(.7) brightness(1.05) contrast(.95); }
[data-theme="light"] .hero__veil {
  background:
    radial-gradient(circle at 75% 25%, color-mix(in oklab, var(--gold-0) 60%, transparent), transparent 55%),
    linear-gradient(180deg, color-mix(in oklab, var(--bg-0) 55%, transparent) 0%, color-mix(in oklab, var(--bg-0) 85%, transparent) 60%, var(--bg-0) 100%);
}

.hero__flare {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .55;
  z-index: -1;
}
.hero__flare--a {
  width: 60vmax; height: 60vmax;
  top: -20vmax; right: -20vmax;
  background: radial-gradient(circle, var(--gold-1), transparent 60%);
}
.hero__flare--b {
  width: 40vmax; height: 40vmax;
  bottom: -20vmax; left: -10vmax;
  background: radial-gradient(circle, var(--gold-2), transparent 60%);
  opacity: .35;
}

.hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
  width: 100%;
}

.hero__copy { display: flex; flex-direction: column; }

.hero__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(3rem, 10vw, 7.5rem);
  line-height: .92;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--ink-0);
  margin: 0 0 .4em;
}
.hero__title span { display: block; }
.hero__shakti {
  background: linear-gradient(180deg, var(--gold-1) 10%, var(--gold-0) 55%, var(--gold-2) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: 0;
  filter: drop-shadow(0 8px 24px rgba(232,181,71,.18));
}
.hero__ignites {
  display: inline-flex; align-items: center; gap: .12em;
  position: relative;
}
.hero__ignites em {
  font-family: var(--font-italic);
  font-style: italic; font-weight: 500;
  color: var(--ink-0);
  letter-spacing: -.01em;
  text-transform: none;
  font-size: .92em;
}
.hero__bolt {
  width: .42em; height: .82em;
  color: var(--gold-0);
  filter: drop-shadow(0 0 14px var(--gold-glow)) drop-shadow(0 0 4px var(--gold-1));
  transform: rotate(8deg) translateY(.04em);
  animation: bolt-flicker 4s ease-in-out infinite;
}
@keyframes bolt-flicker {
  0%, 92%, 100% { filter: drop-shadow(0 0 14px var(--gold-glow)) drop-shadow(0 0 4px var(--gold-1)); }
  94% { filter: drop-shadow(0 0 26px var(--gold-1)) drop-shadow(0 0 8px var(--gold-1)); }
  96% { filter: drop-shadow(0 0 6px var(--gold-glow)); }
}
@media (prefers-reduced-motion: reduce) { .hero__bolt { animation: none; } }

.hero__lede {
  max-width: 56ch;
  font-size: clamp(1rem, .6vw + .9rem, 1.18rem);
  color: var(--ink-1);
}
.hero__lede strong { color: var(--gold-1); font-weight: 600; }

.hero__cta {
  display: flex; flex-wrap: wrap; gap: 12px;
  margin: 14px 0 24px;
}

.hero__chips {
  display: flex; flex-wrap: wrap; gap: 8px 14px;
  font-family: var(--font-body);
  font-size: .82rem;
  color: var(--ink-1);
  letter-spacing: .04em;
}
.hero__chips li {
  display: inline-flex; align-items: center; gap: .4em;
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: color-mix(in oklab, var(--bg-1) 50%, transparent);
}
.hero__chips .bolt { width: 10px; height: 12px; }

.hero__card {
  position: relative;
  padding: 22px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line-strong);
  background: linear-gradient(160deg, color-mix(in oklab, var(--bg-2) 85%, transparent), color-mix(in oklab, var(--bg-0) 85%, transparent));
  box-shadow: var(--shadow-gold);
  display: grid; grid-template-columns: 96px 1fr; gap: 18px;
  align-items: center;
  backdrop-filter: blur(10px);
}
.hero__logo {
  width: 96px; height: 96px;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid var(--line-strong);
}
.hero__card-meta { display: flex; flex-direction: column; gap: 4px; }
.hero__card-title {
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 1.4rem;
  color: var(--ink-0);
  letter-spacing: .02em;
  margin: 0;
}
.hero__card-body { font-size: .9rem; color: var(--ink-1); margin: 0; }
.hero__card-line {
  display: inline-flex; align-items: center; gap: .5em;
  font-size: .8rem; color: var(--gold-1);
  letter-spacing: .12em; text-transform: uppercase;
  margin-top: 8px;
}
.hero__card-line .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--gold-0);
  box-shadow: 0 0 0 4px color-mix(in oklab, var(--gold-0) 25%, transparent);
  animation: pulse 1.8s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px color-mix(in oklab, var(--gold-0) 25%, transparent); }
  50%       { box-shadow: 0 0 0 8px color-mix(in oklab, var(--gold-0) 0%, transparent); }
}

.hero__scroll {
  position: absolute;
  left: var(--gutter); bottom: 22px;
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--font-italic);
  font-style: italic;
  font-size: .9rem;
  color: var(--ink-2);
  letter-spacing: .14em;
  text-transform: uppercase;
}
.hero__scroll-line {
  width: 72px; height: 1px;
  background: linear-gradient(90deg, var(--gold-0), transparent);
  position: relative; overflow: hidden;
}
.hero__scroll-line::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent, var(--gold-1), transparent);
  animation: shimmer 2.4s ease-in-out infinite;
}
@keyframes shimmer {
  0%   { transform: translateX(-100%); }
  100% { transform: translateX(120%); }
}

@media (min-width: 900px) {
  .hero__grid { grid-template-columns: 1.4fr .9fr; }
}
@media (max-width: 700px) {
  .hero__card { grid-template-columns: 64px 1fr; padding: 16px; gap: 12px; }
  .hero__logo { width: 64px; height: 64px; }
  .hero__card-title { font-size: 1.15rem; }
  .hero__scroll { display: none; }
}

/* About =================== */
.about__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
}
.about__copy p { color: var(--ink-1); }
.about__copy .lead { color: var(--ink-0); }

.about__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 28px 0 0;
}
.about__stats > div {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: color-mix(in oklab, var(--bg-1) 50%, transparent);
}
.about__stats dt {
  font-family: var(--font-body);
  font-size: .72rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ink-2);
  margin-bottom: 6px;
}
.about__stats dd {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  color: var(--ink-0);
  font-size: 1.4rem;
  letter-spacing: .01em;
}
.about__stats dd span {
  font-family: var(--font-italic);
  font-style: italic; font-weight: 500;
  text-transform: none;
  color: var(--gold-1);
  display: block; font-size: 1.1rem;
}

.about__figure {
  position: relative;
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line-strong);
  box-shadow: var(--shadow-1);
}
.about__figure img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3; }
.about__figure figcaption {
  position: absolute; left: 16px; bottom: 14px; right: 16px;
  font-family: var(--font-italic);
  font-style: italic; font-size: .9rem;
  color: var(--ink-0);
  letter-spacing: .04em;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,.6));
  padding: 22px 0 0;
}
[data-theme="light"] .about__figure figcaption { color: #f5ebd7; }

@media (min-width: 900px) {
  .about__grid { grid-template-columns: 1.1fr 1fr; gap: 64px; }
  .about__stats { grid-template-columns: repeat(4, 1fr); }
}

/* Programs grid =================== */
.program-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.program {
  position: relative;
  padding: 28px 24px 24px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: color-mix(in oklab, var(--bg-1) 70%, transparent);
  transition: transform .35s ease, border-color .3s ease, background .3s ease, box-shadow .3s ease;
  isolation: isolate;
  overflow: hidden;
}
.program::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: radial-gradient(circle at 80% 0%, color-mix(in oklab, var(--gold-0) 25%, transparent), transparent 60%);
  opacity: 0; transition: opacity .35s ease;
}
.program:hover {
  transform: translateY(-3px);
  border-color: var(--gold-1);
  box-shadow: var(--shadow-gold);
}
.program:hover::before { opacity: 1; }
.program__icon {
  width: 48px; height: 48px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 12px;
  background: linear-gradient(160deg, color-mix(in oklab, var(--gold-1) 22%, transparent), color-mix(in oklab, var(--gold-2) 12%, transparent));
  color: var(--gold-1);
  border: 1px solid var(--line-strong);
  margin-bottom: 18px;
}
.program__icon svg { width: 28px; height: 28px; }
.program h3 {
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 1.4rem;
  color: var(--ink-0);
  margin: 0 0 8px;
  letter-spacing: .01em;
}
.program p { color: var(--ink-1); font-size: .96rem; margin: 0 0 16px; }
.program__tag {
  display: inline-flex; align-items: center;
  font-family: var(--font-italic);
  font-style: italic;
  font-size: .85rem;
  color: var(--gold-1);
  letter-spacing: .06em;
  border-top: 1px solid var(--line);
  padding-top: 12px;
  width: 100%;
}

@media (min-width: 640px) {
  .program-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 960px) {
  .program-grid { grid-template-columns: repeat(3, 1fr); }
}

/* Equipment =================== */
.equipment { background: linear-gradient(180deg, transparent, color-mix(in oklab, var(--bg-1) 50%, transparent), transparent); }
.equipment__lead { max-width: 64ch; margin-bottom: 36px; }
.equipment__lead p { color: var(--ink-1); font-size: 1.05rem; }

.equipment__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.feature {
  padding: 22px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: color-mix(in oklab, var(--bg-1) 60%, transparent);
  display: flex; flex-direction: column;
  transition: border-color .25s ease, transform .35s ease, box-shadow .3s ease;
}
.feature:hover { border-color: var(--gold-1); box-shadow: var(--shadow-gold); transform: translateY(-2px); }
.feature h3 {
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 1.25rem;
  color: var(--ink-0);
  margin: 0 0 8px;
}
.feature p { color: var(--ink-1); font-size: .94rem; margin: 0; }
.feature__icon {
  width: 44px; height: 44px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 10px;
  background: color-mix(in oklab, var(--gold-1) 14%, transparent);
  color: var(--gold-1);
  border: 1px solid var(--line-strong);
  margin-bottom: 14px;
}
.feature__icon svg { width: 24px; height: 24px; }

.feature--wide {
  grid-column: 1 / -1;
  padding: 0;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr;
  border: 1px solid var(--line-strong);
}
.feature--wide figure { margin: 0; }
.feature--wide img {
  width: 100%; height: 100%; object-fit: cover; aspect-ratio: 16/9;
  filter: saturate(.95) contrast(1.05);
}
.feature--wide .feature__body {
  padding: 22px;
  display: flex; flex-direction: column; justify-content: center;
}
.feature--wide:hover { transform: none; }

.feature--callout {
  background: linear-gradient(160deg, color-mix(in oklab, var(--gold-1) 14%, transparent), color-mix(in oklab, var(--gold-2) 10%, transparent));
  border-color: var(--line-strong);
}
.feature--callout .eyebrow { margin-bottom: 14px; }
.feature__list {
  display: grid; gap: 10px;
}
.feature__list li {
  display: flex; align-items: flex-start; gap: 10px;
  color: var(--ink-0);
  font-size: .96rem;
}
.feature__list .i {
  width: 18px; height: 18px;
  color: var(--gold-1);
  margin-top: 3px;
}

@media (min-width: 640px) {
  .equipment__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1000px) {
  .equipment__grid { grid-template-columns: repeat(3, 1fr); }
  .feature--wide { grid-column: span 2; grid-template-columns: 1.2fr 1fr; }
  .feature--wide img { aspect-ratio: auto; }
}

/* Trainers =================== */
.trainers__intro {
  max-width: 60ch;
  margin-bottom: 36px;
}
.trainers__intro p { color: var(--ink-1); }
.trainers__intro .muted { font-family: var(--font-italic); font-style: italic; color: var(--ink-2); }

.trainers__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
.trainer-card {
  padding: 20px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: color-mix(in oklab, var(--bg-1) 70%, transparent);
  transition: border-color .25s ease, transform .35s ease, box-shadow .3s ease;
  position: relative; isolation: isolate; overflow: hidden;
}
.trainer-card::after {
  content: ""; position: absolute; left: -1px; right: -1px; bottom: -1px; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-0), transparent);
  transform: scaleX(0); transform-origin: left;
  transition: transform .4s ease;
}
.trainer-card:hover { border-color: var(--gold-1); transform: translateY(-3px); box-shadow: var(--shadow-gold); }
.trainer-card:hover::after { transform: scaleX(1); }

.trainer-card__photo {
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 30% 30%, color-mix(in oklab, var(--gold-0) 25%, transparent), transparent 60%),
    linear-gradient(160deg, color-mix(in oklab, var(--bg-3) 60%, transparent), color-mix(in oklab, var(--bg-0) 90%, transparent));
  border: 1px solid var(--line-strong);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
  position: relative; overflow: hidden;
}
.trainer-card__photo::before {
  content: ""; position: absolute;
  inset: -20%;
  background-image:
    radial-gradient(circle at 50% 50%, color-mix(in oklab, var(--gold-1) 14%, transparent), transparent 60%);
  filter: blur(20px);
}
.trainer-card__mono {
  position: relative;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 3rem;
  letter-spacing: .04em;
  background: linear-gradient(180deg, var(--gold-1), var(--gold-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-transform: uppercase;
}
.trainer-card h3 {
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  color: var(--ink-0);
  margin: 0 0 6px;
  font-size: 1.25rem;
}
.trainer-card p { color: var(--ink-1); font-size: .92rem; margin: 0 0 14px; }
.trainer-card__pill {
  display: inline-flex; align-items: center;
  font-family: var(--font-italic);
  font-style: italic;
  font-size: .8rem;
  color: var(--gold-1);
  letter-spacing: .08em;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  background: color-mix(in oklab, var(--gold-1) 6%, transparent);
}

@media (min-width: 700px)  { .trainers__grid { grid-template-columns: repeat(3, 1fr); } }

/* Gallery =================== */
.gallery__mosaic {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-auto-rows: 200px;
  gap: 12px;
}
.g { position: relative; margin: 0; overflow: hidden; border-radius: var(--radius); border: 1px solid var(--line); }
.g img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .9s cubic-bezier(.2,.6,.2,1), filter .4s ease;
  filter: saturate(.9) contrast(1.05);
}
.g:hover img { transform: scale(1.04); filter: saturate(1.05) contrast(1.08); }
.g figcaption {
  position: absolute; left: 12px; bottom: 10px;
  font-family: var(--font-italic);
  font-style: italic;
  font-size: .85rem;
  color: #f5ebd7;
  letter-spacing: .04em;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,.6));
  padding: 22px 12px 4px 0;
  border-radius: 0 0 0 var(--radius);
  text-shadow: 0 2px 8px rgba(0,0,0,.6);
}
.g--tall  { grid-row: span 2; }
.g--wide  { grid-column: span 2; }

@media (min-width: 700px) {
  .gallery__mosaic {
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 220px;
  }
  .g--tall  { grid-row: span 2; grid-column: span 1; }
  .g--wide  { grid-column: span 2; }
}

/* Membership =================== */
.membership { background: linear-gradient(180deg, transparent, color-mix(in oklab, var(--bg-1) 60%, transparent), transparent); }

.offer {
  margin: 0 auto;
  max-width: 880px;
  padding: clamp(28px, 4vw, 56px);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line-strong);
  background:
    radial-gradient(circle at 100% 0%, color-mix(in oklab, var(--gold-0) 22%, transparent), transparent 50%),
    linear-gradient(180deg, var(--bg-2), var(--bg-1));
  box-shadow: var(--shadow-gold);
  position: relative; overflow: hidden;
}
.offer::before {
  content: ""; position: absolute; inset: -2px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, transparent 30%, color-mix(in oklab, var(--gold-1) 30%, transparent), transparent 70%);
  z-index: -1;
  filter: blur(20px);
  opacity: .6;
}
.offer__lead { margin-bottom: 22px; }
.offer__lead h3 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(1.8rem, 4vw, 3rem);
  text-transform: uppercase;
  color: var(--ink-0);
  letter-spacing: -0.005em;
  margin: 0 0 .2em;
  line-height: 1;
}
.offer__lead p { color: var(--ink-1); margin: 0; }

.offer__list {
  display: grid; gap: 12px;
  margin-bottom: 28px;
}
.offer__list li {
  display: grid;
  grid-template-columns: 22px 1fr;
  align-items: start;
  gap: 12px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: color-mix(in oklab, var(--bg-0) 30%, transparent);
}
.offer__list .i { color: var(--gold-1); margin-top: 3px; width: 20px; height: 20px; }
.offer__list span { color: var(--ink-1); font-size: .96rem; }
.offer__list strong { color: var(--ink-0); }

.offer__foot {
  display: flex; flex-wrap: wrap; gap: 12px;
}

@media (min-width: 720px) {
  .offer__list { grid-template-columns: 1fr 1fr; }
}

/* Contact =================== */
.contact__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
}
.contact__info { display: flex; flex-direction: column; gap: 24px; }

.contact-list {
  display: grid; gap: 14px;
}
.contact-list li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 14px;
  align-items: start;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: color-mix(in oklab, var(--bg-1) 60%, transparent);
}
.contact-list .i { width: 22px; height: 22px; color: var(--gold-1); margin-top: 3px; }
.contact-list p { margin: 0; color: var(--ink-1); }
.contact-list p a { color: var(--ink-0); border-bottom: 1px solid var(--line-strong); padding-bottom: 1px; transition: color .2s ease, border-color .2s ease; }
.contact-list p a:hover { color: var(--gold-1); border-color: var(--gold-1); }
.contact-list .eyebrow { margin: 0 0 4px; }

.map {
  position: relative;
  height: 340px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line-strong);
  box-shadow: var(--shadow-1);
}
.map iframe { width: 100%; height: 100%; border: 0; filter: saturate(.85) brightness(.92); }
[data-theme="light"] .map iframe { filter: none; }

/* Form =================== */
.prereg {
  position: sticky; top: calc(var(--header-h) + 20px);
  padding: clamp(22px, 3vw, 32px);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line-strong);
  background: linear-gradient(180deg, color-mix(in oklab, var(--bg-2) 90%, transparent), color-mix(in oklab, var(--bg-1) 90%, transparent));
  box-shadow: var(--shadow-1);
}
.prereg h3 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(1.5rem, 3vw, 2rem);
  text-transform: uppercase;
  color: var(--ink-0);
  margin: 0 0 .25em;
  letter-spacing: -0.005em;
  line-height: 1;
}
.prereg__lede { color: var(--ink-1); margin: 0 0 18px; }
.field {
  display: block;
  margin-bottom: 14px;
}
.field span {
  display: block;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-2);
  margin-bottom: 6px;
}
.field input,
.field select {
  width: 100%;
  padding: 13px 14px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: color-mix(in oklab, var(--bg-0) 70%, transparent);
  color: var(--ink-0);
  transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
}
.field input::placeholder { color: var(--ink-3); }
.field input:focus,
.field select:focus {
  outline: none;
  border-color: var(--gold-1);
  background: color-mix(in oklab, var(--bg-0) 90%, transparent);
  box-shadow: 0 0 0 4px color-mix(in oklab, var(--gold-1) 18%, transparent);
}
.field input:invalid:not(:placeholder-shown) { border-color: #c25656; }
.field select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--gold-1) 50%), linear-gradient(135deg, var(--gold-1) 50%, transparent 50%);
  background-position: calc(100% - 18px) 50%, calc(100% - 13px) 50%;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
  padding-right: 34px;
}

.prereg__fine {
  font-family: var(--font-italic);
  font-style: italic;
  font-size: .85rem;
  color: var(--ink-2);
  margin: 14px 0 0;
  text-align: center;
}
.prereg__fine a { color: var(--gold-1); text-decoration: underline; }

.prereg__ok {
  display: flex; gap: 12px;
  margin-top: 18px;
  padding: 14px;
  border-radius: var(--radius);
  border: 1px solid var(--line-strong);
  background: color-mix(in oklab, var(--gold-1) 10%, transparent);
  color: var(--ink-0);
}
.prereg__ok .i { color: var(--gold-1); width: 22px; height: 22px; flex: none; margin-top: 2px; }
.prereg__ok p { margin: 0; font-size: .92rem; }

@media (min-width: 960px) {
  .contact__grid { grid-template-columns: 1.1fr 1fr; gap: 40px; }
}

/* Footer =================== */
.site-footer {
  padding: 56px 0 28px;
  background: color-mix(in oklab, var(--bg-1) 60%, transparent);
  border-top: 1px solid var(--line);
  margin-top: clamp(48px, 6vw, 80px);
}
.site-footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px 24px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--line);
}
.site-footer__brand img {
  width: 64px; height: 64px; border-radius: 12px;
  border: 1px solid var(--line-strong);
  margin-bottom: 14px;
}
.site-footer__name {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.4rem;
  text-transform: uppercase;
  color: var(--ink-0);
  letter-spacing: .04em;
  margin: 0 0 4px;
  line-height: 1;
  display: inline-flex; flex-direction: column;
}
.site-footer__name span {
  font-family: var(--font-italic);
  font-style: italic;
  font-weight: 400;
  font-size: .9rem;
  color: var(--ink-2);
  letter-spacing: .04em;
  text-transform: none;
  margin-top: 4px;
}
.site-footer__tag { color: var(--ink-2); max-width: 32ch; margin: 12px 0 0; font-size: .9rem; }
.site-footer__col p { color: var(--ink-1); font-size: .92rem; margin: 0 0 6px; }
.site-footer__col p a { color: var(--gold-1); border-bottom: 1px dashed transparent; padding-bottom: 1px; }
.site-footer__col p a:hover { border-color: var(--gold-1); }

.site-footer__bar {
  display: flex; flex-wrap: wrap; gap: 12px;
  justify-content: space-between;
  margin-top: 22px;
  font-size: .82rem;
  color: var(--ink-2);
  font-family: var(--font-italic);
  font-style: italic;
}
.site-footer__bar a { color: var(--gold-1); }
.site-footer__bar .credit {
  font-family: var(--font-body);
  font-style: normal;
  font-weight: 600;
  letter-spacing: .04em;
  background: linear-gradient(90deg, var(--gold-1), var(--gold-0));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  border-bottom: 1px dashed var(--line-strong);
  padding-bottom: 1px;
  transition: border-color .2s ease;
}
.site-footer__bar .credit:hover { border-bottom-color: var(--gold-1); }

@media (min-width: 760px) {
  .site-footer__grid { grid-template-columns: 1.6fr 1fr 1fr 1fr; }
}

/* ============================
   SCROLL REVEALS
   - Hero items: animated on load (always hidden by default)
   - Other items: only hidden when JS adds .js-reveals to <html>,
     so no-JS users see everything immediately.
   - Safety: .reveal-fallback forces everything visible (set by JS after 1.5s).
============================ */
.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .8s cubic-bezier(.2,.6,.2,1) var(--d, 0ms), transform .8s cubic-bezier(.2,.6,.2,1) var(--d, 0ms);
  will-change: transform, opacity;
}
.reveal.is-in { opacity: 1; transform: none; }

.js-reveals .section-head,
.js-reveals .program,
.js-reveals .feature,
.js-reveals .trainer-card,
.js-reveals .g,
.js-reveals .offer,
.js-reveals .prereg,
.js-reveals .about__figure,
.js-reveals .map {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .7s cubic-bezier(.2,.6,.2,1), transform .7s cubic-bezier(.2,.6,.2,1);
}
.in-view {
  opacity: 1 !important;
  transform: none !important;
}

.reveal-fallback .reveal,
.reveal-fallback .section-head,
.reveal-fallback .program,
.reveal-fallback .feature,
.reveal-fallback .trainer-card,
.reveal-fallback .g,
.reveal-fallback .offer,
.reveal-fallback .prereg,
.reveal-fallback .about__figure,
.reveal-fallback .map {
  opacity: 1 !important;
  transform: none !important;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .reveal,
  .js-reveals .section-head,
  .js-reveals .program,
  .js-reveals .feature,
  .js-reveals .trainer-card,
  .js-reveals .g,
  .js-reveals .offer,
  .js-reveals .prereg,
  .js-reveals .about__figure,
  .js-reveals .map {
    opacity: 1; transform: none;
  }
}

/* ============================
   FOCUS RINGS
============================ */
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible, [tabindex]:focus-visible, dialog:focus-visible {
  outline: 2px solid var(--gold-1);
  outline-offset: 2px;
  border-radius: 8px;
}

/* When mobile drawer is open, prevent body scroll */
body.no-scroll { overflow: hidden; }
