/* ==========================================================================
   UNBOUND FITNESS & WELLNESS — Dark Luxury Athletic Design System
   Built with HTML + Vanilla CSS + JS · Designed & developed by Novelio Technologies
   ========================================================================== */

/* ------------------------------ Design Tokens ----------------------------- */
:root {
  /* Palette */
  --obsidian:   #0E0E0F;
  --charcoal:   #17181B;
  --charcoal-2: #1F2024;
  --charcoal-3: #26272C;
  --gold:       #C9A24B;
  --gold-soft:  #E4C878;
  --bronze:     #8A6D3B;
  --ivory:      #F5F1E9;
  --ivory-dim:  #D8D3C7;
  --slate:      #9AA0A6;
  --slate-dim:  #6E747B;
  --ember:      #E2593B;
  --white:      #FFFFFF;

  /* Semantic */
  --bg:          var(--obsidian);
  --surface:     var(--charcoal);
  --surface-2:   var(--charcoal-2);
  --text:        var(--ivory);
  --text-muted:  var(--slate);
  --accent:      var(--gold);
  --line:        rgba(201, 162, 75, 0.16);
  --line-soft:   rgba(245, 241, 233, 0.08);

  /* Gold gradient */
  --grad-gold: linear-gradient(135deg, var(--gold-soft) 0%, var(--gold) 45%, var(--bronze) 100%);
  --grad-dark: linear-gradient(180deg, rgba(14,14,15,0) 0%, rgba(14,14,15,0.75) 60%, var(--obsidian) 100%);
  --grad-hero: linear-gradient(115deg, rgba(14,14,15,0.94) 0%, rgba(14,14,15,0.62) 45%, rgba(14,14,15,0.35) 100%);

  /* Typography */
  --font-display: 'Playfair Display', 'Times New Roman', serif;
  --font-sans: 'Manrope', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;

  /* Fluid type scale */
  --fs-eyebrow: 0.78rem;
  --fs-body:    clamp(1rem, 0.96rem + 0.2vw, 1.075rem);
  --fs-lead:    clamp(1.1rem, 1rem + 0.5vw, 1.35rem);
  --fs-h3:      clamp(1.3rem, 1.1rem + 1vw, 1.75rem);
  --fs-h2:      clamp(2rem, 1.5rem + 2.4vw, 3.4rem);
  --fs-h1:      clamp(2.6rem, 1.8rem + 4.2vw, 5.6rem);

  /* Spacing / layout */
  --container: 1200px;
  --container-wide: 1360px;
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --section-y: clamp(4.5rem, 8vw, 8rem);
  --radius: 18px;
  --radius-sm: 12px;
  --radius-lg: 28px;

  /* Elevation (multi-layer shadows) */
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.4);
  --shadow-md: 0 10px 24px -12px rgba(0,0,0,0.7), 0 2px 6px rgba(0,0,0,0.4);
  --shadow-lg: 0 40px 80px -32px rgba(0,0,0,0.85), 0 8px 24px -12px rgba(0,0,0,0.6);
  --shadow-gold: 0 20px 50px -20px rgba(201,162,75,0.45);

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --dur: 0.32s;

  /* Z-index scale */
  --z-sticky: 10;
  --z-header: 100;
  --z-dropdown: 300;
  --z-overlay: 999;
  --z-toast: 9999;
}

/* ------------------------------- Base Reset ------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

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

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

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

/* Focus states (a11y) */
:focus-visible {
  outline: 3px solid var(--gold-soft);
  outline-offset: 3px;
  border-radius: 4px;
}

/* Skip link */
.skip-link {
  position: absolute; left: 1rem; top: -3rem; z-index: var(--z-toast);
  background: var(--gold); color: var(--obsidian); padding: 0.6rem 1rem;
  border-radius: 8px; font-weight: 700; transition: top 0.2s;
}
.skip-link:focus { top: 1rem; }

/* ------------------------------- Typography ------------------------------- */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; line-height: 1.08; letter-spacing: -0.01em; }
h1 { font-size: var(--fs-h1); font-weight: 800; }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); }
p { max-width: 68ch; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-family: var(--font-sans); font-size: var(--fs-eyebrow); font-weight: 700;
  letter-spacing: 0.28em; text-transform: uppercase; color: var(--gold);
}
.eyebrow::before {
  content: ""; width: 30px; height: 1px; background: var(--grad-gold);
}
.eyebrow.centered { justify-content: center; }

.text-gold { color: var(--gold); }
.serif-accent { font-family: var(--font-display); font-style: italic; color: var(--gold-soft); }
.lead { font-size: var(--fs-lead); color: var(--ivory-dim); line-height: 1.6; }

.gold-text {
  background: var(--grad-gold);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}

