/* ================================================================
   SYRO INNOVATIVE FITNESS — CoreHit Lime Palette
   ================================================================ */

/* ── Variables ── */
:root {
  --bg:           #0e0e0e;
  --surface:      #161616;
  --surface-alt:  #1e1e1e;
  --surface-d:    #252525;
  --border:       #2b2b2b;
  --accent:       #c8f04b;
  --accent-h:     #b5d93e;
  --accent-text:  #0e0e0e;
  --accent-dim:   rgba(200, 240, 75, 0.10);
  --accent-glow:  rgba(200, 240, 75, 0.25);
  --white:        #ffffff;
  --muted:        #cccccc;
  --grey:         #888888;
  --grey-d:       #444444;
  --footer-bg:    #0a0a0a;
  --nav-bg:       rgba(14, 14, 14, 0.95);
  --nav-h:        72px;
  --ease:         cubic-bezier(0.4, 0, 0.2, 1);
  --t:            0.35s;
  --font-d:       'Bebas Neue', sans-serif;
  --font-c:       'Barlow Condensed', sans-serif;
  --font-b:       'Barlow', sans-serif;

  /* ── Type Scale ── */
  --fs-micro:  11px;   /* badges, footnotes, meta labels          */
  --fs-xs:     12px;   /* secondary labels, tags, captions         */
  --fs-sm:     13px;   /* table data, footer text, notes           */
  --fs-base:   15px;   /* card body text, list items               */
  --fs-md:     16px;   /* primary body copy                        */
  --fs-lg:     18px;   /* section subtitles, lead text             */

  /* ── Line Heights ── */
  --lh-heading: 0.95;  /* display/Bebas headings                   */
  --lh-tight:   1.3;   /* short labels, card titles                */
  --lh-body:    1.75;  /* standard paragraph text                  */
  --lh-loose:   1.85;  /* long-form testimonials / about copy      */

  /* ── Letter Spacing ── */
  --ls-label:   3px;   /* UI labels (Barlow Condensed)             */
  --ls-eyebrow: 4px;   /* section eyebrow labels                   */
  --ls-button:  2.5px; /* CTAs and nav items                       */
  --ls-display: 2px;   /* Bebas Neue headings                      */
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: var(--nav-h); }
body {
  background: var(--bg);
  color: var(--white);
  font-family: var(--font-b);
  font-size: var(--fs-md);
  line-height: var(--lh-body);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: 'kern' 1, 'liga' 1;
}
img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { color: inherit; text-decoration: none; transition: color var(--t) var(--ease); }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── Layout ── */
.wrap { max-width: 1280px; margin: 0 auto; padding: 0 32px; }
.s-pad { padding: 110px 0; }

/* ── Section Label ── */
.sec-label {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
  font-family: var(--font-c);
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: var(--ls-eyebrow);
  text-transform: uppercase;
  color: var(--accent);
}
.sec-num  { font-family: var(--font-d); font-size: 14px; color: var(--accent); letter-spacing: var(--ls-display); }
.sec-line { flex: 0 0 40px; height: 1px; background: var(--accent); }
.sec-label.light { color: rgba(255,255,255,0.55); }
.sec-label.light .sec-line { background: rgba(255,255,255,0.3); }

/* ── Section Titles ── */
.sec-title {
  font-family: var(--font-d);
  font-size: clamp(44px, 5.5vw, 76px);
  line-height: var(--lh-heading);
  letter-spacing: var(--ls-display);
  color: var(--white);
}
.txt-red { color: var(--accent); }

.sec-header { text-align: center; margin-bottom: 64px; }
.sec-header .sec-label { justify-content: center; }

.sec-sub {
  margin-top: 20px;
  color: var(--muted);
  font-family: var(--font-b);
  font-size: var(--fs-lg);
  font-weight: 300;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  line-height: var(--lh-body);
}

.body-copy {
  color: var(--muted);
  font-family: var(--font-b);
  font-size: var(--fs-md);
  font-weight: 400;
  line-height: var(--lh-body);
  margin-bottom: 20px;
}

/* ── Scroll Reveal ── */
.reveal-up, .reveal-left, .reveal-right {
  opacity: 0;
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}
.reveal-up    { transform: translateY(48px); }
.reveal-left  { transform: translateX(-48px); }
.reveal-right { transform: translateX(48px); }
.revealed { opacity: 1 !important; transform: none !important; }
.delay-1 { transition-delay: 0.08s; }
.delay-2 { transition-delay: 0.18s; }
.delay-3 { transition-delay: 0.28s; }
.delay-4 { transition-delay: 0.38s; }

/* ── Buttons ── */
.btn-red {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--accent);
  color: var(--accent-text);
  font-family: var(--font-c);
  font-size: var(--fs-xs);
  font-weight: 800;
  letter-spacing: var(--ls-button);
  text-transform: uppercase;
  padding: 16px 36px;
  line-height: 1;
  border: 2px solid var(--accent);
  transition: all var(--t) var(--ease);
  cursor: pointer;
}
.btn-red:hover {
  background: transparent;
  color: var(--accent);
}
.btn-red.full { width: 100%; justify-content: center; }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--white);
  font-family: var(--font-c);
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: var(--ls-button);
  text-transform: uppercase;
  padding: 16px 36px;
  line-height: 1;
  border: 2px solid var(--border);
  transition: all var(--t) var(--ease);
  cursor: pointer;
}
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }
.btn-outline.full { width: 100%; justify-content: center; }

.btn-ghost-white {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--white);
  font-family: var(--font-c);
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: var(--ls-button);
  text-transform: uppercase;
  line-height: 1;
  padding: 16px 0;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,0.3);
  transition: all var(--t) var(--ease);
}
.btn-ghost-white:hover { color: var(--accent); border-color: var(--accent); gap: 16px; }

