:root {
  /* V2.1 — neutral base + reserved accents: red for hot yoga only, blue for Pilates only */
  --cream: #F3F4F6;      /* cool neutral grey base (was warm beige — cooled to pop accents) */
  --cream-2: #E7E9EC;    /* cool grey alt / paper */
  --sand: #D5D9DE;       /* cool grey panel */
  --ink: #1A1D21;        /* cool slate charcoal — primary brand + CTA */
  --ink-2: #5F626A;      /* muted body — AA on both greys (was #6A6E76 = 4.21:1) */
  --ink-3: #34373D;      /* cool slate — hover */
  /* hot yoga — RESERVED for heated content only */
  --hot: #C4471F;        /* sunset coral-red — deepened so white button text passes AA */
  --hot-ink: #A83A1C;    /* hot accent for SMALL text on light backgrounds */
  --hot-2: #B23E1F;      /* deep sunset — hover */
  /* pilates — RESERVED for Pilates content only */
  --pilates: #1275BE;    /* sky azure — deepened so white button text passes AA */
  --pilates-ink: #0F6098; /* pilates accent for SMALL text on light backgrounds */
  --pilates-2: #0F6098;  /* deep azure — hover */
  /* legacy aliases (kept so unchanged rules still resolve) */
  --clay: var(--ink);    /* was red — now neutral ink */
  --clay-2: var(--ink-3);
  --ember: var(--ink);   /* was red — now ink */
  --sun: #D4A052;        /* warm gold — used for star ratings only */
  --moss: var(--ink);
  --sage-soft: var(--ink-2);
  --black: #0A0B0D;      /* true black for dark sections */
  --white: #FFFFFF;
  --line: rgba(26,29,33,.12);
  --line-2: rgba(26,29,33,.06);
  --shadow-sm: 0 1px 12px rgba(26,29,33,.05);
  --shadow: 0 16px 50px rgba(26,29,33,.10);
  --heat: linear-gradient(115deg, #0A0B0D 0%, #1A1D21 45%, #D6512E 100%);
  --font-display: 'DM Serif Display', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
  --header-h: 140px;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -webkit-text-size-adjust: 100%; scroll-padding-top: 90px; }
body { font-family: var(--font-body); color: var(--ink); background: var(--cream); line-height: 1.6; overflow-x: hidden; min-height: 100vh; min-height: 100dvh; }
img { display: block; max-width: 100%; }
picture { display: contents; }
a { color: inherit; -webkit-tap-highlight-color: rgba(214,81,46,.18); }
button, input, select, textarea { font: inherit; color: inherit; }
input, textarea, select { font-size: 16px; } /* prevent iOS focus zoom */

.skip { position: absolute; left: -9999px; top: 0; z-index: 3000; background: var(--ink); color: #fff; font-size: 14px; font-weight: 600; padding: 14px 20px; text-decoration: none; border-radius: 0 0 4px 0; }
.skip:focus { left: 0; top: 0; }
a:focus-visible, button:focus-visible, [role="button"]:focus-visible { outline: 3px solid var(--pilates); outline-offset: 3px; }

.container { max-width: 1200px; margin: 0 auto; padding-left: 24px; padding-right: 24px; }
.wide { max-width: 1320px; }

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 500; line-height: 1.02; letter-spacing: -0.025em; color: var(--ink); }
.display { font-size: clamp(54px, 9.5vw, 132px); font-weight: 500; }
.eyebrow { display: inline-block; font-family: var(--font-body); font-size: 13px; font-weight: 600; letter-spacing: 2.5px; text-transform: uppercase; color: var(--ink); }
/* section-scoped accent overrides — pilates = slate blue, yoga = hot red */
.pilates .eyebrow { color: var(--pilates-ink); }
.yoga .eyebrow { color: var(--hot-ink); }
.pilates .menu-group-head .lvl, .pilates .menu-items .tag,
.training-prog[data-cat="pilates"] .prog-label, .training-prog[data-cat="cadillac"] .prog-label,
.priv-pilates .priv-price { color: var(--pilates); }
.priv-pilates .priv-name { color: var(--pilates-ink); }
.pilates .menu-group { border-top-color: var(--pilates); }
.yoga .menu-group-head .lvl, .yoga .menu-items .tag,
.training-prog[data-cat="yoga"] .prog-label, .priv-yoga .priv-price { color: var(--hot); }
.yoga .menu-group { border-top-color: var(--hot); }
/* yoga calm group: tags stay neutral since they're not heated */
.yoga .menu-group:nth-of-type(2) .menu-group-head .lvl,
.yoga .menu-group:nth-of-type(2) .menu-items .tag { color: var(--ink-2); }
.yoga .menu-group:nth-of-type(2) { border-top-color: var(--ink); }
.eyebrow b { font-family: var(--font-display); font-style: italic; font-weight: 500; font-size: 1.55em; margin-right: 10px; letter-spacing: -0.02em; text-transform: none; vertical-align: -2px; opacity: .9; }
.lead { font-size: clamp(17px, 2vw, 20px); color: var(--ink-2); line-height: 1.65; }
em { font-style: italic; }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 15px 28px; border-radius: 4px; font-family: var(--font-body);
  font-size: 15px; font-weight: 600; text-decoration: none; cursor: pointer;
  border: none; position: relative; transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease, border-color .25s ease;
  white-space: nowrap; -webkit-tap-highlight-color: transparent; letter-spacing: .01em;
  touch-action: manipulation; min-height: 44px; user-select: none;
}
.btn svg { width: 17px; height: 17px; transition: transform .25s ease; }
.btn:hover svg { transform: translateX(3px); }
/* primary = neutral ink (the new default brand CTA) */
.btn-primary { background: var(--ink); color: var(--cream); box-shadow: 0 8px 22px rgba(26,29,33,.20); }
.btn-primary:hover { background: var(--ink-3); transform: translateY(-2px); box-shadow: 0 12px 30px rgba(26,29,33,.28); }
/* hot = red, reserved for heated yoga + heat section CTAs */
.btn-hot { background: var(--hot); color: var(--white); box-shadow: 0 8px 22px rgba(214,81,46,.28); overflow: hidden; }
.btn-hot::after { content: ''; position: absolute; top: -20%; left: -80%; width: 50%; height: 140%; background: linear-gradient(100deg, transparent, rgba(255,255,255,.24), transparent); transform: skewX(-15deg); animation: btn-shine 4.5s ease-in-out infinite; pointer-events: none; }
.btn-hot:hover { background: var(--hot-2); transform: translateY(-2px); box-shadow: 0 12px 30px rgba(214,81,46,.38); }
/* pilates = slate blue, reserved for Pilates CTAs */
.btn-pilates { background: var(--pilates); color: var(--white); box-shadow: 0 8px 22px rgba(20,124,196,.28); overflow: hidden; }
.btn-pilates::after { content: ''; position: absolute; top: -20%; left: -80%; width: 50%; height: 140%; background: linear-gradient(100deg, transparent, rgba(255,255,255,.22), transparent); transform: skewX(-15deg); animation: btn-shine 4.5s ease-in-out infinite 2.25s; pointer-events: none; }
@keyframes btn-shine { 0%, 58%, 100% { left: -80%; } 72% { left: 135%; } }
.btn-pilates:hover { background: var(--pilates-2); transform: translateY(-2px); box-shadow: 0 12px 30px rgba(20,124,196,.38); }
.btn-ink { background: var(--ink); color: var(--cream); }
.btn-ink:hover { background: var(--ink-3); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--ink); border: 1.5px solid var(--line); }
.btn-ghost:hover { border-color: var(--ink); transform: translateY(-2px); }
.btn-white { background: var(--white); color: var(--ink); }
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(0,0,0,.18); }
.btn-outline-white { background: rgba(255,255,255,.08); color: var(--white); border: 1.5px solid rgba(255,255,255,.5); backdrop-filter: blur(4px); }
.btn-outline-white:hover { background: rgba(255,255,255,.18); border-color: var(--white); transform: translateY(-2px); }
.btn-lg { padding: 18px 36px; font-size: 16px; }

.section { padding: clamp(72px, 10vw, 128px) 0; }
.section-head { max-width: 740px; }
.section-head .eyebrow { margin-bottom: 16px; }
.section-head h2 { font-size: clamp(40px, 6vw, 80px); margin-bottom: 22px; }

/* reveal */
.js [data-reveal] { opacity: 0; transform: translateY(26px) scale(.97); transition: opacity .7s cubic-bezier(.16,1,.3,1), transform .7s cubic-bezier(.16,1,.3,1); }
.js [data-reveal].in { opacity: 1; transform: translateY(0) scale(1); }
/* failsafe state: show everything instantly, no paint or transition required
   (a backgrounded tab suspends rAF, transitions and IntersectionObserver) */
