: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: sticky; top: 0; 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; }
  .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: 50%; width: 60%; }
  @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,.55), rgba(0,0,0,0)); }
  .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; } }
  .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; border-bottom: 1px solid rgba(255,255,255,0.08); 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 0 5px 5px; margin: 0 var(--lg) var(--lg); 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 { border-top: 1px solid rgba(255,255,255,.1); 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: 80px; padding: 0 96px 0 100px; border-radius: 999px; background: linear-gradient(to right, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.16) 40%, rgba(255,255,255,0.42) 75%, rgba(255,255,255,0.70) 100%); border: none; color: #fff; backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); transition: background .45s ease, color .45s ease; position: relative; overflow: hidden; letter-spacing: -0.01em; }
  .btn-circle-pill .circle { position: absolute; left: 6px; top: 50%; margin-top: -34px; width: 68px; height: 68px; border-radius: 50%; background: #fff; color: #0a0a0a; display: inline-flex; align-items: center; justify-content: center; font-size: 24px; z-index: 2; pointer-events: none; transition: left .45s cubic-bezier(.5, 0, .25, 1); }
  .btn-circle-pill .circle svg { width: 24px; height: 24px; stroke: currentColor; stroke-width: 1.5; fill: none; }
  .btn-circle-pill:hover .pill { background: #fff; 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 { flex-shrink: 0; width: 44px; height: 44px; border-radius: 50%; border: none; background: #111; color: #fff; font-size: 18px; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background 0.15s, transform 0.1s; line-height: 1; }
  .obj-btn:hover { background: #333; }
  .obj-btn:active { transform: scale(0.93); }
  .obj-dots { display: flex; justify-content: center; gap: 10px; margin-top: var(--lg); }
  .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); }
  @media (max-width: 767px) { .obj-btn { width: 36px; height: 36px; font-size: 14px; } .objection-text h3 { font-size: 22px; } .objection-img-nav { gap: var(--sm); } }

/* === 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: "—"; 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 === */
.nav-open .nav-links { display: flex; flex-direction: column; position: absolute; top: calc(var(--nav-h) - 1px); left: 0; right: 0; background: var(--bg-canvas); border-bottom: 1px solid var(--border-subtle); padding: var(--md) var(--lg) var(--xl); gap: 4px; z-index: 49; box-shadow: 0 8px 24px rgba(0,0,0,0.08); }
.nav-open .nav-links a { font-size: 17px; padding: 10px var(--md); border-radius: var(--radius-sm); display: block; }
.nav-open .nav-links a:hover { background: var(--bg-surface); opacity: 1; }
@media (min-width: 1024px) { .nav-open .nav-links { display: flex; flex-direction: row; position: static; border: none; padding: 0; box-shadow: none; background: transparent; } .nav-open .nav-links a { font-size: 15px; padding: 8px 0; border-radius: 0; } .nav-open .nav-links a:hover { background: none; opacity: 0.6; } }
.nav-open.nav-hero:not(.solid) .nav-links { background: #111; border-color: rgba(255,255,255,0.1); }
.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); }

/* === 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;
}