.btn-wa {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25d366;
  color: #ffffff;
  font-family: var(--font-c);
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: var(--ls-button);
  text-transform: uppercase;
  line-height: 1;
  padding: 16px 36px;
  border: 2px solid #25d366;
  transition: all var(--t) var(--ease);
}
.btn-wa:hover { background: #1da851; border-color: #1da851; }

/* ================================================================
   NAVIGATION
   ================================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background var(--t) var(--ease), border-color var(--t) var(--ease);
}
.navbar.scrolled {
  background: var(--nav-bg);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo { display: flex; flex-direction: column; gap: 1px; line-height: 1; }
.logo-main {
  font-family: var(--font-d);
  font-size: 32px;
  letter-spacing: 5px;
  color: var(--accent);
  transition: color var(--t);
}
.logo-tag {
  font-family: var(--font-c);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--grey);
}
.nav-logo:hover .logo-main { color: var(--accent-h); }


/* ================================================================
   HERO
   ================================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.06);
  animation: zoomOut 12s ease forwards;
}
@keyframes zoomOut { to { transform: scale(1); } }

.hero-veil {
  position: absolute; inset: 0;
  background: linear-gradient(
    100deg,
    rgba(14,14,14,0.97) 0%,
    rgba(14,14,14,0.8) 55%,
    rgba(14,14,14,0.50) 100%
  );
}

.hero-body {
  position: relative; z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  padding: calc(var(--nav-h) + 80px) 32px 60px;
  width: 100%;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: var(--font-c);
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: var(--ls-eyebrow);
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 28px;
  animation: fadeInUp 0.8s var(--ease) both;
}
.eyebrow-line { display: block; width: 48px; height: 1px; background: var(--accent); }

.hero-headline {
  font-family: var(--font-d);
  font-size: clamp(72px, 10vw, 148px);
  line-height: 0.9;
  letter-spacing: 2px;
  color: var(--white);
  margin-bottom: 28px;
  animation: fadeInUp 0.9s 0.1s var(--ease) both;
}
.hero-headline em { font-style: normal; color: var(--accent); display: block; }

.hero-copy {
  font-family: var(--font-b);
  font-size: var(--fs-lg);
  font-weight: 300;
  color: var(--muted);
  max-width: 480px;
  line-height: var(--lh-body);
  margin-bottom: 44px;
  animation: fadeInUp 1s 0.2s var(--ease) both;
}

.hero-actions {
  display: flex; align-items: center; gap: 28px; flex-wrap: wrap;
  animation: fadeInUp 1s 0.3s var(--ease) both;
}

.hero-badges {
  position: relative; z-index: 1;
  display: flex; align-items: center;
  background: rgba(255,255,255,0.02);
  border-top: 1px solid var(--border);
  padding: 28px 32px;
  max-width: 1280px; margin: 0 auto; width: 100%;
  animation: fadeInUp 1s 0.4s var(--ease) both;
  flex-wrap: wrap;
}

.hbadge {
  display: flex; align-items: baseline; gap: 4px;
  flex-direction: row; flex-wrap: wrap; padding: 0 40px;
}
.hbadge:first-child { padding-left: 0; }
.hbadge-num { font-family: var(--font-d); font-size: 36px; color: var(--white); line-height: 1; }
.hbadge-sym { font-family: var(--font-d); font-size: 22px; color: var(--accent); }
.hbadge-lbl {
  display: block; width: 100%;
  font-family: var(--font-c); font-size: 11px;
  font-weight: 600; letter-spacing: 3px; text-transform: uppercase;
  color: var(--grey); margin-top: 2px;
}
.hbadge-div { width: 1px; height: 40px; background: var(--border); flex-shrink: 0; }

.open-badge-inline {
  display: flex !important;
  flex-direction: row !important;
  align-items: center;
  gap: 12px !important;
  flex-wrap: nowrap;
}
.pulse-dot {
  width: 10px; height: 10px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(200,240,75,0.7); }
  70%  { box-shadow: 0 0 0 10px rgba(200,240,75,0); }
  100% { box-shadow: 0 0 0 0 rgba(200,240,75,0); }
}

.hero-scroll {
  position: absolute; bottom: 36px; right: 48px; z-index: 1;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  font-family: var(--font-c); font-size: 10px; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase; color: var(--grey);
  writing-mode: vertical-rl;
  animation: fadeIn 1s 0.8s both;
}
.scroll-line {
  width: 1px; height: 60px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  animation: scrollPulse 2s infinite;
}
@keyframes scrollPulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: none; } }
@keyframes fadeIn   { from { opacity: 0; } to { opacity: 1; } }

/* ================================================================
   MARQUEE STRIPS
   ================================================================ */
.marquee-strip {
  overflow: hidden;
  white-space: nowrap;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.strip-red  { background: var(--accent); border-color: var(--accent); }
.strip-dark { background: var(--surface); }

.marquee-track {
  display: inline-flex;
  align-items: center;
  gap: 28px;
  padding: 16px 28px;
  animation: marqueeScroll 28s linear infinite;
  font-family: var(--font-c);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--accent-text);
}
.strip-dark .marquee-track { color: var(--grey); }
.marquee-track.reverse { animation-direction: reverse; animation-duration: 35s; }

.mdot { color: rgba(0,0,0,0.4); font-size: 10px; }
.strip-dark .mdot { color: var(--grey-d); }

@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ================================================================
   ABOUT
   ================================================================ */
.about { background: var(--surface); }

.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }

.about-img-col { position: relative; height: 600px; }
.about-img-main { position: absolute; top: 0; left: 0; width: 82%; height: 88%; overflow: hidden; }
.about-img-main img { transition: transform 0.9s var(--ease); }
.about-img-main:hover img { transform: scale(1.04); }

.about-img-float {
  position: absolute; bottom: 0; right: 0;
  width: 52%;
  background: var(--bg);
  border: 3px solid var(--bg);
  overflow: hidden;
}
.about-img-float img { height: 220px; }

.float-label {
  padding: 16px 18px;
  background: var(--accent);
  display: flex; flex-direction: column; gap: 3px;
}
.float-label strong {
  font-family: var(--font-d); font-size: 20px; letter-spacing: 2px; color: var(--accent-text);
}
.float-label span {
  font-family: var(--font-c); font-size: 11px; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase; color: rgba(0,0,0,0.6);
}

.about-text-col { padding-left: 12px; }

.about-quote {
  font-family: var(--font-d);
  font-size: 26px; line-height: var(--lh-tight); letter-spacing: var(--ls-display);
  color: var(--white);
  border-left: 3px solid var(--accent);
  padding-left: 20px;
  margin: 32px 0 40px;
}

/* ================================================================
   STATS BAR
   ================================================================ */
