/* ==========================================================================
   FITNESS LINE GYM — Premium Stylesheet
   Female-focused fitness & wellness · Ras Al Khaimah
   Author: Fitness Line Gym Web
   --------------------------------------------------------------------------
   TABLE OF CONTENTS
   01. Variables
   02. Reset & Base
   03. Typography & Utilities
   04. Buttons & Links
   05. Preloader
   06. Scroll Progress
   07. Custom Cursor
   08. Header & Navigation
   09. Mobile Navigation
   10. Home Hero (Slider)
   11. Page Hero (Interior)
   12. Marquee Strip
   13. Cards & Sections
   14. Services / Classes / Why-Choose
   15. Stats
   16. Spotlight & Split Sections
   17. Testimonials
   18. Social / Instagram Grid
   19. Location CTA
   20. About Page
   21. Membership Page
   22. Personal Training Page
   23. Massage Page
   24. Café Page
   25. Trainers Page
   26. Gallery & Lightbox
   27. Contact Page
   28. Footer
   29. Floating Buttons
   30. Reveal Animations & Keyframes
   31. Responsive
   32. Reduced Motion
   ========================================================================== */

/* ==========================================================================
   01. VARIABLES
   ========================================================================== */
:root {
  /* Brand palette */
  --pink: #ff7417;
  --coral: #ff9a3c;
  --accent: #ff7417;
  --accent-2: #ff9a3c;
  --grad: linear-gradient(120deg, var(--pink), var(--coral));
  --grad-soft: linear-gradient(120deg, rgba(255,116,23,.12), rgba(255,154,60,.12));

  --ink: #17171f;
  --ink-2: #20202b;
  --ink-3: #2a2a37;
  --bg: #faf8f6;
  --surface: #ffffff;
  --blush: #fff1e4;
  --text: #2b2b36;
  --muted: #6e6e7a;
  --line: rgba(23,23,31,.09);
  --line-dark: rgba(255,255,255,.12);
  --white: #ffffff;

  /* Shape & depth */
  --radius-lg: 26px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --shadow-sm: 0 6px 18px rgba(23,23,31,.06);
  --shadow-md: 0 18px 45px rgba(23,23,31,.10);
  --shadow-lg: 0 34px 80px rgba(23,23,31,.16);
  --shadow-accent: 0 14px 34px rgba(255,116,23,.32);

  /* Type */
  --font-head: "Outfit", "Manrope", system-ui, sans-serif;
  --font-body: "Manrope", system-ui, sans-serif;

  /* Layout */
  --container: 1240px;
  --header-h: 104px;
  --ease: cubic-bezier(.22,.61,.36,1);
  --ease-out: cubic-bezier(.16,1,.3,1);
}

/* ==========================================================================
   02. RESET & BASE
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: calc(var(--header-h) + 12px);
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body.no-scroll { overflow: hidden; }

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

::selection { background: var(--pink); color: #fff; }

::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: linear-gradient(var(--pink), var(--coral)); border-radius: 99px; border: 2px solid var(--bg); }

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

/* ==========================================================================
   03. TYPOGRAPHY & UTILITIES
   ========================================================================== */
h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  color: var(--ink);
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: -.02em;
}

h1 { font-size: clamp(2.5rem, 6.2vw, 5rem); }
h2 { font-size: clamp(1.9rem, 3.8vw, 3.1rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.55rem); }
h4 { font-size: 1.1rem; }

.container { width: min(100% - 2.5rem, var(--container)); margin-inline: auto; }

