/* ==========================================================================
   SHREDDED FITNESS — Wari, Dhaka
   Design system: dark industrial + amber neon
   ========================================================================== */

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

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

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  font-weight: 400;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; color: inherit; }
button { cursor: pointer; border: 0; background: none; }
ul { margin: 0; padding: 0; list-style: none; }

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

::selection { background: var(--amber); color: #0a0a0a; }

/* ---------- 2. TOKENS ---------- */
:root {
  --bg:        #07070a;
  --bg-2:      #0c0c11;
  --surface:   #12121a;
  --surface-2: #17171f;
  --line:      rgba(255,255,255,.08);
  --line-2:    rgba(255,255,255,.20);

  --amber:     #ff8a00;
  --amber-2:   #ffb020;
  --amber-3:   #ffd066;
  --amber-dim: rgba(255,138,0,.14);
  --amber-glow:rgba(255,138,0,.42);

  --text:      #f4f4f7;
  --muted:     #9c9caa;
  --muted-2:   #6a6a78;

  --font-display: 'Anton', 'Arial Narrow', 'Haettenschweiler', sans-serif;
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  --shadow-sm: 0 2px 10px rgba(0,0,0,.4);
  --shadow-md: 0 12px 40px rgba(0,0,0,.55);
  --shadow-lg: 0 30px 80px rgba(0,0,0,.7);

  --ease: cubic-bezier(.22,.61,.36,1);
  --ease-out: cubic-bezier(.16,1,.3,1);

  --nav-h: 76px;
  --radius: 18px;
  --radius-sm: 12px;
}

/* ---------- 3. LAYOUT ---------- */
.wrap {
  width: 100%;
  max-width: 1320px;
  margin-inline: auto;
  padding-inline: 24px;
}
.wrap--narrow { max-width: 940px; }
.wrap--wide   { max-width: 1560px; }

.section { position: relative; padding: 100px 0; }
.section--tight { padding: 72px 0; }
.section--alt { background: var(--bg-2); }

.hr-glow {
  height: 1px;
  border: 0;
  margin: 0;
  background: linear-gradient(90deg, transparent, var(--amber-glow), transparent);
}

/* ---------- 4. TYPOGRAPHY ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: .96;
  letter-spacing: .005em;
  text-transform: uppercase;
  margin: 0;
}

h1 { font-size: clamp(3rem, 9vw, 8.5rem); }
h2 { font-size: clamp(2.1rem, 5.2vw, 4.4rem); }
h3 { font-size: clamp(1.25rem, 2.2vw, 1.75rem); }
h4 { font-size: 1.05rem; letter-spacing: .06em; }

p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 22px;
}
.eyebrow::before {
  content: '';
  width: 30px; height: 2px;
  background: var(--amber);
  border-radius: 2px;
}
.eyebrow--center { justify-content: center; }

.sec-head { margin-bottom: 64px; }
.sec-head--center { text-align: center; max-width: 780px; margin-inline: auto; margin-bottom: 64px; }
.sec-head p {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 62ch;
  margin-top: 20px;
}
.sec-head--center p { margin-inline: auto; }

.lead { font-size: 1.12rem; color: var(--muted); }

.accent { color: var(--amber); }
.stroke-text {
  color: transparent;
  -webkit-text-stroke: 1.5px var(--line-2);
}

/* ---------- 5. BUTTONS ---------- */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 34px;
  border-radius: 100px;
  font-size: .84rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: transform .35s var(--ease-out), box-shadow .35s var(--ease-out),
              background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease);
  will-change: transform;
}
.btn svg { width: 17px; height: 17px; flex: none; }

.btn--primary {
  background: linear-gradient(135deg, var(--amber) 0%, var(--amber-2) 100%);
  color: #0a0700;
  box-shadow: 0 10px 34px -10px var(--amber-glow);
}
.btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 48px -10px var(--amber-glow);
}

.btn--ghost {
  border: 1px solid var(--line-2);
  color: var(--text);
  background: rgba(255,255,255,.03);
  backdrop-filter: blur(8px);
}
.btn--ghost:hover {
  border-color: var(--amber);
  color: var(--amber);
  transform: translateY(-3px);
  background: var(--amber-dim);
}

.btn--wa {
  background: #22c15e;
  color: #04140a;
  box-shadow: 0 10px 34px -10px rgba(34,193,94,.5);
}
.btn--wa:hover { transform: translateY(-3px); box-shadow: 0 18px 48px -10px rgba(34,193,94,.6); }

.btn--sm { padding: 12px 24px; font-size: .76rem; }
.btn--block { width: 100%; }

/* ---------- 6. REVEAL ANIMATION ---------- */
.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity .9s var(--ease-out), transform .9s var(--ease-out);
}
.reveal.in { opacity: 1; transform: none; }
.reveal[data-d="1"] { transition-delay: .08s; }
.reveal[data-d="2"] { transition-delay: .16s; }
.reveal[data-d="3"] { transition-delay: .24s; }
.reveal[data-d="4"] { transition-delay: .32s; }
.reveal[data-d="5"] { transition-delay: .40s; }
.reveal[data-d="6"] { transition-delay: .48s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }

  /* Deliberately NOT a blanket "kill every animation" rule.
     That approach crushed the ticker's animation to 0.01ms (so it jittered
     erratically rather than scrolling) and switched the hero slider's
     autoplay off completely. Only the decorative hover/zoom effects are
     toned down here; the ticker and the slider keep working. */
  .cell:hover img,
  .gal__it:hover img,
  .slide:hover .slide__bg,
  .slide__body,
  .cell__body p { transform: none; transition: none; }
}

/* ---------- 7. INFO STRIP ---------- */
.topbar {
  background: #050507;
  border-bottom: 1px solid var(--line);
  font-size: .78rem;
  letter-spacing: .03em;
}
.topbar__in {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 42px;
  padding-block: 7px;
  flex-wrap: wrap;
}
.topbar__list { display: flex; align-items: center; gap: 26px; flex-wrap: wrap; }
.topbar__item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
}
.topbar__item svg { width: 14px; height: 14px; color: var(--amber); flex: none; }
.topbar__item a:hover { color: var(--amber); }

.topbar__offer {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 14px;
  border-radius: 100px;
  background: var(--amber-dim);
  border: 1px solid rgba(255,138,0,.32);
  color: var(--amber-2);
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
  font-size: .7rem;
  white-space: nowrap;
}
.topbar__offer .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--amber);
  animation: pulse 2s var(--ease) infinite;
}
@keyframes pulse {
  0%,100% { opacity: 1; box-shadow: 0 0 0 0 var(--amber-glow); }
  50%     { opacity: .55; box-shadow: 0 0 0 6px transparent; }
}