.stats-bar {
  background: var(--accent);
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap;
}
.stat-block {
  display: flex; flex-direction: column; align-items: center;
  padding: 44px 60px;
}
.stat-big {
  font-family: var(--font-d);
  font-size: 72px; line-height: 1;
  color: var(--accent-text);
  display: inline-block;
}
.stat-plus {
  font-family: var(--font-d); font-size: 40px;
  color: rgba(0,0,0,0.5);
  vertical-align: top; margin-top: 10px;
}
.stat-desc {
  font-family: var(--font-c); font-size: var(--fs-xs);
  font-weight: 700; letter-spacing: var(--ls-label); text-transform: uppercase;
  color: rgba(0,0,0,0.6); margin-top: 8px;
}
.stat-sep { width: 1px; height: 64px; background: rgba(0,0,0,0.15); flex-shrink: 0; }

/* ================================================================
   PROGRAMS
   ================================================================ */
.programs { background: var(--bg); }

.programs-grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 0;
  border: 1px solid var(--border);
}

.prog-card {
  display: flex; flex-direction: column;
  border-right: 1px solid var(--border);
  transition: background var(--t) var(--ease);
  position: relative; overflow: hidden;
}
.prog-card:last-child { border-right: none; }
.prog-card:hover { background: var(--surface); }

.prog-img { position: relative; height: 260px; overflow: hidden; }
.prog-img img { transition: transform 0.8s var(--ease); }
.prog-card:hover .prog-img img { transform: scale(1.07); }

.prog-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(14,14,14,1) 0%, rgba(14,14,14,0.2) 100%);
}

.prog-num {
  position: absolute; top: 16px; right: 16px;
  font-family: var(--font-d); font-size: 56px; line-height: 1;
  color: rgba(255,255,255,0.08);
  pointer-events: none; z-index: 1;
}

.prog-body {
  padding: 28px 24px 36px;
  flex: 1; display: flex; flex-direction: column; gap: 12px;
  border-top: 2px solid var(--accent);
}
.prog-icon { font-size: 22px; color: var(--accent); }
.prog-body h3 {
  font-family: var(--font-d); font-size: 28px;
  letter-spacing: var(--ls-display); color: var(--white); line-height: var(--lh-tight);
}
.prog-body p { font-family: var(--font-b); font-size: var(--fs-base); color: var(--grey); line-height: var(--lh-body); flex: 1; }
.prog-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-c); font-size: var(--fs-xs); font-weight: 700;
  letter-spacing: var(--ls-label); text-transform: uppercase;
  color: var(--accent); margin-top: 8px;
  transition: gap var(--t);
}
.prog-link:hover { gap: 14px; }

/* ================================================================
   WHY SYRO
   ================================================================ */
.why { background: var(--surface); }

.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }

.why-feature-list {
  display: flex; flex-direction: column; gap: 0;
  margin: 36px 0 44px;
  border-top: 1px solid var(--border);
}
.wf-item {
  display: flex; gap: 24px; align-items: flex-start;
  padding: 24px 0; border-bottom: 1px solid var(--border);
  transition: padding-left var(--t) var(--ease);
}
.wf-item:hover { padding-left: 8px; }
.wf-num {
  font-family: var(--font-d); font-size: 32px;
  color: var(--accent); line-height: 1;
  flex-shrink: 0; width: 44px; margin-top: 2px;
}
.wf-text strong {
  display: block; font-family: var(--font-c); font-size: 16px;
  font-weight: 700; letter-spacing: var(--ls-label);
  color: var(--white); margin-bottom: 8px; text-transform: uppercase;
}
.wf-text p { font-family: var(--font-b); font-size: var(--fs-base); color: var(--grey); line-height: var(--lh-body); }

.why-img-stack { position: relative; height: 600px; }
.why-img-main { width: 100%; height: 100%; object-fit: cover; }

.why-usp-card {
  position: absolute; bottom: 32px; left: -32px;
  background: var(--accent);
  padding: 24px 28px;
  display: flex; flex-direction: column; gap: 6px;
}
.why-usp-card i { font-size: 20px; color: var(--accent-text); }
.why-usp-card strong {
  font-family: var(--font-d); font-size: 36px;
  color: var(--accent-text); line-height: 1;
}
.why-usp-card span {
  font-family: var(--font-c); font-size: 11px; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase; color: rgba(0,0,0,0.6);
}

.why-tag-strip {
  position: absolute; top: 24px; right: -20px;
  display: flex; flex-direction: column; gap: 8px;
}
.why-tag-strip span {
  background: var(--bg);
  border-left: 2px solid var(--accent);
  padding: 10px 16px;
  font-family: var(--font-c); font-size: 12px;
  font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--white);
  display: flex; align-items: center; gap: 8px;
}
.why-tag-strip i { color: var(--accent); font-size: 11px; }

/* ================================================================
   TRAINING SCHEDULE
   ================================================================ */
.schedule { background: var(--bg); }

.sched-tabs {
  display: flex; gap: 0;
  border: 1px solid var(--border);
  margin-bottom: 0;
  overflow-x: auto; scrollbar-width: none;
}
.sched-tabs::-webkit-scrollbar { display: none; }

.stab {
  flex: 1; min-width: 80px;
  padding: 18px 20px;
  font-family: var(--font-c); font-size: var(--fs-xs);
  font-weight: 700; letter-spacing: var(--ls-label); text-transform: uppercase;
  color: var(--grey);
  background: transparent;
  border-right: 1px solid var(--border);
  border-bottom: 2px solid transparent;
  transition: all var(--t) var(--ease); cursor: pointer;
}
.stab:last-child { border-right: none; }
.stab:hover { color: var(--white); background: var(--surface); }
.stab.active {
  color: var(--accent-text);
  background: var(--accent);
  border-bottom-color: var(--accent);
}

.sched-content {
  border: 1px solid var(--border);
  border-top: none;
}
.sched-table { width: 100%; border-collapse: collapse; }
.sched-table thead tr { background: var(--surface); border-bottom: 1px solid var(--border); }
.sched-table th {
  padding: 16px 24px; text-align: left;
  font-family: var(--font-c); font-size: var(--fs-micro);
  font-weight: 700; letter-spacing: var(--ls-label); text-transform: uppercase;
  color: var(--grey);
}
.sched-table td {
  padding: 20px 24px; font-family: var(--font-b); font-size: var(--fs-base); color: var(--muted);
  border-bottom: 1px solid var(--border); vertical-align: middle;
}
.sched-table tr:last-child td { border-bottom: none; }
.sched-table tr:hover td { background: rgba(255,255,255,0.02); }