.section { padding-block: clamp(4.5rem, 9vw, 7.5rem); position: relative; }
.section-tight { padding-block: clamp(3rem, 6vw, 5rem); }
.section-light { background: var(--bg); }
.section-white { background: var(--surface); }
.section-dark { background: var(--ink); color: #c9c9d2; }
.section-dark h1, .section-dark h2, .section-dark h3, .section-dark h4 { color: #fff; }
.section-blush { background: linear-gradient(180deg, var(--blush), #fff8f1); }

.kicker {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  font-family: var(--font-head);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 1.1rem;
}
.kicker::before { content: ""; width: 34px; height: 2px; background: var(--grad); border-radius: 2px; }
.kicker-center::after { content: ""; width: 34px; height: 2px; background: var(--grad); border-radius: 2px; }
.kicker-light { color: #ffd1a6; }

.lead { font-size: clamp(1rem, 1.4vw, 1.13rem); color: var(--muted); line-height: 1.8; }
.section-dark .lead { color: #a9a9b6; }

.center { text-align: center; }
.center .kicker { justify-content: center; }

.muted { color: var(--muted); }
.text-accent { color: var(--pink); }
.bg-text { background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent; }

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(1.5rem, 3vw, 2.6rem); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.25rem, 2.4vw, 2rem); }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1.1rem, 2vw, 1.7rem); }

.section-head { max-width: 720px; margin-bottom: clamp(2.4rem, 5vw, 3.8rem); }
.section-head.center { margin-inline: auto; }
.section-head .lead { margin-top: .9rem; }

.check-list li {
  display: flex; gap: .8rem; align-items: flex-start;
  padding: .42rem 0;
}
.check-list .tick {
  flex: 0 0 auto;
  width: 22px; height: 22px; margin-top: 3px;
  border-radius: 50%;
  background: var(--grad);
  color: #fff;
  display: grid; place-items: center;
}
.check-list .tick svg { width: 12px; height: 12px; }
.check-list.dark li { color: #e7e7ee; }

/* ==========================================================================
   04. BUTTONS & LINKS
   ========================================================================== */
.btn {
  position: relative;
  display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
  padding: .95rem 1.9rem;
  border-radius: 999px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: .01em;
  line-height: 1;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .35s var(--ease), color .35s var(--ease), border-color .35s var(--ease);
  will-change: transform;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; transition: transform .35s var(--ease); }
.btn:hover svg { transform: translateX(4px); }
.btn:active { transform: scale(.97); }

.btn-accent { background: var(--grad); color: #fff; box-shadow: var(--shadow-accent); }
.btn-accent:hover { transform: translateY(-3px); box-shadow: 0 22px 44px rgba(255,116,23,.42); }

.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }

.btn-outline { border: 2px solid rgba(255,255,255,.55); color: #fff; }
.btn-outline:hover { background: #fff; color: var(--ink); transform: translateY(-3px); }

.btn-ghost { border: 2px solid var(--line); color: var(--ink); background: transparent; }
.btn-ghost:hover { border-color: var(--pink); color: var(--pink); transform: translateY(-3px); }

.btn-white { background: #fff; color: var(--ink); box-shadow: var(--shadow-sm); }
.btn-white:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }

.btn-sm { padding: .68rem 1.3rem; font-size: .85rem; }

.btn-block { width: 100%; }

/* Underline link */
.u-link {
  position: relative;
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--font-head);
  font-weight: 700; font-size: .92rem;
  color: var(--pink);
  padding-bottom: 4px;
}
.u-link::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 100%; height: 2px; border-radius: 2px;
  background: var(--grad);
  transform: scaleX(0); transform-origin: right;
  transition: transform .4s var(--ease);
}
.u-link:hover::after { transform: scaleX(1); transform-origin: left; }
.u-link svg { width: 16px; height: 16px; transition: transform .35s var(--ease); }
.u-link:hover svg { transform: translateX(4px); }
.u-link-light { color: #ffd1a6; }

/* ==========================================================================
   05. PRELOADER
   ========================================================================== */
.preloader {
  position: fixed; inset: 0; z-index: 3000;
  background: var(--ink);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1.4rem;
  transition: opacity .6s var(--ease), visibility .6s;
}
.preloader.done { opacity: 0; visibility: hidden; }
.preloader-mark {
  width: 100px; height: 122px;
  display: grid; place-items: center;
  animation: prePulse 1.1s var(--ease) infinite;
}
.preloader-logo { width: 100%; height: 100%; object-fit: contain; filter: drop-shadow(0 12px 22px rgba(255,116,23,.2)); }
.preloader-word { font-family: var(--font-head); font-weight: 800; font-size: 1.25rem; color: #fff; letter-spacing: .28em; text-transform: uppercase; }
.preloader-bar { width: 150px; height: 3px; border-radius: 3px; background: rgba(255,255,255,.15); overflow: hidden; }
.preloader-bar span { display: block; height: 100%; width: 0; background: var(--grad); border-radius: 3px; transition: width .5s var(--ease); }

@keyframes prePulse {
  0%, 100% { transform: scale(1); filter: drop-shadow(0 0 0 rgba(255,116,23,0)); }
  50% { transform: scale(1.04); filter: drop-shadow(0 0 16px rgba(255,116,23,.28)); }
}

/* ==========================================================================
   06. SCROLL PROGRESS
   ========================================================================== */
.progress-bar {
  position: fixed; top: 0; left: 0; z-index: 1500;
  height: 3px; width: 0;
  background: var(--grad);
  transition: width .12s linear;
}

/* ==========================================================================
   07. CUSTOM CURSOR
   ========================================================================== */
.cursor-dot, .cursor-ring { display: none; }

@media (hover: hover) and (pointer: fine) {
  .cursor-dot, .cursor-ring {
    display: block;
    position: fixed; top: 0; left: 0;
    pointer-events: none;
    z-index: 2500;
    border-radius: 50%;
    transform: translate(-50%, -50%);
  }
  .cursor-dot {
    width: 8px; height: 8px;
    background: var(--pink);
  }
  .cursor-ring {
    width: 38px; height: 38px;
    border: 1.5px solid rgba(255,116,23,.55);
    transition: width .3s var(--ease), height .3s var(--ease), border-color .3s, background .3s;
  }
  .cursor-ring.is-hover { width: 58px; height: 58px; background: rgba(255,116,23,.08); border-color: rgba(255,116,23,.85); }
  body.cursor-on a, body.cursor-on button { cursor: none; }
}

/* ==========================================================================
   08. HEADER & NAVIGATION
   ========================================================================== */
.site-header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1400;
  height: var(--header-h);
  display: flex; align-items: center;
  transition: background .4s var(--ease), box-shadow .4s var(--ease), height .4s var(--ease), border-color .4s;
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled {
  background: rgba(23,23,31,.9);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--line-dark);
  box-shadow: 0 12px 34px rgba(0,0,0,.22);
}
.nav-wrap {
  display: flex; align-items: center; justify-content: space-between; gap: .8rem;
  padding: .42rem .5rem .42rem 1rem;
  background: rgba(14,14,18,.76);
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 24px;
  box-shadow: 0 18px 45px rgba(0,0,0,.2);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

/* Logo */
.logo { display: inline-flex; align-items: center; flex: 0 0 auto; }
.logo-img {
  width: auto; height: 78px; object-fit: contain;
  filter: drop-shadow(0 6px 12px rgba(0,0,0,.22));
  transition: transform .35s var(--ease), filter .35s;
}
.logo:hover .logo-img { transform: translateY(-2px); filter: drop-shadow(0 10px 20px rgba(255,116,23,.25)); }

/* Desktop nav */
.main-nav { display: flex; align-items: center; }
.nav-list { display: flex; align-items: center; gap: .08rem; }
.nav-list > li { position: relative; }
.nav-link {
  display: inline-flex; align-items: center; gap: .35rem;
  padding: .62rem .72rem;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .88rem;
  color: rgba(255,255,255,.85);
  border-radius: 10px;
  transition: color .3s;
  position: relative;
}
.nav-link:hover, .nav-link.is-active { color: #fff; }
.nav-link::after {
  content: ""; position: absolute; left: .8rem; right: .8rem; bottom: .3rem;
  height: 2px; border-radius: 2px;
  background: var(--grad);
  transform: scaleX(0); transform-origin: right;
  transition: transform .35s var(--ease);
}
.nav-link:hover::after, .nav-link.is-active::after { transform: scaleX(1); transform-origin: left; }
.nav-link svg { width: 13px; height: 13px; transition: transform .3s var(--ease); }

.nav-cta { margin-left: .2rem; white-space: nowrap; }

/* Dropdown */
.drop-menu {
  position: absolute; top: calc(100% + 12px); left: 0;
  min-width: 220px;
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: .6rem;
  opacity: 0; visibility: hidden;
  transform: translateY(12px);
  transition: opacity .32s var(--ease), transform .32s var(--ease), visibility .32s;
  z-index: 100;
  border: 1px solid rgba(255,116,23,.14);
  overflow: hidden;
}
.drop-menu::before { content: ""; position: absolute; inset: 0 0 auto; height: 3px; background: var(--grad); }
.drop-menu-right { left: auto; right: 0; }
.nav-list > li:hover .drop-menu,
.nav-list > li:focus-within .drop-menu,
.drop-menu.open { opacity: 1; visibility: visible; transform: translateY(0); }
.drop-menu a {
  display: flex; align-items: center; gap: .6rem;
  padding: .68rem .9rem;
  border-radius: 10px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .9rem;
  color: var(--text);
  transition: background .25s, color .25s, transform .25s;
}
.drop-menu a::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--grad); opacity: 0; transition: opacity .25s; }
.drop-menu a:hover, .drop-menu a.is-active { background: var(--blush); color: var(--pink); transform: translateX(4px); }
.drop-menu a:hover::before { opacity: 1; }
.drop-menu a.is-active::before { opacity: 1; }

/* Hamburger */
.nav-toggle {
  display: none;
  width: 46px; height: 46px;
  border-radius: 13px;
  background: rgba(255,255,255,.08);
  border: 1px solid var(--line-dark);
  flex-direction: column; align-items: center; justify-content: center; gap: 5px;
  z-index: 1301;
  transition: background .3s;
}
.nav-toggle span { display: block; width: 20px; height: 2px; border-radius: 2px; background: #fff; transition: transform .4s var(--ease), opacity .3s; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ==========================================================================
   09. MOBILE NAVIGATION
   ========================================================================== */
.nav-overlay {
  position: fixed; inset: 0; z-index: 1250;
  background: rgba(12,12,17,.62);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  opacity: 0; visibility: hidden;
  transition: opacity .4s var(--ease), visibility .4s;
}
.nav-overlay.open { opacity: 1; visibility: visible; }

.mobile-nav {
  position: fixed; top: 0; right: 0; bottom: 0;
  z-index: 1300;
  width: min(88vw, 380px);
  background: var(--ink);
  border-left: 1px solid var(--line-dark);
  padding: calc(var(--header-h) + 10px) 1.6rem 2rem;
  transform: translateX(102%);
  transition: transform .48s var(--ease-out);
  overflow-y: auto;
  display: flex; flex-direction: column;
  -webkit-overflow-scrolling: touch;
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav .nav-list { flex-direction: column; align-items: stretch; gap: .1rem; }
.mobile-nav .nav-link {
  width: 100%;
  font-size: 1.02rem;
  padding: .85rem .4rem;
  border-bottom: 1px solid var(--line-dark);
  border-radius: 0;
  justify-content: space-between;
}
.mobile-nav .nav-link::after { display: none; }
.mobile-nav .drop-menu {
  position: static;
  opacity: 1; visibility: visible; transform: none;
  box-shadow: none; background: transparent;
  padding: 0 0 .4rem 1rem;
  min-width: 0;
  display: none;
  border-left: 2px solid rgba(255,116,23,.5);
  margin: .2rem 0 .4rem .6rem;
}
.mobile-nav .drop-menu::before { display: none; }
.mobile-nav .drop-menu.open { display: block; animation: dropIn .3s var(--ease); }
.mobile-nav .drop-menu a { color: #c9c9d2; padding: .6rem .5rem; }
.mobile-nav .drop-menu a:hover { background: rgba(255,255,255,.06); color: #fff; transform: none; }
.mobile-nav .drop-menu a::before { display: none; }
.mobile-nav .nav-link .chev { margin-left: auto; }
.mobile-nav .nav-link .chev.open { transform: rotate(180deg); }
.mobile-nav-foot { margin-top: auto; padding-top: 2rem; display: grid; gap: .8rem; }
.mobile-nav-foot .btn { width: 100%; }
.mobile-nav-social { display: flex; gap: .8rem; }
.mobile-nav-social a {
  flex: 1;
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .75rem;
  border: 1px solid var(--line-dark);
  border-radius: 12px;
  color: #fff;
  font-family: var(--font-head); font-weight: 600; font-size: .85rem;
  transition: background .3s, border-color .3s, transform .3s;
}
.mobile-nav-social a:hover { background: rgba(255,255,255,.07); transform: translateY(-2px); }
.mobile-nav-social svg { width: 18px; height: 18px; }

@keyframes dropIn { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: none; } }

/* ==========================================================================
   10. HOME HERO (SLIDER)
   ========================================================================== */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex; align-items: center;
  overflow: hidden;
  background: var(--ink);
}
.hero-slides, .hero-slide { position: absolute; inset: 0; }
.hero-slide { opacity: 0; transition: opacity 1.1s var(--ease); z-index: 1; background: #0f0f15; }
.hero-slide.is-active { opacity: 1; z-index: 2; }
.hero-slide img {
  width: 100%; height: 100%;
  object-fit: contain;
  object-position: right center;
  transform: scale(1.08);
  filter: saturate(1.05) contrast(1.02);
}
.hero-slide.is-active img { animation: heroZoom 7s var(--ease-out) forwards; }
@keyframes heroZoom { from { transform: scale(1.08); } to { transform: scale(1); } }
.hero-slide::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(15,15,21,.82) 0%, rgba(15,15,21,.45) 55%, rgba(15,15,21,.18) 100%),
    linear-gradient(0deg, rgba(15,15,21,.7) 0%, transparent 45%);
}
.hero-content {
  position: relative; z-index: 5;
  padding-block: calc(var(--header-h) + 3rem) 5rem;
  width: min(100% - 2.5rem, var(--container));
  margin-inline: auto;
  color: #fff;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: .6rem;
  padding: .55rem 1.1rem;
  border-radius: 999px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.22);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  font-family: var(--font-head);
  font-size: .78rem; font-weight: 700;
  letter-spacing: .26em; text-transform: uppercase;
  color: #ffe4ca;
  margin-bottom: 1.6rem;
}
.hero-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--coral); box-shadow: 0 0 0 0 rgba(255,154,60,.6); animation: pulseDot 2s infinite; }
@keyframes pulseDot { 0% { box-shadow: 0 0 0 0 rgba(255,154,60,.55); } 70% { box-shadow: 0 0 0 9px rgba(255,154,60,0); } 100% { box-shadow: 0 0 0 0 rgba(255,154,60,0); } }

.hero h1 {
  color: #fff;
  font-size: clamp(2.6rem, 6.6vw, 5.3rem);
  font-weight: 800;
  line-height: 1.04;
  max-width: 15ch;
}
.hero h1 .line { display: block; overflow: hidden; }
.hero h1 .line span { display: block; animation: lineUp .9s var(--ease-out) 1.05s backwards; }
.hero h1 .line:nth-child(2) span { animation-delay: 1.2s; }
.hero h1 .grad-word { background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent; }
.hero-badge { animation: fadeUp .8s var(--ease-out) .9s backwards; }
.hero-desc { animation: fadeUp .8s var(--ease-out) 1.35s backwards; }
.hero-actions { animation: fadeUp .8s var(--ease-out) 1.5s backwards; }
.hero-quick { animation: fadeUp .8s var(--ease-out) 1.65s backwards; }
@keyframes lineUp { from { transform: translateY(110%); } to { transform: translateY(0); } }
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: none; } }