/* ------------------------------- Layout ----------------------------------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.container-wide { max-width: var(--container-wide); }
.section { padding-block: var(--section-y); position: relative; }
.section-tight { padding-block: clamp(3rem, 5vw, 4.5rem); }

.section-head { max-width: 640px; margin-bottom: clamp(2.5rem, 5vw, 3.75rem); }
.section-head.centered { margin-inline: auto; text-align: center; }
.section-head h2 { margin-top: 1rem; }
.section-head p { margin-top: 1.1rem; color: var(--text-muted); }
.section-head.centered p { margin-inline: auto; }

.grid { display: grid; gap: clamp(1.25rem, 2.5vw, 2rem); }
.cols-2 { grid-template-columns: repeat(2, 1fr); }
.cols-3 { grid-template-columns: repeat(3, 1fr); }
.cols-4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 900px) { .cols-3, .cols-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .cols-2, .cols-3, .cols-4 { grid-template-columns: 1fr; } }

/* Decorative backdrop glow / orbs */
.glow { position: absolute; border-radius: 50%; filter: blur(90px); opacity: 0.5; z-index: 0; pointer-events: none; }
.glow-gold { background: radial-gradient(circle, rgba(201,162,75,0.35), transparent 70%); }
.glow-ember { background: radial-gradient(circle, rgba(226,89,59,0.22), transparent 70%); }

/* ------------------------------- Buttons ---------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.6rem;
  padding: 0.95rem 1.75rem; border-radius: 100px; font-weight: 700;
  font-size: 0.95rem; letter-spacing: 0.01em; position: relative;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease),
              background-color var(--dur) var(--ease), color var(--dur) var(--ease);
  will-change: transform;
}
.btn svg { width: 18px; height: 18px; }
.btn-gold { background: var(--grad-gold); color: var(--obsidian); box-shadow: var(--shadow-gold); }
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 28px 60px -18px rgba(201,162,75,0.6); }
.btn-ghost { border: 1px solid var(--line); color: var(--ivory); background: rgba(255,255,255,0.02); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold-soft); transform: translateY(-3px); background: rgba(201,162,75,0.06); }
.btn-dark { background: var(--obsidian); color: var(--ivory); border: 1px solid var(--line-soft); }
.btn-dark:hover { transform: translateY(-3px); border-color: var(--gold); }
.btn-block { width: 100%; }
.btn-lg { padding: 1.1rem 2.2rem; font-size: 1rem; }

/* ------------------------------- Top Bar ---------------------------------- */
.topbar {
  background: linear-gradient(90deg, rgba(23,24,27,0.9), rgba(14,14,15,0.9));
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line-soft);
  font-size: 0.82rem; color: var(--ivory-dim);
  position: relative; z-index: var(--z-header);
}
.topbar-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding-block: 0.55rem; }
.topbar-info { display: flex; align-items: center; gap: 1.6rem; flex-wrap: wrap; }
.topbar-info a, .topbar-info span { display: inline-flex; align-items: center; gap: 0.45rem; color: var(--ivory-dim); transition: color 0.2s; }
.topbar-info a:hover { color: var(--gold-soft); }
.topbar-info svg { width: 15px; height: 15px; color: var(--gold); flex-shrink: 0; }
.topbar-social { display: flex; align-items: center; gap: 0.85rem; }
.topbar-social a {
  width: 30px; height: 30px; display: grid; place-items: center; border-radius: 50%;
  border: 1px solid var(--line-soft); color: var(--ivory-dim); transition: all 0.25s var(--ease);
}
.topbar-social a:hover { color: var(--obsidian); background: var(--gold); border-color: var(--gold); transform: translateY(-2px); }
.topbar-social svg { width: 15px; height: 15px; }
@media (max-width: 860px) { .topbar-info .hide-sm { display: none; } .topbar-info { gap: 1rem; } }
@media (max-width: 560px) { .topbar-inner { justify-content: center; } .topbar-social { display: none; } }

/* ------------------------------- Header / Nav ----------------------------- */
.site-header {
  position: sticky; top: 0; z-index: var(--z-header);
  transition: background-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(14,14,15,0.72);
  backdrop-filter: blur(18px) saturate(140%); -webkit-backdrop-filter: blur(18px) saturate(140%);
  border-bottom: 1px solid var(--line-soft);
  box-shadow: 0 10px 40px -20px rgba(0,0,0,0.8);
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: 2rem; padding-block: 1rem; }
.brand { display: inline-flex; align-items: center; flex-shrink: 0; }
.brand img { height: 54px; width: auto; filter: drop-shadow(0 4px 12px rgba(0,0,0,0.5)); }

.nav-links { display: flex; align-items: center; gap: 0.35rem; }
.nav-links a {
  padding: 0.5rem 0.9rem; border-radius: 100px; font-size: 0.92rem; font-weight: 600;
  color: var(--ivory-dim); position: relative; transition: color 0.2s;
}
.nav-links a::after {
  content: ""; position: absolute; left: 50%; bottom: 0.15rem; transform: translateX(-50%);
  width: 0; height: 2px; background: var(--grad-gold); border-radius: 2px; transition: width 0.25s var(--ease);
}
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--gold-soft); }
.nav-links a:hover::after, .nav-links a[aria-current="page"]::after { width: 18px; }
.nav-cta { display: flex; align-items: center; gap: 0.75rem; flex-shrink: 0; }

.nav-toggle { display: none; width: 44px; height: 44px; border-radius: 10px; align-items: center; justify-content: center; border: 1px solid var(--line-soft); }
.nav-toggle span { position: relative; width: 20px; height: 2px; background: var(--ivory); border-radius: 2px; transition: 0.3s var(--ease); }
.nav-toggle span::before, .nav-toggle span::after { content: ""; position: absolute; left: 0; width: 20px; height: 2px; background: var(--ivory); border-radius: 2px; transition: 0.3s var(--ease); }
.nav-toggle span::before { top: -6px; } .nav-toggle span::after { top: 6px; }
body.menu-open .nav-toggle span { background: transparent; }
body.menu-open .nav-toggle span::before { top: 0; transform: rotate(45deg); }
body.menu-open .nav-toggle span::after { top: 0; transform: rotate(-45deg); }

