/* ==========================================================================
   TAXI BRATISLAVA — Design system
   Brand: red / black / white. Modernized 2026 refresh.
   ========================================================================== */

/* ---------- Tokens ---------- */
:root {
  /* Brand */
  --red:        #E31E24;
  --red-600:    #C8161C;
  --red-700:    #A81015;
  --red-soft:   rgba(227, 30, 36, .10);
  --red-ring:   rgba(227, 30, 36, .28);

  /* Neutrals */
  --ink:        #0E1116;
  --ink-2:      #1A1F27;
  --ink-3:      #2A313B;
  --slate:      #5B6472;
  --slate-2:    #8A93A1;
  --line:       #E4E8EE;
  --line-2:     #EFF2F6;
  --bg:         #FFFFFF;
  --bg-soft:    #F7F8FA;
  --bg-soft-2:  #F1F3F7;

  /* Effects */
  --r-sm: 10px;
  --r:    16px;
  --r-lg: 22px;
  --r-xl: 28px;
  --shadow-sm: 0 1px 2px rgba(14,17,22,.05), 0 2px 8px rgba(14,17,22,.05);
  --shadow:    0 2px 6px rgba(14,17,22,.05), 0 12px 32px rgba(14,17,22,.08);
  --shadow-lg: 0 8px 24px rgba(14,17,22,.10), 0 32px 64px rgba(14,17,22,.14);
  --ease: cubic-bezier(.22,.61,.36,1);

  --container: 1200px;
  --nav-h: 76px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: calc(var(--nav-h) + 16px); }
body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 16.5px;
  line-height: 1.65;
  color: var(--ink-2);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
