/* ALKO Performance — layout/styles based on Fightness template */
:root {
  --bg: #070708;
  --white: #ffffff;
  --ink: #2c2c2c;
  --muted: #616161;
  --muted-light: #c2c2c2;
  --blue: #0d34e9;
  --blue-deep: #4e13d6;
  --panel: #ebebeb;
  --radius-frame: 40px;
  --radius-card: 24px;
  --radius-btn: 3px;
  --font-display: "Anton SC", "Anton", Impact, sans-serif;
  --font-body: "Inter", "Inter Display", system-ui, sans-serif;
  --pad-x: clamp(20px, 4.5vw, 70px);
  --max: 1440px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); border: 0;
}

/* Typography */
.display {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 0.95;
}
.eyebrow {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0;
}
.accent { color: var(--blue); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--blue);
  color: var(--white);
  font-size: 18px;
  font-weight: 500;
  padding: 10px 30px;
  border-radius: var(--radius-btn);
  min-height: 49px;
  transition: background .2s ease, transform .2s ease;
  border: none;
  cursor: pointer;
  text-decoration: none;
  font-family: inherit;
}
button.btn { background: var(--blue); color: var(--white); }
.btn:hover { background: #0a2bc0; }
.btn-sm { font-size: 16px; padding: 8px 20px; min-height: 40px; }

/* Fixed chrome */
.site-chrome {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 100;
}
.logo-tab {
  position: absolute;
  top: 0; left: 0;
  pointer-events: auto;
  background: var(--bg);
  width: 280px;
  height: 75px;
  display: flex;
  align-items: center;
  padding: 0 22px;
  border-bottom-right-radius: 20px;
  z-index: 2;
}
.logo-tab img { width: 220px; height: auto; max-height: 48px; object-fit: contain; }
.logo-tab::after {
  content: "";
  position: absolute;
  right: -20px; top: 0;
  width: 20px; height: 20px;
  background: radial-gradient(circle at 100% 100%, transparent 70%, var(--bg) 71%);
}
.menu-tab {
  position: absolute;
  top: 0; right: 0;
  pointer-events: auto;
  background: var(--bg);
  width: 81px;
  height: 75px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom-left-radius: 20px;
  cursor: pointer;
  z-index: 2;
}
.menu-tab::before {
  content: "";
  position: absolute;
  left: -20px; top: 0;
  width: 20px; height: 20px;
  background: radial-gradient(circle at 0 100%, transparent 70%, var(--bg) 71%);
}
.hamburger {
  width: 28px; height: 14px;
  display: flex; flex-direction: column; justify-content: space-between;
}
.hamburger span {
  display: block; height: 2px; background: var(--white); border-radius: 1px;
}
.fixed-cta {
  position: absolute;
  right: 24px; bottom: 24px;
  pointer-events: auto;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 6px;
  background: var(--bg);
  padding: 10px;
  border-radius: 14px 14px 14px 4px;
}
.fixed-cta .btn,
.fixed-cta .wa-btn {
  white-space: nowrap;
  width: 100%;
  justify-content: center;
  font-size: 13px;
  font-weight: 500;
  padding: 7px 14px;
  min-height: 34px;
  line-height: 1.2;
}
.framer-badge {
  display: none; /* omit Framer promo in clone */
}

/* Full-screen nav overlay */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(7,7,8,.97);
  z-index: 200;
  display: flex;
  flex-direction: column;
  justify-content: stretch;
  padding: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s ease, visibility .3s ease;
  overflow: auto;
}
.nav-overlay.open { opacity: 1; visibility: visible; }
.nav-overlay-inner {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 36px;
  padding: 100px var(--pad-x) 48px;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  box-sizing: border-box;
}
.nav-overlay-brand {
  display: block;
}
.nav-overlay-logo {
  display: inline-flex;
  align-items: center;
  padding: 0;
}
.nav-overlay-logo img {
  width: min(220px, 55vw);
  height: auto;
  max-height: 56px;
  object-fit: contain;
}
.nav-overlay-links {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.nav-overlay-links a {
  color: var(--white);
  font-family: var(--font-display);
  font-size: clamp(28px, 5vw, 56px);
  line-height: 1.1;
  text-transform: uppercase;
  padding: 4px 0;
  transition: color .2s;
}
.nav-overlay-links a:hover { color: var(--blue); }
.nav-overlay-contact {
  margin-top: 8px;
  max-width: 420px;
}
.nav-contact-title {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 32px);
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 18px;
  letter-spacing: .02em;
}
.nav-contact-block {
  margin-bottom: 18px;
}
.nav-contact-label {
  color: rgba(255,255,255,.55);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.nav-overlay-contact a {
  display: block;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.45;
  text-transform: none;
  padding: 2px 0;
  transition: color .2s;
}
.nav-overlay-contact a:hover { color: var(--blue); }
.nav-contact-address {
  color: rgba(255,255,255,.88);
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 6px;
}
.nav-close {
  position: absolute;
  top: 24px; right: 24px;
  color: var(--white);
  font-size: 32px;
  width: 48px; height: 48px;
  z-index: 2;
  display: grid;
  place-items: center;
  cursor: pointer;
  background: transparent;
  border: 0;
}
@media (min-width: 900px) {
  .nav-overlay-inner {
    display: grid;
    grid-template-columns: minmax(180px, 0.9fr) minmax(280px, 1.3fr) minmax(240px, 1fr);
    grid-template-rows: auto 1fr;
    gap: 40px 48px;
    align-items: start;
    padding: 48px clamp(40px, 5vw, 80px) 56px;
    min-height: 100%;
  }
  .nav-overlay-brand {
    grid-column: 1;
    grid-row: 1;
  }
  .nav-overlay-links {
    grid-column: 2;
    grid-row: 1 / span 2;
    align-self: center;
    padding-top: 24px;
  }
  .nav-overlay-contact {
    grid-column: 3;
    grid-row: 1 / span 2;
    align-self: center;
    margin-top: 0;
    justify-self: end;
    width: 100%;
    max-width: 340px;
    padding: 28px 24px;
    border-left: 1px solid rgba(255,255,255,.12);
  }
  .nav-overlay-links a {
    font-size: clamp(36px, 4.2vw, 64px);
    padding: 6px 0;
  }
  .nav-overlay-contact a { font-size: 17px; }
  .nav-contact-address { font-size: 17px; }
  .nav-close { top: 28px; right: 36px; }
}

/* Page shell — black outer frame with inset rounded panels */
.page {
  position: relative;
  z-index: 1;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 0 12px;
}
.frame {
  background: var(--white);
  border-radius: var(--radius-frame);
  overflow: hidden;
  margin: 12px 12px 0;
}
.frame-dark { background: var(--bg); color: var(--white); }
.frame-dark .eyebrow { color: var(--white); }
.frame-dark .display { color: var(--white); }
.frame-dark .prose,
.frame-dark .prose p,
.frame-dark li,
.frame-dark h3,
.frame-dark .content-block li { color: var(--muted-light); }
.frame-dark .content-block h3 { color: var(--white); }
.frame-dark .content-block li::before { background: var(--blue); }
.frame-dark .breadcrumbs { color: var(--muted-light); }
.frame-dark .breadcrumbs a:hover { color: #fff; }
.frame-blue .eyebrow { color: rgba(255,255,255,.85); }
.frame-blue .display { color: var(--white); }
.frame-blue .prose,
.frame-blue .prose p,
.frame-blue li,
.frame-blue h3,
.frame-blue .content-block li { color: rgba(255,255,255,.9); }
.frame-blue .content-block h3 { color: var(--white); }
.frame-blue .content-block li::before { background: #fff; }
.frame-blue .breadcrumbs { color: rgba(255,255,255,.75); }
.frame-blue .breadcrumbs a:hover { color: #fff; }
.page-hero-band {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  text-align: left;
  padding: clamp(110px, 14vw, 160px) var(--pad-x) clamp(48px, 6vw, 80px);
  background-color: #070708;
}
.page-hero-band::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: url("../assets/images/hero-pages.png") center / cover no-repeat;
}
.page-hero-band::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(0, 0, 0, 0.4);
}
.page-hero-band > * {
  position: relative;
  z-index: 1;
}
.page-hero-band h1 {
  font-size: clamp(36px, 5.5vw, 72px);
  margin: 12px 0 20px;
  max-width: 1000px;
  text-align: left;
  margin-left: 0;
  margin-right: 0;
}
.page-hero-band p {
  max-width: 720px;
  margin-left: 0;
  text-align: left;
}
.page-hero-band .breadcrumbs {
  padding: 0 0 24px;
}
.section-stack > .frame { margin-top: 12px; }
.two-col-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 28px;
}
.mini-card {
  background: var(--panel);
  border-radius: 16px;
  padding: 24px;
}
.frame-dark .mini-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
}
.frame-blue .mini-card {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.15);
}
.mini-card h3 {
  font-family: var(--font-display);
  font-size: 28px;
  margin-bottom: 10px;
  color: var(--ink);
}
.frame-dark .mini-card h3,
.frame-blue .mini-card h3 { color: var(--white); }
.mini-card p { font-size: 16px; line-height: 1.55; }
@media (max-width: 809px) {
  .two-col-cards { grid-template-columns: 1fr; }
}
.frame-blue {
  background: linear-gradient(180deg, #0d34e9 0%, #4c00ff 100%);
  color: var(--white);
}
.section {
  padding: clamp(60px, 8vw, 120px) var(--pad-x);
  position: relative;
}
.section-tight { padding-top: clamp(40px, 5vw, 80px); padding-bottom: clamp(40px, 5vw, 80px); }

/* ========== HERO ========== */
.hero {
  position: relative;
  min-height: calc(100vh - 12px);
  min-height: calc(100dvh - 12px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0;
  overflow: hidden;
  border-radius: var(--radius-frame);
  background: #0b2535;
  margin: 12px 12px 0;
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7,7,8,.55) 0%, rgba(7,7,8,.15) 55%, transparent 100%),
              linear-gradient(0deg, rgba(7,7,8,.5) 0%, transparent 45%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 var(--pad-x) clamp(72px, 9vw, 110px);
  max-width: min(1280px, 100%);
  width: 100%;
}
.social-proof {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
}
.avatars { display: flex; }
.avatars img {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,.3);
  object-fit: cover;
  margin-left: -12px;
}
.avatars img:first-child { margin-left: 0; }
.rating { color: var(--white); }
.stars {
  display: inline; gap: 2px; align-items: center;
  color: #fff; font-size: 12px; letter-spacing: 1px; margin-bottom: 2px;
}
.stars + .score {
  color: var(--white);
  font-size: 14px;
  font-weight: 300;
  display: inline;
  margin-left: 6px;
}
.clients-label {
  color: var(--white);
  font-size: 14px;
  font-weight: 300;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.8vw, 64px);
  line-height: 1.05;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 14px;
  max-width: 980px;
}
.hero h1 .accent { color: var(--blue); }
.hero .eyebrow {
  margin-bottom: 12px !important;
}
.hero-sub {
  color: var(--white);
  font-size: clamp(13px, 1.15vw, 16px);
  font-weight: 400;
  max-width: min(920px, 95%);
  width: 100%;
  line-height: 1.5;
  opacity: 0.92;
  margin-top: 4px;
}
.video-card {
  position: absolute;
  right: var(--pad-x);
  bottom: clamp(120px, 16vw, 180px);
  z-index: 3;
  width: 238px;
  border-radius: 12px;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 20px 50px rgba(0,0,0,.35);
  cursor: pointer;
  transition: transform .25s ease;
}
.video-card:hover { transform: translateY(-4px); }
.video-card-media {
  position: relative;
  height: 120px;
  overflow: hidden;
}
.video-card-media img {
  width: 100%; height: 100%; object-fit: cover;
}
.play-icon {
  position: absolute;
  top: 12px; left: 12px;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(255,255,255,.9);
  display: flex; align-items: center; justify-content: center;
}
.play-icon svg { width: 10px; height: 10px; margin-left: 2px; }
.video-card-label {
  padding: 10px 14px;
  font-size: 14px;
  color: var(--bg);
  font-weight: 500;
}