@media (max-width: 1024px) {
  .nav-links, .nav-cta .btn-ghost { display: none; }
  .nav-toggle { display: inline-flex; }
}

/* Mobile full-screen menu */
.mobile-menu {
  position: fixed; inset: 0; z-index: var(--z-overlay);
  background: linear-gradient(160deg, rgba(14,14,15,0.98), rgba(23,24,27,0.98));
  backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  display: flex; flex-direction: column; justify-content: center; padding: var(--gutter);
  opacity: 0; visibility: hidden; transform: translateY(-8px);
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease), visibility 0.35s;
}
body.menu-open .mobile-menu { opacity: 1; visibility: visible; transform: none; }
.mobile-menu a.m-link {
  font-family: var(--font-display); font-size: clamp(1.6rem, 8vw, 2.4rem); font-weight: 700;
  padding: 0.5rem 0; color: var(--ivory); border-bottom: 1px solid var(--line-soft);
  display: flex; justify-content: space-between; align-items: center;
  opacity: 0; transform: translateX(-16px);
}
body.menu-open .mobile-menu a.m-link { animation: menuIn 0.5s var(--ease) forwards; }
.mobile-menu a.m-link:nth-child(1){animation-delay:.08s}.mobile-menu a.m-link:nth-child(2){animation-delay:.12s}
.mobile-menu a.m-link:nth-child(3){animation-delay:.16s}.mobile-menu a.m-link:nth-child(4){animation-delay:.20s}
.mobile-menu a.m-link:nth-child(5){animation-delay:.24s}.mobile-menu a.m-link:nth-child(6){animation-delay:.28s}
.mobile-menu a.m-link:nth-child(7){animation-delay:.32s}.mobile-menu a.m-link:nth-child(8){animation-delay:.36s}
.mobile-menu a.m-link span { color: var(--gold); font-size: 1rem; }
.mobile-menu .m-cta { margin-top: 2rem; }
@keyframes menuIn { to { opacity: 1; transform: none; } }

/* ------------------------------- Hero ------------------------------------- */
.hero { position: relative; min-height: clamp(640px, 92vh, 940px); display: flex; align-items: center; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 120%; object-fit: cover; will-change: transform; }
.hero-bg::after { content: ""; position: absolute; inset: 0; background: var(--grad-hero); }
.hero-bg::before { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(0deg, var(--obsidian) 2%, transparent 30%); }
.hero .container { position: relative; z-index: 2; }
.hero-content { max-width: 760px; }
.hero h1 { margin: 1.25rem 0 1.5rem; }
.hero h1 .line { display: block; overflow: hidden; }
.hero h1 .line > span { display: block; transform: translateY(105%); }
.hero p.lead { max-width: 540px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.25rem; }
.hero-badge {
  position: absolute; z-index: 3; right: clamp(1rem, 5vw, 4rem); bottom: clamp(6rem, 12vh, 9rem);
  display: flex; align-items: center; gap: 0.85rem; padding: 0.9rem 1.25rem;
}
.hero-badge .stars { color: var(--gold); font-size: 0.95rem; letter-spacing: 2px; }
.hero-badge strong { font-family: var(--font-display); font-size: 1.5rem; }
.hero-badge small { color: var(--text-muted); font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.12em; }
@media (max-width: 720px) { .hero-badge { display: none; } }

.hero-scroll { position: absolute; z-index: 3; left: 50%; bottom: 2rem; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 0.5rem; color: var(--text-muted); font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; }
.hero-scroll .mouse { width: 22px; height: 34px; border: 1.5px solid var(--line); border-radius: 12px; position: relative; }
.hero-scroll .mouse::after { content: ""; position: absolute; left: 50%; top: 7px; width: 3px; height: 6px; background: var(--gold); border-radius: 2px; transform: translateX(-50%); animation: scrolldot 1.8s var(--ease) infinite; }
@keyframes scrolldot { 0%{opacity:0;transform:translate(-50%,0)}40%{opacity:1}80%{opacity:0;transform:translate(-50%,10px)}100%{opacity:0} }

/* Page hero (interior pages) */
.page-hero { position: relative; padding-block: clamp(6rem, 14vh, 9rem) clamp(3rem, 6vw, 5rem); overflow: hidden; }
.page-hero-bg { position: absolute; inset: 0; z-index: 0; }
.page-hero-bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.28; }
.page-hero-bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(14,14,15,0.75), var(--obsidian)); }
.page-hero .container { position: relative; z-index: 2; }
.breadcrumb { display: flex; gap: 0.5rem; align-items: center; font-size: 0.82rem; color: var(--text-muted); margin-top: 1.25rem; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: var(--gold); }

/* ------------------------------- Glass card ------------------------------- */
.glass {
  background: rgba(31, 32, 36, 0.55);
  backdrop-filter: blur(16px) saturate(130%); -webkit-backdrop-filter: blur(16px) saturate(130%);
  border: 1px solid var(--line-soft); border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}