/* ---------- 8. NAVIGATION ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 900;
  background: rgba(7,7,10,.72);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border-bottom: 1px solid transparent;
  transition: background .4s var(--ease), border-color .4s var(--ease), box-shadow .4s var(--ease);
}
.nav.is-stuck {
  background: rgba(7,7,10,.94);
  border-bottom-color: var(--line);
  box-shadow: 0 10px 40px -12px rgba(0,0,0,.9);
}
.nav__in {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: var(--nav-h);
  transition: height .4s var(--ease);
}
.nav.is-stuck .nav__in { height: 66px; }

/* logo */
.logo { display: inline-flex; align-items: center; gap: 12px; flex: none; }
/* the real brand mark */
.logo__img {
  height: 44px;
  width: auto;
  flex: none;
  display: block;
  transition: transform .4s var(--ease-out);
}
.logo:hover .logo__img { transform: rotate(-5deg) scale(1.06); }
.logo__text { display: flex; flex-direction: column; line-height: 1; }
.logo__name {
  font-family: var(--font-display);
  font-size: 1.06rem;
  letter-spacing: .07em;
  text-transform: uppercase;
}
.logo__sub {
  font-size: .58rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--amber);
  margin-top: 4px;
  font-weight: 600;
}

/* links */
.nav__links { display: flex; align-items: center; gap: 4px; }
.nav__links a {
  position: relative;
  padding: 9px 14px;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--muted);
  border-radius: 8px;
  transition: color .3s var(--ease);
}
.nav__links a::after {
  content: '';
  position: absolute;
  left: 14px; right: 14px; bottom: 3px;
  height: 2px;
  background: var(--amber);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .38s var(--ease-out);
}
.nav__links a:hover { color: var(--text); }
.nav__links a:hover::after,
.nav__links a.is-active::after { transform: scaleX(1); }
.nav__links a.is-active { color: var(--text); }

.nav__cta { display: flex; align-items: center; gap: 12px; }

/* burger */
.burger {
  display: none;
  width: 46px; height: 46px;
  border-radius: 11px;
  border: 1px solid var(--line-2);
  background: rgba(255,255,255,.03);
  place-items: center;
  flex: none;
}
.burger span {
  display: block;
  width: 19px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  position: relative;
  transition: background .2s var(--ease);
}
.burger span::before,
.burger span::after {
  content: '';
  position: absolute; left: 0;
  width: 19px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform .34s var(--ease-out), top .34s var(--ease-out);
}
.burger span::before { top: -6px; }
.burger span::after  { top: 6px; }
.burger.is-open span { background: transparent; }
.burger.is-open span::before { top: 0; transform: rotate(45deg); }
.burger.is-open span::after  { top: 0; transform: rotate(-45deg); }

/* drawer */
.drawer {
  position: fixed;
  inset: 0;
  z-index: 950;
  background: rgba(5,5,8,.985);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  display: flex;
  flex-direction: column;
  padding: 26px 26px 40px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-1.5%);
  transition: opacity .42s var(--ease), visibility .42s, transform .42s var(--ease-out);
  overflow-y: auto;
}
.drawer.is-open { opacity: 1; visibility: visible; transform: none; }
.drawer__top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 30px; }
.drawer__close {
  width: 46px; height: 46px;
  border-radius: 11px;
  border: 1px solid var(--line-2);
  display: grid; place-items: center;
  color: var(--text);
}
.drawer__close:hover { border-color: var(--amber); color: var(--amber); }
.drawer__links { display: flex; flex-direction: column; flex: 1; }
.drawer__links a {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 8vw, 2.5rem);
  letter-spacing: .02em;
  text-transform: uppercase;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
  color: var(--text);
  display: flex;
  align-items: baseline;
  gap: 14px;
  transition: color .3s var(--ease), padding-left .35s var(--ease-out);
}
.drawer__links a:hover { color: var(--amber); padding-left: 12px; }
.drawer__links a i {
  font-style: normal;
  font-family: var(--font-body);
  font-size: .7rem;
  font-weight: 700;
  color: var(--amber);
  letter-spacing: .1em;
}
.drawer__foot { display: flex; flex-direction: column; gap: 12px; margin-top: 30px; }

/* ---------- 9. HERO — layered auto slider ---------- */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.hero {
  position: relative;
  min-height: calc(100svh - var(--nav-h) - 42px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  isolation: isolate;
  padding: 66px 0 46px;
}

/* ---- background layers: each change slides in from the right ---- */
.hero__bgs { position: absolute; inset: 0; z-index: -3; overflow: hidden; }
.hero__bg {
  position: absolute;
  top: 0; bottom: 0;
  /* 8% overhang each side so a translate never exposes an edge */
  left: -8%; right: -8%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: translateX(6%);
  transition: opacity .6s var(--ease), transform .85s var(--ease-out);
  will-change: opacity, transform;
}
.hero__bg.is-on { opacity: 1; transform: translateX(0); }
/* the outgoing slide drifts the opposite way, so the change reads as a slide */
.hero__bg.is-prev { opacity: 0; transform: translateX(-6%); }

.hero__scrim {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(100deg, rgba(7,7,10,.96) 0%, rgba(7,7,10,.82) 44%, rgba(7,7,10,.38) 74%, rgba(7,7,10,.68) 100%),
    radial-gradient(100% 80% at 6% 52%, rgba(255,138,0,.16) 0%, transparent 56%),
    linear-gradient(180deg, rgba(7,7,10,.78) 0%, rgba(7,7,10,.44) 34%, rgba(7,7,10,.92) 86%, var(--bg) 100%);
}

.hero__grain {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(255,255,255,.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.028) 1px, transparent 1px);
  background-size: 68px 68px;
  mask-image: radial-gradient(120% 75% at 50% 40%, #000 0%, transparent 78%);
  -webkit-mask-image: radial-gradient(120% 75% at 50% 40%, #000 0%, transparent 78%);
  pointer-events: none;
}

/* ---- stacked slide content (grid keeps height = tallest slide) ---- */
.hslider {
  position: relative;
  z-index: 2;
  display: grid;
  align-content: center;
  flex: 1;
  padding-bottom: 14px;
}

.hsl {
  grid-area: 1 / 1;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(46px);
  transition: opacity .5s var(--ease), transform .75s var(--ease-out), visibility .5s;
}
.hsl.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: none;
}

.hsl-inner { max-width: 800px; }

/* staggered layer entrance */
.hsl-inner > * { opacity: 0; transform: translateY(26px); }
.hsl.is-active .hsl-inner > * { animation: layerIn .52s var(--ease-out) forwards; }
.hsl.is-active .hsl-inner > *:nth-child(1) { animation-delay: .05s; }
.hsl.is-active .hsl-inner > *:nth-child(2) { animation-delay: .11s; }
.hsl.is-active .hsl-inner > *:nth-child(3) { animation-delay: .17s; }
.hsl.is-active .hsl-inner > *:nth-child(4) { animation-delay: .23s; }
@keyframes layerIn {
  from { opacity: 0; transform: translateY(26px); }
  to   { opacity: 1; transform: none; }
}

.hsl-kicker {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--amber-2);
  text-shadow: 0 2px 12px rgba(0,0,0,.85);
  margin-bottom: 24px;
}
.hsl-kicker i {
  font-family: var(--font-display);
  font-style: normal;
  font-size: .95rem;
  letter-spacing: .06em;
  color: #0a0700;
  background: var(--amber);
  border-radius: 100px;
  padding: 3px 11px 4px;
  line-height: 1;
}