/* ========== TRAINER ========== */
.trainer {
  background: var(--bg);
  color: var(--white);
  border-radius: var(--radius-frame);
  margin: 12px 12px 0;
}
.trainer-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: end;
}
.trainer .eyebrow { color: var(--white); margin-bottom: 12px; }
.trainer h2 {
  font-size: clamp(48px, 8.3vw, 120px);
  color: var(--white);
  margin-bottom: 28px;
}
.trainer-bio {
  color: var(--muted-light);
  font-size: 18px;
  max-width: 520px;
  margin-bottom: 40px;
  line-height: 1.6;
}
.stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}
.stat-num {
  font-family: var(--font-display);
  font-size: 48px;
  color: var(--white);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  color: var(--muted-light);
  font-size: 18px;
}
.trainer-photo {
  border-radius: var(--radius-card);
  overflow: hidden;
  aspect-ratio: 574 / 490;
}
.trainer-photo img {
  width: 100%; height: 100%; object-fit: cover;
}

/* ========== SERVICES ========== */
.services-head { margin-bottom: 48px; }
.services-head .eyebrow { color: var(--ink); margin-bottom: 12px; }
.services-head h2 {
  font-size: clamp(42px, 8.3vw, 120px);
  color: var(--ink);
  max-width: 900px;
}
.services-track-wrap {
  overflow: hidden;
  margin-right: calc(-1 * var(--pad-x));
  margin-left: calc(-1 * var(--pad-x));
  padding-left: var(--pad-x);
}
.services-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 16px;
  padding-right: var(--pad-x);
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  cursor: grab;
}
.services-track::-webkit-scrollbar { display: none; }
.services-track.dragging { cursor: grabbing; }
.service-card {
  flex: 0 0 min(480px, 85vw);
  height: 585px;
  border-radius: var(--radius-card);
  overflow: hidden;
  position: relative;
  scroll-snap-align: start;
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px;
}