.hero-tagline {
  display: flex; flex-wrap: wrap; gap: .6rem 1.4rem;
  margin-top: 1.3rem;
  font-family: var(--font-head);
  font-size: .82rem; font-weight: 700;
  letter-spacing: .24em; text-transform: uppercase;
  color: rgba(255,255,255,.75);
}
.hero-tagline span { display: inline-flex; align-items: center; gap: .6rem; }
.hero-tagline span::after { content: "•"; color: var(--coral); }
.hero-tagline span:last-child::after { display: none; }

.hero-desc {
  margin-top: 1.5rem;
  max-width: 560px;
  color: rgba(255,255,255,.82);
  font-size: clamp(1rem, 1.3vw, 1.12rem);
  line-height: 1.8;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.3rem; }
.hero-quick {
  display: flex; flex-wrap: wrap; gap: 1.6rem;
  margin-top: 2.6rem;
}
.hero-quick a {
  display: inline-flex; align-items: center; gap: .6rem;
  color: rgba(255,255,255,.8);
  font-size: .9rem; font-weight: 600;
  transition: color .3s, transform .3s;
}
.hero-quick a:hover { color: #fff; transform: translateY(-2px); }
.hero-quick svg { width: 17px; height: 17px; color: var(--coral); }

/* Hero controls */
.hero-controls { position: absolute; right: clamp(1.25rem, 4vw, 3.5rem); bottom: 5.5rem; z-index: 8; display: flex; flex-direction: column; gap: 1rem; align-items: flex-end; }
.hero-arrows { display: flex; gap: .6rem; }
.hero-arrows button {
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.35);
  color: #fff;
  display: grid; place-items: center;
  transition: background .3s, border-color .3s, transform .3s;
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}
.hero-arrows button:hover { background: var(--grad); border-color: transparent; transform: translateY(-3px); }
.hero-arrows svg { width: 18px; height: 18px; }
.hero-dots { display: flex; gap: .5rem; }
.hero-dots button { width: 9px; height: 9px; border-radius: 99px; background: rgba(255,255,255,.35); transition: width .35s var(--ease), background .35s; }
.hero-dots button.is-active { width: 30px; background: var(--grad); }

/* Scroll indicator */
.scroll-ind {
  position: absolute; left: 50%; bottom: 2.1rem; transform: translateX(-50%);
  z-index: 8;
  display: flex; flex-direction: column; align-items: center; gap: .55rem;
  color: rgba(255,255,255,.7);
  font-size: .68rem; font-weight: 700; letter-spacing: .3em; text-transform: uppercase;
}
.scroll-ind .mouse { width: 24px; height: 38px; border: 2px solid rgba(255,255,255,.5); border-radius: 14px; display: flex; justify-content: center; padding-top: 6px; }
.scroll-ind .mouse i { width: 3px; height: 8px; border-radius: 3px; background: var(--coral); animation: wheel 1.8s var(--ease) infinite; }
@keyframes wheel { 0% { transform: translateY(0); opacity: 1; } 70% { transform: translateY(12px); opacity: 0; } 100% { opacity: 0; } }

/* Floating blobs */
.hero-blob { position: absolute; z-index: 3; border-radius: 50%; filter: blur(2px); pointer-events: none; opacity: .5; }
.hero-blob.b1 { width: 340px; height: 340px; right: -90px; top: 18%; background: radial-gradient(circle at 30% 30%, rgba(255,116,23,.5), rgba(255,154,60,.12)); animation: float 9s ease-in-out infinite; }
.hero-blob.b2 { width: 190px; height: 190px; left: 8%; bottom: 16%; background: radial-gradient(circle at 30% 30%, rgba(255,154,60,.4), rgba(255,116,23,.08)); animation: float 11s ease-in-out infinite reverse; }
@keyframes float { 0%, 100% { transform: translateY(0) translateX(0); } 50% { transform: translateY(-26px) translateX(14px); } }

/* ==========================================================================
   11. PAGE HERO (INTERIOR)
   ========================================================================== */
.page-hero {
  position: relative;
  min-height: clamp(480px, 66vh, 640px);
  display: flex; align-items: flex-end;
  padding-block: calc(var(--header-h) + 4rem) 4.5rem;
  overflow: hidden;
  background: var(--ink);
}
.page-hero-bg { position: absolute; inset: 0; }
.page-hero-bg img { width: 100%; height: 100%; object-fit: cover; animation: heroZoom 9s var(--ease-out) forwards; }
.page-hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(15,15,21,.55) 0%, rgba(15,15,21,.72) 70%, rgba(15,15,21,.88) 100%);
}
.group-page-hero .page-hero-bg { background: radial-gradient(circle at 78% 42%, #292938, #0f0f15 62%); }
.group-page-hero .page-hero-bg img { object-fit: contain; object-position: right center; animation: none; transform: none; }
.group-page-hero .page-hero-bg::after {
  background:
    linear-gradient(90deg, rgba(15,15,21,.95) 0%, rgba(15,15,21,.72) 48%, rgba(15,15,21,.18) 100%),
    linear-gradient(0deg, rgba(15,15,21,.78) 0%, transparent 58%);
}
.page-hero-content { position: relative; z-index: 4; width: min(100% - 2.5rem, var(--container)); margin-inline: auto; color: #fff; }
.page-hero-content h1 { color: #fff; font-size: clamp(2.3rem, 5.6vw, 4.3rem); max-width: 18ch; margin-top: .4rem; }
.page-hero-content .lead { color: rgba(255,255,255,.8); max-width: 620px; margin-top: 1.1rem; }
.page-crumb {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--font-head); font-size: .8rem; font-weight: 700;
  letter-spacing: .22em; text-transform: uppercase;
  color: rgba(255,255,255,.65);
}
.page-crumb a { color: #ffd1a6; transition: color .3s; }
.page-crumb a:hover { color: #fff; }
.page-crumb svg { width: 14px; height: 14px; }

/* ==========================================================================
   12. MARQUEE STRIP
   ========================================================================== */
.marquee {
  background: var(--ink);
  border-block: 1px solid var(--line-dark);
  overflow: hidden;
  padding: 1.05rem 0;
}
.marquee-track { display: flex; width: max-content; animation: marquee 26s linear infinite; }
.marquee-track span {
  font-family: var(--font-head);
  font-size: 1.05rem; font-weight: 800;
  letter-spacing: .3em; text-transform: uppercase;
  color: rgba(255,255,255,.9);
  padding: 0 1.4rem;
  white-space: nowrap;
}
.marquee-track span em { font-style: normal; color: var(--pink); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ==========================================================================
   13. CARDS & SECTION PRIMITIVES
   ========================================================================== */
.card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
}
.card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }

.zoom { overflow: hidden; }
.zoom img { width: 100%; height: 100%; object-fit: cover; transition: transform .9s var(--ease-out); }
.zoom:hover img { transform: scale(1.08); }

.img-mask { border-radius: var(--radius-lg); overflow: hidden; position: relative; }
.img-mask img { width: 100%; height: 100%; object-fit: cover; }

.media-card { position: relative; border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4 / 5; }
.media-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .9s var(--ease-out); }
.media-card:hover img { transform: scale(1.08); }
.media-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(15,15,21,.72)); }

/* ==========================================================================
   14. SERVICES / CLASSES / WHY-CHOOSE
   ========================================================================== */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.3rem, 2.4vw, 2rem); }