/* --------------------------- Stats / trust strip -------------------------- */
.trust { border-block: 1px solid var(--line-soft); }
.trust-inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 2rem; }
.stat { text-align: center; flex: 1 1 auto; }
.stat .num { font-family: var(--font-display); font-size: clamp(2.2rem, 4vw, 3.2rem); font-weight: 800; line-height: 1; color: var(--ivory); }
.stat .num .suffix { color: var(--gold); }
.stat .label { display: block; margin-top: 0.5rem; font-size: 0.8rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-muted); }
.stat + .stat { border-left: 1px solid var(--line-soft); padding-left: 2rem; }
@media (max-width: 720px) { .stat + .stat { border-left: none; padding-left: 0; } .trust-inner { gap: 1.5rem; } .stat { flex-basis: 40%; } }
.owned-badge { display: inline-flex; align-items: center; gap: 0.6rem; padding: 0.55rem 1.1rem; border-radius: 100px; border: 1px solid var(--line); color: var(--gold-soft); font-size: 0.82rem; font-weight: 700; letter-spacing: 0.04em; }
.owned-badge svg { width: 16px; height: 16px; }

/* ------------------------------- Media / About ---------------------------- */
.media-split { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.media-split.reverse { direction: rtl; } .media-split.reverse > * { direction: ltr; }
@media (max-width: 900px) { .media-split { grid-template-columns: 1fr; } }
.media-frame { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.media-frame img { width: 100%; aspect-ratio: 4/5; object-fit: cover; transition: transform 0.8s var(--ease); }
.media-frame:hover img { transform: scale(1.05); }
.media-frame::after { content: ""; position: absolute; inset: 0; border: 1px solid var(--line); border-radius: var(--radius-lg); pointer-events: none; }
.media-float {
  position: absolute; bottom: 1.25rem; left: 1.25rem; right: 1.25rem;
  padding: 1.1rem 1.35rem; display: flex; align-items: center; gap: 1rem;
}
.media-float .ic { width: 44px; height: 44px; border-radius: 12px; background: var(--grad-gold); display: grid; place-items: center; flex-shrink: 0; }
.media-float .ic svg { width: 22px; height: 22px; color: var(--obsidian); }
.media-float strong { display: block; font-family: var(--font-display); font-size: 1.05rem; }
.media-float small { color: var(--text-muted); font-size: 0.8rem; }

.about-list { display: grid; gap: 1.1rem; margin-top: 1.75rem; }
.about-list li { display: flex; gap: 0.9rem; align-items: flex-start; }
.about-list .tick { flex-shrink: 0; width: 26px; height: 26px; border-radius: 50%; background: rgba(201,162,75,0.12); display: grid; place-items: center; margin-top: 2px; }
.about-list .tick svg { width: 14px; height: 14px; color: var(--gold); }
.about-list strong { color: var(--ivory); }

/* ------------------------------- Program cards ---------------------------- */
.card-3d { perspective: 1000px; }
.program-card {
  position: relative; padding: 2rem 1.75rem; border-radius: var(--radius);
  background: linear-gradient(180deg, var(--charcoal-2), var(--charcoal));
  border: 1px solid var(--line-soft); overflow: hidden; height: 100%;
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
  transform-style: preserve-3d; cursor: pointer;
}
.program-card::before { content: ""; position: absolute; inset: 0; background: var(--grad-gold); opacity: 0; transition: opacity 0.4s var(--ease); }
.program-card:hover { border-color: var(--line); box-shadow: var(--shadow-lg); }
.program-card .p-num { position: absolute; top: 1.25rem; right: 1.5rem; font-family: var(--font-display); font-size: 2.4rem; color: rgba(201,162,75,0.14); font-weight: 800; }
.program-card .p-icon { width: 56px; height: 56px; border-radius: 14px; display: grid; place-items: center; background: rgba(201,162,75,0.1); border: 1px solid var(--line); margin-bottom: 1.4rem; transition: background 0.4s, transform 0.4s var(--ease); }
.program-card .p-icon svg { width: 28px; height: 28px; color: var(--gold); transition: color 0.4s; }
.program-card:hover .p-icon { background: var(--grad-gold); transform: translateY(-4px); }
.program-card:hover .p-icon svg { color: var(--obsidian); }
.program-card h3 { font-size: 1.3rem; margin-bottom: 0.6rem; }
.program-card p { font-size: 0.95rem; color: var(--text-muted); }
.program-card .p-more { margin-top: 1.25rem; display: inline-flex; align-items: center; gap: 0.4rem; font-weight: 700; font-size: 0.85rem; color: var(--gold); letter-spacing: 0.02em; }
.program-card .p-more svg { width: 15px; height: 15px; transition: transform 0.3s var(--ease); }
.program-card:hover .p-more svg { transform: translateX(4px); }

/* Feature rows */
.feature { display: flex; gap: 1.25rem; align-items: flex-start; padding: 1.5rem; border-radius: var(--radius); border: 1px solid var(--line-soft); background: rgba(255,255,255,0.015); transition: border-color 0.3s, transform 0.3s var(--ease); }
.feature:hover { border-color: var(--line); transform: translateY(-4px); }
.feature .f-ic { flex-shrink: 0; width: 50px; height: 50px; border-radius: 12px; background: rgba(201,162,75,0.1); display: grid; place-items: center; }
.feature .f-ic svg { width: 24px; height: 24px; color: var(--gold); }
.feature h3 { font-size: 1.15rem; margin-bottom: 0.4rem; }
.feature p { font-size: 0.92rem; color: var(--text-muted); }

/* ------------------------------- Recovery band ---------------------------- */
.band { position: relative; overflow: hidden; border-radius: var(--radius-lg); }
.band-bg { position: absolute; inset: 0; z-index: 0; }
.band-bg img { width: 100%; height: 100%; object-fit: cover; }
.band-bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(100deg, rgba(14,14,15,0.95) 30%, rgba(14,14,15,0.55)); }
.band-inner { position: relative; z-index: 1; padding: clamp(2.5rem, 6vw, 5rem); max-width: 640px; }
.band-tags { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 1.75rem; }
.band-tags span { padding: 0.5rem 1rem; border-radius: 100px; border: 1px solid var(--line); font-size: 0.82rem; color: var(--ivory-dim); background: rgba(14,14,15,0.4); }

/* ------------------------------- Reviews ---------------------------------- */
.rating-summary { display: flex; flex-wrap: wrap; align-items: center; gap: 1.75rem; padding: 1.75rem 2rem; margin-bottom: 2.5rem; }
.rating-summary .big { font-family: var(--font-display); font-size: 3.4rem; font-weight: 800; line-height: 1; }
.rating-summary .g-stars { color: var(--gold); font-size: 1.2rem; letter-spacing: 3px; }
.rating-summary .g-meta { color: var(--text-muted); font-size: 0.88rem; margin-top: 0.35rem; }
.rating-summary .g-logo { display: inline-flex; align-items: center; gap: 0.5rem; font-weight: 700; color: var(--ivory); }
.rating-summary .g-logo svg { width: 20px; height: 20px; }
.rating-summary .divider { width: 1px; align-self: stretch; background: var(--line-soft); }

.filter-chips { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-bottom: 2.25rem; }
.chip {
  padding: 0.55rem 1.15rem; border-radius: 100px; border: 1px solid var(--line-soft);
  font-size: 0.85rem; font-weight: 600; color: var(--ivory-dim); transition: all 0.25s var(--ease);
}
.chip:hover { border-color: var(--gold); color: var(--gold-soft); }
.chip.active { background: var(--grad-gold); color: var(--obsidian); border-color: transparent; }

.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
@media (max-width: 900px) { .reviews-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .reviews-grid { grid-template-columns: 1fr; } }
.review-card { padding: 1.75rem; border-radius: var(--radius); display: flex; flex-direction: column; gap: 1rem; transition: transform 0.4s var(--ease), border-color 0.4s; }
.review-card.hide { display: none; }
.review-card:hover { transform: translateY(-5px); border-color: var(--line); }
.review-card .r-top { display: flex; align-items: center; justify-content: space-between; }
.review-card .r-stars { color: var(--gold); letter-spacing: 2px; }
.review-card .r-quote { font-size: 0.98rem; color: var(--ivory-dim); line-height: 1.65; flex: 1; }
.review-card .r-quote::before { content: "\201C"; font-family: var(--font-display); color: var(--gold); font-size: 2.5rem; line-height: 0; vertical-align: -0.35em; margin-right: 0.15rem; }
.review-card .r-user { display: flex; align-items: center; gap: 0.85rem; padding-top: 0.5rem; border-top: 1px solid var(--line-soft); }
.review-card .r-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--grad-gold); color: var(--obsidian); display: grid; place-items: center; font-weight: 800; font-family: var(--font-display); flex-shrink: 0; }
.review-card .r-name { font-weight: 700; font-size: 0.95rem; }
.review-card .r-tag { font-size: 0.72rem; color: var(--gold); text-transform: uppercase; letter-spacing: 0.1em; }
.review-card .g-mark { width: 18px; height: 18px; }

