/* ============================================================================
   BMG — Body Jump / Jumping Fitness
   Design System + Public One-Page Stylesheet
   Palette extracted from the BMG logo (full-spectrum gradient wordmark).
   Color law: black = structure · fuchsia = CTA · turquoise = info
              orange = highlight · lime = active · purple = premium · coral = alert
   ========================================================================== */

/* -------------------------------------------------------------------------- */
/*  1. DESIGN TOKENS                                                           */
/* -------------------------------------------------------------------------- */
:root {
  /* Surfaces (dark-first) */
  --color-bg: #050505;
  --color-bg-secondary: #0e0e0f;
  --color-card: #17171a;
  --color-card-2: #1e1e22;
  --color-line: #2a2a30;

  /* Brand spectrum (sampled from logo) */
  --color-pink: #f2046d;
  --color-turquoise: #04b7be;
  --color-orange: #f2a905;
  --color-lime: #81c82a;
  --color-purple: #6513bd;
  --color-coral: #f82627;

  /* Text */
  --color-white: #ffffff;
  --color-text: #f5f5f5;
  --color-muted: #a8a8a8;
  --color-faint: #6c6c72;

  /* Semantic (admin + status) */
  --c-active: var(--color-lime);
  --c-info: var(--color-turquoise);
  --c-highlight: var(--color-orange);
  --c-premium: var(--color-purple);
  --c-alert: var(--color-coral);
  --c-booking: var(--color-pink);
  --c-warning: #f2a905;
  --c-expired: var(--color-coral);

  /* Signature gradients */
  --grad-hero: linear-gradient(135deg, #f2046d 0%, #6513bd 55%, #04b7be 100%);
  --grad-warm: linear-gradient(135deg, #f2046d 0%, #f2a905 50%, #81c82a 100%);
  --grad-spectrum: linear-gradient(90deg, #f2046d, #6513bd, #04b7be, #81c82a, #f2a905);
  --grad-cta: linear-gradient(135deg, #f2046d 0%, #b3117c 100%);
  --grad-surface: linear-gradient(180deg, #131316 0%, #0b0b0c 100%);

  /* Glows */
  --glow-pink: 0 10px 40px -8px rgba(242, 4, 109, 0.45);
  --glow-turquoise: 0 10px 40px -8px rgba(4, 183, 190, 0.4);
  --glow-purple: 0 10px 40px -8px rgba(101, 19, 189, 0.4);

  /* Typography */
  --font-display: "Poppins", "Montserrat", system-ui, sans-serif;
  --font-body: "Inter", "Poppins", system-ui, -apple-system, sans-serif;

  --fs-hero: clamp(2.75rem, 7vw, 5.75rem);
  --fs-h2: clamp(1.9rem, 4vw, 3rem);
  --fs-h3: clamp(1.25rem, 2.2vw, 1.6rem);
  --fs-lead: clamp(1.05rem, 1.6vw, 1.25rem);
  --fs-body: 1rem;
  --fs-sm: 0.875rem;

  /* Spacing / layout */
  --wrap: 1200px;
  --gutter: clamp(1.1rem, 4vw, 2.5rem);
  --radius: 18px;
  --radius-sm: 12px;
  --radius-pill: 999px;
  --section-y: clamp(4rem, 9vw, 7.5rem);

  /* Motion palette — one scale used everywhere so the site feels consistent.
     Only transform/opacity are animated (never width/top/margin), so nothing
     triggers layout reflow. */
  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);      /* standard: settle-in */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);   /* entrances: fast then glide */
  --ease-in: cubic-bezier(0.7, 0, 0.84, 0);    /* exits */
  --dur-fast: 0.18s;                            /* hover, taps */
  --dur: 0.35s;                                 /* default UI transitions */
  --dur-slow: 0.7s;                             /* scroll reveals */
  --stagger: 70ms;                              /* delay between siblings */

  --header-h: 76px;
}

/* Optional light theme (dark remains the primary experience) */
:root[data-theme="light"] {
  --color-bg: #f6f6f8;
  --color-bg-secondary: #ffffff;
  --color-card: #ffffff;
  --color-card-2: #f0f0f4;
  --color-line: #e2e2ea;
  --color-text: #16161a;
  --color-muted: #55555f;
  --color-faint: #8a8a95;
  --color-white: #0b0b0c;
  --grad-surface: linear-gradient(180deg, #ffffff 0%, #f2f2f6 100%);
}

/* -------------------------------------------------------------------------- */
/*  2. RESET & BASE                                                            */
/* -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

body {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.08; font-weight: 700; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font: inherit; cursor: pointer; }
ul { list-style: none; padding: 0; }
:focus-visible { outline: 3px solid var(--color-turquoise); outline-offset: 3px; border-radius: 4px; }

.wrap { width: min(100% - 2 * var(--gutter), var(--wrap)); margin-inline: auto; }
.section { padding-block: var(--section-y); position: relative; }
.section--tint { background: var(--grad-surface); }

/* Skip link (a11y) */
.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 999;
  background: var(--color-pink); color: #fff; padding: 0.7rem 1.1rem;
  border-radius: 8px; transition: top var(--dur) var(--ease);
}
.skip-link:focus { top: 12px; }

/* -------------------------------------------------------------------------- */
/*  3. UTILITIES                                                               */
/* -------------------------------------------------------------------------- */
.text-gradient {
  background: var(--grad-spectrum);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 0.55rem;
  font-family: var(--font-display); font-weight: 600; font-size: 0.8rem;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--color-turquoise);
  margin-bottom: 1rem;
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--color-pink); border-radius: 2px; }

.section-head { max-width: 640px; margin-bottom: clamp(2rem, 4vw, 3.25rem); }
.section-head h2 { font-size: var(--fs-h2); font-weight: 800; }
.section-head p { color: var(--color-muted); margin-top: 0.9rem; font-size: var(--fs-lead); }
.section-head--center { margin-inline: auto; text-align: center; }

/* Buttons */
.btn {
  --bg: var(--grad-cta);
  display: inline-flex; align-items: center; justify-content: center; gap: 0.6rem;
  padding: 0.95rem 1.7rem; border: 0; border-radius: var(--radius-pill);
  font-family: var(--font-display); font-weight: 600; font-size: 0.95rem;
  color: #fff; background: var(--bg); position: relative; overflow: hidden;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
  box-shadow: var(--glow-pink); text-align: center;
}
.btn:hover { transform: translateY(-3px); box-shadow: 0 16px 46px -8px rgba(242, 4, 109, 0.6); }
.btn:active { transform: translateY(-1px); }
.btn--ghost {
  background: transparent; color: var(--color-text);
  border: 1.5px solid var(--color-line); box-shadow: none;
}
.btn--ghost:hover { border-color: var(--color-turquoise); box-shadow: var(--glow-turquoise); color: #fff; }
.btn--turquoise { --bg: linear-gradient(135deg, #04b7be, #0a8f95); box-shadow: var(--glow-turquoise); }
.btn--sm { padding: 0.6rem 1.15rem; font-size: 0.85rem; }
.btn--full { width: 100%; }
/* Ripple */
.btn .ripple { position: absolute; border-radius: 50%; transform: scale(0); background: rgba(255,255,255,.4); animation: ripple 0.6s var(--ease); pointer-events: none; }
@keyframes ripple { to { transform: scale(4); opacity: 0; } }

/* Badges / pills */
.pill {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.04em;
  padding: 0.32rem 0.75rem; border-radius: var(--radius-pill);
  text-transform: uppercase; border: 1px solid transparent;
}
.pill--available { color: var(--color-lime); background: rgba(129,200,42,.12); border-color: rgba(129,200,42,.35); }
.pill--full { color: var(--color-coral); background: rgba(248,38,39,.12); border-color: rgba(248,38,39,.35); }
.pill--info { color: var(--color-turquoise); background: rgba(4,183,190,.12); border-color: rgba(4,183,190,.35); }
.pill--premium { color: #c79bff; background: rgba(101,19,189,.18); border-color: rgba(101,19,189,.45); }

/* Cards */
.card {
  background: var(--color-card); border: 1px solid var(--color-line);
  border-radius: var(--radius); padding: 1.6rem;
  transition: transform var(--dur) var(--ease), border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}

/* Scroll-reveal — only hidden when JS is active (progressive enhancement).
   Without JS (or for crawlers) content stays fully visible. */
.js .reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.js .reveal.is-visible { opacity: 1; transform: none; }

/* -------------------------------------------------------------------------- */
/*  4. HEADER                                                                  */
/* -------------------------------------------------------------------------- */
.header {
  position: fixed; inset: 0 0 auto 0; z-index: 100; height: var(--header-h);
  display: flex; align-items: center;
  transition: background var(--dur) var(--ease), backdrop-filter var(--dur) var(--ease), border-color var(--dur) var(--ease);
  border-bottom: 1px solid transparent;
}
.header.is-scrolled {
  background: rgba(5, 5, 5, 0.72); backdrop-filter: blur(16px);
  border-bottom-color: var(--color-line);
}
.header__inner { display: flex; align-items: center; justify-content: space-between; width: 100%; }
.brand { display: flex; align-items: center; gap: 0.7rem;
  opacity: 0; visibility: hidden; transform: translateX(-10px); pointer-events: none;
  transition: opacity var(--dur) var(--ease), visibility var(--dur) var(--ease), transform var(--dur) var(--ease); }
/* Header logo appears only once you scroll past the big hero logo (no duplication at the top). */
.header.is-scrolled .brand { opacity: 1; visibility: visible; transform: none; pointer-events: auto; }
.brand img { height: 52px; width: auto; filter: drop-shadow(0 2px 12px rgba(242,4,109,.45)); transition: transform var(--dur) var(--ease); }
.brand:hover img { transform: scale(1.05); }
.brand__word { font-family: var(--font-display); font-weight: 800; letter-spacing: 0.02em; font-size: 1.15rem; }

.nav { display: flex; align-items: center; gap: 2rem; }
.nav__list { display: flex; gap: 1.6rem; }
.nav__list a { font-size: 0.92rem; font-weight: 500; color: var(--color-muted); position: relative; padding: 0.3rem 0; transition: color var(--dur) var(--ease); }
.nav__list a::after { content: ""; position: absolute; left: 0; bottom: -2px; height: 2px; width: 0; background: var(--grad-cta); transition: width var(--dur) var(--ease); }
.nav__list a:hover, .nav__list a.is-active { color: #fff; }
.nav__list a:hover::after, .nav__list a.is-active::after { width: 100%; }

.header__cta { display: flex; align-items: center; gap: 0.8rem; }
.nav-toggle { display: none; background: transparent; border: 0; width: 44px; height: 44px; position: relative; }
.nav-toggle span { position: absolute; left: 10px; right: 10px; height: 2px; background: #fff; border-radius: 2px; transition: transform var(--dur) var(--ease), opacity var(--dur) var(--ease); }
.nav-toggle span:nth-child(1) { top: 15px; }
.nav-toggle span:nth-child(2) { top: 21px; }
.nav-toggle span:nth-child(3) { top: 27px; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.theme-toggle { background: transparent; border: 1px solid var(--color-line); color: var(--color-text); width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center; font-size: 1.05rem; transition: border-color var(--dur) var(--ease); }
.theme-toggle:hover { border-color: var(--color-turquoise); }

@media (max-width: 960px) {
  .nav-toggle { display: block; }
  .nav {
    position: fixed; inset: var(--header-h) 0 auto 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: rgba(8, 8, 9, 0.98); backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--color-line);
    padding: 1rem var(--gutter) 1.6rem;
    transform: translateY(-120%); transition: transform var(--dur) var(--ease);
    max-height: calc(100vh - var(--header-h)); overflow-y: auto;
  }
  .nav.is-open { transform: none; }
  .nav__list { flex-direction: column; gap: 0.2rem; }
  .nav__list a { padding: 0.9rem 0; border-bottom: 1px solid var(--color-line); }
  .nav .btn { margin-top: 1rem; }
}

/* -------------------------------------------------------------------------- */
/*  5. HERO                                                                    */
/* -------------------------------------------------------------------------- */
.hero {
  min-height: 100svh; display: flex; align-items: center; position: relative;
  padding-top: var(--header-h); overflow: hidden;
  background: #050505;
}
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.82; }
/* gradient fallback used before/behind the photo so it never looks broken */
.hero__bg::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(120% 120% at 80% 10%, rgba(101,19,189,.55), transparent 55%),
              radial-gradient(90% 90% at 10% 90%, rgba(242,4,109,.5), transparent 55%),
              radial-gradient(80% 80% at 60% 60%, rgba(4,183,190,.35), transparent 60%),
              #060608;
}
.hero__overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(90deg, rgba(5,5,5,.96), rgba(5,5,5,.7) 45%, rgba(5,5,5,.28));
}
/* Hero laid out across the full width: logo on the left, copy on the right. */
.hero__inner { position: relative; z-index: 2; padding-block: 3rem; text-align: left;
  width: min(100% - 2 * var(--gutter), 1340px);
  display: grid; grid-template-columns: minmax(160px, 0.75fr) minmax(0, 1.55fr);
  gap: clamp(1.8rem, 5vw, 4.5rem); align-items: center; }
.hero__logo { height: clamp(140px, 19vw, 290px); width: auto; margin: 0; display: block; justify-self: center;
  filter: drop-shadow(0 8px 34px rgba(0,0,0,.7)); }
.hero__copy { min-width: 0; }
@media (max-width: 820px) {
  .hero__inner { grid-template-columns: 1fr; gap: 1.5rem; justify-items: start; }
  .hero__logo { justify-self: start; }
}
.hero h1 { font-size: var(--fs-hero); font-weight: 800; letter-spacing: -0.02em; }
.hero h1 .line-2 { display: block; }
.hero__sub { font-family: var(--font-display); font-weight: 600; color: var(--color-turquoise); font-size: var(--fs-h3); margin-top: 0.4rem; }
.hero__tag { color: var(--color-muted); font-size: var(--fs-lead); margin: 1.1rem 0 2rem; }
.hero__tag b { color: var(--color-text); font-weight: 600; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 0.9rem; justify-content: flex-start; }
.hero__loc {
  margin-top: 2.2rem; display: inline-flex; align-items: center; gap: 0.6rem;
  color: var(--color-muted); font-size: 0.92rem; text-align: left;
  border-left: 2px solid var(--color-pink); padding-left: 0.9rem;
}
.hero .eyebrow { justify-content: flex-start; }
.hero__tag { max-width: 62ch; margin-inline: 0; }
.hero__loc b { color: var(--color-text); }

/* Energy particles */
.particles { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.particles span {
  position: absolute; width: 8px; height: 8px; border-radius: 50%;
  background: var(--color-turquoise); opacity: .35;
  animation: floatUp linear infinite;
}
@keyframes floatUp {
  from { transform: translateY(20px) scale(1); opacity: 0; }
  20% { opacity: .5; }
  to { transform: translateY(-90vh) scale(.4); opacity: 0; }
}
/* Scroll indicator */
.scroll-cue { position: absolute; left: 50%; bottom: 26px; transform: translateX(-50%); z-index: 3; display: grid; place-items: center; gap: .5rem; color: var(--color-muted); font-size: .7rem; letter-spacing: .2em; text-transform: uppercase; }
.scroll-cue .mouse { width: 24px; height: 38px; border: 2px solid var(--color-muted); border-radius: 14px; position: relative; }
.scroll-cue .mouse::after { content: ""; position: absolute; left: 50%; top: 7px; width: 4px; height: 7px; background: var(--color-turquoise); border-radius: 3px; transform: translateX(-50%); animation: wheel 1.6s var(--ease) infinite; }
@keyframes wheel { 0%{opacity:1;top:7px} 70%{opacity:0;top:18px} 100%{opacity:0} }

/* -------------------------------------------------------------------------- */
/*  6. STATS / ABOUT                                                           */
/* -------------------------------------------------------------------------- */
.about__grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.about__media { border-radius: var(--radius); overflow: hidden; position: relative; aspect-ratio: 4/5; background: var(--grad-hero); }
.about__media img { width: 100%; height: 100%; object-fit: cover; }
.about__media::after { content: ""; position: absolute; inset: 0; box-shadow: inset 0 0 120px rgba(0,0,0,.5); }
.stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; margin-top: 2rem; }
.stat { background: var(--color-card); border: 1px solid var(--color-line); border-radius: var(--radius-sm); padding: 1.3rem; }
.stat__num { font-family: var(--font-display); font-weight: 800; font-size: clamp(2rem, 4vw, 2.8rem); background: var(--grad-warm); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat__label { color: var(--color-muted); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.06em; }
@media (max-width: 820px) { .about__grid { grid-template-columns: 1fr; } .about__media { aspect-ratio: 16/10; } }

/* -------------------------------------------------------------------------- */
/*  7. BENEFITS                                                                */
/* -------------------------------------------------------------------------- */
.benefits__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 1.2rem; }
.benefit { padding: 1.8rem 1.6rem; }
.benefit:hover { transform: translateY(-8px); border-color: var(--color-turquoise); box-shadow: var(--glow-turquoise); }
.benefit__ico { width: 54px; height: 54px; border-radius: 14px; display: grid; place-items: center; font-size: 1.5rem; margin-bottom: 1rem; background: rgba(4,183,190,.12); color: var(--color-turquoise); }
.benefit:nth-child(2) .benefit__ico { background: rgba(242,4,109,.12); color: var(--color-pink); }
.benefit:nth-child(3) .benefit__ico { background: rgba(242,169,5,.12); color: var(--color-orange); }
.benefit:nth-child(4) .benefit__ico { background: rgba(129,200,42,.12); color: var(--color-lime); }
.benefit:nth-child(5) .benefit__ico { background: rgba(101,19,189,.16); color: #c79bff; }
.benefit:nth-child(6) .benefit__ico { background: rgba(248,38,39,.12); color: var(--color-coral); }
.benefit h3 { font-size: 1.15rem; margin-bottom: 0.5rem; }
.benefit p { color: var(--color-muted); font-size: 0.94rem; }

/* -------------------------------------------------------------------------- */
/*  8. CLASSES                                                                 */
/* -------------------------------------------------------------------------- */
.classes__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.6rem; }
.class-card { padding: 0; overflow: hidden; }
.class-card:hover { transform: translateY(-10px); box-shadow: var(--glow-pink); border-color: rgba(242,4,109,.4); }
.class-card__media { aspect-ratio: 16/10; position: relative; background: var(--grad-hero); overflow: hidden; }
.class-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.class-card:hover .class-card__media img { transform: scale(1.06); }
.class-card__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(5,5,5,.85)); }
.class-card__tag { position: absolute; top: 1rem; left: 1rem; z-index: 2; }
.class-card__body { padding: 1.5rem 1.6rem 1.7rem; }
.class-card__body h3 { font-size: 1.4rem; margin-bottom: 0.5rem; }
.class-card__body p { color: var(--color-muted); font-size: 0.94rem; margin-bottom: 1.1rem; }
.class-meta { display: flex; gap: 1.3rem; margin-bottom: 1.3rem; flex-wrap: wrap; }
.class-meta div { font-size: 0.8rem; color: var(--color-muted); }
.class-meta strong { display: block; color: var(--color-text); font-family: var(--font-display); font-size: 1rem; }

/* -------------------------------------------------------------------------- */
/*  9. SCHEDULE                                                                */
/* -------------------------------------------------------------------------- */
.sched__tabs { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1.6rem; }
.sched__tab { padding: 0.6rem 1.1rem; border-radius: var(--radius-pill); border: 1px solid var(--color-line); background: var(--color-card); color: var(--color-muted); font-weight: 600; font-size: 0.85rem; transition: all var(--dur) var(--ease); }
.sched__tab.is-active { background: var(--grad-cta); color: #fff; border-color: transparent; box-shadow: var(--glow-pink); }
.sched__grid { display: grid; gap: 0.9rem; }
.slot { display: grid; grid-template-columns: 90px 1fr auto auto; gap: 1rem; align-items: center; padding: 1.1rem 1.3rem; border-radius: var(--radius-sm); background: var(--color-card); border: 1px solid var(--color-line); transition: border-color var(--dur) var(--ease); }
.slot:hover { border-color: var(--color-turquoise); }
.slot__time { font-family: var(--font-display); font-weight: 700; color: var(--color-text); }
.slot__time span { display: block; font-size: 0.72rem; color: var(--color-faint); font-weight: 500; }
.slot__name { font-weight: 600; }
.slot__name small { display: block; color: var(--color-muted); font-weight: 400; font-size: 0.82rem; }
.slot__cap { font-size: 0.82rem; color: var(--color-muted); text-align: right; }
.slot__cap b { color: var(--color-lime); }
.slot--full .slot__cap b { color: var(--color-coral); }
.slot--rest { justify-content: center; color: var(--color-faint); text-align: center; grid-template-columns: 1fr; }
@media (max-width: 640px) {
  .slot { grid-template-columns: 1fr auto; grid-auto-rows: auto; row-gap: 0.5rem; }
  .slot__time { grid-column: 1; } .slot__name { grid-column: 1 / -1; order: 3; }
  .slot__cap { grid-column: 2; grid-row: 1; } .slot .btn { grid-column: 1 / -1; order: 4; }
}

/* -------------------------------------------------------------------------- */
/*  10. MEMBERSHIPS                                                            */
/* -------------------------------------------------------------------------- */
.plans { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.3rem; align-items: stretch; }
.plan { display: flex; flex-direction: column; position: relative; padding: 2rem 1.7rem; }
.plan--featured { border-color: transparent; background:
  linear-gradient(var(--color-card), var(--color-card)) padding-box,
  var(--grad-hero) border-box; border: 1.5px solid transparent; box-shadow: var(--glow-purple); }
.plan__flag { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--grad-cta); color: #fff; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 0.35rem 0.9rem; border-radius: var(--radius-pill); }
.plan__name { font-family: var(--font-display); font-weight: 700; font-size: 1.15rem; letter-spacing: 0.04em; text-transform: uppercase; color: var(--color-muted); }
.plan__price { font-family: var(--font-display); font-weight: 800; font-size: 2.7rem; margin: 0.6rem 0 0.2rem; }
.plan__price span { font-size: 0.95rem; font-weight: 500; color: var(--color-muted); }
.plan__feats { margin: 1.4rem 0; display: grid; gap: 0.7rem; }
.plan__feats li { display: flex; gap: 0.6rem; font-size: 0.92rem; color: var(--color-text); }
.plan__feats li::before { content: "✓"; color: var(--color-lime); font-weight: 700; }
.plan__feats li.off { color: var(--color-faint); }
.plan__feats li.off::before { content: "×"; color: var(--color-faint); }
.plan .btn { margin-top: auto; }

/* -------------------------------------------------------------------------- */
/*  11. GALLERY                                                                */
/* -------------------------------------------------------------------------- */
/* Robust masonry-style gallery via CSS Grid (always multi-column). */
.gallery { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); grid-auto-rows: 175px; gap: 1rem; }
.gallery figure { margin: 0; border-radius: var(--radius-sm); overflow: hidden; position: relative; cursor: pointer; background: var(--color-card-2); }
.gallery figure:nth-child(6n+1) { grid-row: span 2; }  /* feature tiles taller */
.gallery figure:nth-child(6n+4) { grid-row: span 2; }
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
@media (max-width: 540px) { .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 140px; } }
.gallery figure:hover img { transform: scale(1.07); }
.gallery figcaption { position: absolute; inset: auto 0 0 0; padding: 1rem; font-size: 0.82rem; background: linear-gradient(transparent, rgba(5,5,5,.9)); opacity: 0; transform: translateY(8px); transition: all var(--dur) var(--ease); }
.gallery figure:hover figcaption { opacity: 1; transform: none; }

/* Lightbox */
.lightbox { position: fixed; inset: 0; z-index: 200; background: rgba(3,3,4,.94); display: none; place-items: center; padding: 2rem; }
.lightbox.is-open { display: grid; }
.lightbox img { max-width: min(92vw, 1100px); max-height: 86vh; border-radius: var(--radius-sm); }
.lightbox__close { position: absolute; top: 1.4rem; right: 1.6rem; background: var(--color-card); border: 1px solid var(--color-line); color: #fff; width: 46px; height: 46px; border-radius: 50%; font-size: 1.3rem; }

/* -------------------------------------------------------------------------- */
/*  12. TRAINERS                                                               */
/* -------------------------------------------------------------------------- */
.trainers__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 1.4rem; }
.trainer { padding: 0; overflow: hidden; text-align: center; }
.trainer:hover { transform: translateY(-8px); border-color: rgba(101,19,189,.5); box-shadow: var(--glow-purple); }
.trainer__media { aspect-ratio: 1; position: relative; background: var(--grad-hero); overflow: hidden; }
.trainer__media img { width: 100%; height: 100%; object-fit: cover; }
.trainer__body { padding: 1.4rem; }
.trainer__body h3 { font-size: 1.15rem; }
.trainer__spec { color: var(--color-turquoise); font-size: 0.85rem; font-weight: 600; margin: 0.2rem 0 0.7rem; }
.trainer__rating { color: var(--color-orange); font-size: 0.9rem; letter-spacing: 0.1em; }
.trainer__social { display: flex; justify-content: center; gap: 0.8rem; margin-top: 1rem; }
.trainer__social a { width: 36px; height: 36px; border-radius: 50%; display: grid; place-items: center; background: var(--color-card-2); border: 1px solid var(--color-line); color: var(--color-muted); transition: all var(--dur) var(--ease); }
.trainer__social a:hover { color: #fff; border-color: var(--color-pink); }

/* -------------------------------------------------------------------------- */
/*  13. TESTIMONIALS                                                           */
/* -------------------------------------------------------------------------- */
.testi { overflow: hidden; }
.testi__track { display: flex; gap: 1.4rem; transition: transform 0.55s var(--ease); }
.testi__card { flex: 0 0 100%; }
@media (min-width: 720px) { .testi__card { flex-basis: calc(50% - 0.7rem); } }
@media (min-width: 1040px) { .testi__card { flex-basis: calc(33.333% - 0.94rem); } }
.testi__card .stars { color: var(--color-orange); letter-spacing: 0.12em; margin-bottom: 0.8rem; }
.testi__card blockquote { font-size: 1.05rem; line-height: 1.5; margin-bottom: 1.3rem; }
.testi__who { display: flex; align-items: center; gap: 0.8rem; }
.testi__who img, .testi__who .avatar { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; background: var(--grad-warm); display: grid; place-items: center; font-family: var(--font-display); font-weight: 700; color: #fff; }
.testi__who b { display: block; } .testi__who span { color: var(--color-muted); font-size: 0.82rem; }
.testi__nav { display: flex; gap: 0.6rem; justify-content: center; margin-top: 2rem; }
.testi__nav button { width: 46px; height: 46px; border-radius: 50%; background: var(--color-card); border: 1px solid var(--color-line); color: #fff; transition: all var(--dur) var(--ease); }
.testi__nav button:hover { border-color: var(--color-turquoise); box-shadow: var(--glow-turquoise); }

/* -------------------------------------------------------------------------- */
/*  14. BOOKING + REGISTRATION + LOCATION                                      */
/* -------------------------------------------------------------------------- */
.book__grid, .loc__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem, 4vw, 3rem); }
@media (max-width: 860px) { .book__grid, .loc__grid { grid-template-columns: 1fr; } }
.form-field { margin-bottom: 1.1rem; }
.form-field label { display: block; font-size: 0.85rem; font-weight: 600; margin-bottom: 0.45rem; color: var(--color-text); }
.form-field input, .form-field select {
  width: 100%; padding: 0.85rem 1rem; border-radius: var(--radius-sm);
  background: var(--color-bg-secondary); border: 1px solid var(--color-line);
  color: var(--color-text); font: inherit; transition: border-color var(--dur) var(--ease);
}
.form-field input:focus, .form-field select:focus { outline: none; border-color: var(--color-turquoise); box-shadow: var(--glow-turquoise); }
.reg-card, .loc-card { padding: 2rem; }
.reg-card p { color: var(--color-muted); margin: 0.8rem 0 1.4rem; }
.reg-list { display: grid; gap: 0.7rem; margin-bottom: 1.6rem; }
.reg-list li { display: flex; gap: 0.65rem; font-size: 0.94rem; }
.reg-list li::before { content: "✓"; color: var(--color-lime); font-weight: 700; flex-shrink: 0; }
.map-embed { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--color-line); min-height: 340px; }
.map-embed iframe { width: 100%; height: 100%; min-height: 340px; border: 0; filter: grayscale(0.2) contrast(1.05); }
.loc-info { display: grid; gap: 1.1rem; }
.loc-info .row { display: flex; gap: 0.9rem; align-items: flex-start; }
.loc-info .row .ico { color: var(--color-pink); font-size: 1.2rem; margin-top: 0.1rem; }
.loc-info .row b { display: block; }
.loc-info .row span { color: var(--color-muted); font-size: 0.92rem; }

/* Booking result states */
.book-result { margin-top: 1rem; padding: 1rem 1.2rem; border-radius: var(--radius-sm); display: none; font-size: 0.92rem; }
.book-result.show { display: block; }
.book-result--ok { background: rgba(129,200,42,.12); border: 1px solid rgba(129,200,42,.4); color: var(--color-lime); }
.book-result--full { background: rgba(248,38,39,.12); border: 1px solid rgba(248,38,39,.4); color: var(--color-coral); }

/* -------------------------------------------------------------------------- */
/*  15. FAQ                                                                    */
/* -------------------------------------------------------------------------- */
.faq { display: grid; gap: 0.8rem; max-width: 820px; margin-inline: auto; }
.faq__item { background: var(--color-card); border: 1px solid var(--color-line); border-radius: var(--radius-sm); overflow: hidden; }
.faq__q { width: 100%; text-align: left; background: transparent; border: 0; color: var(--color-text); font-family: var(--font-display); font-weight: 600; font-size: 1rem; padding: 1.2rem 1.4rem; display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.faq__q .plusminus { color: var(--color-turquoise); font-size: 1.4rem; transition: transform var(--dur) var(--ease); }
.faq__item.is-open .faq__q .plusminus { transform: rotate(45deg); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height var(--dur) var(--ease); }
.faq__a p { padding: 0 1.4rem 1.3rem; color: var(--color-muted); }

/* -------------------------------------------------------------------------- */
/*  16. CTA FINAL + FOOTER                                                     */
/* -------------------------------------------------------------------------- */
.cta-final { text-align: center; position: relative; overflow: hidden; }
.cta-final::before { content: ""; position: absolute; inset: 0; background: var(--grad-hero); opacity: 0.14; }
.cta-final__inner { position: relative; }
.cta-final h2 { font-size: clamp(2.2rem, 5vw, 3.6rem); font-weight: 800; }
.cta-final p { color: var(--color-muted); font-size: var(--fs-lead); margin: 1rem auto 2rem; max-width: 560px; }

.footer { background: var(--color-bg-secondary); border-top: 1px solid var(--color-line); padding-block: 3.5rem 2rem; }
.footer__grid { display: grid; grid-template-columns: 1.5fr repeat(3, 1fr); gap: 2rem; }
@media (max-width: 820px) { .footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .footer__grid { grid-template-columns: 1fr; } }
.footer__brand img { height: 54px; margin-bottom: 1rem; }
.footer__brand p { color: var(--color-muted); font-size: 0.9rem; max-width: 260px; }
.footer__mantra { font-family: var(--font-display); font-weight: 700; margin-top: 0.8rem; }
.footer__mantra span { background: var(--grad-spectrum); -webkit-background-clip: text; background-clip: text; color: transparent; }
.footer col-title, .footer h4 { font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--color-faint); margin-bottom: 1rem; }
.footer__col a { display: block; color: var(--color-muted); font-size: 0.92rem; padding: 0.35rem 0; transition: color var(--dur) var(--ease); }
.footer__col a:hover { color: var(--color-pink); }
.footer__social { display: flex; gap: 0.7rem; margin-top: 0.6rem; }
.footer__social a { width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center; background: var(--color-card); border: 1px solid var(--color-line); color: var(--color-muted); transition: all var(--dur) var(--ease); }
.footer__social a:hover { color: #fff; border-color: var(--color-turquoise); box-shadow: var(--glow-turquoise); }
.footer__bottom { border-top: 1px solid var(--color-line); margin-top: 2.5rem; padding-top: 1.6rem; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem; color: var(--color-faint); font-size: 0.82rem; }
.footer__bottom a { color: var(--color-muted); }

/* -------------------------------------------------------------------------- */
/*  17. TOAST + FLOATING BOOK BUTTON (mobile)                                  */
/* -------------------------------------------------------------------------- */
.toast-wrap { position: fixed; bottom: 20px; right: 20px; z-index: 300; display: grid; gap: 0.6rem; max-width: 340px; }
.toast { background: var(--color-card); border: 1px solid var(--color-line); border-left: 3px solid var(--color-turquoise); border-radius: var(--radius-sm); padding: 0.9rem 1.1rem; font-size: 0.9rem; box-shadow: 0 20px 50px -12px rgba(0,0,0,.6); animation: toastIn 0.4s var(--ease); }
.toast--ok { border-left-color: var(--color-lime); }
.toast--err { border-left-color: var(--color-coral); }
@keyframes toastIn { from { opacity: 0; transform: translateX(30px); } to { opacity: 1; transform: none; } }

.fab-book { position: fixed; left: 50%; bottom: 18px; transform: translateX(-50%); z-index: 90; display: none; box-shadow: 0 10px 40px -6px rgba(242,4,109,.7); }
@media (max-width: 720px) { .fab-book { display: inline-flex; } }

/* Modal (booking / auth) */
.modal { position: fixed; inset: 0; z-index: 250; background: rgba(3,3,4,.8); backdrop-filter: blur(6px); display: none; place-items: center; padding: 1.5rem; }
.modal.is-open { display: grid; }
.modal__box { background: var(--color-card); border: 1px solid var(--color-line); border-radius: var(--radius); width: min(100%, 460px); padding: 2rem; position: relative; animation: modalIn 0.35s var(--ease); }
@keyframes modalIn { from { opacity: 0; transform: translateY(20px) scale(.98); } to { opacity: 1; transform: none; } }
.modal__close { position: absolute; top: 1rem; right: 1rem; background: transparent; border: 0; color: var(--color-muted); font-size: 1.5rem; }
.modal h3 { margin-bottom: 0.4rem; }
.modal p.sub { color: var(--color-muted); font-size: 0.9rem; margin-bottom: 1.4rem; }
.modal__box--wide { width: min(100%, 640px); max-height: 92vh; overflow-y: auto; }

/* ---- Signup form ---------------------------------------------------------- */
.form-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 0 1rem; }
.form-field--full { grid-column: 1 / -1; }
.form-field label i { color: var(--color-pink); font-style: normal; }
.form-field input.is-invalid, .form-field select.is-invalid {
  border-color: var(--color-coral); box-shadow: 0 0 0 3px rgba(248,38,39,.15);
}
.form-fieldset {
  border: 1px solid var(--color-line); border-radius: var(--radius-sm);
  padding: 1.1rem 1.1rem 0.2rem; margin: 0.4rem 0 1.4rem;
  background: rgba(4,183,190,.04);
}
.form-fieldset legend {
  padding: 0 0.6rem; font-family: var(--font-display); font-weight: 600;
  font-size: 0.9rem; display: flex; align-items: center; gap: 0.6rem;
}
.req-tag {
  font-size: 0.62rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--color-coral); background: rgba(248,38,39,.14);
  border: 1px solid rgba(248,38,39,.4); border-radius: var(--radius-pill); padding: 0.15rem 0.5rem;
}
.form-note { color: var(--color-faint); font-size: 0.76rem; margin-top: 0.9rem; text-align: center; }