.hsl-title {
  font-size: clamp(2.5rem, 6.6vw, 6.1rem);
  line-height: .95;
  margin-bottom: 24px;
  text-shadow: 0 4px 30px rgba(0,0,0,.6);
}
.hsl-title em {
  font-style: normal;
  background: linear-gradient(100deg, var(--amber) 8%, var(--amber-3) 52%, var(--amber) 92%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hsl-text {
  font-size: clamp(1rem, 1.35vw, 1.14rem);
  color: #cfcfd9;
  max-width: 56ch;
  margin: 0 0 36px;
  text-shadow: 0 2px 14px rgba(0,0,0,.8);
}

.hsl-btns { display: flex; gap: 14px; flex-wrap: wrap; }

/* ---- bottom control cluster ---- */
.hero__ui {
  position: static;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 40px;
  margin-bottom: 22px;
}

.hero .hslide__nav {
  position: absolute;
  top: 50%;
  right: 34px;
  transform: translateY(-50%);
  flex-direction: column;
  gap: 10px;
  z-index: 5;
}

.hslide__dots { display: flex; align-items: center; gap: 6px; }
/* 44px transparent hit area around a 3px visual bar, so it is actually tappable */
.hslide__dot {
  width: 42px;
  height: 44px;
  padding: 0;
  border: 0;
  background: none;
  display: grid;
  place-items: center;
  transition: opacity .3s var(--ease);
}
.hslide__dot > span {
  position: relative;
  display: block;
  width: 100%;
  height: 3px;
  border-radius: 3px;
  background: rgba(255,255,255,.28);
  overflow: hidden;
  transition: background .3s var(--ease);
}
.hslide__dot:hover > span { background: rgba(255,255,255,.5); }
.hslide__dot i {
  position: absolute;
  inset: 0 auto 0 0;
  display: block;
  width: 0;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--amber), var(--amber-2));
}
.hslide__dot.is-done i { width: 100%; }
.hslide__dot.is-active > span { background: rgba(255,255,255,.34); }
.hslide__dot.is-active i { animation: dotFill var(--slide-ms, 7000ms) linear forwards; }
@keyframes dotFill { from { width: 0; } to { width: 100%; } }

.hslide__count {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  font-size: .74rem;
  letter-spacing: .08em;
  color: rgba(255,255,255,.65);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.hslide__count b {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--amber);
}
.hslide__count i { font-style: normal; }

.hslide__nav { display: flex; gap: 8px; }
.hslide__nav button {
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.38);
  background: rgba(7,7,10,.66);
  color: #fff;
  display: grid;
  place-items: center;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: background .3s var(--ease), border-color .3s var(--ease),
              color .3s var(--ease), transform .3s var(--ease-out);
}
.hslide__nav button svg { width: 19px; height: 19px; }
.hslide__nav button:hover {
  background: var(--amber);
  border-color: var(--amber);
  color: #0a0700;
  transform: scale(1.08);
}
.hero .hslide__nav button:hover { transform: translateX(2px) scale(1.06); }

.hero__stats {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 1px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--line);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.hero__stat {
  background: rgba(10,10,14,.62);
  padding: 24px 22px;
  transition: background .4s var(--ease);
}
.hero__stat:hover { background: rgba(255,138,0,.09); }
.hero__stat b {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.6vw, 2.1rem);
  color: var(--amber);
  line-height: 1;
  margin-bottom: 9px;
}
.hero__stat > span {
  font-size: .7rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}

/* ---------- 10. MARQUEE ---------- */
.marquee {
  position: relative;
  background: linear-gradient(90deg, var(--amber) 0%, var(--amber-2) 50%, var(--amber) 100%);
  color: #0a0700;
  overflow: hidden;
  padding: 15px 0;
  border-block: 1px solid rgba(0,0,0,.25);
}
.marquee__track {
  display: flex;
  width: max-content;
  /* duration is set precisely from the ticker's width in JS (~34px/sec);
     this is the no-JS fallback */
  animation: slide 140s linear infinite;
}
.marquee:hover .marquee__track { animation-play-state: paused; }
@keyframes slide { to { transform: translateX(-50%); } }
.marquee__item {
  display: inline-flex;
  align-items: center;
  gap: 30px;
  padding-inline: 30px;
  font-family: var(--font-display);
  font-size: clamp(.95rem, 1.5vw, 1.32rem);
  letter-spacing: .07em;
  text-transform: uppercase;
  white-space: nowrap;
}
.marquee__item::after {
  content: '';
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #0a0700;
  opacity: .6;
  flex: none;
}

/* ---------- 11. ABOUT ---------- */
.about__grid {
  display: grid;
  grid-template-columns: 1.02fr 1fr;
  gap: 80px;
  align-items: center;
}
.about__media { position: relative; }
.about__img {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-lg);
}
.about__img img { width: 100%; height: 100%; object-fit: cover; }
.about__img::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(7,7,10,.6) 100%);
}

.about__badge {
  position: absolute;
  right: -26px;
  bottom: 46px;
  background: var(--surface);
  border: 1px solid var(--line-2);
  border-radius: var(--radius-sm);
  padding: 22px 26px;
  box-shadow: var(--shadow-lg);
  text-align: center;
  backdrop-filter: blur(12px);
}
.about__badge b {
  display: block;
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--amber);
  line-height: 1;
}
.about__badge span {
  font-size: .64rem;
  letter-spacing: .19em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}
.about__deco {
  position: absolute;
  top: -22px; left: -22px;
  width: 130px; height: 130px;
  border-top: 2px solid var(--amber);
  border-left: 2px solid var(--amber);
  border-radius: var(--radius) 0 0 0;
  opacity: .5;
}

.about__body h2 { margin-bottom: 26px; }
.about__body p { color: var(--muted); }
.about__quote {
  border-left: 2px solid var(--amber);
  padding-left: 22px;
  margin: 30px 0;
  font-size: 1.06rem;
  color: #cbcbd5;
  font-style: italic;
}

.about__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 26px;
  margin: 32px 0 38px;
}
.about__list li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  font-size: .92rem;
  color: #cfcfd9;
}
.about__list svg { width: 19px; height: 19px; color: var(--amber); flex: none; margin-top: 2px; }

