:root {
    --bg-canvas: #ffffff;
    --bg-surface: #f4f4f4;
    --bg-subtle: #ececec;
    --bg-contrast: #0a0a0a;
    --bg-contrast-muted: #1a1a1a;
    --fg-base: #0a0a0a;
    --fg-muted: #6b6b6b;
    --fg-on-contrast: #ffffff;
    --fg-on-contrast-muted: #a0a0a0;
    --border-subtle: #e5e5e5;
    --border-on-contrast: #2a2a2a;
    --radius-sm: 8px;
    --radius-md: 16px;
    --nav-h: 65px;
    --xxs: 4px;
    --xs: 8px;
    --sm: 12px;
    --md: 16px;
    --lg: 24px;
    --xl: 32px;
    --2xl: 48px;
    --3xl: 64px;
    --4xl: 80px;
    --5xl: 96px;
    --7xl: 128px;
  }
  * { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
    color: var(--fg-base);
    background: var(--bg-canvas);
    font-size: 18px;
    line-height: 1.4;
    -webkit-font-smoothing: antialiased;
  }
  img, video { display: block; max-width: 100%; }
  a { color: inherit; text-decoration: none; }
  ul { list-style: none; }
  button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
  .container { max-width: 1920px; margin: 0 auto; padding: 0 var(--md); }
  @media (min-width: 768px) { .container { padding: 0 var(--lg); } }
  .topbar { background: var(--bg-contrast); color: var(--fg-on-contrast); font-size: 11px; text-transform: uppercase; letter-spacing: 0.04em; padding: 10px 0; }
  .topbar-inner { display: flex; justify-content: space-between; gap: var(--md); }
  .topbar a { position: relative; }
  .topbar a::after { content: ""; position: absolute; bottom: -2px; left: 0; width: 100%; height: 1px; background: currentColor; transform: scaleX(0); transform-origin: right; transition: transform .3s; }
  .topbar a:hover::after { transform: scaleX(1); transform-origin: left; }
  .topbar-left { display: none; gap: var(--md); }
  .topbar-right { display: flex; gap: var(--md); width: 100%; justify-content: space-between; }
  @media (min-width: 768px) { .topbar-left { display: flex; } .topbar-right { width: auto; justify-content: flex-end; } }
  .nav { position: relative; left: 0; width: 100%; z-index: 50; background: var(--bg-canvas); border-bottom: 1px solid var(--border-subtle); transition: background .3s; }
  .nav-inner { height: var(--nav-h); display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; }
  .nav-logo { font-weight: 700; font-size: 22px; letter-spacing: -0.02em; }
  .nav-logo img { height: 32px; width: auto; display: block; }
  .nav-logo span { color: var(--fg-muted); }
  .nav-links { display: none; gap: var(--lg); align-items: center; justify-self: center; }
  .nav-links a { font-size: 15px; padding: 8px 0; position: relative; transition: opacity .2s; }
  .nav-links a:hover { opacity: 0.6; }
  .nav-links .has-sub::after { content: "▾"; margin-left: 4px; font-size: 10px; opacity: 0.6; }
  .nav-actions { display: flex; align-items: center; gap: var(--md); justify-self: end; grid-column: 3; }
  .nav-burger { width: 28px; height: 18px; position: relative; display: block; }
  .nav-burger span { position: absolute; left: 0; height: 2px; background: currentColor; border-radius: 2px; transition: all .3s; }
  .nav-burger span:nth-child(1) { top: 0; width: 100%; }
  .nav-burger span:nth-child(2) { top: 50%; transform: translateY(-50%); width: 100%; }
  .nav-burger span:nth-child(3) { bottom: 0; left: 0; width: 100%; }
  @media (min-width: 1024px) { .nav-links { display: flex; } .nav-burger { display: none; } }
  .lang { font-size: 13px; display: flex; align-items: center; gap: 6px; }
  .lang .active { text-decoration: underline; text-underline-offset: 3px; }
  .lang .dim { opacity: 0.5; transition: opacity .3s; }
  .lang .dim:hover { opacity: 1; }
  .btn { display: inline-flex; align-items: center; gap: 8px; padding: 12px 22px; border-radius: 999px; font-size: 15px; font-weight: 500; border: 1px solid var(--bg-contrast); transition: all .25s ease; white-space: nowrap; }
  .btn-primary { background: var(--bg-contrast); color: var(--fg-on-contrast); }
  .btn-primary:hover { background: var(--fg-on-contrast); color: var(--bg-contrast); }
  .btn-secondary { background: transparent; color: var(--fg-base); }
  .btn-secondary:hover { background: var(--bg-contrast); color: var(--fg-on-contrast); }
  .btn-light { border-color: rgba(255,255,255,.4); color: #fff; background: transparent; }
  .btn-light:hover { background: #fff; color: #000; border-color: #fff; }
  .btn-large { padding: 16px 28px; font-size: 16px; }
  .btn-ghost { border-color: transparent; }
  .btn-ghost:hover { border-color: currentColor; }
  .btn .arrow { width: 18px; height: 18px; display: inline-flex; align-items: center; justify-content: center; line-height: 1; transition: transform .3s; }
  .btn:hover .arrow { transform: translateX(4px); }
  .hero { position: relative; overflow: hidden; margin-top: calc(var(--nav-h) * -1 - 2px); background: #111; color: #fff; }
  .hero-bg, .hero-bg video, .hero-bg img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
  .hero-bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.62), rgba(0,0,0,.32)); }
  .hero-inner { position: relative; z-index: 1; padding: calc(var(--nav-h) + 60px) var(--md) var(--lg); min-height: 95svh; display: flex; align-items: flex-end; }
  @media (min-width: 768px) { .hero-inner { padding: calc(var(--nav-h) + 40px) var(--3xl) var(--3xl); min-height: 90vh; max-height: 960px; align-items: stretch; } }
  @media (max-width: 767px) { .hero-inner { padding-bottom: 22svh; } }
  .hero-grid { display: grid; gap: var(--lg); width: 100%; grid-template-columns: 1fr; }
  @media (min-width: 768px) { .hero-grid { grid-template-columns: 1fr 1fr; align-items: center; } .hero-grid > div:first-child { align-self: center; } .hero-grid > .schedule-card { align-self: end; } }
  .hero-title { font-size: clamp(48px, 8vw, 120px); line-height: 0.95; letter-spacing: -0.03em; font-weight: 400; max-width: 16ch; margin-bottom: var(--xl); }
  .schedule-card { background: rgba(0,0,0,.85); backdrop-filter: blur(8px); color: #fff; border-radius: var(--radius-md); padding: var(--lg); align-self: end; max-width: 460px; margin-left: auto; width: 100%; }
  .schedule-card h3 { font-size: 14px; font-weight: 500; margin-bottom: var(--md); display: flex; align-items: center; gap: 8px; }
  .schedule-chips { display: flex; flex-wrap: wrap; gap: 8px; }
  .chip { display: inline-flex; align-items: center; gap: 8px; padding: 10px 18px; border-radius: 999px; border: 1px solid rgba(255,255,255,.3); font-size: 14px; font-weight: 500; color: #fff; text-decoration: none; transition: all .2s ease; }
  .chip:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.55); }
  .chip-arrow { font-size: 13px; opacity: 0.75; transition: transform .25s ease; }
  .chip:hover .chip-arrow { transform: translate(2px, -2px); opacity: 1; }
  .schedule-card h3 svg { opacity: .85; flex-shrink: 0; }
  .schedule-card h3 { font-size: 15px; font-weight: 500; }
  .section { padding: var(--7xl) var(--md); }
  @media (min-width: 768px) { .section { padding: var(--5xl) var(--3xl); } }
  .intro { position: relative; text-align: center; }
  .intro-inner { max-width: 720px; margin: 0 auto; }
  .eyebrow { font-size: 12px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--fg-muted); margin-bottom: var(--lg); }
  .intro p { font-size: clamp(20px, 2.4vw, 32px); line-height: 1.3; letter-spacing: -0.02em; max-width: 32ch; margin: 0 auto; }
  .intro-img { display: none; position: absolute; width: 120px; aspect-ratio: 1; border-radius: var(--radius-md); overflow: hidden; }
  @media (min-width: 1024px) { .intro-img { display: block; } }
  .intro-img.left { top: 10%; left: 10%; }
  .intro-img.right { bottom: 10%; right: 10%; }
  .intro-img img { width: 100%; height: 100%; object-fit: cover; }
  .section-head { text-align: center; margin-bottom: var(--3xl); }
  .section-head h2 { font-size: clamp(36px, 5vw, 72px); letter-spacing: -0.03em; line-height: 1; font-weight: 400; }
  .section-head p { margin-top: var(--md); font-size: 18px; color: var(--fg-muted); max-width: 50ch; margin-left: auto; margin-right: auto; }
  .locations-wrap { background: #1a1a1a; border-radius: 6px; overflow: hidden; color: #fff; position: relative; min-height: 480px; }
  .locations-bg { position: absolute; inset: 0; z-index: 0; }
  .locations-bg img { width: 100%; height: 100%; object-fit: cover; object-position: top center; opacity: 1 !important; }
  .locations-bg img.active { opacity: 1; }
  .locations-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr; padding: var(--md); }
  @media (min-width: 1024px) { .locations-grid { grid-template-columns: 1fr 1fr 1fr; padding: var(--3xl) var(--xl); min-height: 720px; align-items: end; } }
  .locations-list { background: #000; border-radius: 2px; padding: var(--md); }
  @media (min-width: 1024px) { .locations-list { grid-column: 1; padding: var(--xl); background: #000; border-radius: 2px; backdrop-filter: none; } }
  .loc-item { border-bottom: 1px solid rgba(255,255,255,.1); }
  .loc-item:last-child { border-bottom: 0; }
  .loc-head { display: flex; justify-content: space-between; align-items: center; padding: var(--sm) 0; cursor: pointer; }
  .loc-head h3 { font-size: 28px; font-weight: 400; letter-spacing: -0.02em; }
  .loc-toggle { width: 24px; height: 24px; position: relative; }
  .loc-toggle::before, .loc-toggle::after { content: ""; position: absolute; background: #fff; border-radius: 1px; top: 50%; left: 50%; transform: translate(-50%, -50%); }
  .loc-toggle::before { width: 14px; height: 2px; }
  .loc-toggle::after { width: 2px; height: 14px; transition: transform .3s; }
  .loc-item.open .loc-toggle::after { transform: translate(-50%, -50%) scaleY(0); }
  .loc-body { max-height: 0; overflow: hidden; transition: max-height .4s ease; }
  .loc-item.open .loc-body { max-height: 400px; padding-bottom: var(--md); }
  .loc-body p { font-size: 18px; line-height: 1.5; opacity: 0.85; margin-bottom: var(--md); }
  .loc-addr { font-size: 13px; opacity: 0.7; margin-bottom: var(--md); }
  .classes-track { display: flex; gap: 4px; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: var(--lg); scrollbar-width: thin; }
  .classes-track::-webkit-scrollbar { height: 4px; }
  .classes-track::-webkit-scrollbar-thumb { background: #000; border-radius: 2px; }
  .classes-track::-webkit-scrollbar-track { background: var(--border-subtle); }
  .class-card { flex: 0 0 80%; max-width: 480px; aspect-ratio: 444/555; border-radius: var(--radius-md); background: #1a1a1a; color: #fff; padding: var(--lg); position: relative; overflow: hidden; display: flex; flex-direction: column; justify-content: space-between; scroll-snap-align: start; }
  @media (min-width: 768px) { .class-card { flex-basis: 36%; } }
  .class-card::before { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.6), rgba(0,0,0,0)); z-index: 1; }
  .class-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; transition: transform 1.5s; }
  .class-card:hover img { transform: scale(1.05); }
  .class-card .num, .class-card h3 { position: relative; z-index: 2; }
  .class-card .num { width: 32px; height: 32px; border-radius: 50%; background: rgba(255,255,255,.15); backdrop-filter: blur(8px); display: inline-flex; align-items: center; justify-content: center; font-size: 13px; }
  .class-card h3 { font-size: 22px; font-weight: 400; letter-spacing: -0.02em; }
  .center { display: flex; justify-content: center; margin-top: var(--3xl); }
  .memberships-wrap { background: var(--bg-surface); border-radius: var(--radius-md); padding: var(--7xl) var(--md); }
  @media (min-width: 768px) { .memberships-wrap { padding: var(--7xl) var(--xl); } }
  .mem-list { display: flex; flex-direction: column; gap: 4px; max-width: 1080px; margin: var(--3xl) auto 0; }
  .mem-card { background: var(--bg-canvas); border-radius: var(--radius-md); padding: var(--xs); cursor: pointer; display: grid; grid-template-columns: 1fr; gap: var(--md); }
  @media (min-width: 768px) { .mem-card { grid-template-columns: 8fr 2fr; gap: var(--lg); } }
  .mem-info { display: flex; padding: var(--md); gap: var(--md); }
  .mem-icon { width: 56px; height: 56px; border-radius: var(--radius-sm); background: var(--bg-contrast); color: #fff; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 24px; }
  .mem-text h3 { font-size: 26px; margin-bottom: 10px; font-weight: 400; letter-spacing: -0.02em; }
  .mem-text p { font-size: 17px; color: var(--fg-muted); line-height: 1.55; }
  .mem-text p + p { margin-top: 8px; }
  .mem-price { background: var(--bg-subtle); border-radius: var(--radius-sm); padding: var(--lg); display: flex; flex-direction: column; align-items: flex-end; justify-content: center; text-align: right; position: relative; }
  .mem-price .amount { font-size: 32px; letter-spacing: -0.02em; font-weight: 400; }
  .mem-price .period { font-size: 13px; color: var(--fg-muted); }
  .badge { position: absolute; top: -8px; right: 16px; background: linear-gradient(135deg, #2994ff, #863eec); color: #fff; font-size: 11px; font-weight: 600; padding: 6px 12px; border-radius: 4px; text-transform: uppercase; letter-spacing: 0.05em; transform: rotate(-4deg); }
  .newsletter { text-align: center; padding: var(--7xl) var(--md); max-width: 700px; margin: 0 auto; }
  .newsletter-icon { width: 80px; height: 80px; border-radius: 50%; background: var(--bg-surface); display: flex; align-items: center; justify-content: center; margin: 0 auto var(--xl); font-size: 28px; }
  .newsletter h2 { font-size: clamp(36px, 5vw, 56px); font-weight: 400; letter-spacing: -0.03em; }
  .newsletter > p { color: var(--fg-muted); font-size: 18px; margin-top: var(--md); }
  .form-grid { display: grid; gap: var(--md); grid-template-columns: 1fr; margin-top: var(--3xl); text-align: left; }
  @media (min-width: 768px) { .form-grid { grid-template-columns: 1fr 1fr; } }
  .input { width: 100%; padding: 18px 20px; border: 1px solid var(--border-subtle); border-radius: 999px; font: inherit; background: #fff; transition: border-color .2s; }
  .input:focus { outline: none; border-color: var(--bg-contrast); }
  .marquee { overflow: hidden; padding: var(--7xl) 0; white-space: nowrap; }
  .marquee-track { display: inline-flex; gap: var(--xl); align-items: center; animation: scroll 100s linear infinite; font-size: clamp(48px, 9vw, 120px); letter-spacing: -0.02em; line-height: 1; will-change: transform; transform: translate3d(0,0,0); backface-visibility: hidden; }
  .marquee-track picture, .marquee-track img { width: 60px; height: 60px; border-radius: 6px; object-fit: cover; flex-shrink: 0; display: inline-block; }
  .marquee-track picture img { width: 100% !important; height: 100% !important; object-fit: cover; display: block; }
  @media (min-width: 768px) { .marquee-track picture, .marquee-track img { width: 120px; height: 120px; } }
  @keyframes scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
  footer { padding: 0; }
  .footer-top { background: var(--bg-contrast); color: #fff; border-radius: 5px 5px 0 0; margin: 0 var(--lg) 0; padding: var(--lg) var(--md); display: flex; justify-content: space-between; align-items: center; }
  @media (min-width: 768px) { .footer-top { padding: var(--lg) var(--3xl); } }
  .footer-logo { font-size: 32px; font-weight: 700; letter-spacing: -0.02em; }
  .footer-motto { display: none; font-size: 18px; }
  @media (min-width: 768px) { .footer-motto { display: block; } }
  .footer-main { background: var(--bg-contrast); color: #fff; border-radius: 0; margin: 0; padding: var(--3xl) var(--md) var(--xl); }
  @media (min-width: 768px) { .footer-main { padding: calc(var(--3xl) + var(--xl)) var(--3xl) var(--xl); } }
  .footer-grid { display: grid; gap: 22px; grid-template-columns: 1fr; }
  @media (min-width: 768px) { .footer-grid { grid-template-columns: repeat(3, max-content); gap: 160px; } }
  .footer-col h4 { font-size: 12px; text-transform: uppercase; letter-spacing: 0.05em; color: var(--fg-on-contrast-muted); margin-bottom: var(--md); font-weight: 500; }
  .footer-col ul { display: flex; flex-direction: column; gap: 8px; }
  .footer-col a:hover { text-decoration: underline; }
  .footer-hours { display: flex; flex-direction: column; gap: var(--xl); }
  .footer-hours p { color: var(--fg-on-contrast-muted); font-size: 14px; }
  .footer-bottom { margin-top: calc(var(--3xl) + var(--xl)); padding-top: calc(var(--xl) + var(--md)); padding-bottom: var(--md); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: var(--md); }
  .footer-socials { display: flex; gap: 8px; }
  .footer-copy { padding: var(--md); font-size: 12px; color: var(--fg-muted); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; }
  .hidden-mobile { display: none; }
  @media (min-width: 768px) { .hidden-mobile { display: inline-flex; } }
  body, .nav, .btn, .schedule-card, h1, h2, h3, h4, .hero-title, .section-head h2 { font-family: 'Manrope', -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif; }
  .hero-title { font-weight: 400; font-size: clamp(40px, 6vw, 96px); line-height: 1.0; letter-spacing: -0.025em; max-width: none; margin-bottom: var(--xl); }
  @media (min-width: 1024px) { .hero-title { font-size: clamp(36px, 3.8vw, 88px); white-space: nowrap; } }
  .hero-bg video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
  @media (prefers-reduced-motion: reduce) { .hero-bg video { display: none; } }
  .nav.nav-hero { background: transparent; border-bottom: 1px solid rgba(255,255,255,0.15); color: #fff; transition: background .3s ease, color .3s ease, border-color .3s ease; }
  .nav.nav-hero .nav-logo, .nav.nav-hero .nav-links a, .nav.nav-hero .lang, .nav.nav-hero .lang .active { color: #fff; }
  .nav.nav-hero .nav-logo span, .nav.nav-hero .lang .dim { color: rgba(255,255,255,0.55); }
  .nav.nav-hero .btn.btn-primary { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.4); color: #fff; backdrop-filter: blur(8px); }
  .nav.nav-hero .btn.btn-primary:hover { background: #fff; color: #000; border-color: #fff; }
  .nav.nav-hero .nav-burger span { background: #fff; }
  .nav.nav-hero.solid { background: var(--bg-canvas); border-bottom: 1px solid var(--border-subtle); color: var(--fg-base); }
  .nav.nav-hero.solid .nav-logo, .nav.nav-hero.solid .nav-links a, .nav.nav-hero.solid .lang, .nav.nav-hero.solid .lang .active { color: var(--fg-base); }
  .nav.nav-hero.solid .nav-logo span, .nav.nav-hero.solid .lang .dim { color: var(--fg-muted); }
  .nav.nav-hero.solid .btn.btn-primary { background: var(--bg-contrast); color: var(--fg-on-contrast); border-color: var(--bg-contrast); }
  .nav.nav-hero.solid .nav-burger span { background: currentColor; }
  .nav.nav-hero.solid .nav-logo img { filter: invert(1); }
  .btn-circle-pill { position: relative; display: inline-block; text-decoration: none; font-weight: 500; font-size: 17px; color: #fff; }
  .btn-circle-pill .pill { display: inline-flex; align-items: center; justify-content: center; height: 64px; padding: 0 48px; border-radius: 999px; background: #39FF14; border: none; color: #0a0a0a; font-weight: 600; letter-spacing: -0.01em; }
  .btn-circle-pill .circle { display: none; }
  .btn-circle-pill .circle svg { width: 24px; height: 24px; stroke: currentColor; stroke-width: 1.5; fill: none; }
  .btn-circle-pill:hover .pill { background: #2fe00f; color: #0a0a0a; }
  .btn-circle-pill:hover .circle { left: calc(100% - 74px); }
  .schedule-card { background: #0a0a0a !important; backdrop-filter: none; -webkit-backdrop-filter: none; border: none; border-radius: 18px; padding: var(--xl) var(--lg); }
  .schedule-card .chip { background: transparent; font-weight: 500; border: 1px solid rgba(255,255,255,0.28); }
  .schedule-card .chip:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.6); }
  .schedule-card h3 { font-size: 16px; }
  .trainers-section { background: var(--bg-canvas); padding-top: 0; margin-top: 0; }
  .trainers-section .section-head { margin-bottom: var(--3xl); }
  .trainers-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4px; max-width: 960px; margin: 0 auto; }
  @media (max-width: 600px) { .trainers-grid { grid-template-columns: 1fr; } }
  .trainer-card { position: relative; border-radius: var(--radius-md); overflow: hidden; background: #1a1a1a; aspect-ratio: 8/9; }
  .trainer-card img { width: 100%; height: 100%; object-fit: cover; object-position: top center; display: block; transition: transform 1.2s; }
  .trainer-card:hover img { transform: scale(1.03); }
  .trainer-info { position: absolute; bottom: 0; left: 0; right: 0; padding: var(--xl) var(--lg); background: linear-gradient(to top, rgba(0,0,0,.65) 0%, rgba(0,0,0,0) 100%); }
  .trainer-info h3 { font-size: 32px; font-weight: 400; letter-spacing: -0.02em; color: #fff; }
  .trainer-role { color: rgba(255,255,255,.65); font-size: 14px; margin-top: 4px; }
  .trainer-info p { color: rgba(255,255,255,0.75); margin-top: 6px; font-size: 16px; line-height: 1.4; }
  .cms-card > h1:first-child { display: none; }
  .objections-section { padding: var(--2xl) 0; }
  .objections-list { display: flex; flex-direction: row; overflow-x: scroll; scroll-snap-type: x mandatory; scroll-behavior: smooth; -webkit-overflow-scrolling: touch; scrollbar-width: none; border-radius: 12px; cursor: grab; user-select: none; }
  .objections-list::-webkit-scrollbar { display: none; }
  .objections-list.is-dragging { cursor: grabbing; scroll-behavior: auto; }
  .objection { flex: 0 0 100%; scroll-snap-align: start; display: grid; grid-template-columns: 1fr; gap: var(--xl); align-items: center; padding: var(--md) 0; box-sizing: border-box; }
  @media (min-width: 768px) { .objection { grid-template-columns: 5fr 6fr; gap: var(--4xl); padding: var(--lg) var(--lg); } }
  .objection-img-nav { display: flex; align-items: center; gap: var(--md); }
  .objection-img { flex: 1; border-radius: 6px; overflow: hidden; min-width: 0; position: relative; }
  .objection-img::before { content: ''; display: block; padding-top: 75%; }
  .objection-img img { position: absolute; inset: 0; width: 100%; height: 100%; display: block; object-fit: cover; object-position: center center; pointer-events: none; }
  .objection-num { display: inline-block; font-size: 13px; letter-spacing: 0.12em; color: var(--fg-muted); margin-bottom: 18px; font-feature-settings: "tnum"; font-weight: 500; }
  .objection-text h3 { font-size: clamp(24px, 2.4vw, 32px); line-height: 1.15; letter-spacing: -0.02em; font-weight: 400; color: var(--fg-base); margin-bottom: var(--lg); }
  .objection-text p { font-size: 17px; line-height: 1.65; color: var(--fg-muted); }
  .obj-btn { width: 38px; height: 38px; border-radius: 50%; border: 1.5px solid #ddd; background: #fff; color: #111; font-size: 15px; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background .15s, border-color .15s, transform .1s; line-height: 1; flex-shrink: 0; }
  .obj-btn:hover { background: #f5f5f5; border-color: #aaa; }
  .obj-btn:active { transform: scale(0.93); }
  .obj-dots { display: flex; justify-content: flex-start; gap: 10px; margin-top: 0; }
  .obj-dot { width: 8px; height: 8px; border-radius: 50%; border: none; background: var(--border-base, #ddd); cursor: pointer; padding: 0; transition: background 0.2s, transform 0.2s; }
  .obj-dot--active { background: var(--fg-base, #111); transform: scale(1.4); }
  .obj-controls { display: flex; justify-content: space-between; align-items: center; margin-top: var(--lg); }
  .obj-arrows { display: flex; gap: 8px; }
  .obj-img-btn { display: none; }
  @media (min-width: 768px) {
    .obj-btn { background: #0a0a0a; color: #fff; border: 1.5px solid #0a0a0a; }
    .obj-btn:hover { background: #1a1a1a; border-color: #1a1a1a; }
    .obj-dots { display: none; }
    .obj-arrows { display: none; }
    .obj-controls { justify-content: flex-end; }
    .objection-img { overflow: visible; }
    .objection-img img { border-radius: 5px; }
    .obj-img-btn { display: flex; position: absolute; z-index: 3; top: 50%; transform: translateY(-50%); }
    .obj-img-btn.obj-prev { left: var(--md); }
    .obj-img-btn.obj-next { right: var(--md); }
    .obj-img-btn:active { transform: translateY(-50%); }
  }
  @media (max-width: 767px) { .objection-text h3 { font-size: 22px; } }

/* === Booking form – site-wide === */
.newsletter { max-width: none; padding: var(--7xl) var(--md); text-align: center; border-top: none; margin: 0; }
.booking-head { max-width: 960px; margin: 0 auto var(--3xl); }
.booking-head h2 { font-size: clamp(36px,5vw,56px); font-weight: 400; letter-spacing: -0.03em; }
.booking-form-area { max-width: 1100px; margin: 0 auto; }
.booking-form-area form { max-width: 520px; margin: 0 auto; font-family: inherit; }
.newsletter form .input, .newsletter .goal-label, .newsletter .goal-options label { font-family: inherit; font-size: 15px; font-weight: 500; letter-spacing: 0; line-height: 1.4; }
.newsletter form .input { color: #000; background: #fff; border: 1.5px solid #b0b0b0; }
.newsletter form .input::placeholder { color: #000; opacity: .5; font-weight: 500; }
.newsletter form .input:focus { border-color: #000; outline: none; }
.newsletter form button.btn-primary { background: #000 !important; color: #fff !important; border-color: #000 !important; }
.newsletter form button.btn-primary .arrow { display: inline-block; transition: transform .3s ease; }
.newsletter form button.btn-primary:hover .arrow { transform: translateX(6px); }
.newsletter .goal-field { grid-column: 1/-1; display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 6px 4px; flex-wrap: wrap; }
.newsletter .goal-label { color: #000; opacity: .5; text-align: left; flex: 1 1 auto; }
.newsletter .goal-options { display: flex; gap: 8px; flex: 0 0 auto; }
.newsletter .goal-options input[type=radio] { position: absolute; opacity: 0; width: 0; height: 0; }
.newsletter .goal-options label { display: flex; align-items: center; justify-content: center; padding: 10px 24px; border: 1.5px solid #b0b0b0; border-radius: 999px; color: #000; cursor: pointer; transition: background .15s,border-color .15s,color .15s; background: #fff; min-width: 64px; }
.newsletter .goal-options label:hover { border-color: #000; }
.newsletter .goal-options input[type=radio]:checked + label { background: #000; border-color: #000; color: #fff; opacity: 1; }
.booking-iframe-wrap { width: 100%; margin: 32px 0 0; padding: 0; }
.booking-iframe-wrap iframe { width: 100%; height: 900px; display: block; border: none; border-radius: 0; background: #fff; }
@media (min-width: 768px) { .booking-iframe-wrap { margin: 40px auto 0; padding: 0 24px; } .booking-iframe-wrap iframe { border-radius: 12px; height: 820px; } }

/* === Services page === */
.services-list { display: flex; flex-direction: column; gap: 4px; max-width: 1080px; margin: 0 auto; }
.service-card { display: grid; grid-template-columns: 1fr; gap: var(--lg); padding: var(--xl); border-radius: var(--radius-md); background: var(--bg-surface); }
@media (min-width: 768px) { .service-card { grid-template-columns: 60px 1fr 180px; align-items: start; } }
.service-num { font-size: 12px; letter-spacing: 0.1em; color: var(--fg-muted); padding-top: 8px; font-weight: 500; text-transform: uppercase; }
.service-body h3 { font-size: clamp(22px,2.8vw,32px); font-weight: 400; letter-spacing: -0.02em; margin-bottom: var(--md); }
.service-body > p { font-size: 17px; line-height: 1.65; color: var(--fg-muted); }
.service-body ul { margin-top: var(--md); display: flex; flex-direction: column; gap: 8px; list-style: none; }
.service-body li { font-size: 15px; color: var(--fg-muted); padding-left: 20px; position: relative; line-height: 1.5; }
.service-body li::before { content: "\2014"; position: absolute; left: 0; opacity: 0.4; }
.service-price { display: flex; flex-direction: column; align-items: flex-start; padding-top: 4px; }
@media (min-width: 768px) { .service-price { align-items: flex-end; text-align: right; } }
.service-price .from { font-size: 12px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--fg-muted); }
.service-price .amount { font-size: 28px; font-weight: 400; letter-spacing: -0.02em; margin-top: 2px; display: block; }

/* === Locations (Prague districts) === */
.prague-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4px; max-width: 1080px; margin: 0 auto; }
@media (min-width: 768px) { .prague-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .prague-grid { grid-template-columns: repeat(4, 1fr); } }
.prague-card { background: var(--bg-surface); border-radius: var(--radius-md); padding: var(--xl) var(--lg); }
.prague-card h3 { font-size: 20px; font-weight: 400; letter-spacing: -0.02em; margin-bottom: var(--xs); }
.prague-card p { font-size: 14px; color: var(--fg-muted); line-height: 1.5; }

/* === Dark page header === */
.page-header { background: #0b0b0c; color: #fff; margin-top: calc(var(--nav-h) * -1 - 2px); padding: calc(var(--nav-h) + var(--7xl)) var(--md) var(--5xl); text-align: center; }
@media (min-width: 768px) { .page-header { padding: calc(var(--nav-h) + var(--7xl)) var(--3xl) var(--5xl); } }
.page-header .eyebrow { color: rgba(255,255,255,0.45); }
.page-header p.lead { font-size: clamp(24px,3vw,42px); line-height: 1.15; letter-spacing: -0.025em; color: #fff; max-width: 22ch; margin: 0 auto; font-weight: 400; }

/* === Mobile nav drawer – full-screen === */
.nav-close { display: none; align-items: center; justify-content: center; width: 44px; height: 44px; font-size: 0; line-height: 1; color: #fff; padding: 0; background: transparent; border: 0; position: relative; z-index: 51; cursor: pointer; }
.nav-close::before, .nav-close::after { content: ""; position: absolute; top: 50%; left: 50%; width: 24px; height: 2px; background: currentColor; border-radius: 2px; transform-origin: center; }
.nav-close::before { transform: translate(-50%, -50%) rotate(45deg); }
.nav-close::after { transform: translate(-50%, -50%) rotate(-45deg); }
@keyframes menu-fade-in { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: translateY(0); } }
@media (max-width: 1023px) {
  .nav.nav-open .nav-close { display: flex; }
  .nav.nav-open .nav-burger { display: none; }
  .nav.nav-open .nav-links { display: flex; flex-direction: column; position: fixed; inset: 0; left: 0 !important; right: 0 !important; width: 100vw !important; max-width: 100vw !important; z-index: 49; background: #0a0a0a; align-items: center; justify-content: center; gap: 0; padding: var(--nav-h) var(--xl) var(--4xl); border: none; box-shadow: none; animation: menu-fade-in .22s ease forwards; }
  .nav.nav-open .nav-links a { display: block; font-size: clamp(34px, 9vw, 52px); font-weight: 400; letter-spacing: -0.025em; color: #fff !important; padding: 16px 0; border-radius: 0; text-align: center; width: 100%; max-width: 380px; border-bottom: 1px solid rgba(255,255,255,0.06); transition: color .15s; background: transparent; }
  .nav.nav-open .nav-links a:last-child { border-bottom: none; }
  .nav.nav-open .nav-links a:hover { color: #fff !important; background: transparent; opacity: 1; }
  .nav.nav-open { background: #0a0a0a !important; border-bottom-color: rgba(255,255,255,0.08) !important; color: #fff !important; }
  .nav.nav-open .nav-logo img { filter: none !important; }
  .nav.nav-open .nav-burger span { background: #fff !important; }
  .nav.nav-open .nav-menu-cta { display: inline-flex !important; align-items: center; justify-content: center; padding: 14px 36px !important; border-radius: 999px !important; border: 1px solid rgba(255,255,255,0.25) !important; background: transparent !important; color: rgba(255,255,255,0.8) !important; font-size: 15px !important; font-weight: 500 !important; letter-spacing: 0 !important; margin-top: var(--xl); width: auto !important; max-width: none !important; }
  .nav.nav-open .nav-links .nav-menu-cta:hover { color: #fff !important; border-color: rgba(255,255,255,0.6) !important; }
}
@media (min-width: 1024px) {
  .nav.nav-open .nav-links { display: flex; flex-direction: row; position: static; border: none; padding: 0; box-shadow: none; background: transparent; animation: none; justify-content: center; gap: var(--lg); }
  .nav.nav-open .nav-links a { font-size: 15px; padding: 8px 0; border-radius: 0; border-bottom: none; max-width: none; width: auto; color: inherit !important; font-weight: inherit; letter-spacing: inherit; }
  .nav.nav-open .nav-links a:hover { background: none; opacity: 0.6; color: inherit !important; }
  .nav-menu-cta { display: none !important; }
}
.nav-burger--open span:nth-child(1) { top: 50%; transform: translateY(-50%) rotate(45deg); }
.nav-burger--open span:nth-child(2) { opacity: 0; }
.nav-burger--open span:nth-child(3) { bottom: 50%; width: 100%; left: 0; transform: translateY(50%) rotate(-45deg); }

/* === About – bio + stats === */
.bio-grid { display: grid; grid-template-columns: 1fr; gap: var(--3xl); max-width: 1080px; margin: 0 auto; align-items: start; }
@media (min-width: 768px) { .bio-grid { grid-template-columns: 340px 1fr; } }
.bio-img { border-radius: var(--radius-md); overflow: hidden; aspect-ratio: 3/4; }
.bio-img img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.bio-text h2 { font-size: clamp(32px,4vw,52px); font-weight: 400; letter-spacing: -0.025em; line-height: 1.05; margin-bottom: var(--xl); }
.bio-text p { font-size: 17px; line-height: 1.7; color: var(--fg-muted); }
.bio-text p + p { margin-top: var(--md); }
.bio-creds { display: flex; flex-wrap: wrap; gap: 8px; margin-top: var(--xl); }
.bio-cred { font-size: 13px; padding: 7px 14px; border: 1px solid var(--border-subtle); border-radius: 999px; color: var(--fg-muted); }
.stats-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 4px; }
@media (min-width: 768px) { .stats-row { grid-template-columns: repeat(4, 1fr); } }
.stat-item { background: var(--bg-surface); border-radius: var(--radius-md); padding: var(--xl) var(--lg); }
.stat-num { font-size: clamp(36px,4vw,52px); font-weight: 400; letter-spacing: -0.03em; line-height: 1; }
.stat-label { font-size: 14px; color: var(--fg-muted); margin-top: var(--xs); line-height: 1.4; }
.media-strip { display: flex; flex-wrap: wrap; gap: 6px var(--md); align-items: center; justify-content: center; margin-top: var(--3xl); padding-top: var(--xl); border-top: 1px solid var(--border-subtle); }
.media-strip span { font-size: 12px; color: var(--fg-muted); letter-spacing: 0.08em; text-transform: uppercase; }

/* === Services – how it works steps === */
.steps-list { display: flex; flex-direction: column; gap: 4px; max-width: 800px; margin: 0 auto; }
.step-item { display: grid; grid-template-columns: 48px 1fr; gap: var(--lg); padding: var(--xl) var(--lg); border-radius: var(--radius-md); background: var(--bg-surface); align-items: start; }
.step-num { font-size: 12px; letter-spacing: 0.1em; color: var(--fg-muted); font-weight: 500; text-transform: uppercase; padding-top: 5px; }
.step-body h3 { font-size: 20px; font-weight: 400; letter-spacing: -0.02em; margin-bottom: 6px; }
.step-body p { font-size: 16px; line-height: 1.6; color: var(--fg-muted); }

/* === Trainers page – full bio card (photo + body in one unit) === */
.trainer-bios { display: grid; grid-template-columns: 1fr; gap: var(--xl); max-width: 1080px; margin: 0 auto; }
@media (min-width: 768px) { .trainer-bios { grid-template-columns: 1fr 1fr; gap: var(--lg); } }
.trainer-bio-card { background: var(--bg-surface); border-radius: var(--radius-md); overflow: hidden; display: flex; flex-direction: column; }
.trainer-bio-photo { overflow: hidden; line-height: 0; }
.trainer-bio-photo img { width: 100%; height: auto; display: block; transition: transform 1.2s ease; }
.trainer-bio-card:hover .trainer-bio-photo img { transform: scale(1.03); }
.trainer-bio-body { padding: var(--xl) var(--lg) var(--2xl); }
@media (min-width: 768px) { .trainer-bio-body { padding: var(--2xl) var(--xl); } }
.trainer-bio-body h3 { font-size: clamp(28px, 3vw, 36px); font-weight: 400; letter-spacing: -0.025em; line-height: 1.05; margin-bottom: 6px; }
.trainer-bio-role { font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--fg-muted); font-weight: 500; margin-bottom: var(--lg); }
.trainer-bio-body p { font-size: 16px; line-height: 1.7; color: var(--fg-muted); }
.trainer-bio-body p + p { margin-top: var(--md); }
@media (max-width: 767px) {
  .trainer-bios { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; gap: var(--md); max-width: none; margin-left: calc(50% - 50vw); margin-right: calc(50% - 50vw); padding: 0 var(--md) var(--lg); scrollbar-width: none; scroll-padding-left: var(--md); }
  .trainer-bios::-webkit-scrollbar { display: none; }
  .trainer-bio-card { flex: 0 0 85vw; scroll-snap-align: start; min-width: 0; }
  .trainer-bio-photo img { height: 280px; object-fit: cover; object-position: top center; }
}

/* === Nav: solid earlier on scroll, site-wide (mirrors .nav.nav-hero.solid) === */
body.nav-scrolled .nav.nav-hero { background: var(--bg-canvas); border-bottom: 1px solid var(--border-subtle); color: var(--fg-base); }
body.nav-scrolled .nav.nav-hero .nav-logo,
body.nav-scrolled .nav.nav-hero .nav-links a,
body.nav-scrolled .nav.nav-hero .lang,
body.nav-scrolled .nav.nav-hero .lang .active { color: var(--fg-base); }
body.nav-scrolled .nav.nav-hero .nav-logo span,
body.nav-scrolled .nav.nav-hero .lang .dim { color: var(--fg-muted); }
body.nav-scrolled .nav.nav-hero .btn.btn-primary { background: var(--bg-contrast); color: var(--fg-on-contrast); border-color: var(--bg-contrast); backdrop-filter: none; }
body.nav-scrolled .nav.nav-hero .nav-burger span { background: currentColor; }
body.nav-scrolled .nav.nav-hero .nav-logo img { filter: invert(1); }

/* === Sync nav text + logo + CTA color fade with background (so they fade together, no black-on-video flash) === */
.nav.nav-hero .nav-logo,
.nav.nav-hero .nav-logo span,
.nav.nav-hero .nav-links a,
.nav.nav-hero .lang,
.nav.nav-hero .lang .active,
.nav.nav-hero .lang .dim,
.nav.nav-hero .nav-burger span {
  transition: color .4s ease, background .4s ease, border-color .4s ease;
}
.nav.nav-hero .nav-logo img {
  transition: filter .4s ease;
}
.nav.nav-hero .btn.btn-primary {
  transition: background .4s ease, color .4s ease, border-color .4s ease, backdrop-filter .4s ease;
}

/* ===================================================================
   MOBILE RESPONSIVENESS IMPROVEMENTS
   All fixes are additive – desktop layout is untouched above 768px.
   =================================================================== */

/* 1. Reduce heavy spacing tokens on mobile – fixes section/newsletter/marquee/page-header
      padding everywhere, including inline <style> blocks that use var(--7xl) */
@media (max-width: 767px) {
  :root {
    --7xl: 56px;
    --5xl: 44px;
  }
}
@media (max-width: 479px) {
  :root {
    --7xl: 40px;
    --5xl: 32px;
  }
}

/* 2. Mobile layout fixes (< 768px) */
@media (max-width: 767px) {

  /* Hero title – lower clamp floor so it doesn't overflow on 320–375px phones */
  .hero-title { font-size: clamp(26px, 7.5vw, 44px); white-space: normal; }

  /* btn-circle-pill – the rolling-circle CTA is unusable on mobile;
     convert to a simple full-width pill button */
  .btn-circle-pill { display: block; max-width: 380px; }
  .btn-circle-pill .circle { display: none; }
  .btn-circle-pill .pill {
    height: auto;
    padding: 14px 28px;
    font-size: 15px;
    width: 100%;
    box-sizing: border-box;
    border-radius: 999px;
    background: #39FF14;
    border: none;
    color: #0a0a0a;
    font-weight: 600;
    justify-content: center;
    letter-spacing: -0.01em;
  }
  .btn-circle-pill:hover .pill { background: #2fe00f; color: #0a0a0a; border-color: #2fe00f; }

  /* Schedule card inside hero – hidden on mobile; duplicate below hero shows instead */
  .hero .schedule-card { display: none; }

  /* Locations – show background image above the list on mobile
     (on desktop the list overlaps 1/3 of the image; on mobile it covers it entirely) */
  .locations-wrap { display: flex; flex-direction: column; min-height: 0; }
  .locations-bg { position: relative; height: 200px; overflow: hidden; flex-shrink: 0; }
  .locations-grid { position: static; padding: 0; }
  .locations-list { border-radius: 0; }
  .loc-head h3 { font-size: 20px; }

  /* Section-head bottom margin – 64px is heavy on mobile */
  .section-head { margin-bottom: var(--xl); }

  /* Trainer info overlay – 32px heading is too large in the card on mobile */
  .trainer-info h3 { font-size: 24px; }
  .trainer-info { padding: var(--lg) var(--md); }

  /* Membership pricing – right-align looks odd when stacked below content on mobile */
  .mem-price { align-items: flex-start; text-align: left; }
  .badge { right: auto; left: 16px; }
  .mem-list { margin-top: var(--xl); }

  /* Footer – full width, flush to edges on mobile */
  footer { background: var(--bg-contrast); }
  .footer-top { margin: 0; border-radius: 0; }
  .footer-main { margin: 0; border-radius: 0; }
  .footer-copy { color: var(--fg-on-contrast-muted); }

  /* Class cards – slightly wider on mobile */
  .class-card { flex-basis: 88%; }

  /* Step items – reduce horizontal padding */
  .step-item { padding: var(--lg) var(--md); }

  /* Stat boxes – reduce padding */
  .stat-item { padding: var(--lg) var(--md); }

  /* Booking goal row – stack vertically on narrow screens */
  .newsletter .goal-field { flex-direction: column; align-items: flex-start; gap: 8px; }

  /* Booking form – allow full width on mobile */
  .booking-form-area form { max-width: 100%; }

  /* Booking headline – tighten gap to form on mobile */
  .booking-head { margin-bottom: 0; }
  .newsletter .form-grid { margin-top: var(--md); }

  /* Hide footer-top logo strip on mobile – go straight into main footer */
  .footer-top { display: none; }

  /* Trainers headline – bring closer to photos on mobile + bump size */
  .trainers-section .section-head { margin-bottom: var(--sm); }
  .trainers-section .section-head h2 { font-size: 44px; line-height: 1.05; }
}

/* 3. Extra-small screens (< 480px) */
@media (max-width: 479px) {

  /* Prague district grid – single column on tiny screens */
  .prague-grid { grid-template-columns: 1fr; }

  /* Membership cards – stack icon and text vertically */
  .mem-info { flex-direction: column; }
  .mem-icon { width: 44px; height: 44px; font-size: 20px; }

  /* Topbar – tighten up at tiny widths */
  .topbar-right { font-size: 10px; gap: var(--xs); }
}

/* === Services card below hero – shown on mobile, hidden on desktop === */
.schedule-card-below { display: none; }
@media (max-width: 767px) {
  .schedule-card-below { display: block; background: #0a0a0a; padding: var(--lg); }
}
/* === Trainers – horizontal scroll slider on mobile === */
@media (max-width: 767px) {
  .trainers-grid { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; gap: var(--md); max-width: none; margin-left: calc(50% - 50vw); margin-right: calc(50% - 50vw); padding: 0 var(--md) var(--lg); scrollbar-width: none; scroll-padding-left: var(--md); }
  .trainers-grid::-webkit-scrollbar { display: none; }
  .trainers-grid .trainer-card { flex: 0 0 80vw; scroll-snap-align: start; min-width: 0; }
}
/* === Locations section – full width on mobile === */
@media (max-width: 767px) {
  #locations .container { margin-left: calc(var(--md) * -1); margin-right: calc(var(--md) * -1); padding: 0; }
  .locations-wrap { border-radius: 0; }
}

/* === Services card below hero – full-width strip, no inner box === */
@media (max-width: 767px) {
  .schedule-card-below { padding: var(--xl) var(--md); }
  .schedule-card-below .container { padding: 0; max-width: none; }
  .schedule-card-below .schedule-card { background: transparent !important; border-radius: 0; max-width: none; margin: 0; width: 100%; padding: 0; }
  .schedule-card-below .schedule-chips { gap: 10px; }
  .schedule-card-below .chip { flex: 1 1 auto; justify-content: center; min-width: 130px; }
}

/* === Objections – mobile full-width, arrows overlaid on image === */
@media (max-width: 767px) {
  .objections-section { padding: 0 0 var(--lg); }
  .objections-section .container { padding: 0; }
  .objections-list { padding: 0; border-radius: 0; }
  .objection { flex: 0 0 100%; padding: 0; gap: 0; grid-template-columns: 1fr; }
  .objection-img { border-radius: 0; overflow: visible; }
  .obj-img-btn { display: flex; position: absolute; z-index: 3; top: 50%; transform: translateY(-50%); }
  .obj-img-btn.obj-prev { left: var(--md); }
  .obj-img-btn.obj-next { right: var(--md); }
  .objection-text { padding: var(--lg) var(--md) 0; }
  .obj-arrows { display: none; }
  .obj-controls { justify-content: center; padding: var(--sm) var(--md) 0; }
  .obj-dots { justify-content: center; }
}

/* === Memberships – horizontal slider on mobile (same desktop style) === */
@media (max-width: 767px) {
  #memberships .container { padding: 0; }
  .memberships-wrap { border-radius: 0; padding: var(--3xl) 0 var(--xl); }
  .memberships-wrap .section-head { padding: 0 var(--lg); }
  .mem-list { display: flex; flex-direction: row; overflow-x: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; gap: 10px; max-width: none; margin: 0; padding: 4px var(--lg) var(--xl) var(--xl); scroll-padding-left: var(--xl); scrollbar-width: none; align-items: stretch; }
  .mem-list::-webkit-scrollbar { display: none; }
  .mem-card { flex: 0 0 90%; scroll-snap-align: start; min-width: 0; display: flex; flex-direction: column; }
  .mem-card .mem-info { flex: 1; padding: var(--lg); }
  .mem-card .mem-price { padding: var(--lg); }
}

/* objection-img-fix-2026-05-22 */
/* CLS-prevention rule img[width][height] {height:auto; aspect-ratio:attr(width)/attr(height)} */
/* has higher specificity than .objection-img img {height:100%}, causing square images */
/* (like the side-by-side before/after composite) to render at their natural square ratio */
/* and overflow the 4:3 wrapper, breaking layout on card 4. Override with higher specificity. */
.objection-img img[width][height] { height: 100%; aspect-ratio: auto; }


/* objection-img-card4-position-2026-05-22 */
/* Card 4's source image is square (1:1) so object-fit:cover crops top+bottom evenly. */
/* Heads are at the top, so a center crop trims hair. Pin this specific image to the top */
/* so heads are fully visible; the waist/shorts get cropped instead. */
.objection-img img[src*="503ce25b238916f9"] { object-position: center top; }


/* article-layout-2026-05-22 */
/* Blog article post layout – narrow column, type-set prose, branded CTA. */
.article-wrap { max-width: 720px; margin: 0 auto; }
.article-meta { font-size: 12px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--fg-muted); margin-bottom: var(--lg); display: flex; gap: 12px; flex-wrap: wrap; }
.article-meta span:not(:last-child)::after { content: "·"; margin-left: 12px; opacity: 0.5; }
.article-hero { aspect-ratio: 16/9; border-radius: var(--radius-md); overflow: hidden; margin-bottom: var(--3xl); background: var(--bg-subtle); }
.article-hero img { width: 100%; height: 100%; object-fit: cover; display: block; }
.article-body { font-size: 18px; line-height: 1.75; color: var(--fg-base); }
.article-body p { margin-bottom: var(--lg); }
.article-body p:last-child { margin-bottom: 0; }
.article-body h2 { font-size: clamp(24px, 3vw, 32px); font-weight: 400; letter-spacing: -0.02em; line-height: 1.2; margin: var(--3xl) 0 var(--md); color: var(--fg-base); }
.article-body h3 { font-size: 20px; font-weight: 500; letter-spacing: -0.01em; margin: var(--2xl) 0 var(--sm); color: var(--fg-base); }
.article-body ul, .article-body ol { margin: 0 0 var(--lg) 24px; padding: 0; }
.article-body ul { list-style: disc; }
.article-body ol { list-style: decimal; }
.article-body li { margin-bottom: 8px; line-height: 1.65; }
.article-body blockquote { border-left: 3px solid var(--bg-contrast); padding: 4px 0 4px var(--lg); margin: var(--xl) 0; font-style: italic; color: var(--fg-muted); }
.article-body a { color: var(--fg-base); text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1px; }
.article-body a:hover { text-decoration-thickness: 2px; }
.article-body strong { font-weight: 600; }
.article-cta { margin-top: var(--5xl); padding-top: var(--xl); border-top: 1px solid var(--border-subtle); text-align: center; }
.article-cta p { font-size: 17px; color: var(--fg-muted); margin-bottom: var(--md); }
@media (max-width: 767px) {
  .article-body { font-size: 17px; line-height: 1.7; }
  .article-body h2 { margin-top: var(--2xl); }
}


/* blog-list-2026-05-22 */
/* Blog index – card grid linking to articles */
.blog-list { display: grid; grid-template-columns: 1fr; gap: var(--xl); max-width: 1080px; margin: 0 auto; }
@media (min-width: 768px) { .blog-list { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .blog-list { grid-template-columns: repeat(3, 1fr); } }
.blog-card { background: var(--bg-canvas); border: 1px solid var(--border-subtle); border-radius: var(--radius-md); overflow: hidden; transition: transform .25s ease, box-shadow .25s ease; }
.blog-card:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(0,0,0,.08); }
.blog-card a { display: block; color: inherit; text-decoration: none; }
.blog-card-img { aspect-ratio: 16/9; overflow: hidden; background: var(--bg-subtle); }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .8s ease; }
.blog-card:hover .blog-card-img img { transform: scale(1.03); }
.blog-card-body { padding: var(--lg) var(--lg) var(--xl); }
.blog-card-meta { font-size: 12px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--fg-muted); margin-bottom: 12px; }
.blog-card-title { font-size: 22px; font-weight: 400; letter-spacing: -0.02em; line-height: 1.2; margin-bottom: 10px; color: var(--fg-base); }
.blog-card-excerpt { font-size: 15px; line-height: 1.55; color: var(--fg-muted); }


/* obj-btn-redesign-2026-05-22 */
/* Testimonial slider button overrides:
   - Mobile + desktop: black-circle, white-arrow, thicker arrow
   - Click: just darken to grey (no scale-shrink that knocks the button out of its translateY(-50%) center)
   - .obj-img-btn :active preserves vertical centering so the button doesn't drop on tap */
.obj-btn { background: #0a0a0a; color: #fff; border: 1.5px solid #0a0a0a; font-weight: 700; font-size: 18px; transition: background .15s, border-color .15s; }
.obj-btn:hover { background: #1a1a1a; border-color: #1a1a1a; }
.obj-btn:active { background: #3a3a3a; border-color: #3a3a3a; transform: none; }
.obj-img-btn:active { background: #3a3a3a; border-color: #3a3a3a; transform: translateY(-50%); }


/* obj-arrows-mobile-overlay-2026-05-22 */
/* On mobile, hide the per-card image-overlay arrows (they scroll with the card during swipe).
   Repurpose the external .obj-arrows below the slider as a fixed overlay above the image,
   absolute-positioned to .objections-section (which doesn't scroll). pointer-events trick
   lets the row pass clicks through to the image while keeping the buttons clickable. */
@media (max-width: 767px) {
  .objection-img .obj-img-btn { display: none !important; }
  .objections-section { position: relative; }
  .objections-section .obj-controls .obj-arrows {
    display: flex !important;
    position: absolute;
    top: 37.5vw;
    left: 0;
    right: 0;
    margin: 0;
    padding: 0 var(--md);
    justify-content: space-between;
    transform: translateY(-50%);
    pointer-events: none;
    z-index: 5;
    gap: 0;
  }
  .objections-section .obj-controls .obj-arrows .obj-btn {
    pointer-events: auto;
  }
}


/* card-4-mobile-sits-lower-defensive-2026-05-22 */
/* Hard-pin .objection-img to 4:3 with modern aspect-ratio (replaces padding-top trick on
   browsers that struggle with it under flex/grid). Force picture + img to fill the wrapper
   regardless of any other rule. !important everywhere to override any stale state. */
.objection-img { aspect-ratio: 4 / 3 !important; }
.objection-img > picture {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  display: block !important;
}
.objection-img > picture > img,
.objection-img > img {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  aspect-ratio: auto !important;
  object-fit: cover !important;
  display: block !important;
}
.objection-img img[src*="503ce25b238916f9"] { object-position: center top !important; }


/* blog-list-page-header-band-2026-05-27 */
/* Blog list page (and blog-only template variations) was missing the dark page-header band
   that every other page (services/contact/about/trainers/locations) has. Give the built-in
   cms-blog-list title + intro a full-bleed dark band so the nav doesn't sit on bare white.
   Selectors chain .cms-card.cms-blog-list to beat the inline blog.custom_css block that
   loads after global CSS and uses the same !important. */
.cms-card.cms-blog-list { padding: 0 0 var(--7xl) !important; gap: 0 !important; max-width: none !important; margin: calc(var(--nav-h) * -1 - 2px) 0 0 0 !important; }
.cms-card.cms-blog-list .cms-blog-list-title,
.cms-card.cms-blog-list .cms-blog-list-intro {
  grid-column: 1 / -1;
  background: var(--bg-contrast) !important;
  color: var(--fg-on-contrast) !important;
  text-align: center;
  display: block;
  padding-left: var(--md) !important;
  padding-right: var(--md) !important;
  max-width: none !important;
  width: 100% !important;
  box-sizing: border-box;
}
.cms-card.cms-blog-list .cms-blog-list-title {
  padding-top: calc(var(--nav-h) + var(--4xl)) !important;
  padding-bottom: var(--md) !important;
  margin: 0 !important;
  color: var(--fg-on-contrast) !important;
  font-family: "Manrope", -apple-system, sans-serif;
  font-size: clamp(36px, 5vw, 72px);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1;
}
.cms-card.cms-blog-list .cms-blog-list-intro {
  padding-top: 0 !important;
  padding-bottom: var(--4xl) !important;
  margin: 0 0 var(--3xl) !important;
  color: var(--fg-on-contrast-muted) !important;
  font-size: 18px;
}
/* Article items: re-establish horizontal padding since list itself is now full-bleed */
.cms-card.cms-blog-list .cms-blog-list-item {
  margin-left: var(--md);
  margin-right: var(--md);
  max-width: 1080px;
}
@media (min-width: 768px) {
  .cms-card.cms-blog-list .cms-blog-list-title { padding-top: calc(var(--nav-h) + var(--5xl)) !important; padding-bottom: var(--lg) !important; }
  .cms-card.cms-blog-list .cms-blog-list-intro { padding-bottom: var(--5xl) !important; }
  .cms-card.cms-blog-list .cms-blog-list-item { margin-left: var(--3xl); margin-right: var(--3xl); }
}
@media (min-width: 1200px) {
  .cms-card.cms-blog-list .cms-blog-list-item { margin-left: auto; margin-right: auto; }
}

/* trainers-swipe-hint: mobile affordance that more trainers exist (2026-06-07) */
.trainers-swipe-hint { display: none; }
@media (max-width: 767px) {
  .trainers-swipe-hint { display: flex; align-items: center; justify-content: center; gap: 8px; margin: 0 0 var(--md); font-size: 13px; letter-spacing: .08em; text-transform: uppercase; color: var(--fg-muted); font-weight: 600; }
  .trainers-swipe-hint .arrow { display: inline-block; animation: trainersNudge 1.4s ease-in-out infinite; }
}
@keyframes trainersNudge { 0%,100% { transform: translateX(0); } 50% { transform: translateX(7px); } }
@media (prefers-reduced-motion: reduce) { .trainers-swipe-hint .arrow { animation: none; } }

/* post-page dark header band flush under nav: cancel built-in .cms-post-body 12px top margin that broke the .page-header -67px pull-up (2026-06-07) */
.cms-post-body { margin-top: 0 !important; }

/* iOS Safari auto-zooms inputs with font-size<16px on focus; force >=16px on mobile (2026-06-07) */
@media (max-width: 767px) {
  .newsletter form .input, input[type="text"], input[type="email"], input[type="tel"], input[type="number"], input[type="search"], input[type="url"], input[type="password"], textarea, select { font-size: 16px !important; }
}

/* Hero: no still-image flash before the video. Dark #111 hero bg covers the load;
   the still only appears as a slow(>5s)/failed-load fallback (JS adds .show-still). (2026-06-07) */
.hero-bg .hero-still { opacity: 0; transition: opacity .4s ease; }
.hero-bg.show-still .hero-still { opacity: 1; }

/* Booking form CTA green + centered yes/no on mobile, all pages (2026-06-07) */
.newsletter form button.btn-primary, .newsletter form button.btn-primary:hover, .newsletter form button.btn-primary:focus { background: #39FF14 !important; color: #000 !important; border-color: #39FF14 !important; }
@media (max-width: 767px) {
  .newsletter .goal-field { align-items: center !important; }
  .newsletter .goal-label { text-align: center !important; }
  .newsletter .goal-options { justify-content: center !important; }
}

/* Memberships: lime favorite badge + bottom spacing, all pages (2026-06-07) */
.mem-price .badge { background: #39FF14 !important; color: #000 !important; }
#memberships { padding-bottom: var(--4xl); }

/* === Floating CTA bar (free session + WhatsApp/Call) — 2026-06-07 === */
.fi-cta-bar{position:fixed;left:0;right:0;bottom:0;z-index:45;background:rgba(10,10,10,0.96);
  -webkit-backdrop-filter:saturate(140%) blur(10px);backdrop-filter:saturate(140%) blur(10px);
  border-top:1px solid rgba(255,255,255,0.12);color:#fff;
  transform:translateY(115%);transition:transform .35s cubic-bezier(.22,.61,.36,1);
  padding:10px 0 calc(10px + env(safe-area-inset-bottom));box-shadow:0 -10px 30px rgba(0,0,0,0.28);}
body.fi-cta-on .fi-cta-bar{transform:translateY(0);}
.fi-cta-inner{max-width:1200px;margin:0 auto;padding:0 var(--lg);display:flex;align-items:center;justify-content:space-between;gap:var(--md);}
.fi-cta-copy{display:flex;flex-direction:column;line-height:1.2;min-width:0;}
.fi-cta-copy .t{font-weight:700;font-size:16px;letter-spacing:-0.01em;color:#fff;}
.fi-cta-copy .s{font-size:12.5px;color:rgba(255,255,255,0.62);margin-top:2px;}
.fi-cta-actions{display:flex;align-items:center;gap:10px;flex:0 0 auto;}
.fi-cta-bar .fi-btn{display:inline-flex;align-items:center;justify-content:center;gap:8px;
  border-radius:999px;font-weight:600;font-size:15px;padding:12px 22px;white-space:nowrap;line-height:1;
  border:1px solid transparent;transition:transform .15s ease,opacity .2s ease,border-color .2s ease;cursor:pointer;}
.fi-cta-bar .fi-btn:active{transform:scale(.97);}
.fi-cta-bar .fi-btn-primary{background:#39FF14;color:#000;}
.fi-cta-bar .fi-btn-primary:hover{opacity:.9;}
.fi-cta-bar .fi-btn-ghost{background:transparent;color:#fff;border-color:rgba(255,255,255,0.32);}
.fi-cta-bar .fi-btn-ghost:hover{border-color:#fff;}
.fi-cta-bar .fi-btn svg{width:18px;height:18px;flex:0 0 auto;}
.fi-cta-bar .fi-cta-call{display:none;}
@media (max-width:640px){
  .fi-cta-bar .fi-cta-copy{display:none;}
  .fi-cta-bar .fi-cta-wa{display:none;}
  .fi-cta-bar .fi-cta-call{display:inline-flex;}
  .fi-cta-inner{padding:0 var(--md);gap:10px;}
  .fi-cta-actions{flex:1;gap:10px;}
  .fi-cta-bar .fi-btn{flex:1;padding:13px 12px;}
}
body:has(.nav.nav-open) .fi-cta-bar{display:none;}