/* Fitcom Fitness — single stylesheet. Replaces ~41 Elementor stylesheets. */

/* ====== FONTS ====== */
/* Maax (live body/footer font) — self-hosted, mirrors live's
   wp-content/uploads/2025/08/MaaxRounded-Regular.ttf (family "Maax Regular"). */
@font-face {
  font-family: 'Maax Regular';
  src: url('/assets/fonts/MaaxRounded-Regular.ttf?v=1') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* ====== TOKENS ====== */
:root {
  --orange: #F6921E;
  --orange-dark: #D97B0A;
  --orange-soft: #FEF7ED;
  --ink: #1A1A1A;
  --ink-2: #2A2A2A;
  --muted: #6B7280;
  --line: #E5E7EB;
  --paper: #FFFFFF;
  --shadow-sm: 0 1px 2px rgba(15,23,42,.06), 0 1px 3px rgba(15,23,42,.05);
  --shadow-md: 0 4px 14px rgba(15,23,42,.07), 0 2px 6px rgba(15,23,42,.05);
  --shadow-lg: 0 12px 36px rgba(15,23,42,.10);
  --radius-sm: 12px;
  --radius: 24px;
  --radius-lg: 24px;
  --container: 1200px;
  --pad: clamp(1rem, 2.5vw, 1.75rem);
  --font: 'Poppins', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  /* Live uses Maax for body/footer copy, Poppins for headings. */
  --font-head: 'Poppins', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Maax Regular', 'Poppins', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
}

/* ====== RESET ====== */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}
img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: var(--orange-dark); text-decoration: none; }
a:hover { text-decoration: underline; }
button { font-family: inherit; cursor: pointer; }
h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.2; margin: 0 0 .5em; font-weight: 700; letter-spacing: -.01em; }
h1 { font-size: clamp(2rem, 4.5vw, 3.25rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.5rem); }
p  { margin: 0 0 1em; }
.eyebrow { font-family: var(--font-head); text-transform: uppercase; letter-spacing: .12em; font-size: .8rem; color: var(--orange-dark); font-weight: 600; }
/* Chrome/UI elements stay Poppins to mirror live (nav, buttons, eyebrows). */
.btn, .nav-links a, .nav-ctas a, .nav-group__toggle, .mobile-drawer__nav a, .mobile-drawer__grouplabel { font-family: var(--font-head); }

/* ====== LAYOUT ====== */
.container { max-width: var(--container); margin: 0 auto; padding: 0 var(--pad); }
.section { padding: clamp(3rem, 7vw, 5.5rem) 0; }
.section--soft { background: var(--orange-soft); }
.section--ink { background: var(--ink); color: #fff; }
.section--ink h1, .section--ink h2 { color: #fff; }
.lead { font-size: clamp(1.05rem, 1.4vw, 1.2rem); color: var(--muted); max-width: 60ch; }
.split { display: grid; gap: clamp(1.25rem, 3vw, 2.5rem); grid-template-columns: 1fr; }
@media (min-width: 860px) { .split--2 { grid-template-columns: 1fr 1fr; align-items: center; } }
.grid { display: grid; gap: 1.25rem; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }

/* ====== HEADER + NAV ====== */
.site-header { position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,.96); backdrop-filter: saturate(180%) blur(8px); border-bottom: 1px solid var(--line); }
.nav { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 76px; }
.brand { display: inline-flex; align-items: center; gap: .6rem; font-weight: 700; color: var(--ink); }
.brand img { height: 40px; width: auto; }
.nav-links { display: none; gap: 1.6rem; align-items: center; }
.nav-links a { color: var(--ink-2); font-weight: 500; padding: .5rem 0; border-bottom: 2px solid transparent; }
.nav-links a:hover { color: var(--orange-dark); text-decoration: none; }
.nav-links a.is-active { color: var(--orange-dark); border-bottom-color: var(--orange); }
@media (min-width: 1025px) { .nav-links { display: inline-flex; } }

.btn.nav-cta { display: none; }
@media (min-width: 1025px) { .btn.nav-cta { display: inline-flex; } }

.menu-toggle {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border: 1px solid var(--line); border-radius: 12px;
  background: #fff; color: var(--ink);
}
.menu-toggle svg { width: 22px; height: 22px; }
@media (min-width: 1025px) { .menu-toggle { display: none; } }

.mobile-drawer {
  position: fixed; inset: 0; background: rgba(15,23,42,.45); display: none; z-index: 60;
}
.mobile-drawer.is-open { display: block; }
.mobile-drawer__panel {
  position: absolute; right: 0; top: 0; bottom: 0; width: min(86vw, 360px);
  background: #fff; padding: 1.25rem; display: flex; flex-direction: column; gap: .75rem;
  box-shadow: var(--shadow-lg);
}
.mobile-drawer__head { display: flex; align-items: center; justify-content: space-between; padding-bottom: .5rem; border-bottom: 1px solid var(--line); }
.mobile-drawer__nav { display: flex; flex-direction: column; gap: .25rem; margin-top: .75rem; }
.mobile-drawer__nav a { padding: .85rem .25rem; color: var(--ink-2); font-weight: 600; border-bottom: 1px solid var(--line); }
.mobile-drawer__nav a.is-active { color: var(--orange-dark); }
.mobile-drawer__cta { margin-top: 1rem; }

/* ====== BUTTONS ====== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .7rem 1.4rem; border-radius: 24px; font-weight: 600; font-size: 1rem;
  border: 1px solid transparent; transition: transform .12s ease, box-shadow .12s ease, background .15s ease;
  text-decoration: none;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn--primary { background: var(--orange); color: #fff; box-shadow: 0 6px 18px rgba(246,146,30,.32); }
.btn--primary:hover { background: var(--orange-dark); }
.btn--ghost { background: #fff; color: var(--ink); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--orange); color: var(--orange-dark); }
.btn--ink { background: var(--ink); color: #fff; }
.btn--ink:hover { background: #000; }
.btn--lg { padding: 1rem 1.6rem; font-size: 1.05rem; }
.btn--sm { padding: .55rem 1rem; font-size: .9rem; }

/* ====== HERO ====== */
.hero { position: relative; padding: clamp(3.5rem, 8vw, 6rem) 0 clamp(3rem, 6vw, 5rem); overflow: hidden; }
.hero::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(1200px 600px at 80% -10%, rgba(246,146,30,.18), transparent 60%),
    linear-gradient(180deg, var(--orange-soft) 0%, #fff 80%);
  z-index: -1;
}
.hero__inner { display: grid; gap: 2rem; grid-template-columns: 1fr; align-items: center; }
@media (min-width: 960px) { .hero__inner { grid-template-columns: 1.1fr .9fr; gap: 3rem; } }
.hero h1 strong { color: var(--orange-dark); font-weight: 800; }
.hero__media { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 4/3; background: #111; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero__media .badge { position: absolute; left: 1rem; bottom: 1rem; background: #fff; padding: .55rem .9rem; border-radius: 999px; font-weight: 600; font-size: .85rem; box-shadow: var(--shadow-md); }
.hero__cta { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 1.5rem; }
.hero__meta { display: flex; gap: 1.5rem; flex-wrap: wrap; margin-top: 1.75rem; color: var(--muted); font-size: .95rem; }
.hero__meta strong { color: var(--ink); }

/* ====== CARDS ====== */
.card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.5rem; box-shadow: var(--shadow-sm); transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease; }
.card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); border-color: #f1d8b5; }
.card h3 { margin-top: 0; }
.card p:last-child { margin-bottom: 0; }
.card__icon { width: 56px; height: 56px; border-radius: 12px; background: var(--orange-soft); display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; }
.card__icon img { width: 36px; height: 36px; object-fit: contain; }
.card__meta { font-size: .8rem; text-transform: uppercase; letter-spacing: .1em; color: var(--orange-dark); font-weight: 600; margin-bottom: .35rem; }

