/* ============================================================
   MoveGym — design systém  ·  LUXURY EDITORIAL
   Teplá ivory paleta · bronz/šampaň akcent · serif Fraunces
   Filmové zrno · vlasové linky · pomalý pohyb · espresso bloky
   Tmavé sekce: třída .invert (přemapuje barevné proměnné).
   ============================================================ */

:root {
  /* ---------- Světlá paleta ---------- */
  --bg:         #F4F0E7;   /* teplá ivory */
  --bg-2:       #EDE7D9;   /* alternující sekce */
  --surface:    #FBF8F1;   /* karty / povrchy */
  --surface-2:  #F2ECDF;   /* hover / zvýšené */
  --surface-3:  #EAE2D2;   /* inputy / nejvyšší */
  --line:       #DDD4C3;   /* vlasové linky */
  --line-2:     #CCC1A9;   /* výraznější linky */

  --text:       #1B1A16;   /* teplý inkoust */
  --muted:      #6C6557;   /* taupe / sekundární (≈5:1 na ivory) */
  --muted-2:    #6B6256;   /* drobné labely — ztmaveno na ≈5:1 (WCAG AA) */

  --accent:     #7E5E2F;   /* bronz pro TEXT/linky — ztmaveno na ≈4.8:1 na ivory (WCAG AA) */
  --accent-2:   #C2A878;   /* šampaň — hover/záře */
  --accent-soft: rgba(154,122,74,.10);
  --accent-line: rgba(154,122,74,.34);
  --accent-ink: #FBF8F1;   /* text na bronzové ploše */
  --accent-rgb: 154,122,74;

  --deep:       #201C14;   /* espresso (reference) */

  --ok:    #5C7C52;
  --warn:  #B08534;
  --error: #B0473B;
  --error-soft: rgba(176,71,59,.10);

  /* ---------- Typografie ---------- */
  --f-display: "Fraunces", Georgia, "Times New Roman", serif;
  --f-body:    "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  --f-mono:    ui-monospace, "SF Mono", "SFMono-Regular", Menlo, Consolas, monospace;

  /* ---------- Rádiusy (luxus = jemné) ---------- */
  --r-sm: 6px;
  --r:    10px;
  --r-lg: 14px;
  --r-xl: 20px;
  --r-pill: 999px;

  /* ---------- Stíny / záře (světlé, jemné) ---------- */
  --sh-sm: 0 1px 2px rgba(27,26,22,.05), 0 2px 8px rgba(27,26,22,.04);
  --sh:    0 12px 30px -14px rgba(27,26,22,.14), 0 4px 12px rgba(27,26,22,.05);
  --sh-lg: 0 34px 70px -28px rgba(27,26,22,.24), 0 12px 26px -16px rgba(27,26,22,.12);
  --glow:  0 16px 44px -16px rgba(var(--accent-rgb),.45);

  /* ---------- Rozměry ---------- */
  --maxw: 1180px;
  --maxw-narrow: 760px;
  --gutter: clamp(20px, 5vw, 72px);
  --nav-h: 80px;

  --ease:     cubic-bezier(.22,.61,.36,1);
  --ease-out: cubic-bezier(.16,1,.3,1);  /* pomalé „drahé" doběhnutí */
}

/* ---------- Invertované (espresso) sekce: přemapování proměnných ---------- */
.invert {
  --bg:        #1A1710;
  --bg-2:      #15120C;
  --surface:   #241F16;
  --surface-2: #2C2719;
  --surface-3: #352F20;
  --line:      rgba(239,231,214,.12);
  --line-2:    rgba(239,231,214,.22);
  --text:      #EFE7D6;
  --muted:     #A39A87;
  --muted-2:   #948B79;   /* zesvětleno na ≈5:1 na espressu (WCAG AA) */
  --accent:    #C7A56A;
  --accent-2:  #DCC08A;
  --accent-soft: rgba(199,165,106,.12);
  --accent-line: rgba(199,165,106,.32);
  --accent-ink: #201C14;
  --accent-rgb: 199,165,106;
  background: var(--bg);
  color: var(--text);
}

/* ============================================================
   RESET
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: calc(var(--nav-h) + 14px); }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

/* Plynulé přechody mezi stránkami (View Transitions API) — progresivní vylepšení */
@view-transition { navigation: auto; }
::view-transition-old(root), ::view-transition-new(root) { animation-duration: .45s; animation-timing-function: cubic-bezier(.16,1,.3,1); }
@media (prefers-reduced-motion: reduce) {
  ::view-transition-group(*), ::view-transition-old(*), ::view-transition-new(*) { animation: none !important; }
}

/* Lenis smooth scroll (init v script.js, jen když uživatel nechce omezit pohyb) */
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-stopped { overflow: clip; }