/* Homepage services: 3 + 3 + 2 centered */
.home-services-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}
.home-services-grid .service-card {
  flex: none;
  width: auto;
  height: 420px;
  grid-column: span 2;
  padding: 24px;
}
.home-services-grid .service-card h3 {
  font-size: 32px;
}
.home-services-grid .service-card:nth-child(7) {
  grid-column: 2 / 4;
}
.home-services-grid .service-card:nth-child(8) {
  grid-column: 4 / 6;
}
.service-card img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}
.service-card::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(7,7,8,.85) 0%, rgba(7,7,8,.2) 55%, transparent 100%);
  z-index: 1;
}
.service-card-body { position: relative; z-index: 2; }
.service-card h3 {
  font-family: var(--font-display);
  font-size: 48px;
  line-height: .95;
  margin-bottom: 12px;
}
.service-card > .service-card-body > p {
  font-size: 18px;
  margin-bottom: 20px;
  opacity: .95;
}
.meta-row {
  display: flex; gap: 28px; flex-wrap: wrap;
  margin-bottom: 16px;
}
.meta-row div span {
  display: block;
  font-size: 18px;
  opacity: .8;
}
.meta-row div strong {
  display: block;
  font-size: 24px;
  font-weight: 500;
}
.tags { display: flex; flex-wrap: wrap; gap: 8px; }
.tag {
  font-size: 14px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.2);
}

/* ========== WHY ========== */
.why-head { margin-bottom: 56px; max-width: 900px; }
.why-head .eyebrow { margin-bottom: 12px; }
.why-head h2 {
  font-size: clamp(42px, 8.3vw, 120px);
  color: var(--ink);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.why-card h3 {
  font-family: var(--font-display);
  font-size: clamp(22px, 2vw, 32px);
  margin: 16px 0 10px;
  color: var(--ink);
}
.why-card p { font-size: 18px; color: var(--ink); line-height: 1.5; }
.why-icon {
  width: 100%;
  aspect-ratio: 420 / 280;
  border-radius: 16px;
  overflow: hidden;
  background: var(--panel);
}
.why-icon img { width: 100%; height: 100%; object-fit: cover; }

/* ========== PROCESS ========== */
.process .eyebrow { color: var(--white); margin-bottom: 12px; }
.process h2 {
  font-size: clamp(42px, 8.3vw, 120px);
  color: var(--white);
  max-width: 700px;
  margin-bottom: 24px;
}
.process-intro {
  font-size: 18px;
  max-width: 560px;
  margin-bottom: 56px;
  opacity: .95;
}
.process-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px 40px;
}
.process-step {
  display: grid;
  gap: 16px;
}
.process-step:nth-child(even) { margin-top: 80px; }
.step-label {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .04em;
  opacity: .85;
}
.process-step h3 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1;
}
.process-step p { font-size: 18px; opacity: .9; max-width: 480px; }
.process-step img {
  width: 100%;
  border-radius: 16px;
  aspect-ratio: 546 / 400;
  object-fit: cover;
}

/* ========== TRANSFORMATIONS ========== */
.transforms-head {
  text-align: center;
  margin-bottom: 48px;
}
.transforms-head .eyebrow { margin-bottom: 12px; }
.transforms-head h2 {
  font-size: clamp(42px, 8.3vw, 120px);
  color: var(--ink);
}
.collage {
  display: grid;
  grid-template-columns: 1.4fr 0.7fr 0.7fr 1.4fr;
  grid-template-rows: 1fr 1fr;
  gap: 12px;
  height: min(70vh, 900px);
}
.collage-item {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
}
.collage-item img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.collage-item.tall { grid-row: span 2; }
.collage-scroll {
  display: none;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 8px;
  scroll-snap-type: x mandatory;
}
.collage-scroll img {
  flex: 0 0 70vw;
  height: 70vw;
  max-height: 480px;
  object-fit: cover;
  border-radius: 16px;
  scroll-snap-align: start;
}