/* ------------------------------- CTA band --------------------------------- */
.cta-band { position: relative; text-align: center; padding: clamp(3.5rem, 8vw, 6rem) var(--gutter); border-radius: var(--radius-lg); overflow: hidden; background: linear-gradient(140deg, var(--charcoal-2), var(--obsidian)); border: 1px solid var(--line); }
.cta-band h2 { max-width: 720px; margin: 1rem auto 1.25rem; }
.cta-band p { max-width: 560px; margin: 0 auto 2rem; color: var(--text-muted); }
.cta-band .hero-actions { justify-content: center; margin-top: 0; }

/* ------------------------------- Forms ------------------------------------ */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.form-grid .full { grid-column: 1 / -1; }
@media (max-width: 620px) { .form-grid { grid-template-columns: 1fr; } }
.field label { display: block; font-size: 0.82rem; font-weight: 600; color: var(--ivory-dim); margin-bottom: 0.45rem; letter-spacing: 0.02em; }
.field label .req { color: var(--gold); }
.field input, .field select, .field textarea {
  width: 100%; padding: 0.85rem 1rem; border-radius: 12px;
  background: rgba(14,14,15,0.6); border: 1px solid var(--line-soft); color: var(--ivory);
  transition: border-color 0.25s, box-shadow 0.25s;
}
.field textarea { resize: vertical; min-height: 130px; }
.field input::placeholder, .field textarea::placeholder { color: var(--slate-dim); }
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none' stroke='%23C9A24B' stroke-width='2' viewBox='0 0 24 24'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,162,75,0.15); }
.field.invalid input, .field.invalid select, .field.invalid textarea { border-color: var(--ember); }
.field .err { display: none; color: var(--ember); font-size: 0.78rem; margin-top: 0.35rem; }
.field.invalid .err { display: block; }
.honeypot { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; overflow: hidden; }
.form-success { display: none; text-align: center; padding: 2.5rem 1rem; }
.form-success.show { display: block; }
.form-success .ok-ic { width: 64px; height: 64px; border-radius: 50%; background: var(--grad-gold); display: grid; place-items: center; margin: 0 auto 1.25rem; }
.form-success .ok-ic svg { width: 32px; height: 32px; color: var(--obsidian); }