.js.reveal-force [data-reveal] { opacity: 1 !important; transform: none !important; transition: none !important; }
[data-reveal][data-delay="1"] { transition-delay: .08s; }
[data-reveal][data-delay="2"] { transition-delay: .16s; }
[data-reveal][data-delay="3"] { transition-delay: .24s; }

/* ============ HEADER ============ */
.header { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; }
.ann {
  background: #000; color: rgba(255,255,255,.88); text-align: center;
  font-size: 13.5px; font-weight: 500; letter-spacing: .02em;
  overflow: hidden; transition: max-height .4s ease, opacity .3s ease, padding .4s ease;
  max-height: 70px; padding: 12px 16px; line-height: 1.35;
}
.ann .ann-pil { color: var(--white); font-weight: 700; }
.ann .ann-yog { color: var(--white); font-weight: 700; }
.ann a { color: var(--white); font-weight: 700; text-decoration: none; border-bottom: 1px solid rgba(255,255,255,.5); display: inline-flex; align-items: center; min-height: 44px; padding: 0 2px; }
.ann a:hover { border-color: var(--white); }
.header.scrolled .ann { max-height: 0; opacity: 0; padding-top: 0; padding-bottom: 0; }

.nav { transition: background .35s ease, box-shadow .35s ease, border-color .35s ease; border-bottom: 1px solid transparent; background: linear-gradient(180deg, rgba(10,11,13,.5) 0%, rgba(10,11,13,.14) 65%, rgba(10,11,13,0) 100%); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 92px; }
.header.scrolled .nav { background: rgba(240,242,245,.92); backdrop-filter: blur(14px); box-shadow: 0 2px 24px rgba(26,29,33,.07); border-bottom-color: var(--line-2); }

.logo { display: inline-flex; align-items: center; text-decoration: none; }
.logo img { width: auto; height: 84px; }
.logo img.logo-light { display: block; filter: drop-shadow(0 1px 3px rgba(0,0,0,.85)) drop-shadow(0 2px 14px rgba(0,0,0,.55)); }
.logo img.logo-dark { display: none; }
.header.scrolled img.logo-light { display: none; }
.header.scrolled img.logo-dark { display: block; }
.mobile-menu .logo img { display: block; height: 68px; }
.footer .logo img { display: block; height: 88px; }

.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a { color: rgba(255,255,255,.92); text-decoration: none; font-size: 14.5px; font-weight: 500; transition: color .2s ease; position: relative; }
.nav-links a::after { content: ''; position: absolute; left: 0; bottom: -5px; width: 0; height: 2px; background: currentColor; transition: width .25s ease; }
.nav-links a:hover::after { width: 100%; }
.header.scrolled .nav-links a { color: var(--ink); }
.header.scrolled .nav-links a:hover { color: var(--clay); }

.nav-right { display: flex; align-items: center; gap: 14px; }
.nav-right .btn { padding: 11px 22px; font-size: 14px; }
.header.scrolled .nav-right .btn-outline-white { background: var(--clay); color: var(--white); border-color: var(--clay); }
.header.scrolled .nav-right .btn-outline-white:hover { background: var(--clay-2); }

.burger { display: none; flex-direction: column; justify-content: center; gap: 5px; background: none; border: 0; cursor: pointer; padding: 12px; min-width: 44px; min-height: 44px; touch-action: manipulation; }
.burger span { width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: background .3s ease, transform .3s ease, opacity .3s ease; }
.header.scrolled .burger span { background: var(--ink); }

/* mobile menu */
.mobile-menu {
  position: fixed; inset: 0; z-index: 1200; background: var(--cream);
  transform: translateX(100%); transition: transform .4s cubic-bezier(.16,1,.3,1);
  display: flex; flex-direction: column;
  padding: max(24px, env(safe-area-inset-top)) max(24px, env(safe-area-inset-right)) max(24px, env(safe-area-inset-bottom)) max(24px, env(safe-area-inset-left));
  overflow-y: auto; -webkit-overflow-scrolling: touch; overscroll-behavior: contain;
}
.mobile-menu.open { transform: none; }
.mobile-menu-top { display: flex; align-items: center; justify-content: space-between; min-height: 60px; }
.mobile-menu .logo { color: var(--ink); }
.mobile-close { background: none; border: 0; font-size: 32px; line-height: 1; color: var(--ink); cursor: pointer; padding: 8px 12px; min-width: 44px; min-height: 44px; touch-action: manipulation; }
.mobile-links { display: flex; flex-direction: column; gap: 4px; margin-top: 22px; }
.mobile-links a { font-family: var(--font-display); font-size: clamp(24px, 6vw, 30px); font-weight: 500; text-decoration: none; color: var(--ink); padding: 14px 0; border-bottom: 1px solid var(--line-2); min-height: 44px; display: flex; align-items: center; }
.mobile-links a:hover, .mobile-links a:active { color: var(--clay); }
.mobile-menu .btn { margin-top: 24px; }
.mobile-contact { margin-top: auto; padding-top: 24px; color: var(--ink-2); font-size: 14px; }
.mobile-contact a { color: var(--clay); font-weight: 600; text-decoration: none; display: inline-flex; align-items: center; min-height: 44px; padding: 6px 0; }

/* ============ HERO ============ */
.hero { position: relative; min-height: 100vh; min-height: 100svh; display: flex; align-items: flex-end; color: var(--white); overflow: hidden; }
/* full-bleed cover — photo fills the frame edge to edge, no side bands */
.hero-backdrop { display: none; }
.hero-bg { position: absolute; inset: 0; z-index: 1; background: url('hero-sunset.jpg') center 60%/cover no-repeat; background-image: image-set(url('hero-sunset.webp') type('image/webp'), url('hero-sunset.jpg') type('image/jpeg')); }
.hero-bg::after { content: ''; position: absolute; inset: 0; background:
  linear-gradient(100deg, rgba(9,11,15,.82) 0%, rgba(9,11,15,.40) 42%, transparent 66%),
  linear-gradient(180deg, rgba(9,11,15,.42) 0%, transparent 30%, rgba(9,11,15,.16) 56%, rgba(9,11,15,.88) 100%); }
