/* ============================================================
   LODNÍ SERVIS — REDESIGN (LS-9)
   Custom theme layer loaded after Bootstrap 5.
   Design tokens follow the V1 "Dark hero + booking widget"
   prototype from Claude Design.
   ============================================================ */

:root {
  --ls-blue:        #1a6db0;
  --ls-blue-light:  #4090d4;
  --ls-blue-dark:   #143a66;
  --ls-blue-deep:   #0c244a;
  --ls-amber:       #f0b542;
  --ls-amber-dark:  #d29426;
  --ls-text:        #1a2330;
  --ls-muted:       #6b7785;
  --ls-border:      #e2e8ee;
  --ls-off:         #f4f7fa;
  --ls-blue-tint:   #f7faff;
  --ls-blue-pale:   #e8f1fa;
  --ls-border-blue:      #d4e0eb;
  --ls-border-blue-dark: #c4d2e0;
  --ls-white:       #ffffff;
  --ls-success:     #2c8a4d;
  --ls-success-bg:  #e3f5e9;
  --ls-danger:      #c63838;
  --ls-danger-bg:   #fde8e8;
  --ls-warning:     #b97a00;
  --ls-warning-bg:  #fff4d6;
  --ls-radius:      10px;
  --ls-radius-lg:   16px;
  --ls-shadow-sm:   0 2px 10px rgba(10,30,60,.06);
  --ls-shadow:      0 4px 18px rgba(10,30,60,.10);
  --ls-shadow-lg:   0 12px 40px rgba(10,30,60,.18);
  --ls-font-display: 'Barlow Condensed', 'Open Sans', Arial, sans-serif;
  --ls-font-body:   'Inter', 'Open Sans', system-ui, -apple-system, Arial, sans-serif;
  --ls-footer-bg-top:    #cfe4f6;
  --ls-footer-bg-bottom: #b9d5ed;
  --ls-footer-logo-bg:   #3aa3d6;
  --ls-footer-navy:      #0d2238;
  --ls-footer-gold:      #d29a1a;
  --ls-footer-gold-sub:  #8a5a0c;
  --ls-footer-map-bg:    #dbe9d6;
  --ls-scroll-offset:    88px;
  --ls-nav-height:       68px;

  /* Typografie — jediný zdroj pravdy pro velikosti */
  --ls-text-xs:   0.75rem;   /* 12px — badge, tag, uppercase kicker */
  --ls-text-sm:   0.875rem;  /* 14px — sekundární text, popisy */
  --ls-text-base: 1rem;       /* 16px — body */
  --ls-text-md:   1.125rem;  /* 18px */
  --ls-text-lg:   1.25rem;   /* 20px — názvy a ceny lodí (HP) */
  --ls-text-xl:   1.375rem;  /* 22px */
  --ls-text-2xl:  1.625rem;  /* 26px — featured / celková cena */

  /* Zvětšený proklad pro kickery a tlačítka v display fontu (přebíjí výchozí .05em níže) */
  --ls-tracking-display: 0.125em;

  /* Display velikosti — nadpisy, hero, velké ceny (28–80px) */
  --ls-display-sm:   1.75rem;   /* 28px */
  --ls-display-md:   2.125rem;  /* 34px */
  --ls-display-lg:   2.75rem;   /* 44px */
  --ls-display-xl:   3.5rem;    /* 56px */
  --ls-display-hero: 4.875rem;  /* 78px — hero title */

  /* Bootstrap 5 theme bridge (LS tokens as source of truth) */
  --bs-primary: var(--ls-blue);
  --bs-primary-rgb: 26, 109, 176;
  --bs-secondary: var(--ls-blue-dark);
  --bs-success: var(--ls-success);
  --bs-danger: var(--ls-danger);
  --bs-warning: var(--ls-amber);
  --bs-body-font-family: var(--ls-font-body);
  --bs-body-color: var(--ls-text);
  --bs-body-font-size: var(--ls-text-base);
  --bs-secondary-color: var(--ls-muted);
  --bs-tertiary-color: rgba(26, 35, 48, 0.55);
  --bs-border-color: var(--ls-border);
  --bs-border-radius: var(--ls-radius);
  --bs-link-color: var(--ls-blue);
  --bs-link-hover-color: var(--ls-blue-dark);
}

/* ---------- Layout / prose utilities (no inline styles in templates) ---------- */
.ls-nav-sentinel {
  position: absolute;
  top: 0;
  height: 1px;
  width: 1px;
  pointer-events: none;
}
.ls-prose-narrow { max-width: 720px; }
.ls-prose-narrow-sm { max-width: 580px; }
.ls-seo-lead { max-width: 1100px; text-align: justify; }
.ls-section.ls-section--flush-bottom { padding-bottom: 2rem; }
.ls-section--flush-bottom .ls-seg {
  margin-bottom: 12px;
}
.ls-cenik-menu-lead {
  max-width: 920px;
  margin-bottom: 28px;
}
.ls-cenik-currency-note {
  font-size: var(--ls-text-xs);
}
.ls-cenik-note strong { color: var(--ls-text); }
.ls-rez-page-lead {
  margin-top: 18px;
  max-width: 820px;
}
.ls-hero-bg--img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}
.ls-status-dot {
  display: inline-block;
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 50%;
  vertical-align: middle;
}
.ls-col-duration { width: 168px; }

/* ---------- Base ---------- */
html, body {
  background: var(--ls-white);
  color: var(--ls-text);
  font-family: var(--ls-font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  touch-action: manipulation;
}

a {
  color: var(--ls-blue);
}
a:hover, a:focus {
  color: var(--ls-blue-dark);
  text-decoration: underline;
}

/* Výchozí proklad pro VŠECHNY výskyty display fontu — konkrétní prvky
   níže si nastavují vlastní hodnotu (letter-spacing/var(--ls-tracking-display)/…),
   která tohle díky pořadí v souboru přebije. */
h1, h2, h3, h4, h5, h6,
.btn-lg,
.alert h4,
.ls-nav-brand-name,
.ls-nav-brand-sub,
.ls-hero-title,
.ls-hero-stats .stat-num,
.ls-booking h3,
.ls-booking-submit,
.ls-section-eyebrow,
.ls-section-title,
.ls-trasa-surcharge,
.ls-trasa-top,
.ls-trasa-card .name,
.ls-feature .num,
.ls-feature .title,
#webReservationForm h4,
#webReservationForm h1,
.ls-rez-summary-title,
.ls-rez-price-strike,
.ls-rez-price-total,
.ls-rez-boat-name,
.ls-rez-boat-price-val,
.ls-rez-boat-subtotal-val,
.ls-footer-brand-name,
.ls-footer-phone-main,
.ls-footer-phone-secondary,
.ls-footer-email,
.ls-footer-base-title,
.ls-footer-base-sub,
.ls-page-head-aside .btn,
.ls-price-card-cat,
.ls-price-chip,
.ls-price-free,
.ls-estimate-title,
.ls-estimate-line span:last-child,
.ls-estimate-total-value,
.ls-skoly-route-name,
.ls-faq-accordion .accordion-button,
.ls-faq-aside-phone,
.ls-kontakt-phone,
.ls-kontakt-mail,
.ls-kontakt-mail:visited,
.ls-basecamp-name,
.ls-basecamp-sub,
.ls-cenik-tab-title,
.ls-section-title-xl,
.ls-cenik-table-heading,
.ls-table-heading,
.ls-cenik-table .ls-thead-cat th,
.ls-boat-name,
.ls-boat-top-badge,
.ls-cenik-table td.ls-price-cell,
.ls-discount-card__header,
.ls-discount-section-title,
.ls-side-cta-kicker,
.ls-side-cta-title,
.ls-side-cta-phone,
.ls-podminky__title,
.ls-podminky__section,
.ls-stop-name,
.ls-stop-price,
.ls-stop-free,
.ls-bagaz-card__head,
.ls-bagaz-price,
.ls-equip-card__title,
.ls-cms-body h3,
.ls-akce-label,
.ls-ships-usp-title,
.ls-ship-hero-name,
.ls-ship-mid-name,
.ls-ships-section .ls-ship-small-name,
.ls-ships-section .ls-ship-hero-price,
.ls-ships-title,
.ls-ships-section .ls-ship-mid-price,
.ls-ships-section .ls-ship-small-price,
.ls-ship-hero-tag,
.ls-ship-small-name,
.ls-ship-reserve-btn,
.ls-ships-summary-idle-title,
.ls-ships-summary-label,
.ls-ships-summary-row-name strong,
.ls-ships-summary-row-price,
.ls-ships-summary-total-price,
.ls-ships-summary-cta,
.ls-stepper-val,
.ls-otava-kemp-title,
.ls-otava-zaj-title,
.ls-otava-map-dl__title,
.ls-nocni-card--fact .ls-nocni-card-value,
.ls-nocni-card--text .ls-nocni-card-label,
.ls-nocni-experience-kicker,
.ls-nocni-experience-title,
.ls-nocni-schedule-t,
.ls-brigada-job-t,
.ls-brigada-job-pay,
.ls-brigada-job-subh,
.ls-brigada-perks-kicker,
.ls-brigada-perks-title,
.ls-faq-panel-group .panel-title,
.ls-cenik-cell-link,
.finalPriceWithVat,
.ls-rez-price-strike {
  letter-spacing: 0.035em;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--ls-font-display);
  font-weight: 800;
  color: var(--ls-text);
  letter-spacing: -0.5px;
  line-height: 1.1;
}
h1 { font-size: var(--ls-display-lg); margin: 0 0 14px; }
h2 { font-size: var(--ls-display-md); margin: 0 0 12px; }
h3 { font-size: 24px; margin: 18px 0 10px; }
h4 { font-size: var(--ls-text-md); margin: 16px 0 8px; }
h2.page-header {
  border-bottom: 2px solid var(--ls-border);
  padding-bottom: 12px;
  margin-top: 36px;
}
h1 small, h2 small, h3 small, h4 small {
  font-family: var(--ls-font-body);
  font-weight: 400;
  color: var(--ls-muted);
  font-size: max(60%, var(--ls-text-sm));
}
p, .lead {
  color: var(--ls-text);
}
p.lead {
  font-size: var(--ls-text-md);
  line-height: 1.6;
  font-weight: 400;
  color: var(--ls-text);
}

/* ---------- Buttons ---------- */
.btn {
  font-family: var(--ls-font-body);
  font-weight: 600;
  border-radius: var(--ls-radius);
  border: none;
  padding: 9px 18px;
  transition: background-color .15s, color .15s, transform .05s, box-shadow .15s;
  text-shadow: none;
  background-image: none;
  box-shadow: none;
  text-decoration: none;
}
a.btn:hover,
a.btn:focus {
  text-decoration: none;
}
.btn:focus, .btn:active:focus, .btn.focus {
  outline: 2px solid rgba(26,109,176,.35);
  outline-offset: 2px;
}
.btn:active { transform: translateY(1px); }
.btn-lg {
  padding: 13px 26px;
  font-size: var(--ls-text-base);
  border-radius: var(--ls-radius);
  font-family: var(--ls-font-display);
  font-weight: 700;
  letter-spacing: var(--ls-tracking-display);
  text-transform: uppercase;
}
.btn-sm { padding: 6px 12px; font-size: var(--ls-text-sm); }

.ls-btn-display {
  font-family: var(--ls-font-display);
  letter-spacing: var(--ls-tracking-display);
  text-transform: uppercase;
}

.btn-primary {
  --bs-btn-color: #fff;
  --bs-btn-bg: var(--ls-blue);
  --bs-btn-border-color: var(--ls-blue);
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: var(--ls-blue-dark);
  --bs-btn-hover-border-color: var(--ls-blue-dark);
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: var(--ls-blue-dark);
  --bs-btn-active-border-color: var(--ls-blue-dark);
}

.btn-warning {
  --bs-btn-color: #1a1a1a;
  --bs-btn-bg: var(--ls-amber);
  --bs-btn-border-color: var(--ls-amber);
  --bs-btn-hover-color: #1a1a1a;
  --bs-btn-hover-bg: var(--ls-amber-dark);
  --bs-btn-hover-border-color: var(--ls-amber-dark);
  --bs-btn-active-color: #1a1a1a;
  --bs-btn-active-bg: var(--ls-amber-dark);
  --bs-btn-active-border-color: var(--ls-amber-dark);
}

.btn-secondary, .btn-secondary:focus {
  background-color: #fff;
  color: var(--ls-text);
  border: 2px solid var(--ls-border);
  padding: 7px 16px;
}
.btn-secondary:hover, .btn-secondary:active {
  background-color: var(--ls-off);
  border-color: var(--ls-blue);
  color: var(--ls-blue-dark);
}
.btn-secondary.btn-sm { padding: 4px 10px; }
.btn-secondary.btn-lg { padding: 11px 24px; }

.btn-success {
  background-color: var(--ls-success);
  color: #fff;
  border-color: var(--ls-success);
}

.btn[disabled], .btn.disabled {
  opacity: .55;
  cursor: not-allowed;
  pointer-events: none;
}

.btn-outline-primary {
  --bs-btn-color: var(--ls-blue);
  --bs-btn-border-color: var(--ls-blue);
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: var(--ls-blue);
  --bs-btn-hover-border-color: var(--ls-blue);
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: var(--ls-blue);
  --bs-btn-active-border-color: var(--ls-blue);
  color: var(--ls-blue);
  background-color: #fff;
  border: 2px solid var(--ls-blue);
}
.btn-outline-primary:hover,
.btn-outline-primary:focus,
.btn-outline-primary:active {
  color: #fff;
  background-color: var(--ls-blue);
  border-color: var(--ls-blue);
}