/* ---------- 12. STATS BAND ---------- */
.stats {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
  border-block: 1px solid var(--line);
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
}
.stats__cell {
  padding: 54px 30px;
  text-align: center;
  border-right: 1px solid var(--line);
  position: relative;
  transition: background .45s var(--ease);
}
.stats__cell:last-child { border-right: 0; }
.stats__cell:hover { background: rgba(255,138,0,.05); }
.stats__cell b {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.6vw, 3.7rem);
  line-height: 1;
  color: var(--text);
  margin-bottom: 12px;
}
.stats__cell b .suf { color: var(--amber); }
.stats__cell > span {
  font-size: .72rem;
  letter-spacing: .19em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}
.stats__cell::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 0; height: 2px;
  background: var(--amber);
  transition: width .5s var(--ease-out);
}
.stats__cell:hover::before { width: 60%; }

/* ---------- 13. PROGRAMS ---------- */
.progs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 22px;
}
.prog {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 38px 34px 34px;
  overflow: hidden;
  transition: transform .5s var(--ease-out), border-color .4s var(--ease), background .4s var(--ease);
}
.prog::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--amber), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .55s var(--ease-out);
}
.prog::after {
  content: '';
  position: absolute;
  right: -60px; bottom: -60px;
  width: 190px; height: 190px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--amber-glow) 0%, transparent 70%);
  opacity: 0;
  transition: opacity .6s var(--ease);
  pointer-events: none;
}
.prog:hover {
  transform: translateY(-8px);
  border-color: rgba(255,138,0,.34);
  background: var(--surface-2);
}
.prog:hover::before { transform: scaleX(1); }
.prog:hover::after  { opacity: .5; }

.prog__ico {
  width: 56px; height: 56px;
  border-radius: 15px;
  display: grid; place-items: center;
  background: var(--amber-dim);
  border: 1px solid rgba(255,138,0,.26);
  color: var(--amber);
  margin-bottom: 26px;
  transition: transform .5s var(--ease-out), background .4s var(--ease);
}
.prog__ico svg { width: 26px; height: 26px; }
.prog:hover .prog__ico { transform: translateY(-3px) scale(1.06); background: rgba(255,138,0,.2); }

.prog h3 { margin-bottom: 13px; font-size: 1.32rem; }
.prog p { color: var(--muted); font-size: .93rem; margin: 0; }
.prog__no {
  position: absolute;
  top: 26px; right: 30px;
  font-family: var(--font-display);
  font-size: 2.6rem;
  color: rgba(255,255,255,.085);
  line-height: 1;
}

/* ---------- 14. FACILITIES BENTO ---------- */
.bento {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  grid-auto-rows: 232px;
  gap: 18px;
}
.cell {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--surface);
  isolation: isolate;
}
.cell img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 66%;
  transition: transform 1.1s var(--ease-out);
  z-index: -2;
}
.cell::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(7,7,10,.1) 0%, rgba(7,7,10,.72) 62%, rgba(7,7,10,.95) 100%);
  z-index: -1;
  transition: background .5s var(--ease);
}
.cell:hover img { transform: scale(1.07); }
.cell:hover::after { background: linear-gradient(180deg, rgba(255,138,0,.16) 0%, rgba(7,7,10,.75) 60%, rgba(7,7,10,.96) 100%); }

.cell__body {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 26px 28px 30px;
}
.cell__body h3 { font-size: 1.14rem; margin-bottom: 7px; }
.cell__body p {
  font-size: .84rem;
  color: #b6b6c2;
  margin: 0;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height .5s var(--ease-out), opacity .4s var(--ease), margin-top .5s var(--ease-out);
}
.cell:hover .cell__body p { max-height: 90px; opacity: 1; margin-top: 8px; }

/* Touch devices have no hover: never leave the description hidden. */
@media (hover: none), (max-width: 760px) {
  .cell__body p { max-height: 110px; opacity: 1; margin-top: 8px; }
}

.cell__tag {
  position: absolute;
  top: 20px; left: 22px;
  padding: 6px 13px;
  border-radius: 100px;
  background: rgba(7,7,10,.6);
  border: 1px solid var(--line-2);
  backdrop-filter: blur(8px);
  font-size: .63rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--amber-2);
}
.cell--w2 { grid-column: span 2; }
.cell--h2 { grid-row: span 2; }
.cell--w2.cell--h2 { grid-column: span 2; grid-row: span 2; }

/* solid feature cells (no photo) */
.cell--solid { background: linear-gradient(150deg, var(--surface-2), var(--surface)); }
.cell--solid .cell__body { position: relative; height: 100%; display: flex; flex-direction: column; justify-content: flex-end; }
.cell--solid::after { display: none; }
.cell--solid .cell__body p { max-height: 90px; opacity: 1; margin-top: 8px; }
.cell__ico {
  width: 50px; height: 50px;
  border-radius: 14px;
  display: grid; place-items: center;
  background: var(--amber-dim);
  border: 1px solid rgba(255,138,0,.26);
  color: var(--amber);
  margin-bottom: 20px;
}
.cell__ico svg { width: 24px; height: 24px; }

/* ---------- 15. MOTTO BAND ---------- */
.motto {
  position: relative;
  padding: 112px 0;
  overflow: hidden;
  isolation: isolate;
  text-align: center;
}
.motto__bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  z-index: -2;
}
.motto::after {
  content: '';
  position: absolute; inset: 0;
  z-index: -1;
  background:
    radial-gradient(90% 70% at 50% 50%, rgba(255,138,0,.16) 0%, transparent 62%),
    linear-gradient(180deg, var(--bg) 0%, rgba(7,7,10,.82) 30%, rgba(7,7,10,.82) 70%, var(--bg) 100%);
}
.motto h2 {
  font-size: clamp(2.4rem, 7vw, 6rem);
  max-width: 20ch;
  margin-inline: auto;
}
.motto h2 span { color: var(--amber); display: block; }
.motto p { color: #c3c3cd; max-width: 56ch; margin: 28px auto 40px; font-size: 1.08rem; }

/* ---------- 16. PRICING ---------- */
.price__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 26px;
  max-width: 880px;
  margin-inline: auto;
}
.plan {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 44px 40px 40px;
  overflow: hidden;
  transition: transform .5s var(--ease-out), border-color .4s var(--ease), box-shadow .5s var(--ease-out);
}
.plan:hover { transform: translateY(-6px); border-color: var(--line-2); }
.plan--featured {
  border-color: rgba(255,138,0,.44);
  background: linear-gradient(160deg, rgba(255,138,0,.09) 0%, var(--surface) 46%);
  box-shadow: 0 26px 70px -28px var(--amber-glow);
}
.plan__flag {
  position: absolute;
  top: 0; right: 0;
  background: linear-gradient(135deg, var(--amber), var(--amber-2));
  color: #0a0700;
  font-size: .64rem;
  font-weight: 800;
  letter-spacing: .17em;
  text-transform: uppercase;
  padding: 9px 20px;
  border-bottom-left-radius: 14px;
}
.plan__name { font-size: 1.5rem; margin-bottom: 7px; }
.plan__desc { color: var(--muted); font-size: .88rem; margin-bottom: 26px; }