body {
  font-family: var(--f-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  font-size: clamp(16px, 1.05vw, 18px);
  font-feature-settings: "kern" 1, "liga" 1, "calt" 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  position: relative;
}

img, svg, video { max-width: 100%; display: block; }
picture { display: contents; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, textarea, select { font: inherit; color: inherit; }
ul { list-style: none; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 3px; }
::selection { background: var(--accent); color: var(--accent-ink); }

/* jemná bronzová aura nahoře */
body::before {
  content: ""; position: fixed; inset: 0; z-index: -2; pointer-events: none;
  background:
    radial-gradient(60% 50% at 50% -8%, rgba(var(--accent-rgb),.10), transparent 70%),
    radial-gradient(50% 40% at 100% 0%, rgba(194,168,120,.08), transparent 65%);
}
/* filmové zrno přes celou stránku — největší „luxusní" efekt */
body::after {
  content: ""; position: fixed; inset: 0; z-index: 9998; pointer-events: none;
  opacity: .045; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
@media (prefers-reduced-motion: reduce) { body::after { opacity: .03; } }

/* ============================================================
   TYPOGRAFIE
   ============================================================ */
h1, h2, h3, h4 {
  font-family: var(--f-display);
  font-weight: 500;
  line-height: 1.06;
  letter-spacing: -.015em;
  font-optical-sizing: auto;
  text-wrap: balance;
}
.display {
  font-family: var(--f-display); font-weight: 500;
  font-size: clamp(2.7rem, 7vw, 6rem);
  line-height: 1.0; letter-spacing: -.025em;
}
.h-xl { font-size: clamp(2.1rem, 4.8vw, 3.8rem); line-height: 1.02; letter-spacing: -.02em; }
.h-lg { font-size: clamp(1.6rem, 3.2vw, 2.6rem); }
.h-md { font-size: clamp(1.2rem, 2vw, 1.55rem); font-weight: 600; }
p { text-wrap: pretty; }
.lead { font-size: clamp(1.08rem, 1.4vw, 1.28rem); color: var(--muted); line-height: 1.7; }
strong, b { font-weight: 600; color: var(--text); }
.accent { color: var(--accent); }
.muted { color: var(--muted); }
em { font-style: italic; }

/* eyebrow / kicker — drobný prostrkaný monospace label */
.eyebrow {
  display: inline-flex; align-items: center; gap: .7em;
  font-family: var(--f-mono); font-size: .76rem; font-weight: 500;
  letter-spacing: .22em; text-transform: uppercase; color: var(--accent);
}
.eyebrow::before { content: ""; width: 30px; height: 1px; background: var(--accent-line); display: inline-block; }
.eyebrow--center { justify-content: center; }

/* ============================================================
   LAYOUT
   ============================================================ */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.wrap--narrow { max-width: var(--maxw-narrow); }
.section { padding-block: clamp(72px, 11vw, 150px); position: relative; }
.section--tight { padding-block: clamp(48px, 7vw, 90px); }
.section--alt { background: var(--bg-2); }
.section__head { max-width: 720px; margin-bottom: clamp(40px, 5vw, 64px); }
.section__head--center { margin-inline: auto; text-align: center; }
.section__title { font-size: clamp(2rem, 4.6vw, 3.6rem); margin: 18px 0 0; letter-spacing: -.02em; }
.section__lead { margin-top: 20px; }
.grid { display: grid; gap: clamp(16px, 2.4vw, 26px); }

.skip {
  position: fixed; left: 14px; top: -60px; z-index: 1000;
  background: var(--text); color: var(--bg); padding: 10px 16px;
  border-radius: var(--r-sm); font-weight: 600; transition: top .2s var(--ease);
}
.skip:focus { top: 14px; }

/* tenké linky */
.divider { height: 1px; background: var(--line); margin-block: clamp(48px, 7vw, 90px); border: none; }

/* ============================================================
   TLAČÍTKA
   ============================================================ */
.btn {
  --bbg: var(--surface-2); --bfg: var(--text);
  display: inline-flex; align-items: center; justify-content: center; gap: .6em;
  background: var(--bbg); color: var(--bfg);
  font-family: var(--f-body); font-weight: 600; font-size: .95rem; letter-spacing: .01em;
  padding: .95em 1.6em; border-radius: var(--r-pill);
  box-shadow: inset 0 0 0 1px var(--line-2);
  transition: transform .35s var(--ease-out), box-shadow .4s var(--ease), background .35s, color .35s;
  position: relative; white-space: nowrap;
}
.btn svg { width: 1.1em; height: 1.1em; flex: none; }
.btn:hover { transform: translateY(-2px); box-shadow: var(--sh), inset 0 0 0 1px var(--line-2); }
.btn:active { transform: translateY(0); transition-duration: .08s; }

/* primární = inkoust na ivory (na invert sekci = ivory na espressu) */
.btn--primary { --bbg: var(--text); --bfg: var(--bg); box-shadow: var(--sh); font-weight: 600; }
.btn--primary:hover { --bbg: var(--accent); --bfg: var(--accent-ink); box-shadow: var(--glow); }

.btn--ghost { --bbg: transparent; --bfg: var(--text); box-shadow: inset 0 0 0 1px var(--line-2); }
.btn--ghost:hover { box-shadow: inset 0 0 0 1px var(--text); }

.btn--dark { --bbg: transparent; --bfg: var(--text); box-shadow: inset 0 0 0 1px var(--line-2); }
.btn--dark:hover { --bbg: var(--text); --bfg: var(--bg); }

.btn--lg { padding: 1.1em 2.1em; font-size: 1.02rem; }
.btn--block { width: 100%; }
.btn--sm { padding: .6em 1.1em; font-size: .85rem; }
.btn[disabled] { opacity: .5; pointer-events: none; }

.btn--primary.btn--lg { overflow: hidden; isolation: isolate; }
.btn__spot {
  position: absolute; top: 0; left: 0; width: 200px; height: 200px; border-radius: 50%;
  pointer-events: none; z-index: -1; opacity: 0; transition: opacity .5s var(--ease); will-change: transform;
  background: radial-gradient(circle, rgba(255,255,255,.3), rgba(255,255,255,.08) 42%, transparent 70%);
}
@media (prefers-reduced-motion: reduce) { .btn__spot { display: none; } }

/* odkaz s rostoucím podtržením */
.arrow-link {
  display: inline-flex; align-items: center; gap: .5em; font-weight: 600; color: var(--text);
  background: linear-gradient(var(--accent), var(--accent)) 0 100% / 0 1px no-repeat; padding-bottom: 4px;
  transition: gap .4s var(--ease-out), background-size .5s var(--ease-out), color .3s;
}
.arrow-link:hover { gap: .85em; color: var(--accent); background-size: 100% 1px; }
.arrow-link svg { width: 1.05em; height: 1.05em; }

/* ============================================================
   NAVIGACE
   ============================================================ */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100; height: var(--nav-h);
  display: flex; align-items: center;
  transition: background .4s var(--ease), border-color .4s, backdrop-filter .4s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(244,240,231,.82);
  backdrop-filter: saturate(140%) blur(14px); -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom-color: var(--line);
}
.nav__inner { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter);
  display: flex; align-items: center; justify-content: space-between; gap: 18px; }

/* Wordmark MOVEGYM + plaketa HEALTH · STRONG (dle reálného loga na gymu) */
.brand { display: inline-flex; flex-direction: column; align-items: flex-start; gap: 5px;
  font-family: var(--f-body); color: var(--text); line-height: 1; font-size: 1.3rem; }
.brand__word { display: inline-flex; align-items: baseline; line-height: .82; font-size: 1em;
  letter-spacing: .01em; }
.brand__lite { font-weight: 400; }
.brand__bold { font-weight: 700; letter-spacing: -.012em; }
.brand__tag { align-self: stretch; box-sizing: border-box; background: var(--text); color: var(--bg);
  font-size: .38em; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; text-align: center;
  text-indent: .22em; padding: 3px 4px 2px; border-radius: 2px;
  transition: background .35s var(--ease), color .35s var(--ease); }
.brand__tag i { font-style: normal; padding: 0 .32em; opacity: .8; }
.brand:hover .brand__tag { background: var(--accent); color: var(--accent-ink); }
.brand .accent { color: var(--accent); }

.nav__links { display: flex; align-items: center; gap: 2px; }
.nav__links a {
  padding: 9px 15px; border-radius: var(--r-pill); font-weight: 500; font-size: .94rem; color: var(--muted);
  transition: color .3s, background .3s;
}
.nav__links a:hover, .nav__links a[aria-current="page"] { color: var(--text); }
.nav__links a[aria-current="page"] { color: var(--accent); }

.nav__cta { display: flex; align-items: center; gap: 14px; }
.nav__login { font-weight: 600; font-size: .92rem; color: var(--text); padding: 9px 6px; }
.nav__login:hover { color: var(--accent); }

.nav__burger { display: none; width: 44px; height: 44px; border-radius: 10px; position: relative;
  box-shadow: inset 0 0 0 1px var(--line-2); }
.nav__burger span { position: absolute; left: 12px; right: 12px; height: 1.5px; background: var(--text);
  border-radius: 2px; transition: transform .35s var(--ease), opacity .2s; }
.nav__burger span:nth-child(1) { top: 16px; }
.nav__burger span:nth-child(2) { top: 21px; }
.nav__burger span:nth-child(3) { top: 26px; }
body.menu-open .nav__burger span:nth-child(1) { transform: translateY(5px) rotate(45deg); }
body.menu-open .nav__burger span:nth-child(2) { opacity: 0; }
body.menu-open .nav__burger span:nth-child(3) { transform: translateY(-5px) rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: var(--nav-h) 0 0 0; z-index: 90; background: var(--bg);
  display: flex; flex-direction: column; gap: 2px; padding: 30px var(--gutter) 40px;
  transform: translateY(-10px); opacity: 0; visibility: hidden;
  transition: transform .4s var(--ease), opacity .35s, visibility .35s; overflow-y: auto;
}
body.menu-open .mobile-menu { transform: none; opacity: 1; visibility: visible; }
body.menu-open { overflow: hidden; }
.mobile-menu a { padding: 16px 4px; font-family: var(--f-display); font-weight: 500; font-size: 1.7rem;
  border-bottom: 1px solid var(--line); }
.mobile-menu a.btn { border: none; margin-top: 18px; font-size: 1rem; font-family: var(--f-body); }
.mobile-menu .mm-sub { font-family: var(--f-mono); font-size: .76rem; color: var(--muted-2); text-transform: uppercase;
  letter-spacing: .18em; border: none; padding-bottom: 4px; margin-top: 12px; }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; min-height: 100vh; min-height: 100svh; display: flex; align-items: center;
  padding-top: calc(var(--nav-h) + clamp(30px, 4vw, 64px)); padding-bottom: clamp(40px, 5vw, 80px); overflow: hidden; }
.hero > .wrap { width: 100%; }
.hero__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 4vw, 60px); align-items: center; }
.hero__copy { position: relative; z-index: 2; }
.hero__title { margin: 24px 0 0; font-size: clamp(2.8rem, 6.8vw, 5.7rem); }
.hero__title .ln { display: block; }
.hero__title .hl { color: var(--accent); }
/* Hero typewriter — blikající kurzor na konci psaného nadpisu */
.tw-caret { display: inline-block; width: .055em; height: .8em; background: var(--accent);
  margin-left: .03em; border-radius: 1px; vertical-align: baseline; animation: tw-blink 1.05s steps(1) infinite; }
@keyframes tw-blink { 50% { opacity: 0; } }
.tw-caret--out { animation: none; opacity: 0; transition: opacity .34s ease; }
@media (prefers-reduced-motion: reduce) { .tw-caret { display: none; } }
.hero__lead { margin-top: 28px; max-width: 34ch; }
.hero__cta { margin-top: 38px; display: flex; flex-wrap: wrap; gap: 14px; }
.hero__note { margin-top: 22px; font-size: .9rem; color: var(--muted-2); display: flex; align-items: center; gap: 8px; }
.hero__note svg { width: 1.05em; height: 1.05em; color: var(--accent); }

/* hero vizuál — espresso panel s line-art a plovoucí kartou */
.hero__visual { position: relative; perspective: 1200px; }
.hero__photo {
  position: relative; aspect-ratio: 4/5; max-height: 78vh; border-radius: var(--r-xl); overflow: hidden;
  background: linear-gradient(160deg, #2A2417, #17140D); box-shadow: var(--sh-lg);
  transform: rotateX(var(--rx,0deg)) rotateY(var(--ry,0deg)); transition: transform .6s var(--ease);
}
.hero__visual.tilting .hero__photo { transition: transform .12s linear; }
.hero__photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.hero__photo::after { content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(20,17,11,.12) 0%, transparent 32%, rgba(20,17,11,.74) 100%); }
.hero__tag {
  position: absolute; top: 20px; left: 20px; z-index: 2; display: inline-flex; align-items: center; gap: 8px;
  background: rgba(20,17,11,.55); backdrop-filter: blur(8px); padding: 8px 14px; border-radius: var(--r-pill);
  font-family: var(--f-mono); font-size: .68rem; letter-spacing: .14em; text-transform: uppercase; color: #EFE7D6;
  box-shadow: inset 0 0 0 1px rgba(239,231,214,.2);
}
.hero__tag .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent-2);
  box-shadow: 0 0 0 4px rgba(199,165,106,.18); animation: pulse 2.6s var(--ease) infinite; }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.4} }