.sched-class {
  font-family: var(--font-c); font-size: 15px;
  font-weight: 700; letter-spacing: var(--ls-label); text-transform: uppercase; color: var(--white);
}
.sched-tag {
  display: inline-block;
  padding: 4px 10px;
  font-family: var(--font-c); font-size: var(--fs-micro);
  font-weight: 700; letter-spacing: 2px; text-transform: uppercase; border: 1px solid;
}
.sched-tag.strength { color: #e07b39; border-color: #e07b39; background: rgba(224,123,57,0.08); }
.sched-tag.cardio   { color: #3b82f6; border-color: #3b82f6; background: rgba(59,130,246,0.08); }
.sched-tag.hiit     { color: var(--accent); border-color: var(--accent); background: var(--accent-dim); }
.sched-tag.boxing   { color: #a78bfa; border-color: #a78bfa; background: rgba(167,139,250,0.08); }
.sched-tag.pt       { color: #34d399; border-color: #34d399; background: rgba(52,211,153,0.08); }

.sched-trainer { display: flex; align-items: center; gap: 10px; }
.sched-trainer-dot { width: 8px; height: 8px; background: var(--accent); border-radius: 50%; flex-shrink: 0; }
.sched-spots { font-family: var(--font-c); font-size: 12px; font-weight: 700; letter-spacing: 1px; color: var(--grey); white-space: nowrap; }
.sched-spots.low { color: var(--accent); }

/* ================================================================
   EXPERIENCE MOSAIC
   ================================================================ */
.experience { background: var(--surface); }

.mosaic {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  grid-template-rows: 320px 280px;
  gap: 6px;
}
.mosaic-a { grid-column: 1; grid-row: 1 / 3; position: relative; overflow: hidden; }
.mosaic-b { grid-column: 2; grid-row: 1; position: relative; overflow: hidden; }
.mosaic-c { grid-column: 3; grid-row: 1; position: relative; overflow: hidden; }
.mosaic-d { grid-column: 2; grid-row: 2; position: relative; overflow: hidden; }
.mosaic-e { grid-column: 3; grid-row: 2; position: relative; overflow: hidden; }

.mosaic-a img, .mosaic-b img, .mosaic-c img,
.mosaic-d img, .mosaic-e img { transition: transform 0.8s var(--ease); }
.mosaic-a:hover img, .mosaic-b:hover img, .mosaic-c:hover img,
.mosaic-d:hover img, .mosaic-e:hover img { transform: scale(1.06); }

.mosaic-cap {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 16px 18px;
  background: linear-gradient(to top, rgba(14,14,14,0.9) 0%, transparent 100%);
  font-family: var(--font-c); font-size: 13px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase; color: var(--white);
  transform: translateY(4px); opacity: 0;
  transition: all var(--t) var(--ease);
}
.mosaic-a:hover .mosaic-cap, .mosaic-b:hover .mosaic-cap, .mosaic-c:hover .mosaic-cap,
.mosaic-d:hover .mosaic-cap, .mosaic-e:hover .mosaic-cap { opacity: 1; transform: translateY(0); }

/* ================================================================
   TRAINERS
   ================================================================ */
.trainers { background: var(--bg); }

.trainers-header {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px;
  align-items: end; margin-bottom: 64px;
}
.trainers-header .sec-sub { text-align: left; margin: 0; max-width: 400px; }

.trainers-grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 0; border: 1px solid var(--border);
}
.trainer { border-right: 1px solid var(--border); overflow: hidden; }
.trainer:last-child { border-right: none; }

.trainer-img { position: relative; height: 340px; overflow: hidden; }
.trainer-img img { filter: grayscale(40%); transition: all 0.8s var(--ease); }
.trainer:hover .trainer-img img { filter: grayscale(0%); transform: scale(1.04); }

.trainer-hover {
  position: absolute; inset: 0;
  background: rgba(200,240,75,0);
  display: flex; align-items: flex-end; justify-content: flex-end;
  padding: 20px; opacity: 0; transition: all var(--t) var(--ease);
}
.trainer:hover .trainer-hover {
  background: rgba(200,240,75,0.2);
  opacity: 1;
}
.trainer-hover a {
  width: 40px; height: 40px;
  background: var(--white);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent-text); font-size: 16px;
  transition: background var(--t);
}
.trainer-hover a:hover { background: var(--accent); color: var(--accent-text); }

.trainer-meta {
  padding: 20px 24px 28px;
  border-top: 2px solid var(--accent);
}
.trainer-role {
  font-family: var(--font-c); font-size: var(--fs-micro); font-weight: 700;
  letter-spacing: var(--ls-label); text-transform: uppercase; color: var(--accent); margin-bottom: 8px;
}
.trainer-meta h4 {
  font-family: var(--font-d); font-size: 26px; letter-spacing: var(--ls-display);
  color: var(--white); line-height: var(--lh-tight); margin-bottom: 8px;
}
.trainer-spec { font-family: var(--font-b); font-size: var(--fs-sm); color: var(--grey); line-height: var(--lh-body); }

/* ================================================================
   TESTIMONIALS
   ================================================================ */
.testimonials { background: var(--surface); }

.tslider-wrap { position: relative; overflow: hidden; }
.tslider { display: flex; gap: 24px; transition: transform 0.55s var(--ease); }

.tcard {
  min-width: calc(33.333% - 16px);
  background: var(--surface-alt);
  border-top: 2px solid var(--accent);
  padding: 40px 36px;
  display: flex; flex-direction: column; gap: 20px;
  position: relative; transition: transform var(--t) var(--ease);
}
.tcard:hover { transform: translateY(-4px); }

.tquote-mark {
  font-family: Georgia, serif; font-size: 100px; line-height: 0.6;
  color: var(--accent); opacity: 0.15;
  position: absolute; top: 28px; left: 28px;
  pointer-events: none; font-weight: 900;
}
.tstars { display: flex; gap: 3px; color: var(--accent); font-size: 13px; }

.tcard p {
  font-family: var(--font-b); font-size: var(--fs-base); color: var(--muted); line-height: var(--lh-loose);
  font-style: italic; flex: 1; position: relative; z-index: 1;
}
.tauthor {
  display: flex; align-items: center; gap: 14px;
  padding-top: 20px; border-top: 1px solid var(--border);
  position: relative; z-index: 1;
}
.tauthor img {
  width: 46px; height: 46px; border-radius: 50%;
  flex-shrink: 0; border: 2px solid var(--accent); object-fit: cover;
}
.tauthor strong {
  display: block; font-family: var(--font-c); font-size: var(--fs-base);
  font-weight: 700; letter-spacing: var(--ls-label); text-transform: uppercase; color: var(--white);
}
.tauthor span { display: block; font-family: var(--font-c); font-size: var(--fs-xs); color: var(--accent); margin-top: 4px; letter-spacing: 1px; }

.tcontrols {
  display: flex; align-items: center; gap: 20px;
  margin-top: 40px; justify-content: center;
}
.tarr {
  width: 48px; height: 48px;
  border: 1px solid var(--border);
  color: var(--grey); display: flex; align-items: center; justify-content: center;
  font-size: 14px; transition: all var(--t) var(--ease);
  background: transparent; cursor: pointer;
}
.tarr:hover { border-color: var(--accent); color: var(--accent-text); background: var(--accent); }

.tdots { display: flex; gap: 8px; }
.tdot {
  width: 8px; height: 8px;
  background: var(--border);
  border: none; cursor: pointer;
  transition: all var(--t) var(--ease);
}
.tdot.active { background: var(--accent); width: 24px; }

/* ================================================================
   365 DAYS FULLBLEED
   ================================================================ */
.open365 { position: relative; overflow: hidden; padding: 120px 0; }
.open365-media { position: absolute; inset: 0; z-index: 0; }
.open365-veil {
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(14,14,14,0.97) 0%, rgba(14,14,14,0.88) 60%, rgba(14,14,14,0.75) 100%);
}
.open365-body {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.open365-title {
  font-family: var(--font-d);
  font-size: clamp(72px, 10vw, 140px);
  line-height: 0.88; letter-spacing: 2px; color: var(--white); margin: 20px 0;
}
.open365-right p { font-family: var(--font-b); font-size: var(--fs-lg); font-weight: 300; color: var(--muted); line-height: var(--lh-body); margin-bottom: 40px; }

.open365-facts { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 44px; }
.o365-fact {
  display: flex; align-items: center; gap: 12px;
  padding: 16px 18px; border: 1px solid var(--border);
}
.o365-fact i { color: var(--accent); font-size: 16px; width: 20px; text-align: center; }
.o365-fact span {
  font-family: var(--font-c); font-size: var(--fs-xs); font-weight: 700;
  letter-spacing: var(--ls-label); text-transform: uppercase; color: var(--muted);
}

/* ================================================================
   MEMBERSHIP PRICING
   ================================================================ */
.membership { background: var(--surface); }

.pricing-row {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 0; border: 1px solid var(--border);
}
.pcard {
  padding: 40px 32px;
  border-right: 1px solid var(--border);
  display: flex; flex-direction: column; gap: 28px;
  position: relative; transition: background var(--t) var(--ease);
}
.pcard:last-child { border-right: none; }
.pcard:hover { background: var(--surface-alt); }

.pcard-featured {
  background: var(--surface-alt);
  border-top: 3px solid var(--accent);
  padding-top: 48px;
}

.pcard-badge {
  position: absolute; top: 16px; left: 32px;
  font-family: var(--font-c); font-size: 10px; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase; color: var(--accent);
}

.pcard-head { display: flex; flex-direction: column; gap: 10px; }
.pcard-label {
  font-family: var(--font-c); font-size: var(--fs-micro); font-weight: 700;
  letter-spacing: var(--ls-label); text-transform: uppercase; color: var(--grey);
}
.pcard-price { display: flex; align-items: baseline; gap: 2px; color: var(--white); }
.pcard-price > span:first-child { font-family: var(--font-b); font-size: 18px; color: var(--grey); margin-right: 2px; }
.pcard-price strong {
  font-family: var(--font-d); font-size: 52px; line-height: 1; color: var(--white);
}
.pcard-featured .pcard-price strong { color: var(--accent); }
.pcard-price > span:last-child { font-family: var(--font-b); font-size: var(--fs-sm); color: var(--grey); margin-left: 4px; }

.pcard-save {
  font-family: var(--font-c); font-size: var(--fs-micro); font-weight: 700; letter-spacing: var(--ls-label);
  color: var(--accent-text); background: var(--accent);
  padding: 4px 10px; width: fit-content;
}

.pcard-list { display: flex; flex-direction: column; gap: 12px; flex: 1; }
.pcard-list li {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--font-b); font-size: var(--fs-base); color: var(--muted); line-height: var(--lh-tight);
}
.pcard-list li i { font-size: 11px; width: 16px; text-align: center; flex-shrink: 0; color: var(--accent); }
.pcard-list li.off { opacity: 0.35; }
.pcard-list li.off i { color: var(--grey-d); }

.pricing-note {
  text-align: center; font-family: var(--font-b); font-size: var(--fs-sm); color: var(--grey); margin-top: 28px; opacity: 0.7;
}

/* ================================================================
   LOCATION
   ================================================================ */
.location { background: var(--bg); }

.location-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 72px; align-items: start; }