.hero-inner { position: relative; z-index: 2; width: 100%; padding-top: calc(var(--header-h) + 24px); padding-bottom: clamp(48px, 8vh, 88px); }
.hero .eyebrow { color: rgba(255,255,255,.78); margin-bottom: 22px; }
.hero h1 { color: var(--white); max-width: 14ch; margin-bottom: 24px; text-shadow: 0 2px 30px rgba(0,0,0,.25); }
.hero h1 em { color: var(--cream); font-weight: 400; opacity: .82; }
.hero-sub { font-size: clamp(17px, 2vw, 21px); color: rgba(255,255,255,.92); max-width: 50ch; margin-bottom: 36px; line-height: 1.6; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.hero-rating { display: flex; flex-wrap: wrap; align-items: center; gap: 10px 18px; margin-top: 36px; padding-top: 26px; border-top: 1px solid rgba(255,255,255,.22); font-size: 14px; color: rgba(255,255,255,.9); }
.hero-rating b { color: var(--white); font-weight: 700; }
.hero-rating .trophy { font-size: 17px; line-height: 1; }
.hero-rating .hr-meta { font-size: 13px; color: rgba(255,255,255,.7); }
.hr-pill { display: inline-flex; align-items: center; min-height: 44px; gap: 10px; padding: 8px 14px 8px 12px; border-radius: 50px; background: rgba(255,255,255,.10); border: 1px solid rgba(255,255,255,.18); color: inherit; text-decoration: none; transition: background .2s ease, border-color .2s ease, transform .2s ease; backdrop-filter: blur(4px); }
.hr-pill:hover { background: rgba(255,255,255,.18); border-color: rgba(255,255,255,.32); transform: translateY(-1px); }
.hr-pill .hr-logo { display: inline-flex; align-items: center; line-height: 1; }
.hr-pill .logo-cp { font-size: 11.5px; letter-spacing: 1.2px; }
.hr-pill .logo-g { font-size: 15px; }
.hr-pill .logo-mb { font-size: 13px; }
.hr-pill .logo-mb .m { width: 13px; height: 13px; font-size: 10px; line-height: 13px; }
.hr-pill .hr-score { font-family: var(--font-body); font-size: 13px; font-weight: 700; color: var(--white); display: inline-flex; align-items: center; gap: 3px; padding-left: 9px; border-left: 1px solid rgba(255,255,255,.22); }
.hr-pill .hr-star { color: var(--sun); font-size: 11px; }
/* Best of Las Vegas pill — wordmark + 4 mini medals */
.hr-pill-bolv { padding: 5px 10px 5px 14px; gap: 12px; background: rgba(255,255,255,.13); border-color: rgba(255,255,255,.24); }
.hr-pill-bolv:hover { background: rgba(255,255,255,.20); border-color: rgba(255,255,255,.38); }
.logo-bolv { font-family: var(--font-display); font-weight: 600; font-size: 13.5px; letter-spacing: .8px; color: var(--white); line-height: 1; text-transform: uppercase; }
.logo-bolv i { font-family: var(--font-display); font-style: italic; font-weight: 400; text-transform: lowercase; font-size: 1.1em; padding: 0 1px; opacity: .82; letter-spacing: 0; }
.hr-medals { display: inline-flex; gap: 4px; padding-left: 10px; border-left: 1px solid rgba(255,255,255,.22); }
.hr-medal { width: 28px; height: 28px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-weight: 600; font-size: 10px; color: rgba(0,0,0,.82); line-height: 1; letter-spacing: -0.02em; box-shadow: 0 1px 3px rgba(0,0,0,.4), inset 0 1px 0 rgba(255,255,255,.45), inset 0 -1px 2px rgba(0,0,0,.18); }
.hr-medal.gold { background: radial-gradient(circle at 35% 25%, #FCEEA6 0%, #E8C547 35%, #B7902C 75%, #8A6818 100%); }
.hr-medal.silver { background: radial-gradient(circle at 35% 25%, #F5F6F7 0%, #C9CDD0 35%, #8E969B 75%, #5D6669 100%); }
.hr-medal.bronze { background: radial-gradient(circle at 35% 25%, #EFC9A0 0%, #C68D5C 35%, #8E5A2E 75%, #5D3A18 100%); color: rgba(255,255,255,.92); }
.stars { color: var(--sun); letter-spacing: 2px; }
.hero-rating .dot { width: 4px; height: 4px; border-radius: 50%; background: rgba(255,255,255,.45); }

/* floating heat orbs */
.hero-orb { position: absolute; border-radius: 50%; pointer-events: none; z-index: 1; }
.hero-orb-1 { width: 520px; height: 520px; background: radial-gradient(circle, rgba(217,130,74,.16) 0%, transparent 65%); bottom: 5%; right: 0; animation: orb-float 10s ease-in-out infinite; }
.hero-orb-2 { width: 300px; height: 300px; background: radial-gradient(circle, rgba(255,255,255,.04) 0%, transparent 65%); top: 20%; right: 16%; animation: orb-float 14s ease-in-out infinite; animation-delay: -5s; }
@keyframes orb-float { 0%, 100% { transform: translateY(0) scale(1); } 50% { transform: translateY(-32px) scale(1.06); } }

/* ============ TICKER ============ */
.ticker { background: var(--ink); color: var(--cream); padding: 18px 0; overflow: hidden; }
.ticker-track { display: flex; width: max-content; animation: scrollx var(--marquee-duration, 40s) linear infinite; }
.ticker-set { display: flex; align-items: center; flex: none; }
.ticker-set span { font-family: var(--font-body); font-size: 13.5px; font-weight: 600; padding: 0 22px; display: inline-flex; align-items: center; gap: 22px; white-space: nowrap; letter-spacing: 2.2px; text-transform: uppercase; }
.ticker-set span::after { content: '✦'; color: var(--ember); font-size: 9px; }
@keyframes scrollx { to { transform: translateX(calc(-100% / var(--marquee-sets, 2))); } }

/* ============ PHILOSOPHY ============ */
.philo { background: var(--cream); }
.philo-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(40px, 6vw, 96px); align-items: center; }
.philo-copy h2 { font-size: clamp(30px, 4.2vw, 52px); margin-bottom: 24px; }
.philo-copy p + p { margin-top: 18px; }
.philo-sign { margin-top: 30px; font-family: var(--font-display); font-style: italic; font-size: 19px; color: var(--clay); }
.philo-media { position: relative; }
.philo-media img { width: 100%; height: 580px; object-fit: cover; border-radius: 8px; box-shadow: var(--shadow); }
.philo-badge { position: absolute; bottom: 26px; left: -26px; background: var(--white); border-radius: 6px; padding: 18px 22px; box-shadow: var(--shadow); display: flex; align-items: center; gap: 14px; }
.philo-badge .num { font-family: var(--font-display); font-size: 34px; font-weight: 600; color: var(--clay); line-height: 1; }
.philo-badge .lbl { font-size: 13px; color: var(--ink-2); line-height: 1.35; }

.pillars { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: clamp(56px, 7vw, 88px); }
.pillar { background: var(--white); border: 1px solid var(--line-2); border-radius: 8px; padding: 30px 26px; transition: border-color .3s ease, box-shadow .3s ease, transform .3s ease; }
.pillar:hover { border-color: rgba(214,81,46,.28); box-shadow: 0 10px 36px rgba(214,81,46,.1); transform: translateY(-4px); }
.pillar .ic { width: 46px; height: 46px; border-radius: 12px; background: var(--cream-2); color: var(--clay); display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.pillar .ic svg { width: 24px; height: 24px; }
.pillar h3 { font-size: 20px; margin-bottom: 8px; }
.pillar p { font-size: 15px; color: var(--ink-2); }

/* ============ YOGA / PILATES — DUAL SECTIONS ============ */
.yoga { background: var(--cream); }
.pilates { background: var(--cream-2); }
.dual-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 84px); align-items: center; }
/* dual-hero: used as a full PAGE HERO on the 5 interior landing pages — must clear the fixed header (missing before; only had a mobile override) */
.dual-hero { padding-top: calc(var(--header-h) + 40px); padding-bottom: clamp(56px, 8vw, 96px); }
.dual-media img { width: 100%; height: clamp(480px, 64vw, 760px); object-fit: cover; border-radius: 8px; box-shadow: var(--shadow); }
.dual-copy .eyebrow { margin-bottom: 22px; font-size: 14px; letter-spacing: 3px; }
.dual-copy .eyebrow b { font-size: 2.6em; margin-right: 16px; vertical-align: -6px; }
.dual-copy h2 { font-size: clamp(40px, 6.4vw, 92px); margin-bottom: 24px; line-height: 1.0; letter-spacing: -0.03em; }
.dual-copy > p { font-size: clamp(16.5px, 1.5vw, 19.5px); color: var(--ink-2); line-height: 1.68; margin-bottom: 26px; max-width: 54ch; }
/* class menu — replaces the dual-list table */
.class-menu { display: grid; gap: 28px; margin: 8px 0 36px; }
.menu-group { padding-top: 18px; border-top: 2px solid var(--ink); }
.menu-group-head { display: flex; justify-content: space-between; align-items: baseline; gap: 16px; margin-bottom: 14px; }
.menu-group-head h4 { font-family: var(--font-body); font-size: 11.5px; font-weight: 700; letter-spacing: 2.2px; text-transform: uppercase; color: var(--ink); margin: 0; }
.menu-group-head .lvl { font-family: var(--font-body); font-size: 11px; font-weight: 700; letter-spacing: 1.6px; text-transform: uppercase; color: var(--clay); white-space: nowrap; }
.menu-items { list-style: none; margin: 0; padding: 0; }
.menu-items li { display: grid; grid-template-columns: 1fr auto; gap: 8px 18px; padding: 10px 0; border-bottom: 1px solid var(--line-2); align-items: baseline; }
.menu-items li:last-child { border-bottom: 0; }
.menu-items .name { font-family: var(--font-display); font-size: 19px; font-weight: 500; color: var(--ink); line-height: 1.18; letter-spacing: -0.01em; }
.menu-items .desc { grid-column: 1 / 2; font-family: var(--font-body); font-size: 14px; color: var(--ink-2); line-height: 1.45; margin-top: 2px; }
.menu-items .tag { grid-column: 2 / 3; grid-row: 1 / 3; align-self: center; font-family: var(--font-body); font-size: 11px; font-weight: 700; letter-spacing: 1.4px; text-transform: uppercase; color: var(--clay); white-space: nowrap; }

/* ============ CLASSES ============ */
.classes { background: var(--cream-2); }
.classes-head { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 40px; }
.filters { display: flex; flex-wrap: wrap; gap: 10px; }
.filter { background: var(--white); border: 1px solid var(--line); color: var(--ink-2); padding: 12px 20px; border-radius: 4px; font-family: var(--font-body); font-size: 14px; font-weight: 600; cursor: pointer; transition: all .2s ease; min-height: 44px; touch-action: manipulation; -webkit-tap-highlight-color: transparent; }
.filter:hover { border-color: var(--clay); color: var(--clay); }
.filter.active { background: var(--ink); color: var(--cream); border-color: var(--ink); }

.class-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.class-card { position: relative; border-radius: 8px; overflow: hidden; aspect-ratio: 3/4; color: var(--white); display: flex; flex-direction: column; justify-content: flex-end; padding: 24px; text-decoration: none; isolation: isolate; transition: transform .4s cubic-bezier(.16,1,.3,1); }
.class-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; transition: transform .7s cubic-bezier(.16,1,.3,1); }
.class-card::after { content: ''; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(20,14,9,.05) 0%, rgba(20,14,9,.20) 45%, rgba(20,14,9,.85) 100%); }
.class-card:hover { transform: translateY(-6px); }
.class-card:hover img { transform: scale(1.07); }
.class-tag { position: absolute; top: 16px; left: 16px; background: rgba(255,255,255,.18); backdrop-filter: blur(6px); border: 1px solid rgba(255,255,255,.3); color: var(--white); font-size: 11px; font-weight: 600; letter-spacing: .8px; text-transform: uppercase; padding: 6px 12px; border-radius: 4px; }
.class-tag.hot { background: rgba(214,81,46,.95); border-color: rgba(255,255,255,.32); color: var(--white); font-weight: 700; }
.class-card h2, .class-card h3 { color: var(--white); font-family: var(--font-display); font-weight: 500; font-size: 23px; line-height: 1.02; letter-spacing: -0.025em; margin-bottom: 6px; }
.class-card p { font-size: 13.5px; color: rgba(255,255,255,.85); line-height: 1.45; }
.class-card.span2 { grid-column: span 2; aspect-ratio: auto; }

.more-formats { margin-top: 28px; display: flex; flex-wrap: wrap; align-items: center; gap: 10px; }
.more-formats .lbl { font-size: 14px; font-weight: 600; color: var(--ink-2); margin-right: 4px; }
.chip { background: var(--white); border: 1px solid var(--line); border-radius: 4px; padding: 8px 16px; font-size: 13.5px; font-weight: 500; color: var(--ink); }
.chip-soon { background: rgba(214,81,46,.10); border-color: var(--clay); color: var(--clay-2); font-weight: 600; }

/* ============ PRIVATE 1:1 ============ */
.privates { background: var(--cream); border-top: 1px solid var(--line-2); border-bottom: 1px solid var(--line-2); }
.privates-head { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(28px, 5vw, 64px); align-items: center; margin-bottom: clamp(36px, 5vw, 56px); }
.privates-head h2 { font-size: clamp(34px, 4.6vw, 56px); margin-bottom: 14px; line-height: 1.04; }
.privates-head p { color: var(--ink-2); font-size: clamp(15.5px, 1.4vw, 17.5px); line-height: 1.62; max-width: 56ch; }
.privates-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
@media (max-width: 1040px) { .privates-grid { grid-template-columns: repeat(2, 1fr); } }
.priv { background: var(--white); border: 1px solid var(--line-2); border-radius: 8px; padding: clamp(26px, 3vw, 36px); display: flex; flex-direction: column; }
.priv-head { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; margin-bottom: 16px; }
.priv-name { font-family: var(--font-body); font-size: 11.5px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--ink); }
.priv-price { font-family: var(--font-display); font-size: clamp(34px, 3.6vw, 46px); font-weight: 500; color: var(--clay); line-height: 1; letter-spacing: -0.025em; }
.priv-desc { font-size: 15px; color: var(--ink-2); line-height: 1.55; margin-bottom: 22px; flex: 1; }
.priv .btn { width: 100%; margin-top: auto; }
.privates-foot { margin: 24px auto 0; max-width: 70ch; font-size: 13.5px; color: var(--ink-2); text-align: center; }
.privates-foot a { color: var(--clay); font-weight: 600; text-decoration: none; border-bottom: 1px solid rgba(214,81,46,.4); padding-bottom: 1px; }
.privates-foot a:hover { border-color: var(--clay); }

/* ============ HEAT FEATURE ============ */
.heat { position: relative; color: var(--white); overflow: hidden; }
.heat-bg { position: absolute; inset: 0; background: url('real/real-hot-class-wide.jpg') center 35%/cover no-repeat; background-image: image-set(url('real/real-hot-class-wide.webp') type('image/webp'), url('real/real-hot-class-wide.jpg') type('image/jpeg')); }
.heat-bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(100deg, rgba(10,11,13,.78) 0%, rgba(10,11,13,.50) 40%, rgba(214,81,46,.68) 100%); }
.heat-inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1.1fr .9fr; gap: 56px; align-items: center; }
.heat h2 { color: var(--white); font-size: clamp(32px, 4.6vw, 58px); margin-bottom: 22px; }
.heat p { color: rgba(255,255,255,.92); font-size: 18px; max-width: 52ch; }
.heat-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.heat-stat { background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2); border-radius: 6px; padding: 26px; backdrop-filter: blur(4px); }
.heat-stat .n { font-family: var(--font-display); font-size: clamp(34px, 4vw, 48px); font-weight: 600; line-height: 1; color: var(--white); }
.heat-stat .t { margin-top: 10px; font-size: 14px; color: rgba(255,255,255,.82); }