.hero__card {
  position: absolute; right: -20px; bottom: 28px; z-index: 3; width: min(280px, 80%);
  background: var(--surface); border-radius: var(--r-lg); padding: 20px 22px;
  box-shadow: var(--sh-lg), inset 0 0 0 1px var(--line);
}
.hero__card-k { font-family: var(--f-mono); font-size: .66rem; letter-spacing: .16em; text-transform: uppercase; color: var(--accent); }
.hero__card-name { font-family: var(--f-display); font-weight: 600; font-size: 1.2rem; margin: 7px 0 2px; }
.hero__card-meta { font-size: .85rem; color: var(--muted); }
.hero__card-bar { margin-top: 14px; height: 4px; border-radius: 99px; background: var(--surface-3); overflow: hidden; }
.hero__card-bar i { display: block; height: 100%; width: 66%; background: var(--accent); border-radius: 99px; }
.hero__card-free { margin-top: 8px; font-size: .78rem; color: var(--muted); }
.hero__blob { position: absolute; z-index: 0; width: 340px; height: 340px; border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--accent-rgb),.16), transparent 65%); filter: blur(10px);
  top: -50px; right: -40px; pointer-events: none; }

/* statistický pruh */
.statbar { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; margin-top: clamp(48px, 7vw, 80px);
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.statbar__i { padding: clamp(22px, 3vw, 34px) clamp(8px, 2vw, 28px); text-align: left; position: relative; }
.statbar__i + .statbar__i::before { content: ""; position: absolute; left: 0; top: 22%; bottom: 22%; width: 1px; background: var(--line); }
.statbar__n { font-family: var(--f-display); font-weight: 500; font-size: clamp(2rem, 3.6vw, 3rem); line-height: 1;
  font-feature-settings: 'tnum' 1; font-variant-numeric: tabular-nums; }
.statbar__n .accent { color: var(--accent); }
.statbar__l { margin-top: 10px; font-size: .82rem; color: var(--muted); }

/* ============================================================
   MARQUEE (jemné, nízký kontrast)
   ============================================================ */
.marquee { overflow: hidden; border-block: 1px solid var(--line); padding-block: 22px; background: var(--bg-2);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee__track { display: flex; width: max-content; animation: marquee 48s linear infinite; }
.marquee__item { display: inline-flex; align-items: center; gap: 28px; padding-inline: 28px;
  font-family: var(--f-display); font-weight: 500; font-size: clamp(1.3rem, 2.4vw, 2rem);
  letter-spacing: -.01em; color: var(--muted); }
.marquee__item::after { content: "·"; color: var(--accent); font-style: normal; }
.marquee__item.is-ghost { color: var(--muted-2); }
@keyframes marquee { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee__track { animation: none; } }

/* ============================================================
   REVEAL (pomalý, drahý doběh)
   ============================================================ */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 1s var(--ease-out), transform 1s var(--ease-out); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-d="1"] { transition-delay: .1s; }
.reveal[data-d="2"] { transition-delay: .2s; }
.reveal[data-d="3"] { transition-delay: .3s; }
.reveal[data-d="4"] { transition-delay: .4s; }
.reveal[style*="--i"] { transition-delay: calc(var(--i, 0) * .09s); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .float, .ring--spin { animation: none !important; }
}

/* ============================================================
   KARTY + kurzorové interakce
   ============================================================ */
.card { position: relative; background: var(--surface); border-radius: var(--r-lg);
  box-shadow: inset 0 0 0 1px var(--line); padding: clamp(24px, 3vw, 36px); overflow: hidden;
  transition: transform .45s var(--ease), box-shadow .45s var(--ease); }
.card > * { position: relative; z-index: 1; }
.card--hover:hover { transform: translateY(-3px); box-shadow: inset 0 0 0 1px var(--line-2), var(--sh-lg); }

.glow-spot {
  position: absolute !important; top: 0; left: 0; width: 460px; height: 460px; border-radius: 50%;
  pointer-events: none; z-index: 0 !important; opacity: 0; transition: opacity .5s var(--ease); will-change: transform;
  background: radial-gradient(circle, rgba(var(--accent-rgb),.14), rgba(var(--accent-rgb),.05) 40%, transparent 70%);
}
@media (prefers-reduced-motion: reduce) { .glow-spot { display: none; } }

.cbord { position: absolute !important; inset: 0; border-radius: inherit; pointer-events: none; z-index: 0 !important; overflow: hidden; padding: 1px;
  background: rgba(var(--accent-rgb),.16);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
          mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude; }
.cbord__l { position: absolute; left: 0; width: 300px; opacity: 0; will-change: transform, opacity;
  background: linear-gradient(90deg, transparent 6%, rgba(var(--accent-rgb),.5) 30%, var(--accent) 50%, rgba(var(--accent-rgb),.5) 70%, transparent 94%);
  transform: translateX(-400px); }
.cbord__l--top { top: -40px; height: 62%; }
.cbord__l--bot { bottom: -40px; height: 62%; }
@media (prefers-reduced-motion: reduce) { .cbord__l { display: none; } }

/* ============================================================
   SLUŽBY / LEKCE — mřížka karet
   ============================================================ */
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px, 2vw, 24px); }
.svc {
  position: relative; background: var(--surface); border-radius: var(--r-lg); overflow: hidden;
  box-shadow: inset 0 0 0 1px var(--line); padding: clamp(24px, 2.6vw, 32px);
  display: flex; flex-direction: column; min-height: 230px;
  transition: transform .45s var(--ease), box-shadow .45s var(--ease);
}
.svc > * { position: relative; z-index: 1; }
.svc:hover { transform: translateY(-3px); box-shadow: inset 0 0 0 1px var(--line-2), var(--sh); }
.svc__ic { width: 46px; height: 46px; border-radius: 10px; display: grid; place-items: center;
  background: var(--accent-soft); color: var(--accent); margin-bottom: 20px; box-shadow: inset 0 0 0 1px var(--accent-line); }
.svc__ic svg { width: 23px; height: 23px; }
.svc__name { font-family: var(--f-display); font-weight: 600; font-size: 1.4rem; }
.svc__txt { margin-top: 10px; color: var(--muted); font-size: .96rem; flex: 1; }
.svc__meta { margin-top: 18px; display: flex; flex-wrap: wrap; gap: 8px; }

.tag { display: inline-flex; align-items: center; gap: 6px; font-family: var(--f-mono); font-size: .7rem;
  letter-spacing: .06em; text-transform: uppercase; color: var(--muted); padding: 5px 11px;
  border-radius: var(--r-pill); box-shadow: inset 0 0 0 1px var(--line-2); }
.tag--accent { color: var(--accent); box-shadow: inset 0 0 0 1px var(--accent-line); }
/* typ lekce: kurz (pravidelná docházka) vs jednotlivá rezervace */
.tag--kurz { color: var(--surface); background: var(--text); box-shadow: none; }
.tag--book { color: var(--accent); background: var(--accent-soft); box-shadow: inset 0 0 0 1px var(--accent-line); }
.lesson__note { margin-top: 14px; font-size: .88rem; line-height: 1.55; color: var(--muted);
  padding: 11px 14px; border-radius: var(--r); background: var(--surface-2); box-shadow: inset 0 0 0 1px var(--line); }
.lesson__note strong { color: var(--text); font-weight: 600; }
.lesson__note a { color: var(--accent); }
.lesson__more { display: inline-flex; align-items: center; gap: 7px; margin-top: 16px;
  font-family: var(--f-body); font-weight: 600; font-size: .92rem; color: var(--accent); text-decoration: none; }