.loc-info-list {
  display: flex; flex-direction: column; gap: 0;
  margin: 36px 0 40px; border-top: 1px solid var(--border);
}
.loc-info-item {
  display: flex; align-items: flex-start; gap: 18px;
  padding: 22px 0; border-bottom: 1px solid var(--border);
}
.loc-info-item i { color: var(--accent); font-size: 15px; margin-top: 2px; width: 18px; text-align: center; flex-shrink: 0; }
.loc-info-item strong {
  display: block; font-family: var(--font-c); font-size: var(--fs-micro);
  font-weight: 700; letter-spacing: var(--ls-label); text-transform: uppercase;
  color: var(--grey); margin-bottom: 6px;
}
.loc-info-item p, .loc-info-item a { font-family: var(--font-b); font-size: var(--fs-base); color: var(--muted); line-height: var(--lh-body); }
.loc-info-item a:hover { color: var(--accent); }

.location-map { height: 520px; border: 1px solid var(--border); overflow: hidden; }
.location-map iframe {
  width: 100%; height: 100%; border: 0;
  filter: invert(90%) hue-rotate(180deg) brightness(0.75);
}

/* ================================================================
   INSTAGRAM
   ================================================================ */
.insta { background: var(--surface); }

.insta-grid {
  display: grid; grid-template-columns: repeat(6,1fr);
  gap: 4px; margin-bottom: 44px;
}
.ig-item { position: relative; aspect-ratio: 1; overflow: hidden; }
.ig-item img { transition: transform 0.7s var(--ease); }
.ig-item:hover img { transform: scale(1.08); }
.ig-hover {
  position: absolute; inset: 0;
  background: rgba(200,240,75,0.7);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity var(--t) var(--ease);
  font-size: 26px; color: var(--accent-text);
}
.ig-item:hover .ig-hover { opacity: 1; }
.insta-cta { text-align: center; }