/* ------------------------------- Schedule --------------------------------- */
.schedule-table { width: 100%; border-collapse: collapse; overflow: hidden; border-radius: var(--radius); }
.schedule-wrap { overflow-x: auto; border: 1px solid var(--line-soft); border-radius: var(--radius); }
.schedule-table th, .schedule-table td { padding: 1rem 1.15rem; text-align: left; border-bottom: 1px solid var(--line-soft); white-space: nowrap; }
.schedule-table thead th { background: var(--charcoal-2); font-family: var(--font-sans); font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); }
.schedule-table td .cls { font-weight: 700; color: var(--ivory); }
.schedule-table td .coach { display: block; font-size: 0.8rem; color: var(--text-muted); }
.schedule-table tbody tr:hover { background: rgba(201,162,75,0.04); }
.pill { display: inline-block; padding: 0.2rem 0.7rem; border-radius: 100px; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.04em; }
.pill-box { background: rgba(226,89,59,0.16); color: #F0A08C; }
.pill-str { background: rgba(201,162,75,0.16); color: var(--gold-soft); }
.pill-fun { background: rgba(120,180,255,0.14); color: #A9CBFF; }
.pill-rec { background: rgba(120,220,170,0.14); color: #98E3BF; }

/* ------------------------------- Pricing ---------------------------------- */
.price-card { position: relative; padding: 2.25rem; border-radius: var(--radius-lg); border: 1px solid var(--line-soft); background: linear-gradient(180deg, var(--charcoal-2), var(--charcoal)); display: flex; flex-direction: column; transition: transform 0.4s var(--ease), border-color 0.4s; height: 100%; }
.price-card:hover { transform: translateY(-6px); border-color: var(--line); }
.price-card.featured { border-color: var(--gold); box-shadow: var(--shadow-gold); }
.price-card .badge-top { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--grad-gold); color: var(--obsidian); font-size: 0.72rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; padding: 0.35rem 1rem; border-radius: 100px; }
.price-card .p-name { font-family: var(--font-display); font-size: 1.4rem; margin-bottom: 0.5rem; }
.price-card .p-price { font-family: var(--font-display); font-size: 3rem; font-weight: 800; line-height: 1; }
.price-card .p-price span { font-family: var(--font-sans); font-size: 0.95rem; font-weight: 600; color: var(--text-muted); }
.price-card .p-desc { color: var(--text-muted); font-size: 0.9rem; margin: 0.75rem 0 1.5rem; }
.price-list { display: grid; gap: 0.85rem; margin-bottom: 1.75rem; flex: 1; }
.price-list li { display: flex; gap: 0.65rem; align-items: flex-start; font-size: 0.92rem; color: var(--ivory-dim); }
.price-list svg { width: 18px; height: 18px; color: var(--gold); flex-shrink: 0; margin-top: 2px; }

/* ------------------------------- Team ------------------------------------- */
.team-card { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line-soft); background: var(--charcoal); transition: transform 0.4s var(--ease), border-color 0.4s; }
.team-card:hover { transform: translateY(-6px); border-color: var(--line); }
.team-photo { position: relative; aspect-ratio: 3/4; overflow: hidden; }
.team-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); filter: grayscale(0.25); }
.team-card:hover .team-photo img { transform: scale(1.06); filter: grayscale(0); }
.team-photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(14,14,15,0.85), transparent 55%); }
.team-photo .socials { position: absolute; bottom: 1rem; left: 1.25rem; z-index: 2; display: flex; gap: 0.5rem; opacity: 0; transform: translateY(8px); transition: 0.35s var(--ease); }
.team-card:hover .socials { opacity: 1; transform: none; }
.team-photo .socials a { width: 34px; height: 34px; border-radius: 50%; background: rgba(14,14,15,0.7); display: grid; place-items: center; border: 1px solid var(--line-soft); }
.team-photo .socials svg { width: 15px; height: 15px; color: var(--gold); }
.team-info { padding: 1.25rem 1.5rem 1.5rem; }
.team-info h3 { font-size: 1.2rem; }
.team-info .role { color: var(--gold); font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.1em; margin-top: 0.25rem; }
.team-info p { font-size: 0.9rem; color: var(--text-muted); margin-top: 0.75rem; }