/* ---------- Labels (chips) ---------- */
.label {
  display: inline-block;
  padding: 4px 10px;
  font-family: var(--ls-font-body);
  font-size: var(--ls-text-xs);
  font-weight: 700;
  border-radius: 20px;
  letter-spacing: .5px;
  text-transform: uppercase;
  vertical-align: middle;
}
.label-success { background: var(--ls-amber); color: #1a1a1a; }
.label-info    { background: #e0eefa; color: var(--ls-blue-dark); }
.label-primary { background: #e0eefa; color: var(--ls-blue-dark); }

.badge.ls-chip-primary {
  background: #e0eefa;
  color: var(--ls-blue-dark);
  font-family: var(--ls-font-body);
  font-size: var(--ls-text-xs);
  font-weight: 700;
  letter-spacing: .5px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
}
.badge.ls-chip-amber {
  background: var(--ls-amber);
  color: #1a1a1a;
  font-family: var(--ls-font-body);
  font-size: var(--ls-text-xs);
  font-weight: 700;
  letter-spacing: .5px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
}

/* ---------- Alerts ---------- */
.alert {
  border-radius: var(--ls-radius);
  border: 1px solid;
  padding: 14px 18px;
  font-size: var(--ls-text-base);
}
.alert h4 {
  margin-top: 0;
  color: inherit;
  font-family: var(--ls-font-display);
  font-weight: 700;
}
.alert-success { background: var(--ls-success-bg); border-color: #b5e0c2; color: #1d6e3a; }
.alert-info    { background: #e8f3fc;            border-color: #c8e1f4; color: var(--ls-blue-dark); }
.alert-warning { background: var(--ls-warning-bg); border-color: #f3df9e; color: var(--ls-warning); }
.alert-danger  { background: var(--ls-danger-bg); border-color: #f1baba; color: var(--ls-danger); }

/* ---------- Forms ---------- */
.form-control,
.input-group .form-control {
  border: 2px solid var(--ls-border);
  border-radius: var(--ls-radius);
  box-shadow: none;
  font-family: var(--ls-font-body);
  font-size: var(--ls-text-base);
  color: var(--ls-text);
  height: 44px;
  padding: 9px 14px;
  background: #fff;
  transition: border-color .15s, box-shadow .15s;
}
.form-control:focus {
  border-color: var(--ls-blue);
  box-shadow: 0 0 0 3px rgba(26,109,176,.15);
}
textarea.form-control { height: auto; min-height: 100px; }
select.form-control {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path fill='%236b7785' d='M6 8L0 0h12z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}
.ls-rez-form select.form-control:required:invalid {
  color: var(--ls-muted);
}
.ls-rez-form select.form-control option {
  color: var(--ls-text);
}
.form-group,
.control-label,
.form-label {
  font-size: var(--ls-text-sm);
  font-weight: 600;
  color: var(--ls-muted);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: .5px;
}
.has-error .form-control,
.form-control.is-invalid {
  border-color: var(--ls-danger);
  box-shadow: 0 0 0 3px rgba(198,56,56,.15);
}
.has-error .control-label,
.has-error .form-label,
.has-error .help-block,
.form-label.text-danger {
  color: var(--ls-danger);
}
.has-success .form-control,
.form-control.is-valid {
  border-color: var(--ls-success);
}
label.error,
.ls-date-field-feedback {
  display: block;
  color: var(--ls-danger);
  font-size: var(--ls-text-sm);
  font-weight: 600;
  margin-top: 6px;
}
.input-group-addon {
  background: var(--ls-off);
  border: 2px solid var(--ls-border);
  border-left: none;
  color: var(--ls-muted);
  border-radius: 0 var(--ls-radius) var(--ls-radius) 0;
}

hr.cleaner {
  height: 0;
  border: none;
  margin: 0;
}

.control-label a[href*="obchodni-podminky"],
.form-label a[href*="obchodni-podminky"] {
  color: unset;
  text-decoration: underline;
}
.control-label a[href*="obchodni-podminky"]:hover,
.form-label a[href*="obchodni-podminky"]:hover {
  text-decoration: none;
}

/* ---------- Section helpers ---------- */
.section { padding: 56px 0; }
.section.section-top { padding-top: 56px; }
.section-default { background: var(--ls-off); color: var(--ls-text); }
.section-primary { background: #fff; color: var(--ls-text); }
.section-cenik   { background: var(--ls-white); }
.section-kontakt { background: var(--ls-blue-deep); padding: 20px 0; }
.section-kontakt p.lead, .section-kontakt a {
  color: #fff;
}
.section-kontakt a:hover { color: var(--ls-amber); text-decoration: none; }

.well {
  background: #fff;
  border: 1px solid var(--ls-border);
  border-radius: var(--ls-radius-lg);
  box-shadow: var(--ls-shadow-sm);
  padding: 20px 24px;
  margin-bottom: 20px;
}
.well.akce {
  background: linear-gradient(90deg, var(--ls-amber) 0%, #f7c96b 100%);
  border: none;
  color: #1a1a1a;
  border-radius: var(--ls-radius);
  padding: 12px 18px;
}
.well.akce h3, .well.akce h2, .well.akce p { color: #1a1a1a; margin: 4px 0; }
.well.akce a { color: var(--ls-blue-dark); font-weight: 700; text-decoration: underline; }

/* ============================================================
   NAVBAR (dark, sticky) — replaces old .navbar-default
   ============================================================ */
.ls-nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1030;
  background: var(--ls-blue-deep);
  color: #fff;
  border: none;
  box-shadow: 0 2px 10px rgba(0,0,0,.18);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
.ls-nav--transparent {
  background: transparent;
  box-shadow: none;
}
.ls-page-content { padding-top: var(--ls-nav-height); }
.ls-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 14px;
  padding-bottom: 14px;
}
.ls-nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: #fff;
  flex-shrink: 0;
}
.ls-nav-brand:hover, .ls-nav-brand:focus { text-decoration: none; color: #fff; }
.ls-nav-brand img {
  height: 40px;
  width: auto;
}
.ls-nav-brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}
.ls-nav-brand-name {
  font-family: var(--ls-font-display);
  font-weight: 800;
  font-size: var(--ls-text-md);
  letter-spacing: var(--ls-tracking-display);
  text-transform: uppercase;
}
.ls-nav-brand-sub {
  font-family: var(--ls-font-display);
  font-weight: 400;
  font-size: var(--ls-text-xs);
  color: rgba(255,255,255,.65);
  letter-spacing: var(--ls-tracking-display);
  text-transform: uppercase;
}
.ls-nav-links {
  display: flex;
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
  flex-wrap: wrap;
}
.ls-nav-links a {
  font-family: var(--ls-font-body);
  font-size: var(--ls-text-sm);
  font-weight: 500;
  color: var(--ls-white);
  text-decoration: none;
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
  transition: color .15s, border-color .15s;
  white-space: nowrap;
}
.ls-nav-links a:hover, .ls-nav-links a:focus {
  color: #fff;
  border-bottom-color: var(--ls-amber);
  text-decoration: none;
}
.ls-nav-links li.active a {
  color: var(--ls-amber);
  border-bottom-color: var(--ls-amber);
}
.ls-nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.ls-nav-phone {
  background: var(--ls-amber);
  color: #1a1a1a;
  font-family: var(--ls-font-body);
  font-weight: 700;
  font-size: var(--ls-text-sm);
  padding: 9px 18px;
  border-radius: 8px;
  text-decoration: none;
  white-space: nowrap;
}
.ls-nav-phone:hover { background: var(--ls-amber-dark); text-decoration: none; }
.ls-nav-social {
  display: flex;
  gap: 8px;
}
.ls-nav-social a {
  color: #fff;
  font-size: var(--ls-text-base);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  text-decoration: none;
}
.ls-nav-social a.fb { background: #3b5998; }
.ls-nav-social a.ig { background: #e1306c; }
.ls-nav-links .ls-nav-social a {
  padding: 0;
  border-bottom: none;
  white-space: normal;
}
.ls-nav-social a:hover,
.ls-nav-social a:focus,
.ls-kontakt-social a:hover,
.ls-kontakt-social a:focus {
  color: var(--ls-white);
  opacity: .9;
  border-bottom-color: transparent;
  text-decoration: none;
}
.ls-nav-social-item { display: none; }

.ls-nav-toggle {
  display: none;
  background: none;
  border: 2px solid rgba(255,255,255,.25);
  color: #fff;
  font-size: var(--ls-text-xl);
  line-height: 1;
  padding: 6px 12px;
  border-radius: 8px;
  cursor: pointer;
}

@media (min-width: 992px) {
  :root { --ls-nav-height: 80px; }
  .ls-nav-inner {
    padding-top: 16px;
    padding-bottom: 16px;
  }
  .ls-nav-brand img { height: 48px; }
  .ls-nav-brand-name { font-size: var(--ls-text-lg); }
  .ls-nav-brand-sub { font-size: var(--ls-text-sm); }
  .ls-nav-links a { font-size: var(--ls-text-md); }
}

@media (max-width: 991px) {
  .ls-nav {
    overflow: visible;
    --ls-nav-mobile-inset: calc(var(--bs-gutter-x, 1.5rem) * .5);
  }
  .ls-nav-inner {
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .ls-nav-links {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
    background: var(--ls-blue-dark);
    padding: 0;
    margin: 0;
    box-shadow: 0 6px 20px rgba(0,0,0,.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    pointer-events: none;
    transition:
      opacity 0.3s ease,
      transform 0.3s ease,
      box-shadow 0.3s ease,
      visibility 0s linear 0.3s;
  }
  .ls-nav.ls-nav--open .ls-nav-links {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
    transition:
      opacity 0.3s ease,
      transform 0.3s ease,
      box-shadow 0.3s ease,
      visibility 0s linear 0s;
  }
  .ls-nav.ls-nav--open .ls-nav-links > li:not(.ls-nav-social-item) > a {
    display: block;
    padding: 9px var(--ls-nav-mobile-inset);
    border-bottom: 1px solid rgba(255,255,255,.06);
  }
  .ls-nav.ls-nav--open .ls-nav-links li.active a {
    background: rgba(255,255,255,.05);
  }
  .ls-nav.ls-nav--open.ls-nav--transparent {
    background: var(--ls-blue-deep);
    box-shadow: 0 2px 10px rgba(0,0,0,.18);
  }
  .ls-nav-toggle { display: inline-flex; align-items: center; justify-content: center; }
  .ls-nav-inner { flex-wrap: nowrap; }
  .ls-nav-brand { order: 0; }
  .ls-nav-cta { order: 1; margin-left: auto; }
  .ls-nav-cta .ls-nav-social { display: none; }
  .ls-nav-social-item {
    display: block;
    padding-bottom: 4px;
  }
  .ls-nav-social-kicker {
    display: block;
    padding: 8px var(--ls-nav-mobile-inset) 6px;
    font-size: var(--ls-text-xs);
    font-weight: 700;
    color: var(--ls-amber);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-align: right;
  }
  .ls-nav-social-item .ls-nav-social {
    justify-content: flex-end;
    gap: 8px;
    padding: 0 var(--ls-nav-mobile-inset) 10px;
  }
  .ls-nav-social-item .ls-nav-social a {
    width: 38px;
    height: 38px;
    font-size: var(--ls-text-md);
  }
}

@media (max-height: 520px) and (max-width: 991px) {
  .ls-nav-inner {
    padding-top: 8px;
    padding-bottom: 8px;
  }
  .ls-nav.ls-nav--open .ls-nav-links > li:not(.ls-nav-social-item) > a {
    padding: 7px var(--ls-nav-mobile-inset);
    font-size: 13px;
  }
  .ls-nav-social-kicker {
    padding: 6px var(--ls-nav-mobile-inset) 4px;
  }
  .ls-nav-social-item .ls-nav-social {
    gap: 6px;
    padding: 0 var(--ls-nav-mobile-inset) 8px;
  }
  .ls-nav-social-item .ls-nav-social a {
    width: 34px;
    height: 34px;
    font-size: var(--ls-text-base);
  }
}

/* ============================================================
   HERO (homepage)
   ============================================================ */
.ls-hero {
  position: relative;
  min-height: 688px;
  margin-top: calc(-1 * var(--ls-nav-height));
  background: var(--ls-blue-deep);
  overflow: hidden;
  color: #fff;
}
.ls-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('/assets/img/otava/08.jpg');
  background-size: cover;
  background-position: center 30%;
  z-index: 0;
}
.ls-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(5,20,40,.78) 0%, rgba(5,20,40,.35) 60%, rgba(5,20,40,.7) 100%);
  z-index: 1;
}
.ls-hero-inner {
  position: relative;
  z-index: 2;
  padding-block: 120px 60px;
  padding-left: 60px;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 48px;
  align-items: center;
}
.ls-hero-title {
  font-family: var(--ls-font-display);
  font-weight: 900;
  font-size: var(--ls-display-hero);
  line-height: .95;
  color: #fff;
  text-transform: uppercase;  
  margin: 0 0 18px;
}
.ls-hero-title .accent { color: var(--ls-amber); }
.ls-hero:not(.ls-hero--photo) .ls-hero-lead {
  font-size: var(--ls-text-md);
  font-weight: 500;
  color: #fff;
  line-height: 1.35;
  max-width: 460px;
  margin-bottom: 28px;
  text-shadow: 0 1px 3px rgba(5, 20, 40, .4);
}
.ls-hero-lead {
  font-size: var(--ls-text-md);
  color: rgba(255,255,255,.82);
  font-weight: 400;
  line-height: 1.55;
  max-width: 460px;
  margin-bottom: 28px;
}
.ls-hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.ls-hero-actions .btn-primary {
  padding: 16px 36px;
  font-size: var(--ls-text-lg);
}
.ls-hero-actions .btn-ghost {
  padding: 16px 26px;
  font-size: var(--ls-text-lg);
  background: rgba(255,255,255,.15);
  color: #fff;
  border: 2px solid rgba(255,255,255,.35);
  backdrop-filter: blur(4px);
}
.ls-hero-actions .btn-ghost:hover {
  background: rgba(255,255,255,.25);
  border-color: rgba(255,255,255,.5);
  color: #fff;
}
.ls-hero-stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}
.ls-hero-stats .stat-num {
  font-family: var(--ls-font-display);
  font-weight: 800;
  font-size: var(--ls-text-2xl);
  color: var(--ls-amber);
  line-height: 1;
  text-shadow: 0 1px 4px rgba(5, 20, 40, .35);
}
.ls-hero-stats .stat-label {
  font-size: var(--ls-text-md);
  font-weight: 500;
  color: #fff;
  margin-top: 6px;
  line-height: 1.35;
  text-shadow: 0 1px 3px rgba(5, 20, 40, .4);
}

/* Booking widget (hero right) */
.ls-booking {
  background: rgba(255,255,255,.97);
  border-radius: 18px;
  padding: 26px 24px 22px;
  box-shadow: 0 20px 60px rgba(0,0,0,.35);
  color: var(--ls-text);
}
.ls-booking h3 {
  margin: 0 0 16px;
  font-family: var(--ls-font-display);
  font-weight: 800;
  font-size: var(--ls-text-xl);
}
.ls-booking-label {
  font-size: var(--ls-text-sm);
  font-weight: 600;
  color: var(--ls-muted);
  display: block;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: .4px;
}
.ls-booking-submit {
  width: 100%;
  padding: 14px;
  background: var(--ls-blue);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-weight: 800;
  font-size: var(--ls-text-md);
  cursor: pointer;
  margin-top: 4px;
}
.ls-booking-submit:hover { background: var(--ls-blue-dark); }
.ls-booking-foot {
  margin-top: 10px;
  text-align: center;
  font-size: var(--ls-text-sm);
  color: var(--ls-muted);
  line-height: 1.45;
}

/* ============================================================
   SECTION TITLES
   ============================================================ */
.ls-section { padding: 64px 0; }
.ls-section.alt { background: var(--ls-off); }

.ls-section-eyebrow,
.ls-side-cta-kicker,
.ls-nocni-experience-kicker,
.ls-brigada-perks-kicker,
.ls-cenik-tab-title,
.ls-price-card-cat,
.ls-kontakt-social-kicker {
  font-family: var(--ls-font-display);
  font-weight: 700;
  font-size: var(--ls-text-base);
  letter-spacing: var(--ls-tracking-display);
  text-transform: uppercase;
}
.ls-section-eyebrow { color: var(--ls-amber-dark); margin-bottom: 6px; }
.ls-section-title,
.ls-section-title-xl,
.ls-brigada-perks-title {
  font-family: var(--ls-font-display);
  font-weight: 800;
}
.ls-section-title {
  font-size: var(--ls-display-lg);
  color: var(--ls-text);
  line-height: 1;
  margin: 0 0 8px;
}
/* ============================================================
   TRASY (route cards)
   ============================================================ */
.ls-trasa-filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.ls-trasa-filter {
  padding: 9px 18px;
  border: 2px solid var(--ls-border);
  border-radius: 40px;
  background: #fff;
  color: var(--ls-text);
  font-family: var(--ls-font-body);
  font-weight: 600;
  font-size: var(--ls-text-sm);
  text-decoration: none;
  cursor: pointer;
  transition: all .15s;
}
.ls-trasa-filter:hover { border-color: var(--ls-blue); color: var(--ls-blue); text-decoration: none; }
.ls-trasa-filter.active {
  background: var(--ls-blue);
  border-color: var(--ls-blue);
  color: #fff;
}

.ls-trasy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.ls-trasa-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--ls-shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform .2s, box-shadow .2s;
  border: 1px solid var(--ls-border);
}
.ls-trasa-card:hover { transform: translateY(-4px); box-shadow: var(--ls-shadow); }
.ls-trasa-card .img-wrap {
  position: relative;
  height: 170px;
  background: var(--ls-blue-dark);
  overflow: hidden;
}
.ls-trasa-card .img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.ls-trasa-badges {
  position: absolute;
  top: 12px;
  left: 12px;
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.ls-trasa-surcharge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--ls-danger);
  color: #fff;
  padding: 5px 11px;
  border-radius: 20px;
  font-family: var(--ls-font-display);
  font-weight: 800;
  font-size: var(--ls-text-xs);
  letter-spacing: var(--ls-tracking-display);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
}
.ls-trasa-cat {
  background: rgba(255,255,255,.95);
  padding: 5px 11px;
  border-radius: 20px;
  font-size: var(--ls-text-xs);
  font-weight: 700;
  color: var(--ls-blue-dark);
  text-transform: uppercase;
  letter-spacing: .4px;
}
.ls-trasa-top {
  background: var(--ls-amber);
  color: var(--ls-blue-deep);
  padding: 5px 10px;
  border-radius: 20px;
  font-size: var(--ls-text-xs);
  font-weight: 800;
  font-family: var(--ls-font-display);
  letter-spacing: var(--ls-tracking-display);
}
.ls-trasa-card .body {
  padding: 18px 20px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.ls-trasa-card .name {
  font-family: var(--ls-font-display);
  font-weight: 800;
  font-size: var(--ls-text-xl);
  color: var(--ls-text);
  line-height: 1.15;
}
.ls-trasa-actions {
  display: flex;
  gap: 8px;
  margin-top: auto;
  padding-top: 12px;
}
.ls-trasa-actions a {
  flex: 1;
  text-align: center;
  padding: 10px;
  border-radius: 8px;
  font-family: var(--ls-font-body);
  font-weight: 600;
  font-size: var(--ls-text-sm);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: background .15s, color .15s;
}
.ls-trasa-actions .btn-map {
  background: #fff;
  color: var(--ls-blue);
  border: 2px solid var(--ls-blue);
}
.ls-trasa-actions .btn-map:hover { background: var(--ls-blue); color: #fff; }
.ls-trasa-actions .btn-book {
  background: var(--ls-blue);
  color: #fff;
}
.ls-trasa-actions .btn-book:hover { background: var(--ls-blue-dark); color: #fff; text-decoration: none; }

/* ============================================================
   "PROČ NÁS" (4-up advantages)
   ============================================================ */
.ls-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  counter-reset: feature;
}
/* PROC NAS features rendered from editable semantic markup (home features.body slot).
   section = .ls-feature; ::before auto-number = .num; h3 = .title; p = .desc. */
.ls-features section::before {
  counter-increment: feature;
  content: counter(feature, decimal-leading-zero);
  display: block;
  font-family: var(--ls-font-display);
  font-weight: 800;
  font-size: var(--ls-text-2xl);
  color: var(--ls-amber-dark);
  letter-spacing: 1px;
}
.ls-features section h3 {
  font-family: var(--ls-font-display);
  font-weight: 700;
  font-size: var(--ls-text-lg);
  color: var(--ls-text);
  margin: 6px 0 8px;
  letter-spacing: 0.035em;
  line-height: 1.55;
}
.ls-features section p {
  font-size: var(--ls-text-base);
  color: var(--ls-muted);
  line-height: 1.6;
  margin: 0;
}
.ls-feature .num {
  font-family: var(--ls-font-display);
  font-weight: 800;
  font-size: var(--ls-text-2xl);
  color: var(--ls-amber-dark);
  letter-spacing: 1px;
}
.ls-feature .title {
  font-family: var(--ls-font-display);
  font-weight: 700;
  font-size: var(--ls-text-lg);
  color: var(--ls-text);
  margin: 6px 0 8px;
}
.ls-feature .desc {
  font-size: var(--ls-text-base);
  color: var(--ls-muted);
  line-height: 1.6;
}

/* ============================================================
   CENIK page wrapper
   ============================================================ */
.section-cenik {
  padding: 0 0 56px;
}
.section-cenik .ls-podminky {
  margin-top: 36px;
  margin-bottom: 0;
}
.ls-cenik-sub-body {
  background: var(--ls-white);
  padding: 0 0 56px;
}
.ls-cenik-sub-body .container-xxl {
  background-color: var(--ls-white);
}
.ls-cenik-sub-body .ls-podminky {
  margin-top: 36px;
  margin-bottom: 0;
}
.ls-cenik-sub-body .ls-cenik-section-row,
.ls-cenik-sub-body .container-xxl > .d-flex.align-items-baseline {
  margin-bottom: 14px;
  margin-top: 0;
}
.ls-cenik-sub-body .ls-stops-grid + .d-flex,
.ls-cenik-sub-body .ls-stops-grid + .ls-cenik-section-row {
  margin-top: 0;
}
.ls-cenik-sub-body .ls-stops-grid:last-of-type {
  margin-bottom: 28px;
}
.ls-cenik-sub-body .ls-bagaz-card {
  margin-top: 0;
}

/* ============================================================
   REZERVACE (booking form)
   ============================================================ */
.section.section-top {
  padding-top: 36px;
}
.ls-rez-form {
  border: 1px solid var(--ls-border);
  border-radius: var(--ls-radius-lg);
  padding: 32px;
}
/* Rezervační stepper — stejný segmented look jako .ls-seg (track + modrá active pill). */
.btn-group.setup-panel {
  margin-bottom: 24px;
  background: var(--ls-off);
  border: 1px solid var(--ls-border);
  border-radius: 12px;
  padding: 5px;
  display: flex;
  gap: 3px;
  width: 100%;
  scroll-margin-top: var(--ls-scroll-offset);
}
.btn-group.setup-panel > a.btn.btn-lg,
.btn-group.setup-panel > .btn.btn-lg {
  flex: 1;
  background: transparent;
  color: var(--ls-text);
  border: none;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
  font-family: var(--ls-font-body);
  font-weight: 700;
  font-size: var(--ls-text-base);
  text-transform: none;
  letter-spacing: 0;
  padding: 12px 20px;
  transition: background .15s, color .15s;
}
.btn-group.setup-panel > a.btn:hover:not(.active):not(.disabled),
.btn-group.setup-panel > .btn:hover:not(.active):not(.disabled) {
  color: var(--ls-blue-dark);
}
.btn-group.setup-panel > a.btn.active,
.btn-group.setup-panel > .btn.active {
  background: var(--ls-blue);
  color: var(--ls-white);
  box-shadow: 0 1px 3px rgba(15,30,60,.18);
}
.btn-group.setup-panel > a.btn.active:hover,
.btn-group.setup-panel > .btn.active:hover {
  color: var(--ls-white);
}
.btn-group.setup-panel > a.btn.disabled,
.btn-group.setup-panel > .btn.disabled {
  opacity: .4;
  pointer-events: none;
}

#webReservationForm h4 {
  margin-top: 24px;
  margin-bottom: 14px;
  font-size: var(--ls-text-lg);
  font-family: var(--ls-font-display);
  font-weight: 800;
  color: var(--ls-text);
}
#webReservationForm h4 small {
  font-family: var(--ls-font-body);
  font-weight: 400;
  color: var(--ls-muted);
}

#webReservationForm h1 {
  font-family: var(--ls-font-display);
  font-weight: 800;
  font-size: var(--ls-display-md);
  color: var(--ls-blue);
  line-height: 1.1;
}
/* Reservation — two-column step layout */
#webReservationForm .setup-content > .row {
  margin-left: 0;
  margin-right: 0;
}
.ls-rez-step-main {
  min-width: 0;
}
/* Šířka sloupce (ne viewport) rozhoduje o tabulce vs. kartách — na tabletu s postranním panelem je col-lg-8 úzký. */
.ls-rez-boats-scroll {
  container-type: inline-size;
  container-name: rez-boats;
  margin: 0;
  padding: 0;
  overflow: visible;
}

/* Reservation — summary sidebar (sticky viz sdílené pravidlo níže) */
.ls-rez-summary {
  background: var(--ls-white);
  border: 1px solid var(--ls-border);
  border-radius: 14px;
  padding: 24px;
  box-shadow: var(--ls-shadow-sm);
}
.ls-rez-summary-section {
  margin-bottom: 22px;
}
.ls-rez-summary-section--bordered {
  padding-bottom: 22px;
  border-bottom: 1px solid var(--ls-border);
}
.ls-rez-summary-title {
  margin: 0 0 8px;
  font-size: var(--ls-text-md);
  color: var(--ls-text);
}
.ls-rez-summary-eyebrow { margin-bottom: 8px; color: var(--ls-muted); font-size: var(--ls-text-sm); line-height: 1.4; }
.ls-rez-insurance-label {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: var(--ls-text-sm);
  line-height: 1.5;
  color: var(--ls-text);
  cursor: pointer;
  margin-bottom: 0;
}
.ls-rez-insurance-label input { margin-top: 3px; flex-shrink: 0; }
.ls-rez-terms-label {
  flex-wrap: wrap;
  gap: 12px;
}
.ls-rez-terms-label input[type="checkbox"] {
  width: 1.4rem;
  height: 1.4rem;
  margin-top: 1px;
  cursor: pointer;
}
.ls-rez-terms-label > .ls-rez-terms-text {
  flex: 1;
  min-width: 0;
  order: 1;
  cursor: pointer;
  font-weight: 400;
}
.ls-rez-terms-label > .ls-rez-terms-text a {
  text-decoration: none;
}
.ls-rez-terms-label > .ls-rez-terms-text a:hover {
  text-decoration: underline;
}
.ls-rez-terms-label label.error {
  flex: 0 0 100%;
  order: 2;
  margin-top: 4px;
  padding-left: 1.65em;
}
.ls-rez-insurance-info {
  cursor: pointer;
  margin-top: 10px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.ls-rez-price-block { margin-bottom: 4px; }
.ls-rez-price-block--base { margin-bottom: 12px; }
.ls-rez-price-strike {
  text-decoration: line-through;
  font-family: var(--ls-font-display);
  font-weight: 700;
  font-size: 24px;
  color: var(--ls-muted);
  margin: 4px 0 0;
}
.ls-rez-price-total {
  font-family: var(--ls-font-display);
  font-weight: 800;
  font-size: var(--ls-display-md);
  color: var(--ls-blue);
  line-height: 1.1;
  margin: 4px 0 4px;
}
.ls-rez-deposit {
  color: var(--ls-muted);
  font-size: var(--ls-text-sm);
}
.ls-rez-deposit .deposit { color: var(--ls-text); font-weight: 600; }
.ls-rez-continue-btn { margin-top: 4px; }

/* Reservation — boat rows with image, availability, stepper */
.ls-rez-boats-hint {
  margin: -6px 0 16px;
  font-size: var(--ls-text-sm);
  color: var(--ls-muted);
}
.ls-rez-boats-head {
  display: none;
  grid-template-columns: 78px 1fr 118px 130px 130px 110px;
  align-items: end;
  gap: 12px;
  padding: 0 16px 8px;
  font-size: var(--ls-text-xs);
  font-weight: 700;
  color: var(--ls-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.ls-rez-boats-head-type {
  text-align: left;
  align-self: end;
  line-height: 1.2;
}
.ls-rez-boats-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.ls-rez-boat-row {
  display: grid;
  grid-template-columns: 64px 1fr;
  grid-template-areas:
    "img info"
    "price subtotal"
    "avail qty";
  align-items: center;
  gap: 8px 12px;
  padding: 14px;
  min-width: 0;
  background: var(--ls-white);
  border: 1px solid var(--ls-border);
  border-radius: var(--ls-radius);
  transition: background 0.15s, border-color 0.15s;
}
.ls-rez-boat-row--selected {
  background: var(--ls-blue-tint);
  border-color: var(--ls-blue);
}
.ls-rez-boat-row--invalid {
  border-color: var(--ls-danger);
  background: var(--ls-danger-bg);
}
.ls-rez-boat-img {
  grid-area: img;
  width: 64px;
  height: 48px;
  background: var(--ls-off);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
}
.ls-rez-boat-info {
  grid-area: info;
  min-width: 0;
}
.ls-rez-boat-name-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
}
.ls-rez-boat-name {
  font-size: var(--ls-text-base);
  color: var(--ls-text);
  line-height: 1.1;
}
.ls-rez-boat-tag {
  font-size: var(--ls-text-xs);
  font-weight: 700;
  color: var(--ls-amber-dark);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.ls-rez-boat-sub {
  font-size: var(--ls-text-sm);
  color: var(--ls-muted);
  margin-top: 2px;
  line-height: 1.35;
}
.ls-rez-boat-row--addon {
  grid-template-areas:
    "img info"
    "price subtotal"
    "avail qty"
    "note note";
}
.ls-rez-addon-note {
  grid-area: note;
  margin: 4px 0 0;
  padding-top: 10px;
  border-top: 1px solid var(--ls-border);
  font-size: var(--ls-text-sm);
  color: var(--ls-muted);
  line-height: 1.5;
}
.ls-rez-boat-price {
  grid-area: price;
  text-align: left;
}
.ls-rez-boat-price-val {
  font-family: var(--ls-font-display);
  font-weight: 700;
  font-size: var(--ls-text-md);
  color: var(--ls-blue);
  line-height: 1;
  white-space: nowrap;
}
.ls-rez-boat-price-note {
  font-size: var(--ls-text-sm);
  color: var(--ls-muted);
  margin-top: 2px;
  white-space: nowrap;
}
.ls-rez-boat-avail {
  grid-area: avail;
  display: flex;
  justify-content: flex-start;
  align-self: center;
}
.ls-rez-avail {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 9px;
  border-radius: 20px;
  font-size: var(--ls-text-sm);
  font-weight: 700;
  line-height: 1.2;
}
.ls-rez-avail--idle { color: var(--ls-border); background: transparent; }
.ls-rez-avail--status.ls-rez-avail--ok { background: var(--ls-success-bg); color: var(--ls-success); }
.ls-rez-avail--status.ls-rez-avail--warn { background: var(--ls-warning-bg); color: var(--ls-warning); }
.ls-rez-avail--status.ls-rez-avail--bad {
  background: var(--ls-danger-bg);
  color: var(--ls-danger);
  max-width: 128px;
  text-align: center;
  white-space: normal;
}
.ls-rez-boat-qty {
  grid-area: qty;
  display: flex;
  justify-content: flex-end;
  align-self: center;
}
.ls-rez-boat-subtotal {
  grid-area: subtotal;
  text-align: right;
  align-self: center;
}
.ls-rez-boat-subtotal-val {
  font-family: var(--ls-font-display);
  font-weight: 800;
  font-size: var(--ls-text-md);
  color: var(--ls-text);
  line-height: 1;
  white-space: nowrap;
}
.ls-rez-boat-subtotal-note {
  font-size: var(--ls-text-sm);
  color: var(--ls-muted);
  margin-top: 2px;
}
@container rez-boats (min-width: 560px) {
  .ls-rez-boats-head {
    display: grid;
    grid-template-columns: 48px 1fr 70px 90px 100px 85px;
    gap: 8px;
  }
  .ls-rez-boat-row {
    grid-template-columns: 48px 1fr 70px 90px 100px 85px;
    grid-template-areas: none;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
  }
  .ls-rez-boat-img,
  .ls-rez-boat-info,
  .ls-rez-boat-price,
  .ls-rez-boat-avail,
  .ls-rez-boat-qty,
  .ls-rez-boat-subtotal {
    grid-area: auto;
  }
  .ls-rez-boat-img {
    width: 48px;
    height: 36px;
  }
  .ls-rez-boat-price {
    display: block;
    text-align: right;
  }
  .ls-rez-boat-price-note {
    margin-top: 2px;
  }
  .ls-rez-boat-avail {
    justify-content: center;
    align-self: auto;
  }
  .ls-rez-boat-qty {
    justify-content: center;
    align-self: auto;
  }
  .ls-rez-boat-qty .ls-stepper {
    height: 32px;
  }
  .ls-rez-boat-qty .ls-stepper-btn {
    width: 32px;
    height: 32px;
    font-size: var(--ls-text-base);
  }
  .ls-rez-boat-qty .ls-stepper-val {
    min-width: 32px;
    width: 32px;
    height: 32px;
    line-height: 32px;
    font-size: var(--ls-text-sm);
  }
  .ls-rez-boat-subtotal {
    align-self: auto;
  }
  .ls-rez-boat-row--addon {
    grid-template-areas:
      "img info price avail qty subtotal"
      "note note note note note note";
  }
}
/* Nad 760px má sloupec dost místa i s postranním panelem rezervace (col-lg-8) — plná velikost. */
@container rez-boats (min-width: 760px) {
  .ls-rez-boats-head {
    grid-template-columns: 78px 1fr 118px 130px 130px 110px;
    gap: 12px;
  }
  .ls-rez-boat-row {
    grid-template-columns: 78px 1fr 118px 130px 130px 110px;
    gap: 12px;
    padding: 12px 16px;
  }
  .ls-rez-boat-img {
    width: 78px;
    height: 52px;
  }
  .ls-rez-boat-name {
    font-size: var(--ls-text-md);
  }
  .ls-rez-boat-qty .ls-stepper {
    height: 44px;
  }
  .ls-rez-boat-qty .ls-stepper-btn {
    width: 44px;
    height: 44px;
    font-size: var(--ls-text-xl);
  }
  .ls-rez-boat-qty .ls-stepper-val {
    min-width: 44px;
    width: 44px;
    height: 44px;
    line-height: 44px;
    font-size: var(--ls-text-lg);
  }
}
@media (max-width: 991.98px) {
  .ls-rez-form {
    padding: 20px 16px;
  }
}

/* ============================================================
   FOOTER (redesign2026-v3 — světle modrý gradient)
   ============================================================ */
.ls-footer-section {
  background: linear-gradient(180deg, var(--ls-footer-bg-top) 0%, var(--ls-footer-bg-bottom) 100%);
  padding: 56px 0 40px;
  color: var(--ls-footer-navy);
}
.ls-footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 48px;
  align-items: flex-start;
}
.ls-footer-brand { display: flex; flex-direction: column; align-items: flex-start; }
.ls-footer-logo-wrap {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: var(--ls-footer-logo-bg);
  border: 3px solid var(--ls-white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  flex-shrink: 0;
}
.ls-footer-logo-wrap img {
  width: 86px;
  height: 86px;
  object-fit: contain;
}
.ls-footer-brand-name {
  font-family: var(--ls-font-display);
  font-weight: 800;
  font-size: var(--ls-display-sm);
  color: var(--ls-footer-navy);
  margin-bottom: 14px;
  line-height: 1.1;
}
.ls-footer-contact {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.ls-footer-phone-main {
  font-family: var(--ls-font-display);
  font-weight: 800;
  font-size: var(--ls-display-sm);
  color: var(--ls-footer-gold);
  text-decoration: none;
  line-height: 1.1;
}
.ls-footer-phone-main:hover { color: var(--ls-amber); }
.ls-footer-phone-secondary {
  font-family: var(--ls-font-display);
  font-weight: 600;
  font-size: var(--ls-text-md);
  color: var(--ls-footer-gold);
  line-height: 1.2;
}
.ls-footer-phone-secondary a {
  color: inherit;
  text-decoration: none;
}
.ls-footer-phone-secondary a:hover { color: var(--ls-amber); }
.ls-footer-email {
  font-family: var(--ls-font-display);
  font-weight: 700;
  font-size: var(--ls-text-lg);
  color: var(--ls-footer-gold);
  text-decoration: underline;
  margin-top: 4px;
}
.ls-footer-email:hover { color: var(--ls-amber); }
.ls-footer-base-title {
  font-family: var(--ls-font-display);
  font-weight: 800;
  font-size: var(--ls-display-sm);
  color: var(--ls-footer-navy);
  margin-bottom: 10px;
  line-height: 1.1;
}
.ls-footer-base-sub {
  font-family: var(--ls-font-display);
  font-weight: 700;
  font-size: var(--ls-text-base);
  color: var(--ls-footer-gold-sub);
  letter-spacing: var(--ls-tracking-display);
  text-transform: uppercase;
  margin-bottom: 2px;
}
.ls-footer-base-addr {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  margin-bottom: 8px;
}
.ls-footer-base-addr > div {
  font-size: var(--ls-text-base);
  color: var(--ls-footer-navy);
  font-weight: 600;
  line-height: 1.4;
}
.ls-footer-base-hours {
  font-size: var(--ls-text-base);
  color: var(--ls-footer-navy);
  opacity: 0.85;
  margin-bottom: 4px;
}
.ls-footer-base-gps {
  font-size: var(--ls-text-base);
  color: var(--ls-footer-navy);
  opacity: 0.75;
  margin-bottom: 14px;
}
.ls-footer-base-gps a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.ls-footer-base-gps a:hover {
  color: var(--ls-footer-navy);
  opacity: 1;
}
.ls-footer-map {
  border-radius: 10px;
  overflow: hidden;
  height: 160px;
  background: var(--ls-footer-map-bg);
  border: 1px solid rgba(13, 34, 56, 0.15);
}
.ls-footer-map a {
  display: block;
  height: 100%;
}
.ls-footer-map img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.ls-footer-bar {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid rgba(13, 34, 56, 0.15);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.ls-footer-legal {
  font-size: var(--ls-text-sm);
  color: var(--ls-footer-navy);
  opacity: 0.65;
}
.ls-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  font-size: var(--ls-text-sm);
}
.ls-footer-links a {
  color: var(--ls-footer-navy);
  text-decoration: none;
  opacity: 0.8;
}
.ls-footer-links a:hover {
  opacity: 1;
  text-decoration: underline;
}

/* ============================================================
   COOKIE BANNER
   ============================================================ */
#cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1040;
  margin: 0;
  display: none;
  background: var(--ls-blue-deep);
  color: #fff;
  border: none;
  border-top: 3px solid var(--ls-amber);
  border-radius: 0;
  padding: 16px 0;
  font-size: var(--ls-text-sm);
}
#cookie-consent-banner .cookie-consent-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
  align-items: center;
}
#cookie-consent-banner .btn-sm {
  padding: 4px 10px;
  border-width: 2px;
  border-style: solid;
}
#cookie-consent-banner .btn-success {
  background: var(--ls-amber);
  color: #1a1a1a;
  font-weight: 700;
  border-color: var(--ls-amber);
}
#cookie-consent-banner .btn-success:hover {
  background: var(--ls-amber-dark);
  border-color: var(--ls-amber-dark);
}
#cookie-consent-banner .btn-secondary {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.3);
}
#cookie-consent-banner .btn-secondary:hover { background: rgba(255,255,255,.1); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 991px) {
  .ls-hero-inner {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-block: 96px 40px;
    padding-inline: calc(var(--bs-gutter-x, 1.5rem) * .5);
  }
  .ls-hero-title { font-size: var(--ls-display-xl); }
  .ls-hero { min-height: 0; }
  .ls-trasy-grid { grid-template-columns: repeat(2, 1fr); }
  .ls-features { grid-template-columns: repeat(2, 1fr); }
  .ls-section-title { font-size: var(--ls-display-md); }
  .section-default .row.zakladny .col-sm-6 { width: 100%; margin-bottom: 24px; }
}
@media (max-width: 600px) {
  .ls-hero-title { font-size: var(--ls-display-lg); }
  .ls-hero-inner { padding-block: 84px 32px; padding-inline: 1rem; }
  .ls-hero-inner--inset { padding-left: 16px; padding-right: 16px; }
  .ls-hero-actions .btn-primary {
    padding: 14px 28px;
    font-size: var(--ls-text-md);
  }
  .ls-hero-actions .btn-ghost {
    padding: 14px 22px;
    font-size: var(--ls-text-base);
  }
  .ls-hero-stats { gap: 24px; }
  .ls-hero-stats .stat-num { font-size: var(--ls-text-xl); }
  .ls-hero-stats .stat-label { font-size: var(--ls-text-base); }
  .ls-hero:not(.ls-hero--photo) .ls-hero-lead { font-size: var(--ls-text-base); }
  .ls-section { padding: 40px 0; }
  .ls-section-title { font-size: var(--ls-display-sm); }
  .ls-section-title-xl { font-size: var(--ls-display-md); }
  .ls-trasy-grid { grid-template-columns: 1fr; }
  .ls-features { grid-template-columns: 1fr; gap: 18px; }
  .ls-nav-brand img { height: 32px; }
  .ls-nav-brand-name { font-size: var(--ls-text-sm); }
  .ls-nav-brand-sub { font-size: var(--ls-text-xs); }
  .ls-nav-inner { padding-top: 8px; padding-bottom: 8px; }
  .ls-nav-phone { font-size: 13px; padding: 7px 14px; }
  .ls-nav.ls-nav--open .ls-nav-links > li:not(.ls-nav-social-item) > a {
    padding: 8px var(--ls-nav-mobile-inset);
  }
  .ls-nav-social-kicker { padding: 6px var(--ls-nav-mobile-inset) 4px; }
  .ls-nav-social-item .ls-nav-social { padding: 0 var(--ls-nav-mobile-inset) 8px; }
  .ls-nav-social-item .ls-nav-social a { width: 36px; height: 36px; font-size: 17px; }
  .btn-group.setup-panel { flex-direction: column; }
}

.section.section-top { padding-top: 36px; }

/* FontAwesome safety: ensure inline icons keep their look */
.fa { font-family: 'FontAwesome'; }

/* ============================================================
   LS-10 — Bootstrap 5 compatibility shims
   Bootstrap 5 removed several utility classes used by templates,
   admin-authored CMS content (pages stored in DB) and the
   reservation stepper. These keep that markup rendering correctly
   without forcing a content rewrite.
   ============================================================ */

/* BS3 .img-responsive is replaced by BS5 .img-fluid; CMS content still emits it. */
.img-responsive {
  display: block;
  max-width: 100%;
  height: auto;
}

/* Reservation stepper used BS3 .btn-group-justified to stretch to full width;
   the class is gone in BS5 but the flex layout below replaces it. */
.btn-group.setup-panel {
  display: flex;
  width: 100%;
}

/* BS3 .btn-block → BS5 .w-100 */
.btn-block {
  display: block;
  width: 100%;
}

/* Flatpickr — make the trailing calendar icon look clickable and align with the input.
   The picker is opened either by focusing the input or clicking the addon.
   With altInput, the hidden .flatpickr-input is the first child; BS input-group
   strips left radius from :not(:first-child) on the visible alt field — restore it.
   BS 5.3.3's real left-radius rule is
   .input-group > :not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback)
   — 7 class-level selectors (specificity 0,7,0), which beat our previous 6-class override
   regardless of load order. The trailing :not(.dropdown-menu):not(.valid-feedback) below are
   no-ops on an <input> but push us to (0,8,1) so this reliably wins. */
.input-group.date .input-group-text { cursor: pointer; }
.input-group.date:not(.has-validation) > .flatpickr-input + input.form-control[type="text"]:not(.dropdown-menu):not(.valid-feedback) {
  border-top-left-radius: var(--ls-radius);
  border-bottom-left-radius: var(--ls-radius);
  padding-right: 46px;
}
.flatpickr-input[readonly] { background-color: #fff; }

/* Clear ("×") button — floats over the visible date input's own right edge,
   just left of the calendar icon addon, so it reads as part of the input
   rather than a third input-group segment. Taken out of flex flow entirely
   (position: absolute) — the input above already reserves space for it via
   padding-right. Hidden via the `hidden` attribute until LsDateRange.bindClear()
   detects a value (see date-range-picker.js). */
.input-group.date {
  position: relative;
}
.input-group.date .ls-date-clear:not([hidden]) {
  position: absolute;
  top: 50%;
  right: 54px;
  transform: translateY(-50%);
  z-index: 5;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  cursor: pointer;
  background: transparent;
  border: 0;
  color: var(--ls-danger);
}
.input-group.date .ls-date-clear:hover {
  opacity: 0.75;
}

/* ============================================================
   LS-11 — Školy / Časté dotazy / Kontakt
   Shared page header + per-page blocks.
   ============================================================ */

/* Page header (eyebrow + title + optional aside CTA) */
.ls-page-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  column-gap: 24px;
  row-gap: 8px;
  align-items: end;
  margin-bottom: 32px;
}
.ls-page-head > div:first-child,
.ls-page-head-aside { display: contents; }
.ls-page-head--compact { margin-bottom: 8px; }
.ls-page-head .ls-section-eyebrow {
  grid-column: 1;
  grid-row: 1;
  align-self: end;
  margin-bottom: 0;
}
.ls-page-head .ls-section-title,
.ls-page-head .ls-section-title-xl {
  grid-column: 1;
  grid-row: 2;
  align-self: end;
  margin: 0;
}
.ls-page-head-aside p {
  grid-column: 2;
  grid-row: 1;
  align-self: end;
  margin: 0;
  text-align: right;
  color: var(--ls-muted);
  font-size: var(--ls-text-sm);
}
.ls-page-head-aside .btn {
  grid-column: 2;
  grid-row: 2;
  justify-self: end;
  align-self: end;
  padding: 8px 16px;
  font-size: var(--ls-text-sm);
  font-family: var(--ls-font-display);
  font-weight: 700;
  letter-spacing: var(--ls-tracking-display);
  text-transform: uppercase;
  border: 2px solid var(--ls-blue);
  color: var(--ls-blue);
  background-color: #fff;
}
.ls-page-head-aside .btn:hover,
.ls-page-head-aside .btn:active {
  background-color: var(--ls-blue);
  color: #fff;
  border-color: var(--ls-blue);
}

/* Tablet / mobile: alternate CTA below H1, inline with label */
@media (max-width: 991px) {
  .ls-page-head {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    row-gap: 0;
    margin-bottom: 24px;
  }
  .ls-page-head > div:first-child {
    display: block;
    width: 100%;
  }
  .ls-page-head-aside {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px 14px;
    width: 100%;
    margin-top: 14px;
  }
  .ls-page-head-aside p {
    grid-column: auto;
    grid-row: auto;
    align-self: auto;
    margin: 0;
    text-align: left;
  }
  .ls-page-head-aside .btn {
    grid-column: auto;
    grid-row: auto;
    justify-self: auto;
    align-self: auto;
    padding: 4px 10px;
    font-size: var(--ls-text-xs);
    letter-spacing: .3px;
  }
  .ls-page-head--compact { margin-bottom: 12px; }
}

/* ---------- Školy ---------- */
.ls-skoly-intro {
  max-width: 960px;
  margin: 0 0 36px;
  color: var(--ls-text);
}
.ls-skoly-pricelist { margin-bottom: 44px; }
.ls-skoly-pricelist-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 14px;
  gap: 14px;
  flex-wrap: wrap;
}
.ls-skoly-pricelist-title { margin: 0; font-size: var(--ls-text-2xl); }
.ls-skoly-pricelist-title small { font-weight: 600; font-size: var(--ls-text-sm); }
.ls-skoly-pricelist-note { font-size: var(--ls-text-sm); }

.ls-price-card {
  background: #fff;
  border: 1px solid var(--ls-border);
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.ls-price-card-accent { border-color: var(--ls-amber); }
.ls-price-card-top {
  background: #e8f1fa;
  padding: 10px 16px;
  border-bottom: 1px solid var(--ls-border);
}
.ls-price-card-accent .ls-price-card-top {
  background: #fef9ea;
  border-bottom-color: #f0e0b8;
}
.ls-price-card-cat { color: var(--ls-amber-dark); margin-bottom: 2px; }
.ls-price-card-hint { font-size: var(--ls-text-sm); color: var(--ls-muted); font-weight: 500; }
.ls-price-card-body {
  padding: 14px 16px;
  flex: 1;
  font-size: var(--ls-text-base);
  color: var(--ls-text);
  line-height: 1.5;
}
.ls-price-card-accent .ls-price-card-body { background: #fffcf3; }
.ls-price-card-foot {
  padding: 12px 16px;
  border-top: 1px solid #eef2f6;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}
.ls-price-chip,
.ls-stop-price {
  background: var(--ls-amber);
  color: #0d2238;
  font-family: var(--ls-font-display);
  font-weight: 800;
  font-size: var(--ls-text-sm);
  padding: 4px 10px 3px;
  border-radius: 20px;
  letter-spacing: var(--ls-tracking-display);
  white-space: nowrap;
}
.ls-price-free {
  font-family: var(--ls-font-display);
  font-weight: 800;
  font-size: var(--ls-text-md);
  color: var(--ls-amber-dark);
}
.ls-price-alt {
  font-size: var(--ls-text-sm);
  color: var(--ls-muted);
  font-style: italic;
  text-align: right;
}

/* Školy form + aside */
.ls-skoly-form-row { align-items: flex-start; }

.ls-school-form {
  background: #fff;
  border: 2px solid var(--ls-blue);
  border-radius: var(--ls-radius-lg);
  padding: 28px 30px;
  box-shadow: var(--ls-shadow);
}
.ls-school-form-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 4px;
}
.ls-school-form-title { margin: 0; font-size: var(--ls-text-2xl); }
.ls-school-form-sub { font-size: var(--ls-text-sm); color: var(--ls-muted); margin-bottom: 22px; }
.ls-school-label { display: block; color: var(--ls-muted); margin-bottom: 6px; }
.ls-estimate {
  background: #f7faff;
  border: 1px solid #d4e0eb;
  border-radius: 12px;
  padding: 16px 18px;
  margin: 22px 0 18px;
}
.ls-estimate-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 10px;
  flex-wrap: wrap;
  gap: 8px;
}
.ls-estimate-title { font-family: var(--ls-font-display); font-weight: 800; font-size: var(--ls-text-xl); color: var(--ls-text); }
.ls-estimate-meta { font-size: var(--ls-text-sm); color: var(--ls-muted); }
.ls-estimate-lines { display: flex; flex-direction: column; gap: 6px; font-size: var(--ls-text-base); }
.ls-estimate-line { display: flex; justify-content: space-between; }
.ls-estimate-line span:last-child { font-family: var(--ls-font-display); font-weight: 700; }
.ls-estimate-total {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid #d4e0eb;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: var(--ls-text-md);
  font-weight: 700;
}
.ls-estimate-total-value {
  font-family: var(--ls-font-display);
  font-weight: 800;
  font-size: var(--ls-text-2xl);
  color: var(--ls-blue);
  line-height: 1;
}
.ls-estimate small { font-size: var(--ls-text-sm); }
.ls-school-form-submit {
  display: flex;
  gap: 12px;
  align-items: center;
}
.ls-school-form-submit .btn { text-transform: uppercase; letter-spacing: .5px; }

.ls-skoly-aside-title { font-size: var(--ls-display-sm); margin: 0 0 14px; }
.ls-skoly-route {
  background: #fff;
  border: 1px solid var(--ls-border);
  border-radius: 12px;
  padding: 18px 20px;
  margin-bottom: 12px;
}
.ls-skoly-route-name {
  font-family: var(--ls-font-display);
  font-weight: 800;
  font-size: var(--ls-text-xl);
  color: var(--ls-text);
  line-height: 1.15;
}
.ls-skoly-route-sub { font-size: var(--ls-text-sm); font-weight: 600; margin-top: 4px; }
.ls-skoly-route p { font-size: var(--ls-text-base); line-height: 1.55; margin: 8px 0 0; opacity: .85; }
.ls-skoly-route-stops { font-size: var(--ls-text-sm); color: var(--ls-muted); margin-top: 6px; }
.ls-skoly-aside-link {
  display: inline-block;
  margin-top: 8px;
  font-weight: 600;
  text-decoration: underline;
}
.ls-skoly-extra { margin-top: 36px; }

/* ---------- Časté dotazy ---------- */
.ls-faq-row { align-items: flex-start; }
/* align-items:flex-start zkracuje sloupec na výšku obsahu — sticky by jinak nefungovalo */
.ls-faq-row > aside,
#webReservationForm .setup-content > .row > .col-lg-4 {
  align-self: stretch;
}
.ls-faq-quick {
  background: #e8f1fa;
  border-radius: 12px;
  padding: 20px 24px;
  margin-bottom: 26px;
}
.ls-faq-quick-title,
.ls-school-label {
  font-family: var(--ls-font-display);
  font-size: var(--ls-text-xs);
  font-weight: 700;
  letter-spacing: var(--ls-tracking-display);
  text-transform: uppercase;
}
.ls-faq-quick-title { color: var(--ls-amber-dark); margin-bottom: 12px; }
.ls-faq-quick-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  font-size: var(--ls-text-sm);
}
.ls-faq-quick-grid a { font-weight: 500; text-decoration: none; }
.ls-faq-quick-grid a.active { font-weight: 700; text-decoration: none; }
.ls-faq-map-dl { max-width: 420px; }
@media (max-width: 768px) {
  .ls-faq-quick-grid { grid-template-columns: repeat(2, 1fr); }
}