/* ================================================================
   TRIAL / FORM
   ================================================================ */
.trial { position: relative; overflow: hidden; padding: 110px 0; }
.trial-media { position: absolute; inset: 0; z-index: 0; }
.trial-veil { position: absolute; inset: 0; background: rgba(14,14,14,0.94); }

.trial-grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.trial-perks { display: flex; flex-direction: column; gap: 14px; margin: 28px 0 36px; }
.trial-perk { display: flex; align-items: center; gap: 12px; font-family: var(--font-b); font-size: var(--fs-base); color: var(--muted); line-height: var(--lh-tight); }
.trial-perk i { color: var(--accent); font-size: var(--fs-base); flex-shrink: 0; }
.trial-left .body-copy { margin: 20px 0 0; }

.trial-form {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 44px 40px;
}
.trial-form h3 {
  font-family: var(--font-d); font-size: 36px;
  letter-spacing: var(--ls-display); color: var(--white); margin-bottom: 28px; line-height: var(--lh-tight);
}

.fgroup { margin-bottom: 16px; }
.fgroup label {
  display: block; font-family: var(--font-c); font-size: var(--fs-micro);
  font-weight: 700; letter-spacing: var(--ls-label); text-transform: uppercase;
  color: var(--grey); margin-bottom: 8px;
}
.fgroup input, .fgroup select, .fgroup textarea {
  width: 100%;
  background: var(--surface-alt);
  border: 1px solid var(--border);
  padding: 14px 18px;
  font-family: var(--font-b); font-size: var(--fs-base); color: var(--white);
  line-height: var(--lh-tight);
  outline: none; transition: border-color var(--t) var(--ease); appearance: none;
}
.fgroup input::placeholder, .fgroup textarea::placeholder { color: var(--grey); font-size: var(--fs-base); }
.fgroup input:focus, .fgroup select:focus, .fgroup textarea:focus { border-color: var(--accent); }
.fgroup select { cursor: pointer; font-family: var(--font-b); font-size: var(--fs-base); }
.fgroup select option { background: var(--surface-alt); }
.fgroup textarea { resize: vertical; font-family: var(--font-b); min-height: 90px; }

.form-note { text-align: center; font-family: var(--font-b); font-size: var(--fs-sm); color: var(--grey); margin-top: 14px; opacity: 0.7; }

/* ================================================================
   FOOTER
   ================================================================ */
.footer { background: var(--footer-bg); display: flex; flex-direction: column; min-height: 100vh; margin-top: 80px; }

.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 2fr; gap: 56px;
  padding: 140px 32px 140px; border-bottom: 1px solid var(--border);
  flex: 1;
}

.footer-brand .logo-main { font-size: 28px; color: var(--accent); }
.footer-brand .logo-tag { color: var(--grey); }

.footer-tagline {
  font-family: var(--font-c); font-size: var(--fs-micro); font-weight: 700;
  letter-spacing: var(--ls-label); text-transform: uppercase; color: var(--accent); margin: 14px 0;
}
.footer-desc { font-family: var(--font-b); font-size: var(--fs-sm); color: var(--grey); line-height: var(--lh-body); }

.footer-social { display: flex; gap: 10px; margin-top: 24px; }
.footer-social a {
  width: 38px; height: 38px;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; color: var(--grey); transition: all var(--t) var(--ease);
}
.footer-social a:hover { background: var(--accent); border-color: var(--accent); color: var(--accent-text); }

.footer-links h5 {
  font-family: var(--font-c); font-size: var(--fs-micro); font-weight: 700;
  letter-spacing: var(--ls-label); text-transform: uppercase; color: var(--white); margin-bottom: 24px;
}
.footer-links ul { display: flex; flex-direction: column; gap: 12px; }
.footer-links a { font-family: var(--font-b); font-size: var(--fs-sm); color: var(--grey); transition: all var(--t) var(--ease); display: flex; align-items: center; }
.footer-links a:hover { color: var(--accent); padding-left: 6px; }

.footer-contact-col h5 {
  font-family: var(--font-c); font-size: var(--fs-micro); font-weight: 700;
  letter-spacing: var(--ls-label); text-transform: uppercase; color: var(--white); margin-bottom: 24px;
}
.fci { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 14px; }
.fci i { color: var(--accent); font-size: var(--fs-sm); margin-top: 3px; flex-shrink: 0; }
.fci span, .fci a { font-family: var(--font-b); font-size: var(--fs-sm); color: var(--grey); line-height: var(--lh-body); }
.fci a:hover { color: var(--accent); }

.newsletter { margin-top: 28px; }
.newsletter h5 {
  font-family: var(--font-c); font-size: var(--fs-micro); font-weight: 700;
  letter-spacing: var(--ls-label); text-transform: uppercase; color: var(--white); margin-bottom: 14px;
}
.nl-row { display: flex; border: 1px solid var(--border); }
.nl-row input {
  flex: 1; background: transparent; border: none;
  padding: 13px 16px; font-family: var(--font-b); font-size: var(--fs-sm); color: var(--white); outline: none;
}
.nl-row input::placeholder { color: var(--grey); }
.nl-row button {
  padding: 13px 18px; background: var(--accent);
  color: var(--accent-text); font-family: var(--font-c); font-size: var(--fs-xs);
  font-weight: 700; letter-spacing: var(--ls-label); text-transform: uppercase;
  transition: background var(--t); flex-shrink: 0;
}
.nl-row button:hover { background: var(--accent-h); }