/* ============ MEMBERSHIPS ============ */
.members { background: var(--cream); }
.plan-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 48px; }
.plan { background: var(--white); border: 1px solid var(--line); border-radius: 8px; padding: 38px; position: relative; transition: transform .35s ease, box-shadow .35s ease; display: flex; flex-direction: column; }
.plan:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
/* feature highlight follows the card's color */
.plan.feature { border-width: 2px; animation: feature-glow 5s ease-in-out infinite; }
@keyframes feature-glow { 0%, 100% { box-shadow: 0 4px 20px rgba(20,124,196,.08); } 50% { box-shadow: 0 22px 60px rgba(20,124,196,.22), 0 0 0 2px rgba(20,124,196,.12); } }
.plan-pilates.feature { border-color: var(--pilates); box-shadow: 0 18px 50px rgba(20,124,196,.18); }
.plan-yoga.feature { border-color: var(--hot); box-shadow: 0 18px 50px rgba(214,81,46,.16); }
.plan-flag { position: absolute; top: 20px; right: 20px; color: var(--white); font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; padding: 6px 13px; border-radius: 4px; background: var(--ink); }
.plan-pilates .plan-flag { background: var(--pilates); }
.plan-yoga .plan-flag { background: var(--hot); }
.plan h3 { font-size: 25px; margin-bottom: 6px; }
.plan-pilates h3 { color: var(--pilates); }
.plan-yoga h3 { color: var(--hot); }
.plan .sub { color: var(--ink-2); font-size: 14.5px; margin-bottom: 24px; }
.plan .price { display: flex; align-items: baseline; gap: 8px; margin-bottom: 4px; }
.plan .price .amt { font-family: var(--font-display); font-size: 56px; font-weight: 600; color: var(--ink); line-height: 1; }
.plan .price .per { color: var(--ink-2); font-size: 15px; font-weight: 500; }
.plan .renew { font-size: 13.5px; color: var(--ink-2); margin-bottom: 26px; }
.plan ul { list-style: none; margin-bottom: 30px; display: flex; flex-direction: column; gap: 13px; }
.plan li { display: flex; gap: 11px; font-size: 15px; color: var(--ink); }
.plan li svg { width: 19px; height: 19px; flex: none; color: var(--ink); margin-top: 2px; }
.plan-pilates li svg { color: var(--pilates); }
.plan-yoga li svg { color: var(--hot); }
.plan .btn { width: 100%; margin-top: auto; }
.plan-flag + h3 { padding-right: 128px; }
.members-note { text-align: center; margin: 30px auto 0; max-width: 72ch; font-size: 15px; color: var(--ink-2); }
.members-note a { color: var(--clay); font-weight: 600; text-decoration: none; }
.plans-more { margin-top: 24px; background: var(--white); border: 1px solid var(--line); border-radius: 8px; padding: clamp(28px,4vw,40px); }
.plans-more-title { font-size: clamp(22px,3vw,28px); margin-bottom: 6px; }
.plans-more-sub { color: var(--ink-2); font-size: 15px; margin-bottom: 26px; }
.plans-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(28px,4vw,44px); }
.plan-list h4 { font-family: var(--font-body); font-size: 12.5px; font-weight: 700; letter-spacing: 1.4px; text-transform: uppercase; color: var(--ink); margin-bottom: 14px; }
.plan-list-pilates h4 { color: var(--pilates-ink); }
.plan-list-yoga h4 { color: var(--hot-ink); }
.plan-list ul { list-style: none; }
.plan-list li { border-bottom: 1px solid var(--line-2); font-size: 15px; }
.plan-list li a { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; padding: 11px 10px; margin: 0 -10px; border-radius: 4px; color: var(--ink-2); text-decoration: none; transition: background .2s ease, color .2s ease; }
.plan-list li a:hover, .plan-list li a:focus-visible { background: var(--cream); color: var(--ink); outline: none; }
.plan-list li .label { display: inline-flex; align-items: baseline; gap: 8px; flex: 1; }
.plan-list li .label small { font-size: 11.5px; letter-spacing: .3px; color: var(--ink-2); text-transform: uppercase; font-weight: 600; }
.plan-list li .note { display: block; font-size: 11.5px; color: var(--ink-2); margin-top: 2px; text-transform: none; letter-spacing: 0; font-weight: 500; }
.plan-list li .price-cell { display: inline-flex; align-items: baseline; gap: 6px; white-space: nowrap; }
.plan-list li .price-cell b { color: var(--ink); font-weight: 600; }
.plan-list li .price-cell::after { content: '→'; font-size: 14px; opacity: 0; transform: translateX(-4px); transition: opacity .2s ease, transform .2s ease; color: var(--ink-2); }
.plan-list li a:hover .price-cell::after, .plan-list li a:focus-visible .price-cell::after { opacity: 1; transform: translateX(0); }
.plan-list-pilates li a:hover .price-cell::after { color: var(--pilates); }
.plan-list-yoga li a:hover .price-cell::after { color: var(--hot); }
.plan-list-priv li a:hover .price-cell::after { color: var(--ink); }
.plan-list .btn { margin-top: 18px; padding: 11px 22px; font-size: 14px; }
.plans-more-hint { display: block; font-size: 12.5px; color: var(--ink-2); margin: 4px 0 22px; font-style: italic; }
.member-manage { text-align: center; margin-top: 28px; }
.member-manage .btn { padding: 12px 22px; font-size: 14px; }
.plan-list-note { font-size: 13px; color: var(--ink-2); margin-top: 14px; line-height: 1.5; }
.plans-cols .divider { display: none; }