.ls-faq-accordion .accordion-item {
  border: 1px solid var(--ls-border);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 10px;
  scroll-margin-top: var(--ls-scroll-offset);
}
.ls-faq-accordion .accordion-button {
  font-family: var(--ls-font-display);
  font-weight: 800;
  font-size: var(--ls-text-md);
  color: var(--ls-blue-deep);
  letter-spacing: var(--ls-tracking-display);
  text-transform: uppercase;
  padding: 18px 22px;
  background: #fff;
}
.ls-faq-accordion .accordion-button:not(.collapsed) {
  background: #fff;
  color: var(--ls-blue);
  box-shadow: none;
}
.ls-faq-accordion .accordion-button:focus { box-shadow: none; outline: none; }
.ls-faq-accordion .accordion-button:focus-visible { box-shadow: 0 0 0 .15rem rgba(26,109,176,.18); }
.ls-faq-accordion .accordion-body {
  padding: 0 22px 22px;
  font-size: var(--ls-text-base);
  color: var(--ls-text);
  line-height: 1.65;
  opacity: .92;
}
.ls-faq-aside .btn-warning { width: 100%; margin-top: 14px; }

/* ---------- Kontakt ---------- */
.ls-kontakt-row { align-items: stretch; }
.ls-kontakt-row + .ls-kontakt-row { margin-top: 1.5rem; }
.ls-kontakt-row > .col-lg-6 { display: flex; flex-direction: column; }
.ls-kontakt-row > .col-lg-6 > .ls-kontakt-main,
.ls-kontakt-row > .col-lg-6 > .ls-kontakt-invoice,
.ls-kontakt-row > .col-lg-6 > .ls-basecamp {
  flex: 1 1 auto;
}
.ls-kontakt-main {
  background: var(--ls-blue-deep);
  border-radius: var(--ls-radius-lg);
  padding: 32px;
  color: var(--ls-white);
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
}
.ls-kontakt-main a {
  text-decoration: none;
  transition: color .15s ease;
}
.ls-kontakt-main a:hover,
.ls-kontakt-main a:focus,
.ls-kontakt-main a:focus-visible {
  outline: none;
}
.ls-kontakt-phone {
  font-family: var(--ls-font-display);
  font-weight: 800;
  font-size: var(--ls-display-sm);
  line-height: 1.1;
  margin-bottom: 0;
}
.ls-kontakt-phone a,
.ls-kontakt-phone a:visited {
  color: var(--ls-amber);
}
.ls-kontakt-phone a:hover,
.ls-kontakt-phone a:focus {
  color: var(--ls-white);
}
.ls-kontakt-phones-alt {
  font-family: var(--ls-font-display);
  font-weight: 600;
  font-size: var(--ls-text-md);
  color: var(--ls-amber);
  line-height: 1.2;
  margin-top: 6px;
  margin-bottom: 0;
}
.ls-kontakt-phones-alt a,
.ls-kontakt-phones-alt a:visited {
  color: inherit;
}
.ls-kontakt-phones-alt a:hover,
.ls-kontakt-phones-alt a:focus {
  color: var(--ls-white);
}
.ls-kontakt-mail,
.ls-kontakt-mail:visited {
  display: inline-block;
  margin-top: 10px;
  color: var(--ls-amber);
  font-family: var(--ls-font-display);
  font-weight: 700;
  font-size: var(--ls-text-lg);
  text-decoration: underline;
}
.ls-kontakt-mail:hover,
.ls-kontakt-mail:focus {
  color: var(--ls-white);
  text-decoration: underline;
}
.ls-kontakt-social-block {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, .15);
}
.ls-kontakt-social-kicker {
  color: var(--ls-amber);
  margin-bottom: 10px;
}
.ls-kontakt-social { display: flex; gap: 10px; }
.ls-kontakt-social a,
.ls-kontakt-social a:visited {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ls-white);
  font-size: var(--ls-text-xl);
}
.ls-kontakt-social a.fb { background: #3b5998; }
.ls-kontakt-social a.ig { background: #e1306c; }

.ls-kontakt-invoice {
  background: #fff;
  border: 1px solid var(--ls-border);
  border-radius: var(--ls-radius-lg);
  padding: 24px 26px;
}
.ls-kontakt-invoice-title { margin: 0 0 14px; font-size: var(--ls-text-xl); }
.ls-kontakt-invoice-list {
  display: grid;
  grid-template-columns: 140px 1fr;
  row-gap: 8px;
  column-gap: 12px;
  font-size: var(--ls-text-base);
  margin: 0;
}
.ls-kontakt-invoice-list dt { font-weight: 400; color: var(--ls-muted); }
.ls-kontakt-invoice-list dd { margin: 0; color: var(--ls-text); }
.ls-kontakt-invoice-link,
.ls-kontakt-invoice-link:visited {
  display: inline-block;
  margin-top: 14px;
  font-size: var(--ls-text-base);
  font-weight: 600;
  color: var(--ls-blue);
  text-decoration: underline;
}
.ls-kontakt-invoice-link:hover,
.ls-kontakt-invoice-link:focus {
  color: var(--ls-blue-dark);
  text-decoration: underline;
}

.ls-basecamp {
  background: #fff;
  border: 1px solid var(--ls-border);
  border-radius: var(--ls-radius-lg);
  overflow: hidden;
  margin-bottom: 0;
}
.ls-basecamp-primary { border: 2px solid var(--ls-amber); }
.ls-basecamp-head {
  padding: 20px 24px 16px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
}
.ls-basecamp-head > div:first-child {
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.ls-basecamp-sub {
  order: -1;
  font-family: var(--ls-font-display);
  font-weight: 700;
  font-size: var(--ls-text-base);
  color: var(--ls-amber-dark);
  letter-spacing: var(--ls-tracking-display);
  text-transform: uppercase;
  margin-bottom: 2px;
}
.ls-basecamp-name {
  font-family: var(--ls-font-display);
  font-weight: 800;
  font-size: var(--ls-display-sm);
  color: var(--ls-text);
  line-height: 1.1;
}
.ls-basecamp-addr { margin-top: 10px; font-size: var(--ls-text-base); font-weight: 600; }
.ls-basecamp-hours { font-size: var(--ls-text-base); color: var(--ls-muted); margin-top: 4px; }
.ls-basecamp-gps { font-size: var(--ls-text-base); color: var(--ls-muted); margin-top: 2px; }
.ls-basecamp-badge {
  background: var(--ls-amber);
  color: var(--ls-footer-navy);
  font-family: var(--ls-font-display);
  font-size: var(--ls-text-xs);
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 20px;
  letter-spacing: var(--ls-tracking-display);
  text-transform: uppercase;
  flex-shrink: 0;
}
.ls-basecamp-map {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  height: auto;
  border: 0;
  border-top: 1px solid var(--ls-border);
}
@media (max-width: 575px) {
  .ls-kontakt-invoice-list { grid-template-columns: 1fr; row-gap: 2px; }
  .ls-kontakt-invoice-list dd { margin-bottom: 8px; }
}

/* ============================================================
   LS-11 CENÍK — redesigned card-based layout
   ============================================================ */

/* ── Active tab label (kicker under .ls-seg, same on all cenik subpages) ── */
.ls-cenik-tab-title { line-height: 1; color: var(--ls-amber-dark); margin: 0 0 8px; }
.section-cenik .container-xxl > .ls-cenik-tab-title + * {
  margin-top: 0;
}
.ls-cenik-sub-body .container-xxl > .ls-cenik-tab-title + div {
  margin-top: 0;
}
.ls-cenik-sub-body .container-xxl > .ls-cenik-tab-title + div > *:first-child {
  margin-top: 0;
}
.ls-section-title-xl {
  font-size: var(--ls-display-xl);
  color: var(--ls-text);
  line-height: .95;
}

/* ── Two-column price-table + sidebar ── */
.ls-cenik-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 22px;
  align-items: flex-start;
  margin-top: 0;
}
.ls-cenik-grid > * {
  min-width: 0;
}
@media (max-width: 1199px) {
  .ls-cenik-grid { grid-template-columns: 1fr; }
  .ls-cenik-sidebar { margin-top: 24px; }
}

/* ── Section / table headings on cenik subpages ── */
.ls-cenik-table-heading,
.ls-table-heading {
  font-family: var(--ls-font-display);
  font-weight: 800;
  font-size: var(--ls-text-xl);
  color: var(--ls-text);
}

/* ── Boat price table wrapper ── */
.ls-cenik-table-wrap {
  background: #fff;
  border: 1px solid #d4e0eb;
  border-radius: 14px;
  overflow: hidden;
  max-width: 100%;
}
.ls-cenik-table-wrap .table-responsive {
  margin-bottom: 0;
  width: 100%;
}
.ls-cenik-table.table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
  table-layout: fixed;
  margin-bottom: 0;
}
@media (max-width: 991.98px) {
  .ls-cenik-table-wrap .table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .ls-cenik-table.table {
    min-width: 900px;
  }
}

.ls-cenik-table col.ls-col-duration { width: 16.2%; }
.ls-cenik-table col.ls-col-boat { width: 13.97%; }

/* Category band — top header row */
.ls-cenik-table .ls-thead-cat th {
  background: var(--ls-blue-pale);
  border-bottom: 1px solid var(--ls-border-blue);
  border-left: 1px solid var(--ls-border-blue);
  font-family: var(--ls-font-display);
  font-weight: 800;
  font-size: var(--ls-text-xs);
  color: var(--ls-blue);
  letter-spacing: var(--ls-tracking-display);
  text-transform: uppercase;
  text-align: center;
  padding: 10px 6px 6px;
  vertical-align: bottom;
}
.ls-cenik-table .ls-thead-cat .ls-col-duration {
  text-align: left;
  font-size: var(--ls-text-sm);
  color: #0d2238;
  letter-spacing: 1.2px;
  vertical-align: bottom;
  padding: 14px 16px;
  border-right: 1px solid var(--ls-border-blue);
  border-left: none;
  font-weight: 800;
}

/* Boat name + image header row */
.ls-cenik-table .ls-thead-boats th {
  background: var(--ls-blue-pale);
  border-left: 1px solid var(--ls-border-blue);
  border-bottom: none;
  padding: 6px 6px 10px;
  text-align: center;
  vertical-align: top;
}

/* Equipment chips header row */
.ls-cenik-table .ls-thead-equip th {
  background: var(--ls-border-blue);
  border-left: 1px solid var(--ls-border-blue-dark);
  border-top: 1px solid var(--ls-border-blue-dark);
  padding: 8px 6px;
  text-align: center;
  vertical-align: top;
}

/* Boat image */
.ls-boat-img-wrap {
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 6px;
}
.ls-boat-img { max-height: 100%; max-width: 90%; object-fit: contain; mix-blend-mode: multiply; }
.ls-boat-name,
.ls-rez-boat-name,
.ls-ships-usp-title,
.ls-rez-summary-title {
  font-family: var(--ls-font-display);
  font-weight: 800;
}
.ls-boat-name {
  font-size: var(--ls-text-base);
  color: #0d2238;
  line-height: 1.05;
  letter-spacing: -.2px;
}
.ls-boat-top-badge {
  background: var(--ls-amber);
  color: #0d2238;
  font-family: var(--ls-font-display);
  font-weight: 800;
  font-size: var(--ls-text-xs);
  padding: 2px 6px;
  border-radius: 20px;
  letter-spacing: var(--ls-tracking-display);
  vertical-align: middle;
}

/* Equipment chip pills */
.ls-equip-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 3px;
  justify-content: center;
  list-style: none;
  padding: 0;
  margin: 0;
}
.ls-equip-chips > li {
  background: #fff;
  color: #0d2238;
  font-size: var(--ls-text-xs);
  font-weight: 500;
  font-family: var(--ls-font-body);
  padding: 2px 6px;
  border-radius: 20px;
  border: 1px solid rgba(13,34,56,.08);
  white-space: nowrap;
  line-height: 1.3;
  display: inline-block;
}
.ls-equip-placeholder {
  font-size: var(--ls-text-xs);
  color: var(--ls-muted);
  font-style: italic;
  font-weight: 400;
}