.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding: 24px 32px; flex-wrap: wrap; gap: 12px;
  border-top: 1px solid var(--border);
}
.footer-bottom p { font-family: var(--font-b); font-size: var(--fs-sm); color: var(--grey-d); }
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { font-family: var(--font-b); font-size: var(--fs-sm); color: var(--grey-d); transition: all var(--t); }
.footer-bottom-links a:hover { color: var(--accent); }

/* ================================================================
   FLOATING ELEMENTS
   ================================================================ */
.wa-float {
  position: fixed; bottom: 32px; left: 28px; z-index: 999;
  width: 58px; height: 58px;
  background: #25d366;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; color: #ffffff;
  box-shadow: 0 8px 30px rgba(37,211,102,0.4);
  transition: all var(--t) var(--ease);
}
.wa-float:hover { transform: scale(1.1); box-shadow: 0 12px 40px rgba(37,211,102,0.6); }

.wa-tip {
  position: absolute; left: calc(100% + 14px); top: 50%;
  transform: translateY(-50%);
  background: var(--surface-alt); color: var(--white);
  font-family: var(--font-c); font-size: 12px; font-weight: 600;
  letter-spacing: 1px; padding: 8px 14px; white-space: nowrap;
  pointer-events: none; opacity: 0; transition: opacity var(--t);
  border: 1px solid var(--border);
}
.wa-float:hover .wa-tip { opacity: 1; }

.sticky-cta {
  position: fixed; bottom: 32px; right: 28px; z-index: 999;
  background: var(--accent); color: var(--accent-text);
  font-family: var(--font-c); font-size: var(--fs-xs); font-weight: 800;
  letter-spacing: 3px; text-transform: uppercase;
  padding: 16px 28px; border: 2px solid var(--accent);
  transform: translateY(100px); opacity: 0;
  transition: all 0.4s var(--ease);
  box-shadow: 0 8px 28px rgba(200,240,75,0.2);
}
.sticky-cta.visible { transform: translateY(0); opacity: 1; }
.sticky-cta:hover { background: transparent; color: var(--accent); }

/* ================================================================
   RESPONSIVE — 1100px
   ================================================================ */
@media (max-width: 1100px) {
  .programs-grid  { grid-template-columns: repeat(2,1fr); }
  .trainers-grid  { grid-template-columns: repeat(2,1fr); }
  .trainers-header { grid-template-columns: 1fr; gap: 20px; }
  .pricing-row    { grid-template-columns: repeat(2,1fr); }
  .pcard:nth-child(2) { border-right: none; }
  .pcard:nth-child(4) { border-right: none; }
  .footer-top     { grid-template-columns: 1fr 1fr; gap: 36px; }
  .stats-bar      { gap: 0; }
  .stat-block     { padding: 36px 40px; }
  .why-grid       { grid-template-columns: 1fr; gap: 48px; }
  .why-img-stack  { height: 440px; }
  .why-usp-card   { left: 0; }
  .why-tag-strip  { right: 0; }
  .open365-body   { grid-template-columns: 1fr; gap: 48px; }
  .location-grid  { grid-template-columns: 1fr; }
  .location-map   { height: 360px; }
}

/* ================================================================
   RESPONSIVE — 768px
   ================================================================ */