/* Success panel after signup */
.signup-done { text-align: center; padding: 1rem 0; }
.signup-done__icon {
  width: 74px; height: 74px; border-radius: 50%; margin: 0 auto 1.1rem; display: grid; place-items: center;
  font-size: 2rem; background: rgba(129,200,42,.14); border: 1px solid rgba(129,200,42,.45); color: var(--color-lime);
}
.signup-done h4 { font-size: 1.3rem; margin-bottom: 0.5rem; }
.signup-done p { color: var(--color-muted); font-size: 0.92rem; }
.signup-done .code {
  display: inline-block; margin: 1rem 0; padding: 0.6rem 1.2rem; border-radius: var(--radius-pill);
  background: var(--color-bg-secondary); border: 1px solid var(--color-line);
  font-family: var(--font-display); font-weight: 700; letter-spacing: 0.1em; color: var(--color-turquoise);
}

/* ============================================================================
   CALL-NOW BUTTON — header, hero, footer and a mobile action bar.
   Uses the brand's orange (energy/highlight) so it reads as a distinct action
   next to the fuchsia "Book" CTA instead of competing with it.
   ========================================================================== */
.btn--call {
  --bg: linear-gradient(135deg, #f2a905 0%, #f26f05 100%);
  box-shadow: 0 10px 34px -8px rgba(242, 169, 5, .55);
  position: relative;
}
.btn--call:hover { box-shadow: 0 16px 46px -8px rgba(242, 169, 5, .75); }
.btn--call .call-ico { font-size: 1.05em; line-height: 1; }

/* Periodic attention pulse — a ring that expands and fades, never a size jump,
   so it cannot cause layout shift. Pauses on hover and for reduced motion. */
.btn--call::after {
  content: "";
  position: absolute; inset: 0; border-radius: inherit;
  border: 2px solid rgba(242, 169, 5, .85);
  opacity: 0; pointer-events: none;
  animation: callPulse 4.5s var(--ease) infinite;
}
.btn--call:hover::after { animation-play-state: paused; opacity: 0; }
@keyframes callPulse {
  0%, 72%   { transform: scale(1);    opacity: 0; }
  78%       { transform: scale(1);    opacity: .9; }
  92%, 100% { transform: scale(1.28); opacity: 0; }
}

/* Header variant stays compact next to the booking button */
.header .btn--call { padding: .6rem 1.05rem; }
.header .btn--call .call-num { display: none; }
@media (min-width: 1180px) { .header .btn--call .call-num { display: inline; } }

/* Footer: a full call card so the number is unmissable */
.footer-call {
  display: flex; align-items: center; gap: .9rem; margin-top: .9rem;
  padding: .9rem 1.1rem; border-radius: var(--radius-sm);
  background: rgba(242, 169, 5, .09); border: 1px solid rgba(242, 169, 5, .32);
}
.footer-call__ico { font-size: 1.4rem; }
.footer-call__num { font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; color: var(--color-orange); }
.footer-call__label { display: block; font-size: .72rem; color: var(--color-muted); text-transform: uppercase; letter-spacing: .1em; }

/* Mobile sticky action bar: Call + Book, side by side */
.action-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 95;
  display: none; gap: .6rem; padding: .7rem .9rem calc(.7rem + env(safe-area-inset-bottom, 0px));
  background: rgba(5, 5, 5, .92); backdrop-filter: blur(14px);
  border-top: 1px solid var(--color-line);
}
.action-bar .btn { flex: 1; padding: .95rem .8rem; }
@media (max-width: 720px) {
  .action-bar { display: flex; }
  /* Keep the last section clear of the bar */
  .footer { padding-bottom: 6rem; }
}