.lesson__more::after { content: "→"; transition: transform .25s var(--ease); }
.lesson:hover .lesson__more::after, .lesson__more:focus-visible::after { transform: translateX(5px); }
.lekce-legend { margin-top: 26px; display: grid; gap: 12px; max-width: 780px; }
.lekce-legend__row { display: flex; align-items: center; gap: 12px; font-size: .92rem; color: var(--muted); }
.lekce-legend__row .tag { flex: 0 0 auto; }
@media (max-width: 560px) { .lekce-legend__row { align-items: flex-start; } }
/* Tabulka obsazenosti kurzů */
.avail { margin-top: 22px; border-radius: var(--r-lg); box-shadow: inset 0 0 0 1px var(--line); background: var(--surface); overflow: hidden; }
.avail__scroll { overflow-x: auto; }
.avail table { width: 100%; border-collapse: collapse; min-width: 560px; }
.avail th, .avail td { text-align: left; padding: 13px 18px; font-size: .92rem; border-bottom: 1px solid var(--line); white-space: nowrap; }
.avail thead th { font-family: var(--f-body); font-weight: 600; font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); background: var(--bg-2); }
.avail tbody tr:last-child td { border-bottom: none; }
.avail tbody tr:hover td { background: var(--bg-2); }
.avail__course { font-weight: 600; color: var(--text); }
.avail__pill { display: inline-flex; align-items: center; gap: 7px; font-family: var(--f-body); font-weight: 600; font-size: .8rem; padding: 4px 11px; border-radius: 999px; }
.avail__pill::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: currentColor; }
.avail__pill--ok { color: var(--accent); background: var(--accent-soft); box-shadow: inset 0 0 0 1px var(--accent-line); }
.avail__pill--full { color: #8A3327; background: rgba(138,51,39,.08); box-shadow: inset 0 0 0 1px rgba(138,51,39,.25); }
.avail__cta { margin-top: 16px; display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.avail__note { margin-top: 12px; font-size: .85rem; color: var(--muted-2); max-width: 70ch; }
.avail__note a { color: var(--accent); }
.avail-group { margin-top: 30px; }
.avail-group__head { display: flex; flex-wrap: wrap; align-items: center; gap: 8px 14px; margin-bottom: 12px; }
.avail-group__head h3 { font-size: 1.25rem; }
.avail-group__head .arrow-link { margin-left: auto; font-size: .88rem; }
/* Detail lekce/kurzu (/lekce/<slug>/) */
.ldx { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 64px); align-items: center; }
.ldx__media img { width: 100%; height: auto; aspect-ratio: 4/3; object-fit: cover; border-radius: var(--r-xl); box-shadow: var(--sh-lg); display: block; }
.ldx__points { margin-top: 26px; display: grid; gap: 18px; }
.ldx__point strong { display: block; font-family: var(--f-body); font-weight: 600; font-size: .78rem; letter-spacing: .06em; text-transform: uppercase; color: var(--accent); margin-bottom: 5px; }
.ldx__point p { color: var(--muted); }
.ldx__price { margin-top: 18px; border-radius: var(--r-lg); box-shadow: inset 0 0 0 1px var(--line); overflow: hidden; }
.ldx__price-row { display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 14px 18px; border-bottom: 1px solid var(--line); background: var(--surface); }
.ldx__price-row:last-child { border-bottom: none; }
.ldx__price-row strong { font-family: var(--f-display); font-weight: 600; font-size: 1.3rem; color: var(--accent); white-space: nowrap; }
[data-page="lekce-detail"] .lesson__figure { max-width: 300px; margin-inline: auto; }
[data-page="lekce-detail"] .bodyfig { max-width: 320px; }
.chipcloud { display: flex; flex-wrap: wrap; gap: 10px; }
.chipcloud .tag--accent { font-size: .78rem; padding: 7px 14px; }
.minigrid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(20px, 3vw, 32px); }
.minigrid .statbar__n { font-family: var(--f-display); font-weight: 500; font-size: clamp(2rem, 3.6vw, 3rem); line-height: 1; }
.minigrid .statbar__n .accent { color: var(--accent); }
.minigrid .statbar__l { margin-top: 8px; font-size: .82rem; color: var(--muted); }
@media (max-width: 860px) { .ldx { grid-template-columns: 1fr; } }