/* Article cards (Knowledge Hub, Stories) */
.article-card { display: flex; flex-direction: column; height: 100%; }
.article-card a.title-link { color: var(--ink); }
.article-card a.title-link:hover { color: var(--orange-dark); text-decoration: none; }
.article-card .excerpt { color: var(--muted); flex-grow: 1; }
.article-card .read-more { margin-top: 1rem; font-weight: 600; color: var(--orange-dark); }

/* ====== SERVICES BLOCKS ====== */
.service-row { display: grid; gap: 1.5rem; grid-template-columns: 1fr; align-items: center; padding: clamp(2rem, 4vw, 3rem) 0; border-bottom: 1px solid var(--line); }
@media (min-width: 860px) { .service-row { grid-template-columns: 1fr 1fr; gap: 3rem; } .service-row.reverse > div:first-child { order: 2; } }
.service-row .badge { display: inline-block; background: var(--orange-soft); color: var(--orange-dark); padding: .25rem .75rem; border-radius: 999px; font-size: .8rem; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; margin-bottom: .75rem; }
.service-row ul { padding-left: 1.2rem; color: var(--muted); }
.service-row ul li { margin-bottom: .35rem; }
.service-row .visual { aspect-ratio: 4/3; border-radius: var(--radius-lg); background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%); display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 700; font-size: 1.5rem; box-shadow: var(--shadow-md); }
.service-row .service-photo { aspect-ratio: 4/3; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); background: var(--orange-soft); }
.service-row .service-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ====== APPROACH PILLARS ====== */
.pillar { display: grid; grid-template-columns: auto 1fr; gap: 1.25rem; align-items: start; padding: 2rem 0; border-top: 1px solid var(--line); }
.pillar:first-of-type { border-top: 0; padding-top: 1rem; }
.pillar__num { font-family: var(--font); font-size: clamp(2.5rem, 5vw, 3.75rem); font-weight: 800; line-height: 1; color: var(--orange); letter-spacing: -.02em; }
.pillar__body h3 { margin-top: 0; }
.pillar__body ul { padding-left: 1.2rem; color: var(--ink-2); }
.pillar__body ul li { margin-bottom: .35rem; }
@media (min-width: 760px) {
  .pillar { grid-template-columns: 110px 1fr; gap: 2rem; padding: 2.5rem 0; }
}

/* ====== STORIES ====== */
.story-card { display: flex; flex-direction: column; gap: 1rem; padding: 1.75rem; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.story-card--photo { padding: 0; overflow: hidden; }
.story-card--photo > img { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; background: var(--orange-soft); }
.story-card--photo .story-card__body { padding: 1.25rem 1.5rem 1.5rem; display: flex; flex-direction: column; gap: 1rem; }
.story-card .quote { font-size: 1.05rem; line-height: 1.55; color: var(--ink-2); font-weight: 500; }
.story-card .who { display: flex; align-items: center; gap: .85rem; padding-top: 1rem; border-top: 1px solid var(--line); }
.story-card .avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--orange-soft); display: flex; align-items: center; justify-content: center; font-weight: 700; color: var(--orange-dark); }
.story-card .who-meta { line-height: 1.3; }
.story-card .who-meta strong { display: block; color: var(--ink); }
.story-card .who-meta span { color: var(--muted); font-size: .9rem; }