.service-card { position: relative; border-radius: var(--radius-lg); overflow: hidden; background: var(--surface); box-shadow: var(--shadow-sm); transition: transform .5s var(--ease), box-shadow .5s var(--ease); }
.service-card:hover { transform: translateY(-9px); box-shadow: var(--shadow-md); }
.service-media { position: relative; aspect-ratio: 4 / 3; overflow: hidden; }
.service-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .9s var(--ease-out); }
.service-card:hover .service-media img { transform: scale(1.09); }
.service-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 45%, rgba(15,15,21,.6)); }
.service-icon {
  position: absolute; left: 1.3rem; bottom: -26px; z-index: 3;
  width: 52px; height: 52px; border-radius: 16px;
  background: var(--grad);
  display: grid; place-items: center;
  color: #fff;
  box-shadow: var(--shadow-accent);
  transition: transform .45s var(--ease);
}
.service-icon svg { width: 24px; height: 24px; }
.service-card:hover .service-icon { transform: rotate(-8deg) scale(1.08); }
.service-body { padding: 2.4rem 1.4rem 1.5rem; }
.service-body h3 { margin-bottom: .55rem; }
.service-body p { color: var(--muted); font-size: .95rem; margin-bottom: 1.1rem; }

/* Class cards (home spotlight) */
.class-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: clamp(1rem, 1.8vw, 1.5rem); }
.class-card { position: relative; border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 3 / 4; box-shadow: var(--shadow-sm); }
.class-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .9s var(--ease-out); }
.class-card:hover img { transform: scale(1.1); }
.class-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(15,15,21,.05) 30%, rgba(15,15,21,.85)); }
.class-card-body { position: absolute; inset: auto 0 0 0; z-index: 3; padding: 1.4rem 1.3rem 1.3rem; color: #fff; }
.class-card-body .num { font-family: var(--font-head); font-weight: 800; font-size: .78rem; letter-spacing: .2em; color: #ffd1a6; }
.class-card-body h3 { color: #fff; font-size: 1.35rem; margin: .25rem 0 .4rem; }
.class-card-body p { font-size: .86rem; color: rgba(255,255,255,.78); max-height: 0; opacity: 0; transition: max-height .5s var(--ease), opacity .45s, margin .4s; line-height: 1.55; }
.class-card:hover .class-card-body p { max-height: 110px; opacity: 1; margin-top: .35rem; }
.class-card-link { display: inline-flex; align-items: center; gap: .4rem; font-family: var(--font-head); font-weight: 700; font-size: .85rem; color: #ffe4ca; margin-top: .7rem; opacity: 0; transform: translateY(6px); transition: opacity .4s, transform .4s var(--ease); }
.class-card:hover .class-card-link { opacity: 1; transform: none; }
.class-card-link svg { width: 15px; height: 15px; }

/* Why choose */
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1.1rem, 2vw, 1.6rem); }
.why-card {
  background: var(--surface);
  border-radius: var(--radius-md);
  padding: 1.8rem 1.5rem;
  border: 1px solid var(--line);
  transition: transform .45s var(--ease), box-shadow .45s var(--ease), border-color .45s;
}
.why-card:hover { transform: translateY(-7px); box-shadow: var(--shadow-md); border-color: transparent; }
.why-icon {
  width: 54px; height: 54px; border-radius: 16px;
  background: var(--grad-soft);
  display: grid; place-items: center;
  color: var(--pink);
  margin-bottom: 1.1rem;
  transition: background .4s, color .4s, transform .4s var(--ease);
}
.why-card:hover .why-icon { background: var(--grad); color: #fff; transform: rotate(-6deg) scale(1.06); }
.why-icon svg { width: 25px; height: 25px; }
.why-card h3 { font-size: 1.08rem; margin-bottom: .45rem; }
.why-card p { font-size: .9rem; color: var(--muted); }

/* Dark variant */
.section-dark .why-card { background: var(--ink-2); border-color: var(--line-dark); }
.section-dark .why-card p { color: #a9a9b6; }

/* CTA card (completes services grid) */
.service-card--cta {
  background:
    radial-gradient(420px 260px at 85% -10%, rgba(255,116,23,.4), transparent 65%),
    var(--ink);
  color: #c9c9d2;
  display: flex; align-items: center;
}
.service-card--cta .service-body { padding: 2.4rem 2rem; }
.service-card--cta .kicker { color: #ffd1a6; }
.service-card--cta h3 { color: #fff; font-size: 1.7rem; margin-bottom: .8rem; }
.service-card--cta p { color: #b9b9c4; margin-bottom: 1.6rem; }

/* Filterable group-class cards */
.gclass-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(1.3rem, 2.4vw, 2rem); }
.gclass-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
}
.gclass-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.gclass-media { position: relative; aspect-ratio: 4 / 3; overflow: hidden; background: linear-gradient(135deg, #111118, #252532); }
.gclass-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; object-position: center; transition: filter .55s var(--ease); }
.gclass-card:hover .gclass-media img { filter: brightness(1.06) saturate(1.08); }
.gclass-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(15,15,21,.55)); }
.gclass-tag {
  position: absolute; left: 1.1rem; bottom: 1rem; z-index: 3;
  background: rgba(255,255,255,.92);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  color: var(--pink);
  font-family: var(--font-head); font-weight: 800; font-size: .72rem;
  letter-spacing: .18em; text-transform: uppercase;
  padding: .4rem .85rem; border-radius: 999px;
}
.gclass-body { padding: 1.7rem 1.6rem 1.8rem; }
.gclass-body h3 { font-size: 1.35rem; margin-bottom: .5rem; }
.gclass-body > p { color: var(--muted); font-size: .94rem; margin-bottom: 1.1rem; }
.gclass-benefits { display: grid; grid-template-columns: repeat(2, 1fr); gap: .5rem .9rem; padding: 1rem 0 1.2rem; border-block: 1px solid var(--line); margin-bottom: 1.2rem; }
.gclass-benefits li { display: flex; gap: .55rem; align-items: center; font-size: .88rem; font-weight: 600; }
.gclass-benefits svg { width: 16px; height: 16px; color: var(--pink); flex: 0 0 auto; }
.gclass-actions { display: flex; flex-wrap: wrap; gap: .8rem; }

/* Reusable CTA band */
.cta-band {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background:
    radial-gradient(600px 340px at 90% -20%, rgba(255,154,60,.45), transparent 60%),
    radial-gradient(520px 300px at 0% 120%, rgba(255,116,23,.4), transparent 60%),
    var(--ink);
  color: #fff;
  padding: clamp(2.4rem, 5vw, 4rem);
  text-align: center;
  display: grid;
  justify-items: center;
  gap: 1.1rem;
}
.cta-band h2 { color: #fff; font-size: clamp(1.7rem, 3.4vw, 2.6rem); max-width: 22ch; }
.cta-band p { color: rgba(255,255,255,.78); max-width: 58ch; }
.cta-band .cta-actions { display: flex; flex-wrap: wrap; gap: .9rem; justify-content: center; margin-top: .6rem; }

/* Process steps alt (vertical numbered list) */
.steps-alt { display: grid; gap: 1.1rem; counter-reset: alt; }
.steps-alt .step-alt { display: flex; gap: 1.3rem; align-items: flex-start; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-md); padding: 1.5rem 1.6rem; transition: transform .4s var(--ease), box-shadow .4s, border-color .4s; }
.steps-alt .step-alt:hover { transform: translateX(8px); box-shadow: var(--shadow-md); border-color: rgba(255,116,23,.3); }
.step-alt-num {
  flex: 0 0 auto;
  width: 52px; height: 52px; border-radius: 16px;
  background: var(--grad);
  color: #fff;
  font-family: var(--font-head); font-weight: 800; font-size: 1.15rem;
  display: grid; place-items: center;
  box-shadow: var(--shadow-accent);
}
.step-alt h3 { font-size: 1.08rem; margin-bottom: .3rem; }
.step-alt p { color: var(--muted); font-size: .92rem; }

/* ==========================================================================
   15. STATS
   ========================================================================== */
.stats-band { background: var(--ink); position: relative; overflow: hidden; }
.stats-band::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(700px 400px at 15% 0%, rgba(255,116,23,.16), transparent 60%),
    radial-gradient(700px 420px at 90% 100%, rgba(255,154,60,.12), transparent 60%);
}
.stats-grid { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }
.stat { text-align: center; padding: .6rem; }
.stat-num {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(2.6rem, 5vw, 4rem);
  line-height: 1;
  color: #fff;
}
.stat-num .suffix { background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.stat-label { margin-top: .7rem; font-family: var(--font-head); font-weight: 600; font-size: .95rem; color: rgba(255,255,255,.75); }
.stat-sub { margin-top: .3rem; font-size: .85rem; color: rgba(255,255,255,.5); }
.stat-num small { font-size: .45em; }

/* ==========================================================================
   16. SPOTLIGHT & SPLIT SECTIONS
   ========================================================================== */
.split { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.split.flip { grid-template-columns: 1fr 1.05fr; }

.split-media { position: relative; }
.split-media .img-mask { aspect-ratio: 4 / 5; }
.split-media .img-mask.main { box-shadow: var(--shadow-lg); }
.split-media .img-mask.sub {
  position: absolute; width: 46%; aspect-ratio: 1;
  right: -6%; bottom: -9%;
  border: 8px solid var(--bg);
  box-shadow: var(--shadow-md);
}
.section-white .split-media .img-mask.sub { border-color: var(--surface); }

.float-card {
  position: absolute;
  background: rgba(255,255,255,.92);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 1.05rem 1.2rem;
  display: flex; align-items: center; gap: .85rem;
  z-index: 5;
}
.float-card .fc-ico { width: 42px; height: 42px; border-radius: 12px; background: var(--grad); color: #fff; display: grid; place-items: center; flex: 0 0 auto; }
.float-card .fc-ico svg { width: 20px; height: 20px; }
.float-card b { font-family: var(--font-head); display: block; font-size: .95rem; color: var(--ink); line-height: 1.2; }
.float-card small { color: var(--muted); font-size: .8rem; }
.float-card.fc-1 { left: -8%; top: 6%; }
.float-card.fc-2 { right: -5%; bottom: 2%; animation: float 8s ease-in-out infinite; }

.split-content .lead + .lead { margin-top: 1rem; }
.split-feats { display: grid; grid-template-columns: repeat(2, 1fr); gap: .9rem 1.4rem; margin-top: 1.8rem; }
.split-feats li { display: flex; gap: .65rem; align-items: flex-start; font-weight: 600; font-size: .95rem; color: var(--text); }
.split-feats svg { width: 19px; height: 19px; color: var(--pink); flex: 0 0 auto; margin-top: 3px; }
.split-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.2rem; }

/* Feature rows (list with big numbers) */
.feat-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(1.3rem, 2.5vw, 2.2rem); }
.feat-row .feat { display: flex; gap: 1.3rem; padding: 1.9rem; border-radius: var(--radius-md); background: var(--surface); box-shadow: var(--shadow-sm); border: 1px solid var(--line); transition: transform .45s var(--ease), box-shadow .45s; }
.feat-row .feat:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.feat-num {
  font-family: var(--font-head); font-weight: 800; font-size: 2.1rem; line-height: 1;
  background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  flex: 0 0 auto;
}
.feat h3 { font-size: 1.12rem; margin-bottom: .4rem; }
.feat p { color: var(--muted); font-size: .93rem; }

/* ==========================================================================
   17. TESTIMONIALS
   ========================================================================== */
.testi { background: var(--ink); position: relative; overflow: hidden; }
.testi::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(760px 420px at 85% 20%, rgba(255,116,23,.14), transparent 60%),
    radial-gradient(600px 380px at 5% 90%, rgba(255,154,60,.1), transparent 60%);
}
.testi-wrap { position: relative; max-width: 860px; margin-inline: auto; }
.t-viewport { overflow: hidden; }
.t-track { display: flex; transition: transform .65s var(--ease-out); }
.t-slide { flex: 0 0 100%; padding: 0 .4rem; text-align: center; }
.t-quote { font-size: clamp(1.05rem, 2.2vw, 1.35rem); color: #e7e7ee; font-family: var(--font-head); font-weight: 600; line-height: 1.6; }
.t-quote::before { content: "“"; display: block; font-size: 4.5rem; line-height: .6; margin: .4rem 0 1.1rem; background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.t-stars { display: flex; justify-content: center; gap: .25rem; margin-bottom: 1.3rem; color: var(--coral); }
.t-stars svg { width: 18px; height: 18px; }
.t-who { margin-top: 1.7rem; font-family: var(--font-head); font-weight: 700; color: #fff; }
.t-role { font-size: .86rem; color: rgba(255,255,255,.55); }
.t-note { margin-top: 1rem; font-size: .78rem; color: rgba(255,255,255,.4); letter-spacing: .05em; }
.t-controls { display: flex; justify-content: center; align-items: center; gap: 1.2rem; margin-top: 2.2rem; }
.t-controls button { width: 46px; height: 46px; border-radius: 50%; border: 1px solid var(--line-dark); color: #fff; display: grid; place-items: center; transition: background .3s, border-color .3s, transform .3s; }
.t-controls button:hover { background: var(--grad); border-color: transparent; transform: translateY(-2px); }
.t-controls svg { width: 17px; height: 17px; }
.t-dots { display: flex; gap: .45rem; }
.t-dots button { width: 8px; height: 8px; border-radius: 99px; background: rgba(255,255,255,.3); transition: width .3s var(--ease), background .3s; }
.t-dots button.is-active { width: 26px; background: var(--grad); }

/* ==========================================================================
   18. SOCIAL / INSTAGRAM GRID
   ========================================================================== */
.social-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: .8rem; }
.social-cell { position: relative; aspect-ratio: 1; border-radius: var(--radius-md); overflow: hidden; }
.social-cell img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease-out), filter .4s; }
.social-cell:hover img { transform: scale(1.1); filter: brightness(.7); }
.social-cell .ig-ico {
  position: absolute; inset: 0; z-index: 2;
  display: grid; place-items: center;
  color: #fff; opacity: 0;
  transition: opacity .35s;
}
.social-cell:hover .ig-ico { opacity: 1; }
.social-cell .ig-ico svg { width: 26px; height: 26px; }

/* ==========================================================================
   19. LOCATION CTA
   ========================================================================== */
.loc-cta { position: relative; background: var(--ink); overflow: hidden; }
.loc-cta::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(800px 460px at 20% 10%, rgba(255,116,23,.18), transparent 62%),
    radial-gradient(700px 420px at 90% 85%, rgba(255,154,60,.14), transparent 60%);
}
.loc-grid { position: relative; display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(2rem, 4vw, 4rem); align-items: center; }
.loc-address { color: #fff; }
.loc-address h2 { color: #fff; margin-bottom: 1rem; }
.loc-address p { color: rgba(255,255,255,.78); font-size: 1.05rem; }
.loc-address p strong { color: #fff; display: block; }
.loc-actions { display: flex; flex-wrap: wrap; gap: .9rem; margin-top: 2rem; }
.loc-actions .btn { flex: 0 0 auto; }
.loc-map-card {
  background: rgba(255,255,255,.06);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-lg);
  padding: 1rem;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}
.loc-map-card iframe { width: 100%; height: 300px; border: 0; border-radius: calc(var(--radius-lg) - 10px); filter: grayscale(.2) contrast(1.05); }

/* ==========================================================================
   20. ABOUT PAGE
   ========================================================================== */
.mv-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(1.4rem, 2.6vw, 2.2rem); }
.mv-card {
  border-radius: var(--radius-lg);
  padding: clamp(1.8rem, 3.4vw, 2.6rem);
  position: relative;
  overflow: hidden;
}
.mv-card.mv-mission { background: var(--ink); color: #c9c9d2; }
.mv-card.mv-vision { background: var(--grad); color: #fff; }
.mv-card h3 { margin-bottom: .8rem; }
.mv-card.mv-mission h3 { color: #fff; }
.mv-card p { line-height: 1.8; }
.mv-card .mv-ico { width: 58px; height: 58px; border-radius: 18px; display: grid; place-items: center; margin-bottom: 1.4rem; }
.mv-card.mv-mission .mv-ico { background: rgba(255,255,255,.1); color: #ffd1a6; }
.mv-card.mv-vision .mv-ico { background: rgba(255,255,255,.2); color: #fff; }
.mv-card .mv-ico svg { width: 27px; height: 27px; }
.mv-card.mv-vision::after { content: "★"; position: absolute; right: -18px; bottom: -34px; font-size: 9rem; color: rgba(255,255,255,.14); line-height: 1; }

.value-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(1.3rem, 2.4vw, 2rem); }
.value-item { display: flex; gap: 1.1rem; }
.value-item .vi-ico { flex: 0 0 auto; width: 48px; height: 48px; border-radius: 14px; background: var(--grad-soft); color: var(--pink); display: grid; place-items: center; }
.value-item .vi-ico svg { width: 22px; height: 22px; }
.value-item h3 { font-size: 1.05rem; margin-bottom: .35rem; }
.value-item p { font-size: .92rem; color: var(--muted); }
.section-dark .value-item .vi-ico { background: rgba(255,255,255,.1); color: #ffd1a6; }
.section-dark .value-item p { color: #a9a9b6; }

.facility-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.1rem, 2vw, 1.6rem); }
.facility-item { position: relative; border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4 / 3.4; }
.facility-item img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .9s var(--ease-out); }
.facility-item:hover img { transform: scale(1.09); }
.facility-item::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 50%, rgba(15,15,21,.78)); }
.facility-item figcaption { position: absolute; inset: auto 0 0 0; z-index: 3; padding: 1.2rem 1.3rem; color: #fff; font-family: var(--font-head); font-weight: 700; font-size: 1.02rem; }

/* ==========================================================================
   21. MEMBERSHIP PAGE
   ========================================================================== */
.membership-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.3rem, 2.4vw, 2rem); align-items: stretch; }
.membership-card {
  position: relative;
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 2.4rem 2rem;
  border: 1px solid var(--line);
  display: flex; flex-direction: column;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease), border-color .5s;
}
.membership-card:hover { transform: translateY(-9px); box-shadow: var(--shadow-lg); }
.membership-card.featured {
  background: var(--ink);
  border-color: transparent;
  color: #c9c9d2;
  overflow: hidden;
}
.membership-card.featured::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(500px 300px at 80% -10%, rgba(255,116,23,.3), transparent 65%);
  pointer-events: none;
}
.membership-card.featured h3, .membership-card.featured .m-price { color: #fff; }
.membership-flag {
  position: absolute; top: 1.4rem; right: 1.4rem;
  background: var(--grad); color: #fff;
  font-family: var(--font-head); font-size: .7rem; font-weight: 800;
  letter-spacing: .14em; text-transform: uppercase;
  padding: .42rem .8rem; border-radius: 999px;
}
.m-cat { font-family: var(--font-head); font-size: .74rem; font-weight: 800; letter-spacing: .26em; text-transform: uppercase; color: var(--pink); }
.membership-card.featured .m-cat { color: #ffd1a6; }
.membership-card h3 { font-size: 1.5rem; margin: .5rem 0 .7rem; }
.m-price { font-family: var(--font-head); font-weight: 800; font-size: 1rem; color: var(--muted); margin-bottom: 1.4rem; }
.m-price span { color: var(--pink); }
.m-benefits { flex: 1; margin-bottom: 1.8rem; }
.m-benefits li { display: flex; gap: .75rem; align-items: flex-start; padding: .5rem 0; font-size: .94rem; }
.m-benefits li svg { width: 18px; height: 18px; color: var(--pink); flex: 0 0 auto; margin-top: 4px; }
.membership-card.featured .m-benefits li { color: #e7e7ee; }
.membership-card.featured .m-benefits li svg { color: var(--coral); }
.membership-card .btn { width: 100%; }

.plan-note {
  margin-top: 2.4rem;
  display: flex; align-items: center; gap: 1rem;
  background: var(--blush);
  border: 1px solid rgba(255,116,23,.18);
  border-radius: var(--radius-md);
  padding: 1.2rem 1.5rem;
  font-size: .95rem;
  color: var(--text);
}
.plan-note svg { width: 26px; height: 26px; color: var(--pink); flex: 0 0 auto; }

/* FAQ */
.faq-list { max-width: 860px; margin-inline: auto; display: grid; gap: .9rem; }
.faq-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: box-shadow .4s, border-color .4s;
}
.faq-item.open { box-shadow: var(--shadow-md); border-color: rgba(255,116,23,.35); }
.faq-q {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.25rem 1.5rem;
  text-align: left;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.02rem;
  color: var(--ink);
  transition: color .3s;
}
.faq-q:hover { color: var(--pink); }
.faq-q .faq-ico {
  flex: 0 0 auto;
  width: 34px; height: 34px; border-radius: 50%;
  border: 1.5px solid var(--line);
  display: grid; place-items: center;
  color: var(--pink);
  transition: background .35s, color .35s, transform .45s var(--ease);
}
.faq-q .faq-ico svg { width: 15px; height: 15px; }
.faq-item.open .faq-q .faq-ico { background: var(--grad); border-color: transparent; color: #fff; transform: rotate(135deg); }
.faq-a-wrap { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .45s var(--ease); }
.faq-item.open .faq-a-wrap { grid-template-rows: 1fr; }
.faq-a { overflow: hidden; }
.faq-a p { padding: 0 1.5rem 1.35rem; color: var(--muted); font-size: .95rem; max-width: 70ch; }

/* ==========================================================================
   22. PERSONAL TRAINING PAGE
   ========================================================================== */
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1.1rem, 2vw, 1.6rem); counter-reset: step; }
.step-card {
  position: relative;
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 2.1rem 1.6rem 1.8rem;
  border: 1px solid var(--line);
  transition: transform .45s var(--ease), box-shadow .45s, border-color .45s;
}
.step-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); border-color: rgba(255,116,23,.3); }
.step-num {
  font-family: var(--font-head); font-weight: 800;
  font-size: 3.2rem; line-height: 1;
  background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  margin-bottom: 1rem;
}
.step-card h3 { font-size: 1.15rem; margin-bottom: .5rem; }
.step-card p { color: var(--muted); font-size: .93rem; }

.pt-includes { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.1rem, 2vw, 1.6rem); }
.pt-item { display: flex; gap: 1rem; align-items: flex-start; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-md); padding: 1.5rem 1.4rem; transition: transform .4s var(--ease), box-shadow .4s; }
.pt-item:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.pt-item .pt-ico { flex: 0 0 auto; width: 46px; height: 46px; border-radius: 13px; background: var(--grad-soft); color: var(--pink); display: grid; place-items: center; }
.pt-item .pt-ico svg { width: 22px; height: 22px; }
.pt-item h3 { font-size: 1rem; margin-bottom: .3rem; }
.pt-item p { font-size: .89rem; color: var(--muted); }