.cat-dot { width: 8px; height: 8px; border-radius: 50%; flex: none; display: inline-block; }
.cat-pilates  { background: #9A7A4A; }
.cat-joga     { background: #7C6A52; }
.cat-funkcni  { background: #5E6B54; }
.cat-trx      { background: #B0884E; }
.cat-box      { background: #A85A43; }
.cat-kids     { background: #6E8267; }

/* ============================================================
   ROZVRH
   ============================================================ */
.sched { position: relative; }
.sched__bar { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 24px; }
.sched__filters { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; }
.sched__bar .sched__filters { margin-bottom: 0; }
.sched__week { display: inline-flex; align-items: center; gap: 6px; }
.sched__wlabel { font-family: var(--f-display); font-weight: 600; font-size: 1.05rem; min-width: 132px; text-align: center; font-variant-numeric: tabular-nums; }
.sched__arrow { width: 40px; height: 40px; border-radius: 50%; flex: none; display: grid; place-items: center; color: var(--text);
  box-shadow: inset 0 0 0 1px var(--line-2); transition: color .3s, box-shadow .3s, background .3s; }
.sched__arrow:hover:not([disabled]) { background: var(--text); color: var(--bg); }
.sched__arrow[disabled] { opacity: .35; cursor: default; }
.sched__arrow svg { width: 19px; height: 19px; }
.chip {
  display: inline-flex; align-items: center; gap: 7px; padding: 8px 15px; border-radius: var(--r-pill);
  font-weight: 500; font-size: .88rem; color: var(--muted); box-shadow: inset 0 0 0 1px var(--line-2);
  background: transparent; transition: color .3s, box-shadow .3s, background .3s; cursor: pointer;
}
.chip:hover { color: var(--text); }
.chip[aria-pressed="true"] { color: var(--bg); background: var(--text); box-shadow: none; }

.sched__days { display: grid; grid-template-columns: repeat(auto-fill, minmax(168px, 1fr)); gap: 14px; }
.day { background: var(--surface); border-radius: var(--r-lg); box-shadow: inset 0 0 0 1px var(--line);
  padding: 16px 14px; min-height: 120px; }
.day__h { font-family: var(--f-body); font-weight: 600; font-size: 1rem;
  padding-bottom: 12px; margin-bottom: 12px; border-bottom: 1px solid var(--line); display: flex; justify-content: space-between; align-items: baseline; }
.day__h .d { color: var(--muted-2); font-family: var(--f-body); font-size: .72rem; font-weight: 500; }
.day__wd { display: inline-flex; align-items: center; gap: 8px; }
/* dnešek — zvýrazněný jako aktivní den */
.day.is-today { box-shadow: inset 0 0 0 1.5px var(--accent-line); }
.day.is-today .day__h { color: var(--accent); border-bottom-color: var(--accent-line); }
.day__today { font-family: var(--f-body); font-size: .58rem; letter-spacing: .1em; text-transform: uppercase;
  color: var(--surface); background: var(--accent); padding: 3px 8px; border-radius: 999px; line-height: 1; }
/* proběhlý den — odlišený štítkem „Proběhlo" + tlumeným záhlavím + tlumenými sloty (is-past).
   Bez opacity fade: ten by srážel kontrast drobného textu pod WCAG AA. */
.day.is-pastday .day__h { color: var(--muted-2); }
.day.is-pastday .day__h .d { color: var(--muted-2); }
.day__past { font-family: var(--f-body); font-size: .58rem; letter-spacing: .1em; text-transform: uppercase;
  color: var(--muted-2); background: var(--bg-2); padding: 3px 8px; border-radius: 999px; line-height: 1;
  box-shadow: inset 0 0 0 1px var(--line); }
.day__empty { color: var(--muted-2); font-size: .82rem; padding: 12px 2px; }

.slot {
  display: block; width: 100%; text-align: left; background: var(--surface-2); border-radius: var(--r); padding: 12px 13px;
  margin-bottom: 9px; box-shadow: inset 0 0 0 1px var(--line); transition: transform .3s var(--ease), box-shadow .3s; cursor: pointer;
}
.slot:hover, .slot:focus-visible { transform: translateY(-3px); background: var(--accent-soft); box-shadow: inset 0 0 0 1.5px var(--accent-line), var(--sh); }
.slot:hover .slot__n, .slot:focus-visible .slot__n { color: var(--accent); }
.slot__t { font-family: var(--f-body); font-weight: 600; font-size: .8rem; color: var(--accent); display: flex; align-items: center; gap: 7px; }
.slot__n { font-family: var(--f-body); font-weight: 600; font-size: 1rem; margin: 4px 0 2px; line-height: 1.15; }
.slot__m { font-family: var(--f-body); font-size: .76rem; color: var(--muted); }
.slot__cap { font-family: var(--f-body); font-size: .72rem; color: var(--muted-2); margin-top: 6px; }
.slot.is-full { opacity: .5; }
.slot.is-full .slot__cap { color: var(--error); }
.slot.is-kurz .slot__cap { color: var(--accent); font-weight: 600; }
/* proběhlé lekce: tlumené barvou (ne opacity) → zůstává čitelný kontrast (WCAG) */
.slot.is-past { cursor: default; background: var(--bg-2); }
.slot.is-past .slot__t, .slot.is-past .slot__n, .slot.is-past .slot__m, .slot.is-past .slot__cap { color: var(--muted-2); }
.slot.is-past:hover { transform: none; background: var(--bg-2); box-shadow: inset 0 0 0 1px var(--line); }
/* zrušený výskyt lekce (malá účast) */
.slot.is-cancelled { cursor: default; background: var(--bg-2); }
.slot.is-cancelled .slot__t, .slot.is-cancelled .slot__n, .slot.is-cancelled .slot__m { color: var(--muted-2); text-decoration: line-through; text-decoration-thickness: 1px; }
.slot.is-cancelled .slot__cap { color: #8A3327; font-weight: 700; }
.slot.is-cancelled:hover { transform: none; background: var(--bg-2); box-shadow: inset 0 0 0 1px var(--line); }
.slot.is-hidden { display: none; }

/* ============================================================
   CENÍK / PLÁNY
   ============================================================ */
.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px, 2vw, 24px); align-items: stretch; }
.plan {
  position: relative; background: var(--surface); border-radius: var(--r-lg); overflow: hidden;
  box-shadow: inset 0 0 0 1px var(--line); padding: clamp(26px, 3vw, 38px);
  display: flex; flex-direction: column; transition: transform .45s var(--ease), box-shadow .45s var(--ease); }
.plan > * { position: relative; z-index: 1; }
.plan:hover { transform: translateY(-3px); box-shadow: inset 0 0 0 1px var(--line-2), var(--sh); }
.plan--featured { box-shadow: inset 0 0 0 1px var(--accent-line), var(--sh); }
.plan__badge { align-self: flex-start; font-family: var(--f-mono); font-size: .66rem; letter-spacing: .16em;
  text-transform: uppercase; color: var(--accent); padding: .4em 0; margin-bottom: 16px; position: relative; }
.plan__badge::after { content: ""; display: block; width: 28px; height: 1px; background: var(--accent); margin-top: 8px; }
.plan__name { font-family: var(--f-display); font-weight: 600; font-size: 1.55rem; }
.plan__for { color: var(--muted); font-size: .92rem; margin-top: 8px; }
.plan__price { margin: 24px 0 4px; display: flex; align-items: baseline; gap: .35em; font-variant-numeric: tabular-nums; }
.plan__price b { font-family: var(--f-display); font-weight: 500; font-size: clamp(2.2rem, 3.6vw, 3rem); letter-spacing: -.02em; }
.plan__price .unit { color: var(--muted); font-size: .9rem; font-weight: 500; }
.plan__note { color: var(--muted); font-size: .86rem; margin-top: 6px; }
.plan__feats { margin: 24px 0; display: grid; gap: 13px; }
.plan__feats li { display: flex; gap: 11px; align-items: flex-start; font-size: .94rem; color: var(--muted); }
.plan__feats svg { width: 17px; height: 17px; color: var(--accent); flex: none; margin-top: 3px; }
.plan__cta { margin-top: auto; }

.ptable { width: 100%; border-collapse: collapse; }
.ptable th, .ptable td { text-align: left; padding: 17px 8px; border-bottom: 1px solid var(--line); }
.ptable th { font-family: var(--f-mono); font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted-2); font-weight: 500; }
.ptable td:last-child, .ptable th:last-child { text-align: right; font-variant-numeric: tabular-nums; }
.ptable .price { font-family: var(--f-display); font-weight: 600; white-space: nowrap; }
.ptable tr:hover td { background: rgba(var(--accent-rgb),.04); }

/* ============================================================
   TRENÉŘI
   ============================================================ */
.trainers { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(18px, 2.4vw, 28px); }
.trainer { position: relative; border-radius: var(--r-lg); overflow: hidden; background: var(--surface);
  box-shadow: inset 0 0 0 1px var(--line); }
.trainer__photo { aspect-ratio: 3/4; position: relative; overflow: hidden;
  background: linear-gradient(160deg, #2A2417, #17140D); }
.trainer__photo img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(1) contrast(1.05);
  transition: filter .6s var(--ease), transform .8s var(--ease); }
.trainer:hover .trainer__photo img { filter: grayscale(0); transform: scale(1.04); }
.trainer__initials { position: absolute; inset: 0; display: grid; place-items: center;
  font-family: var(--f-display); font-weight: 500; font-size: 3.6rem; color: rgba(199,165,106,.5); }
.trainer__body { padding: 22px 24px 26px; }
.trainer__name { font-family: var(--f-display); font-weight: 600; font-size: 1.35rem; }
.trainer__role { color: var(--accent); font-family: var(--f-mono); font-size: .72rem; letter-spacing: .1em;
  text-transform: uppercase; margin-top: 6px; }
.trainer__bio { color: var(--muted); font-size: .92rem; margin-top: 14px; }
.trainer__tags { margin-top: 16px; display: flex; flex-wrap: wrap; gap: 7px; }

/* ============================================================
   RECENZE
   ============================================================ */
.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px, 2vw, 24px); }
.quote { position: relative; background: var(--surface); border-radius: var(--r-lg); padding: 32px;
  box-shadow: inset 0 0 0 1px var(--line); display: flex; flex-direction: column; }
.quote > * { position: relative; z-index: 1; }
.quote__stars { color: var(--accent); letter-spacing: 3px; font-size: .85rem; }
.quote__txt { margin: 16px 0 20px; font-family: var(--f-display); font-weight: 400; font-size: 1.15rem; line-height: 1.5; flex: 1; }
.quote__who { display: flex; align-items: center; gap: 12px; }
.quote__av { width: 42px; height: 42px; border-radius: 50%; background: var(--accent-soft); color: var(--accent);
  display: grid; place-items: center; font-family: var(--f-display); font-weight: 600;
  box-shadow: inset 0 0 0 1px var(--accent-line); }
.quote__name { font-weight: 600; font-size: .92rem; }
.quote__role { color: var(--muted); font-size: .82rem; }

/* Recenze — plynulý auto-scroll marquee (posun doleva, nekonečná smyčka) */
.rmq { position: relative; overflow: hidden; margin-top: clamp(30px, 4vw, 48px);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent); }
.rmq__track { display: flex; width: max-content; animation: rmq 60s linear infinite; will-change: transform; }
.rmq__card { flex: 0 0 auto; width: clamp(282px, 80vw, 384px); margin: 0 clamp(16px, 2vw, 24px) 0 0; }
@keyframes rmq { from { transform: translateX(0); } to { transform: translateX(-33.3333%); } }
@media (prefers-reduced-motion: reduce) {
  .rmq { overflow-x: auto; -webkit-overflow-scrolling: touch; scroll-snap-type: x mandatory;
    -webkit-mask-image: none; mask-image: none; padding-inline: var(--gutter); }
  .rmq__track { animation: none; }
  .rmq__card { scroll-snap-align: start; }
  .rmq__card[aria-hidden="true"] { display: none; }  /* bez animace stačí každá recenze jednou */
}

/* ============================================================
   FAQ
   ============================================================ */
.faq { max-width: 800px; }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__q { width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 16px;
  text-align: left; padding: 24px 4px; font-family: var(--f-display); font-weight: 500; font-size: clamp(1.1rem, 1.8vw, 1.35rem); }
.faq__q .ic { width: 28px; height: 28px; flex: none; border-radius: 50%; display: grid; place-items: center;
  box-shadow: inset 0 0 0 1px var(--line-2); position: relative; transition: background .3s, box-shadow .3s; }
.faq__q .ic::before, .faq__q .ic::after { content: ""; position: absolute; background: var(--text); border-radius: 2px; transition: transform .4s var(--ease), background .3s; }
.faq__q .ic::before { width: 11px; height: 1.5px; }
.faq__q .ic::after { width: 1.5px; height: 11px; }
.faq__item.open .faq__q .ic { background: var(--accent); box-shadow: none; }
.faq__item.open .faq__q .ic::before, .faq__item.open .faq__q .ic::after { background: var(--accent-ink); }
.faq__item.open .faq__q .ic::after { transform: scaleY(0); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height .45s var(--ease); }
.faq__a p { padding: 0 4px 26px; color: var(--muted); }

/* ============================================================
   FORMULÁŘE
   ============================================================ */
.field { margin-bottom: 20px; }
.field label { display: block; font-weight: 500; font-size: .88rem; margin-bottom: 9px; }
.field .req { color: var(--accent); }
.field input, .field textarea, .field select {
  width: 100%; background: var(--surface); border-radius: var(--r); padding: 14px 16px;
  box-shadow: inset 0 0 0 1px var(--line-2); transition: box-shadow .3s, background .3s;
}
.field input::placeholder, .field textarea::placeholder { color: var(--muted-2); }
.field input:focus, .field textarea:focus, .field select:focus { outline: none;
  box-shadow: inset 0 0 0 1.5px var(--accent); background: var(--surface-2); }
.field input.err, .field textarea.err { box-shadow: inset 0 0 0 1.5px var(--error); }
.field textarea { resize: vertical; min-height: 120px; }
.field__err { color: var(--error); font-size: .82rem; margin-top: 7px; }
.field__hint { color: var(--muted-2); font-size: .8rem; margin-top: 7px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.pwd { position: relative; }
.pwd input { padding-right: 48px; }
.pwd__toggle { position: absolute; right: 6px; top: 50%; transform: translateY(-50%); width: 38px; height: 38px;
  border-radius: 8px; display: grid; place-items: center; color: var(--muted); }
.pwd__toggle:hover { color: var(--text); }
.pwd__toggle svg { width: 20px; height: 20px; }

.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.auth { min-height: calc(100vh - var(--nav-h)); display: grid; place-items: center; padding: calc(var(--nav-h) + 30px) var(--gutter) 60px; }
.auth__card { width: 100%; max-width: 440px; background: var(--surface); border-radius: var(--r-xl);
  box-shadow: inset 0 0 0 1px var(--line), var(--sh-lg); padding: clamp(30px, 4vw, 46px); position: relative; overflow: hidden; }
.auth__card > * { position: relative; z-index: 1; }
.auth__title { font-size: clamp(1.7rem, 3vw, 2.2rem); }
.auth__sub { color: var(--muted); margin-top: 10px; margin-bottom: 28px; }
.auth__alt { margin-top: 24px; text-align: center; color: var(--muted); font-size: .92rem; }
.auth__alt a { color: var(--accent); font-weight: 600; }
.auth__legal { margin-top: 18px; font-size: .78rem; color: var(--muted-2); text-align: center; line-height: 1.5; }
.auth__legal a { color: var(--muted); text-decoration: underline; }

.formmsg { padding: 13px 16px; border-radius: var(--r); font-size: .9rem; margin-bottom: 18px; display: none; }
.formmsg.show { display: block; }
.formmsg--err { background: var(--error-soft); color: #8a3327; box-shadow: inset 0 0 0 1px rgba(176,71,59,.3); }
.formmsg--ok { background: var(--accent-soft); color: var(--accent); box-shadow: inset 0 0 0 1px var(--accent-line); }

/* ============================================================
   ČLENSKÁ SEKCE
   ============================================================ */
.dash { padding-top: calc(var(--nav-h) + clamp(34px, 5vw, 60px)); padding-bottom: clamp(64px, 8vw, 104px); }
.dash__head { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: end; gap: 18px; margin-bottom: 40px; }
.dash__grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: clamp(18px, 2.4vw, 28px); align-items: start; }
.dash__panel { background: var(--surface); border-radius: var(--r-lg); box-shadow: inset 0 0 0 1px var(--line);
  padding: clamp(24px, 2.6vw, 32px); position: relative; overflow: hidden; }
.dash__panel > * { position: relative; z-index: 1; }
.dash__panel h2 { font-size: 1.2rem; margin-bottom: 20px; display: flex; align-items: center; gap: 10px; }
.dash__settings { display: grid; grid-template-columns: repeat(auto-fit, minmax(248px, 1fr)); gap: clamp(22px, 3vw, 40px); align-items: start; }
.dash__sub { font-family: var(--f-body); font-weight: 600; font-size: .72rem; letter-spacing: .1em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 14px; }
.dash__settings .field:last-of-type { margin-bottom: 18px; }
.pass { border-radius: var(--r); box-shadow: inset 0 0 0 1px var(--line-2); padding: 20px; margin-bottom: 14px; background: var(--surface-2); }
.pass--accent { background: linear-gradient(135deg, rgba(var(--accent-rgb),.12), rgba(var(--accent-rgb),.03)); box-shadow: inset 0 0 0 1px var(--accent-line); }
.pass__name { font-family: var(--f-display); font-weight: 600; }
.pass__big { font-family: var(--f-display); font-weight: 500; font-size: 2rem; line-height: 1; margin: 8px 0; }
.pass__meta { color: var(--muted); font-size: .84rem; }
.pass__bar { margin-top: 14px; height: 5px; border-radius: 99px; background: var(--surface-3); overflow: hidden; }
.pass__bar i { display: block; height: 100%; background: var(--accent); border-radius: 99px; }

.booking { display: flex; align-items: center; gap: 14px; padding: 16px 0; border-bottom: 1px solid var(--line); }
.booking:last-child { border-bottom: none; }
.booking__date { text-align: center; flex: none; width: 54px; }
.booking__day { font-family: var(--f-display); font-weight: 500; font-size: 1.6rem; line-height: 1; }
.booking__mon { font-family: var(--f-mono); font-size: .68rem; text-transform: uppercase; color: var(--muted); }
.booking__info { flex: 1; min-width: 0; }
.booking__name { font-family: var(--f-display); font-weight: 600; }
.booking__meta { color: var(--muted); font-size: .84rem; }
.booking__cancel { color: var(--muted); font-size: .82rem; font-weight: 500; padding: 7px 13px; border-radius: var(--r-pill);
  box-shadow: inset 0 0 0 1px var(--line-2); transition: color .3s, box-shadow .3s; }
.booking__cancel:hover { color: var(--error); box-shadow: inset 0 0 0 1px var(--error); }

.empty { text-align: center; padding: 32px 10px; color: var(--muted); }

/* ============================================================
   TOAST
   ============================================================ */
.toast-wrap { position: fixed; left: 50%; bottom: 26px; transform: translateX(-50%); z-index: 9999;
  display: flex; flex-direction: column; gap: 10px; width: min(420px, calc(100vw - 32px)); }
.toast { background: var(--surface); border-radius: var(--r); padding: 14px 16px; box-shadow: var(--sh-lg), inset 0 0 0 1px var(--line-2);
  display: flex; gap: 12px; align-items: center; font-size: .92rem; transform: translateY(14px); opacity: 0;
  transition: transform .4s var(--ease), opacity .4s; }
.toast.show { transform: none; opacity: 1; }
.toast__ic { width: 26px; height: 26px; flex: none; border-radius: 50%; display: grid; place-items: center; }
.toast--ok .toast__ic { background: var(--accent); color: var(--accent-ink); }
.toast--err .toast__ic { background: var(--error); color: #fff; }
.toast__ic svg { width: 16px; height: 16px; }

/* ============================================================
   CALLOUT / CTA
   ============================================================ */
.callout { position: relative; overflow: hidden; border-radius: var(--r-xl); padding: clamp(40px, 6vw, 80px);
  text-align: center; }
.callout > * { position: relative; z-index: 1; }
.callout::before { content: ""; position: absolute; inset: 0; z-index: 0;
  background: radial-gradient(60% 80% at 50% 0%, rgba(var(--accent-rgb),.16), transparent 70%); }
.callout__cta { margin-top: 30px; display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

/* CTA s fotkou na pozadí */
.callout--photo::before { display: none; }
.callout__bg { position: absolute; inset: 0; z-index: 0; }
.callout__bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 32%; }
.callout__bg::after { content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(199,165,106,.10), rgba(20,17,11,.80) 52%, rgba(20,17,11,.92)); }

.callout-mini { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 24px;
  background: var(--surface); border-radius: var(--r-lg); padding: clamp(26px, 3vw, 38px); box-shadow: inset 0 0 0 1px var(--line); }

.info-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.info { display: flex; gap: 14px; align-items: flex-start; background: var(--surface); border-radius: var(--r-lg);
  padding: 22px 24px; box-shadow: inset 0 0 0 1px var(--line); transition: transform .35s var(--ease), box-shadow .35s; }
.info:hover { transform: translateY(-2px); box-shadow: inset 0 0 0 1px var(--line-2), var(--sh); }
.info__ic { width: 44px; height: 44px; border-radius: 10px; flex: none; display: grid; place-items: center;
  background: var(--accent-soft); color: var(--accent); box-shadow: inset 0 0 0 1px var(--accent-line); }
.info__ic svg { width: 21px; height: 21px; }
.info__k { font-family: var(--f-mono); font-size: .7rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted-2); }
.info__v { font-family: var(--f-display); font-weight: 600; margin-top: 4px; }
.info__v small { display: block; font-family: var(--f-body); font-weight: 400; color: var(--muted); font-size: .85rem; }

.mapframe { width: 100%; height: clamp(360px, 44vw, 520px); border: none; border-radius: var(--r-lg);
  box-shadow: inset 0 0 0 1px var(--line); filter: grayscale(.3) sepia(.12) contrast(.96); }

.hours { display: grid; gap: 0; }
.hours__row { display: flex; justify-content: space-between; padding: 13px 4px; border-bottom: 1px solid var(--line); font-size: .94rem; }
.hours__row span:last-child { font-variant-numeric: tabular-nums; color: var(--muted); }
.hours__row.is-today { color: var(--accent); }
.hours__row.is-today span:last-child { color: var(--accent); }

/* ============================================================
   FOOTER (espresso = .invert)
   ============================================================ */
.footer { position: relative; padding-top: clamp(60px, 8vw, 100px); overflow: hidden; }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: clamp(28px, 4vw, 52px); }
.footer__brand .brand { font-size: 1.5rem; }
.footer__about { color: var(--muted); font-size: .92rem; margin-top: 18px; max-width: 32ch; }
.footer__soc { display: flex; gap: 10px; margin-top: 22px; }
.footer__soc a { width: 40px; height: 40px; border-radius: 10px; display: grid; place-items: center; color: var(--muted);
  box-shadow: inset 0 0 0 1px var(--line-2); transition: color .3s, background .3s, transform .3s; }
.footer__soc a:hover { color: var(--accent-ink); background: var(--accent); transform: translateY(-2px); }
.footer__soc svg { width: 19px; height: 19px; }
.footer__col h4 { font-family: var(--f-mono); font-size: .72rem; letter-spacing: .16em; text-transform: uppercase;
  color: var(--muted-2); font-weight: 500; margin-bottom: 18px; }
.footer__col a { display: block; padding: 7px 0; color: var(--muted); font-size: .94rem; transition: color .3s; }
.footer__col a:hover { color: var(--accent); }
.footer__bottom { margin-top: clamp(44px, 5vw, 70px); padding-block: 28px; border-top: 1px solid var(--line);
  display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; align-items: center; color: var(--muted-2); font-size: .85rem; }
.footer__bottom a { color: var(--muted); }
.footer__bottom a:hover { color: var(--accent); }
.footer__wordmark { position: relative; margin-top: 30px; width: 100vw; margin-left: calc(50% - 50vw);
  font-family: var(--f-body); font-weight: 700;
  font-size: clamp(3.4rem, 19vw, 16rem); line-height: .8; letter-spacing: -.03em;
  color: transparent; -webkit-text-stroke: 1px var(--line-2); text-align: center; white-space: nowrap;
  user-select: none; pointer-events: none; overflow: hidden; }

/* ============================================================
   STICKY MOBILNÍ LIŠTA
   ============================================================ */
.mobilebar { position: fixed; left: 12px; right: 12px; bottom: 12px; z-index: 80; display: none; gap: 10px;
  background: rgba(251,248,241,.9); backdrop-filter: blur(12px); padding: 9px; border-radius: var(--r-lg);
  box-shadow: var(--sh-lg), inset 0 0 0 1px var(--line-2);
  transform: translateY(140%); transition: transform .5s var(--ease); }
.mobilebar.show { transform: none; }
.mobilebar .btn { flex: 1; padding: .85em 1em; font-size: .9rem; }
body.has-cookiebar .mobilebar.show { transform: translateY(-92px); }

/* ============================================================
   DEKORATIVNÍ TVARY
   ============================================================ */
.ring { position: absolute; border-radius: 50%; border: 1px solid var(--line-2); pointer-events: none; z-index: 0; }
.ring--accent { border-color: var(--accent-line); }
.ring--spin { animation: spin 80s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.bignum { font-family: var(--f-display); font-weight: 500;
  font-size: clamp(3.5rem, 9vw, 8rem); line-height: .8; color: transparent;
  -webkit-text-stroke: 1px var(--accent-line); user-select: none; pointer-events: none; }
.vlabel { writing-mode: vertical-rl; font-family: var(--f-mono); font-size: .72rem; letter-spacing: .3em;
  text-transform: uppercase; color: var(--muted-2); }
.arc { position: absolute; pointer-events: none; z-index: 0; opacity: .5; }

/* ============================================================
   RŮZNÉ / utility
   ============================================================ */
.center { text-align: center; }
.mt-s { margin-top: 14px; } .mt-m { margin-top: 28px; } .mt-l { margin-top: 48px; }
.hide { display: none !important; }
.badge-soft { display: inline-flex; align-items: center; gap: 8px; padding: 8px 15px; border-radius: var(--r-pill);
  background: var(--surface); color: var(--accent); font-family: var(--f-mono); font-size: .74rem;
  letter-spacing: .1em; text-transform: uppercase; box-shadow: inset 0 0 0 1px var(--accent-line); }
.float { animation: float 8s ease-in-out infinite; }
@keyframes float { 0%,100%{ transform: translateY(0) } 50%{ transform: translateY(-10px) } }

.prose { max-width: 68ch; }
.prose p { margin-bottom: 20px; color: var(--muted); font-size: 1.05rem; }
.prose h2 { font-size: clamp(1.5rem, 2.6vw, 2.1rem); margin: 40px 0 18px; }
.prose h3 { font-size: 1.25rem; margin: 30px 0 12px; }
.prose ul { margin: 0 0 20px; display: grid; gap: 11px; }
.prose ul li { display: flex; gap: 12px; color: var(--muted); }
.prose ul li::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--accent); margin-top: 10px; flex: none; }
.breadcrumb { font-family: var(--f-mono); font-size: .76rem; color: var(--muted-2); letter-spacing: .06em; }
.breadcrumb a:hover { color: var(--accent); }