/* ============ TEACHER TRAINING ============ */
.training { background: var(--ink); color: var(--cream); }
.training-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(36px, 5vw, 72px); align-items: center; }
.training-media img { width: 100%; height: 560px; object-fit: cover; border-radius: 8px; }
.training .eyebrow { color: rgba(234,237,242,.7); }
.training h2 { color: var(--white); font-size: clamp(30px, 4.4vw, 54px); margin: 16px 0 20px; }
.training p { color: rgba(234,237,242,.78); font-size: 17px; max-width: 52ch; }
.training .section-head p { margin-left: auto; margin-right: auto; }
/* subgrid: parent defines 6 rows (label, title, desc, stat-block, creds, meta) — every card's rows align horizontally */
.training-progs { display: grid; grid-template-columns: repeat(3, 1fr); grid-template-rows: auto auto auto auto 1fr auto; column-gap: 24px; row-gap: 0; }
.training-prog { display: grid; grid-template-rows: subgrid; grid-row: span 6; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.14); border-radius: 10px; padding: clamp(28px, 4vw, 36px); row-gap: 14px; position: relative; }
.training-prog h3 { color: var(--white); font-size: clamp(22px, 2.6vw, 26px); margin: 0; align-self: end; line-height: 1.1; }
.training-prog > p { color: rgba(234,237,242,.78); font-size: 15px; max-width: none; margin: 0; line-height: 1.55; }
/* prog-label: bright, solid background per category for visibility on dark bg */
.prog-label { display: inline-flex; align-items: center; gap: 6px; background: rgba(255,255,255,.18); color: var(--white); font-family: var(--font-body); font-size: 11px; font-weight: 800; letter-spacing: 1.8px; text-transform: uppercase; padding: 6px 14px; border-radius: 100px; margin: 0; justify-self: start; align-self: start; line-height: 1; }
[data-cat="pilates"] .prog-label { background: #4FA3DD; color: var(--ink); }
[data-cat="yoga"] .prog-label { background: #E8845C; color: var(--ink); }
[data-cat="cadillac"] .prog-label { background: linear-gradient(90deg, #4FA3DD 0%, #C9DDE8 100%); color: var(--ink); }
[data-cat="cadillac"] .prog-label::before { content: '✦'; font-size: 12px; }
/* unified stat block — replaces the inconsistent tier rows */
.stat-block { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.14); border-radius: 8px; padding: 22px 24px; margin: 0; align-self: stretch; display: flex; flex-direction: column; justify-content: center; min-height: 140px; }
.stat-primary { font-family: var(--font-display); font-size: clamp(30px, 3.4vw, 40px); font-weight: 600; color: var(--white); line-height: 1; letter-spacing: -0.025em; }
.stat-unit { font-family: var(--font-display); font-size: 17px; font-weight: 500; color: rgba(234,237,242,.7); margin-left: 4px; }
.stat-label { font-family: var(--font-body); font-size: 12px; font-weight: 700; letter-spacing: 1.6px; text-transform: uppercase; color: var(--cream); margin-top: 10px; }
.stat-sub { font-size: 13px; color: rgba(234,237,242,.7); margin-top: 8px; line-height: 1.45; }
/* Yoga's 2-tier split inside the same stat-block */
.stat-split { display: grid; grid-template-columns: 1fr 1fr; gap: 0; align-items: center; }
.stat-split > div { padding: 0 14px; text-align: center; }
.stat-split > div:first-child { border-right: 1px solid rgba(255,255,255,.16); }
.stat-split .h { font-family: var(--font-body); font-size: 11px; font-weight: 700; letter-spacing: 1.4px; text-transform: uppercase; color: rgba(255,255,255,.75); margin-bottom: 6px; }
.stat-split .p { font-family: var(--font-display); font-size: 28px; font-weight: 600; color: #E8845C; line-height: 1; letter-spacing: -0.02em; }
.stat-split .d { font-size: 11.5px; color: rgba(234,237,242,.65); margin-top: 6px; line-height: 1.35; }
/* per-category stat color */
[data-cat="pilates"] .stat-primary, [data-cat="cadillac"] .stat-primary { color: #4FA3DD; }
[data-cat="cadillac"] .stat-primary { font-size: clamp(24px, 2.8vw, 32px); }
/* credentials row (NASM/AFAA, Yoga Alliance, etc.) */
.creds-row { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; margin: 0; align-self: start; min-height: 50px; padding-top: 4px; }
.cred { background: var(--white); border-radius: 6px; padding: 6px 12px; text-align: center; display: inline-flex; flex-direction: column; align-items: center; gap: 1px; line-height: 1; }
.cred-logo { font-family: var(--font-body); font-weight: 800; font-size: 16px; letter-spacing: -.02em; line-height: 1; }
.cred-nasm .cred-logo { color: #1B3D70; }
.cred-afaa .cred-logo { color: #1B7BC9; }
.cred-ya .cred-logo { color: #54707A; font-size: 13px; letter-spacing: .2px; }
.cred-label { font-family: var(--font-body); font-size: 8px; font-weight: 700; letter-spacing: .8px; text-transform: uppercase; color: rgba(0,0,0,.7); line-height: 1; }
.creds-note { font-size: 13px; color: rgba(234,237,242,.7); }
.creds-note a { color: #4FA3DD; text-decoration: none; display: inline-flex; align-items: center; min-height: 44px; border-bottom: 1px solid rgba(79,163,221,.4); padding-bottom: 1px; transition: border-color .2s ease; font-weight: 600; }
.creds-note a:hover { border-color: #4FA3DD; }
/* meta footer — fixed for alignment */
.training-meta { display: flex; flex-direction: column; gap: 8px; margin: 0; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.12); font-size: 13.5px; color: rgba(234,237,242,.72); align-self: start; }
.training-meta span { display: flex; align-items: center; gap: 8px; line-height: 1.4; }
.training-meta b { color: var(--cream); font-weight: 600; }
/* Cadillac card — visually distinct "new / coming soon" */
.training-prog[data-cat="cadillac"] { background: linear-gradient(160deg, rgba(79,163,221,.10) 0%, rgba(79,163,221,.04) 60%, rgba(255,255,255,.04) 100%); border-color: rgba(79,163,221,.40); box-shadow: 0 0 0 1px rgba(79,163,221,.10), 0 20px 50px -20px rgba(79,163,221,.18); }
.training-prog[data-cat="cadillac"] .stat-block { background: rgba(79,163,221,.12); border-color: rgba(79,163,221,.32); }
.training-cta { text-align: center; margin-top: 40px; }

/* ============ INSTRUCTORS ============ */
.team { background: var(--cream-2); }
.lead-teacher { display: grid; grid-template-columns: auto 1fr; gap: 28px; align-items: center; background: var(--white); border: 1px solid var(--line); border-radius: 8px; padding: 34px; margin-bottom: 32px; }
.lead-teacher .mono { width: 120px; height: 120px; border-radius: 50%; background: var(--heat); color: var(--white); display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 42px; font-weight: 600; flex: none; }
.lead-teacher h3 { font-size: 27px; }
.lead-teacher .role { color: var(--clay); font-weight: 600; font-size: 14px; letter-spacing: .5px; text-transform: uppercase; margin: 4px 0 12px; }
.lead-teacher p { color: var(--ink-2); font-size: 15.5px; max-width: 68ch; }
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.teacher { background: var(--white); border: 1px solid var(--line-2); border-radius: 8px; padding: 26px 18px; text-align: center; transition: transform .3s ease, box-shadow .3s ease; }
.teacher:hover { transform: translateY(-5px); box-shadow: var(--shadow-sm); }
.teacher .mono { width: 66px; height: 66px; border-radius: 50%; margin: 0 auto 14px; display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 24px; font-weight: 600; color: var(--white); }
.teacher .photo { width: 66px; height: 66px; border-radius: 50%; margin: 0 auto 14px; object-fit: cover; object-position: center top; display: block; filter: grayscale(1); transition: filter .45s ease; }
.teacher:hover .photo { filter: grayscale(0); }
.lead-teacher .photo { width: 120px; height: 120px; border-radius: 50%; object-fit: cover; object-position: center top; flex: none; filter: grayscale(1); transition: filter .45s ease; }
.lead-teacher:hover .photo { filter: grayscale(0); }
.teacher h4 { font-size: 17px; }
.teacher span { font-size: 12.5px; color: var(--ink-2); }

/* ============ LOCATIONS ============ */
.locs { background: var(--cream); }
.loc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 48px; }
.loc { border-radius: 8px; overflow: hidden; border: 1px solid var(--line); background: var(--white); display: flex; flex-direction: column; }
.loc-img { height: 220px; position: relative; }
.loc-img img { width: 100%; height: 100%; object-fit: cover; }
.loc-flag { position: absolute; top: 16px; left: 16px; background: var(--white); color: var(--ink); font-size: 12px; font-weight: 700; letter-spacing: .5px; padding: 7px 14px; border-radius: 4px; }
.loc-body { padding: 30px; flex: 1; display: flex; flex-direction: column; }
.loc-body h3 { font-size: 24px; margin-bottom: 6px; }
.loc-body .offer { font-size: 13px; font-weight: 600; letter-spacing: .5px; text-transform: uppercase; color: var(--ink); margin-bottom: 16px; }
.loc-pilates .loc-body .offer { color: var(--pilates-ink); }
.loc-pilates .loc-flag { background: var(--pilates); color: var(--white); }
.loc-pilates .loc-offerings li::before { background: var(--pilates); }
.loc-body address { font-style: normal; color: var(--ink-2); font-size: 15.5px; line-height: 1.7; margin-bottom: 22px; }
.loc-offerings { list-style: none; margin: 0 0 22px; padding: 0; display: flex; flex-direction: column; gap: 9px; font-size: 14.5px; color: var(--ink); line-height: 1.5; }
.loc-offerings li { padding-left: 22px; position: relative; }
.loc-offerings li::before { content: ''; position: absolute; left: 0; top: 10px; width: 12px; height: 2px; background: var(--clay); border-radius: 2px; }
.loc-offerings li b { color: var(--clay); font-weight: 700; }
.loc-body .loc-actions { margin-top: auto; display: flex; flex-wrap: wrap; gap: 10px; }
.loc-body .btn { padding: 12px 22px; font-size: 14px; }

/* ============ GALLERY — INSIDE THE STUDIOS ============ */
.gallery { background: var(--cream-2); border-top: 1px solid var(--line-2); overflow: hidden; }
.gallery-head { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 20px; margin-bottom: 36px; }
.gallery-head h2 { font-size: clamp(32px, 4.6vw, 56px); margin-bottom: 12px; }
.gallery-head p { color: var(--ink-2); font-size: clamp(15.5px, 1.4vw, 17.5px); max-width: 56ch; }
.gallery-nav { display: flex; gap: 10px; flex: none; }
.gallery-btn { width: 48px; height: 48px; border-radius: 50%; border: 1.5px solid var(--line); background: var(--white); color: var(--ink); cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background .2s ease, border-color .2s ease, transform .2s ease, opacity .2s ease; touch-action: manipulation; -webkit-tap-highlight-color: transparent; }
.gallery-btn:hover { background: var(--ink); color: var(--cream); border-color: var(--ink); transform: translateY(-2px); }
.gallery-btn[disabled] { opacity: .35; pointer-events: none; }
.gallery-btn svg { width: 20px; height: 20px; }
.gallery-track { display: flex; gap: 16px; overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth; padding: 4px 4px 18px; margin: 0 -4px; scrollbar-width: none; cursor: grab; }
.gallery-track::-webkit-scrollbar { display: none; }
.gallery-track.dragging { cursor: grabbing; scroll-snap-type: none; scroll-behavior: auto; }
.gal { position: relative; flex: 0 0 auto; width: clamp(240px, 28vw, 360px); border-radius: 8px; overflow: hidden; scroll-snap-align: start; border: 0; padding: 0; background: var(--sand); cursor: pointer; isolation: isolate; }
.gal.wide { width: clamp(320px, 40vw, 520px); }
.gal img { width: 100%; height: clamp(320px, 34vw, 440px); object-fit: cover; display: block; transition: transform .6s cubic-bezier(.16,1,.3,1); }
.gal:hover img, .gal:focus-visible img { transform: scale(1.05); }
.gal::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(10,11,13,.62) 100%); pointer-events: none; }
.gal figcaption { position: absolute; left: 16px; right: 16px; bottom: 13px; z-index: 1; color: var(--white); font-family: var(--font-body); font-size: 12px; font-weight: 600; letter-spacing: 1.6px; text-transform: uppercase; text-align: left; text-shadow: 0 1px 8px rgba(0,0,0,.5); }
.gallery-foot { margin-top: 6px; font-size: 13px; color: var(--ink-2); }
/* video reel inside the gallery */
.gal-video { position: relative; background: #000; }
.gal-video .play {
  position: absolute; inset: 0; z-index: 2; display: flex; align-items: center; justify-content: center;
  background: none; border: 0; cursor: pointer; color: #fff; padding: 0;
  transition: opacity .3s ease; -webkit-tap-highlight-color: transparent;
}
.gal-video .play span {
  width: 68px; height: 68px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  background: rgba(10,11,13,.52); border: 1.5px solid rgba(255,255,255,.72); backdrop-filter: blur(6px);
  transition: transform .25s ease, background .25s ease;
}
.gal-video .play:hover span { transform: scale(1.08); background: rgba(10,11,13,.7); }
.gal-video .play svg { width: 24px; height: 24px; margin-left: 3px; }
.gal-video .vlabel {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  font-family: var(--font-body); font-size: 10.5px; font-weight: 700; letter-spacing: 1.4px; text-transform: uppercase;
  color: #fff; background: rgba(214,81,46,.92); padding: 5px 10px; border-radius: 3px;
}
.gal-video.playing .play { opacity: 0; pointer-events: none; }
.gal-video.playing .vlabel { background: rgba(10,11,13,.6); }

/* privates: teacher photo alongside the intro */
.privates-media img { width: 100%; height: clamp(260px, 30vw, 400px); object-fit: cover; border-radius: 8px; box-shadow: var(--shadow); }

/* lightbox */
.lightbox { border: 0; padding: 0; background: transparent; max-width: min(94vw, 1200px); max-height: 92vh; margin: auto; outline: none; }
.lightbox::backdrop { background: rgba(10,11,13,.88); backdrop-filter: blur(6px); }
.lightbox img { max-width: min(94vw, 1200px); max-height: 84vh; width: auto; height: auto; display: block; border-radius: 8px; box-shadow: 0 30px 90px rgba(0,0,0,.5); }
.lightbox-cap { color: rgba(255,255,255,.85); font-family: var(--font-body); font-size: 13px; letter-spacing: 1.4px; text-transform: uppercase; text-align: center; margin-top: 14px; }
.lightbox-close { position: fixed; top: 18px; right: 18px; width: 48px; height: 48px; border-radius: 50%; border: 1.5px solid rgba(255,255,255,.4); background: rgba(255,255,255,.08); color: #fff; font-size: 26px; line-height: 1; cursor: pointer; backdrop-filter: blur(4px); transition: background .2s ease; touch-action: manipulation; }
.lightbox-close:hover { background: rgba(255,255,255,.22); }

/* ============ REVIEWS ============ */
.reviews { background: var(--ink); color: var(--cream); }
/* honors — Best of LV (with medals) + First in town */
.honors { display: grid; grid-template-columns: 1.4fr 1fr; gap: 16px; max-width: 920px; margin: 0 auto 56px; }
.honor { display: flex; align-items: center; gap: 20px; padding: 22px 26px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.14); border-radius: 10px; color: inherit; text-decoration: none; transition: background .25s ease, border-color .25s ease, transform .25s ease; }
a.honor:hover { background: rgba(255,255,255,.10); border-color: rgba(255,255,255,.28); transform: translateY(-2px); }
.honor-ic { font-size: 30px; line-height: 1; flex: none; }
.honor-title { font-family: var(--font-display); font-size: 21px; font-weight: 500; color: var(--white); line-height: 1.1; letter-spacing: -0.01em; display: flex; align-items: center; gap: 10px; }
.honor-arrow { display: inline-block; opacity: .55; font-size: 16px; transition: transform .2s ease, opacity .2s ease; }
a.honor:hover .honor-arrow { transform: translateX(3px); opacity: 1; }
.honor-sub { font-size: 13px; color: rgba(234,237,242,.7); margin-top: 4px; line-height: 1.4; }
.honor-bolv-logo { font-family: var(--font-display); font-weight: 600; font-size: 15px; letter-spacing: 1px; color: var(--white); line-height: 1; text-transform: uppercase; padding: 8px 0; }
.honor-bolv-logo i { font-family: var(--font-display); font-style: italic; font-weight: 400; text-transform: lowercase; font-size: 1.05em; padding: 0 2px; opacity: .85; }
.honor-medals { display: flex; gap: 8px; flex: none; }
.medal { width: 54px; height: 54px; border-radius: 50%; display: flex; flex-direction: column; align-items: center; justify-content: center; font-family: var(--font-display); font-weight: 600; font-size: 13px; color: rgba(0,0,0,.78); position: relative; box-shadow: 0 2px 6px rgba(0,0,0,.45), inset 0 1px 0 rgba(255,255,255,.45), inset 0 -2px 4px rgba(0,0,0,.18); line-height: 1; letter-spacing: -0.02em; }
.medal.gold { background: radial-gradient(circle at 35% 25%, #FCEEA6 0%, #E8C547 35%, #B7902C 75%, #8A6818 100%); }
.medal.silver { background: radial-gradient(circle at 35% 25%, #F5F6F7 0%, #C9CDD0 35%, #8E969B 75%, #5D6669 100%); }
.medal.bronze { background: radial-gradient(circle at 35% 25%, #EFC9A0 0%, #C68D5C 35%, #8E5A2E 75%, #5D3A18 100%); color: rgba(255,255,255,.92); }
/* ratings: 3 platform cards with logos + links */
.ratings { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-bottom: 56px; }
.rating { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 28px 18px; border: 1px solid rgba(255,255,255,.12); border-radius: 8px; background: rgba(255,255,255,.04); color: inherit; text-decoration: none; transition: background .25s ease, border-color .25s ease, transform .25s ease; }
a.rating:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.26); transform: translateY(-3px); }
.rating-logo { height: 26px; display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.rating .stars { font-size: 15px; color: var(--sun); }
.rating .score { font-family: var(--font-display); font-size: 40px; font-weight: 600; color: var(--white); line-height: 1; margin: 8px 0 4px; }
.rating .src { font-size: 13px; color: rgba(234,237,242,.6); }
/* brand wordmarks */
.logo-cp { font-family: 'Inter', sans-serif; font-weight: 700; font-size: 17px; letter-spacing: 1.5px; color: #ECEEF5; }
.logo-mb { display: inline-flex; align-items: baseline; gap: 5px; font-family: 'Inter', sans-serif; font-weight: 800; font-size: 18px; color: #ECEEF5; letter-spacing: -0.02em; }
.logo-mb .m { display: inline-block; width: 18px; height: 18px; border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%; background: #ECEEF5; color: var(--ink); font-size: 14px; line-height: 18px; text-align: center; font-weight: 900; }
.logo-g { font-family: 'Arial', sans-serif; font-weight: 500; font-size: 22px; letter-spacing: -0.02em; line-height: 1; }
.logo-g .b { color: #4285F4; }
.logo-g .r { color: #EA4335; }
.logo-g .y { color: #FBBC05; }
.logo-g .gr { color: #34A853; }
.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.quote { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); border-radius: 8px; padding: 30px; }
.quote .stars { font-size: 15px; margin-bottom: 16px; }
.quote p { font-size: 16px; color: var(--cream); line-height: 1.6; margin-bottom: 18px; font-family: var(--font-display); font-style: italic; }
.quote .who { font-size: 13.5px; color: rgba(234,237,242,.7); font-weight: 600; }

/* ============ FAQ ============ */
.faq { background: var(--cream-2); }
.faq-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(36px, 5vw, 72px); align-items: start; }
.faq-list { display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q { width: 100%; background: none; border: 0; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 24px 0; font-family: var(--font-display); font-size: clamp(18px, 2.2vw, 22px); font-weight: 500; color: var(--ink); text-align: left; touch-action: manipulation; -webkit-tap-highlight-color: transparent; min-height: 60px; }
.faq-q .pm { flex: none; width: 26px; height: 26px; position: relative; }
.faq-q .pm::before, .faq-q .pm::after { content: ''; position: absolute; background: var(--clay); border-radius: 2px; transition: transform .3s ease, opacity .3s ease; }
.faq-q .pm::before { top: 12px; left: 4px; right: 4px; height: 2px; }
.faq-q .pm::after { left: 12px; top: 4px; bottom: 4px; width: 2px; }
.faq-item.open .pm::after { transform: scaleY(0); opacity: 0; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-a p { padding: 0 0 24px; color: var(--ink-2); font-size: 15.5px; max-width: 62ch; }
.faq-aside h2 { font-size: clamp(30px, 4vw, 46px); margin-bottom: 16px; }
.faq-aside p { color: var(--ink-2); margin-bottom: 24px; }

/* ============ FINAL CTA ============ */
.final { position: relative; color: var(--white); text-align: center; overflow: hidden; }
.final-bg { position: absolute; inset: 0; background: url('real/sunset-namaste.jpg') center 40%/cover no-repeat; background-image: image-set(url('real/sunset-namaste.webp') type('image/webp'), url('real/sunset-namaste.jpg') type('image/jpeg')); }
.final-bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10,11,13,.78), rgba(214,81,46,.72)); }
.final-inner { position: relative; z-index: 2; max-width: 760px; margin: 0 auto; padding: clamp(80px, 12vw, 150px) 24px; }
.final h2 { color: var(--white); font-size: clamp(36px, 6vw, 76px); margin-bottom: 22px; }
.final p { font-size: clamp(17px, 2vw, 21px); color: rgba(255,255,255,.9); margin-bottom: 36px; }
.final-cta { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

/* ============ FOOTER ============ */
.footer { background: var(--black); color: rgba(255,255,255,.65); padding: 72px 0 32px; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer .logo { color: var(--cream); margin-bottom: 18px; }
.footer-about p { font-size: 14.5px; line-height: 1.65; max-width: 34ch; }
.footer-social { display: flex; gap: 12px; margin-top: 22px; }
.footer-social a { width: 44px; height: 44px; border-radius: 50%; border: 1px solid rgba(255,255,255,.18); display: flex; align-items: center; justify-content: center; color: var(--cream); transition: background .25s ease, border-color .25s ease, transform .25s ease; -webkit-tap-highlight-color: transparent; touch-action: manipulation; }
.footer-social a:hover { background: var(--clay); border-color: var(--clay); transform: translateY(-3px); }
.footer-social svg { width: 18px; height: 18px; }
.footer-col h3, .footer-col h4 { font-family: var(--font-body); font-size: 13px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--cream); margin-bottom: 18px; }
.footer-col a, .footer-col p { display: block; color: rgba(234,237,242,.72); text-decoration: none; font-size: 14.5px; line-height: 1.55; margin-bottom: 11px; transition: color .2s ease; word-break: break-word; overflow-wrap: anywhere; }
.footer-col a { display: flex; align-items: center; min-height: 44px; padding: 4px 0; }
.footer-col a:hover { color: var(--ember); }
.footer-bottom { display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; padding-top: 28px; font-size: 13px; color: rgba(234,237,242,.5); }
.footer-bottom a { color: rgba(234,237,242,.5); text-decoration: none; }
.footer-bottom a:hover { color: var(--cream); }

/* ============ STICKY MOBILE CTA ============ */
.sticky-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 900;
  background: rgba(234,237,242,.96); backdrop-filter: blur(12px);
  border-top: 1px solid var(--line);
  padding: 10px max(12px, env(safe-area-inset-right)) max(10px, env(safe-area-inset-bottom)) max(12px, env(safe-area-inset-left));
  display: none; box-shadow: 0 -6px 24px rgba(42,33,27,.1);
  gap: 8px;
}
.sticky-cta .btn { flex: 1; padding: 13px 14px; font-size: 14px; }
.sticky-cta.show { display: flex; }
body.has-sticky { padding-bottom: 76px; padding-bottom: calc(76px + env(safe-area-inset-bottom)); }

/* ============ RESPONSIVE ============ */
@media (max-width: 1040px) {
  .class-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(3, 1fr); }
  .ratings { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 880px) {
  .nav-links { display: none; }
  .burger { display: flex; }
  .nav-right .btn-outline-white { display: none; }
  .philo-grid, .heat-inner, .training-grid, .training-progs, .faq-grid, .dual-grid, .privates-head { grid-template-columns: 1fr; }
  .privates-grid { grid-template-columns: 1fr; }
  /* training cards: drop subgrid on mobile so each card lays out normally */
  .training-progs { grid-template-rows: none; row-gap: 24px; }
  .training-prog { display: flex; flex-direction: column; grid-row: auto; gap: 0; }
  .training-prog h3 { margin-bottom: 10px; align-self: auto; }
  .training-prog > p { margin-bottom: 22px; }
  .prog-label { margin-bottom: 14px; }
  .stat-block { margin-bottom: 18px; }
  .creds-row { margin-bottom: 22px; min-height: 0; }
  .training-meta { margin-top: auto; align-self: auto; }
  .pilates .dual-copy { order: 2; }
  .pilates .dual-media { order: 1; }
  .plans-cols { grid-template-columns: 1fr; }
  .heat-inner { gap: 36px; }
  .training-media { order: -1; }
  .training-media img { height: 360px; }
  .philo-media img { height: 460px; }
  .philo-badge { left: 0; }
  .plan-grid, .loc-grid, .quotes { grid-template-columns: 1fr; }
  .pillars { grid-template-columns: 1fr; }
  .quotes .quote:last-child { display: none; }
}
/* tablet 701-880: use the width instead of collapsing everything to one column */
/* below 900 the flag sits above the title instead of squeezing it */
@media (max-width: 900px) {
  .plan-flag { position: static; display: inline-block; margin-bottom: 12px; }
  .plan-flag + h3 { padding-right: 0; }
}
/* landing-page heroes: headline leads on mobile, image follows */
@media (max-width: 880px) {
  .dual-hero .dual-copy { order: 1 !important; }
  .dual-hero .dual-media { order: 2 !important; }
  .dual-hero { padding-top: calc(var(--header-h) + 16px); }
  .dual-hero .dual-media img { height: clamp(320px, 62vw, 460px); }
}

@media (max-width: 880px) and (min-width: 701px) {
  .plan-grid, .loc-grid, .privates-head { grid-template-columns: 1fr 1fr; }
  .privates-grid { grid-template-columns: repeat(2, 1fr); }
  .plans-cols { grid-template-columns: 1fr 1fr; }
  .plan-list-priv { grid-column: 1 / -1; }
  .training-progs { grid-template-columns: 1fr 1fr; }
  .training-prog:last-child { grid-column: 1 / -1; }
  .quotes { grid-template-columns: 1fr 1fr; }
  .quotes .quote:last-child { display: none; }
}
@media (max-width: 620px) {
  .container { padding-left: 20px; padding-right: 20px; }
  .ann { font-size: 12px; padding: 10px 14px; }
  /* portrait: fill the tall screen with cover (contain would letterbox heavily); hide blurred backdrop */
  .hero-bg { background: url('hero-sunset-mobile.jpg') center top/cover no-repeat; background-image: image-set(url('hero-sunset-mobile.webp') type('image/webp'), url('hero-sunset-mobile.jpg') type('image/jpeg')); }
  .hero-backdrop { display: none; }
  .final-bg { background-image: url('real/sunset-namaste-mobile.jpg'); background-image: image-set(url('real/sunset-namaste-mobile.webp') type('image/webp'), url('real/sunset-namaste-mobile.jpg') type('image/jpeg')); }
  .class-grid { grid-template-columns: 1fr; }
  .class-card { aspect-ratio: 16/11; }
  .class-card.span2 { grid-column: span 1; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .ratings { grid-template-columns: 1fr 1fr; }
  .heat-stats { grid-template-columns: 1fr 1fr; }
  .training-tiers { grid-template-columns: 1fr; }
  .lead-teacher { grid-template-columns: 1fr; text-align: center; }
  .lead-teacher .mono { margin: 0 auto; }
  .footer-top { grid-template-columns: 1fr; }
  .hero-rating { gap: 6px 16px; }
  .ticker-set span { font-size: 18px; }
  .hero-cta { width: 100%; flex-direction: column; align-items: center; }
  .hero-cta .btn { width: 100%; max-width: 360px; justify-content: center; }
  .final-cta { flex-direction: column; align-items: center; }
  .final-cta .btn { width: 100%; max-width: 360px; justify-content: center; }
  /* section 04 format filters: all buttons fit on one line on mobile */
  .filters { gap: 4px; flex-wrap: nowrap; width: 100%; }
  .filter { flex: 1 1 0; min-width: 0; padding: 10px 4px; font-size: 11.5px; letter-spacing: .6px; min-height: 44px; white-space: nowrap; overflow: hidden; text-overflow: clip; text-align: center; }
  /* location card actions stack centered on mobile */
  .loc-actions { justify-content: center; }
  .loc-actions .btn { flex: 0 0 auto; min-width: 160px; justify-content: center; }
  /* training apply CTA centered (it's a single button in a centered container — already fine) */
  .nav-right .btn { padding: 9px 16px; font-size: 13.5px; }
  .nav-inner { height: 82px; }
  .logo img { height: 66px; }
  :root { --header-h: 124px; }
  html { scroll-padding-top: 80px; }
}
@media (max-width: 380px) {
  .container { padding-left: 16px; padding-right: 16px; }
  .ann { font-size: 11.5px; padding: 9px 12px; }
  .hero h1 { font-size: clamp(42px, 12vw, 56px); }
  .hero-sub { font-size: 16px; }
  .nav-inner { height: 76px; }
  .logo img { height: 58px; }
  :root { --header-h: 116px; }
  .btn-lg { padding: 16px 24px; font-size: 15px; }
  .heat-stats, .ratings, .team-grid, .honors { grid-template-columns: 1fr; }
  .honor { padding: 18px 20px; gap: 14px; max-width: 100%; min-width: 0; box-sizing: border-box; }
  /* BoLV honor (.honor-award): medals row above text on mobile — class-based for iOS Safari < 15.4 compatibility */
  .honor-award { flex-direction: column; align-items: center; text-align: center; }
  .honor-award .honor-medals { flex-direction: row; justify-content: center; gap: 8px; flex-wrap: wrap; max-width: 100%; }
  .medal { width: 42px; height: 42px; font-size: 11px; flex: none; }
  .honor-title { font-size: 19px; justify-content: center; flex-wrap: wrap; }
  .honor-sub { font-size: 12.5px; }
  .honor-arrow { display: none; }
  .honor-bolv-logo { font-size: 13px; }
  .rating { padding: 22px 16px; }
  .rating-logo { height: 22px; margin-bottom: 14px; }
  .hero-rating { font-size: 13px; }
  .hr-pill-bolv { width: 100%; justify-content: space-between; }
  .hr-medals { padding-left: 8px; }
  .hr-medal { width: 26px; height: 26px; font-size: 9.5px; }
  .logo-bolv { font-size: 12px; letter-spacing: .6px; }
  .ticker-set span { font-size: 16px; padding: 0 16px; gap: 16px; }
  .ticker-set span::after { font-size: 8px; }
  .dual-list li { flex-wrap: wrap; gap: 6px 12px; }
  .footer-bottom { font-size: 12px; flex-direction: column; gap: 6px; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  [data-reveal] { opacity: 1; transform: none; }
}