.plan__old {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: .95rem;
  color: var(--muted-2);
  margin-bottom: 6px;
}
.plan__old s { text-decoration-thickness: 2px; text-decoration-color: #ff4d4d; }
.plan__old b {
  font-size: .66rem;
  font-weight: 800;
  letter-spacing: .12em;
  color: #ff8080;
  background: rgba(255,77,77,.18);
  border: 1px solid rgba(255,77,77,.45);
  padding: 3px 9px;
  border-radius: 100px;
}
.plan__amt {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-family: var(--font-display);
  line-height: 1;
  color: var(--text);
  margin-bottom: 8px;
}
.plan__amt .cur { font-size: 1.32rem; letter-spacing: .05em; color: var(--amber); margin-top: 11px; }
.plan__amt .num { font-size: clamp(3rem, 6vw, 4.2rem); }
.plan__per { color: var(--muted); font-size: .86rem; margin-bottom: 30px; }

.plan__list { display: flex; flex-direction: column; gap: 14px; margin-bottom: 34px; }
.plan__list li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  font-size: .9rem;
  color: #cfcfd9;
}
.plan__list svg { width: 18px; height: 18px; color: var(--amber); flex: none; margin-top: 2px; }

.price__note {
  text-align: center;
  color: var(--muted-2);
  font-size: .8rem;
  margin-top: 34px;
}
.price__bn {
  text-align: center;
  font-size: 1.06rem;
  color: var(--amber-2);
  margin-bottom: 44px;
}

/* ---------- 17. GALLERY ---------- */
.gal {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 14px;
  grid-auto-rows: 200px;
}
.gal__it {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  border: 1px solid var(--line);
  background: var(--surface);
  isolation: isolate;
}
.gal__it img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease-out), filter .5s var(--ease);
}
.gal__it::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(7,7,10,.85) 100%);
  opacity: 0;
  transition: opacity .45s var(--ease);
}
.gal__it:hover img { transform: scale(1.08); }
.gal__it:hover::after { opacity: 1; }
.gal__it figcaption {
  position: absolute;
  left: 18px; bottom: 15px; right: 18px;
  font-size: .76rem;
  font-weight: 600;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: #fff;
  opacity: 0;
  transform: translateY(9px);
  transition: opacity .45s var(--ease), transform .45s var(--ease-out);
  z-index: 2;
}
.gal__it:hover figcaption { opacity: 1; transform: none; }
.gal__it--w2 { grid-column: span 2; }
.gal__it--h2 { grid-row: span 2; }

/* ---------- 18. LIGHTBOX ---------- */
.lb {
  position: fixed;
  inset: 0;
  z-index: 1200;
  background: rgba(4,4,6,.97);
  backdrop-filter: blur(10px);
  display: grid;
  place-items: center;
  padding: 68px 76px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .35s var(--ease), visibility .35s;
}
.lb.is-open { opacity: 1; visibility: visible; }
.lb__img {
  max-width: 100%;
  max-height: calc(100vh - 150px);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
  object-fit: contain;
  transform: scale(.94);
  transition: transform .42s var(--ease-out);
}
.lb.is-open .lb__img { transform: scale(1); }
.lb__cap {
  position: absolute;
  bottom: 30px; left: 50%;
  transform: translateX(-50%);
  font-size: .8rem;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: center;
}
.lb__count {
  position: absolute;
  top: 26px; left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-size: .95rem;
  letter-spacing: .1em;
  color: var(--amber);
}
.lb__btn {
  position: absolute;
  width: 54px; height: 54px;
  border-radius: 50%;
  border: 1px solid var(--line-2);
  background: rgba(255,255,255,.04);
  color: var(--text);
  display: grid; place-items: center;
  transition: background .3s var(--ease), border-color .3s var(--ease), transform .3s var(--ease-out);
}
.lb__btn:hover { background: var(--amber); border-color: var(--amber); color: #0a0700; transform: scale(1.08); }
.lb__btn svg { width: 20px; height: 20px; }
.lb__prev { left: 20px; top: 50%; margin-top: -27px; }
.lb__next { right: 20px; top: 50%; margin-top: -27px; }
.lb__close { top: 22px; right: 22px; }

/* ---------- 19. HOURS + MAP ---------- */
.visit__grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 56px;
  align-items: start;
}
.hours {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.hours__head {
  padding: 26px 30px;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.hours__head h3 { font-size: 1.14rem; }
.hours__open {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: #22c15e;
  padding: 6px 13px;
  border-radius: 100px;
  background: rgba(34,193,94,.11);
  border: 1px solid rgba(34,193,94,.3);
}
.hours__open i {
  width: 6px; height: 6px; border-radius: 50%;
  background: #22c15e;
  animation: pulse 2s var(--ease) infinite;
}
.hours__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 17px 30px;
  border-bottom: 1px solid var(--line);
  font-size: .9rem;
}
.hours__row:last-child { border-bottom: 0; }
.hours__row dt { color: var(--muted); display: flex; align-items: center; gap: 10px; }
.hours__row dt svg { width: 15px; height: 15px; color: var(--amber); flex: none; }
.hours__row dd { margin: 0; font-weight: 600; white-space: nowrap; }
.hours__row--hl { background: rgba(255,138,0,.06); }
.hours__row--hl dd { color: var(--amber); }
.hours__shift {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  background: var(--bg-2);
}
.hours__shift div {
  padding: 18px 16px;
  text-align: center;
  border-right: 1px solid var(--line);
}
.hours__shift div:last-child { border-right: 0; }
.hours__shift b {
  display: block;
  font-size: .66rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 6px;
  font-weight: 700;
}
.hours__shift span { font-size: .82rem; color: #cfcfd9; }

.map {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  position: relative;
}
.map iframe { width: 100%; height: 400px; border: 0; display: block; filter: grayscale(.2) invert(.88) hue-rotate(180deg) contrast(1.02) brightness(1.15); }

/* Branded location card over the map so the gym is unmistakable */
.map__label {
  position: absolute;
  left: 16px; right: 16px; bottom: 42px;
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 14px 18px;
  border-radius: 13px;
  background: rgba(7,7,10,.9);
  border: 1px solid var(--line-2);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow-md);
  pointer-events: none;
}
.map__label > svg { width: 22px; height: 22px; color: var(--amber); flex: none; }
.map__label b {
  display: block;
  font-size: .84rem;
  letter-spacing: .05em;
  text-transform: uppercase;
  margin-bottom: 3px;
}
.map__label span { font-size: .75rem; color: var(--muted); line-height: 1.4; }

.contact-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 16px;
  margin-top: 26px;
}
.ccard--wide { grid-column: span 2; }
.ccard {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 22px 22px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transition: border-color .35s var(--ease), background .35s var(--ease), transform .4s var(--ease-out);
}
.ccard:hover { border-color: rgba(255,138,0,.36); background: var(--surface-2); transform: translateY(-3px); }
.ccard__ico { color: var(--amber); margin-bottom: 10px; }
.ccard__ico svg { width: 21px; height: 21px; }
.ccard b { font-size: .66rem; letter-spacing: .17em; text-transform: uppercase; color: var(--muted); font-weight: 700; }
.ccard span { font-size: .92rem; color: var(--text); overflow-wrap: break-word; }