/* ============================================================
   MODAL
   ============================================================ */
.modal-back { position: fixed; inset: 0; z-index: 200; background: rgba(27,26,22,.5);
  backdrop-filter: blur(5px); display: grid; place-items: center; padding: 20px;
  opacity: 0; visibility: hidden; transition: opacity .3s var(--ease), visibility .3s; }
.modal-back.show { opacity: 1; visibility: visible; }
.modal { width: 100%; max-width: 420px; background: var(--surface); border-radius: var(--r-xl);
  box-shadow: var(--sh-lg), inset 0 0 0 1px var(--line-2); padding: clamp(26px, 4vw, 36px);
  transform: translateY(16px) scale(.98); transition: transform .4s var(--ease); position: relative; }
.modal-back.show .modal { transform: none; }
.modal__close { position: absolute; top: 14px; right: 14px; width: 38px; height: 38px; border-radius: 50%;
  display: grid; place-items: center; color: var(--muted); box-shadow: inset 0 0 0 1px var(--line-2); }
.modal__close:hover { color: var(--text); }
.modal__k { font-family: var(--f-mono); font-size: .7rem; letter-spacing: .16em; text-transform: uppercase; color: var(--accent); }
.modal__title { font-family: var(--f-display); font-weight: 600; font-size: 1.6rem; margin: 8px 0 16px; }
.modal__rows { display: grid; gap: 1px; background: var(--line); border-radius: var(--r); overflow: hidden; margin-bottom: 20px; }
.modal__row { display: flex; justify-content: space-between; gap: 12px; background: var(--surface-2); padding: 12px 14px; font-size: .92rem; }
.modal__row span:first-child { color: var(--muted); }
.modal__row span:last-child { font-weight: 600; text-align: right; }
.modal__actions { display: grid; gap: 10px; }