/* ==========================================================================
   23. MASSAGE PAGE
   ========================================================================== */
.massage-hero { background: linear-gradient(160deg, #10151f 0%, #1a2333 60%, #23202e 100%); }
.wellness-benefit { display: flex; gap: 1.3rem; padding: 1.7rem 1.5rem; border-radius: var(--radius-md); background: var(--surface); box-shadow: var(--shadow-sm); border: 1px solid var(--line); transition: transform .45s var(--ease), box-shadow .45s; }
.wellness-benefit:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.wellness-benefit .wb-ico { flex: 0 0 auto; width: 54px; height: 54px; border-radius: 16px; background: linear-gradient(135deg, #7fb3d3, #9fc9a9); color: #fff; display: grid; place-items: center; box-shadow: 0 10px 24px rgba(90,150,180,.28); }
.wellness-benefit .wb-ico svg { width: 25px; height: 25px; }
.wellness-benefit h3 { font-size: 1.06rem; margin-bottom: .35rem; }
.wellness-benefit p { font-size: .9rem; color: var(--muted); }
.calm-quote { max-width: 820px; margin-inline: auto; text-align: center; }
.calm-quote h2 { margin-bottom: 1.4rem; }
.calm-quote p { color: var(--muted); font-size: clamp(1rem, 1.5vw, 1.18rem); line-height: 1.9; }

/* ==========================================================================
   24. CAFÉ PAGE
   ========================================================================== */
.cafe-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1.1rem, 2vw, 1.6rem); }
.cafe-card { position: relative; border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 3 / 3.6; box-shadow: var(--shadow-sm); }
.cafe-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .9s var(--ease-out); }
.cafe-card:hover img { transform: scale(1.1); }
.cafe-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 35%, rgba(15,15,21,.8)); }
.cafe-card figcaption { position: absolute; inset: auto 0 0 0; z-index: 3; padding: 1.3rem 1.2rem; color: #fff; }
.cafe-card figcaption h3 { color: #fff; font-size: 1.15rem; }
.cafe-card figcaption p { font-size: .84rem; color: rgba(255,255,255,.75); margin-top: .25rem; }

/* ==========================================================================
   25. TRAINERS PAGE
   ========================================================================== */
.trainer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.3rem, 2.4vw, 2rem); }
.trainer-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
}
.trainer-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.trainer-photo { position: relative; aspect-ratio: 1 / 1.08; overflow: hidden; }
.trainer-photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .9s var(--ease-out); }
.trainer-card:hover .trainer-photo img { transform: scale(1.08); }
.trainer-photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(15,15,21,.55)); }
.trainer-tag {
  position: absolute; left: 1.1rem; bottom: 1rem; z-index: 3;
  background: rgba(255,255,255,.92);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  color: var(--pink);
  font-family: var(--font-head); font-weight: 800; font-size: .74rem;
  letter-spacing: .16em; text-transform: uppercase;
  padding: .45rem .85rem; border-radius: 999px;
}
.trainer-body { padding: 1.5rem 1.4rem 1.6rem; text-align: center; }
.trainer-body h3 { font-size: 1.2rem; }
.trainer-body .t-spec { color: var(--pink); font-weight: 700; font-size: .88rem; margin-top: .2rem; display: block; }
.trainer-body p { color: var(--muted); font-size: .9rem; margin: .8rem 0 1.1rem; }