/* ========== TESTIMONIALS ========== */
.testimonials-head { margin-bottom: 48px; }
.testimonials-head .eyebrow { margin-bottom: 12px; }
.testimonials-head h2 {
  font-size: clamp(42px, 8.3vw, 120px);
  color: var(--ink);
  max-width: 900px;
}
.t-track-wrap {
  overflow: hidden;
  margin: 0 calc(-1 * var(--pad-x));
  padding: 0 var(--pad-x);
}
.t-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 12px;
  scrollbar-width: none;
  cursor: grab;
}
.t-track::-webkit-scrollbar { display: none; }
.t-card {
  flex: 0 0 min(420px, 85vw);
  scroll-snap-align: start;
  border-radius: var(--radius-card);
  padding: 32px;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--panel);
  color: var(--ink);
}
.t-card.dark {
  background: var(--bg);
  color: var(--white);
}
.t-card.blue {
  background: var(--blue);
  color: var(--white);
}
.t-card blockquote {
  font-size: 18px;
  line-height: 1.55;
  margin-bottom: 28px;
}
.t-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.t-author img {
  width: 42px; height: 42px;
  border-radius: 50%;
  object-fit: cover;
}
.t-author strong { display: block; font-size: 14px; font-weight: 500; }
.t-author span { display: block; font-size: 14px; opacity: .7; }

/* ========== FAQ ========== */
.faq-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 48px;
  align-items: start;
}
.faq-left .eyebrow { color: var(--white); margin-bottom: 12px; }
.faq-left h2 {
  font-size: clamp(42px, 7vw, 100px);
  color: var(--white);
  margin-bottom: 28px;
}
.faq-left > p {
  font-size: 18px;
  opacity: .95;
  max-width: 480px;
}
.faq-visual {
  margin-top: 40px;
  border-radius: 16px;
  overflow: hidden;
  max-width: 546px;
}
.faq-visual img { width: 100%; aspect-ratio: 546/467; object-fit: cover; }
.faq-list { border-top: 1px solid rgba(255,255,255,.25); }
.faq-item { border-bottom: 1px solid rgba(255,255,255,.25); }
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 0;
  color: var(--white);
  font-size: 18px;
  font-weight: 500;
  text-align: left;
}
.faq-q .icon {
  width: 24px; height: 24px;
  flex-shrink: 0;
  position: relative;
}
.faq-q .icon::before,
.faq-q .icon::after {
  content: "";
  position: absolute;
  background: var(--white);
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
}
.faq-q .icon::before { width: 14px; height: 2px; }
.faq-q .icon::after { width: 2px; height: 14px; transition: transform .25s; }
.faq-item.open .faq-q .icon::after { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
  color: rgba(255,255,255,.9);
  font-size: 16px;
  line-height: 1.6;
}
.faq-item.open .faq-a {
  max-height: 200px;
  padding-bottom: 22px;
}