/* ---------- 20. CONTACT CTA ---------- */
.cta {
  position: relative;
  background: linear-gradient(140deg, rgba(255,138,0,.13) 0%, var(--surface) 42%, var(--surface) 100%);
  border: 1px solid rgba(255,138,0,.24);
  border-radius: 26px;
  padding: 66px 60px;
  overflow: hidden;
  isolation: isolate;
}
.cta::before {
  content: '';
  position: absolute;
  top: -140px; right: -110px;
  width: 420px; height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--amber-glow) 0%, transparent 68%);
  opacity: .45;
  z-index: -1;
}
.cta__grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 56px;
  align-items: center;
}
.cta h2 { margin-bottom: 20px; }
.cta p { color: #c3c3cd; }

.form { display: grid; gap: 14px; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field label {
  font-size: .66rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 700;
}
.field input, .field select, .field textarea {
  background: rgba(7,7,10,.6);
  border: 1px solid var(--line-2);
  border-radius: 11px;
  padding: 13px 16px;
  font-size: .92rem;
  transition: border-color .3s var(--ease), background .3s var(--ease);
  width: 100%;
}
.field textarea { resize: vertical; min-height: 84px; }
.field input::placeholder, .field textarea::placeholder { color: var(--muted-2); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--amber);
  background: rgba(255,138,0,.05);
}
.field select option { background: var(--surface); color: var(--text); }

/* ---------- 21. FOOTER ---------- */
.foot {
  background: #050507;
  border-top: 1px solid var(--line);
  padding: 78px 0 0;
}
.foot__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.3fr;
  gap: 48px;
  padding-bottom: 56px;
}
.foot__about p { color: var(--muted); font-size: .9rem; margin-top: 22px; max-width: 34ch; }
.foot__logo { display: inline-block; }
.foot__logo img { width: 152px; height: auto; display: block; }
.foot h4 {
  font-size: .72rem;
  letter-spacing: .2em;
  color: var(--amber);
  margin-bottom: 22px;
  font-family: var(--font-body);
  font-weight: 800;
}
.foot__links { display: flex; flex-direction: column; gap: 12px; }
.foot__links a { color: var(--muted); font-size: .9rem; transition: color .3s var(--ease), padding-left .3s var(--ease-out); }
.foot__links a:hover { color: var(--amber); padding-left: 5px; }

.foot__contact { display: flex; flex-direction: column; gap: 15px; }
.foot__contact li { display: flex; gap: 12px; font-size: .9rem; color: var(--muted); align-items: flex-start; }
.foot__contact svg { width: 17px; height: 17px; color: var(--amber); flex: none; margin-top: 3px; }
.foot__contact a:hover { color: var(--amber); }

.socials { display: flex; gap: 10px; margin-top: 22px; }
.socials a {
  width: 40px; height: 40px;
  border-radius: 11px;
  border: 1px solid var(--line-2);
  display: grid; place-items: center;
  color: var(--muted);
  transition: all .35s var(--ease);
}
.socials a:hover { background: var(--amber); border-color: var(--amber); color: #0a0700; transform: translateY(-3px); }
.socials svg { width: 18px; height: 18px; }

.foot__bar {
  border-top: 1px solid var(--line);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  font-size: .8rem;
  color: var(--muted-2);
}

/* ---------- 22. FLOATING ACTIONS ---------- */
.fab {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 800;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: opacity .35s var(--ease), transform .45s var(--ease-out), visibility .35s;
}
/* get out of the way while the visitor is scrolling down through content */
.fab.is-hidden {
  opacity: 0;
  visibility: hidden;
  transform: translateY(24px) scale(.88);
  pointer-events: none;
}
/* shared geometry for EVERY floating action. This cannot be a bare `.fab a`
   selector: the back-to-top control is a <button>, so it was getting none of
   this and rendering as an unstyled square with a hairline border. */
.fab a,
.fab__top {
  position: relative;
  width: 54px;
  height: 54px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-md);
  cursor: pointer;
  transition: transform .4s var(--ease-out), box-shadow .4s var(--ease-out),
              background .3s var(--ease), border-color .3s var(--ease), color .3s var(--ease);
}
.fab a:hover,
.fab__top:hover { transform: scale(1.1) translateY(-2px); }
.fab a svg { width: 25px; height: 25px; }

.fab__wa { background: #22c15e; color: #04140a; }
.fab__call { background: linear-gradient(135deg, var(--amber), var(--amber-2)); color: #0a0700; }

.fab__top {
  /* display:none (rather than opacity) so it reserves no layout space while
     hidden - otherwise the stack is taller than it looks and covers more
     content than it appears to. */
  display: none;
  background: rgba(24, 24, 32, .94);
  border: 1px solid var(--line-2);
  color: var(--text);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.fab__top.is-on {
  display: grid;
  animation: fabIn .38s var(--ease-out);
}
/* opacity only. Any transform here (scale OR translate) left the button
   visually offset from its flex slot, so it collided with the button below
   instead of sitting the normal 12px gap away. */
@keyframes fabIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.fab__top:hover {
  background: var(--amber);
  border-color: var(--amber);
  color: #0a0700;
}
.fab__top svg { width: 21px; height: 21px; }

.fab a::after,
.fab__top::after {
  content: attr(data-tip);
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%) translateX(6px);
  background: var(--surface-2);
  border: 1px solid var(--line-2);
  color: var(--text);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .05em;
  padding: 7px 13px;
  border-radius: 8px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s var(--ease), transform .3s var(--ease-out);
}
.fab a:hover::after,
.fab__top:hover::after { opacity: 1; transform: translateY(-50%) translateX(0); }

/* ---------- 23. EXPERIENCE SLIDER ---------- */
.slider__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 44px;
}
.slider__head h2 { margin-top: 4px; }

.slider__nav { display: flex; gap: 11px; flex: none; }
.slider__arrow {
  width: 52px; height: 52px;
  border-radius: 50%;
  border: 1px solid var(--line-2);
  background: rgba(255,255,255,.03);
  color: var(--text);
  display: grid; place-items: center;
  transition: background .3s var(--ease), border-color .3s var(--ease),
              color .3s var(--ease), transform .3s var(--ease-out);
}
.slider__arrow svg { width: 20px; height: 20px; }
.slider__arrow:hover:not(:disabled) {
  background: var(--amber);
  border-color: var(--amber);
  color: #0a0700;
  transform: scale(1.07);
}
.slider__arrow:disabled { opacity: .32; cursor: not-allowed; }

/* the scroll-snap rail */
.slider {
  /* one variable drives both the track gutter and the snap offset,
     so slides always line up with the page container */
  --rail-pad: max(24px, calc((100% - 1512px) / 2));
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: var(--rail-pad);
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
  cursor: grab;
  padding-block: 4px;
  overscroll-behavior-x: contain;
}
.slider::-webkit-scrollbar { display: none; }
.slider.is-dragging { cursor: grabbing; scroll-snap-type: none; scroll-behavior: auto; }
.slider.is-dragging .slide { pointer-events: none; }

.slider__track {
  display: flex;
  gap: 22px;
  padding-inline: var(--rail-pad);
  width: max-content;
}

.slide {
  position: relative;
  flex: 0 0 clamp(252px, 27vw, 392px);
  aspect-ratio: 3 / 4;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--surface);
  scroll-snap-align: start;
  scroll-snap-stop: always;
  isolation: isolate;
  transition: transform .5s var(--ease-out), border-color .4s var(--ease), box-shadow .5s var(--ease-out);
}
.slide:hover {
  transform: translateY(-6px);
  border-color: rgba(255,138,0,.4);
  box-shadow: 0 26px 60px -24px rgba(0,0,0,.9);
}