/* ====== ARTICLE LAYOUT ====== */
.article-shell { display: grid; gap: 2.5rem; grid-template-columns: 1fr; max-width: 1100px; margin: 0 auto; padding: clamp(2rem, 5vw, 3.5rem) var(--pad); }
@media (min-width: 1024px) { .article-shell { grid-template-columns: minmax(0, 1fr) 240px; } }
.article-body { font-size: 1.05rem; line-height: 1.75; color: var(--ink-2); }
.article-body h2 { margin-top: 2.5rem; padding-top: .5rem; border-top: 2px solid var(--orange); display: inline-block; padding-right: .5rem; }
.article-body h3 { margin-top: 2rem; }
.article-body ul, .article-body ol { padding-left: 1.4rem; }
.article-body p, .article-body li { color: #2A2A2A; }
.article-body blockquote { border-left: 3px solid var(--orange); margin: 1.5rem 0; padding: .25rem 0 .25rem 1.2rem; color: var(--muted); font-style: italic; }
.article-toc { position: sticky; top: 96px; align-self: start; padding: 1.25rem; background: var(--orange-soft); border-radius: var(--radius); font-size: .9rem; }
.article-toc h4 { font-size: .85rem; text-transform: uppercase; letter-spacing: .12em; color: var(--orange-dark); margin: 0 0 .75rem; }
.article-toc a { display: block; padding: .35rem 0; color: var(--ink-2); border-bottom: 1px dashed transparent; }
.article-toc a:hover { color: var(--orange-dark); text-decoration: none; }
.article-meta { color: var(--muted); font-size: .9rem; margin-bottom: 1rem; }
.article-meta span + span::before { content: ' · '; }

/* ====== FAQ ACCORDION ====== */
.faq-item { border-bottom: 1px solid var(--line); padding: 1rem 0; }
.faq-item summary { cursor: pointer; font-weight: 600; padding: .5rem 0; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; color: var(--orange-dark); font-weight: 700; font-size: 1.4rem; }
.faq-item[open] summary::after { content: '−'; }
.faq-item[open] summary { color: var(--orange-dark); }
.faq-item .answer { color: var(--muted); padding: .5rem 0 .25rem; }

/* ====== FOOTER ====== */
/* margin-top removed 2026-06-01: the 4rem footer top-margin rendered as an
   empty white band between the last section and the dark footer (worst on
   dark/cream-ending pages). Sections already carry padding-bottom for
   breathing room, so content now meets the footer cleanly. */
.site-footer { background: var(--ink); color: #cbd5e1; padding: clamp(2.5rem, 5vw, 4rem) 0 1.5rem; margin-top: 0; }
.site-footer h4 { color: #fff; font-size: .95rem; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 1rem; }
.site-footer a { color: #cbd5e1; }
.site-footer a:hover { color: var(--orange); text-decoration: none; }
.footer-grid { display: grid; gap: 2rem; grid-template-columns: 1fr; }
/* Tablet (760–1024): mirror live — brand full-width on top, 3 link columns below. */
@media (min-width: 760px) {
  .footer-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-brand { grid-column: 1 / -1; }
}
/* Desktop (>=1025): brand + 3 link columns inline, matching the nav breakpoint. */
@media (min-width: 1025px) {
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; }
  .footer-brand { grid-column: auto; }
}
.footer-brand img { height: 44px; margin-bottom: 1rem; filter: brightness(0) invert(1); }
.footer-brand p { color: #94a3b8; max-width: 36ch; font-size: .95rem; }
.footer-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: .55rem; font-size: .95rem; }
.footer-bottom { margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid #2a2a2a; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem; color: #9aa3b2; font-size: .85rem; }

/* ====== UTILITIES ====== */
.center { text-align: center; }
.muted { color: var(--muted); }
.mt-0 { margin-top: 0; }
.mt-1 { margin-top: .5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-0 { margin-bottom: 0; }
.divider { height: 1px; background: var(--line); margin: 2rem 0; }

/* Staging banner */
.staging-banner { background: #b45309; color: #fff; text-align: center; padding: .4rem 1rem; font-size: .85rem; }
.staging-banner strong { font-weight: 700; }

/* ======================================================
   FITCOM — SNAP EXPERIENCE v3  (append to site.css base)
   ====================================================== */

/* ---- Eyebrow variants ---- */
.eyebrow--orange { color: var(--orange) !important; }
.eyebrow--white  { color: rgba(255,255,255,.75); }

/* ---- Button: orange variant (alias for --primary) ---- */
.btn--orange { background: var(--orange); color: #fff; box-shadow: 0 6px 18px rgba(246,146,30,.32); }
.btn--orange:hover { background: var(--orange-dark); color: #fff; text-decoration: none; transform: translateY(-2px); box-shadow: 0 10px 28px rgba(246,146,30,.38); }
.btn--orange:active { transform: translateY(0); }

/* ---- Scroll-snap container ---- */
html { scroll-snap-type: y proximity; }

.snap-section {
  min-height: 100vh;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

/* ---- Button micro-interactions ---- */
.btn {
  transition: transform .15s ease, box-shadow .15s ease,
              background .18s ease, color .18s ease, border-color .18s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,.22); }
.btn:active { transform: translateY(0); }

/* ============================================================
   S1 · HERO
   ============================================================ */
.s-hero {
  background: var(--ink);
  padding: 6rem 0 0;
  height: 100vh;
}

/* grain texture */
.s-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.04;
  pointer-events: none;
  z-index: 0;
}

/* bottom fade */
.s-hero::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 35%;
  background: linear-gradient(to bottom, transparent, var(--ink));
  pointer-events: none;
  z-index: 0;
}

.s-hero__inner {
  padding-bottom: 4rem;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: 3rem;
}
@media (min-width: 900px) {
  .s-hero__inner { grid-template-columns: 1.1fr 0.9fr; }
}

.s-hero__text { display: flex; flex-direction: column; align-items: flex-start; }

/* ---- Hero media collage ---- */
.s-hero__media {
  display: none;
  position: relative;
  height: 500px;
}
@media (min-width: 900px) { .s-hero__media { display: block; } }

.hero-img-stack {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-img {
  position: absolute;
  border-radius: 24px;
  overflow: hidden;
}
.hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* back card — tilted, Muay Thai */
.hero-img--back {
  width: 64%;
  height: 70%;
  top: 0;
  right: 0;
  transform: rotate(3deg);
  border: 2px solid rgba(246,146,30,.25);
  box-shadow: 0 20px 56px rgba(0,0,0,.55);
  z-index: 1;
}

/* front card — slight counter-tilt, PT coaching */
.hero-img--front {
  width: 66%;
  height: 72%;
  bottom: 0;
  left: 0;
  transform: rotate(-2deg);
  border: 3px solid var(--orange);
  box-shadow: 0 0 0 7px rgba(246,146,30,.1), 0 24px 64px rgba(0,0,0,.6);
  z-index: 2;
  transition: transform .4s ease;
}
.hero-img--front:hover { transform: rotate(-1deg) scale(1.02); }

/* floating badge on front card */
.hero-img__badge {
  position: absolute;
  bottom: .85rem;
  right: .85rem;
  background: rgba(0,0,0,.72);
  backdrop-filter: blur(8px);
  color: #fff;
  font-size: .75rem;
  font-weight: 700;
  padding: .4rem .8rem;
  border-radius: 999px;
  border: 1px solid rgba(246,146,30,.4);
  letter-spacing: .04em;
  text-transform: uppercase;
  z-index: 3;
}

.s-hero__headline {
  font-size: clamp(3.5rem, 9vw, 8rem);
  font-weight: 800;
  line-height: 1;
  color: #fff;
  letter-spacing: -.03em;
  margin: 1rem 0 1.75rem;
}
/* line-reveal clip wrapper */
.gs-line-wrap {
  display: block;
  overflow: hidden;
  line-height: 1.08;
}
.s-hero__headline .gs-line { display: block; }
.hero-dot--dim    { color: rgba(255,255,255,.18); }
.hero-dot--orange { color: var(--orange); }

.s-hero__sub {
  color: #94a3b8;
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  max-width: 52ch;
  margin-bottom: 2rem;
  line-height: 1.75;
}
.rwd-br { display: none; }
@media (min-width: 700px) { .rwd-br { display: block; } }

.s-hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
}

.btn--outline-white {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.28);
}
.btn--outline-white:hover {
  border-color: var(--orange);
  color: var(--orange);
}

/* scroll cue */
.scroll-cue {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  z-index: 1;
}
.scroll-cue__line {
  display: block;
  width: 2px;
  height: 52px;
  background: linear-gradient(to bottom, var(--orange), transparent);
  animation: scroll-pulse 1.8s ease-in-out infinite;
  transform-origin: top center;
}
@keyframes scroll-pulse {
  0%, 100% { transform: scaleY(1);   opacity: .9; }
  50%       { transform: scaleY(.4); opacity: .3; }
}

/* floating pill */
.hero-pill {
  position: absolute;
  top: 2.5rem;
  right: 2rem;
  background: rgba(246,146,30,.1);
  border: 1px solid rgba(246,146,30,.35);
  color: var(--orange);
  padding: .5rem 1rem;
  border-radius: 999px;
  font-size: .82rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: .5rem;
  backdrop-filter: blur(6px);
  z-index: 1;
}
.hero-pill__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--orange);
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { transform: scale(1);    opacity: 1; }
  50%       { transform: scale(1.5); opacity: .55; }
}

/* ============================================================
   S2 · CHOOSE YOUR PATH
   ============================================================ */
.s-path {
  display: flex;
  flex-direction: column;
}
@media (min-width: 700px) {
  .s-path { flex-direction: row; }
}

.path-panel {
  flex: 1;
  min-height: 50vh;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 2.5rem 2rem;
  cursor: pointer;
  transition: flex .45s cubic-bezier(.4,0,.2,1);
  overflow: hidden;
}
@media (min-width: 700px) {
  .path-panel       { min-height: 100vh; padding: 3rem 2.5rem; }
  .s-path:hover .path-panel         { flex: .85; }
  .s-path:hover .path-panel:hover   { flex: 1.3; }
}

/* photo backgrounds */
.path-panel--pt {
  background-image: url('/assets/img/services/service-pt.webp');
  background-size: cover;
  background-position: center top;
}
.path-panel--mt {
  background-image: url('/assets/img/services/service-muaythai.webp');
  background-size: cover;
  background-position: center;
}
.path-panel--gf {
  background-image: url('/assets/img/services/service-group.webp');
  background-size: cover;
  background-position: center;
}

/* subtle scale on photo hover */
.path-panel::after {
  content: '';
  position: absolute; inset: -4%;
  background-image: inherit;
  background-size: cover;
  background-position: inherit;
  transition: transform .55s cubic-bezier(.4,0,.2,1);
  z-index: -1;
}
.path-panel:hover::after { transform: scale(1.06); }

/* dark gradient overlay (on ::before, above photo) */
.path-panel::before {
  content: '';
  position: absolute; inset: 0;
  z-index: 0;
  transition: opacity .3s ease;
}
.path-panel--pt::before { background: linear-gradient(180deg, rgba(28,16,8,.52) 0%, rgba(0,0,0,.82) 60%, rgba(0,0,0,.92) 100%); }
.path-panel--mt::before { background: linear-gradient(180deg, rgba(10,18,30,.52) 0%, rgba(0,0,0,.82) 60%, rgba(0,0,0,.92) 100%); }
.path-panel--gf::before { background: linear-gradient(180deg, rgba(18,14,4,.52) 0%, rgba(0,0,0,.82) 60%, rgba(0,0,0,.92) 100%); }
.path-panel:hover::before { opacity: .88; }

.path-panel > * { position: relative; z-index: 1; }

/* orange top accent */
.path-panel .path-panel__inner::before {
  content: '';
  position: absolute;
  top: -100vh; left: 0;
  width: 3px; height: 100vh;
  background: var(--orange);
  display: none;
}

.path-panel__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: .6rem;
}

/* top accent bar */
.path-panel__accent {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--orange);
  transform: scaleX(0.4);
  transform-origin: left;
  transition: transform .35s ease;
}
.path-panel:hover .path-panel__accent { transform: scaleX(1); }

.path-num {
  font-size: 7rem;
  font-weight: 800;
  line-height: 1;
  color: rgba(255,255,255,.1);
  letter-spacing: -.05em;
  margin-bottom: -.75rem;
  transition: color .3s ease;
  text-shadow: none;
}
.path-panel:hover .path-num { color: rgba(246,146,30,.2); }

.path-title {
  color: #fff;
  font-size: clamp(1.5rem, 2.5vw, 2.25rem);
  font-weight: 800;
  line-height: 1.1;
  margin: 0;
  text-shadow: 0 2px 12px rgba(0,0,0,.5);
}

.path-desc {
  color: rgba(255,255,255,.75);
  font-size: .92rem;
  line-height: 1.65;
  margin: 0;
  max-width: 28ch;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .3s ease .05s, transform .3s ease .05s;
}
.path-panel:hover .path-desc {
  opacity: 1;
  transform: translateY(0);
}
@media (max-width: 699px) {
  .path-desc { opacity: 1; transform: none; max-width: none; }
}

.path-cta {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  color: var(--orange);
  font-weight: 700;
  font-size: .85rem;
  text-decoration: none;
  letter-spacing: .05em;
  text-transform: uppercase;
  margin-top: .25rem;
  opacity: 0;
  transform: translateX(-10px);
  transition: opacity .25s ease .12s, transform .25s ease .12s, color .2s;
}
.path-panel:hover .path-cta {
  opacity: 1;
  transform: translateX(0);
}
.path-cta:hover { color: #fff; }
@media (max-width: 699px) {
  .path-cta { opacity: 1; transform: none; }
}

/* ============================================================
   S3 · PROOF
   ============================================================ */
.s-proof {
  background: var(--ink);
  padding: 5rem 0;
}
.proof-eyebrow { margin-bottom: 0; }
.proof-headline {
  color: #fff;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
  margin: .5rem 0 3rem;
}

.proof-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
@media (min-width: 700px) {
  .proof-grid { grid-template-columns: repeat(4, 1fr); }
}

.proof-stat {
  padding: 2rem 1.5rem;
  border-right: 1px solid rgba(255,255,255,.07);
  border-bottom: 1px solid rgba(255,255,255,.07);
  position: relative;
}
/* orange left accent on first stat */
.proof-stat::before {
  content: '';
  position: absolute;
  top: 1.5rem; bottom: 1.5rem; left: 0;
  width: 2px;
  background: var(--orange);
  opacity: 0;
  transition: opacity .3s ease;
}
.proof-stat:first-child::before { opacity: 1; }
.proof-stat:nth-child(2n)          { border-right: none; }
.proof-stat:nth-child(n+3)         { border-bottom: none; }
@media (min-width: 700px) {
  .proof-stat                      { border-bottom: none; }
  .proof-stat:nth-child(2n)        { border-right: 1px solid rgba(255,255,255,.07); }
  .proof-stat:last-child           { border-right: none; }
  .proof-stat:first-child::before  { opacity: 1; }
  .proof-stat:nth-child(n+2)::before { opacity: 0; }
}

.proof-stat__num {
  display: flex;
  align-items: baseline;
  gap: .08em;
  margin-bottom: .5rem;
}
.p-n {
  font-size: clamp(3.5rem, 7vw, 6rem);
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
  font-variant-numeric: tabular-nums;
  letter-spacing: -.02em;
}
.p-sfx {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
  color: rgba(246,146,30,.4);
  line-height: 1;
}
.p-lbl {
  display: block;
  font-size: .78rem;
  font-weight: 600;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: .07em;
}

/* ============================================================
   S4 · TRANSFORMATION
   ============================================================ */
.s-transform { background: var(--orange-soft); padding: 5rem 0; }

.transform-inner {
  display: grid;
  gap: 3rem;
  grid-template-columns: 1fr;
  align-items: center;
}
@media (min-width: 860px) {
  .transform-inner { grid-template-columns: 1fr 1fr; }
}

.transform-qmark {
  font-size: clamp(4rem, 8vw, 7rem);
  line-height: .7;
  color: var(--orange);
  font-weight: 800;
  margin-bottom: .5rem;
  font-family: Georgia, serif;
}
.transform-text {
  font-size: clamp(1.15rem, 1.8vw, 1.55rem);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.55;
  margin: 0 0 .75rem;
  border: none;
  padding: 0;
  font-style: normal;
}
.transform-cite {
  display: block;
  color: var(--muted);
  font-size: .9rem;
  font-style: normal;
  font-weight: 500;
  margin-bottom: 1.75rem;
}

.transform-stats-mini { margin-bottom: 1.5rem; }
.t-stat { padding: .9rem 0; border-bottom: 1px solid rgba(0,0,0,.08); }
.t-stat:last-of-type { border-bottom: none; }
.t-stat__num {
  display: block;
  font-size: clamp(1.3rem, 2vw, 1.7rem);
  font-weight: 800;
  color: var(--orange-dark);
  line-height: 1;
}
.t-stat__lbl { display: block; color: var(--muted); font-size: .85rem; margin-top: .2rem; }

/* transformation photo */
.transform-photo-col { display: flex; flex-direction: column; }

.transform-photo {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,.14), 0 4px 16px rgba(0,0,0,.08);
  margin: 0;
  line-height: 0;
}
.transform-photo img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform .4s ease;
}
.transform-photo:hover img { transform: scale(1.02); }