/* ========== CONTACT ========== */
.contact {
  position: relative;
  border-radius: var(--radius-frame);
  overflow: hidden;
  color: var(--white);
  min-height: 700px;
  margin: 12px 12px 0;
}
.contact-bg {
  position: absolute; inset: 0; z-index: 0;
}
.contact-bg img {
  width: 100%; height: 100%; object-fit: cover;
}
.contact-bg::after {
  content: "";
  position: absolute; inset: 0;
  background: rgba(7,7,8,.72);
}
.contact-inner {
  position: relative; z-index: 1;
  padding: clamp(60px, 8vw, 100px) var(--pad-x);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.contact .eyebrow { margin-bottom: 12px; }
.contact h2 {
  font-size: clamp(42px, 7vw, 100px);
  margin-bottom: 20px;
  max-width: 600px;
}
.contact-lead {
  color: var(--muted-light);
  font-size: 18px;
  max-width: 420px;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group.full { grid-column: 1 / -1; }
.form-group label {
  font-size: 14px;
  color: rgba(255,255,255,.8);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: #fff;
  border: 1px solid #d0d0d0;
  border-radius: 8px;
  color: var(--ink);
  padding: 14px 16px;
  font-size: 16px;
  font-family: inherit;
  outline: none;
  transition: border-color .2s;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue);
}
.form-group select {
  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 fill='%232c2c2c' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}
.form-group select option { background: #fff; color: #111; }
.form-group textarea { min-height: 120px; resize: vertical; }
.form-group label { color: var(--ink); }

/* Dark contact band forms keep light text */
.contact .form-group label { color: rgba(255,255,255,.8); }
.contact .form-group input,
.contact .form-group select,
.contact .form-group textarea {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.2);
  color: var(--white);
}
.contact .form-group select {
  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 fill='%23fff' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
}
.contact .form-group select option { background: #111; color: #fff; }
.form-success {
  display: none;
  margin-top: 16px;
  padding: 14px 16px;
  background: rgba(13,52,233,.12);
  border-radius: 8px;
  font-size: 16px;
  color: var(--ink);
}
.contact .form-success {
  background: rgba(13,52,233,.35);
  color: var(--white);
}
.form-success.show { display: block; }

/* ========== MARQUEE ========== */
.marquee {
  background: var(--bg);
  color: var(--white);
  padding: 28px 0;
  overflow: hidden;
  border-radius: var(--radius-frame);
  margin: 12px 12px 0;
}
.marquee-track {
  display: flex;
  gap: 48px;
  width: max-content;
  animation: marquee 28s linear infinite;
}
.marquee-track span {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 48px);
  white-space: nowrap;
  letter-spacing: .02em;
}
.marquee-track span::after {
  content: " ✦ ";
  color: var(--blue);
  margin-left: 48px;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.ig-strip {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding: 0 var(--pad-x) 40px;
  margin: 0 12px;
  scrollbar-width: none;
}
.ig-strip::-webkit-scrollbar { display: none; }
.ig-strip img {
  flex: 0 0 235px;
  height: 235px;
  object-fit: cover;
  border-radius: 12px;
}

/* ========== FOOTER ========== */
.site-footer {
  background: var(--white);
  border-radius: var(--radius-frame);
  padding: clamp(48px, 6vw, 90px) var(--pad-x) 40px;
  margin: 12px 12px 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer-brand p {
  font-size: 18px;
  color: var(--ink);
  max-width: 360px;
  margin-bottom: 24px;
}
.footer-logo {
  display: inline-block;
  margin-bottom: 20px;
}
.footer-logo img {
  width: 200px;
  height: auto;
  max-height: 56px;
  object-fit: contain;
}
.footer-contact a {
  display: block;
  font-size: 18px;
  color: var(--ink);
  margin-bottom: 6px;
}
.footer-contact a:hover { color: var(--blue); }
.footer-col h4 {
  color: var(--blue);
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 14px;
}
.footer-col a {
  display: block;
  font-size: 18px;
  font-weight: 300;
  color: var(--ink);
  padding: 4px 0;
}
.footer-col a:hover { color: var(--blue); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 28px;
  border-top: 1px solid #e5e5e5;
  font-size: 16px;
  color: var(--ink);
}
.footer-bottom a:hover { color: var(--blue); }

/* ========== INNER PAGES ========== */
.page-hero {
  padding: clamp(120px, 16vw, 180px) var(--pad-x) clamp(48px, 6vw, 80px);
  text-align: center;
}
.page-hero h1 {
  font-size: clamp(42px, 7vw, 120px);
  color: var(--ink);
  margin-bottom: 24px;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}
.page-hero p {
  font-size: clamp(16px, 1.7vw, 24px);
  color: var(--ink);
  max-width: 720px;
  margin: 0 auto;
}
.insights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding: 0 var(--pad-x) clamp(60px, 8vw, 100px);
}
.insight-card {
  border-radius: var(--radius-card);
  overflow: hidden;
  background: var(--panel);
  transition: transform .25s ease;
}
.insight-card:hover { transform: translateY(-4px); }
.insight-card-media {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.insight-card-media img {
  width: 100%; height: 100%; object-fit: cover;
}
.insight-cat {
  position: absolute;
  top: 14px; left: 14px;
  background: rgba(44,44,44,.55);
  color: var(--white);
  font-size: 14px;
  padding: 6px 12px;
  border-radius: 8px;
  backdrop-filter: blur(6px);
}
.insight-card-body { padding: 20px 22px 28px; }
.insight-card-body h3 {
  font-family: var(--font-display);
  font-size: 24px;
  line-height: 1.15;
  margin-bottom: 10px;
  color: var(--ink);
}
.insight-card-body time {
  font-size: 14px;
  color: var(--muted);
}

/* Service detail */
.service-hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: flex-end;
  color: var(--white);
  border-radius: var(--radius-frame);
  overflow: hidden;
  margin: 12px 12px 0;
}
.service-hero img.bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  object-position: center center;
}
.service-hero::after {
  content: "";
  position: absolute; inset: 0;
  background: rgba(0, 0, 0, 0.4);
}
.service-hero-content {
  position: relative; z-index: 1;
  padding: clamp(60px, 8vw, 100px) var(--pad-x);
  max-width: min(1180px, 100%);
  width: 100%;
}
.service-hero h1 {
  font-size: clamp(36px, 5.5vw, 84px);
  margin-bottom: 14px;
  max-width: 1000px;
  line-height: 1.05;
}
.service-hero p {
  font-size: clamp(14px, 1.25vw, 18px);
  max-width: min(900px, 95%);
  line-height: 1.5;
  opacity: 0.95;
}
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  padding: clamp(48px, 6vw, 80px) var(--pad-x);
}
.two-col h3 {
  font-family: var(--font-display);
  font-size: 32px;
  margin-bottom: 16px;
}
.checklist li {
  position: relative;
  padding-left: 28px;
  font-size: 18px;
  margin-bottom: 12px;
  color: var(--ink);
}
.checklist li::before {
  content: "";
  position: absolute;
  left: 0; top: 8px;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--blue);
}

/* Article */
.article {
  max-width: 800px;
  margin: 0 auto;
  padding: clamp(120px, 14vw, 160px) var(--pad-x) 60px;
}
.article h1 {
  font-size: clamp(36px, 5.5vw, 72px);
  color: var(--ink);
  margin-bottom: 20px;
}
.article .dek {
  font-size: 24px;
  color: var(--ink);
  margin-bottom: 16px;
}
.article time { font-size: 18px; color: var(--muted); display: block; margin-bottom: 40px; }
.article-hero-img {
  border-radius: var(--radius-card);
  overflow: hidden;
  margin-bottom: 48px;
  aspect-ratio: 16/9;
}
.article-hero-img img { width: 100%; height: 100%; object-fit: cover; }
.article h2 {
  font-family: var(--font-display);
  font-size: 48px;
  margin: 40px 0 16px;
  color: var(--ink);
}
.article h3 {
  font-family: var(--font-display);
  font-size: 24px;
  margin: 28px 0 12px;
  color: var(--ink);
}
.article p { font-size: 18px; margin-bottom: 16px; color: var(--ink); line-height: 1.65; }
.article ul { margin: 0 0 24px 0; }
.article ul li {
  font-size: 18px;
  padding: 6px 0 6px 28px;
  position: relative;
  color: var(--ink);
}
.article ul li::before {
  content: "";
  position: absolute;
  left: 0; top: 14px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--blue);
}