/* ==========================================================================
   26. GALLERY & LIGHTBOX
   ========================================================================== */
.filter-bar { display: flex; flex-wrap: wrap; justify-content: center; gap: .6rem; margin-bottom: 2.6rem; }
.filter-btn {
  padding: .6rem 1.25rem;
  border-radius: 999px;
  border: 1.5px solid var(--line);
  font-family: var(--font-head); font-weight: 700; font-size: .87rem;
  color: var(--muted);
  transition: all .3s var(--ease);
}
.filter-btn:hover { border-color: var(--pink); color: var(--pink); transform: translateY(-2px); }
.filter-btn.is-active { background: var(--grad); border-color: transparent; color: #fff; box-shadow: var(--shadow-accent); }

.gallery-grid { columns: 4; column-gap: 1rem; }
.gallery-item {
  position: relative;
  break-inside: avoid;
  margin-bottom: 1rem;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  display: block;
}
.gallery-item img { width: 100%; transition: transform .8s var(--ease-out); }
.gallery-item:hover img { transform: scale(1.07); }
.gallery-item::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(15,15,21,.66)); opacity: 0; transition: opacity .4s; }
.gallery-item:hover::after { opacity: 1; }
.gallery-item .gi-cap {
  position: absolute; left: 1rem; bottom: .9rem; z-index: 3;
  color: #fff; font-family: var(--font-head); font-weight: 700; font-size: .9rem;
  opacity: 0; transform: translateY(8px);
  transition: opacity .4s, transform .4s var(--ease);
}
.gallery-item:hover .gi-cap { opacity: 1; transform: none; }
.gallery-item .gi-zoom {
  position: absolute; top: .9rem; right: .9rem; z-index: 3;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,.9); color: var(--ink);
  display: grid; place-items: center;
  opacity: 0; transform: scale(.6);
  transition: opacity .35s, transform .35s var(--ease);
}
.gallery-item:hover .gi-zoom { opacity: 1; transform: scale(1); }
.gallery-item .gi-zoom svg { width: 16px; height: 16px; }