/* Generic chip (used on vybavení cards) */
.ls-chip {
  background: #fff;
  color: #0d2238;
  font-size: 13px;
  font-weight: 500;
  font-family: var(--ls-font-body);
  padding: 5px 10px;
  border-radius: 20px;
  border: 1px solid rgba(13,34,56,.08);
  white-space: nowrap;
  line-height: 1.3;
  display: inline-block;
}

/* Price rows */
.ls-cenik-table tbody tr {
  border-top: 1px solid #eef2f6;
  background: #fff;
  position: relative;
  transition: box-shadow 0.15s ease;
}
.ls-cenik-table tbody tr:nth-child(even) { background: #fafcfe; }
.ls-cenik-table tbody tr::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: transparent;
  transition: background-color 0.15s ease;
}
.ls-cenik-table tbody tr:hover::after {
  background: color-mix(in srgb, var(--ls-blue) 8%, transparent);
}
.ls-cenik-table tbody tr.ls-row-recommended:hover::after {
  background: color-mix(in srgb, var(--ls-amber) 18%, transparent);
}
.ls-cenik-cell-link {
  display: block;
  position: relative;
  z-index: 1;
  color: inherit;
  text-decoration: none;
}
.ls-cenik-cell-link:hover,
.ls-cenik-cell-link:focus {
  color: var(--ls-blue);
  text-decoration: none;
}
.ls-cenik-table td.ls-duration-label .ls-cenik-cell-link {
  margin: -14px -16px;
  padding: 14px 16px;
}
.ls-cenik-table td.ls-price-cell .ls-cenik-cell-link {
  margin: -14px -16px -14px -4px;
  padding: 14px 16px 14px 4px;
}
.ls-cenik-table td.ls-duration-label {
  padding: 14px 16px;
  font-family: var(--ls-font-body);
  font-weight: 500;
  font-size: var(--ls-text-base);
  color: var(--ls-text);
  line-height: 1.2;
  border-right: 1px solid #eef2f6;
  background: transparent;
  text-align: left;
  text-transform: none;
  letter-spacing: normal;
  position: relative;
  vertical-align: middle;
}
.ls-cenik-table td.ls-price-cell {
  text-align: right;
  padding: 14px 16px 14px 4px;
  font-family: var(--ls-font-display);
  font-weight: 800;
  font-size: var(--ls-text-xl);
  color: var(--ls-text);
  border-left: 1px solid #f0f3f7;
  letter-spacing: -.3px;
  background: transparent;
  vertical-align: middle;
}