/* ============================================================
   LEKCE — detail + figura svalů
   ============================================================ */
.lesson { position: relative; background: var(--surface); border-radius: var(--r-lg); overflow: hidden;
  box-shadow: inset 0 0 0 1px var(--line); padding: clamp(24px, 2.6vw, 34px); }
.lesson > * { position: relative; z-index: 1; }
.lesson__head { display: flex; gap: 18px; align-items: flex-start; }
.lesson__ic { width: 50px; height: 50px; flex: none; border-radius: 11px; display: grid; place-items: center;
  background: var(--accent-soft); color: var(--accent); box-shadow: inset 0 0 0 1px var(--accent-line); }
.lesson__ic svg { width: 25px; height: 25px; }
.lesson__name { font-family: var(--f-display); font-weight: 600; font-size: 1.5rem; line-height: 1.1; }
.lesson__sub { color: var(--accent); font-family: var(--f-mono); font-size: .7rem; letter-spacing: .08em; text-transform: uppercase; margin-top: 6px; }
.lesson__txt { color: var(--muted); margin-top: 16px; font-size: 1.02rem; }
.lesson__tags { margin-top: 16px; display: flex; flex-wrap: wrap; gap: 8px; }

.lesson details { margin-top: 20px; border-top: 1px solid var(--line); }
.lesson summary { list-style: none; cursor: pointer; display: inline-flex; align-items: center; gap: 8px;
  padding-top: 18px; font-weight: 600; color: var(--accent); font-size: .92rem; }
.lesson summary::-webkit-details-marker { display: none; }
.lesson summary .chev { width: 18px; height: 18px; transition: transform .4s var(--ease); }
.lesson details[open] summary .chev { transform: rotate(180deg); }
.lesson__detail { display: grid; grid-template-columns: 150px 1fr; gap: clamp(20px, 3vw, 36px); padding: 22px 0 6px; align-items: start; }
.lesson__figure { display: grid; place-items: center; gap: 10px; padding: 16px; background: var(--bg-2);
  border-radius: var(--r); box-shadow: inset 0 0 0 1px var(--line); }