/* ------------------------------- Contact info ----------------------------- */
.contact-item { display: flex; gap: 1rem; align-items: flex-start; padding: 1.25rem 0; border-bottom: 1px solid var(--line-soft); }
.contact-item:last-child { border-bottom: none; }
.contact-item .c-ic { flex-shrink: 0; width: 46px; height: 46px; border-radius: 12px; background: rgba(201,162,75,0.1); border: 1px solid var(--line); display: grid; place-items: center; }
.contact-item .c-ic svg { width: 22px; height: 22px; color: var(--gold); }
.contact-item .c-label { font-size: 0.76rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--text-muted); }
.contact-item .c-val { font-weight: 600; color: var(--ivory); }
.contact-item a.c-val:hover { color: var(--gold); }
.map-frame { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line-soft); box-shadow: var(--shadow-md); }
.map-frame iframe { display: block; width: 100%; height: 100%; min-height: 320px; border: 0; filter: grayscale(0.4) invert(0.9) contrast(0.85); }

/* Hours list */
.hours-list li { display: flex; justify-content: space-between; padding: 0.7rem 0; border-bottom: 1px solid var(--line-soft); font-size: 0.92rem; }
.hours-list li:last-child { border-bottom: none; }
.hours-list .day { color: var(--ivory-dim); }
.hours-list .time { color: var(--gold-soft); font-weight: 600; }
.hours-list .closed { color: var(--slate-dim); }

/* ------------------------------- Footer ----------------------------------- */
.site-footer { position: relative; margin-top: var(--section-y); border-top: 1px solid var(--line-soft); background: linear-gradient(180deg, var(--obsidian), #0A0A0B); overflow: hidden; }
.footer-glow { position: absolute; top: -120px; left: 10%; width: 340px; height: 340px; }
.footer-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 2.5rem; padding-block: clamp(3rem, 6vw, 4.5rem); position: relative; z-index: 1; }
@media (max-width: 900px) { .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; } }
@media (max-width: 520px) { .footer-top { grid-template-columns: 1fr; } }
.footer-brand img { height: 52px; width: auto; max-width: none; object-fit: contain; margin-bottom: 1.1rem; }
.footer-brand p { color: var(--text-muted); font-size: 0.9rem; max-width: 34ch; }
.footer-social { display: flex; gap: 0.6rem; margin-top: 1.4rem; }
.footer-social a { width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--line-soft); display: grid; place-items: center; color: var(--ivory-dim); transition: all 0.25s var(--ease); }
.footer-social a:hover { background: var(--gold); color: var(--obsidian); border-color: var(--gold); transform: translateY(-3px); }
.footer-social svg { width: 17px; height: 17px; }
.footer-col h4 { font-family: var(--font-sans); font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.25rem; }
.footer-col ul { display: grid; gap: 0.7rem; }
.footer-col a, .footer-col li { color: var(--text-muted); font-size: 0.9rem; transition: color 0.2s; }
.footer-col a:hover { color: var(--gold-soft); }
.footer-contact li { display: flex; gap: 0.6rem; align-items: flex-start; }
.footer-contact svg { width: 16px; height: 16px; color: var(--gold); flex-shrink: 0; margin-top: 3px; }
.footer-bottom { border-top: 1px solid var(--line-soft); padding-block: 1.5rem; display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; align-items: center; position: relative; z-index: 1; }
.footer-bottom p { font-size: 0.82rem; color: var(--slate-dim); }
.footer-credit a { color: var(--gold-soft); font-weight: 700; }
.footer-credit a:hover { text-decoration: underline; }