/* "2 DNY" recommended row */
.ls-cenik-table tr.ls-row-recommended,
.ls-cenik-table tr.ls-row-recommended:nth-child(even) { background: #fef9ea; }
.ls-cenik-table tr.ls-row-recommended td.ls-duration-label { color: #0d2238; }
.ls-cenik-table tr.ls-row-recommended td.ls-price-cell { color: var(--ls-blue); }
.ls-amber-bar {
  position: absolute;
  left: 0;
  top: 8px;
  bottom: 8px;
  width: 3px;
  background: var(--ls-amber);
  border-radius: 2px;
}
.ls-recommend-badge {
  display: block;
  font-family: var(--ls-font-body);
  font-size: var(--ls-text-xs);
  font-weight: 700;
  color: var(--ls-amber-dark);
  letter-spacing: .8px;
  text-transform: uppercase;
}

/* Price table footnote */
.ls-cenik-note {
  line-height: 1.6;
  margin-top: 10px;
}

/* ── Discount sidebar ── */
.ls-discount-card {
  background: #fff;
  border: 2px solid var(--ls-amber);
  border-radius: 14px;
  padding: 20px 22px;
  margin-bottom: 14px;
}
.ls-discount-card__header {
  font-family: var(--ls-font-display);
  font-weight: 800;
  font-size: var(--ls-text-md);
  color: var(--ls-amber-dark);
  letter-spacing: 1.5px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.ls-discount-pct-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--ls-amber);
  color: #0d2238;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ls-font-body);
  font-weight: 800;
  font-size: 13px;
  flex-shrink: 0;
}
.ls-discount-section-title {
  font-family: var(--ls-font-display);
  font-weight: 700;
  font-size: var(--ls-text-sm);
  color: var(--ls-text);
  letter-spacing: 1px;
  margin-bottom: 6px;
}
.ls-discount-sep { border: none; border-top: 1px dashed #f0e0b8; margin: 14px 0 0; }
.ls-discount-rows { display: flex; flex-direction: column; gap: 4px; font-size: var(--ls-text-sm); color: var(--ls-text); }
.ls-discount-row { display: flex; justify-content: space-between; gap: 8px; }
.ls-discount-val { color: var(--ls-amber-dark); font-weight: 700; white-space: nowrap; }
.ls-discount-note { margin-top: 12px; font-size: var(--ls-text-sm); color: var(--ls-muted); font-style: italic; line-height: 1.5; margin-bottom: 0; }

.ls-akce-page { padding-top: 48px; padding-bottom: 56px; }
.ls-akce-page--below-hero { padding-top: 36px; }

/* Sjednocený segmented look (track + active pill se stínem) — používá Maminky termíny a kotvy v Brigádě. */
.ls-seg {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 3px;
  padding: 5px;
  background: var(--ls-off);
  border: 1px solid var(--ls-border);
  border-radius: 12px;
  margin-bottom: 28px;
}
.ls-seg-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 9px 18px;
  border-radius: 8px;
  color: var(--ls-text);
  font-family: var(--ls-font-body);
  font-weight: 600;
  font-size: var(--ls-text-sm);
  line-height: 1.2;
  text-decoration: none;
  transition: background .15s, color .15s;
}
button.ls-seg-item {
  border: none;
  background: transparent;
  cursor: pointer;
}
.ls-seg-item:hover { color: var(--ls-blue-dark); text-decoration: none; }
.ls-seg-item.active {
  background: var(--ls-blue);
  color: #fff;
  box-shadow: 0 1px 3px rgba(15,30,60,.18);
}
.ls-seg-item.active:hover { color: #fff; }
.ls-seg-label { font-weight: 600; }
.ls-seg-sub { font-size: var(--ls-text-xs); font-weight: 500; opacity: .85; margin-top: 2px; }

/* Segmented radio groups (školní formulář — Typ lodi, Bagáž, Instruktor) */
.ls-seg--full { display: flex; width: 100%; }
.ls-seg--form { margin-bottom: 0; }
.ls-seg--radio .btn-check {
  position: absolute;
  clip: rect(0, 0, 0, 0);
  pointer-events: none;
}
.ls-seg--radio .ls-seg-item {
  flex: 1;
  min-width: 0;
  cursor: pointer;
  user-select: none;
  text-align: center;
}
.ls-seg--radio .btn-check:checked + .ls-seg-item {
  background: var(--ls-blue);
  color: #fff;
  box-shadow: 0 1px 3px rgba(15,30,60,.18);
}
.ls-seg--radio .btn-check:checked + .ls-seg-item:hover { color: #fff; }
.ls-seg--radio .btn-check:focus-visible + .ls-seg-item {
  outline: 2px solid var(--ls-blue);
  outline-offset: 2px;
}

/* Pravý sloupec — sticky CTA / souhrn pod fixed navbar (jen desktop) */
@media (min-width: 992px) {
  .ls-side-cta,
  .ls-faq-aside,
  .ls-rez-summary {
    position: sticky;
    top: var(--ls-scroll-offset);
  }
}
@media (min-width: 1200px) {
  .ls-cenik-sidebar {
    position: sticky;
    top: var(--ls-scroll-offset);
  }
}
.ls-cenik-sidebar .ls-side-cta { position: static; }

.ls-side-cta,
.ls-faq-aside {
  background: var(--ls-blue-deep);
  color: #fff;
  border-radius: 14px;
  padding: 22px;
}
.ls-side-cta-kicker,
.ls-faq-aside-kicker { color: var(--ls-amber); margin-bottom: 8px; }
.ls-side-cta-title,
.ls-faq-aside-title {
  font-family: var(--ls-font-display);
  font-weight: 800;
  font-size: var(--ls-text-xl);
  line-height: 1.15;
  margin: 0 0 14px;
  color: var(--bs-white);
}
.ls-side-cta-phone,
.ls-faq-aside-phone {
  display: block;
  background: var(--ls-amber);
  color: var(--ls-blue-deep);
  padding: 11px 14px;
  border-radius: 8px;
  font-family: var(--ls-font-display);
  font-weight: 800;
  font-size: var(--ls-text-lg);
  text-align: center;
  text-decoration: none;
  margin-bottom: 8px;
}
.ls-side-cta-phone:hover,
.ls-faq-aside-phone:hover { background: var(--ls-amber-dark); color: var(--ls-blue-deep); text-decoration: none; }
/* ── Podmínky amber box (replaces .well.akce in doporuceni) ── */
.ls-podminky {
  background: #fef3c7;
  border: 1px solid #fcd34d;
  border-radius: 14px;
  padding: 24px 28px;
  margin-bottom: 28px;
}
.ls-podminky__title {
  font-family: var(--ls-font-display);
  font-weight: 800;
  font-size: var(--ls-text-xl);
  color: #0d2238;
  margin: 0 0 10px;
  letter-spacing: var(--ls-tracking-display);
  text-transform: uppercase;
}
.ls-podminky__lead { font-size: var(--ls-text-base); color: var(--ls-text); margin-bottom: 0; }
.ls-podminky__section {
  font-family: var(--ls-font-display);
  font-weight: 700;
  font-size: var(--ls-text-md);
  color: #0d2238;
  margin: 14px 0 4px;
}
.ls-podminky__body { font-size: var(--ls-text-base); color: var(--ls-text); line-height: 1.55; margin-bottom: 0; }
/* Podminky body rendered from editable semantic markup (cenik-podminky body slot).
   h3 = __section; the p siblings after the title = __lead/__body (visually identical). */
.ls-podminky h3 {
  font-family: var(--ls-font-display);
  font-weight: 700;
  font-size: var(--ls-text-md);
  color: #0d2238;
  margin: 14px 0 4px;
  letter-spacing: 0.035em;
  line-height: 1.55;
}
.ls-podminky__title ~ p {
  font-size: var(--ls-text-base);
  color: var(--ls-text);
  line-height: 1.55;
  margin: 0;
}

/* ── Stop cards (cenik-doprava) ── */
.ls-stops-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-bottom: 32px;
}
@media (min-width: 576px)  { .ls-stops-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 992px)  { .ls-stops-grid { grid-template-columns: repeat(6, 1fr); } }

.ls-stop-card {
  background: #fff;
  border-radius: 14px;
  border: 1px solid #d4e0eb;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.ls-stop-card[role="link"] { cursor: pointer; }
.ls-stop-card[role="link"]:hover {
  transform: translateY(-2px);
  border-color: var(--ls-blue);
  box-shadow: 0 8px 20px rgba(10, 30, 60, .12);
}
.ls-stop-card[role="link"]:focus-visible {
  outline: 2px solid var(--ls-blue);
  outline-offset: 2px;
}
.ls-stop-card--paid { border-color: var(--ls-amber); }
.ls-stop-card__body {
  padding: 14px 14px 10px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.ls-stop-rkm {
  align-self: flex-start;
  background: var(--ls-off);
  padding: 3px 8px;
  border-radius: 14px;
  font-size: var(--ls-text-xs);
  font-weight: 700;
  color: var(--ls-muted);
  letter-spacing: .3px;
  margin-top: 5px;
}
.ls-stop-name {
  font-family: var(--ls-font-display);
  font-weight: 800;
  font-size: var(--ls-text-lg);
  color: #0d2238;
  line-height: 1.05;
  letter-spacing: -.3px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.ls-stop-loc {
  font-size: var(--ls-text-sm);
  color: var(--ls-text);
  margin-top: 8px;
  line-height: 1.4;
}
.ls-stop-note {
  font-size: var(--ls-text-sm);
  color: var(--ls-amber-dark);
  margin-top: 5px;
  font-weight: 700;
  font-style: italic;
}
.ls-stop-hours {
  margin-top: auto;
  padding-top: 8px;
  font-size: var(--ls-text-sm);
  font-weight: 600;
  color: #0d2238;
}
.ls-stop-hours-sub { font-size: var(--ls-text-sm); color: var(--ls-muted); margin-top: 2px; }
.ls-stop-card__footer {
  padding: 8px 14px;
  border-top: 1px solid #eef2f6;
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 32px;
}
.ls-stop-free {
  font-family: var(--ls-font-display);
  font-weight: 700;
  font-size: var(--ls-text-xs);
  color: var(--ls-muted);
  letter-spacing: var(--ls-tracking-display);
}
.ls-stop-unit { font-size: var(--ls-text-sm); color: var(--ls-muted); }

/* Stop cards rendered from editable semantic markup (cenik-doprava PAGE body).
   a = .ls-stop-card (whole card links to /rezervace); a.paid = --paid;
   div = __body; h3 = name; span = rkm pill; first p = loc; em = note;
   p:last-of-type = hours; div small = hours-sub; footer = __footer;
   footer strong = free/price; footer small = unit. */
.ls-stops-grid a {
  background: #fff;
  border-radius: 14px;
  border: 1px solid #d4e0eb;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}
.ls-stops-grid a:hover {
  transform: translateY(-2px);
  border-color: var(--ls-blue);
  box-shadow: 0 8px 20px rgba(10, 30, 60, .12);
}
.ls-stops-grid a:focus-visible {
  outline: 2px solid var(--ls-blue);
  outline-offset: 2px;
}
.ls-stops-grid a.paid { border-color: var(--ls-amber); }
.ls-stops-grid a > div {
  padding: 14px 14px 10px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.ls-stops-grid a h3 {
  margin: 0;
  font-family: var(--ls-font-display);
  font-weight: 800;
  font-size: var(--ls-text-lg);
  color: #0d2238;
  line-height: 1.05;
  letter-spacing: -.3px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.ls-stops-grid a > div > span {
  align-self: flex-start;
  background: var(--ls-off);
  padding: 3px 8px;
  border-radius: 14px;
  font-size: var(--ls-text-xs);
  font-weight: 700;
  color: var(--ls-muted);
  letter-spacing: .3px;
  margin-top: 5px;
}
.ls-stops-grid a p {
  font-size: var(--ls-text-sm);
  color: var(--ls-text);
  margin: 8px 0 0;
  line-height: 1.4;
}
.ls-stops-grid a em {
  font-size: var(--ls-text-sm);
  color: var(--ls-amber-dark);
  margin-top: 5px;
  font-weight: 700;
  font-style: italic;
}
.ls-stops-grid a p:last-of-type {
  margin-top: auto;
  padding-top: 8px;
  font-weight: 600;
  color: #0d2238;
  line-height: 1.55;
}
.ls-stops-grid a > div small {
  font-size: var(--ls-text-sm);
  color: var(--ls-muted);
  margin-top: 2px;
}
.ls-stops-grid a footer {
  padding: 8px 14px;
  border-top: 1px solid #eef2f6;
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 32px;
}
.ls-stops-grid a footer strong {
  font-family: var(--ls-font-display);
  font-weight: 700;
  font-size: var(--ls-text-xs);
  color: var(--ls-muted);
  letter-spacing: var(--ls-tracking-display);
}
.ls-stops-grid a.paid footer strong {
  background: var(--ls-amber);
  color: #0d2238;
  font-weight: 800;
  font-size: var(--ls-text-sm);
  padding: 4px 10px 3px;
  border-radius: 20px;
  white-space: nowrap;
}
.ls-stops-grid a footer small {
  font-size: var(--ls-text-sm);
  color: var(--ls-muted);
}

/* Bagáž card */
.ls-bagaz-card {
  background: #fff;
  border-radius: 14px;
  border: 1px solid #d4e0eb;
  overflow: hidden;
}
.ls-bagaz-card__head {
  background: #e8f1fa;
  padding: 10px 22px;
  font-family: var(--ls-font-display);
  font-weight: 800;
  font-size: var(--ls-text-base);
  color: var(--ls-blue);
  letter-spacing: var(--ls-tracking-display);
  border-bottom: 1px solid #d4e0eb;
}
.ls-bagaz-price {
  font-family: var(--ls-font-display);
  font-weight: 800;
  font-size: var(--ls-display-lg);
  color: #0d2238;
  line-height: 1;
}
.ls-bagaz-unit { font-size: var(--ls-text-sm); color: var(--ls-muted); }
.ls-bagaz-body { font-size: var(--ls-text-base); color: var(--ls-text); line-height: 1.6; }

/* ── Equipment cards (cenik-vybaveni) — aligned with ls-stop-card ── */
.ls-equip-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 10px;
}
@media (min-width: 768px)  { .ls-equip-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1200px) { .ls-equip-grid { grid-template-columns: repeat(4, 1fr); } }

.ls-equip-card {
  background: #fff;
  border-radius: 14px;
  border: 1px solid #d4e0eb;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.ls-equip-card--accent { border-color: var(--ls-amber); }
.ls-equip-card__body {
  padding: 14px 14px 10px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.ls-equip-card__title {
  font-family: var(--ls-font-display);
  font-weight: 800;
  font-size: var(--ls-text-lg);
  color: #0d2238;
  line-height: 1.15;
  letter-spacing: -.3px;
}
.ls-equip-card__chips {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-content: flex-start;
}
.ls-equip-card__footer {
  padding: 8px 14px;
  border-top: 1px solid #eef2f6;
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 32px;
  gap: 8px;
}

/* Intro paragraph of the editable cenik CMS body (was .text-muted.mb-4 with inline strong colour). */
.ls-cenik-cms-body > p {
  color: var(--ls-muted);
  margin: 0 0 1.5rem;
}
.ls-cenik-cms-body > p strong {
  color: var(--ls-text);
}

/* Equipment cards rendered from editable semantic markup (cenik-vybaveni PAGE body).
   section = .ls-equip-card; h3 = __title; ul/li = __chips/.ls-chip;
   footer = __footer; footer strong = .ls-stop-free (accent: .ls-stop-price); small = .ls-stop-unit. */
.ls-equip-grid section {
  background: #fff;
  border-radius: 14px;
  border: 1px solid #d4e0eb;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.ls-equip-grid section.accent { border-color: var(--ls-amber); }
.ls-equip-grid section h3 {
  margin: 0;
  padding: 14px 14px 0;
  font-family: var(--ls-font-display);
  font-weight: 800;
  font-size: var(--ls-text-lg);
  color: #0d2238;
  line-height: 1.15;
  letter-spacing: -.3px;
}
.ls-equip-grid section ul {
  flex: 1;
  margin: 10px 0 0;
  padding: 0 14px 10px;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-content: flex-start;
}
.ls-equip-grid section li {
  background: #fff;
  color: #0d2238;
  font-size: 13px;
  font-weight: 500;
  font-family: var(--ls-font-body);
  padding: 5px 10px;
  border-radius: 20px;
  border: 1px solid rgba(13,34,56,.08);
  white-space: nowrap;
  line-height: 1.3;
  display: inline-block;
}
.ls-equip-grid section footer {
  padding: 8px 14px;
  border-top: 1px solid #eef2f6;
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 32px;
  gap: 8px;
}
.ls-equip-grid section footer strong {
  font-family: var(--ls-font-display);
  font-weight: 700;
  font-size: var(--ls-text-xs);
  color: var(--ls-muted);
  letter-spacing: var(--ls-tracking-display);
}
.ls-equip-grid section.accent footer strong {
  background: var(--ls-amber);
  color: #0d2238;
  font-weight: 800;
  font-size: var(--ls-text-sm);
  padding: 4px 10px 3px;
  border-radius: 20px;
  white-space: nowrap;
}
.ls-equip-grid section footer small {
  font-size: var(--ls-text-sm);
  color: var(--ls-muted);
}

/* Cenik section head (shared between doprava and vybaveni) */
.ls-cenik-section-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 14px;
}
.ls-cenik-section-row__sub {
  font-size: var(--ls-text-sm);
  font-weight: 600;
  color: var(--ls-muted);
}
.ls-cenik-section-row__meta {
  font-size: var(--ls-text-sm);
  color: var(--ls-muted);
}
.ls-cenik-section-head .ls-table-heading {
  text-decoration: none;
  margin-bottom: 8px;
}
.ls-side-cta-phone:hover { background: var(--ls-amber-dark); color: var(--ls-blue-deep); text-decoration: none; }
.ls-side-cta-mail,
.ls-faq-aside-mail,
.ls-faq-aside-mail:visited {
  display: block;
  text-align: center;
  font-size: var(--ls-text-sm);
  color: rgba(255,255,255,.85);
  text-decoration: underline;
  margin-bottom: 0;
}
.ls-side-cta-mail:hover,
.ls-faq-aside-mail:hover,
.ls-faq-aside-mail:focus { color: #fff; text-decoration: underline; }
.ls-side-cta-note,
.ls-faq-aside-note {
  margin: 0;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,.12);
  font-size: var(--ls-text-sm);
  color: rgba(255,255,255,.7);
  line-height: 1.5;
}

/* CMS body — vyrenderuje text z admin editoru. */
.ls-cms-body {
  font-size: var(--ls-text-base);
  color: var(--ls-text);
  line-height: 1.7;
}
.ls-cms-body img { max-width: 100%; height: auto; border-radius: 10px; }
.ls-cms-body h3 {
  font-family: var(--ls-font-display);
  font-weight: 800;
  font-size: var(--ls-text-xl);
  color: var(--ls-text);
}

/* ── Responsive tweaks ── */
@media (max-width: 767px) {
  .ls-cenik-table { font-size: var(--ls-text-sm); }
  .ls-cenik-table td.ls-price-cell { font-size: var(--ls-text-base); padding: 10px 8px 10px 2px; }
  .ls-cenik-table td.ls-duration-label { padding: 10px 8px; font-size: var(--ls-text-sm); }
  .ls-boat-name { font-size: var(--ls-text-sm); }
  .ls-boat-img-wrap { height: 36px; }
  .ls-bagaz-price { font-size: var(--ls-display-sm); }
}

/* ============================================================
   LS-11: Homepage redesign additions
   ============================================================ */

/* Utility */
.hidden { display: none !important; }

/* honeypot pole skryté mimo obrazovku */
.ls-hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* ── Booking widget enhancements (white card) ── */
.ls-booking-select,
.ls-booking-date {
  width: 100%;
  padding: 9px 12px;
  border: 2px solid var(--ls-blue);
  border-radius: var(--ls-radius);
  background: #fff;
  color: var(--ls-text);
  font-size: var(--ls-text-base);
  font-family: var(--ls-font-body);
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
  transition: border-color 0.2s;
}
.ls-booking-select:focus,
.ls-booking-date:focus {
  border-color: var(--ls-blue-dark);
  outline: none;
}
.ls-booking-select.is-invalid,
.ls-booking-date.is-invalid {
  border-color: var(--ls-danger);
}
.ls-booking-field-feedback {
  display: none;
  margin-top: 6px;
  font-size: var(--ls-text-sm);
  color: var(--ls-danger);
}
.ls-booking-select.is-invalid ~ .ls-booking-field-feedback,
.ls-booking-field-feedback.d-block {
  display: block;
}

.ls-booking-slider,
.ls-booking-slider-labels {
  --ls-booking-thumb: 20px;
}
.ls-booking-slider {
  --ls-booking-fill: 17.85%;
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
  height: var(--ls-booking-thumb);
  background: transparent;
  outline: none;
  cursor: pointer;
  margin-top: 8px;
}
.ls-booking-slider::-webkit-slider-runnable-track {
  height: 5px;
  border-radius: 3px;
  background: linear-gradient(to right, var(--ls-blue) 0%, var(--ls-blue) var(--ls-booking-fill), #d0dce9 var(--ls-booking-fill), #d0dce9 100%);
}
.ls-booking-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: var(--ls-booking-thumb);
  height: var(--ls-booking-thumb);
  border-radius: 50%;
  background: var(--ls-blue);
  cursor: pointer;
  border: 2px solid #fff;
  box-shadow: 0 2px 6px rgba(0,0,0,0.25);
  box-sizing: border-box;
  margin-top: calc((5px - var(--ls-booking-thumb)) / 2);
}
.ls-booking-slider::-moz-range-track {
  height: 5px;
  border-radius: 3px;
  border: none;
  background: linear-gradient(to right, var(--ls-blue) 0%, var(--ls-blue) var(--ls-booking-fill), #d0dce9 var(--ls-booking-fill), #d0dce9 100%);
}
.ls-booking-slider::-moz-range-thumb {
  width: var(--ls-booking-thumb);
  height: var(--ls-booking-thumb);
  border-radius: 50%;
  background: var(--ls-blue);
  cursor: pointer;
  border: 2px solid #fff;
  box-sizing: border-box;
  box-shadow: 0 2px 6px rgba(0,0,0,0.25);
}
.ls-booking-slider-labels {
  display: flex;
  justify-content: space-between;
  font-size: var(--ls-text-sm);
  font-variant-numeric: tabular-nums;
  color: var(--ls-muted);
  margin-top: 0px;
  padding-inline: calc(var(--ls-booking-thumb) / 3);
}

/* ── Akce strip (homepage) ── */
.homepage .ls-akce-strip {
  background: #f7f9fc;
  padding: 32px 0;
  margin: 0;
  display: block;
}
.ls-akce-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}
.ls-akce-card {
  background: #fff;
  border: 1.5px solid #e6edf5;
  border-radius: var(--ls-radius-lg);
  padding: 22px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.ls-akce-label {
  display: inline-block;
  background: var(--ls-amber);
  color: var(--ls-blue-deep);
  font-family: var(--ls-font-display);
  font-weight: 800;
  font-size: var(--ls-text-xs);
  letter-spacing: var(--ls-tracking-display);
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 20px;
  align-self: flex-start;
}
.ls-akce-body { flex: 1; }
.ls-akce-cta {
  font-size: var(--ls-text-sm);
  font-weight: 600;
  color: var(--ls-blue);
  text-decoration: none;
  align-self: flex-start;
}
.ls-akce-cta:hover { color: var(--ls-blue-deep); text-decoration: underline; }

/* ── Ships section (varianta C+++) ── */
.ls-ships-section {
  background: var(--ls-white);
  padding: 40px 0;
}
.ls-ships-section .ls-section-eyebrow {
  margin-bottom: 4px;
}
.ls-ships-header { margin-bottom: 16px; }
.ls-ships-title-row {
  display: flex;
  align-items: baseline;
  gap: 14px;
  flex-wrap: wrap;
}
.ls-ships-title {
  font-size: var(--ls-display-md);
  line-height: 1;
  margin: 0;
}
.ls-ships-hint {
  font-size: var(--ls-text-base);
  color: var(--ls-muted);
  max-width: 520px;
  margin: 0;
  line-height: 1.5;
}
.ls-ships-hint strong { color: var(--ls-text); }

.ls-ships-usp {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: var(--ls-off);
  border: 1px solid var(--ls-border);
  border-radius: 12px;
  padding: 16px 10px;
  margin-bottom: 18px;
}
.ls-ships-usp-item {
  display: flex;
  gap: 12px;
  padding: 0 14px;
  align-items: flex-start;
  border-right: 1px solid var(--ls-border);
}
.ls-ships-usp-item:last-child { border-right: none; }
.ls-ships-usp-icon {
  font-size: var(--ls-text-xl);
  line-height: 1.1;
  flex-shrink: 0;
}
.ls-ships-usp-title {
  font-size: var(--ls-text-md);
  color: var(--ls-text);
  line-height: 1.2;
}
.ls-ships-usp-desc {
  margin-top: 3px;
  line-height: 1.45;
}

.ls-ships-days {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.ls-ships-days-label {
  font-weight: 600;
  font-size: var(--ls-text-sm);
  color: var(--ls-muted);
  text-transform: uppercase;
  letter-spacing: 0.4px;
}
.ls-ships-price-toggle {
  display: flex;
  gap: 4px;
  background: var(--ls-off);
  border-radius: 8px;
  padding: 4px;
  flex-wrap: wrap;
}
.ls-price-tab {
  border: none;
  background: none;
  padding: 8px 16px;
  border-radius: 6px;
  font-family: var(--ls-font-body);
  font-weight: 600;
  font-size: var(--ls-text-sm);
  color: var(--ls-muted);
  cursor: pointer;
  transition: all 0.15s;
}
.ls-price-tab.active {
  background: var(--ls-blue);
  color: var(--ls-white);
}
.ls-price-den {
  font-size: 1em;
  color: var(--ls-muted);
  font-weight: 600;
}
.ls-ship-price-note {
  font-size: var(--ls-text-xs);
  color: var(--ls-amber);
  font-weight: 600;
  margin-top: 3px;
  text-align: right;
}
.ls-ship-hero .ls-ship-price-note { font-size: var(--ls-text-xs); }
.ls-price-more {
  font-size: var(--ls-text-sm);
  font-weight: 600;
  color: var(--ls-blue);
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  padding-bottom: 1px;
  white-space: nowrap;
}
.ls-price-more:hover { color: var(--ls-blue-dark); }

/* Ship cards — shared */
.ls-ship-card {
  background: var(--ls-white);
  border: 1px solid var(--ls-border);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--ls-shadow-sm);
  transition: border-color 0.15s;
}
.ls-ships-section .ls-ship-card:hover {
  border-color: var(--ls-blue-light);
}
.ls-ship-card--selected {
  border-color: var(--ls-blue);
}
.ls-ship-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: left center;
  mix-blend-mode: multiply;
}

/* Tier 1: hero */
.ls-ship-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: 18px;
  box-shadow: var(--ls-shadow-sm);
  margin-bottom: 16px;
}
.ls-ship-hero-img {
  position: relative;
  min-height: 220px;
  background: var(--ls-off);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.ls-ship-hero-img .ls-ship-img { max-height: 200px; object-position: center; }
/* Sjednocená typografie názvů a cen lodí na HP (min. 20px) */
.ls-ships-section .ls-ship-hero-name,
.ls-ships-section .ls-ship-mid-name,
.ls-ships-section .ls-ship-small-name {
  font-family: var(--ls-font-display);
  font-weight: 800;
  font-size: var(--ls-text-lg);
  color: var(--ls-text);
  line-height: 1.1;
}
.ls-ships-section .ls-ship-hero-name { margin: 0 0 4px; line-height: 1; }
.ls-ships-section .ls-ship-hero-price,
.ls-ships-section .ls-ship-mid-price,
.ls-ships-section .ls-ship-small-price {
  font-family: var(--ls-font-display);
  font-weight: 800;
  font-size: var(--ls-text-lg);
  color: var(--ls-blue);
  line-height: 1;
}
.ls-ships-section .ls-ship-hero-desc,
.ls-ships-section .ls-ship-mid-desc,
.ls-ships-section .ls-ship-small-desc {
  font-size: var(--ls-text-sm);
  color: var(--ls-muted);
  margin: 0;
}
.ls-ships-section .ls-ship-mid-desc,
.ls-ships-section .ls-ship-small-desc { margin-top: 2px; }

.ls-ship-hero-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--ls-amber);
  color: var(--ls-blue-deep);
  font-family: var(--ls-font-display);
  font-weight: 800;
  font-size: var(--ls-text-xs);
  padding: 5px 10px;
  border-radius: 20px;
  letter-spacing: var(--ls-tracking-display);
  text-transform: uppercase;
}
.ls-ship-hero-body {
  padding: 22px 26px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.ls-ship-hero-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 14px;
}
.ls-ship-price-block { text-align: right; white-space: nowrap; flex-shrink: 0; }
.ls-ship-hero-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 16px;
}
.ls-ship-hero-actions .ls-ship-reserve-btn { margin-top: 0; }
.ls-ship-reserve-btn {
  font-weight: 800;
  font-size: var(--ls-text-sm);
  height: 44px;
  padding: 0 18px;
  line-height: 1;
  border-radius: 9px;
  white-space: nowrap;
}
.ls-ship-combo-hint {
  font-size: var(--ls-text-sm);
  color: var(--ls-muted);
  font-style: italic;
  line-height: 1;
}
.ls-ship-alone {
  font-size: var(--ls-text-sm);
  color: var(--ls-muted);
  text-decoration: none;
  font-weight: 500;
  white-space: nowrap;
}
.ls-ship-alone span { color: var(--ls-blue); text-decoration: underline; }
.ls-ship-alone:hover { color: var(--ls-blue); }

/* Tier 2 */
.ls-ships-tier2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}
.ls-ship-mid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  border-radius: 14px;
}
.ls-ship-mid-img {
  position: relative;
  height: 160px;
  background: var(--ls-off);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
}
.ls-ship-mid-tag {
  position: absolute;
  top: 10px;
  left: 10px;
  font-size: var(--ls-text-xs);
  font-weight: 700;
  color: var(--ls-blue);
  background: var(--ls-white);
  padding: 3px 8px;
  border-radius: 20px;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}
.ls-ship-mid-body {
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.ls-ship-mid-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
}
.ls-ship-mid-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 10px;
}

/* Tier 3 */
.ls-ships-tier3 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.ls-ship-small {
  display: flex;
  flex-direction: column;
  border-radius: 12px;
}
.ls-ship-small-img {
  height: 100px;
  background: var(--ls-off);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 10px;
}
.ls-ship-small-body {
  padding: 10px 12px 12px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
}
.ls-ship-small-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 6px;
}
.ls-ship-small-info { min-width: 0; }
.ls-ship-small-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
  margin-top: 8px;
}

/* Summary card */
.ls-ships-summary {
  background: var(--ls-blue-deep);
  color: var(--ls-white);
  border-radius: 12px;
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100%;
}
.ls-ships-summary--empty {
  border: 1px dashed rgba(255, 255, 255, 0.2);
}
.ls-ships-summary--active {
  box-shadow: 0 6px 18px rgba(15, 30, 60, 0.2);
}
.ls-ships-summary-idle-title {
  font-family: var(--ls-font-display);
  font-weight: 800;
  font-size: var(--ls-text-md);
  color: var(--ls-white);
  line-height: 1.1;
}
.ls-ships-summary-idle-desc {
  font-size: var(--ls-text-sm);
  color: rgba(255, 255, 255, 0.6);
  margin: 5px 0 0;
  line-height: 1.4;
}
.ls-ships-summary-idle-desc strong { color: var(--ls-amber); }
.ls-ships-summary-idle-hint {
  margin-top: 8px;
  font-weight: 600;
  font-size: var(--ls-text-sm);
  color: rgba(255, 255, 255, 0.5);
}
.ls-ships-summary-label {
  font-family: var(--ls-font-display);
  font-weight: 700;
  font-size: var(--ls-text-xs);
  color: var(--ls-amber);
  letter-spacing: var(--ls-tracking-display);
  text-transform: uppercase;
  margin-bottom: 6px;
}
.ls-ships-summary-items {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  margin-bottom: 6px;
}
.ls-ships-summary-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 4px;
  font-size: var(--ls-text-sm);
}
.ls-ships-summary-row-name { color: rgba(255, 255, 255, 0.85); }
.ls-ships-summary-row-name strong {
  color: var(--ls-white);
  font-family: var(--ls-font-display);
  font-weight: 800;
  font-size: var(--ls-text-sm);
  margin-right: 3px;
}
.ls-ships-summary-row-price {
  font-family: var(--ls-font-display);
  font-weight: 700;
  font-size: var(--ls-text-sm);
  color: var(--ls-white);
  white-space: nowrap;
}
.ls-ships-summary-total-label {
  font-weight: 600;
  font-size: var(--ls-text-sm);
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 2px;
}
.ls-ships-summary-total-price {
  font-family: var(--ls-font-display);
  font-weight: 800;
  font-size: var(--ls-text-2xl);
  color: var(--ls-amber);
  line-height: 1;
  margin-bottom: 4px;
}
.ls-ships-summary-meta {
  font-weight: 600;
  font-size: var(--ls-text-sm);
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 6px;
}
.ls-ships-summary-alt {
  background: rgba(255, 255, 255, 0.06);
  border-radius: 5px;
  padding: 5px 7px;
  font-size: var(--ls-text-sm);
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 8px;
  line-height: 1.3;
}
.ls-ships-summary-alt strong { color: var(--ls-white); }
.ls-ships-summary-cta {
  margin-top: auto;
  font-weight: 800;
  font-size: var(--ls-text-sm);
  padding: 9px;
  border-radius: 7px;
}