.transform-photo-cap {
  margin-top: .75rem;
  font-size: .78rem;
  color: var(--muted);
  font-style: italic;
  text-align: center;
}

/* ============================================================
   S5 · PROMISE (ink bg)
   ============================================================ */
.promise-grid {
  display: grid;
  gap: 0;
  grid-template-columns: 1fr;
  margin-top: 2.5rem;
}
@media (min-width: 760px) { .promise-grid { grid-template-columns: 1fr 1fr; } }

.promise-item {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 1rem;
  align-items: start;
  padding: 1.4rem 0;
  border-top: 1px solid rgba(255,255,255,.07);
}
@media (min-width: 760px) {
  .promise-item:nth-child(odd)  { padding-right: 2.5rem; }
  .promise-item:nth-child(even) { padding-left: 2.5rem; border-left: 1px solid rgba(255,255,255,.07); }
}
.promise-num   { font-size: 1.6rem; font-weight: 800; color: var(--orange); line-height: 1.15; }
.promise-title { color: #fff; font-size: 1rem; margin: 0 0 .3rem; font-weight: 700; }
.promise-desc  { color: #64748b; font-size: .87rem; margin: 0; line-height: 1.65; }

/* ============================================================
   S6 · STORIES
   ============================================================ */
.stories-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  margin-top: 2.5rem;
}
.story-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .2s ease, transform .2s ease;
}
.story-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.story-card__top {
  display: flex;
  align-items: center;
  gap: .85rem;
  margin-bottom: .75rem;
}
.story-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  font-weight: 800;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.story-name  { display: block; font-weight: 700; font-size: .95rem; color: var(--ink); }
.story-prog  { display: block; font-size: .78rem; color: var(--muted); margin-top: .1rem; }
.stars       { color: var(--orange); font-size: .95rem; letter-spacing: .05em; margin-bottom: .5rem; }
.story-quote { color: var(--body); font-size: .88rem; line-height: 1.68; margin: 0; font-style: italic; }