/* Desktop: clicking a tel: link does nothing useful, so reveal the number */
.call-hint {
  position: absolute; bottom: calc(100% + .5rem); left: 50%; transform: translateX(-50%) translateY(4px);
  background: var(--color-card); border: 1px solid var(--color-line); color: var(--color-text);
  padding: .5rem .8rem; border-radius: var(--radius-sm); font-size: .85rem; white-space: nowrap;
  opacity: 0; pointer-events: none; transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease);
  box-shadow: 0 12px 30px -10px rgba(0,0,0,.7); z-index: 5;
}
.call-hint.show { opacity: 1; transform: translateX(-50%) translateY(0); }

@media (prefers-reduced-motion: reduce) {
  .btn--call::after { animation: none; opacity: 0; }
}

/* ============================================================================
   CHECKOUT — order summary, Square card fields, processing states, receipt
   ========================================================================== */
.checkout-steps { display: flex; gap: .4rem; list-style: none; padding: 0; margin: 0 0 1.4rem; counter-reset: step; }
.checkout-steps li {
  flex: 1; position: relative; padding-top: 1.6rem; text-align: center;
  font-size: .72rem; color: var(--color-faint); counter-increment: step;
}
.checkout-steps li::before {
  content: counter(step);
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--color-bg-secondary); border: 1px solid var(--color-line);
  display: grid; place-items: center; font-weight: 700; font-size: .68rem;
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.checkout-steps li::after {
  content: ""; position: absolute; top: 11px; left: calc(50% + 15px); right: calc(-50% + 15px);
  height: 1px; background: var(--color-line);
}
.checkout-steps li:last-child::after { display: none; }
.checkout-steps li.is-current { color: var(--color-text); }
.checkout-steps li.is-current::before { background: var(--grad-cta); border-color: transparent; color: #fff; }
.checkout-steps li.is-done { color: var(--color-lime); }
.checkout-steps li.is-done::before { content: "✓"; background: rgba(129,200,42,.16); border-color: rgba(129,200,42,.5); color: var(--color-lime); }

/* Order summary */
.order-summary {
  background: var(--color-bg-secondary); border: 1px solid var(--color-line);
  border-radius: var(--radius-sm); padding: 1.1rem 1.2rem; margin-bottom: 1.4rem;
}
.order-summary h4 { font-size: .74rem; text-transform: uppercase; letter-spacing: .1em; color: var(--color-muted); margin-bottom: .8rem; }
.order-summary .line { display: flex; justify-content: space-between; gap: 1rem; font-size: .92rem; padding: .3rem 0; }
.order-summary .line span:last-child { font-variant-numeric: tabular-nums; }
.order-summary .line--muted { color: var(--color-muted); font-size: .85rem; }
.order-summary .line--total {
  border-top: 1px solid var(--color-line); margin-top: .6rem; padding-top: .7rem;
  font-family: var(--font-display); font-weight: 800; font-size: 1.15rem;
}
.order-summary .line--total span:last-child { color: var(--color-lime); }

/* Square-hosted card fields */
#cardContainer { min-height: 92px; }
#cardContainer .sq-card-message { font-size: .82rem; }
.card-error { color: var(--color-coral); font-size: .82rem; margin-top: .5rem; min-height: 1em; }

.save-card {
  display: flex; gap: .7rem; align-items: flex-start; cursor: pointer;
  background: rgba(4,183,190,.06); border: 1px solid rgba(4,183,190,.28);
  border-radius: var(--radius-sm); padding: .85rem 1rem; margin-bottom: 1.2rem;
}
.save-card input { margin-top: .25rem; flex-shrink: 0; }
.save-card b { display: block; font-size: .9rem; font-weight: 600; }
.save-card small { color: var(--color-muted); font-size: .78rem; }

.secure-note { text-align: center; font-size: .76rem; color: var(--color-faint); margin-top: .9rem; }

/* Processing state: label swaps for a spinner, button locks */
.pay-spinner {
  display: none; width: 18px; height: 18px; border-radius: 50%;
  border: 2px solid rgba(255,255,255,.35); border-top-color: #fff;
  animation: spin .7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
#payBtn.is-busy { pointer-events: none; opacity: .85; }
#payBtn.is-busy .pay-label { display: none; }
#payBtn.is-busy .pay-spinner { display: inline-block; }

/* Receipt */
.receipt { text-align: center; padding: .6rem 0; }
.receipt__check {
  width: 78px; height: 78px; border-radius: 50%; margin: 0 auto 1.2rem;
  display: grid; place-items: center; font-size: 2.2rem;
  background: rgba(129,200,42,.14); border: 1px solid rgba(129,200,42,.45); color: var(--color-lime);
  animation: popIn .5s var(--ease) both;
}
@keyframes popIn { from { transform: scale(.6); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.receipt h4 { font-size: 1.35rem; margin-bottom: .4rem; }
.receipt__sub { color: var(--color-muted); font-size: .92rem; }
.receipt__box {
  text-align: left; background: var(--color-bg-secondary); border: 1px solid var(--color-line);
  border-radius: var(--radius-sm); padding: 1rem 1.2rem; margin: 1.3rem 0;
}
.receipt__row { display: flex; justify-content: space-between; gap: 1rem; font-size: .88rem; padding: .32rem 0; }
.receipt__row dt { color: var(--color-muted); }
.receipt__row dd { margin: 0; font-family: var(--font-display); font-weight: 600; }

@media (prefers-reduced-motion: reduce) {
  .pay-spinner { animation-duration: 1.4s; }
  .receipt__check { animation: none; }
}

/* ============================================================================
   MOTION — additions that build on the palette above.
   Everything here animates transform/opacity only, and the global
   prefers-reduced-motion rule near the top neutralises all of it.
   ========================================================================== */

/* Hero: a very slow drifting gradient behind the photo. GPU-composited and
   paused entirely when the tab is hidden or motion is reduced. */
.hero__bg::before { animation: heroDrift 26s ease-in-out infinite alternate; will-change: transform; }
@keyframes heroDrift {
  from { transform: scale(1) translate3d(0, 0, 0); }
  to   { transform: scale(1.06) translate3d(-1.5%, -1%, 0); }
}

/* Staggered scroll reveal — siblings arrive one after another instead of
   all at once. Set by JS via --i on each revealed element. */
.js .reveal { transition-duration: var(--dur-slow); transition-timing-function: var(--ease-out); }
.js .reveal[style*="--i"] { transition-delay: calc(var(--i) * var(--stagger)); }

/* Card hover feedback — plans and classes lift with a soft brand glow */
.plan { transition: transform var(--dur) var(--ease), border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease); }
.plan:hover { transform: translateY(-6px); border-color: rgba(242,4,109,.38); box-shadow: var(--glow-pink); }
.plan--featured:hover { transform: translateY(-8px) scale(1.01); }
.plan__price { transition: transform var(--dur-fast) var(--ease); }
.plan:hover .plan__price { transform: scale(1.04); }

/* Buttons: snappier press feedback than the general transition */
.btn { transition: transform var(--dur-fast) var(--ease), box-shadow var(--dur) var(--ease); }

/* Skeleton loaders for content that arrives from the API */
.skel {
  background: linear-gradient(90deg, var(--color-card) 25%, var(--color-card-2) 50%, var(--color-card) 75%);
  background-size: 200% 100%;
  animation: skelShimmer 1.4s linear infinite;
  border-radius: var(--radius-sm);
}
@keyframes skelShimmer { to { background-position: -200% 0; } }
.skel-slot { height: 74px; margin-bottom: .9rem; }

@media (prefers-reduced-motion: reduce) {
  .hero__bg::before { animation: none; }
  .js .reveal[style*="--i"] { transition-delay: 0s !important; }
}

/* Helper text under a form field — used by the booking member-code field. */
.form-hint {
  display: block;
  margin-top: .4rem;
  font-size: .8rem;
  line-height: 1.4;
  color: var(--color-muted);
}

/* The hidden attribute must win over any display rule that follows it.
   Without this, an element like #payUnavailable - which carries .show in the
   markup - stays visible as an empty coloured bar even when JavaScript has
   set hidden, because a class selector outranks the browser default. */
[hidden] { display: none !important; }