.gallery-hidden { display: none !important; }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(10,10,15,.94);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 1.5rem;
  opacity: 0; visibility: hidden;
  transition: opacity .4s var(--ease), visibility .4s;
}
.lightbox.open { opacity: 1; visibility: visible; }
.lb-img-wrap { max-width: min(1000px, 92vw); max-height: 78vh; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); transform: scale(.94); transition: transform .45s var(--ease-out); }
.lightbox.open .lb-img-wrap { transform: scale(1); }
.lb-img-wrap img { width: 100%; height: 100%; max-height: 78vh; object-fit: contain; background: #000; }
.lb-cap { color: rgba(255,255,255,.85); margin-top: 1.2rem; font-family: var(--font-head); font-weight: 600; font-size: 1rem; text-align: center; }
.lb-count { color: rgba(255,255,255,.5); font-size: .82rem; margin-top: .3rem; letter-spacing: .12em; }
.lb-btn {
  position: absolute;
  width: 52px; height: 52px; border-radius: 50%;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  color: #fff;
  display: grid; place-items: center;
  transition: background .3s, transform .3s;
}
.lb-btn:hover { background: var(--grad); border-color: transparent; transform: scale(1.06); }
.lb-btn svg { width: 22px; height: 22px; }
.lb-close { top: 1.4rem; right: 1.4rem; }
.lb-prev { left: 1.2rem; top: 50%; transform: translateY(-50%); }
.lb-next { right: 1.2rem; top: 50%; transform: translateY(-50%); }
.lb-prev:hover { transform: translateY(-50%) scale(1.06); }
.lb-next:hover { transform: translateY(-50%) scale(1.06); }

/* ==========================================================================
   27. CONTACT PAGE
   ========================================================================== */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(2rem, 4vw, 3.4rem); align-items: start; }