.slide__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 60%;
  z-index: -2;
  transition: transform 1.2s var(--ease-out);
}
.slide:hover .slide__bg { transform: scale(1.07); }

.slide::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(7,7,10,.05) 0%, rgba(7,7,10,.34) 38%, rgba(7,7,10,.86) 74%, rgba(7,7,10,.98) 100%);
  transition: background .5s var(--ease);
}
.slide:hover::after {
  background: linear-gradient(180deg, rgba(255,138,0,.14) 0%, rgba(7,7,10,.42) 38%, rgba(7,7,10,.9) 74%, rgba(7,7,10,.99) 100%);
}

/* category chip */
.slide[data-tag]::before {
  content: attr(data-tag);
  position: absolute;
  top: 20px; left: 22px;
  z-index: 2;
  padding: 6px 14px;
  border-radius: 100px;
  background: rgba(7,7,10,.62);
  border: 1px solid var(--line-2);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .17em;
  text-transform: uppercase;
  color: var(--amber-2);
}

.slide__body {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 28px 28px 32px;
  z-index: 2;
}
.slide__no {
  display: block;
  font-family: var(--font-display);
  font-size: .88rem;
  letter-spacing: .12em;
  color: var(--amber);
  margin-bottom: 12px;
  opacity: .9;
}
.slide__body h3 {
  font-size: clamp(1.3rem, 2vw, 1.6rem);
  margin-bottom: 11px;
  line-height: .98;
}
.slide__body p {
  font-size: .92rem;
  color: #cbcbd6;
  margin: 0;
  max-width: 30ch;
  text-shadow: 0 1px 10px rgba(0,0,0,.7);
}

/* dots + progress */
.slider__foot {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-top: 36px;
}
.slider__dots { display: flex; align-items: center; gap: 9px; flex: none; }
.slider__dot {
  width: 9px; height: 9px;
  border-radius: 100px;
  background: rgba(255,255,255,.2);
  border: 0;
  padding: 0;
  transition: width .4s var(--ease-out), background .35s var(--ease);
}
.slider__dot:hover { background: rgba(255,255,255,.42); }
.slider__dot.is-active { width: 30px; background: var(--amber); }

.slider__progress {
  position: relative;
  flex: 1;
  height: 2px;
  border-radius: 2px;
  background: rgba(255,255,255,.09);
  overflow: hidden;
}
.slider__progress i {
  position: absolute;
  inset: 0 auto 0 0;
  display: block;
  width: 0;
  background: linear-gradient(90deg, var(--amber), var(--amber-2));
  border-radius: 2px;
}

/* ---------- 24. BRANCHES ---------- */
.branches {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 20px;
}
.branch {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 32px 30px;
  overflow: hidden;
  transition: transform .5s var(--ease-out), border-color .4s var(--ease), background .4s var(--ease);
}
.branch:hover {
  transform: translateY(-6px);
  border-color: rgba(255,138,0,.34);
  background: var(--surface-2);
}
.branch--main {
  grid-column: 1 / -1;
  /* two columns so the wide card isn't two-thirds empty */
  display: grid;
  grid-template-columns: 1.02fr 1fr;
  gap: 44px;
  align-items: center;
  padding: 40px 40px 36px;
  border-color: rgba(255,138,0,.4);
  background: linear-gradient(150deg, rgba(255,138,0,.1) 0%, var(--surface) 46%);
  box-shadow: 0 26px 70px -30px var(--amber-glow);
}
.branch__photo {
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border: 1px solid var(--line);
  order: 2;
}
.branch__photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.branch__info { order: 1; display: flex; flex-direction: column; min-width: 0; }

.branch__ico {
  width: 48px; height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: var(--amber-dim);
  border: 1px solid rgba(255,138,0,.26);
  color: var(--amber);
  margin-bottom: 20px;
}
.branch__ico svg { width: 23px; height: 23px; }
.branch__flag {
  position: absolute;
  top: 0; right: 0;
  padding: 8px 18px;
  border-bottom-left-radius: 14px;
  background: linear-gradient(135deg, var(--amber), var(--amber-2));
  color: #0a0700;
  font-size: .63rem;
  font-weight: 800;
  letter-spacing: .17em;
  text-transform: uppercase;
}
.branch__name { font-size: 1.6rem; margin-bottom: 6px; }
.branch--main .branch__name { font-size: clamp(1.9rem, 3vw, 2.5rem); }
.branch__area {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .17em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 22px;
}
.branch__meta { display: flex; flex-direction: column; gap: 14px; margin-bottom: 28px; }
.branch__meta li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: .92rem;
  color: #cfcfd9;
}
.branch__meta svg { width: 17px; height: 17px; color: var(--amber); flex: none; margin-top: 3px; }
.branch__meta a:hover { color: var(--amber); }
.branch__note { font-size: .9rem; color: var(--muted); margin: 0 0 26px; }
.branch__acts { display: flex; gap: 10px; flex-wrap: wrap; margin-top: auto; }

/* ---------- 25. RESPONSIVE ---------- */
/* short desktop viewports: tighten the hero so stats stay above the fold */
@media (min-width: 761px) {
  /* the floating contact buttons live in the bottom-right; stop these short of them
     so no viewport height can put content underneath */
  .hero__ui,
  .hero__stats { margin-right: 84px; }
}