/* Stepper — sdílený na homepage i rezervaci (Varianta D) */
.ls-stepper {
  display: inline-flex;
  align-items: center;
  gap: 0;
  height: 44px;
  background: var(--ls-white);
  border: 1px solid var(--ls-border);
  border-radius: var(--ls-radius);
  overflow: hidden;
}
.ls-stepper-btn {
  background: none;
  border: none;
  width: 44px;
  height: 44px;
  font-size: var(--ls-text-xl);
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  color: var(--ls-text);
  transition: background 0.15s;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ls-stepper-btn:first-child {
  background: var(--ls-white);
}
.ls-stepper:not(.ls-stepper--active) .ls-stepper-btn:first-child {
  background: var(--ls-off);
  color: var(--ls-border);
  cursor: default;
}
.ls-stepper:not(.ls-stepper--active) .ls-stepper-btn:first-child:hover {
  background: var(--ls-off);
}
.ls-stepper-btn:last-child { background: var(--ls-blue); color: var(--ls-white); }
.ls-stepper-btn:last-child:hover { background: var(--ls-blue-dark); }
.ls-stepper-btn:first-child:hover { background: var(--ls-off); }
.ls-stepper-val {
  min-width: 44px;
  width: 44px;
  height: 44px;
  line-height: 44px;
  text-align: center;
  font-family: var(--ls-font-display);
  font-weight: 800;
  font-size: var(--ls-text-lg);
  color: var(--ls-muted);
  padding: 0;
  border: none;
  border-left: 1px solid var(--ls-border);
  border-right: 1px solid var(--ls-border);
  border-radius: 0;
  background: var(--ls-white);
  box-sizing: border-box;
  -moz-appearance: textfield;
  appearance: textfield;
}
.ls-stepper-val:focus {
  outline: none;
  background: var(--ls-off);
  color: var(--ls-blue);
}
.ls-stepper--active {
  border-color: var(--ls-blue);
  box-shadow: var(--ls-shadow-sm);
}
.ls-stepper--active .ls-stepper-val { color: var(--ls-blue); }
.ls-cms-body ul { padding-left: 22px; margin-bottom: 18px; }
.ls-cms-body ul li { margin-bottom: 4px; }
/* ─────  Photo hero strip (Otava, Maminky, Noční Otava)  ───── */
.ls-hero--photo {
  margin-top: calc(-1 * var(--ls-nav-height));
  min-height: 0;
  padding-block: calc(var(--ls-nav-height) + 64px) 64px;
  color: #fff;
}
.ls-hero--photo .ls-hero-inner {
  grid-template-columns: 1fr;
  align-items: stretch;
  padding-block: 0;
}
.ls-hero-inner--inset {
  padding-left: 60px;
  padding-right: 60px;
}
.ls-hero--photo .ls-hero-title {
  font-size: var(--ls-display-hero);
  line-height: .9;
  text-transform: none;
  color: #fff;
  margin-bottom: 12px;
  letter-spacing: 0.035em;
}
.ls-hero--photo .ls-hero-lead {
  font-size: var(--ls-text-lg);
  color: rgba(255,255,255,.85);
  max-width: 720px;
  margin-bottom: 0;
}
.ls-hero--photo .ls-hero-actions {
  margin-top: 12px;
  margin-bottom: 0;
}

.ls-hero--otava { background: var(--ls-blue-deep); }
.ls-hero--otava .ls-hero-bg {
  background-size: cover;
  background-repeat: no-repeat;
}
.ls-hero--otava .ls-hero-overlay {
  background: linear-gradient(180deg, rgba(13,34,56,.45) 0%, rgba(13,34,56,.85) 100%);
}

/* Kemp cards — OtavaCardKemp z redesign2026-v3 */
.ls-otava-kemp {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--ls-border);
  display: flex;
  flex-direction: column;
  height: 100%;
}
.ls-otava-kemp-body {
  padding: 16px 18px 18px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.ls-otava-kemp-head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px;
}
.ls-otava-kemp-rkm {
  flex-shrink: 0;
  background: var(--ls-off);
  padding: 4px 10px;
  border-radius: 14px;
  font-size: var(--ls-text-xs);
  font-weight: 700;
  color: var(--ls-blue-dark);
  font-family: var(--ls-font-body);
  letter-spacing: .5px;
  text-transform: uppercase;
}
.ls-otava-kemp-title,
.ls-otava-zaj-title,
.ls-brigada-job-t {
  font-family: var(--ls-font-display);
  font-weight: 800;
  font-size: var(--ls-text-lg);
  color: var(--ls-text);
  line-height: 1.1;
}
.ls-otava-kemp-title { margin: 0; }
.ls-otava-kemp-desc {
  opacity: .85;
  flex: 1;
}
.ls-otava-kemp-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 10px;
}
.ls-otava-kemp-tag {
  font-size: var(--ls-text-sm);
  background: var(--ls-off);
  padding: 3px 8px;
  border-radius: 20px;
  color: var(--ls-muted);
  font-weight: 500;
}
.ls-otava-kemp-phones {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
}
.ls-otava-kemp-foot {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  margin-top: auto;
  padding-top: 12px;
}
.ls-otava-kemp-phone {
  font-size: var(--ls-text-sm);
  font-weight: 700;
  color: var(--ls-blue);
  text-decoration: underline;
}
.ls-otava-kemp-phone:hover {
  color: var(--ls-blue-dark);
}
.ls-otava-kemp-note {
  font-size: var(--ls-text-base);
}