/* ============================================================
   S7 · KNOWLEDGE HUB
   ============================================================ */
.section--light { background: #f8f8f6; }
.kb-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  margin-top: 2.5rem;
}
.kb-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  border: 1px solid var(--line);
  transition: box-shadow .2s ease, transform .2s ease;
}
.kb-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.kb-card__tag {
  display: inline-block;
  background: var(--orange-soft);
  color: var(--orange-dark);
  padding: .25rem .7rem;
  border-radius: 999px;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  margin-bottom: .75rem;
}
.kb-card__title   { font-size: 1rem; font-weight: 700; color: var(--ink); margin: 0 0 .5rem; line-height: 1.4; }
.kb-card__excerpt { font-size: .87rem; color: var(--muted); line-height: 1.65; margin: 0 0 1rem; }
.kb-card__link    { font-size: .85rem; font-weight: 700; color: var(--orange); text-decoration: none; }
.kb-card__link:hover { text-decoration: underline; }

/* ============================================================
   S8 · LOCATIONS
   ============================================================ */
.locations-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  margin-top: 2.5rem;
}
.location-card {
  border: 1px solid rgba(255,255,255,.09);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  background: rgba(255,255,255,.03);
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
}
.location-card:hover {
  background: rgba(255,255,255,.06);
  border-color: rgba(246,146,30,.3);
  transform: translateY(-2px);
}
.location-card__num  { display: block; font-size: 2.5rem; font-weight: 800; color: rgba(246,146,30,.18); line-height: 1; margin-bottom: .5rem; }
.location-card__name { font-size: 1.05rem; font-weight: 700; color: #fff; margin: 0 0 .35rem; }
.location-card__addr { font-size: .88rem; color: #64748b; margin: 0 0 .75rem; }
.location-card__tel  { font-size: .88rem; color: var(--orange); font-weight: 600; text-decoration: none; }
.location-card__tel:hover { text-decoration: underline; }

/* ============================================================
   S9 · CTA (snap, full orange)
   ============================================================ */
.s-cta {
  background: radial-gradient(ellipse at 50% 40%, #f9a438 0%, #F6921E 65%);
  justify-content: center;
  align-items: center;
  text-align: center;
}

/* grain on CTA */
.s-cta::before {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.05;
  pointer-events: none;
}

.s-cta__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 1;
}
.cta-snap-headline {
  color: #fff;
  font-size: clamp(2.5rem, 7vw, 6rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -.025em;
  margin: .75rem auto 1.5rem;
}
.cta-snap-sub-line {
  display: block;
  font-size: clamp(.95rem, 1.8vw, 1.35rem);
  font-weight: 500;
  color: rgba(255,255,255,.78);
  letter-spacing: 0;
}
.s-cta__btns {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  justify-content: center;
  margin-bottom: 1.25rem;
}
.s-cta__note {
  font-size: .88rem;
  color: rgba(255,255,255,.7);
  margin: 0;
}
.btn--ink         { background: var(--ink); color: #fff; border-color: transparent; }
.btn--ink:hover   { background: #000; }

/* ============================================================
   KINETIC ADDITIONS — marquee, diagonal, upgraded proof
   ============================================================ */

/* ---- Infinite marquee ticker ---- */
.marquee-strip {
  background: var(--orange);
  padding: .72rem 0;
  overflow: hidden;
  position: relative;
  z-index: 10;
  flex-shrink: 0;
}
.marquee-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: marquee-scroll 32s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }
.marquee-item {
  white-space: nowrap;
  padding: 0 1.6rem;
  color: #fff;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.marquee-dot {
  color: rgba(255,255,255,.45);
  font-size: .55rem;
  flex-shrink: 0;
}
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ---- Hero diagonal orange slice ---- */
.s-hero__slash {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.s-hero__slash::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -8%;
  width: 55%;
  height: 160%;
  background: linear-gradient(
    135deg,
    transparent 46%,
    rgba(246,146,30,.055) 46%,
    rgba(246,146,30,.055) 54%,
    transparent 54%
  );
}

/* ---- Proof section — scoreboard layout upgrade ---- */
.proof-grid { gap: 0; }
.proof-stat {
  padding: 2.5rem 2rem;
}
.proof-stat__num { margin-bottom: .65rem; }

/* ---- Section orange rule accent ---- */
.section-rule {
  display: block;
  width: 2.5rem;
  height: 3px;
  background: var(--orange);
  margin-bottom: 1rem;
  transform-origin: left;
}

/* ---- CTA big number float ---- */
.cta-snap-headline { position: relative; z-index: 1; }

/* ---- Stagger-reveal for promise items ---- */
.promise-item { transition: border-color .3s ease; }
.promise-item:hover { border-color: rgba(246,146,30,.25); }
.promise-num { transition: color .3s ease, transform .3s ease; }
.promise-item:hover .promise-num { color: var(--orange); transform: scale(1.1); }

/* ---- Upgrade: proof headline ---- */
.proof-headline {
  font-size: clamp(2rem, 4.5vw, 4rem);
}

/* ---- Story card image avatar glow ---- */
.story-avatar { box-shadow: 0 0 0 3px rgba(246,146,30,.25); }

/* ---- Path panel inner number – bigger watermark ---- */
.path-num {
  font-size: clamp(5rem, 12vw, 10rem);
  margin-bottom: -1.25rem;
}

/* ---- Marquee pinned to hero bottom ---- */
.s-hero__marquee {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 3;
}

/* ---- Reduce motion safety ---- */
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
  .scroll-cue__line { animation: none; }
  .hero-pill__dot { animation: none; }
}

/* =====================================================================
   PHASE 1 — Live-structure nav, CTAs, WhatsApp float, footer, form.
   Appended 2026-06-01 (Dev / LOOP). Mirrors fitcomfitness.com structure.
   ===================================================================== */

/* ---- Header: sticky shrink ---- */
.site-header { transition: box-shadow .25s ease, background .25s ease; }
.site-header.is-scrolled { box-shadow: 0 4px 18px rgba(15,23,42,.08); }
.site-header .nav { gap: 1rem; }

/* ---- CTA group ---- */
.nav-ctas { display: none; align-items: center; gap: .6rem; }
@media (min-width: 1025px) { .nav-ctas { display: inline-flex; } }
.nav-ctas .nav-cta { display: inline-flex; }

/* ---- Dropdown nav groups ---- */
.nav-group { position: relative; display: inline-flex; }
.nav-group__toggle {
  display: inline-flex; align-items: center; gap: .3rem;
  background: none; border: none; cursor: pointer; font: inherit;
  color: var(--ink-2); font-weight: 500; padding: .5rem 0;
  border-bottom: 2px solid transparent;
}
.nav-group__toggle:hover, .nav-group__toggle.is-active { color: var(--orange-dark); }
.nav-group__toggle.is-active { border-bottom-color: var(--orange); }
.nav-caret { transition: transform .2s ease; }
.nav-group.is-open .nav-caret { transform: rotate(180deg); }
.nav-group__menu {
  position: absolute; top: calc(100% + 10px); left: 0; min-width: 230px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow-lg); padding: .5rem; z-index: 60;
  opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s;
}
.nav-group:hover .nav-group__menu,
.nav-group.is-open .nav-group__menu { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-group__menu a {
  display: block; padding: .6rem .8rem; border-radius: 8px; color: var(--ink-2);
  font-weight: 500; border: none;
}
.nav-group__menu a:hover { background: var(--orange-soft); color: var(--orange-dark); }
.nav-group__menu a.is-active { color: var(--orange-dark); background: var(--orange-soft); }
.nav-group__menu::before {
  content: ""; position: absolute; top: -10px; left: 0; right: 0; height: 12px;
}

/* ---- Mobile drawer groups + dual CTAs ---- */
.mobile-drawer__group { padding: .5rem 0; border-bottom: 1px solid var(--line); }
.mobile-drawer__grouplabel {
  display: block; font-size: .72rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--muted); font-weight: 700; padding: .4rem .25rem .2rem;
}
.mobile-drawer__sub { display: block; padding: .65rem .9rem !important; border-bottom: none !important; font-weight: 500 !important; }
.mobile-drawer__ctas { display: flex; flex-direction: column; gap: .6rem; margin-top: 1.2rem; }
.mobile-drawer__ctas .mobile-drawer__cta { margin-top: 0; }

/* ---- Floating WhatsApp ---- */
.wa-float {
  position: fixed; right: clamp(14px, 3vw, 26px); bottom: clamp(14px, 3vw, 26px);
  width: 56px; height: 56px; border-radius: 50%; z-index: 80;
  display: inline-flex; align-items: center; justify-content: center;
  background: #25D366; color: #fff; box-shadow: 0 10px 26px rgba(37,211,102,.42);
  transition: transform .2s ease, box-shadow .2s ease;
}
.wa-float:hover { transform: translateY(-3px) scale(1.04); box-shadow: 0 14px 32px rgba(37,211,102,.5); text-decoration: none; }
.wa-float svg { color: #fff; }

/* ---- Footer social + reach ---- */
.footer-social { display: inline-flex; gap: .55rem; margin-top: 1rem; }
.footer-social a {
  width: 36px; height: 36px; border-radius: 50%; display: inline-flex;
  align-items: center; justify-content: center; background: var(--orange); color: #fff;
  transition: background .2s ease, transform .2s ease;
}
.footer-social a:hover { background: var(--orange-dark); transform: translateY(-2px); color:#fff; }
.footer-reach { margin-top: 1.4rem; }

/* =====================================================================
   ENQUIRE NOW — native form (dark band, id=enquire)
   ===================================================================== */
.fc-enquire { background: var(--ink); color: #e7ebf0; padding: clamp(3rem, 6vw, 5.5rem) 0; }
.fc-enquire .fc-eyebrow { color: var(--orange); }
.fc-enquire .fc-h2 { color: #fff; }
.fc-enquire__grid { display: grid; gap: clamp(1.8rem, 4vw, 3.5rem); grid-template-columns: 1fr; align-items: start; }
@media (min-width: 880px) { .fc-enquire__grid { grid-template-columns: 1fr 1.1fr; } }
.fc-enquire__lead { color: #b9c2cd; line-height: 1.6; max-width: 42ch; margin: .9rem 0 1.4rem; }
.fc-enquire__points { list-style: none; padding: 0; margin: 0 0 1.4rem; display: grid; gap: .55rem; }
.fc-enquire__points li { position: relative; padding-left: 1.6rem; color: #d4dae2; }
.fc-enquire__points li::before {
  content: "✓"; position: absolute; left: 0; top: 0; color: var(--orange); font-weight: 800;
}
.fc-enquire__alt { color: #9aa6b2; }
.fc-enquire__alt a { color: var(--orange); font-weight: 600; }

.fc-enquire__formwrap {
  background: #fff; border-radius: var(--radius-lg); padding: clamp(1.4rem, 3vw, 2.2rem);
  box-shadow: var(--shadow-lg); color: var(--ink);
}
.fc-form { display: grid; gap: 1rem; }
.fc-form__row { display: grid; gap: 1rem; grid-template-columns: 1fr; }
@media (min-width: 520px) { .fc-form__row { grid-template-columns: 1fr 1fr; } }
.fc-field { display: grid; gap: .35rem; }
.fc-field > span { font-size: .82rem; font-weight: 600; color: var(--ink-2); }
.fc-field input, .fc-field select, .fc-field textarea {
  width: 100%; box-sizing: border-box; font: inherit; color: var(--ink);
  padding: .8rem .9rem; border: 1.5px solid var(--line); border-radius: 12px; background: #fff;
  transition: border-color .18s ease, box-shadow .18s ease;
}
.fc-field input:focus, .fc-field select:focus, .fc-field textarea:focus {
  outline: none; border-color: var(--orange); box-shadow: 0 0 0 3px rgba(246,146,30,.16);
}
.fc-field textarea { resize: vertical; min-height: 84px; }
.fc-form__submit { justify-self: start; margin-top: .3rem; border: none; cursor: pointer; }
.fc-form__fine { font-size: .76rem; color: var(--muted); margin: .1rem 0 0; }
/* honeypot */
.fc-hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* form messages */
.fc-formmsg { border-radius: 12px; padding: .9rem 1.1rem; margin-bottom: 1.2rem; display: grid; gap: .15rem; }
.fc-formmsg strong { font-size: .98rem; }
.fc-formmsg--ok { background: #ECFDF3; border: 1px solid #ABEFC6; color: #067647; }
.fc-formmsg--err { background: #FEF3F2; border: 1px solid #FECDCA; color: #B42318; }


/* ===== KICK BUTTONS (2026-06-01 elevation) — angular notch shape + real
   box-shadow depth. Replaces the old parallelogram "Muay-Thai-kick" block
   that flattened box-shadow to none. Notch = cut top-left + bottom-right.
   24px rounded-rect — matches live fitcomfitness.com (verified 2026-06-11). No clip-path, no gradient. ===== */
.btn--primary, .btn--ghost,
.page-home .fc-btn, .page-home .fc-btn--orange, .page-home .fc-btn--ghost{
  border-radius:24px !important;
  clip-path:none !important;
  border:0 !important;
  transition:transform .22s cubic-bezier(.22,1,.36,1),box-shadow .22s cubic-bezier(.22,1,.36,1),filter .22s ease;
}
.btn--primary, .page-home .fc-btn--orange{
  background:#F6921E !important;
  color:#fff !important;
  box-shadow:0 8px 22px rgba(246,146,30,.28),0 2px 6px rgba(217,123,10,.20) !important;
}
.btn--primary:hover, .page-home .fc-btn--orange:hover{
  background:#E07F10 !important;
  transform:translateY(-2px) !important;
  box-shadow:0 14px 32px rgba(246,146,30,.36),0 4px 10px rgba(217,123,10,.28) !important;
  filter:none !important;
}
.page-home .fc-btn--ghost{
  background:transparent !important; color:var(--fc-ink) !important;
  box-shadow:inset 0 0 0 1.5px rgba(14,14,14,.28) !important;
}
.page-home .fc-btn--ghost:hover{
  color:var(--fc-orange-dark) !important; transform:translateY(-2px) !important;
  box-shadow:inset 0 0 0 1.5px var(--fc-orange) !important;
}
.page-home .section--ink .fc-btn--ghost{ color:#fff !important; box-shadow:inset 0 0 0 1.5px rgba(255,255,255,.3) !important; }
.page-home .section--ink .fc-btn--ghost:hover{ color:var(--fc-orange) !important; box-shadow:inset 0 0 0 1.5px var(--fc-orange) !important; }
@media (prefers-reduced-motion:reduce){
  .btn--primary,.btn--ghost,.page-home .fc-btn,.page-home .fc-btn--orange,.page-home .fc-btn--ghost{transition:none !important;}
  .btn--primary:hover,.page-home .fc-btn--orange:hover,.page-home .fc-btn--ghost:hover{transform:none !important;}
}


/* ===================================================================
   ENQUIRE FORM REDESIGN 2026-06-02 — Mei/Rex/Muse spec
   =================================================================== */
/* ENQUIRE-FORM-REDESIGN-2026-06-02 */

/* section ember glow */
.fc-enquire { position: relative; overflow: hidden; }
.fc-enquire::before {
  content: '';
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 55%;
  background: radial-gradient(ellipse 60% 40% at 50% 0%, rgba(246,146,30,.07) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.fc-enquire .fc-wrap { position: relative; z-index: 1; }

/* eyebrow */
.fc-enquire__eyebrow {
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #F6921E;
  font-weight: 600;
  margin: 0 0 .45rem;
}

/* two-step wrapper */
.fc-form--steps { max-width: 520px; margin: 0 auto; }
.fc-step { }

/* field label override for dark bg */
.fc-enquire .fc-field > span,
.fc-enquire fieldset.fc-field > legend,
.fc-enquire .fc-pills-field > legend {
  display: block;
  font-size: .72rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.42);
  font-weight: 500;
  margin-bottom: .4rem;
  border: 0;
  padding: 0;
}
.fc-enquire .fc-field > span em,
.fc-enquire fieldset legend em {
  text-transform: none;
  letter-spacing: 0;
  font-style: normal;
  color: rgba(255,255,255,.22);
}

/* inputs on dark bg */
.page-home .fc-enquire .fc-field input,
.page-home .fc-enquire .fc-field select,
.page-home .fc-enquire .fc-field textarea,
.fc-enquire .fc-field input,
.fc-enquire .fc-field select,
.fc-enquire .fc-field textarea {
  background: #1A1A1A !important;
  border: 1px solid rgba(255,255,255,.12) !important;
  border-radius: 12px !important;
  color: #fff !important;
  padding: .75rem 1rem;
  font-size: .95rem;
  font-family: inherit;
  width: 100%;
  transition: border-color .2s ease, box-shadow .25s ease;
}
.page-home .fc-enquire .fc-field input::placeholder,
.fc-enquire .fc-field input::placeholder { color: rgba(255,255,255,.25); }
.page-home .fc-enquire .fc-field input:focus,
.page-home .fc-enquire .fc-field select:focus,
.fc-enquire .fc-field input:focus,
.fc-enquire .fc-field select:focus {
  outline: none;
  border-color: #F6921E !important;
  box-shadow: 0 0 0 3px rgba(246,146,30,.15) !important;
}
.page-home .fc-enquire .fc-field select,
.fc-enquire .fc-field select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='rgba(255,255,255,0.35)' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}
.fc-enquire .fc-field select option { background: #1A1A1A; color: #fff; }
.fc-input--error {
  border-color: rgba(248,113,113,.6) !important;
  box-shadow: 0 0 0 3px rgba(248,113,113,.10) !important;
}

/* pills (branch + time selector) */
.fc-pills-field { border: 0; padding: 0; margin: 0; }
.fc-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: .25rem;
}
.fc-pill { display: inline-flex; align-items: center; cursor: pointer; }
.fc-pill input[type=radio] { position: absolute; opacity: 0; width: 0; height: 0; pointer-events: none; }
.fc-pill span {
  display: block;
  padding: 7px 18px;
  border-radius: 100px;
  border: 1.5px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.04);
  color: rgba(255,255,255,.58);
  font-size: .86rem;
  font-weight: 500;
  transition: border-color .18s ease, background .18s ease, color .18s ease;
  user-select: none;
  white-space: nowrap;
}
.fc-pill.is-on span {
  border-color: #F6921E;
  background: rgba(246,146,30,.12);
  color: #F6921E;
}
.fc-pill:hover span {
  border-color: rgba(246,146,30,.45);
  color: rgba(255,255,255,.82);
}
.fc-pills--error .fc-pill:not(.is-on) span { border-color: rgba(248,113,113,.35); }

/* checks grid */
.fc-checks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .5rem .75rem;
  margin-top: .3rem;
}
@media (max-width: 480px) { .fc-checks { grid-template-columns: 1fr; } }

.fc-enquire .fc-check {
  display: flex;
  align-items: flex-start;
  gap: .5rem;
  cursor: pointer;
  font-size: .86rem;
  color: rgba(255,255,255,.6);
  line-height: 1.4;
}
.fc-enquire .fc-check input[type=checkbox] {
  appearance: none;
  -webkit-appearance: none;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  border: 1.5px solid rgba(255,255,255,.22);
  border-radius: 3px;
  background: transparent;
  margin-top: .1em;
  position: relative;
  transition: background .15s, border-color .15s;
  cursor: pointer;
}
.fc-enquire .fc-check input[type=checkbox]:checked {
  background: #F6921E;
  border-color: #F6921E;
}
.fc-enquire .fc-check input[type=checkbox]:checked::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 10px; height: 10px;
  background: #fff;
  clip-path: polygon(14% 44%,0 65%,50% 100%,100% 16%,80% 0%,43% 62%);
}

/* step footer */
.fc-step__footer {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  margin-top: 1.4rem;
  flex-wrap: wrap;
}
.fc-step__footer--2 {
  justify-content: space-between;
}
.fc-step__hint {
  font-size: .76rem;
  color: rgba(255,255,255,.55);
  margin: 0;
  line-height: 1.4;
}

/* back link */
.fc-form__back {
  background: none;
  border: none;
  color: rgba(255,255,255,.38);
  font-size: .84rem;
  cursor: pointer;
  padding: .4rem 0;
  transition: color .15s;
  font-family: inherit;
}
.fc-form__back:hover { color: rgba(255,255,255,.68); }

/* privacy micro */
.fc-form__privacy {
  font-size: .70rem;
  color: rgba(255,255,255,.22);
  margin: .85rem 0 0;
  line-height: 1.55;
}
.fc-form__privacy a { color: rgba(255,255,255,.38); text-decoration: underline; }
.fc-form__privacy a:hover { color: rgba(246,146,30,.7); }

/* success/error dark variant */
.fc-enquire .fc-formmsg--ok {
  background: rgba(6,118,71,.12);
  border-color: rgba(74,222,128,.22);
  color: #4ade80;
}
.fc-enquire .fc-formmsg--err {
  background: rgba(180,35,24,.12);
  border-color: rgba(248,113,113,.22);
  color: #f87171;
}

/* cond field spacing */
.fc-cond-field { margin-top: .65rem; }

/* centre enquire heading block */
.fc-enquire__head { text-align: center; }
.fc-enquire__head .fc-enquire__lead { max-width: 50ch; margin: .8rem auto 1.4rem; }

/* fieldset border removal in enquire */
.fc-enquire fieldset { border: none; padding: 0; margin: 0; }
/* select dark rendering fix */
.fc-enquire .fc-field select { color-scheme: dark; }
/* subhead center */
.fc-enquire__head { text-align: center; }
.fc-enquire .fc-enquire__lead { max-width: 50ch; margin: .8rem auto 1.4rem; }

/* enquire final polish 2 */
.fc-enquire { color-scheme: dark; }
.fc-enquire .fc-enquire__lead {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  color: rgba(255,255,255,.55);
}

/* force subhead center */
.fc-enquire .fc-enquire__lead { margin-left: auto !important; margin-right: auto !important; text-align: center !important; }

/* ===== ENQUIRE FORM — SPACING PASS 2026-06-02 =====
   Lift all inter-field gaps so the form breathes.
   Core problem: 1rem gap makes distinct field groups read as one block.
   ===================================================== */
.fc-enquire .fc-form { gap: 1.75rem; }                  /* between field groups: 16→28px */
.fc-enquire .fc-field { gap: .52rem; }                  /* label-to-input: .35→.52rem    */
.fc-enquire fieldset.fc-field,
.fc-enquire .fc-pills-field { gap: .52rem; }
.fc-enquire .fc-checks { gap: .7rem 1rem; }             /* checkbox rows: more row height */
.fc-enquire .fc-check { font-size: .88rem; line-height: 1.5; }
.fc-enquire .fc-step__footer { margin-top: 2rem; }      /* more breath before CTA        */
.fc-enquire .fc-step__footer--2 { margin-top: 1.75rem; }
.fc-enquire .fc-form__privacy { margin-top: 1rem; }
/* section padding: tighten slightly so form card sits higher */
.fc-enquire { padding: clamp(2.8rem, 5vw, 4.5rem) 0; }
/* heading block bottom gap before form */
.fc-enquire__head { margin-bottom: 2.4rem; }
/* pills gap */
.fc-enquire .fc-pills { gap: 10px; }
.fc-enquire .fc-pill span { padding: 8px 20px; font-size: .88rem; }
/* Pills inside white formwrap card — override dark-bg defaults */
.fc-enquire .fc-enquire__formwrap .fc-pills-field > legend {
  color: #6b6b6b;
}
.fc-enquire .fc-enquire__formwrap .fc-pill span {
  border-color: #d9d9d9;
  background: #fff;
  color: #1a1a1a;
}
.fc-enquire .fc-enquire__formwrap .fc-pill.is-on span {
  border-color: #F6921E;
  background: rgba(246,146,30,.10);
  color: #F6921E;
}
.fc-enquire .fc-enquire__formwrap .fc-pill:hover span {
  border-color: #F6921E;
  color: #1a1a1a;
}

/* make each step a grid so gap applies between its field children */
.fc-enquire .fc-step { display: grid; gap: 1.6rem; align-content: start; }
/* cancel the margin-top now that grid gap handles separation */
.fc-enquire .fc-step__footer,
.fc-enquire .fc-step__footer--2 { margin-top: .4rem; }


/* ====== LANGUAGE TOGGLE (EN | ZH) ====== */
.fc-lang{
  display:inline-flex; align-items:center;
  background:transparent;
  border:1.5px solid rgba(14,14,14,.2);
  border-radius:100px; padding:2px; gap:0;
  font-family:var(--font-head); font-size:.76rem; font-weight:600;
}
.fc-lang__b{
  background:transparent; border:0;
  padding:5px 11px; border-radius:100px;
  cursor:pointer; color:var(--ink-2);
  font-family:inherit; font-size:inherit; font-weight:inherit;
  transition:background .15s ease, color .15s ease; line-height:1;
}
.fc-lang__b.is-on{ background:var(--orange); color:#fff; }
.fc-lang__b:not(.is-on):hover{ color:var(--orange-dark); }
.fc-lang__sep{ color:rgba(14,14,14,.2); font-size:.7rem; user-select:none; pointer-events:none; }
/* dark hero header */
.is-home .site-header:not(.is-scrolled) .fc-lang{ border-color:rgba(255,255,255,.35); }
.is-home .site-header:not(.is-scrolled) .fc-lang__b{ color:rgba(255,255,255,.75); }
.is-home .site-header:not(.is-scrolled) .fc-lang__sep{ color:rgba(255,255,255,.3); }
/* hide in desktop nav on small viewports; shown in mobile drawer */
@media(max-width:1024px){ .fc-lang.nav-lang{ display:none; } }
.mobile-drawer__lang{
  padding:.8rem 1.25rem;
  border-top:1px solid var(--line);
  display:flex; align-items:center;
}

/* =====================================================================
   FIX (2026-06-12): inner-page enquire form renders on a white card
   (the shared .fc-step--1/2 containers inherit inner.css .page-home
   .fc-step{background:#fff}, which is really meant for the process-steps
   component). On that white card the dark-section light labels were
   near-invisible. Make the in-card text dark — INNER pages only; the
   homepage (.is-home) keeps its light-on-dark treatment.
   ===================================================================== */
.page-home:not(.is-home) .fc-enquire .fc-field > span,
.page-home:not(.is-home) .fc-enquire .fc-field > span em,
.page-home:not(.is-home) .fc-enquire .fc-step__hint,
.page-home:not(.is-home) .fc-enquire .fc-form__privacy,
.page-home:not(.is-home) .fc-enquire .fc-form__privacy a { color: var(--ink-2); }