.lesson__figcap { font-family: var(--f-mono); font-size: .64rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted-2); text-align: center; }
.lesson__info h3 { font-family: var(--f-mono); font-size: .7rem; letter-spacing: .14em; text-transform: uppercase; color: var(--accent); margin: 0 0 8px; }
.lesson__info h3:not(:first-child) { margin-top: 20px; }
.lesson__info p { color: var(--muted); font-size: .96rem; }
.lesson__muscles { display: flex; flex-wrap: wrap; gap: 7px; }

/* Anatomická postava (přední + zadní pohled). Data: HichamELBSI/react-native-body-highlighter (MIT). */
.bodyfig { width: 100%; max-width: 300px; height: auto; display: block; margin: 0 auto;
  stroke-linejoin: round; stroke-linecap: round; }
.bodyfig .fig-base { fill: #D4C9B1; stroke: none; }
.bodyfig .fig-outline { fill: none; stroke: #8C8068; stroke-width: 3.2; }
.bodyfig .b { fill: #DBD2BC; stroke: #B6AA8E; stroke-width: 1.5; }
.bodyfig .m { fill: #E1D8C3; stroke: #B6AA8E; stroke-width: 1.5; transition: fill .5s var(--ease); }
.bodyfig[data-on~="shoulders"] .m-shoulders,
.bodyfig[data-on~="chest"]     .m-chest,
.bodyfig[data-on~="core"]      .m-core,
.bodyfig[data-on~="arms"]      .m-arms,
.bodyfig[data-on~="back"]      .m-back,
.bodyfig[data-on~="glutes"]    .m-glutes,
.bodyfig[data-on~="legs"]      .m-legs,
.bodyfig[data-on~="calves"]    .m-calves { fill: var(--accent); stroke: #5E471F; }

/* KDE NÁS NAJDEŠ */
.findus { display: grid; grid-template-columns: 1fr 1.2fr; gap: clamp(24px, 3vw, 48px); align-items: center; }
.findus__map { position: relative; }
/* Mapa — klik pro interakci: vrstva přes iframe, takže scroll posouvá stránku (mapa „neuteče") */
.mapwrap { position: relative; border-radius: var(--r-lg); overflow: hidden; }
.mapwrap .mapframe { pointer-events: none; display: block; }
.mapwrap.is-live .mapframe { pointer-events: auto; }
.mapwrap__veil { position: absolute; inset: 0; z-index: 1; border: 0; padding: 0; cursor: pointer;
  background: transparent; display: grid; place-items: center; transition: background .25s var(--ease); }
.mapwrap__veil:hover, .mapwrap__veil:focus-visible { background: rgba(27,26,22,.05); outline: none; }
.mapwrap__veil span { background: var(--text); color: var(--surface); font-size: .82rem; font-weight: 600;
  padding: 9px 16px; border-radius: 999px; box-shadow: var(--sh); opacity: 0; transform: translateY(8px);
  transition: opacity .25s, transform .25s; }
.mapwrap__veil:hover span, .mapwrap__veil:focus-visible span { opacity: 1; transform: none; }
.mapwrap.is-live .mapwrap__veil { display: none; }
.mapwrap__open { position: absolute; top: 12px; right: 12px; z-index: 2; background: var(--surface); color: var(--text);
  font-size: .78rem; font-weight: 600; padding: 7px 12px; border-radius: 999px;
  box-shadow: var(--sh), inset 0 0 0 1px var(--line); text-decoration: none; }
.mapwrap__open:hover, .mapwrap__open:focus-visible { color: var(--accent); }
@media (prefers-reduced-motion: reduce) { .mapwrap__veil span { transition: none; } }

/* GALERIE (reálné fotky studia) */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(10px, 1.4vw, 16px); }
.gallery__item { position: relative; overflow: hidden; border-radius: var(--r-lg); aspect-ratio: 4/3;
  box-shadow: inset 0 0 0 1px var(--line); background: var(--surface-2); }
.gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform .9s var(--ease); }
.gallery__item:hover img { transform: scale(1.05); }
.gallery__item--tall { grid-row: span 2; aspect-ratio: 3/4; }

/* foto-banner nahoře v kartě lekce */
.lesson__media { margin: calc(-1 * clamp(24px, 2.6vw, 34px)) calc(-1 * clamp(24px, 2.6vw, 34px)) clamp(16px, 2vw, 22px);
  aspect-ratio: 21/8; overflow: hidden; background: var(--surface-2); }
.lesson__media img { width: 100%; height: 100%; object-fit: cover; object-position: center 35%; transition: transform .9s var(--ease); }
.lesson:hover .lesson__media img { transform: scale(1.04); }

/* COOKIE LIŠTA */
.cookiebar { position: fixed; left: 12px; right: 12px; bottom: 12px; z-index: 250; max-width: 560px; margin-inline: auto;
  background: var(--surface); border-radius: var(--r-lg); box-shadow: var(--sh-lg), inset 0 0 0 1px var(--line-2);
  padding: 16px 18px; display: flex; gap: 14px; align-items: center; flex-wrap: wrap;
  transform: translateY(160%); transition: transform .6s var(--ease); }
.cookiebar.show { transform: none; }
.cookiebar__txt { flex: 1; min-width: 200px; font-size: .88rem; color: var(--muted); }
.cookiebar__txt a { color: var(--accent); text-decoration: underline; }
.cookiebar__btn { flex: none; }

/* ============================================================
   RESPONZIVITA
   ============================================================ */
@media (max-width: 1040px) {
  .hero { min-height: auto; display: block; }
  .hero__grid { grid-template-columns: 1fr; }
  .hero__visual { max-width: 440px; margin-inline: auto; order: -1; }
  .hero__lead { max-width: 54ch; }
  .footer__grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}
@media (max-width: 920px) {
  .nav__links { display: none; }
  .nav__login { display: none; }
  .nav__cta .btn--primary { display: none; }
  .nav__burger { display: block; }
  .svc-grid, .plans, .trainers, .quotes, .gallery { grid-template-columns: repeat(2, 1fr); }
  .gallery__item--tall { grid-row: auto; aspect-ratio: 4/3; }
  .sched__days { grid-template-columns: 1fr; }
  .day { min-height: auto; }
  .dash__grid { grid-template-columns: 1fr; }
  .findus { grid-template-columns: 1fr; }
  .mobilebar { display: flex; }
}
@media (max-width: 620px) {
  :root { --nav-h: 68px; }
  .svc-grid, .plans, .trainers, .quotes, .info-grid, .statbar, .field-row { grid-template-columns: 1fr; }
  .statbar__i + .statbar__i::before { display: none; }
  .statbar__i { border-top: 1px solid var(--line); }
  .statbar__i:first-child { border-top: none; }
  .hero__card { position: static; width: 100%; margin-top: 16px; }
  .hero__visual { max-width: 100%; }
  .callout-mini { flex-direction: column; align-items: stretch; text-align: center; }
  .callout-mini .btn { width: 100%; }
  .lesson__detail { grid-template-columns: 1fr; justify-items: center; }
  .lesson__figure { max-width: 200px; }
}

/* ---------- Právní stránky (GDPR, obchodní podmínky) ---------- */
.legal { padding: calc(var(--nav-h) + 44px) 0 76px; }
.legal__wrap { max-width: var(--maxw-narrow); margin: 0 auto; padding-inline: var(--gutter); }
.legal__title { font-family: var(--f-display); font-weight: 500; font-size: clamp(1.9rem, 4vw, 2.8rem);
  line-height: 1.08; margin: 10px 0 14px; }
.legal__lead { font-size: 1.08rem; color: var(--muted); max-width: 62ch; margin-bottom: 6px; }
.legal h2 { font-family: var(--f-display); font-weight: 500; font-size: 1.32rem; margin: 34px 0 10px; }
.legal p { margin: 0 0 12px; line-height: 1.72; color: var(--text); }
.legal ul { margin: 0 0 16px; padding-left: 1.2em; }
.legal li { margin: 6px 0; line-height: 1.6; color: var(--text); }
.legal a { color: var(--accent); text-decoration: underline; text-underline-offset: 2px; }
.legal code { font-family: var(--f-mono); font-size: .85em; background: var(--surface-2);
  padding: 1px 6px; border-radius: 5px; }
.legal__meta { color: var(--muted); font-size: .92rem; }
.legal__back { margin-top: 34px; }

/* ---------- Hero: hodnocení (social proof u CTA) ---------- */
.hero__rating { display: inline-flex; align-items: center; gap: 10px; margin-top: 18px;
  color: var(--muted); font-size: .92rem; text-decoration: none; transition: color .3s; }
.hero__rating:hover { color: var(--text); }
.hero__rating strong { color: var(--text); font-weight: 700; }
.hero__stars { color: var(--accent); letter-spacing: 2px; font-size: .95rem; white-space: nowrap; }