@media (min-width: 981px) and (max-height: 860px) {
  .hero { min-height: auto; padding: 52px 0 116px; }
  .hsl-title { font-size: clamp(2.3rem, 4.7vw, 4rem); margin-bottom: 20px; }
  .hsl-text { font-size: 1rem; margin-bottom: 26px; }
  .hsl-kicker { margin-bottom: 18px; }
  .hero__ui { margin-top: 30px; margin-bottom: 18px; }
}

@media (max-width: 1180px) {
  .about__grid { gap: 56px; }
  .nav__links { gap: 0; }
  .nav__links a { padding: 9px 10px; font-size: .75rem; }
  .bento { grid-template-columns: repeat(3, minmax(0,1fr)); }
  .cell--w2 { grid-column: span 2; }
  .gal { grid-template-columns: repeat(3, minmax(0,1fr)); }
  .foot__grid { grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; }
  .foot__contact-col { grid-column: span 3; }
}

@media (max-width: 1100px) {
  /* eight nav links plus the CTA stop fitting around this width */
  .nav__links { display: none; }
  .nav__cta .btn { display: none; }
  .burger { display: grid; }
}

@media (max-width: 980px) {
  .section { padding: 88px 0; }
  .about__grid { grid-template-columns: 1fr; gap: 54px; }
  .about__img { aspect-ratio: 3/3.4; }
  .about__badge { right: 18px; bottom: -20px; }
  .progs { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .stats__grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .stats__cell:nth-child(1), .stats__cell:nth-child(2) { border-bottom: 1px solid var(--line); }
  .stats__cell:nth-child(2) { border-right: 0; }
  .visit__grid { grid-template-columns: 1fr; gap: 40px; }
  .cta { padding: 50px 36px; }
  .cta__grid { grid-template-columns: 1fr; gap: 40px; }
  .price__grid { grid-template-columns: 1fr; max-width: 480px; }
  .motto { padding: 110px 0; }
  .motto__bg { background-attachment: scroll; }
  .contact-cards { grid-template-columns: 1fr; }
  .ccard--wide { grid-column: span 1; }
  .slider__head { flex-direction: column; align-items: flex-start; gap: 24px; }
  .slide { flex: 0 0 clamp(230px, 58vw, 320px); }
  .slide__body { padding: 22px 22px 24px; }
  .hslide__dot { width: 34px; }
  .hero .hslide__nav { right: 20px; }
  .branches { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .branch--main { grid-template-columns: 1fr; gap: 30px; align-items: start; }
  .branch__photo { order: 1; aspect-ratio: 16 / 10; }
  .branch__info { order: 2; }
}

@media (max-width: 760px) {
  :root { --nav-h: 66px; }
  .section { padding: 72px 0; }
  .wrap { padding-inline: 18px; }
  .topbar__in { justify-content: center; }
  .topbar__list { justify-content: center; gap: 16px; }
  .topbar__item--hide { display: none; }
  .hero { padding: 48px 0 26px; min-height: auto; }
  .hslider { padding-bottom: 0; }
  .hsl-title { font-size: clamp(2.05rem, 9.6vw, 3.1rem); margin-bottom: 18px; }
  .hsl-text { font-size: .96rem; margin-bottom: 26px; }
  .hsl-kicker { font-size: .63rem; letter-spacing: .15em; margin-bottom: 18px; }
  /* arrows rejoin the control row so they clear the floating contact buttons */
  .hero .hslide__nav {
    position: static;
    transform: none;
    flex-direction: row;
    right: auto;
    gap: 8px;
  }
  .hero__ui { gap: 12px; margin-top: 30px; margin-bottom: 18px; margin-right: 60px; }
  .hero__stats { grid-template-columns: repeat(2, minmax(0,1fr)); margin-top: 30px; margin-right: 60px; }
  .hslide__dot { width: 30px; }
  .hslide__nav button { width: 42px; height: 42px; }
  .hslide__nav button svg { width: 17px; height: 17px; }
  .foot__bar { padding-bottom: 78px; }
  .logo__img { height: 38px; }
  .foot__logo img { width: 132px; }
  .branches { grid-template-columns: 1fr; }
  .branch { padding: 28px 24px 26px; }
  .branch--main { padding: 32px 24px 28px; }
  .bento { grid-template-columns: repeat(2, minmax(0,1fr)); grid-auto-rows: 200px; }
  .cell--w2 { grid-column: span 2; }
  .cell--h2 { grid-row: span 1; }
  .gal { grid-template-columns: repeat(2, minmax(0,1fr)); grid-auto-rows: 170px; }
  .gal__it--w2 { grid-column: span 1; }
  .progs { grid-template-columns: 1fr; }
  .about__list { grid-template-columns: 1fr; }
  .stats__cell { padding: 38px 18px; }
  .plan { padding: 36px 26px 32px; }
  .foot__grid { grid-template-columns: 1fr; gap: 34px; }
  .foot__contact-col { grid-column: span 1; }
  .foot__bar { justify-content: center; text-align: center; }
  .lb { padding: 60px 14px; }
  .lb__prev { left: 8px; } .lb__next { right: 8px; }
  .lb__btn { width: 44px; height: 44px; }
  .lb__prev, .lb__next { margin-top: -22px; }
  .hours__shift { grid-template-columns: 1fr; }
  .hours__shift div { border-right: 0; border-bottom: 1px solid var(--line); }
  .hours__shift div:last-child { border-bottom: 0; }
  .hours__row { padding: 15px 20px; font-size: .85rem; }
  .hours__head { padding: 20px 20px; }
  .form__row { grid-template-columns: 1fr; }
  .cta { padding: 40px 22px; border-radius: 20px; }
  .fab { right: 14px; bottom: 14px; }
  .fab a,
  .fab__top { width: 48px; height: 48px; }
  .fab a svg { width: 22px; height: 22px; }
  .fab__top svg { width: 19px; height: 19px; }
  .fab a::after,
  .fab__top::after { display: none; }
  .map iframe { height: 300px; }
  .slider__track { gap: 15px; }
  .slider { --rail-pad: 18px; }
  .slide { flex: 0 0 74vw; }
  .slider__arrow { width: 46px; height: 46px; }
  .slider__foot { gap: 18px; margin-top: 28px; }
  .slider__dot { width: 8px; height: 8px; }
  .slider__dot.is-active { width: 24px; }
}

@media (max-width: 400px) {
  .bento, .gal { grid-template-columns: 1fr; grid-auto-rows: 210px; }
  .hero__stats { grid-template-columns: 1fr 1fr; }
}

/* ---------- 24. PRINT ---------- */
@media print {
  .nav, .topbar, .fab, .lb, .drawer, .marquee { display: none !important; }
  body { background: #fff; color: #000; }
}