/* 404 */
.error-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--pad-x);
  color: var(--white);
}
.error-page h1 {
  font-size: clamp(80px, 20vw, 200px);
  margin-bottom: 16px;
}
.error-page p { font-size: 24px; margin-bottom: 32px; color: var(--muted-light); }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.9);
  z-index: 300;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden;
  transition: opacity .3s;
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox-inner {
  position: relative;
  width: min(900px, 92vw);
  aspect-ratio: 16/9;
  background: #111;
  border-radius: 12px;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
}
.lightbox-close {
  position: absolute; top: 20px; right: 20px;
  color: var(--white); font-size: 28px; z-index: 2;
}

/* Reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.in {
  opacity: 1;
  transform: none;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1100px) {
  .why-grid { grid-template-columns: 1fr 1fr; }
  .trainer-grid { grid-template-columns: 1fr; }
  .trainer-photo { max-width: 560px; }
  .process-step:nth-child(even) { margin-top: 0; }
  .faq-layout { grid-template-columns: 1fr; }
  .contact-inner { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .insights-grid { grid-template-columns: 1fr 1fr; }
  .collage { display: none; }
  .collage-scroll { display: flex; }
  .video-card { display: none; }
  .home-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .home-services-grid .service-card,
  .home-services-grid .service-card:nth-child(7),
  .home-services-grid .service-card:nth-child(8) {
    grid-column: auto;
  }
}

@media (max-width: 809px) {
  .logo-tab { width: 180px; height: 60px; padding: 0 18px; }
  .logo-tab img { width: 130px; }
  .menu-tab { width: 64px; height: 60px; }
  .fixed-cta { right: 12px; bottom: 12px; padding: 8px; gap: 5px; }
  .fixed-cta .btn,
  .fixed-cta .wa-btn {
    font-size: 11px;
    padding: 6px 10px;
    min-height: 30px;
  }
  .btn-label-full { display: none; }
  .btn-label-short { display: inline; }
  .hero { border-radius: 24px; min-height: calc(100svh - 16px); margin: 8px; }
  .hero h1 { font-size: 40px; }
  .social-proof { flex-direction: column; align-items: flex-start; gap: 10px; }
  .why-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px 14px;
  }
  .footer-brand { grid-column: 1 / -1; }
  .footer-col h4 {
    font-size: 13px;
    margin-bottom: 8px;
  }
  .footer-col a {
    font-size: 12px;
    font-weight: 400;
    padding: 2px 0;
    line-height: 1.35;
  }
  .insights-grid { grid-template-columns: 1fr; }
  .two-col { grid-template-columns: 1fr; }
  .service-card h3 { font-size: 36px; }
  .service-card { height: 520px; }
  .home-services-grid {
    grid-template-columns: 1fr;
  }
  .home-services-grid .service-card {
    height: 360px;
  }
  .home-services-grid .service-card h3 { font-size: 28px; }
  .frame, .contact, .marquee, .site-footer, .trainer, .service-hero {
    border-radius: 24px;
    margin-left: 8px;
    margin-right: 8px;
  }
}

@media (min-width: 810px) {
  .btn-label-short { display: none; }
}

/* —— ALKO content utilities (same palette) —— */
.logo-tab img { width: 220px; height: auto; max-height: 48px; object-fit: contain; }
.btn-outline {
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255,255,255,.45); color: var(--white);
  padding: 10px 28px; min-height: 49px; border-radius: var(--radius-btn);
  font-size: 18px; font-weight: 500; transition: background .2s, border-color .2s;
}
.btn-outline:hover { background: rgba(255,255,255,.08); border-color: var(--white); }
.btn-outline.dark {
  border-color: var(--ink); color: var(--ink);
}
.btn-outline.dark:hover { background: var(--panel); }
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.prose { font-size: 18px; line-height: 1.65; color: var(--ink); max-width: 760px; }
.prose.light { color: var(--muted-light); }
.prose p + p { margin-top: 14px; }
.section-head { margin-bottom: 40px; max-width: 900px; }
.section-head h2 { font-size: clamp(36px, 6vw, 72px); margin-top: 10px; }
.tagline {
  font-size: clamp(18px, 2vw, 24px); font-weight: 500; margin-top: 20px;
  color: var(--white);
}
.hero-slogan {
  font-family: var(--font-display);
  font-size: clamp(18px, 2.6vw, 28px);
  color: #fff;
  margin: 8px 0 12px;
  letter-spacing: .02em;
  text-transform: uppercase;
  max-width: 920px;
}
.hero {
  justify-content: flex-end;
  padding-top: 96px; /* keep hero copy clear of fixed logo */
}
.breadcrumbs {
  display: flex; flex-wrap: wrap; gap: 8px; align-items: center;
  font-size: 14px; color: var(--muted); padding: 100px var(--pad-x) 0;
}
.breadcrumbs a:hover { color: var(--blue); }
.breadcrumbs .sep { opacity: .5; }
.coach-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
}
.coach-card {
  background: var(--panel); border-radius: var(--radius-card); overflow: hidden;
  display: flex; flex-direction: column;
}
.coach-card.dark { background: var(--bg); color: var(--white); }
.coach-card-media { aspect-ratio: 3 / 4; overflow: hidden; background: #111; }
#coaches .coach-card-media {
  width: 60%;
  margin-inline: auto;
}
.coach-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.coach-card-body { padding: 28px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.coach-card-body h3 { font-family: var(--font-display); font-size: 36px; line-height: 1; }
.coach-card-body .role { color: var(--blue); font-weight: 500; font-size: 16px; }
.coach-card.dark .role { color: #7aa0ff; }
.service-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}
.service-tile {
  background: var(--panel); border-radius: 16px; padding: 24px;
  min-height: 180px; display: flex; flex-direction: column; gap: 10px;
  transition: transform .2s;
}
.service-tile:hover { transform: translateY(-3px); }
.service-tile h3 { font-family: var(--font-display); font-size: 24px; line-height: 1.05; }
.service-tile p { font-size: 15px; color: var(--ink); line-height: 1.5; }
.who-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px 24px;
}
.who-grid li {
  position: relative; padding-left: 28px; font-size: 18px; color: var(--ink);
}
.who-grid li::before {
  content: ""; position: absolute; left: 0; top: 8px;
  width: 12px; height: 12px; border-radius: 50%; background: var(--blue);
}
.why-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.why-item {
  padding: 24px; background: var(--panel); border-radius: 16px;
}
.why-item h3 { font-family: var(--font-display); font-size: 28px; margin-bottom: 8px; }
.faq-category { margin-bottom: 36px; }
.faq-category h3 {
  font-family: var(--font-display); font-size: 32px; color: var(--white);
  margin-bottom: 12px;
}
.faq-page .faq-list { border-top: 1px solid rgba(255,255,255,.25); }
.contact-details {
  display: grid; gap: 14px; margin-top: 28px;
}
.contact-details .item {
  padding: 16px 18px; background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.15); border-radius: 10px;
}
.contact-details .label { font-size: 13px; opacity: .7; margin-bottom: 4px; }
.contact-details .value { font-size: 18px; }
.contact-details .value a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.placeholder-note {
  font-size: 13px; color: #f0ad4e; margin-top: 4px;
}
.map-placeholder {
  margin-top: 24px; border-radius: 16px; overflow: hidden;
  background: rgba(255,255,255,.06); border: 1px dashed rgba(255,255,255,.25);
  min-height: 220px; display: flex; align-items: center; justify-content: center;
  color: var(--muted-light); text-align: center; padding: 24px;
}
.steps-row {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px;
}
.steps-row-4 {
  grid-template-columns: repeat(4, 1fr);
}
.step-card {
  background: rgba(255,255,255,.08); border-radius: 16px; padding: 20px;
}
.step-card .num { color: rgba(255,255,255,.7); font-size: 14px; margin-bottom: 8px; }
.step-card h3 { font-family: var(--font-display); font-size: 28px; margin-bottom: 8px; }
.step-card p { font-size: 15px; opacity: .9; }
.content-block { margin-bottom: 48px; }
.content-block h2 { font-size: clamp(32px, 5vw, 56px); margin: 8px 0 16px; }
.content-block h3 { font-family: var(--font-display); font-size: 28px; margin: 24px 0 10px; }
.content-block ul { margin: 12px 0 0; }
.content-block li {
  position: relative; padding: 6px 0 6px 28px; font-size: 17px;
}
.content-block li::before {
  content: ""; position: absolute; left: 0; top: 14px;
  width: 8px; height: 8px; border-radius: 50%; background: var(--blue);
}
.quote-block {
  margin: 32px 0; padding: 28px; border-left: 4px solid var(--blue);
  background: var(--panel); border-radius: 0 12px 12px 0;
  font-size: 22px; font-style: italic; line-height: 1.4;
}
.honeypot { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; overflow: hidden; }
@media (max-width: 1100px) {
  .service-grid { grid-template-columns: 1fr 1fr; }
  .steps-row,
  .steps-row-4 { grid-template-columns: 1fr 1fr; }
  .coach-grid { grid-template-columns: 1fr; }
}
@media (max-width: 809px) {
  .service-grid, .why-list, .who-grid, .steps-row, .steps-row-4 { grid-template-columns: 1fr; }
  .logo-tab img { width: 150px; }
  .breadcrumbs { padding-top: 80px; }
}