/* Zajímavosti cards — vertikální media karta (foto nahoře, text dole) */
.ls-otava-zaj {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--ls-border);
  display: flex;
  flex-direction: column;
  height: 100%;
}
.ls-otava-zaj-img {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 2;
  flex-shrink: 0;
  overflow: hidden;
  background: var(--ls-off);
}
.ls-otava-zaj-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.ls-otava-zaj-top {
  position: absolute;
  top: 8px;
  left: 8px;
  background: var(--ls-amber);
  color: var(--ls-blue-deep);
  font-size: var(--ls-text-xs);
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 4px;
  letter-spacing: .8px;
  text-transform: uppercase;
}
.ls-otava-zaj-credit {
  position: absolute;
  right: 0;
  bottom: 0;
  left: auto;
  max-width: 75%;
  padding: 4px 8px;
  font-size: var(--ls-text-xs);
  line-height: 1.25;
  color: var(--ls-off);
  text-align: right;
  background: color-mix(in srgb, var(--ls-blue-deep) 78%, transparent);
  border-top-left-radius: 6px;
}
.ls-otava-zaj-credit a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.ls-otava-zaj-credit a:hover {
  color: #fff;
}
.ls-otava-zaj-body {
  padding: 16px 18px 18px;
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
}
.ls-otava-zaj-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 4px;
}
.ls-otava-zaj-title {
  margin: 0;
  flex: 1;
  min-width: 0;
}
.ls-otava-zaj-head .ls-otava-kemp-rkm {
  margin-top: 2px;
}
.ls-otava-zaj-desc {
  opacity: .85;
}

/* Stažení vodácké mapy — karta v záhlaví záložky Jezy */
.ls-otava-map-dl {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 22px;
  border-radius: 12px;
  background: var(--ls-blue-deep);
  color: var(--ls-white);
  text-decoration: none;
  transition: background .15s ease, box-shadow .15s ease;
}
.ls-otava-map-dl:visited {
  color: var(--ls-white);
  text-decoration: none;
}
.ls-otava-map-dl:visited .ls-otava-map-dl__title {
  color: var(--ls-white);
}
.ls-otava-map-dl:hover,
.ls-otava-map-dl:focus-visible {
  color: var(--ls-white);
  text-decoration: none;
  background: var(--ls-blue-deep);
  box-shadow: var(--ls-shadow);
}
.ls-otava-map-dl:focus-visible {
  outline: 2px solid var(--ls-amber);
  outline-offset: 2px;
}
.ls-otava-map-dl__icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  border-radius: 8px;
  background: var(--ls-amber);
  color: var(--ls-footer-navy);
}
.ls-otava-map-dl__text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.ls-otava-map-dl__title {
  font-family: var(--ls-font-display);
  font-weight: 800;
  font-size: var(--ls-text-md);
  line-height: 1.2;
}
.ls-otava-map-dl__meta {
  font-size: var(--ls-text-sm);
  color: rgba(255,255,255,.7);
}