@media (max-width: 768px) {
  .s-pad { padding: 64px 0; }
  .wrap  { padding: 0 18px; }

  /* ── Hero ── */
  .hero-headline { font-size: clamp(52px, 13vw, 90px); }
  .hero-actions  { flex-direction: column; align-items: flex-start; }
  .hero-badges   { gap: 0; flex-wrap: wrap; }
  .hbadge        { padding: 12px 18px; }
  .hbadge-div    { display: none; }
  .hbadge-num    { font-size: 28px; }
  .hero-scroll   { display: none; }

  /* ── About ── */
  .about-grid    { grid-template-columns: 1fr; gap: 0; }
  .about-img-col {
    position: relative;
    height: auto;
    min-height: 280px;
    overflow: hidden;
  }
  .about-img-main {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
  }
  .about-img-float {
    position: relative;
    bottom: auto; right: auto;
    width: 100%;
    border: none;
    border-top: 3px solid var(--bg);
    display: flex;
    flex-direction: row;
    align-items: stretch;
  }
  .about-img-float img { height: 140px; flex: 1; }
  .float-label { flex: 0 0 auto; justify-content: center; padding: 16px 20px; }
  .about-text-col { padding-left: 0; padding-top: 36px; }

  /* ── Stats ── */
  .stats-bar     { flex-wrap: wrap; }
  .stat-block    { padding: 24px 20px; flex: 1; min-width: 50%; }
  .stat-sep      { display: none; }
  .stat-big      { font-size: 48px; }

  /* ── Programs ── */
  .programs-grid { grid-template-columns: 1fr; gap: 0; }
  .prog-card     { border-right: none; border-bottom: 1px solid var(--border); }
  .prog-card:last-child { border-bottom: none; }

  /* ── Why ── */
  .why-grid      { grid-template-columns: 1fr; }
  .why-img-stack { height: 320px; }
  .why-usp-card  { left: 0; bottom: 20px; }
  .why-tag-strip { display: none; }

  /* ── Schedule ── */
  .sched-tabs    { }
  .stab          { min-width: 56px; padding: 12px 10px; font-size: 10px; letter-spacing: 1.5px; }
  .sched-table th:nth-child(3), .sched-table td:nth-child(3) { display: none; }
  .sched-table th:nth-child(4), .sched-table td:nth-child(4) { display: none; }
  .sched-table th, .sched-table td { padding: 12px 14px; font-size: 13px; }

  /* ── Experience / Mosaic ── */
  .mosaic {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    gap: 4px;
  }
  .mosaic-a { grid-column: 1 / 3; grid-row: auto; height: 240px; }
  .mosaic-b { grid-column: auto; grid-row: auto; height: 160px; }
  .mosaic-c { grid-column: auto; grid-row: auto; height: 160px; }
  .mosaic-d { grid-column: 1 / 3; grid-row: auto; height: 160px; }
  .mosaic-e { grid-column: auto; grid-row: auto; height: 160px; }

  /* ── Trainers ── */
  .trainers-grid  { grid-template-columns: 1fr 1fr; }
  .trainer:nth-child(2) { border-right: none; }
  .trainers-header { grid-template-columns: 1fr; }

  /* ── Testimonials ── */
  .tcard         { min-width: 100%; }

  /* ── Open 365 ── */
  .open365-body  { grid-template-columns: 1fr; gap: 36px; }
  .open365-title { font-size: clamp(56px, 16vw, 100px); }
  .open365-facts { grid-template-columns: 1fr 1fr; }

  /* ── Membership ── */
  .pricing-row   { grid-template-columns: 1fr; }
  .pcard         { border-right: none; border-bottom: 1px solid var(--border); }
  .pcard:last-child { border-bottom: none; }

  /* ── Free Trial ── */
  .trial-grid    { grid-template-columns: 1fr; gap: 40px; }
  .trial-form    { padding: 24px 18px; }

  /* ── Instagram ── */
  .insta-grid    { grid-template-columns: repeat(3,1fr); }

  /* ── Footer ── */
  .footer-top    { grid-template-columns: 1fr; gap: 40px; padding: 60px 18px 60px; }
  .footer-bottom { flex-direction: column; text-align: center; }

  /* ── Floating ── */
  .sticky-cta { right: 14px; bottom: 18px; padding: 13px 20px; font-size: 11px; letter-spacing: 2px; }
  .wa-float   { left: 14px; bottom: 18px; width: 50px; height: 50px; font-size: 22px; }

  /* ── Mobile Centre Alignment ── */

  /* Section labels & titles */
  .sec-label              { justify-content: center; }
  .sec-title              { text-align: center; }
  .sec-sub                { text-align: center; }
  .body-copy              { text-align: center; }

  /* Hero */
  .hero-body              { text-align: center; align-items: center; }
  .hero-eyebrow           { justify-content: center; }
  .hero-actions           { align-items: center; }
  .hero-badges            { justify-content: center; }
  .hbadge                 { text-align: center; align-items: center; }

  /* About */
  .about-text-col         { text-align: center; }
  .about-quote            { text-align: center; border-left: none; border-top: 3px solid var(--accent); padding-left: 0; padding-top: 16px; }
  .about-actions          { justify-content: center; }

  /* Stats */
  .stat-block             { align-items: center; text-align: center; }

  /* Programs */
  .prog-card              { align-items: center; text-align: center; }
  .prog-card-body         { text-align: center; }
  .prog-link              { align-self: center; }

  /* Why SYRO */
  .why-text-col           { text-align: center; }
  .wf-list                { text-align: left; }
  .wf-item                { text-align: left; }

  /* Schedule */
  .sched-header           { text-align: center; }
  .sched-header .sec-label { justify-content: center; }

  /* Experience */
  .experience .sec-header { text-align: center; }

  /* Trainers */
  .trainers-header        { text-align: center; }
  .trainer-info           { text-align: center; }
  .trainer-tags           { justify-content: center; }
  .trainer-social         { justify-content: center; }

  /* Testimonials */
  .tcard                  { text-align: center; }
  .tcard-rating           { justify-content: center; }
  .tcard-author           { justify-content: center; }

  /* Open 365 */
  .open365-left           { text-align: center; }
  .open365-title          { text-align: center; }
  .open365-right          { text-align: center; }
  .open365-fact           { text-align: center; align-items: center; }

  /* Membership */
  .pcard                  { text-align: center; align-items: center; }
  .pcard-features         { text-align: left; }
  .pcard-cta              { text-align: center; }

  /* Location */
  .location-info          { text-align: center; }
  .loc-item               { justify-content: center; }
  .location-left          { text-align: center; display: flex; flex-direction: column; align-items: center; }
  .location-left .btn-red { align-self: center; }

  /* Trial */
  .trial-left             { text-align: center; }
  .trial-perks            { text-align: left; }
  .trial-cta-group        { justify-content: center; }

  /* Instagram */
  .insta-header           { text-align: center; }

  /* Footer */
  .footer-brand           { text-align: center; align-items: center; }
  .footer-brand p         { text-align: center; }
  .footer-socials         { justify-content: center; }
  .footer-links           { text-align: center; }
  .footer-links ul        { align-items: center; }
  .footer-contact-col     { text-align: center; }
  .fci                    { justify-content: center; }
  .nl-row                 { max-width: 100%; }
  .footer-bottom-links    { justify-content: center; }
}

@media (max-width: 480px) {
  .s-pad { padding: 52px 0; }
  .wrap  { padding: 0 16px; }

  /* ── Hero ── */
  .hero-headline { font-size: clamp(44px, 14vw, 72px); }
  .hbadge        { padding: 10px 14px; }
  .hbadge-num    { font-size: 24px; }

  /* ── About ── */
  .about-img-main { height: 220px; }
  .about-img-float { flex-direction: column; }
  .about-img-float img { height: 120px; flex: none; }

  /* ── Stats ── */
  .stats-bar     { display: grid; grid-template-columns: 1fr 1fr; }
  .stat-block    { padding: 20px 16px; }
  .stat-big      { font-size: 42px; }

  /* ── Why ── */
  .why-img-stack { height: 280px; }
  .why-usp-card  { padding: 16px 18px; }
  .why-usp-card strong { font-size: 28px; }

  /* ── Schedule ── */
  .stab          { min-width: 44px; padding: 10px 8px; font-size: 9px; letter-spacing: 1px; }

  /* ── Mosaic ── */
  .mosaic-a { height: 200px; }
  .mosaic-b, .mosaic-c { height: 140px; }
  .mosaic-d { height: 140px; }
  .mosaic-e { height: 140px; }

  /* ── Trainers ── */
  .trainers-grid { grid-template-columns: 1fr; }
  .trainer       { border-right: none; border-bottom: 1px solid var(--border); }

  /* ── Open 365 ── */
  .open365-title { font-size: clamp(48px, 14vw, 80px); }
  .open365-facts { grid-template-columns: 1fr; }

  /* ── Instagram ── */
  .insta-grid    { grid-template-columns: repeat(2,1fr); }

  /* ── Why tag strip ── */
  .why-tag-strip { display: none; }

  /* ── Trial form ── */
  .trial-form    { padding: 20px 14px; }
  .form-row      { grid-template-columns: 1fr; }

  /* ── Section titles ── */
  .sec-title     { font-size: clamp(38px, 10vw, 60px); }
}