ul, ol { list-style: none; padding: 0; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: "Manrope", "Inter", -apple-system, "Segoe UI", Roboto, sans-serif;
  color: var(--ink);
  line-height: 1.14;
  letter-spacing: -0.025em;
  font-weight: 800;
  text-wrap: balance;
}
h1 { font-size: clamp(2.2rem, 1.35rem + 3.6vw, 4rem); }
h2 { font-size: clamp(1.75rem, 1.2rem + 2.1vw, 2.75rem); }
h3 { font-size: clamp(1.15rem, 1.02rem + .55vw, 1.4rem); letter-spacing: -.015em; }
h4 { font-size: 1.05rem; letter-spacing: -.01em; }
p  { text-wrap: pretty; }
.lead { font-size: clamp(1.02rem, .96rem + .4vw, 1.2rem); color: var(--slate); }
strong { color: var(--ink); font-weight: 700; }
.accent { color: var(--red); }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 22px; }
.section { padding: clamp(56px, 4vw + 34px, 104px) 0; }
.section--soft { background: var(--bg-soft); }
.section--ink { background: var(--ink); color: #C8CEDA; }
.section--ink h2, .section--ink h3 { color: #fff; }

.section-head { max-width: 720px; margin-bottom: clamp(32px, 3vw, 52px); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head p { margin-top: 14px; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .74rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase;
  color: var(--red); margin-bottom: 14px;
}
.eyebrow::before { content: ""; width: 22px; height: 2px; background: var(--red); border-radius: 2px; }
.section-head.center .eyebrow::before { display: none; }
.section--ink .eyebrow { color: #FF6B6F; }

.grid { display: grid; gap: 20px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* ---------- Buttons ---------- */
.btn {
  --btn-bg: var(--red); --btn-fg: #fff;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 24px; border: 1px solid transparent; border-radius: 999px;
  background: var(--btn-bg); color: var(--btn-fg);
  font-weight: 700; font-size: .96rem; letter-spacing: -.01em;
  cursor: pointer; white-space: nowrap;
  transition: transform .18s var(--ease), box-shadow .18s var(--ease), background .18s var(--ease), border-color .18s var(--ease);
  box-shadow: 0 4px 14px rgba(227,30,36,.24);
}
.btn:hover { background: var(--red-600); transform: translateY(-2px); box-shadow: 0 10px 24px rgba(227,30,36,.30); }
.btn:active { transform: translateY(0); }
.btn:focus-visible { outline: 3px solid var(--red-ring); outline-offset: 2px; }
.btn svg { width: 18px; height: 18px; flex: none; }

.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line); box-shadow: none; }
.btn--ghost:hover { background: var(--bg-soft); border-color: #D5DBE4; color: var(--ink); box-shadow: none; }
.btn--dark { background: var(--ink); box-shadow: 0 4px 14px rgba(14,17,22,.22); }
.btn--dark:hover { background: var(--ink-3); box-shadow: 0 10px 24px rgba(14,17,22,.26); }
.btn--light { background: rgba(255,255,255,.10); color:#fff; border-color: rgba(255,255,255,.28); box-shadow:none; backdrop-filter: blur(6px); }
.btn--light:hover { background: rgba(255,255,255,.18); border-color: rgba(255,255,255,.45); }
.btn--lg { padding: 17px 30px; font-size: 1.02rem; }
.btn--block { width: 100%; }

.btn-row { display: flex; flex-wrap: wrap; gap: 12px; }

/* ---------- Logo ---------- */
.logo { display: inline-flex; align-items: center; flex: none; }
.logo img { width: auto; height: 34px; display: block; }
.logo--sm img { height: 28px; }
.logo--footer img { height: 38px; }
@media (max-width: 480px) { .logo img { height: 27px; } }
@media (max-width: 360px) { .logo img { height: 24px; } }

/* ---------- Header ---------- */
.topbar {
  background: var(--ink); color: #A7B0BE;
  font-size: .82rem; letter-spacing: .01em;
}
.topbar__inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; min-height: 38px; }
.topbar ul { display: flex; gap: 20px; flex-wrap: wrap; }
.topbar li { display: inline-flex; align-items: center; gap: 7px; }
.topbar svg { width: 14px; height: 14px; color: var(--red); flex: none; }
.topbar a:hover { color: #fff; }
.topbar .dot { width: 7px; height: 7px; border-radius: 50%; background: #2ECC71; box-shadow: 0 0 0 3px rgba(46,204,113,.20); }

.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(255,255,255,.88);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .25s var(--ease);
}
.site-header.is-stuck { box-shadow: 0 6px 24px rgba(14,17,22,.08); }
.nav { display: flex; align-items: center; justify-content: space-between; gap: 24px; min-height: var(--nav-h); }

.nav__menu { display: flex; align-items: center; gap: 2px; }
.nav__menu > li { position: relative; }
.nav__link {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 10px 14px; border-radius: 10px;
  font-weight: 650; font-size: .95rem; color: var(--ink-2);
  transition: color .18s var(--ease), background .18s var(--ease);
}
.nav__link:hover { color: var(--red); background: var(--red-soft); }
.nav__link[aria-current="page"] { color: var(--red); }
.nav__link .caret { width: 12px; height: 12px; transition: transform .2s var(--ease); }
.nav__item:hover .caret, .nav__item:focus-within .caret { transform: rotate(180deg); }

.nav__drop {
  position: absolute; top: calc(100% + 8px); left: 0; min-width: 262px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--r);
  box-shadow: var(--shadow-lg); padding: 8px;
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: opacity .2s var(--ease), transform .2s var(--ease), visibility .2s;
}
.nav__item:hover .nav__drop, .nav__item:focus-within .nav__drop { opacity: 1; visibility: visible; transform: translateY(0); }
.nav__drop a {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 12px; border-radius: 10px; font-size: .93rem; font-weight: 600; color: var(--ink-2);
  transition: background .15s var(--ease), color .15s var(--ease);
}
.nav__drop a:hover { background: var(--bg-soft); color: var(--red); }
.nav__drop svg { width: 16px; height: 16px; color: var(--red); flex: none; }

.nav__cta { display: flex; align-items: center; gap: 10px; }
.nav__phone {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: "Manrope", Inter, sans-serif; font-weight: 800; font-size: 1.05rem;
  color: var(--ink); letter-spacing: -.02em; padding: 8px 4px;
}
.nav__phone svg { width: 19px; height: 19px; color: var(--red); }
.nav__phone:hover { color: var(--red); }

.nav__cta .nav__call { display: none; width: 46px; height: 46px; min-width: 46px; padding: 0; border-radius: 12px; }
.nav__cta .nav__call svg { width: 21px; height: 21px; }

.nav__burger {
  display: none; width: 46px; height: 46px; border: 1px solid var(--line);
  background: #fff; border-radius: 12px; cursor: pointer; align-items: center; justify-content: center;
}
.nav__burger span { display: block; width: 19px; height: 2px; background: var(--ink); border-radius: 2px; position: relative; transition: background .2s; }
.nav__burger span::before, .nav__burger span::after {
  content: ""; position: absolute; left: 0; width: 19px; height: 2px; background: var(--ink); border-radius: 2px;
  transition: transform .25s var(--ease), top .2s var(--ease);
}
.nav__burger span::before { top: -6px; }
.nav__burger span::after  { top: 6px; }
.nav__burger[aria-expanded="true"] span { background: transparent; }
.nav__burger[aria-expanded="true"] span::before { top: 0; transform: rotate(45deg); }
.nav__burger[aria-expanded="true"] span::after  { top: 0; transform: rotate(-45deg); }

/* Mobile drawer */
.mobile-nav {
  position: fixed; inset: 0 0 0 auto; width: min(400px, 88vw); z-index: 90;
  background: #fff; box-shadow: -20px 0 60px rgba(14,17,22,.20);
  transform: translateX(100%); transition: transform .32s var(--ease);
  display: flex; flex-direction: column; overflow-y: auto; padding: 18px 20px 32px;
}
.mobile-nav.is-open { transform: translateX(0); }
.mobile-nav__top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.mobile-nav__close { width: 42px; height: 42px; border: 1px solid var(--line); background:#fff; border-radius: 12px; cursor: pointer; font-size: 1.3rem; line-height: 1; color: var(--ink); }
.mobile-nav a.m-link { display: block; padding: 13px 12px; border-radius: 12px; font-weight: 700; font-size: 1.04rem; color: var(--ink); }
.mobile-nav a.m-link:hover { background: var(--bg-soft); }
.mobile-nav .m-group-title { padding: 16px 12px 6px; font-size: .72rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; color: var(--slate-2); }
.mobile-nav .m-sub { display: block; padding: 10px 12px; border-radius: 10px; font-size: .95rem; font-weight: 600; color: var(--slate); }
.mobile-nav .m-sub:hover { background: var(--bg-soft); color: var(--red); }
.mobile-nav__foot { margin-top: 22px; display: grid; gap: 10px; }
.scrim { position: fixed; inset: 0; background: rgba(14,17,22,.45); backdrop-filter: blur(2px); z-index: 80; opacity: 0; visibility: hidden; transition: opacity .3s var(--ease), visibility .3s; }
.scrim.is-open { opacity: 1; visibility: visible; }

/* ---------- Hero ---------- */
.hero { position: relative; isolation: isolate; overflow: hidden; background: #0B0E13; color: #fff; }
.hero__bg { position: absolute; inset: 0; z-index: -3; }
/* Swap the URL below for your own photo of Bratislava — everything else stays. */
.hero__bg::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(1100px 600px at 78% -10%, rgba(227,30,36,.30), transparent 62%),
    radial-gradient(900px 620px at 8% 108%, rgba(28,86,168,.42), transparent 60%),
    linear-gradient(165deg, #10161F 0%, #0B0E13 55%, #14181F 100%);
}
.hero__skyline { position: absolute; left: 0; right: 0; bottom: 0; z-index: -2; width: 100%; height: auto; opacity: .5; }
.hero__grain { position: absolute; inset: 0; z-index: -1; opacity: .35;
  background-image: radial-gradient(rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 3px 3px; }
.hero__inner {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(28px, 3.4vw, 56px); align-items: center;
  padding: clamp(52px, 5vw, 92px) 0 clamp(60px, 5vw, 96px);
}
.hero h1 { color: #fff; }
.hero h1 .accent { color: #FF3B41; }
.hero__sub { margin-top: 18px; font-size: clamp(1.02rem, .96rem + .4vw, 1.2rem); color: #C3CAD6; max-width: 52ch; }

.badge-live {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 7px 15px 7px 11px; border-radius: 999px;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.16);
  font-size: .82rem; font-weight: 650; color: #E6EAF1; backdrop-filter: blur(8px);
}
.badge-live .pulse { width: 8px; height: 8px; border-radius: 50%; background: #2ECC71; position: relative; }
.badge-live .pulse::after { content:""; position:absolute; inset:-4px; border-radius:50%; border:2px solid rgba(46,204,113,.5); animation: pulse 2s var(--ease) infinite; }
@keyframes pulse { 0% { transform: scale(.7); opacity: 1; } 100% { transform: scale(1.5); opacity: 0; } }

.hero__phones { margin-top: 30px; display: grid; gap: 10px; max-width: 430px; }
.phone-card {
  display: flex; align-items: center; gap: 14px;
  padding: 13px 18px; border-radius: 14px;
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.14);
  backdrop-filter: blur(10px);
  transition: background .2s var(--ease), border-color .2s var(--ease), transform .2s var(--ease);
}
.phone-card:hover { background: rgba(255,255,255,.13); border-color: rgba(255,255,255,.30); transform: translateX(3px); }
.phone-card__ico { width: 40px; height: 40px; border-radius: 11px; background: var(--red); display: grid; place-items: center; flex: none; }
.phone-card__ico svg { width: 19px; height: 19px; color: #fff; }
.phone-card__num { display: block; font-family: "Manrope", Inter, sans-serif; font-weight: 800; font-size: 1.34rem; letter-spacing: -.03em; color: #fff; line-height: 1.15; }
.phone-card__lbl { display: block; font-size: .78rem; color: #9AA4B3; letter-spacing: .02em; line-height: 1.4; }
.phone-card--primary { background: rgba(227,30,36,.16); border-color: rgba(227,30,36,.42); }
.phone-card--primary:hover { background: rgba(227,30,36,.24); }

/* Booking card */
.booking {
  background: rgba(255,255,255,.97); color: var(--ink-2);
  border-radius: var(--r-xl); padding: clamp(22px, 2.2vw, 32px);
  box-shadow: var(--shadow-lg); border: 1px solid rgba(255,255,255,.6);
}
.booking__head { margin-bottom: 18px; }
.booking__head h2 { font-size: clamp(1.4rem, 1.2rem + .7vw, 1.75rem); }
.booking__note {
  margin-top: 12px; display: flex; gap: 9px; align-items: flex-start;
  padding: 10px 13px; border-radius: 11px; background: var(--red-soft);
  color: var(--red-700); font-size: .84rem; font-weight: 600; line-height: 1.45;
}
.booking__note svg { width: 16px; height: 16px; flex: none; margin-top: 2px; }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field--full { grid-column: 1 / -1; }
.field label { font-size: .8rem; font-weight: 700; color: var(--ink-2); letter-spacing: -.005em; }
.field label .req { color: var(--red); }
.input, .select, .textarea {
  width: 100%; padding: 12px 14px; border-radius: 12px;
  border: 1px solid var(--line); background: var(--bg-soft);
  font-size: .95rem; color: var(--ink);
  transition: border-color .18s var(--ease), box-shadow .18s var(--ease), background .18s var(--ease);
}
.input::placeholder, .textarea::placeholder { color: var(--slate-2); }
.input:hover, .textarea:hover, .select:hover { border-color: #D2D8E2; }
.input:focus, .textarea:focus, .select:focus {
  outline: none; background: #fff; border-color: var(--red); box-shadow: 0 0 0 4px var(--red-ring);
}
.textarea { resize: vertical; min-height: 84px; }

.check { display: flex; gap: 10px; align-items: flex-start; font-size: .82rem; color: var(--slate); line-height: 1.5; }
.check input { width: 18px; height: 18px; margin-top: 2px; accent-color: var(--red); flex: none; cursor: pointer; }
.check a { color: var(--red); font-weight: 650; text-decoration: underline; text-underline-offset: 2px; }

.form-msg { display: none; margin-top: 12px; padding: 12px 14px; border-radius: 12px; font-size: .9rem; font-weight: 650; }
.form-msg.ok  { display: block; background: #E8F8EF; color: #12683F; border: 1px solid #BFE9D2; }
.form-msg.err { display: block; background: #FDECEC; color: var(--red-700); border: 1px solid #F7C9CB; }

/* ---------- Trust strip ---------- */
.trust { background: #fff; border-bottom: 1px solid var(--line); }
.trust__grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust__item { padding: 26px 22px; text-align: center; border-right: 1px solid var(--line-2); }
.trust__item:last-child { border-right: 0; }
.trust__n { font-family: "Manrope", Inter, sans-serif; font-size: clamp(1.6rem, 1.3rem + 1.1vw, 2.15rem); font-weight: 800; color: var(--ink); letter-spacing: -.035em; line-height: 1; }
.trust__n .accent { color: var(--red); }
.trust__l { margin-top: 7px; font-size: .84rem; color: var(--slate); font-weight: 600; }

/* ---------- Cards ---------- */
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 26px; box-shadow: var(--shadow-sm);
  transition: transform .24s var(--ease), box-shadow .24s var(--ease), border-color .24s var(--ease);
  display: flex; flex-direction: column;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: #D9DFE8; }
.card__ico {
  width: 52px; height: 52px; border-radius: 15px; display: grid; place-items: center;
  background: var(--red-soft); color: var(--red); margin-bottom: 18px; flex: none;
}
.card__ico svg { width: 25px; height: 25px; }
.card h3 { margin-bottom: 9px; }
.card p { color: var(--slate); font-size: .95rem; }
.card__link {
  margin-top: 18px; display: inline-flex; align-items: center; gap: 7px;
  font-weight: 700; font-size: .9rem; color: var(--red); align-self: flex-start;
}
.card__link svg { width: 15px; height: 15px; transition: transform .2s var(--ease); }
.card__link:hover svg { transform: translateX(4px); }

.card--link { position: relative; }
.card--link > a.stretch::after { content: ""; position: absolute; inset: 0; border-radius: inherit; }

/* Feature (why us) */
.feature { display: flex; gap: 16px; align-items: flex-start; }
.feature__ico {
  width: 44px; height: 44px; border-radius: 13px; flex: none; display: grid; place-items: center;
  background: #fff; border: 1px solid var(--line); color: var(--red); box-shadow: var(--shadow-sm);
}
.feature__ico svg { width: 21px; height: 21px; }
.feature h4 { margin-bottom: 5px; }
.feature p { color: var(--slate); font-size: .93rem; }

/* ---------- Price tables ---------- */
.price-card { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-sm); }
.price-card__head { padding: 22px 26px; border-bottom: 1px solid var(--line); background: var(--bg-soft); }
.price-card__head h3 { margin-bottom: 4px; }
.price-card__head p { font-size: .88rem; color: var(--slate); }
.price-card--featured { border-color: var(--red); box-shadow: 0 0 0 4px var(--red-soft), var(--shadow); }
.price-card--featured .price-card__head { background: var(--red); }
.price-card--featured .price-card__head h3 { color: #fff; }
.price-card--featured .price-card__head p { color: rgba(255,255,255,.85); }

.price-list li {
  display: flex; align-items: baseline; justify-content: space-between; gap: 16px;
  padding: 14px 26px; border-bottom: 1px solid var(--line-2); font-size: .96rem;
}
.price-list li:last-child { border-bottom: 0; }
.price-list li:nth-child(odd) { background: #FCFDFE; }
.price-list .k { color: var(--ink-2); font-weight: 600; }
.price-list .v { font-family: "Manrope", Inter, sans-serif; font-weight: 800; color: var(--ink); white-space: nowrap; letter-spacing: -.02em; }
.price-list .v .from { font-weight: 600; font-size: .8rem; color: var(--slate-2); margin-right: 3px; }

.route-list li { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 16px 26px; border-bottom: 1px solid var(--line-2); }
.route-list li:last-child { border-bottom: 0; }
.route-list .route { display: flex; align-items: center; gap: 11px; font-weight: 650; }
.route-list .route svg { width: 17px; height: 17px; color: var(--red); flex: none; }
.route-list .v { font-family: "Manrope", Inter, sans-serif; font-weight: 800; font-size: 1.12rem; color: var(--red); white-space: nowrap; letter-spacing: -.02em; }

.note-box {
  display: flex; gap: 12px; align-items: flex-start;
  padding: 16px 18px; border-radius: var(--r); background: var(--bg-soft-2);
  border: 1px solid var(--line); font-size: .9rem; color: var(--slate);
}
.note-box svg { width: 18px; height: 18px; color: var(--red); flex: none; margin-top: 2px; }

/* ---------- Steps ---------- */
.steps { counter-reset: s; display: grid; gap: 20px; }
.step { position: relative; padding-left: 62px; }
.step::before {
  counter-increment: s; content: counter(s);
  position: absolute; left: 0; top: 0; width: 44px; height: 44px; border-radius: 14px;
  background: var(--ink); color: #fff; display: grid; place-items: center;
  font-family: "Manrope", Inter, sans-serif; font-weight: 800; font-size: 1.05rem;
}
.step h4 { margin-bottom: 5px; }
.step p { color: var(--slate); font-size: .94rem; }
.section--ink .step::before { background: var(--red); }
.section--ink .step p { color: #9AA4B3; }
.section--ink .step h4 { color: #fff; }

/* ---------- Chips / areas ---------- */
.chips { display: flex; flex-wrap: wrap; gap: 10px; }
.chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 16px; border-radius: 999px; background: #fff;
  border: 1px solid var(--line); font-size: .9rem; font-weight: 650; color: var(--ink-2);
  transition: all .18s var(--ease);
}
.chip:hover { border-color: var(--red); color: var(--red); background: var(--red-soft); transform: translateY(-2px); }
.chip svg { width: 14px; height: 14px; color: var(--red); }

/* ---------- Reviews ---------- */
.rating-badge {
  display: inline-flex; align-items: center; gap: 14px;
  padding: 14px 22px; border-radius: 999px; background: #fff;
  border: 1px solid var(--line); box-shadow: var(--shadow-sm);
}
.rating-badge .score { font-family: "Manrope", Inter, sans-serif; font-size: 1.9rem; font-weight: 800; color: var(--ink); line-height: 1; letter-spacing: -.04em; }
.stars { display: inline-flex; gap: 2px; }
.stars svg { width: 17px; height: 17px; color: #FFB400; }
.rating-badge small { display: block; font-size: .78rem; color: var(--slate); margin-top: 3px; }

.review { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 24px; box-shadow: var(--shadow-sm); }
.review__stars { margin-bottom: 12px; }
.review p { color: var(--ink-2); font-size: .97rem; }
.review__by { margin-top: 16px; display: flex; align-items: center; gap: 11px; }
.review__av { width: 40px; height: 40px; border-radius: 50%; background: var(--ink); color: #fff; display: grid; place-items: center; font-weight: 800; font-size: .9rem; flex: none; }
.review__by strong { display: block; font-size: .9rem; }
.review__by small { color: var(--slate-2); font-size: .78rem; }

/* ---------- App section ---------- */
.app-band {
  background: linear-gradient(135deg, var(--ink) 0%, #171D26 55%, #22181A 100%);
  border-radius: var(--r-xl); padding: clamp(28px, 3vw, 52px); color: #C8CEDA;
  display: grid; grid-template-columns: 1.25fr .75fr; gap: 36px; align-items: center;
  position: relative; overflow: hidden;
}
.app-band::before { content:""; position:absolute; width: 420px; height: 420px; right: -120px; top: -160px; border-radius: 50%; background: radial-gradient(circle, rgba(227,30,36,.30), transparent 68%); }
.app-band h2 { color: #fff; }
.app-band p { margin-top: 12px; }
.qr-tile { background: #fff; border-radius: var(--r-lg); padding: 18px; display: grid; justify-items: center; gap: 10px; box-shadow: var(--shadow-lg); position: relative; }
.qr-tile img, .qr-tile svg { width: 158px; height: 158px; }
.qr-tile span { font-size: .78rem; font-weight: 700; color: var(--slate); }
.store-row { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 22px; }

/* ---------- FAQ ---------- */
.faq { display: grid; gap: 12px; max-width: 880px; margin-inline: auto; }
.faq__item { background: #fff; border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; transition: border-color .2s var(--ease), box-shadow .2s var(--ease); }
.faq__item.is-open { border-color: #D2D9E3; box-shadow: var(--shadow-sm); }
.faq__q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 18px;
  padding: 18px 22px; background: none; border: 0; cursor: pointer; text-align: left;
  font-family: "Manrope", Inter, sans-serif; font-weight: 750; font-size: 1.02rem; color: var(--ink);
  letter-spacing: -.015em;
}
.faq__q:hover { color: var(--red); }
.faq__q .ico { width: 30px; height: 30px; border-radius: 9px; background: var(--bg-soft); display: grid; place-items: center; flex: none; transition: transform .25s var(--ease), background .2s; }
.faq__q .ico svg { width: 15px; height: 15px; color: var(--ink-2); }
.faq__item.is-open .ico { transform: rotate(180deg); background: var(--red); }
.faq__item.is-open .ico svg { color: #fff; }
.faq__a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .28s var(--ease); }
.faq__item.is-open .faq__a { grid-template-rows: 1fr; }
.faq__a > div { overflow: hidden; }
.faq__a p { padding: 0 22px 20px; color: var(--slate); font-size: .95rem; }

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(120deg, var(--red) 0%, var(--red-600) 48%, #8E0D12 100%);
  color: #fff; border-radius: var(--r-xl); padding: clamp(30px, 3.2vw, 56px);
  display: flex; flex-wrap: wrap; gap: 26px; align-items: center; justify-content: space-between;
  position: relative; overflow: hidden;
}
.cta-band::after { content:""; position:absolute; inset:0; background: radial-gradient(700px 300px at 88% 120%, rgba(255,255,255,.16), transparent 60%); pointer-events:none; }
.cta-band h2 { color: #fff; max-width: 18ch; }
.cta-band p { margin-top: 10px; color: rgba(255,255,255,.88); max-width: 46ch; }
.cta-band .btn { background: #fff; color: var(--red); box-shadow: 0 8px 24px rgba(0,0,0,.18); position: relative; z-index: 1; }
.cta-band .btn:hover { background: #fff; color: var(--red-700); }
.cta-band .btn--outline { background: transparent; color: #fff; border-color: rgba(255,255,255,.55); box-shadow: none; }
.cta-band .btn--outline:hover { background: rgba(255,255,255,.14); color: #fff; }

/* ---------- Page hero (inner pages) ---------- */
.page-hero { background: var(--ink); color: #C3CAD6; position: relative; overflow: hidden; }
.page-hero::before { content:""; position:absolute; inset:0;
  background: radial-gradient(760px 380px at 82% -30%, rgba(227,30,36,.30), transparent 62%),
              radial-gradient(600px 400px at 5% 130%, rgba(28,86,168,.28), transparent 60%); }
.page-hero__inner { position: relative; padding: clamp(44px, 4vw, 78px) 0; max-width: 780px; }
.page-hero h1 { color: #fff; }
.page-hero p { margin-top: 16px; font-size: 1.08rem; }
.crumbs { display: flex; gap: 8px; align-items: center; font-size: .82rem; color: #8E98A8; margin-bottom: 16px; flex-wrap: wrap; }
.crumbs a:hover { color: #fff; }
.crumbs span { color: #5D6675; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: #98A2B1; padding-top: clamp(48px, 4vw, 76px); }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 36px; padding-bottom: 44px; }
.footer h4 { color: #fff; font-size: .82rem; letter-spacing: .13em; text-transform: uppercase; margin-bottom: 16px; font-weight: 800; }
.footer ul { display: grid; gap: 10px; }
.footer a { font-size: .93rem; }
.footer a:hover { color: #fff; }
.footer p { font-size: .93rem; }
.footer__about p { margin-top: 16px; max-width: 40ch; }
.footer__contact li { display: flex; gap: 11px; align-items: flex-start; font-size: .93rem; }
.footer__contact svg { width: 16px; height: 16px; color: var(--red); flex: none; margin-top: 4px; }
.footer__contact a { font-weight: 650; color: #E4E8EE; }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.10); padding: 20px 0 calc(20px + env(safe-area-inset-bottom));
  display: flex; flex-wrap: wrap; gap: 14px; align-items: center; justify-content: space-between; font-size: .84rem;
}
.footer__bottom ul { display: flex; gap: 20px; flex-wrap: wrap; }

/* ---------- Sticky mobile action bar ---------- */
.action-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 70;
  display: none; gap: 10px; padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  background: rgba(255,255,255,.94); backdrop-filter: saturate(180%) blur(14px);
  border-top: 1px solid var(--line); box-shadow: 0 -6px 24px rgba(14,17,22,.10);
}
.action-bar .btn { flex: 1; padding: 14px 12px; font-size: .95rem; }

/* ---------- Utilities ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }
.mt-0 { margin-top: 0; } .mt-16 { margin-top: 16px; } .mt-24 { margin-top: 24px; } .mt-32 { margin-top: 32px; } .mt-40 { margin-top: 40px; }
.text-center { text-align: center; }
.sr-only { position:absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0 0 0 0); white-space:nowrap; border:0; }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 3vw, 56px); align-items: center; }

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
  .hero__inner { grid-template-columns: 1fr; }
  .booking { max-width: 640px; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 980px) {
  .nav__menu, .nav__phone, .nav__book { display: none; }
  .nav__burger { display: inline-flex; }
  .nav__cta .nav__call { display: inline-flex; }
  :root { --nav-h: 68px; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .app-band { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; }
  .trust__grid { grid-template-columns: repeat(2, 1fr); }
  .trust__item:nth-child(2) { border-right: 0; }
  .trust__item:nth-child(-n+2) { border-bottom: 1px solid var(--line-2); }
}
@media (max-width: 760px) {
  body { padding-bottom: 74px; }
  .action-bar { display: flex; }
  .topbar { display: none; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .cta-band { flex-direction: column; align-items: flex-start; }
  .price-list li, .route-list li { padding-inline: 18px; }
  .container { padding-inline: 18px; }
}
@media (max-width: 420px) {
  .logo__text { font-size: 1.2rem; }
  .phone-card__num { font-size: 1.2rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
}

@media print {
  .site-header, .topbar, .action-bar, .mobile-nav, .scrim, .hero__bg { display: none !important; }
  body { padding-bottom: 0; }
}

/* ==========================================================================
   Date & time picker ("Kedy vás máme vyzdvihnúť?")
   ========================================================================== */
.when {
  border: 1px solid var(--line); border-radius: 16px; background: var(--bg-soft);
  padding: 14px; display: grid; gap: 14px;
}
.when__label { font-size: .78rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: var(--slate-2); }

.when__days { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.day-chip {
  position: relative; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2px;
  padding: 11px 6px; min-height: 60px; border-radius: 12px; cursor: pointer;
  background: #fff; border: 1.5px solid var(--line); color: var(--ink-2);
  font-family: "Manrope", Inter, sans-serif; font-weight: 750; font-size: .9rem; line-height: 1.2;
  text-align: center; transition: all .18s var(--ease);
}
.day-chip small { font-size: .72rem; font-weight: 600; color: var(--slate-2); letter-spacing: 0; }
.day-chip:hover { border-color: #C9D1DC; }
.day-chip.is-active { border-color: var(--red); background: var(--red-soft); color: var(--red-700); box-shadow: 0 0 0 3px var(--red-ring); }
.day-chip.is-active small { color: var(--red); }
.day-chip:focus-visible { outline: 3px solid var(--red-ring); outline-offset: 2px; }
.day-chip--date svg { width: 17px; height: 17px; color: var(--slate); }
.day-chip.is-active.day-chip--date svg { color: var(--red); }
.day-chip--date[aria-expanded="true"] { border-color: var(--red); box-shadow: 0 0 0 3px var(--red-ring); }

/* ---------- Kalendár (rovnaký jazyk ako výber času) ---------- */
.when__date { position: relative; }
.datepick__menu {
  position: absolute; z-index: 40; left: 0; right: 0; top: calc(100% + 8px);
  background: #fff; border: 1px solid var(--line); border-radius: 16px;
  box-shadow: var(--shadow-lg); padding: 12px;
  opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: opacity .18s var(--ease), transform .18s var(--ease), visibility .18s;
}
.datepick__menu.is-open { opacity: 1; visibility: visible; transform: translateY(0); }

.datepick__head { display: flex; align-items: center; justify-content: space-between; gap: 8px; margin-bottom: 10px; }
.datepick__title {
  font-family: "Manrope", Inter, sans-serif; font-weight: 800; font-size: 1rem;
  color: var(--ink); letter-spacing: -.02em; text-transform: capitalize;
}
.datepick__nav {
  width: 34px; height: 34px; flex: none; display: grid; place-items: center;
  border: 1px solid var(--line); background: #fff; border-radius: 10px; cursor: pointer;
  color: var(--ink-2); transition: all .16s var(--ease);
}
.datepick__nav svg { width: 15px; height: 15px; }
.datepick__nav:hover:not(:disabled) { border-color: var(--red); color: var(--red); background: var(--red-soft); }
.datepick__nav:disabled { opacity: .35; cursor: not-allowed; }
.datepick__nav:focus-visible { outline: 3px solid var(--red-ring); outline-offset: 2px; }

.datepick__dow { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; margin-bottom: 4px; }
.datepick__dow span {
  text-align: center; font-size: .7rem; font-weight: 800; letter-spacing: .06em;
  text-transform: uppercase; color: var(--slate-2); padding: 4px 0;
}
.datepick__grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; }
.datepick__day {
  height: 40px; min-width: 0; display: grid; place-items: center;
  border: 1px solid transparent; background: #fff; border-radius: 10px; cursor: pointer;
  font-size: .93rem; font-weight: 650; color: var(--ink-2);
  font-variant-numeric: tabular-nums; transition: all .14s var(--ease); position: relative;
}
.datepick__day:hover:not(:disabled) { border-color: var(--red); color: var(--red); background: var(--red-soft); }
.datepick__day:focus-visible { outline: 3px solid var(--red-ring); outline-offset: 1px; }
.datepick__day.is-muted { visibility: hidden; }
.datepick__day:disabled { color: #C4CBD5; cursor: not-allowed; background: transparent; }
.datepick__day.is-today::after {
  content: ""; position: absolute; bottom: 5px; width: 4px; height: 4px;
  border-radius: 50%; background: var(--red);
}
.datepick__day.is-sel { background: var(--red); border-color: var(--red); color: #fff; }
.datepick__day.is-sel::after { background: #fff; }

.datepick__today {
  width: 100%; margin-top: 10px; padding: 10px 12px; cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  border: 0; border-radius: 11px; background: var(--bg-soft); color: var(--ink-2);
  font-weight: 700; font-size: .9rem; transition: all .16s var(--ease);
}
.datepick__today svg { width: 15px; height: 15px; color: var(--red); }
.datepick__today:hover { background: var(--red-soft); color: var(--red-700); }

.when__row { display: grid; grid-template-columns: 1fr; gap: 10px; }
.timepick { position: relative; }
.timepick__btn {
  width: 100%; display: flex; align-items: center; gap: 11px;
  padding: 13px 15px; border-radius: 12px; cursor: pointer; text-align: left;
  background: #fff; border: 1.5px solid var(--line); color: var(--ink);
  font-weight: 700; font-size: 1rem; transition: all .18s var(--ease);
}
.timepick__btn:hover { border-color: #C9D1DC; }
.timepick__btn[aria-expanded="true"] { border-color: var(--red); box-shadow: 0 0 0 3px var(--red-ring); }
.timepick__btn > svg:first-child { width: 19px; height: 19px; color: var(--red); flex: none; }
.timepick__btn .chev { width: 15px; height: 15px; margin-left: auto; color: var(--slate-2); transition: transform .2s var(--ease); flex: none; }
.timepick__btn[aria-expanded="true"] .chev { transform: rotate(180deg); }
.timepick__btn.is-empty { color: var(--slate-2); font-weight: 600; }

.timepick__menu {
  position: absolute; z-index: 30; left: 0; right: 0; top: calc(100% + 8px);
  background: #fff; border: 1px solid var(--line); border-radius: 16px; box-shadow: var(--shadow-lg);
  padding: 8px; max-height: 290px; overflow-y: auto; overscroll-behavior: contain;
  opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: opacity .18s var(--ease), transform .18s var(--ease), visibility .18s;
}
.timepick__menu.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
.timepick__soon {
  position: sticky; top: 0; z-index: 2;
  display: flex; align-items: center; gap: 9px; width: 100%;
  padding: 11px 13px; margin-bottom: 8px; border: 0; cursor: pointer;
  border-radius: 11px; background: #FCE9EA; color: var(--red-700);
  box-shadow: 0 0 0 8px #fff, 0 10px 12px -8px rgba(14,17,22,.28);
  font-weight: 750; font-size: .92rem; text-align: left;
}
.timepick__soon:hover { background: rgba(227,30,36,.16); }
.timepick__soon svg { width: 16px; height: 16px; flex: none; }
.timepick__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 6px; }
.timepick__sep {
  grid-column: 1 / -1; padding: 10px 4px 4px; font-size: .7rem; font-weight: 800;
  letter-spacing: .12em; text-transform: uppercase; color: var(--slate-2);
}
.timepick__slot {
  padding: 9px 4px; border-radius: 9px; border: 1px solid var(--line-2); background: #fff;
  font-size: .88rem; font-weight: 650; color: var(--ink-2); cursor: pointer;
  transition: all .14s var(--ease); font-variant-numeric: tabular-nums;
}
.timepick__slot:hover { border-color: var(--red); color: var(--red); background: var(--red-soft); }
.timepick__slot.is-sel { background: var(--red); border-color: var(--red); color: #fff; }
.timepick__empty { padding: 22px 12px; text-align: center; font-size: .88rem; color: var(--slate); }

.when__hint {
  display: flex; align-items: flex-start; gap: 8px; font-size: .84rem; font-weight: 600;
  color: var(--slate); line-height: 1.45;
}
.when__hint svg { width: 15px; height: 15px; flex: none; margin-top: 2px; color: var(--slate-2); }
.when__hint.ok { color: #12683F; } .when__hint.ok svg { color: #17A05E; }
.when__hint.warn { color: var(--red-700); } .when__hint.warn svg { color: var(--red); }

/* ---------- Form states ---------- */
.input.is-invalid, .textarea.is-invalid, .timepick__btn.is-invalid { border-color: var(--red); background: #FFF7F7; }
.field__err { font-size: .78rem; font-weight: 650; color: var(--red-700); display: none; }
.field__err.is-on { display: block; }
.btn[aria-busy="true"] { pointer-events: none; opacity: .75; }
.btn .spin { width: 17px; height: 17px; border: 2px solid rgba(255,255,255,.4); border-top-color: #fff; border-radius: 50%; animation: spin .7s linear infinite; display: none; }
.btn[aria-busy="true"] .spin { display: block; }
.btn[aria-busy="true"] .btn__ico { display: none; }
@keyframes spin { to { transform: rotate(360deg); } }
.hp-field {
  position: absolute !important; width: 1px !important; height: 1px !important;
  padding: 0 !important; margin: -1px !important; overflow: hidden !important;
  clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap; border: 0 !important;
}

/* ---------- Reviews / rating ---------- */
.rating-card {
  display: flex; flex-direction: column; justify-content: center; gap: 6px;
  background: linear-gradient(135deg, var(--ink) 0%, #1A212B 100%); color: #C8CEDA;
  border-radius: var(--r-lg); padding: 26px; text-align: center;
}
.rating-card .score { font-family: "Manrope", Inter, sans-serif; font-size: 2.9rem; font-weight: 800; color: #fff; line-height: 1; letter-spacing: -.04em; }
.rating-card p { font-size: .88rem; color: #99A3B2; }
.rating-card .btn { margin-top: 14px; align-self: center; }
.review p { font-style: normal; }

/* ---------- Legal / document pages ---------- */
.prose { max-width: 78ch; }
.prose h2 { margin-top: 42px; margin-bottom: 12px; font-size: clamp(1.3rem, 1.1rem + .8vw, 1.75rem); }
.prose h3 { margin-top: 26px; margin-bottom: 8px; }
.prose h2:first-child, .prose h3:first-child { margin-top: 0; }
.prose p { margin-bottom: 14px; color: var(--slate); }
.prose ul { margin: 0 0 16px; display: grid; gap: 9px; }
.prose ul li { position: relative; padding-left: 26px; color: var(--slate); }
.prose ul li::before {
  content: ""; position: absolute; left: 4px; top: .62em; width: 7px; height: 7px;
  border-radius: 50%; background: var(--red);
}
.prose a { color: var(--red); font-weight: 650; text-decoration: underline; text-underline-offset: 2px; }
.prose table { width: 100%; border-collapse: collapse; margin-bottom: 20px; font-size: .93rem; }
.prose th, .prose td { text-align: left; padding: 11px 14px; border-bottom: 1px solid var(--line); vertical-align: top; }
.prose th { font-weight: 750; color: var(--ink); background: var(--bg-soft); }

.toc { background: var(--bg-soft); border: 1px solid var(--line); border-radius: var(--r); padding: 20px 22px; margin-bottom: 34px; }
.toc h4 { margin-bottom: 12px; font-size: .76rem; letter-spacing: .12em; text-transform: uppercase; color: var(--slate-2); }
.toc ol { display: grid; gap: 8px; counter-reset: toc; }
.toc li { counter-increment: toc; }
.toc a { font-size: .93rem; font-weight: 650; color: var(--ink-2); }
.toc a::before { content: counter(toc) ". "; color: var(--red); font-weight: 800; }
.toc a:hover { color: var(--red); }

.pdf-frame {
  width: 100%; height: min(78vh, 900px); border: 1px solid var(--line);
  border-radius: var(--r-lg); background: var(--bg-soft); overflow: hidden;
}
.pdf-frame iframe, .pdf-frame object { width: 100%; height: 100%; border: 0; display: block; }
.pdf-fallback { display: grid; place-items: center; gap: 14px; height: 100%; padding: 40px 24px; text-align: center; }

/* ---------- QR tile ---------- */
.qr-tile img, .qr-tile svg, .qr-tile object { width: 158px; height: 158px; }
.store-row .btn { flex: 1 1 auto; }

/* ==========================================================================
   Responsive hardening
   ========================================================================== */
@media (max-width: 1100px) {
  .booking { max-width: none; }
}
@media (max-width: 760px) {
  .when__days { grid-template-columns: repeat(2, 1fr); }
  .timepick__grid { grid-template-columns: repeat(3, 1fr); }
  .rating-badge { flex-wrap: wrap; justify-content: center; text-align: center; }
  .crumbs { font-size: .78rem; }
  .prose table { display: block; overflow-x: auto; white-space: nowrap; }
  .pdf-frame { height: 70vh; }
  .app-band { text-align: left; }
  .qr-tile { justify-self: center; max-width: 220px; }
}
@media (max-width: 480px) {
  body { font-size: 16px; }
  .container { padding-inline: 16px; }
  .booking { padding: 18px; border-radius: 20px; }
  .card { padding: 22px; }
  .btn { padding: 13px 20px; }
  .btn--lg { padding: 15px 22px; font-size: .98rem; }
  .btn-row { gap: 10px; }
  .btn-row .btn { flex: 1 1 100%; }
  .action-bar .btn { padding: 13px 8px; font-size: .92rem; }
  .price-list li, .route-list li { padding-inline: 16px; flex-wrap: wrap; gap: 4px 12px; }
  .route-list .route { flex: 1 1 100%; }
  .timepick__grid { grid-template-columns: repeat(3, 1fr); }
  .cta-band, .app-band { padding: 24px 20px; border-radius: 20px; }
  .cta-band .btn-row { width: 100%; }
  .trust__item { padding: 20px 12px; }
  .step { padding-left: 54px; }
  .step::before { width: 38px; height: 38px; border-radius: 12px; font-size: .95rem; }
  .footer__bottom { flex-direction: column; align-items: flex-start; gap: 10px; }
  .footer__bottom ul { gap: 14px; }
}
@media (max-width: 360px) {
  .when__days { grid-template-columns: 1fr 1fr; }
  .timepick__grid { grid-template-columns: repeat(2, 1fr); }
  .nav__cta { gap: 6px; }
}

/* checkbox v chybovom stave */
.field.is-invalid .check { color: var(--red-700); }
.field.is-invalid .check input { outline: 2px solid var(--red); outline-offset: 2px; border-radius: 4px; }
.check input:focus-visible { outline: 3px solid var(--red-ring); outline-offset: 2px; }

/* rozloženie právnych stránok */
.legal-layout { display: grid; grid-template-columns: 290px 1fr; gap: 48px; align-items: start; }
.legal-layout .toc { position: sticky; top: calc(var(--nav-h) + 20px); margin-bottom: 0; }
@media (max-width: 980px) {
  .legal-layout { grid-template-columns: 1fr; gap: 28px; }
  .legal-layout .toc { position: static; }
}


/* grid/flex položky nesmú rozťahovať layout na úzkych displejoch */
.split > *, .grid > *, .form-grid > *, .when__days > *, .timepick__grid > *,
.footer__grid > *, .trust__grid > *, .legal-layout > *, .nav, .topbar__inner { min-width: 0; }
.booking, .card, .price-card, .note-box, .feature, .review, .app-band > * { min-width: 0; }
.feature > div, .phone-card > span, .footer__contact li > span, .card__ico, .feature__ico { min-width: 0; }
.feature__ico, .card__ico, .phone-card__ico { flex: none; }
.input, .textarea, .select { max-width: 100%; }
.prose, .toc { max-width: 100%; overflow-wrap: anywhere; }

@media (max-width: 480px) {
  .datepick__menu { padding: 10px; }
  .datepick__day { height: 38px; font-size: .9rem; }
  .datepick__grid, .datepick__dow { gap: 3px; }
}

/* „Iný dátum" — rovnaká výška ako ostatné prepínače */
.day-chip__lbl { display: flex; flex-direction: column; align-items: center; gap: 2px; line-height: 1.2; }
.day-chip__lbl small { font-size: .72rem; font-weight: 600; color: var(--slate-2); }
.day-chip.is-active .day-chip__lbl small { color: var(--red); }
.day-chip.is-active.day-chip--date > svg { display: none; }