/* Jezy — řádky s náhledem a modalem */
.ls-otava-jez-row {
  cursor: pointer;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.ls-otava-jez-row > * {
  margin-top: 0;
}
.ls-otava-jez-row:hover {
  border-color: var(--ls-blue);
  box-shadow: var(--ls-shadow);
}
.ls-otava-jez-row:focus-visible {
  outline: 2px solid var(--ls-blue);
  outline-offset: 2px;
}
.ls-otava-jez-row .badge {
  max-width: 100%;
  white-space: normal;
  text-wrap: wrap;
  line-height: 1.35;
  text-align: left;
}
.ls-otava-jez-row-desc {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.ls-otava-jez-thumb {
  height: 70px;
  background: var(--ls-off);
  border-radius: var(--ls-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.ls-otava-jez-thumb img {
  max-width: 100%;
  max-height: 70px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}
@media (max-width: 767px) {
  .ls-otava-jez-thumb {
    height: auto;
    width: 100%;
    aspect-ratio: 1;
  }
  .ls-otava-jez-thumb img {
    width: 100%;
    height: 100%;
    max-height: none;
    object-fit: cover;
  }
}
.ls-otava-jez-modal-header {
  border-bottom: 1px solid var(--ls-border);
}
.ls-otava-jez-modal-meta {
  margin-top: 2px;
}
.ls-otava-jez-modal-img-wrap {
  background: var(--ls-off);
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ls-otava-jez-modal-img {
  display: block;
  max-width: 100%;
  max-height: min(60vh, 480px);
  width: auto;
  height: auto;
  object-fit: contain;
}
.ls-otava-jez-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  background: rgba(255,255,255,.92);
  color: var(--ls-blue-dark);
  font-size: 24px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--ls-shadow);
  cursor: pointer;
  padding: 0;
}
.ls-otava-jez-nav:hover {
  background: #fff;
  color: var(--ls-blue);
}
.ls-otava-jez-nav--prev {
  left: 12px;
}
.ls-otava-jez-nav--next {
  right: 12px;
}
.ls-otava-jez-nav:disabled {
  opacity: .35;
  cursor: default;
}

/* ─────  Maminky na vodě (V3)  ───── */
.ls-hero--maminky { background: var(--ls-footer-navy); }
.ls-hero--maminky .ls-hero-bg {
  background-image: url('/assets/img/otava/02-hero.jpg');
  background-position: center center;
  background-size: cover;
}
.ls-hero--maminky .ls-hero-overlay {
  background: linear-gradient(
    90deg,
    color-mix(in srgb, var(--ls-footer-navy) 82%, transparent) 0%,
    color-mix(in srgb, var(--ls-footer-navy) 45%, transparent) 55%,
    color-mix(in srgb, var(--ls-footer-navy) 15%, transparent) 100%
  );
}

/* ─────  Noční Otava (V3)  ───── */
.ls-hero--nocni { background: var(--ls-blue-deep); }
.ls-hero--nocni .ls-hero-bg {
  background-image: url('/assets/img/otava/11.jpg');
  background-position: center;
  background-size: cover;
  opacity: .35;
  filter: hue-rotate(190deg) brightness(.5);
}
.ls-hero--nocni .ls-hero-overlay {
  background: radial-gradient(ellipse at 30% 50%, rgba(212,154,26,.15) 0%, transparent 60%);
}

.ls-nocni-section { padding: 44px 0 30px; }
.ls-nocni-section--bottom { padding: 20px 0 50px; }

.ls-nocni-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.ls-nocni-card {
  background: #fff;
  border: 1px solid var(--ls-border);
  border-radius: 12px;
  padding: 18px 20px;
}
.ls-nocni-card-icon {
  font-size: var(--ls-text-2xl);
  line-height: 1;
  margin-bottom: 6px;
}
.ls-nocni-card-label {
  font-size: var(--ls-text-xs);
  font-weight: 700;
  color: var(--ls-muted);
  text-transform: uppercase;
  letter-spacing: .5px;
}
.ls-nocni-card-value {
  font-size: var(--ls-text-base);
  color: var(--ls-text);
  line-height: 1.55;
}
.ls-nocni-card--fact .ls-nocni-card-value {
  font-family: var(--ls-font-display);
  font-weight: 700;
  font-size: var(--ls-text-md);
  line-height: 1.3;
}
.ls-nocni-card--text .ls-nocni-card-label {
  font-family: var(--ls-font-display);
  font-weight: 700;
  font-size: var(--ls-text-base);
  text-transform: none;
  letter-spacing: -0.2px;
  color: var(--ls-text);
}

.ls-nocni-experience {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: start;
  padding: 30px 36px;
  background: var(--ls-blue-deep);
  border-radius: 14px;
  color: #fff;
}
.ls-nocni-experience-kicker { color: var(--ls-amber); margin-bottom: 8px; }
.ls-nocni-experience-text {
  font-size: var(--ls-text-md);
  color: rgba(255,255,255,.9);
  line-height: 1.65;
  margin: 0;
}
.ls-nocni-experience-title {
  font-family: var(--ls-font-display);
  font-weight: 800;
  font-size: var(--ls-text-xl);
  color: #fff;
}
.ls-nocni-schedule {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.ls-nocni-schedule li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.ls-nocni-schedule-t {
  flex: 0 0 52px;
  font-family: var(--ls-font-display);
  font-weight: 800;
  font-size: var(--ls-text-lg);
  color: var(--ls-amber);
}
.ls-nocni-schedule-d {
  font-size: var(--ls-text-sm);
  color: rgba(255,255,255,.85);
  line-height: 1.5;
  padding-top: 2px;
}

/* ─────  Brigáda  ───── */
.ls-brigada-intro {
  font-size: var(--ls-text-base);
  color: var(--ls-text);
  line-height: 1.7;
  opacity: .9;
  max-width: 820px;
  margin-bottom: 22px;
}
.ls-brigada-section { margin-top: 32px; scroll-margin-top: var(--ls-scroll-offset); }
.ls-brigada-p {
  font-size: var(--ls-text-base);
  color: var(--ls-text);
  line-height: 1.65;
  opacity: .88;
  margin: 12px 0 18px;
}
.ls-brigada-divider {
  height: 1px;
  background: var(--ls-border);
  border: 0;
  margin: 0 0 24px;
}

.ls-brigada-jobs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.ls-brigada-job {
  background: #fff;
  border: 1px solid var(--ls-border);
  border-radius: 12px;
  padding: 18px 20px;
}
.ls-brigada-job--lg { padding: 22px 24px; }
.ls-brigada-job-t { line-height: 1.15; }
.ls-brigada-job--lg .ls-brigada-job-t { font-size: var(--ls-text-xl); }
.ls-brigada-job-who {
  margin-top: 2px;
}

/* ── Trasy improvements ── */
.ls-trasy-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.ls-trasy-header .ls-section-eyebrow {
  margin-bottom: 8px;
}
.ls-trasy-header .ls-section-title {
  margin-bottom: 0;
}
.ls-trasy-header .ls-trasa-filters {
  margin-top: 16px;
  margin-bottom: 28px;
}
.ls-trasy-lead {
  font-size: var(--ls-text-base);
  color: var(--ls-muted);
  margin: 12px 0 0;
  line-height: 1.6;
}
.ls-trasa-name-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
}
.ls-trasa-warn {
  font-family: var(--ls-font-display);
  font-size: var(--ls-text-xs);
  font-weight: 800;
  color: #fff;
  background: var(--ls-danger);
  padding: 5px 11px;
  border-radius: 20px;
  letter-spacing: var(--ls-tracking-display);
  text-transform: uppercase;
}
.ls-trasa-desc {
  margin: 10px 0 14px;
  opacity: 0.9;
}
.ls-trasa-chips { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 16px; }
.ls-trasa-chips .ls-chip {
  background: var(--ls-off);
  color: var(--ls-muted);
  border: none;
  font-weight: 500;
  font-size: var(--ls-text-sm);
  padding: 5px 11px;
}
.ls-poradime {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  background: #fff;
  color: var(--ls-muted);
  border: 1px solid var(--ls-border);
  border-radius: 14px;
  padding: 20px;
  margin-top: 36px;
}
.ls-poradime-text { font-size: var(--ls-text-base); }
.ls-poradime-cta {
  padding: 10px 22px;
  font-size: var(--ls-text-sm);
  font-weight: 600;
  border-radius: 9px;
}

/* ── Responsive: homepage ── */
@media (max-width: 991px) {
  .ls-ships-usp { grid-template-columns: repeat(2, 1fr); }
  .ls-ships-usp-item:nth-child(2) { border-right: none; }
  .ls-ship-hero { grid-template-columns: 1fr; }
  .ls-ship-mid { grid-template-columns: 1fr; }
  .ls-ships-tier3 { grid-template-columns: 1fr 1fr; }
  .ls-footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .ls-footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 767px) {
  .ls-ships-usp { grid-template-columns: 1fr; }
  .ls-ships-usp-item { border-right: none; border-bottom: 1px solid var(--ls-border); padding-bottom: 12px; margin-bottom: 12px; }
  .ls-ships-usp-item:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
  .ls-ships-title { font-size: var(--ls-display-sm); }
  .ls-ships-tier2 { grid-template-columns: 1fr; }
  .ls-ships-tier3 { grid-template-columns: 1fr; }
  .ls-ships-summary {
    margin-top: 4px;
    min-height: auto;
    justify-content: flex-start;
  }
  .ls-ships-summary--active {
    box-shadow: 0 6px 18px rgba(15, 30, 60, 0.2);
  }
  .ls-ships-summary-cta { margin-top: 8px; }
  .ls-ships-summary-idle-hint { display: none; }
  .ls-ship-hero {
    border-radius: 14px;
    box-shadow: none;
    margin-bottom: 14px;
  }
  .ls-ship-hero-img,
  .ls-ship-mid-img,
  .ls-ship-small-img {
    height: 100px;
    min-height: 0;
    padding: 10px;
    justify-content: flex-start;
  }
  .ls-ships-section .ls-ship-hero-img .ls-ship-img,
  .ls-ships-section .ls-ship-mid-img .ls-ship-img,
  .ls-ships-section .ls-ship-small-img .ls-ship-img {
    max-height: 80px;
    object-position: left center;
  }
  .ls-ship-hero-tag,
  .ls-ship-mid-tag {
    top: 10px;
    left: auto;
    right: 10px;
    z-index: 2;
  }
  .ls-ship-hero-body { padding: 14px 16px; }
  .ls-ship-hero-top { gap: 10px; }
  .ls-ship-hero-actions { margin-top: 10px; gap: 8px; }
  .ls-ship-reserve-btn {
    font-size: var(--ls-text-sm);
    height: 40px;
    padding: 0 14px;
  }
  .ls-poradime { flex-direction: column; text-align: center; }
  .ls-footer-section { padding: 40px 0 32px; }
  .ls-footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .ls-footer-bar { flex-direction: column; align-items: flex-start; }
  .ls-akce-grid { grid-template-columns: 1fr; }
}

/* ── booking subtitle ── */
.ls-booking-sub {
  font-size: var(--ls-text-base);
  color: var(--ls-muted);
  margin: -8px 0 14px;
  line-height: 1.5;
}

.ls-booking-return {
  font-size: var(--ls-text-sm);
  font-weight: 500;
  color: var(--ls-muted);
  text-transform: none;
  letter-spacing: 0;
}

/* ── trasa info line (km · time) ── */
.ls-trasa-info {
  font-size: var(--ls-text-sm);
  font-weight: 500;
  color: var(--ls-muted);
  margin-top: 6px;
  line-height: 1.45;
}
.ls-brigada-job-what {
  font-size: var(--ls-text-base);
  color: var(--ls-text);
  margin-top: 10px;
  line-height: 1.5;
  opacity: .85;
  min-height: 60px;
}
.ls-brigada-job-pay {
  font-family: var(--ls-font-display);
  font-weight: 800;
  font-size: var(--ls-text-md);
  color: var(--ls-amber-dark);
}
.ls-brigada-job-subh {
  font-family: var(--ls-font-display);
  font-weight: 700;
  font-size: var(--ls-text-sm);
  color: var(--ls-text);
  letter-spacing: var(--ls-tracking-display);
  text-transform: uppercase;
  margin-bottom: 6px;
}
.ls-brigada-list {
  padding-left: 18px;
  font-size: var(--ls-text-sm);
  color: var(--ls-text);
  line-height: 1.6;
  opacity: .9;
  margin: 0;
}

.ls-brigada-perks {
  margin-top: 40px;
  background: var(--ls-blue-deep);
  border-radius: 14px;
  padding: 26px 30px;
  color: #fff;
  display: grid;
  grid-template-columns: 1.1fr 2fr;
  gap: 30px;
  align-items: center;
}
.ls-brigada-perks-kicker { color: var(--ls-amber); margin-bottom: 6px; }
.ls-brigada-perks-title {
  font-size: var(--ls-display-sm);
  line-height: 1.05;
  letter-spacing: -.5px;
}
.ls-brigada-perks-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 18px;
  padding: 0;
  margin: 0;
}
.ls-brigada-perks-list li {
  position: relative;
  padding-left: 18px;
  font-size: var(--ls-text-base);
  line-height: 1.45;
}
.ls-brigada-perks-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 6px;
  height: 6px;
  border-radius: 3px;
  background: var(--ls-amber);
}

/* Responsive — Maminky/Brigáda/Noční Otava layouts */
@media (max-width: 991px) {
  .ls-hero--photo {
    padding-block: 76px 48px;
    padding-inline: 12px;
  }
  .ls-hero--photo .ls-hero-inner.ls-hero-inner--inset {
    padding-left: 0;
    padding-right: 0;
  }
  .ls-hero--photo .ls-hero-title { font-size: var(--ls-display-xl); }
  .ls-nocni-cards { grid-template-columns: repeat(2, 1fr); }
  .ls-nocni-experience { grid-template-columns: 1fr; gap: 28px; }
  .ls-brigada-perks { grid-template-columns: 1fr; }
  .ls-side-cta,
  .ls-faq-aside,
  .ls-rez-summary { margin-top: 24px; }
  .ls-cenik-sidebar .ls-side-cta { margin-top: 14px; }
}
@media (max-width: 575px) {
  .ls-hero--photo {
    padding-block: 68px 40px;
    padding-inline: 12px;
  }
  .ls-hero--photo .ls-hero-title { font-size: var(--ls-display-lg); }
  .ls-nocni-cards { grid-template-columns: 1fr; }
  .ls-brigada-jobs { grid-template-columns: 1fr; }
  .ls-brigada-perks-list { grid-template-columns: 1fr; }
  .ls-seg { display: flex; flex-direction: column; }
  .ls-seg-item { width: 100%; flex-direction: row; gap: 6px; justify-content: flex-start; }
}
.section-primary .nav-pills a:hover { background: var(--ls-blue-dark); }

/* ============================================================
   ČASTÉ DOTAZY — akordeon (CMS HTML + faq-accordion.js)
   ============================================================ */
.ls-section--faq .ls-faq-root .section.section-top {
  padding-top: 0;
}
.ls-section--faq .ls-faq-root .col-md-12 > h1 {
  font-size: var(--ls-display-md);
  margin-bottom: 8px;
}
.ls-section--faq .ls-faq-root .col-md-12 > ul {
  margin: 0 0 28px;
  padding: 16px 20px;
  list-style: none;
  background: var(--ls-off);
  border-radius: var(--ls-radius);
  border: 1px solid var(--ls-border);
  columns: 2;
  column-gap: 28px;
}
.ls-section--faq .ls-faq-root .col-md-12 > ul li {
  break-inside: avoid;
  margin: 0 0 8px;
  font-size: var(--ls-text-base);
}
.ls-section--faq .ls-faq-root .col-md-12 > ul a {
  font-weight: 600;
}
@media (max-width: 640px) {
  .ls-section--faq .ls-faq-root .col-md-12 > ul {
    columns: 1;
  }
}

/* Bootstrap 3 panel-group — LS-9 vzhled */
.ls-faq-panel-group {
  margin-bottom: 0;
}
.ls-faq-panel-group .ls-faq-bs-panel {
  border-radius: var(--ls-radius);
  border-color: var(--ls-border);
  box-shadow: var(--ls-shadow-sm);
  margin-bottom: 10px;
  overflow: hidden;
  scroll-margin-top: var(--ls-scroll-offset);
}
.ls-faq-panel-group .ls-faq-bs-panel:target {
  box-shadow: 0 0 0 2px rgba(26, 109, 176, 0.35);
}
.ls-faq-panel-group .panel-heading {
  padding: 0;
  border-bottom: none;
  background: #fff;
}
.ls-faq-panel-group .panel-title {
  margin: 0;
  font-family: var(--ls-font-display);
  font-weight: 700;
  font-size: var(--ls-text-md);
}
.ls-faq-panel-group .panel-title > a {
  display: block;
  padding: 16px 18px;
  color: var(--ls-blue-dark);
  text-decoration: none;
  transition: background-color 0.15s;
}
.ls-faq-panel-group .panel-title > a:hover,
.ls-faq-panel-group .panel-title > a:focus {
  background: var(--ls-off);
  color: var(--ls-blue-dark);
  text-decoration: none;
}
.ls-faq-panel-group .panel-title > a:focus {
  outline: 2px solid var(--ls-blue);
  outline-offset: -2px;
}
.ls-faq-panel-group .panel-body {
  font-size: var(--ls-text-base);
  line-height: 1.6;
  color: var(--ls-text);
  border-top: 1px solid var(--ls-border);
  padding-top: 16px;
}
.ls-faq-panel-group .panel-body p,
.ls-faq-panel-group .panel-body ul {
  margin-top: 12px;
  margin-bottom: 12px;
}
.ls-faq-panel-group .panel-body h2 {
  margin: 0;
  font-size: inherit;
  font-weight: inherit;
  border: none;
  padding: 0;
}

/* Obchodní podmínky — legacy .section uvnitř ls-section, bez dvojitého odsazení */
.page-obchodni-podminky .ls-section > .container-xxl > .section {
  padding: 0;
}

/* ============================================================
   PRINT
   ============================================================ */
@media print {
  .ls-nav,
  .ls-footer-section,
  #cookie-consent-banner {
    display: none !important;
  }

  .ls-page-content {
    padding-top: 0 !important;
  }

  body {
    background: #fff !important;
    color: #000 !important;
  }

  .ls-section,
  .section {
    padding: 0 !important;
  }

  .well {
    box-shadow: none !important;
    border-color: var(--ls-border) !important;
  }

  h1, h2, h3 {
    page-break-after: avoid;
  }

  table {
    width: 100% !important;
    page-break-inside: avoid;
  }

  a {
    color: #000 !important;
    text-decoration: none !important;
  }

  a[href]::after {
    content: none !important;
  }

  .page-obchodni-podminky .ls-page-head {
    display: none !important;
  }
}