/* ---------------------- Sticky mobile Call / WhatsApp --------------------- */
.mobile-cta { position: fixed; left: 0; right: 0; bottom: 0; z-index: var(--z-dropdown); display: none; padding: 0.6rem; padding-bottom: calc(0.6rem + env(safe-area-inset-bottom)); gap: 0.6rem; background: rgba(14,14,15,0.85); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); border-top: 1px solid var(--line-soft); }
.mobile-cta a { flex: 1; display: flex; align-items: center; justify-content: center; gap: 0.55rem; padding: 0.95rem; border-radius: 14px; font-weight: 700; font-size: 0.95rem; }
.mobile-cta a svg { width: 20px; height: 20px; }
.mobile-cta .m-call { background: var(--grad-gold); color: var(--obsidian); }
.mobile-cta .m-wa { background: #25D366; color: #062e13; }
.mobile-cta a:active { transform: scale(0.97); }
@media (max-width: 768px) { .mobile-cta { display: flex; } body { padding-bottom: 4.5rem; } }

/* Floating WhatsApp bubble (desktop) */
.wa-float { position: fixed; right: 1.5rem; bottom: 1.5rem; z-index: var(--z-dropdown); width: 58px; height: 58px; border-radius: 50%; background: #25D366; display: grid; place-items: center; box-shadow: 0 12px 30px -8px rgba(37,211,102,0.6); animation: floaty 3s ease-in-out infinite; }
.wa-float svg { width: 30px; height: 30px; color: #fff; }
.wa-float::after { content: ""; position: absolute; inset: 0; border-radius: 50%; border: 2px solid #25D366; animation: pulse 2.2s var(--ease) infinite; }
@media (max-width: 768px) { .wa-float { display: none; } }
@keyframes pulse { 0%{transform:scale(1);opacity:0.7}100%{transform:scale(1.6);opacity:0} }
@keyframes floaty { 0%,100%{transform:translateY(0)}50%{transform:translateY(-8px)} }

/* ------------------------------- Reveal anim ------------------------------ */
/* Progressive enhancement: only hide when JS is active (html.js). Without JS,
   content stays fully visible so nothing is lost. */
.reveal, .reveal-x { transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out); will-change: opacity, transform; }
html.js .reveal { opacity: 0; transform: translateY(28px); }
html.js .reveal-x { opacity: 0; transform: translateX(-32px); transition-duration: 0.8s; }
.reveal.in, .reveal-x.in { opacity: 1 !important; transform: none !important; }
.reveal.d1 { transition-delay: 0.08s; } .reveal.d2 { transition-delay: 0.16s; }
.reveal.d3 { transition-delay: 0.24s; } .reveal.d4 { transition-delay: 0.32s; }
.float-slow { animation: floaty 6s ease-in-out infinite; }

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-x { opacity: 1 !important; transform: none !important; transition: none !important; }
  .hero h1 .line > span { transform: none !important; }
  .float-slow, .wa-float, .wa-float::after, .hero-scroll .mouse::after, .hero-bg img { animation: none !important; }
  *, *::before, *::after { transition-duration: 0.01ms !important; }
}

/* ------------------------------- Utilities -------------------------------- */
.mt-1 { margin-top: 1rem; } .mt-2 { margin-top: 2rem; } .mt-3 { margin-top: 3rem; }
.text-center { text-align: center; }
.divider-line { height: 1px; background: var(--line-soft); border: none; margin-block: var(--section-y); }
.tag-row { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.chip-static { padding: 0.5rem 1rem; border-radius: 100px; border: 1px solid var(--line); font-size: 0.82rem; color: var(--ivory-dim); }

/* ------------------------------- Studio Gallery (bento) ------------------- */
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 175px; grid-auto-flow: dense; gap: 14px; }
.gallery-item { position: relative; overflow: hidden; border-radius: 16px; border: 1px solid var(--line-soft); cursor: pointer; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.gallery-item::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(14,14,15,0.6), transparent 55%); opacity: 0.75; transition: opacity 0.4s var(--ease); }
.gallery-item::before { content: ""; position: absolute; inset: 0; z-index: 2; border-radius: 16px; box-shadow: inset 0 0 0 0 var(--gold); transition: box-shadow 0.4s var(--ease); pointer-events: none; }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item:hover::after { opacity: 0.4; }
.gallery-item:hover::before { box-shadow: inset 0 0 0 2px var(--gold); }
.gallery-item .cap { position: absolute; left: 15px; bottom: 13px; z-index: 3; font-size: 0.8rem; font-weight: 700; letter-spacing: 0.02em; color: var(--ivory); text-shadow: 0 2px 8px rgba(0,0,0,0.7); opacity: 0; transform: translateY(6px); transition: opacity 0.4s var(--ease), transform 0.4s var(--ease); }
.gallery-item:hover .cap { opacity: 1; transform: none; }
.gallery-item .cap::before { content: ""; display: inline-block; width: 16px; height: 2px; background: var(--gold); margin-right: 8px; vertical-align: middle; }
.g-w2 { grid-column: span 2; }
.g-h2 { grid-row: span 2; }
@media (max-width: 900px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 150px; } .g-w2 { grid-column: span 2; } .g-h2 { grid-row: span 1; } }
@media (max-width: 560px) { .gallery-grid { grid-auto-rows: 128px; } .gallery-item .cap { opacity: 1; transform: none; } }

/* ------------------------------- FAQ accordion ---------------------------- */
.faq-list { max-width: 860px; margin-inline: auto; display: grid; gap: 0.85rem; }
.faq-item { border: 1px solid var(--line-soft); border-radius: var(--radius); background: rgba(31,32,36,0.5); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); transition: border-color 0.3s var(--ease), background 0.3s; }
.faq-item[open] { border-color: var(--line); background: rgba(31,32,36,0.7); }
.faq-item summary { list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 1.25rem; padding: 1.2rem 1.5rem; font-family: var(--font-display); font-size: clamp(1.02rem, 0.98rem + 0.3vw, 1.2rem); font-weight: 700; color: var(--ivory); transition: color 0.25s; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--gold-soft); }
.faq-item summary:focus-visible { outline: 3px solid var(--gold-soft); outline-offset: 3px; border-radius: var(--radius); }
.faq-icon { flex-shrink: 0; width: 26px; height: 26px; display: grid; place-items: center; position: relative; }
.faq-icon::before, .faq-icon::after { content: ""; position: absolute; background: var(--gold); border-radius: 2px; transition: transform 0.3s var(--ease), opacity 0.3s var(--ease); }
.faq-icon::before { width: 15px; height: 2px; }
.faq-icon::after { width: 2px; height: 15px; }
.faq-item[open] .faq-icon::after { transform: rotate(90deg); opacity: 0; }
.faq-a { padding: 0 1.5rem 1.35rem; color: var(--text-muted); font-size: 0.96rem; line-height: 1.72; }
.faq-a p { max-width: none; }
.faq-item[open] .faq-a { animation: faqIn 0.4s var(--ease); }
@keyframes faqIn { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) { .faq-item[open] .faq-a { animation: none; } }