.contact-cards { display: grid; gap: 1rem; }
.contact-card {
  display: flex; gap: 1.1rem; align-items: flex-start;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 1.4rem 1.4rem;
  transition: transform .4s var(--ease), box-shadow .4s, border-color .4s;
}
.contact-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: rgba(255,116,23,.3); }
.contact-card .cc-ico { flex: 0 0 auto; width: 50px; height: 50px; border-radius: 15px; background: var(--grad); color: #fff; display: grid; place-items: center; box-shadow: var(--shadow-accent); }
.contact-card .cc-ico svg { width: 22px; height: 22px; }
.contact-card h3 { font-size: 1rem; margin-bottom: .3rem; }
.contact-card p, .contact-card a { color: var(--muted); font-size: .94rem; transition: color .3s; }
.contact-card a:hover { color: var(--pink); }
.contact-card a.cc-link { display: block; }

.form-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: clamp(1.7rem, 3vw, 2.6rem);
}
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.2rem; }
.form-field { display: flex; flex-direction: column; gap: .45rem; }
.form-field.full { grid-column: 1 / -1; }
.form-field label { font-family: var(--font-head); font-weight: 700; font-size: .88rem; color: var(--ink); }
.form-field label span { color: var(--pink); }
.form-field input, .form-field select, .form-field textarea {
  width: 100%;
  padding: .95rem 1.1rem;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--bg);
  color: var(--text);
  transition: border-color .3s, box-shadow .3s, background .3s;
}
.form-field textarea { min-height: 130px; resize: vertical; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none;
  border-color: var(--pink);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(255,116,23,.12);
}
.form-field.has-error input, .form-field.has-error select, .form-field.has-error textarea { border-color: #d94f00; background: #fff8f2; }
.field-error { display: none; font-size: .8rem; font-weight: 600; color: #d92552; }
.form-field.has-error .field-error { display: block; }
.form-note { font-size: .82rem; color: var(--muted); margin-top: .5rem; }
.form-success {
  display: none;
  text-align: center;
  padding: 2.5rem 1rem;
}
.form-success.show { display: block; animation: popIn .5s var(--ease-out); }
.form-success .ok-ico {
  width: 78px; height: 78px; border-radius: 50%;
  background: var(--grad);
  color: #fff;
  display: grid; place-items: center;
  margin: 0 auto 1.3rem;
  box-shadow: var(--shadow-accent);
}
.form-success .ok-ico svg { width: 36px; height: 36px; }
.form-success h3 { margin-bottom: .6rem; }
.form-success p { color: var(--muted); max-width: 44ch; margin-inline: auto; }
@keyframes popIn { from { opacity: 0; transform: scale(.9); } to { opacity: 1; transform: scale(1); } }

.map-embed { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); border: 1px solid var(--line); }
.map-embed iframe { display: block; width: 100%; height: 420px; border: 0; }

/* ==========================================================================
   28. FOOTER
   ========================================================================== */
.site-footer { background: #101016; color: #a9a9b6; position: relative; }
.site-footer::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--grad); }
.site-footer .logo-img { height: 112px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1.2fr 1.3fr; gap: clamp(2rem, 4vw, 3.4rem); padding-block: clamp(3.5rem, 6vw, 5rem); }
.footer-brand p { font-size: .94rem; margin-top: 1.2rem; max-width: 34ch; line-height: 1.8; }
.f-social { display: flex; gap: .7rem; margin-top: 1.5rem; }
.f-social a {
  width: 42px; height: 42px; border-radius: 12px;
  border: 1px solid var(--line-dark);
  color: #fff;
  display: grid; place-items: center;
  transition: background .3s, border-color .3s, transform .3s, box-shadow .3s;
}
.f-social a:hover { background: var(--grad); border-color: transparent; transform: translateY(-4px); box-shadow: var(--shadow-accent); }
.f-social svg { width: 18px; height: 18px; }
.f-col h3 {
  color: #fff; font-size: 1.02rem; margin-bottom: 1.3rem;
  position: relative; padding-bottom: .7rem;
}
.f-col h3::after { content: ""; position: absolute; left: 0; bottom: 0; width: 30px; height: 2px; border-radius: 2px; background: var(--grad); }
.f-col ul { display: grid; gap: .55rem; }
.f-col a { font-size: .93rem; transition: color .3s, padding-left .3s; position: relative; }
.f-col a:hover { color: #fff; padding-left: 6px; }
.f-col.contact li { display: flex; gap: .7rem; align-items: flex-start; font-size: .93rem; }
.f-col.contact svg { width: 17px; height: 17px; color: var(--coral); flex: 0 0 auto; margin-top: 4px; }
.footer-bottom {
  border-top: 1px solid var(--line-dark);
  padding: 1.5rem 0;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: .6rem;
  font-size: .85rem;
}
.footer-bottom .fb-tag { letter-spacing: .18em; text-transform: uppercase; font-family: var(--font-head); font-weight: 700; font-size: .72rem; color: rgba(255,255,255,.45); }

/* ==========================================================================
   29. FLOATING BUTTONS
   ========================================================================== */
.wa-float {
  position: fixed; right: 1.3rem; bottom: 1.3rem; z-index: 1100;
  width: 60px; height: 60px; border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: grid; place-items: center;
  box-shadow: 0 12px 30px rgba(37,211,102,.4);
  transition: transform .35s var(--ease), box-shadow .35s;
}
.wa-float:hover { transform: translateY(-5px) scale(1.05); box-shadow: 0 18px 40px rgba(37,211,102,.5); }
.wa-float svg { width: 30px; height: 30px; position: relative; z-index: 2; }
.wa-pulse { position: absolute; inset: 0; border-radius: 50%; background: #25d366; animation: waPulse 2.4s var(--ease) infinite; }
@keyframes waPulse { 0% { transform: scale(1); opacity: .55; } 80%, 100% { transform: scale(1.7); opacity: 0; } }
.wa-tip {
  position: absolute; right: calc(100% + 14px); top: 50%; transform: translateY(-50%) translateX(6px);
  background: var(--ink); color: #fff;
  font-family: var(--font-head); font-size: .8rem; font-weight: 600;
  padding: .55rem .9rem; border-radius: 10px;
  white-space: nowrap;
  opacity: 0; visibility: hidden;
  transition: opacity .3s, transform .3s, visibility .3s;
}
.wa-float:hover .wa-tip { opacity: 1; visibility: visible; transform: translateY(-50%) translateX(0); }

.social-float {
  position: fixed; left: 1.3rem; bottom: 1.3rem; z-index: 1100;
  display: flex; flex-direction: column; gap: .7rem;
}
.social-float a {
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(255,255,255,.92);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  color: var(--ink);
  display: grid; place-items: center;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(255,255,255,.6);
  transition: transform .35s var(--ease), background .35s, color .35s, box-shadow .35s;
}
.social-float a:hover { background: var(--grad); color: #fff; transform: translateY(-4px); box-shadow: var(--shadow-accent); }
.social-float svg { width: 20px; height: 20px; }

.call-float {
  position: fixed; left: 1.3rem; bottom: 1.3rem; z-index: 1100;
  display: none;
  align-items: center; gap: .55rem;
  background: var(--grad);
  color: #fff;
  font-family: var(--font-head); font-weight: 800; font-size: .9rem;
  padding: .85rem 1.3rem;
  border-radius: 999px;
  box-shadow: var(--shadow-accent);
  transition: transform .35s var(--ease), box-shadow .35s;
}
.call-float:hover { transform: translateY(-4px); box-shadow: 0 18px 40px rgba(255,116,23,.45); }
.call-float svg { width: 18px; height: 18px; }

.to-top {
  position: fixed; right: 1.3rem; bottom: 5.4rem; z-index: 1100;
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--ink);
  color: #fff;
  border: 1px solid var(--line-dark);
  display: grid; place-items: center;
  opacity: 0; visibility: hidden; transform: translateY(14px);
  transition: opacity .4s var(--ease), transform .4s var(--ease), visibility .4s, background .3s;
}
.to-top.show { opacity: 1; visibility: visible; transform: none; }
.to-top:hover { background: var(--grad); border-color: transparent; }
.to-top svg { width: 19px; height: 19px; }

/* ==========================================================================
   30. REVEAL ANIMATIONS
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity .8s var(--ease-out), transform .8s var(--ease-out);
  transition-delay: var(--d, 0s);
  will-change: opacity, transform;
}
.reveal[data-reveal="left"] { transform: translateX(-40px); }
.reveal[data-reveal="right"] { transform: translateX(40px); }
.reveal[data-reveal="scale"] { transform: scale(.92); }
.reveal.in { opacity: 1; transform: none; }

/* ==========================================================================
   31. RESPONSIVE
   ========================================================================== */
@media (max-width: 1200px) {
  .nav-list { gap: 0; }
  .nav-link { padding: .6rem .5rem; font-size: .84rem; }
  .class-grid { grid-template-columns: repeat(3, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); row-gap: 2.6rem; }
  .social-grid { grid-template-columns: repeat(4, 1fr); }
  .gallery-grid { columns: 3; }
  .cafe-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 1080px) {
  :root { --header-h: 94px; }
  .main-nav { display: none; }
  .nav-toggle { display: flex; }
  .nav-cta { display: none; }
  .nav-wrap { padding: .35rem .45rem .35rem .8rem; border-radius: 20px; }
  .site-header .logo-img { height: 70px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .split, .split.flip { grid-template-columns: 1fr; gap: 3rem; }
  .split-media .img-mask.sub { right: 4%; bottom: -7%; }
  .loc-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .membership-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .pt-includes { grid-template-columns: repeat(2, 1fr); }
  .feat-row { grid-template-columns: 1fr; }
  .value-list { grid-template-columns: 1fr; }
  .facility-grid { grid-template-columns: repeat(2, 1fr); }
  .trainer-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-controls { right: 1.5rem; bottom: 4.6rem; }
  .hero-quick { gap: 1.1rem; }
}

@media (max-width: 720px) {
  .container { width: min(100% - 2rem, var(--container)); }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .class-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1.6rem; }
  .membership-grid, .trainer-grid, .pt-includes, .facility-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .split-feats { grid-template-columns: 1fr; }
  .social-grid { grid-template-columns: repeat(3, 1fr); }
  .gallery-grid { columns: 2; }
  .cafe-grid { grid-template-columns: 1fr; gap: 1.2rem; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2.2rem; }
  .hero-controls { right: auto; left: 50%; bottom: 1.5rem; transform: translateX(-50%); align-items: center; }
  .hero-arrows { display: none; }
  .hero-slide img { object-fit: cover; object-position: center; }
  .group-page-hero .page-hero-bg img { object-position: center; }
  .scroll-ind { display: none; }
  .hero { min-height: 100svh; }
  .hero-content { padding-top: calc(var(--header-h) + 2.2rem); }
  .hero-actions .btn { width: 100%; }
  .split-media .img-mask.sub { right: 2%; }
  .mv-grid { grid-template-columns: 1fr; }
  .loc-actions .btn { width: 100%; }
  .hero-tagline { letter-spacing: .16em; font-size: .74rem; }
  .call-float { display: inline-flex; }
  .social-float { display: none; }
  .to-top { bottom: 5.2rem; }
  .t-quote { font-size: 1rem; }
}

@media (max-width: 380px) {
  .class-grid { grid-template-columns: 1fr; }
  .site-header .logo-img { height: 62px; }
  .nav-toggle { width: 43px; height: 43px; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 1.2rem; }
  .why-grid { grid-template-columns: 1fr; }
  .section { padding-block: 3.4rem; }
}

/* ==========================================================================
   32. REDUCED MOTION
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-delay: 0ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    transition-delay: 0ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .hero-slide.is-active img { animation: none; transform: scale(1); }
  .cursor-dot, .cursor-ring { display: none !important; }
  .preloader { transition: opacity .2s; }
}
