/* ============================================================
   HAPPY DRIVE — autoškola Bratislava
   Redizajn hlavnej stránky · lokálny statický prototyp
   Farebná schéma zachovaná z pôvodného brandu:
     magenta #ff32ff (presná farba loga)  ·  oranžová #ee7a2b (výcvikové autá)
     text NA magente je tmavý (--on-pink) — ako čierne linky v logu
   ============================================================ */

/* ---------- Fonty (self-hosted, offline-friendly) ---------- */
@font-face {
  font-family: 'Bricolage Grotesque';
  font-style: normal;
  font-weight: 600 800;
  font-display: swap;
  src: url('../fonts/bricolage-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Bricolage Grotesque';
  font-style: normal;
  font-weight: 600 800;
  font-display: swap;
  src: url('../fonts/bricolage-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Hanken Grotesk';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('../fonts/hanken-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Hanken Grotesk';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('../fonts/hanken-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* ---------- Tokeny ---------- */
:root {
  --ink: #1b1b1f;
  --ink-soft: #45454d;
  --muted: #74727b;
  --paper: #ffffff;
  --paper-2: #faf7f5;
  --paper-3: #f3efec;
  --line: #e9e2de;
  --line-strong: #d8cec8;

  --pink: #ff32ff;             /* PRESNÁ farba loga (#ff33ff) */
  --pink-600: #ec1aec;         /* hover — o čosi tmavšia */
  --pink-ink: #ff32ff;         /* ružový text = tá istá farba loga */
  --pink-wash: #ffe8ff;        /* jemné ružové pozadie */
  --pink-wash-2: #ffd4ff;
  --on-pink: #1b1b1f;          /* text NA ružovej (buttony, výber) — tmavý, ako čierne linky v logu */

  --amber: #ee7a2b;             /* oranžová z výcvikových áut — používaj striedmo */
  --amber-ink: #b4560f;

  --maxw: 1180px;
  --gutter: clamp(20px, 5vw, 64px);
  --radius: 14px;
  --radius-lg: 22px;

  --ff-display: 'Bricolage Grotesque', 'Hanken Grotesk', system-ui, sans-serif;
  --ff-body: 'Hanken Grotesk', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  /* žiadny monospace — pôsobil „strojovo"; label/číselné prvky idú v Hanken */
  --ff-mono: 'Hanken Grotesk', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;

  --shadow-sm: 0 1px 2px rgba(27,27,31,.06), 0 2px 8px rgba(27,27,31,.05);
  --shadow-md: 0 6px 20px rgba(27,27,31,.09), 0 2px 6px rgba(27,27,31,.06);
  --shadow-pink: 0 10px 26px rgba(255,50,255,.32);

  /* žiariaci magenta okraj kariet (podľa loga #ff32ff) */
  --glow-border: rgba(255, 50, 255, .5);
  --glow: 0 0 0 1px rgba(255,50,255,.10), 0 8px 26px rgba(255,50,255,.20), 0 2px 8px rgba(255,50,255,.10);
  --glow-strong: 0 0 0 1px rgba(255,50,255,.16), 0 14px 40px rgba(255,50,255,.34), 0 3px 12px rgba(255,50,255,.16);

  --header-h: 68px;
}

/* nič nesmie pretekať cez šírku viewportu */
html, body { max-width: 100%; }

/* ---------- Reset / základ ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
}
body {
  font-family: var(--ff-body);
  font-size: 1.0625rem;
  line-height: 1.62;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, picture, svg, video { display: block; max-width: 100%; height: auto; }
button, input, select, textarea { font: inherit; color: inherit; }
a { color: var(--pink-ink); text-decoration-thickness: 1.5px; text-underline-offset: 3px; }
a:hover { color: var(--pink-600); }
h1, h2, h3, h4 {
  font-family: var(--ff-display);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.02em;
  color: var(--ink);
  text-wrap: balance;
}
p { text-wrap: pretty; }
::selection { background: var(--pink); color: var(--on-pink); }

:focus-visible {
  outline: 3px solid var(--ink);
  outline-offset: 3px;
  border-radius: 3px;
}
[data-theme="dark"] :focus-visible,
.section--dark :focus-visible { outline-color: #fff; }

.skip-link {
  position: fixed; left: 12px; top: -60px;
  z-index: 200;
  background: var(--ink); color: #fff;
  padding: 10px 16px; border-radius: 10px;
  transition: top .16s ease;
}
.skip-link:focus { top: 12px; color: #fff; }

/* ---------- Layout util ---------- */
.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.section { padding-block: clamp(54px, 7vw, 96px); position: relative; }
.section--tight { padding-block: clamp(36px, 4.5vw, 52px); }
.section--paper2 { background: var(--paper-2); }
.section--dark {
  background: var(--ink);
  color: #efeef0;
}
.section--dark h1, .section--dark h2, .section--dark h3 { color: #fff; }
.section--dark a { color: var(--pink); }

.eyebrow {
  font-weight: 700;
  font-size: .82rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--pink-ink);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 22px; height: 3px; border-radius: 2px;
  background: var(--pink);
}
.section--dark .eyebrow { color: var(--pink); }

.section-head { max-width: 40rem; margin-bottom: clamp(28px, 4vw, 46px); }
.section-head h2 { font-size: clamp(1.85rem, 3.6vw, 2.7rem); margin-top: 12px; text-wrap: balance; }
.section-head p { margin-top: 14px; color: var(--ink-soft); font-size: 1.06rem; max-width: 44ch; }

/* ---------- Ručne kreslené akcenty (SVG inline) ---------- */
.scribble-underline { position: relative; white-space: nowrap; }
.scribble-underline > svg {
  position: absolute;
  left: -2%; right: -2%; bottom: -0.42em;
  width: 104%; height: .4em;
  color: var(--pink);
  overflow: visible;
}
.ink-mark { color: var(--pink); }

/* ---------- Tlačidlá ---------- */
.btn {
  --bg: var(--pink);
  --fg: var(--on-pink);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 26px;
  border: 2px solid var(--bg);
  border-radius: 999px;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--ff-body);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: -0.01em;
  line-height: 1;
  cursor: pointer;
  text-decoration: none;
  transition: transform .14s ease, box-shadow .18s ease, background-color .18s ease;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn--primary:hover { background: var(--pink-600); border-color: var(--pink-600); transform: translateY(-2px); box-shadow: var(--shadow-pink); }
.btn--primary:active { transform: translateY(0); }
.btn--ghost {
  --bg: transparent;
  --fg: var(--ink);
  border-color: var(--ink);
}
.btn--ghost:hover { background: var(--pink); color: var(--on-pink); border-color: var(--pink); transform: translateY(-2px); box-shadow: var(--shadow-pink); }
.btn--primary:hover { color: var(--on-pink); }
.btn--ondark { --bg: var(--pink); --fg: var(--on-pink); }
.btn--ondark.btn--ghost { --fg: #fff; border-color: rgba(255,255,255,.5); }
.btn--ondark.btn--ghost:hover { background: var(--pink); color: var(--on-pink); border-color: var(--pink); }
.btn--sm { padding: 11px 18px; font-size: .92rem; }
.btn--block { width: 100%; justify-content: center; }

.linky {
  font-weight: 700;
  color: var(--pink-ink);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.linky svg { width: 16px; height: 16px; transition: transform .16s ease; }
.linky:hover svg { transform: translateX(4px); }
.section--dark .linky { color: var(--pink); }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: transparent;
  transition: background-color .2s ease, box-shadow .2s ease, border-color .2s ease;
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled {
  background: rgba(255,255,255,.9);
  backdrop-filter: saturate(1.4) blur(8px);
  border-bottom-color: var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: var(--header-h);
}
.brand { display: inline-flex; align-items: center; flex-shrink: 0; }
.brand img { height: 34px; width: auto; }
.brand:focus-visible { outline-offset: 6px; }

.nav-primary { display: none; }
.nav-primary ul { list-style: none; padding: 0; display: flex; gap: clamp(14px, 2vw, 30px); }
.nav-primary a {
  font-weight: 600;
  font-size: .96rem;
  color: var(--ink);
  text-decoration: none;
  padding: 8px 2px;
  position: relative;
}
.nav-primary a::after {
  content: "";
  position: absolute; left: 0; right: 100%; bottom: 2px;
  height: 2px; background: var(--pink);
  transition: right .2s ease;
}
.nav-primary a:hover::after, .nav-primary a.is-active::after { right: 0; }

.header-actions { display: flex; align-items: center; gap: 12px; }

.lang-toggle {
  display: inline-flex;
  border: 1.5px solid var(--line-strong);
  border-radius: 999px;
  overflow: hidden;
  font-family: var(--ff-mono);
  font-size: .8rem;
  font-weight: 500;
}
.lang-toggle a {
  padding: 6px 12px;
  text-decoration: none;
  color: var(--muted);
  background: #fff;
}
.lang-toggle a[aria-current="true"] { background: var(--ink); color: #fff; }
.lang-toggle a:not([aria-current="true"]):hover { color: var(--ink); }

/* prepínač jazyka (SK / EN / UA) */
.lang-switch {
  display: inline-flex;
  flex-shrink: 0;
  border: 1.5px solid var(--line-strong);
  border-radius: 999px;
  overflow: hidden;
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: .02em;
}
.lang-switch a {
  padding: 6px 10px;
  text-decoration: none;
  color: var(--muted);
  background: #fff;
  line-height: 1;
}
.lang-switch a + a { border-left: 1.5px solid var(--line-strong); }
.lang-switch a[aria-current="true"] { background: var(--pink); color: var(--on-pink); }
.lang-switch a:not([aria-current="true"]):hover { color: var(--ink); }
.landing-header .lang-switch { margin-left: auto; }
@media (max-width: 400px) { .lang-switch a { padding: 6px 8px; font-size: .72rem; } }

.menu-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: none;
  border: 1.5px solid var(--line-strong);
  border-radius: 999px;
  padding: 8px 14px;
  font-weight: 700;
  font-size: .9rem;
  cursor: pointer;
}
.menu-btn svg { width: 16px; height: 16px; }
.header-actions .btn { display: none; }

/* mobilné menu overlay */
.menu-sheet[hidden] { display: none; }
.menu-sheet {
  position: fixed;
  inset: 0;
  z-index: 150;
  background: var(--paper);
  padding: 24px var(--gutter) 40px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transform: translateY(-100%);
  transition: transform .28s cubic-bezier(.4,0,.2,1);
  overflow-y: auto;
}
.menu-sheet.is-open { transform: translateY(0); }
.menu-sheet__top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 22px; }
.menu-sheet__top img { height: 30px; width: auto; flex: 0 0 auto; object-fit: contain; }
.menu-sheet a.msheet-link {
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: 1.6rem;
  letter-spacing: -0.02em;
  color: var(--ink);
  text-decoration: none;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.menu-sheet a.msheet-link span { font-family: var(--ff-mono); font-size: .8rem; font-weight: 500; color: var(--muted); letter-spacing: .1em; }
.menu-close {
  background: none; border: 1.5px solid var(--line-strong);
  border-radius: 999px; width: 40px; height: 40px;
  display: grid; place-items: center; cursor: pointer;
}
.menu-close svg { width: 18px; height: 18px; }
.menu-sheet__cta { margin-top: 22px; display: grid; gap: 10px; }

/* ---------- HERO ---------- */
.hero { position: relative; padding-top: clamp(22px, 4.5vw, 44px); padding-bottom: clamp(36px, 5vw, 60px); overflow: hidden; }
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(24px, 4vw, 44px);
  align-items: center;
}
.hero-grid > * { min-width: 0; }
.hero-copy { position: relative; z-index: 2; }
.hero h1 {
  font-size: clamp(2.35rem, 5.4vw, 3.75rem);
  letter-spacing: -0.025em;
  margin-top: 18px;
}
.hero h1 .line2 { display: block; color: var(--pink); }
.hero-sub {
  margin-top: 22px;
  font-size: clamp(1.05rem, 1.6vw, 1.22rem);
  color: var(--ink-soft);
  max-width: 42ch;
}
.hero-cta {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}
.hero-cta .btn { flex: 1 1 auto; justify-content: center; }
@media (min-width: 480px) {
  .hero-cta .btn { flex: 0 0 auto; }
}
.hero-call {
  font-family: var(--ff-mono);
  font-size: .92rem;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
  display: inline-flex; align-items: center; gap: 8px;
}
.hero-call svg { width: 16px; height: 16px; color: var(--pink); }
.hero-call:hover { color: var(--pink-ink); }

.course-pill {
  margin-top: 26px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: var(--paper);
  border: 1.5px solid var(--line-strong);
  border-radius: 18px;
  padding: 13px 18px;
  box-shadow: var(--shadow-sm);
  font-size: .95rem;
  max-width: 100%;
  width: fit-content;
  color: inherit;
  text-decoration: none;
  transition: border-color .16s ease, box-shadow .18s ease, transform .16s ease;
}
a.course-pill:hover {
  border-color: var(--pink);
  box-shadow: var(--glow);
  transform: translateY(-2px);
}
a.course-pill:focus-visible {
  outline: 2px solid var(--pink);
  outline-offset: 3px;
}
a.course-pill::after {
  content: "→";
  align-self: center;
  margin-left: 2px;
  color: var(--pink-ink);
  font-weight: 700;
  transition: transform .16s ease;
}
a.course-pill:hover::after { transform: translateX(3px); }
.course-pill .dot {
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 0 0 rgba(238,122,43,.55);
  flex-shrink: 0;
  margin-top: 7px;
  animation: pulse 2.4s ease-out infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(238,122,43,.5); }
  70% { box-shadow: 0 0 0 9px rgba(238,122,43,0); }
  100% { box-shadow: 0 0 0 0 rgba(238,122,43,0); }
}
.course-pill b { font-weight: 700; }
.course-pill .next { display: block; margin-top: 3px; color: var(--muted); font-family: var(--ff-mono); font-size: .8rem; }

.hero-visual { position: relative; z-index: 1; align-self: center; }
.hero-blob {
  position: absolute;
  inset: -10% -4% -14% -4%;
  z-index: -1;
  color: var(--pink-wash);
  pointer-events: none;
}
.hero-blob svg { width: 100%; height: 100%; }
.hero-car {
  width: 100%;
  margin-inline: auto;
  filter: drop-shadow(0 26px 30px rgba(27,27,31,.18));
  animation: floaty 6s ease-in-out infinite;
}
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
.hero-doodle-arrow {
  position: absolute;
  width: 74px;
  color: var(--pink);
  left: -4px;
  bottom: -30px;
  transform: rotate(-8deg);
}
@media (max-width: 620px) {
  .hero-doodle-arrow { display: none; }
  .hero-visual { max-width: 420px; margin-inline: auto; }
  .hero-blob { inset: -4% 4% -6% 4%; }
}

/* spoločné: nič v mriežkach nech nepretečie */
.courses-grid > *,
.why-grid > *,
.reviews-grid > *,
.contact-grid > *,
.english-grid > *,
.footer-grid > *,
.chooser > *,
.faq-quick > * { min-width: 0; }

/* ---------- Výber: „na čo chceš vodičák?" ---------- */
.chooser { display: grid; grid-template-columns: minmax(0, 1fr); gap: 12px; }
.choice {
  display: grid;
  grid-template-columns: 44px 1fr auto;
  grid-template-areas:
    "icon name  arrow"
    "icon meta  meta"
    "icon price price";
  align-items: center;
  column-gap: 14px; row-gap: 2px;
  padding: 16px 18px;
  border: 1.5px solid var(--glow-border);
  border-radius: var(--radius-lg);
  background: var(--paper);
  box-shadow: var(--glow);
  text-decoration: none;
  color: var(--ink);
  transition: transform .14s ease, box-shadow .16s ease, border-color .16s ease;
}
.choice:hover, .choice:focus-visible {
  transform: translateY(-2px);
  box-shadow: var(--glow-strong);
  border-color: var(--pink);
  color: var(--ink);
}
.choice__icon {
  grid-area: icon;
  width: 44px; height: 44px;
  display: grid; place-items: center;
  border-radius: 13px;
  background: var(--pink);
  color: var(--on-pink);
  align-self: start;
}
.choice__icon svg { width: 24px; height: 24px; }
.choice__body { display: contents; }
.choice__body b {
  grid-area: name;
  font-family: var(--ff-display); font-weight: 800;
  font-size: 1.1rem; letter-spacing: -0.01em; line-height: 1.15;
}
.choice__body span { grid-area: meta; font-size: .86rem; color: var(--muted); }
.choice__price {
  grid-area: price;
  font-family: var(--ff-display); font-weight: 800;
  font-size: 1rem; color: var(--pink-ink);
  margin-top: 4px;
}
.choice__arrow { grid-area: arrow; width: 18px; height: 18px; color: var(--muted); align-self: start; margin-top: 3px; }
.choice:hover .choice__arrow { color: var(--pink); }

@media (min-width: 420px) {
  .choice {
    grid-template-columns: 46px 1fr auto auto;
    grid-template-areas:
      "icon name  price arrow"
      "icon meta  price arrow";
    align-items: center;
  }
  .choice__price { margin-top: 0; align-self: center; white-space: nowrap; }
  .choice__arrow { align-self: center; margin-top: 0; }
}

.mini-facts {
  margin-top: 22px;
  display: grid; grid-template-columns: minmax(0, 1fr); gap: 10px;
  font-size: .92rem; color: var(--ink-soft);
}
.mini-facts div { display: flex; align-items: center; gap: 10px; }
.mini-facts svg { width: 18px; height: 18px; color: var(--pink); flex-shrink: 0; }

/* ---------- Cenník ---------- */
.pricegroup + .pricegroup { margin-top: clamp(34px, 5vw, 52px); }
.pricegroup__title {
  font-family: var(--ff-display); font-weight: 800;
  font-size: 1.35rem; letter-spacing: -0.015em;
  display: flex; align-items: center; gap: 11px;
  margin-bottom: 18px;
}
.pricegroup__title::before {
  content: ""; width: 10px; height: 10px; border-radius: 50%;
  background: var(--pink); flex-shrink: 0;
}

.courses-grid { display: grid; grid-template-columns: minmax(0, 1fr); gap: 20px; align-items: start; }
.course-card {
  border: 1.5px solid var(--glow-border);
  border-radius: var(--radius-lg);
  padding: 24px;
  background: var(--paper);
  box-shadow: var(--glow);
  display: flex; flex-direction: column;
  scroll-margin-top: calc(var(--header-h) + 20px);
  transition: border-color .16s ease, box-shadow .16s ease, transform .16s ease;
}
.course-card:hover { transform: translateY(-3px); box-shadow: var(--glow-strong); border-color: var(--pink); }
.course-card:target { border-color: var(--pink); box-shadow: var(--glow-strong), 0 0 0 4px var(--pink-wash); }
.course-card--accent { background: var(--pink-wash); border-color: var(--pink-wash-2); }
.course-card h3 { font-size: 1.25rem; }
.course-card__meta { margin-top: 5px; font-size: .9rem; color: var(--muted); }
.price {
  margin-top: 14px;
  font-family: var(--ff-display); font-weight: 800;
  font-size: clamp(1.85rem, 2.6vw, 2.15rem);
  letter-spacing: -0.03em; line-height: 1; color: var(--ink);
}
.price small {
  font-family: var(--ff-body); font-weight: 700;
  font-size: .72rem; letter-spacing: .04em; text-transform: uppercase;
  color: var(--muted); display: block; margin-bottom: 5px;
}
.card-variants { margin-top: 11px; font-size: .95rem; color: var(--ink-soft); line-height: 1.5; }
.card-variants b { font-weight: 700; color: var(--ink); white-space: nowrap; }
.card-incl {
  margin-top: 14px; padding-top: 13px;
  border-top: 1px solid var(--line);
  display: flex; flex-wrap: wrap; gap: 5px 14px;
  font-size: .86rem; color: var(--ink-soft);
}
.course-card--accent .card-incl { border-color: var(--pink-wash-2); }
.card-incl span { display: inline-flex; align-items: center; gap: 6px; }
.card-incl span::before { content: "✓"; color: var(--pink); font-weight: 800; }
.course-card .btn,
.course-card .linky { margin-top: 16px; align-self: flex-start; }

/* zvýraznený pruh: kurz po anglicky */
.eng-banner {
  margin-top: 20px;
  display: flex; align-items: center; gap: 18px; flex-wrap: wrap;
  padding: 20px 24px;
  border-radius: var(--radius-lg);
  background: var(--paper);
  border: 1.5px solid var(--glow-border);
  box-shadow: var(--glow);
}
.eng-banner__icon {
  width: 46px; height: 46px; flex-shrink: 0;
  display: grid; place-items: center;
  border-radius: 14px; background: var(--pink); color: var(--on-pink);
}
.eng-banner__icon svg { width: 26px; height: 26px; }
.eng-banner__body { flex: 1 1 240px; min-width: 0; }
.eng-banner__body b { display: block; font-family: var(--ff-display); font-weight: 800; font-size: 1.12rem; }
.eng-banner__body span { font-size: .92rem; color: var(--ink-soft); }
.eng-banner .linky { flex-shrink: 0; }
/* zľavový pruh nad cenníkom (Strečnianska) potrebuje odstup zdola */
#zlava-szs { margin-bottom: clamp(28px, 4vw, 40px); }

.price-note {
  margin-top: 22px;
  padding: 16px 20px;
  border-radius: var(--radius);
  background: var(--paper-2);
  border: 1.5px solid rgba(255,50,255,.28);
  font-size: .92rem; color: var(--ink-soft); line-height: 1.55;
}
.price-note strong { color: var(--ink); }
.price-note + .price-note { margin-top: 10px; }

/* pomôcka: ktorá skupina */
.helper {
  margin-top: 18px;
  border: 1.5px solid var(--glow-border);
  border-radius: var(--radius-lg);
  background: var(--paper);
  box-shadow: var(--glow);
  overflow: hidden;
}
.helper > summary {
  list-style: none; cursor: pointer;
  padding: 15px 20px;
  font-family: var(--ff-display); font-weight: 800; font-size: 1.04rem;
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
}
.helper > summary::-webkit-details-marker { display: none; }
.helper > summary::after { content: "+"; color: var(--pink); font-size: 1.4rem; line-height: 1; flex-shrink: 0; }
.helper[open] > summary::after { content: "\2013"; }
.helper__body { padding: 2px 20px 18px; overflow-x: auto; }
.helper table { width: 100%; border-collapse: collapse; font-size: .92rem; min-width: 340px; }
.helper th {
  text-align: left; font-weight: 700; color: var(--muted);
  font-size: .74rem; text-transform: uppercase; letter-spacing: .05em;
  padding: 6px 12px 8px 0;
}
.helper td { padding: 10px 12px 10px 0; border-top: 1px solid var(--line); vertical-align: top; }
.helper td b { color: var(--pink-ink); font-weight: 700; }
.helper__foot { margin-top: 12px; font-size: .82rem; color: var(--muted); }

.form-download {
  margin-top: 22px;
  display: flex; flex-wrap: wrap; align-items: center;
  gap: 12px 18px;
  padding: 18px 20px;
  border: 2px dashed rgba(255,50,255,.4);
  border-radius: var(--radius);
}
.form-download p { font-size: .88rem; color: var(--muted); margin: 0; }
.form-download .btn { white-space: normal; text-align: left; }

/* ---------- Ako to funguje (cesta) ---------- */
.journey { position: relative; }
.journey-track { position: relative; padding-left: 54px; }
.journey-line {
  position: absolute;
  left: 15px; top: 8px; bottom: 8px;
  width: 4px;
  background-image: linear-gradient(var(--line-strong) 55%, transparent 0);
  background-size: 4px 22px;
  background-repeat: repeat-y;
}
.journey-progress {
  position: absolute;
  left: 15px; top: 8px;
  width: 4px;
  height: var(--jp, 0%);
  background-image: linear-gradient(var(--pink) 55%, transparent 0);
  background-size: 4px 22px;
  background-repeat: repeat-y;
  transition: height .25s linear;
  max-height: calc(100% - 16px);
}
.journey-car {
  position: absolute;
  left: -9px;
  top: calc(8px + var(--jp, 0%));
  width: 46px;
  height: auto;
  z-index: 3;
  transform: translateY(-62%);
  transition: top .25s linear;
  will-change: top;
  filter: drop-shadow(0 3px 7px rgba(27,27,31,.22));
}
.step {
  position: relative;
  padding: 4px 0 clamp(30px, 5vw, 44px);
}
.step:last-child { padding-bottom: 0; }
.step__num {
  position: absolute;
  left: -54px;
  top: 0;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--paper);
  border: 2px solid var(--ink);
  display: grid; place-items: center;
  font-family: var(--ff-mono);
  font-weight: 500;
  font-size: .85rem;
}
.step.in-view .step__num { background: var(--pink); border-color: var(--pink); color: var(--on-pink); }
.step h3 { font-size: 1.3rem; }
.step p { margin-top: 8px; color: var(--ink-soft); max-width: 52ch; }
.journey-foot {
  margin-top: 30px;
  margin-left: 54px;
  font-size: .92rem;
  color: var(--muted);
  border-left: 3px solid var(--pink);
  padding-left: 16px;
}

/* ---------- English (dark pillar) ---------- */
.english-grid { display: grid; grid-template-columns: minmax(0, 1fr); gap: 36px; }
.english-logo { height: 56px; width: auto; margin-bottom: 24px; }
.english h2 { font-size: clamp(1.85rem, 3.6vw, 2.6rem); }
.english p.lead { margin-top: 18px; font-size: 1.1rem; color: #d6d4da; max-width: 52ch; }
.english-meta {
  margin-top: 22px;
  font-family: var(--ff-mono);
  font-size: .82rem;
  line-height: 1.7;
  color: #b7b4bd;
  border-top: 1px solid rgba(255,255,255,.16);
  padding-top: 16px;
  max-width: 52ch;
}
.english-cta { margin-top: 24px; display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.english-cta .btn { flex: 1 1 auto; justify-content: center; }
@media (min-width: 480px) { .english-cta .btn { flex: 0 0 auto; } }
.english-back { margin-top: 20px; font-size: .9rem; }

.english-facts {
  background: #232329;
  border: 1.5px solid rgba(255,50,255,.55);
  border-radius: var(--radius-lg);
  box-shadow: 0 0 30px rgba(255,50,255,.28);
  padding: 26px;
}
.english-facts dl { margin: 0; display: grid; gap: 16px; }
.english-facts dt {
  font-family: var(--ff-mono);
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #86848d;
  margin-bottom: 4px;
}
.english-facts dd { margin: 0; color: #efeef0; font-weight: 600; font-size: .98rem; }
.english-facts dd.mono { font-family: var(--ff-mono); font-weight: 500; }

/* ---------- Prečo ---------- */
.why-lead { font-size: 1.12rem; color: var(--ink-soft); max-width: 60ch; margin-bottom: clamp(30px, 5vw, 48px); }
.why-grid { display: grid; grid-template-columns: minmax(0, 1fr); gap: 28px; }
.why-item { display: flex; gap: 16px; }
.why-item svg.tick { width: 30px; height: 30px; color: var(--pink); flex-shrink: 0; margin-top: 2px; }
.why-item h3 { font-size: 1.16rem; }
.why-item p { margin-top: 6px; color: var(--ink-soft); font-size: .98rem; }

/* ---------- Recenzie ---------- */
.reviews-grid { display: grid; grid-template-columns: minmax(0, 1fr); gap: 26px; }
.review {
  background: var(--paper);
  border: 1.5px solid var(--glow-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--glow);
  padding: 28px;
}
.review blockquote {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  line-height: 1.32;
  letter-spacing: -0.015em;
}
.review blockquote::before { content: "„"; color: var(--pink); }
.review blockquote::after { content: "“"; color: var(--pink); }
.review__by { margin-top: 20px; display: flex; align-items: center; gap: 13px; }
.review__mono {
  width: 44px; height: 44px; flex-shrink: 0;
  border-radius: 50%;
  background: var(--pink);
  color: var(--on-pink);
  display: grid; place-items: center;
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: 1.15rem;
}
.review__by b { font-weight: 700; display: block; font-size: .98rem; }
.review__by span { font-family: var(--ff-mono); font-size: .76rem; color: var(--muted); letter-spacing: .04em; }
.reviews-more { margin-top: 26px; }

/* ---------- FAQ ---------- */
.faq-quick {
  display: grid; grid-template-columns: minmax(0, 1fr); gap: 12px;
  margin-bottom: clamp(28px, 4vw, 40px);
}
.faq-quick div {
  padding: 16px 18px;
  border: 1.5px solid var(--glow-border);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--glow);
}
.faq-quick dt {
  font-family: var(--ff-display); font-weight: 800;
  font-size: 1rem; letter-spacing: -0.01em; margin-bottom: 5px;
}
.faq-quick dd { margin: 0; font-size: .92rem; color: var(--ink-soft); line-height: 1.5; }
.faq-quick dd a { font-weight: 700; }

.faq-more-title { font-size: 1.15rem; margin-bottom: 4px; color: var(--ink); }
.faq-list { border-top: 1px solid var(--line); max-width: 820px; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 44px 22px 0;
  position: relative;
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: 1.12rem;
  letter-spacing: -0.015em;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "";
  position: absolute; right: 4px; top: 26px;
  width: 14px; height: 14px;
  background: var(--pink);
  -webkit-mask: no-repeat center / contain url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 5v14M5 12h14" stroke="black" stroke-width="3" stroke-linecap="round"/></svg>');
          mask: no-repeat center / contain url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 5v14M5 12h14" stroke="black" stroke-width="3" stroke-linecap="round"/></svg>');
  transition: transform .2s ease;
}
.faq-item[open] summary::after { transform: rotate(135deg); }
.faq-item .faq-a { padding: 0 20px 24px 0; color: var(--ink-soft); max-width: 62ch; }

/* ---------- Prihláška / kontakt ---------- */
.contact-grid { display: grid; grid-template-columns: minmax(0, 1fr); gap: 34px; }
.form-card {
  background: var(--paper);
  border: 1.5px solid var(--glow-border);
  border-radius: var(--radius-lg);
  padding: clamp(22px, 4vw, 34px);
  box-shadow: var(--glow);
}
.field { margin-bottom: 16px; }
.field label {
  display: block;
  font-family: var(--ff-mono);
  font-size: .76rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 7px;
}
.field input, .field select, .field textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1.5px solid var(--line-strong);
  border-radius: 11px;
  background: var(--paper-2);
  transition: border-color .16s ease, background-color .16s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--pink);
  background: #fff;
}
.field textarea { resize: vertical; min-height: 110px; }
.field--check { display: flex; gap: 10px; align-items: flex-start; }
.field--check input { width: 18px; height: 18px; margin-top: 3px; flex-shrink: 0; accent-color: var(--pink); }
.field--check label { font-family: var(--ff-body); text-transform: none; letter-spacing: 0; font-size: .86rem; color: var(--ink-soft); margin: 0; }
.field label .req { color: var(--pink); font-weight: 700; }
.field label .opt { color: var(--muted); font-weight: 400; text-transform: none; letter-spacing: 0; }
.form-status {
  margin-top: 14px;
  padding: 14px 16px;
  border-radius: 11px;
  font-size: .92rem;
  font-weight: 600;
  display: none;
}
.form-status.is-ok { display: block; background: var(--pink-wash); color: var(--on-pink); border: 1.5px solid var(--pink); }
.form-status.is-err { display: block; background: #fdecec; color: #b42318; }

.contact-info h3 { font-size: 1.3rem; margin-bottom: 18px; }
.contact-info dl { display: grid; grid-template-columns: minmax(0, 1fr); gap: 16px; margin: 0; }
.contact-info dt {
  font-family: var(--ff-mono);
  font-size: .74rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 3px;
}
.contact-info dd { margin: 0; font-weight: 600; }
.contact-info dd a { color: var(--ink); text-decoration: none; }
.contact-info dd a:hover { color: var(--pink-ink); }
.contact-info dd.mono, .contact-info dd .mono { font-family: var(--ff-mono); font-weight: 500; }
.contact-extra {
  margin-top: 24px;
  font-size: .85rem;
  color: var(--muted);
  border-top: 1px solid var(--line);
  padding-top: 18px;
  display: grid;
  gap: 8px;
}

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: #b9b7bf; padding-block: clamp(48px, 7vw, 80px) 40px; }
.footer-grid { display: grid; grid-template-columns: minmax(0, 1fr); gap: 34px; }
.site-footer img.f-logo { height: 46px; width: auto; margin-bottom: 16px; }
.site-footer .f-about { font-size: .88rem; max-width: 34ch; }
.footer-col h4 { color: #fff; font-size: .8rem; font-family: var(--ff-mono); font-weight: 500; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 14px; }
.footer-col ul { list-style: none; padding: 0; display: grid; gap: 9px; }
.footer-col li { overflow-wrap: anywhere; }
.footer-col a { color: #cdccd2; text-decoration: none; font-size: .94rem; overflow-wrap: anywhere; }
.footer-col a:hover { color: #fff; }
.footer-legal {
  margin-top: 40px;
  border-top: 1px solid rgba(255,255,255,.14);
  padding-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
  justify-content: space-between;
  font-family: var(--ff-mono);
  font-size: .76rem;
  color: #86848d;
}
.footer-legal a { color: #86848d; }
.footer-legal a:hover { color: #fff; }

/* ---------- Mobilná spodná lišta ---------- */
.tabbar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 90;
  background: rgba(255,255,255,.94);
  backdrop-filter: saturate(1.4) blur(10px);
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding-bottom: env(safe-area-inset-bottom, 0);
}
.tabbar a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  padding: 9px 4px 10px;
  text-decoration: none;
  color: var(--ink-soft);
  font-size: .68rem;
  font-weight: 600;
  font-family: var(--ff-mono);
  letter-spacing: .02em;
}
.tabbar a svg { width: 20px; height: 20px; }
.tabbar a.tab-cta { color: var(--ink); font-weight: 700; }
.tabbar a.tab-cta svg {
  background: var(--pink);
  color: var(--on-pink);
  border-radius: 999px;
  padding: 3px;
  width: 24px; height: 24px;
}
.tabbar a:active { background: var(--pink-wash); }

/* ---------- Reveal animácie (len ak beží JS) ---------- */
.js .reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s cubic-bezier(.2,.6,.2,1); }
.js .reveal.in-view { opacity: 1; transform: none; }
.js .reveal[data-d="1"] { transition-delay: .06s; }
.js .reveal[data-d="2"] { transition-delay: .12s; }
.js .reveal[data-d="3"] { transition-delay: .18s; }
.js .reveal[data-d="4"] { transition-delay: .24s; }
.reveal-all .reveal { opacity: 1 !important; transform: none !important; }

/* ============================================================
   RESPONSÍVNE — breakpointy
   ============================================================ */
@media (min-width: 560px) {
  .chooser { grid-template-columns: 1fr 1fr; }
  .mini-facts { grid-template-columns: 1fr 1fr; gap: 12px 28px; }
  .courses-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; gap: 30px 40px; }
  .reviews-grid { grid-template-columns: 1fr 1fr; }
  .faq-quick { grid-template-columns: 1fr 1fr; }
  .hero-cta { flex-wrap: nowrap; }
}

@media (min-width: 860px) {
  :root { --header-h: 76px; }
  .nav-primary { display: block; }
  .menu-btn { display: none; }
  .header-actions .btn { display: inline-flex; }
  .brand img { height: 38px; }

  .hero-grid { grid-template-columns: 1.12fr .88fr; gap: 36px; }
  .hero-visual { margin-right: calc(var(--gutter) * -0.4); }
  .hero-car { width: 116%; margin-left: -8%; }

  .chooser { grid-template-columns: repeat(2, 1fr); }
  .mini-facts { grid-template-columns: repeat(4, 1fr); gap: 24px; }
  .courses-grid { grid-template-columns: repeat(3, 1fr); }

  .english-grid { grid-template-columns: 1.25fr .75fr; align-items: start; gap: 52px; }
  .english-facts { position: sticky; top: calc(var(--header-h) + 30px); }

  .contact-grid { grid-template-columns: 1.15fr .85fr; gap: 48px; align-items: start; }
  .contact-info { position: sticky; top: calc(var(--header-h) + 30px); }
  .form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 0 16px; }

  .footer-grid { grid-template-columns: 1.5fr repeat(4, 1fr); gap: 40px; }
  .faq-quick { grid-template-columns: repeat(4, 1fr); }

  .tabbar { display: none; }
  body { padding-bottom: 0 !important; }
}

@media (min-width: 1040px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .hero h1 { font-size: clamp(3.2rem, 5vw, 4rem); }
}

/* padding pre spodnú lištu na mobile */
@media (max-width: 859.98px) {
  body { padding-bottom: 66px; }
  .menu-sheet { padding-bottom: 80px; }
}

/* ---------- Redukovaný pohyb ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .hero-car { animation: none; }
  .journey-car { transition: none; }
}

/* ---------- Tlač ---------- */
@media print {
  .site-header, .tabbar, .menu-sheet, .hero-visual, .form-card { display: none; }
  body { padding: 0; }
}

/* ---------- Honeypot (anti-spam) — pole skryté pred človekom, bot ho vyplní ---------- */
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  top: auto !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

/* ---------- Kde nás nájdeš (mapa + navigácia) ---------- */
.map-card {
  border: 1.5px solid var(--glow-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--glow);
  overflow: hidden;
  background: var(--paper);
}
.map-embed {
  display: block;
  width: 100%;
  height: clamp(240px, 42vw, 420px);
  border: 0;
}
.map-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 18px clamp(16px, 3vw, 24px);
  border-top: 1px solid var(--line);
}
.map-actions .btn { flex: 1 1 auto; justify-content: center; }
@media (min-width: 520px) { .map-actions .btn { flex: 0 1 auto; } }

/* ============================================================
   LANDING PAGE (Hlavná stránka — výber pobočky)
   ============================================================ */
body.is-landing { padding-bottom: 0 !important; }

.landing-header {
  position: static;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}
.landing-header .header-inner { min-height: 64px; }
.landing-header .brand img { height: 34px; width: auto; }
.landing-header .hero-call { margin: 0; font-weight: 700; }

.landing-hero {
  padding-block: clamp(34px, 6vw, 64px) clamp(24px, 4vw, 40px);
  text-align: center;
  max-width: 760px;
}
.landing-hero .eyebrow { justify-content: center; }
.landing-hero h1 {
  font-size: clamp(2.1rem, 5vw, 3.4rem);
  letter-spacing: -0.025em;
  margin-top: 14px;
}
.landing-hero h1 .line2 { display: block; color: var(--pink); }
.landing-sub {
  margin: 18px auto 0;
  max-width: 54ch;
  font-size: 1.06rem;
  color: var(--ink-soft);
}

/* --- karty pobočiek --- */
.branches {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 24px;
}
.branch {
  display: flex;
  flex-direction: column;
  border: 1.5px solid var(--glow-border);
  border-radius: var(--radius-lg);
  background: var(--paper);
  box-shadow: var(--glow);
  overflow: hidden;
  transition: transform .16s ease, box-shadow .18s ease, border-color .16s ease;
}
.branch:hover { transform: translateY(-3px); box-shadow: var(--glow-strong); border-color: var(--pink); }

.branch__media {
  display: block;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  background: var(--paper-3);
}
.branch__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform .4s ease;
}
.branch:hover .branch__media img { transform: scale(1.03); }

.branch__body {
  padding: 22px clamp(18px, 3vw, 28px) clamp(22px, 3vw, 28px);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  flex: 1;
}
.branch__name {
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: clamp(1.45rem, 3vw, 1.9rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin: 0;
}
.branch__name a { color: var(--ink); text-decoration: none; }
.branch__name a:hover { color: var(--ink); }
.branch__name span {
  display: block;
  color: var(--pink);
  margin-top: 2px;
}
.branch__badge {
  margin: -4px 0 0;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--pink);
  color: var(--on-pink);
  font-weight: 700;
  font-size: .86rem;
  letter-spacing: -0.01em;
}
.branch__badge svg { width: 15px; height: 15px; flex-shrink: 0; }
.branch__contact {
  list-style: none;
  margin: 0; padding: 0;
  display: grid;
  gap: 7px;
  font-size: .98rem;
}
.branch__contact a {
  color: var(--pink-ink);
  text-decoration: none;
  font-weight: 600;
  word-break: break-word;
}
.branch__contact a:hover { text-decoration: underline; }
.branch__contact li:last-child a { color: var(--ink-soft); font-weight: 400; }
.branch__body .btn { margin-top: 4px; }

@media (min-width: 780px) {
  .branches { grid-template-columns: 1fr 1fr; gap: 30px; }
}
@media (min-width: 860px) {
  .footer-grid--landing { grid-template-columns: 1.4fr 1fr 1fr 1fr; }
}