/* FAQ on white sections */
.faq-on-light .faq-category h3 { color: var(--ink); }
.faq-on-light .faq-list { border-top-color: rgba(0,0,0,.12); }
.faq-on-light .faq-item { border-bottom-color: rgba(0,0,0,.12); }
.faq-on-light .faq-q { color: var(--ink); }
.faq-on-light .faq-q .icon::before,
.faq-on-light .faq-q .icon::after { background: var(--ink); }
.faq-on-light .faq-a { color: var(--ink); }

/* —— Contrast fixes: dark/blue sections must force light text —— */
.frame-dark,
.frame-blue {
  color: #fff;
}
.frame-dark .prose,
.frame-dark .prose p,
.frame-dark .section-head,
.frame-dark .section-head h2,
.frame-dark .content-block,
.frame-dark .content-block h2,
.frame-dark .content-block h3,
.frame-dark .content-block p,
.frame-dark .content-block li,
.frame-dark li,
.frame-dark p,
.frame-dark .checklist li,
.frame-dark .mini-card p,
.frame-dark .mini-card li,
.frame-dark .who-grid li,
.frame-dark .contact-details .value,
.frame-dark .contact-details .label,
.frame-dark .step-card p,
.frame-dark .step-card h3,
.frame-dark .faq-category h3,
.frame-dark .faq-q,
.frame-dark .faq-a {
  color: #e8e8e8 !important;
}
.frame-dark .display,
.frame-dark h1,
.frame-dark h2,
.frame-dark h3,
.frame-dark .mini-card h3,
.frame-dark .eyebrow {
  color: #ffffff !important;
}
.frame-dark .checklist li::before,
.frame-dark .content-block li::before,
.frame-dark .who-grid li::before {
  background: var(--blue) !important;
}
.frame-dark .faq-q .icon::before,
.frame-dark .faq-q .icon::after {
  background: #fff !important;
}
.frame-dark .faq-list,
.frame-dark .faq-item {
  border-color: rgba(255,255,255,.25) !important;
}

.frame-blue .prose,
.frame-blue .prose p,
.frame-blue .section-head,
.frame-blue .section-head h2,
.frame-blue .content-block,
.frame-blue .content-block h2,
.frame-blue .content-block h3,
.frame-blue .content-block p,
.frame-blue .content-block li,
.frame-blue li,
.frame-blue p,
.frame-blue .checklist li,
.frame-blue .mini-card p,
.frame-blue .mini-card li,
.frame-blue .step-card p,
.frame-blue .step-card h3,
.frame-blue .faq-category h3,
.frame-blue .faq-q,
.frame-blue .faq-a {
  color: rgba(255,255,255,.92) !important;
}
.frame-blue .display,
.frame-blue h1,
.frame-blue h2,
.frame-blue h3,
.frame-blue .mini-card h3,
.frame-blue .eyebrow {
  color: #ffffff !important;
}
.frame-blue .checklist li::before,
.frame-blue .content-block li::before {
  background: #fff !important;
}
.frame-blue .faq-q .icon::before,
.frame-blue .faq-q .icon::after {
  background: #fff !important;
}
.frame-blue .faq-list,
.frame-blue .faq-item {
  border-color: rgba(255,255,255,.3) !important;
}

/* Two-column split sections */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
}
.split.reverse > :first-child { order: 2; }
.split-media {
  border-radius: var(--radius-card);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: #111;
}
.split-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.split-copy .eyebrow { margin-bottom: 10px; }
.split-copy h2 { margin: 8px 0 16px; }
.split-copy .prose { max-width: none; }
.split-copy ul { margin-top: 16px; }
@media (max-width: 900px) {
  .split,
  .split.reverse { grid-template-columns: 1fr; }
  .split.reverse > :first-child { order: 0; }
  .split-media { aspect-ratio: 16 / 10; max-height: 360px; }
}

/* —— Booking modal —— */
.booking-modal {
  position: fixed;
  inset: 0;
  z-index: 400;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .25s ease, visibility .25s ease;
}
.booking-modal.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.booking-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 7, 8, .72);
}
.booking-modal-dialog {
  position: relative;
  z-index: 1;
  width: min(560px, 100%);
  max-height: min(92vh, 900px);
  overflow: auto;
  background: #fff;
  color: var(--ink);
  border-radius: 20px;
  box-shadow: 0 24px 80px rgba(0,0,0,.45);
  padding: 28px 28px 32px;
}
.booking-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  background: #f0f0f2;
  color: #111;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
}
.booking-modal-close:hover { background: #e4e4e8; }
.booking-modal-logo {
  display: flex;
  justify-content: center;
  margin: 4px 0 18px;
}
.booking-modal-logo img {
  width: min(220px, 70%);
  height: auto;
  object-fit: contain;
}
.booking-modal-dialog h2 {
  font-family: "Anton SC", sans-serif;
  font-size: clamp(28px, 4vw, 36px);
  letter-spacing: .02em;
  text-align: center;
  margin: 0 0 8px;
  text-transform: uppercase;
}
.booking-modal-dialog .booking-lead {
  text-align: center;
  color: #555;
  font-size: 14px;
  margin: 0 0 22px;
  line-height: 1.5;
}
.booking-modal .form-grid { gap: 14px; }
.booking-modal .math-challenge {
  display: grid;
  gap: 8px;
  padding: 14px;
  background: #f5f5f7;
  border-radius: 12px;
}
.booking-modal .math-challenge .math-label {
  font-size: 13px;
  font-weight: 600;
  color: #222;
}
.booking-modal .math-challenge .math-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.booking-modal .math-challenge .math-q {
  font-weight: 600;
  font-size: 16px;
  white-space: nowrap;
}
.booking-modal .math-challenge input {
  width: 100px;
  max-width: 100%;
}
.booking-modal .math-error {
  display: none;
  color: #c01616;
  font-size: 13px;
  margin: 0;
}
.booking-modal .math-error.show { display: block; }
.math-challenge {
  display: grid;
  gap: 8px;
  padding: 14px;
  background: #f5f5f7;
  border-radius: 12px;
}
.frame-dark .math-challenge,
.frame-blue .math-challenge {
  background: rgba(255,255,255,.08);
}
.math-challenge .math-label { font-size: 13px; font-weight: 600; }
.math-challenge .math-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.math-challenge .math-q { font-weight: 600; font-size: 16px; }
.math-challenge input { width: 100px; max-width: 100%; }
.math-error {
  display: none;
  color: #c01616;
  font-size: 13px;
  margin: 0;
}
.math-error.show { display: block; }
.frame-dark .math-error,
.frame-blue .math-error { color: #ffb4b4; }

/* —— Floating WhatsApp (stacked above Book in .fixed-cta) —— */
.fixed-cta .wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--blue);
  color: var(--white);
  text-decoration: none;
  font-family: inherit;
  border-radius: var(--radius-btn);
  transition: background .2s ease, transform .2s ease;
}
.fixed-cta .wa-btn:hover { background: #0a2bc0; }
.fixed-cta .wa-icon {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}
.fixed-cta .wa-label-short { display: none; }

@media (max-width: 809px) {
  .fixed-cta .wa-icon {
    width: 12px;
    height: 12px;
  }
  .fixed-cta .wa-label-full { display: none; }
  .fixed-cta .wa-label-short { display: inline; }
  .booking-modal-dialog { padding: 22px 18px 24px; border-radius: 16px; }
}

/* —— Location / Google Maps —— */
.map-embed {
  border-radius: var(--radius-card);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: #111;
  min-height: 280px;
}
.map-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  min-height: 280px;
}
/* Non-contact pages: same width, 40% shorter map */
#location .map-embed {
  aspect-ratio: 4 / 3;
  min-height: 0;
}
#location .map-embed iframe {
  min-height: 0;
}
.maps-link {
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 600;
}
.frame-dark .maps-link,
.frame-blue .maps-link { color: #fff; }
.footer-contact .footer-location {
  margin-top: 8px;
  line-height: 1.45;
}
@media (max-width: 900px) {
  .map-embed { aspect-ratio: 16 / 10; max-height: 360px; }
  #location .map-embed {
    aspect-ratio: 16 / 6;
    max-height: 216px;
  }
}
