/* =========================================================
   Půjčovna lodí Nisa — shared stylesheet, 1:1 dle Figmy
   ========================================================= */

/* ---------- icon system: Figma SVG via CSS mask ---------- */
.fig-ico {
  display: inline-block;
  width: 100%; height: 100%;
  background: currentColor;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
}
.fig-ico[data-fig="phone"]         { -webkit-mask-image: url("../assets/icon-phone.svg");         mask-image: url("../assets/icon-phone.svg"); }
.fig-ico[data-fig="mail"]          { -webkit-mask-image: url("../assets/icon-mail.svg");          mask-image: url("../assets/icon-mail.svg"); }
.fig-ico[data-fig="kayak"]         { -webkit-mask-image: url("../assets/icon-kayak.svg");         mask-image: url("../assets/icon-kayak.svg"); }
.fig-ico[data-fig="scooter"]       { -webkit-mask-image: url("../assets/icon-scooter.svg");       mask-image: url("../assets/icon-scooter.svg"); }
.fig-ico[data-fig="instagram"]     { -webkit-mask-image: url("../assets/icon-instagram.svg");     mask-image: url("../assets/icon-instagram.svg"); }
.fig-ico[data-fig="facebook"]      { -webkit-mask-image: url("../assets/icon-facebook.svg");      mask-image: url("../assets/icon-facebook.svg"); }
.fig-ico[data-fig="cookie"]        { -webkit-mask-image: url("../assets/icon-cookie.svg");        mask-image: url("../assets/icon-cookie.svg"); }
.fig-ico[data-fig="chevron-right"] { -webkit-mask-image: url("../assets/icon-chevron-right.svg"); mask-image: url("../assets/icon-chevron-right.svg"); }
.fig-ico[data-fig="footprints"]    { -webkit-mask-image: url("../assets/icon-footprints.svg");    mask-image: url("../assets/icon-footprints.svg"); }

/* containers that hold a fig-ico need an explicit size — set color = icon color */
[data-icon] { display: inline-flex; align-items: center; justify-content: center; }
[data-icon] > .fig-ico, [data-icon] > svg { width: 100%; height: 100%; }

/* ---------- 1. tokens ---------- */
:root {
  --c-text:       rgb(38,38,38);
  --c-text-2:     rgb(45,41,50);
  --c-text-soft:  rgb(112,112,112);
  --c-bg:         #ffffff;
  --c-bg-alt:     rgb(239,239,239);
  --c-bg-card:    rgb(243,240,237);
  --c-line:       rgb(219,219,219);
  --c-line-soft:  rgb(231,231,231);

  --c-orange-1:   rgb(250,160,28);
  --c-orange-2:   rgb(250,124,28);
  --c-accent:     rgb(255,211,88);

  --c-blue-1:     rgb(0,89,206);
  --c-blue-2:     rgb(0,65,150);

  --c-dark:       rgb(10,10,10);

  --radius:    22px;
  --radius-pill: 999px;

  --content: 1380px;
  --pad-x: 32px;

  --font: "Open Sans", system-ui, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

/* ---------- 2. reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.55;
  color: var(--c-text);
  background: #fff;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--c-orange-2); }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; padding: 0; }
input, select, textarea { font: inherit; color: inherit; }
ul { list-style: none; padding: 0; margin: 0; }
h1, h2, h3, h4 { margin: 0; font-style: italic; font-weight: 800; line-height: 1; color: var(--c-text); letter-spacing: -.005em; }

/* ---------- 3. utilities ---------- */
.wrap { max-width: var(--content); margin: 0 auto; padding: 0 var(--pad-x); position: relative; }
.accent { color: var(--c-orange-2); }

/* ---------- 4. buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 148px;
  height: 38px;
  padding: 0 22px;
  border-radius: var(--radius-pill);
  background: var(--c-accent);
  color: var(--c-text);
  font-weight: 800;
  font-style: italic;
  font-size: 16px;
  line-height: 1;
  transition: transform .15s ease, background .2s ease, box-shadow .2s ease;
  white-space: nowrap;
}
.btn:hover { background: rgb(253,201,68); transform: translateY(-1px); color: var(--c-text); box-shadow: 0 6px 18px rgba(250,124,28,.25); }
.btn:active { transform: translateY(0); }
.btn--lg { height: 52px; min-width: 202px; padding: 0 32px; font-size: 18px; }

/* ---------- 5. topbar ---------- */
.topbar {
  background: var(--c-bg-alt);
  font-size: 14px;
  color: var(--c-text);
  position: relative;
  z-index: 60;
}
.topbar-inner {
  display: flex; align-items: center; gap: 32px;
  height: 42px;
}
.topbar .note { font-style: italic; color: var(--c-text); margin-right: auto; }
.topbar a { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; }
.topbar a.email { color: var(--c-orange-2); font-style: italic; }
.topbar svg, .topbar [data-icon] { width: 16px; height: 16px; color: var(--c-text); display: inline-flex; }

/* ---------- 6. nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: #fff;
  border-bottom: 1px solid transparent;
  transition: box-shadow .25s ease, border-color .25s ease;
}
.nav.is-scrolled { box-shadow: 0 6px 24px rgba(0,0,0,.06); border-color: var(--c-line-soft); }
.nav-inner {
  display: flex; align-items: center; gap: 28px;
  height: 96px;
}
.brand { display: inline-flex; align-items: center; }
.brand-logo { width: 159px; height: 51px; }
.brand-logo img { width: 100%; height: 100%; display: block; }

.nav-list {
  display: flex; align-items: center; gap: 32px;
  margin-left: auto;
  font-size: 17px;
}
.nav-list a {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 36px 0;
  border-bottom: 2px solid transparent;
  color: var(--c-text);
}
.nav-list a:hover, .nav-list a.is-active { border-bottom-color: var(--c-orange-2); }
.nav-list .has-sub::after {
  content: "";
  width: 8px; height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translate(-3px,-3px);
  margin-left: 2px;
}
.nav .btn { margin-left: 8px; }

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  align-items: center; justify-content: center;
  margin-left: auto;
  /* #2357 P0-1: flex-shrink:0 chrání 44×44 hit area v úzké nav-inner flexboxu
     (jinak parent flex zmenšil button na 0px → unclickable). */
  flex-shrink: 0;
  background: transparent; border: 0; padding: 0; cursor: pointer;
}
.nav-toggle [data-icon] { display: inline-flex; width: 26px; height: 26px; }
.nav-toggle svg { width: 26px; height: 26px; color: var(--c-text); }

/* ---------- 7. HERO ---------- */
.hero {
  position: relative;
  isolation: isolate;
  margin-bottom: 0;
}
.hero-bg {
  position: absolute;
  inset: 0 -10vw auto -10vw;
  height: 562px;
  z-index: -1;
  overflow: hidden;
}
.hero-bg::before {
  content: "";
  position: absolute; inset: 0;
  background: url("../assets/hero.jpg") center / cover no-repeat;
  filter: blur(28px) saturate(.88);
  transform: scale(1.15);
}
.hero-bg::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,.4) 0%, rgba(255,255,255,0) 25%, rgba(255,255,255,0) 65%, rgba(255,255,255,1) 100%);
}

.hero-wrap { padding-top: 18px; }

.hero-card {
  position: relative;
  width: 100%;
  height: 460px;
  border-radius: var(--radius);
  overflow: hidden;
  background: url("../assets/hero.jpg") center / cover no-repeat;
  box-shadow: 0 30px 60px rgba(0,0,0,.18);
}
.hero-card::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.05) 0%, rgba(0,0,0,.18) 100%);
}
.hero-body {
  position: absolute; inset: 0;
  padding: 79px 102px;
  display: flex;
  flex-direction: column;
  color: #fff;
  z-index: 1;
}
.hero-body h1 {
  color: #fff;
  font-size: clamp(56px, 7vw, 100px);
  line-height: 1;
  text-shadow: 0 4px 24px rgba(0,0,0,.55), 0 2px 4px rgba(0,0,0,.45);
  max-width: 920px;
}
.hero-body .lead {
  font-size: clamp(20px, 1.8vw, 26px);
  font-style: normal; font-weight: 400;
  margin: 14px 0 26px;
  text-shadow: 0 2px 12px rgba(0,0,0,.55);
}
.hero-body .btn { align-self: flex-start; }

/* ---------- 8. intro + rezv card (overlapping) ---------- */
.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 519px;
  gap: 0 60px;
  align-items: start;
}
.intro {
  padding-top: 55px;
  max-width: 720px;
}
.intro h2 {
  font-size: clamp(34px, 3.6vw, 50px);
  line-height: 1.05;
  /* #2396 N1: 14ch byla příliš úzká pro "Zažijte 3 země EU" (17 chars) — wrap před EU.
     18ch udrží 1. řádek na jednom + zachová <br> wrap pro "za jeden den" = 2 řádky @1920. */
  max-width: 18ch;
  margin-bottom: 28px;
}
.intro h2 .accent { color: var(--c-orange-2); font-style: italic; font-weight: 800; }
.intro p {
  font-weight: 700; font-style: italic; font-size: 17px;
  line-height: 28px; letter-spacing: .02em;
  max-width: 640px;
  margin: 0 0 14px;
}
.intro strong { font-weight: 800; font-style: italic; }
.intro em { font-style: italic; }

/* #2409 D3: intro-side obsahuje už jen rezv widget (intro-photos přesunuty do plně-šířkové
   .intro-photos-strip pod intro section). Pre-#2409 #2396 P1-2 stack 2-fotky byl drift. */
.intro-side {
  display: flex;
  flex-direction: column;
  gap: 28px;
  justify-self: end;
  width: 519px;
}
.intro-side .rezv { width: 100%; justify-self: stretch; }

/* #2409 D3: plně-šířková řada 3 fotek pod intro paragraph (match reference 3v_HP_desktop.png). */
.intro-photos-strip {
  margin-top: 56px;
}
.intro-photos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.intro-photo {
  position: relative;
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 1 / 1;
  box-shadow: 0 12px 24px rgba(0,0,0,.10);
  text-decoration: none;
}
.intro-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .35s ease;
}
.intro-photo:hover img { transform: scale(1.04); }
.intro-photo-caption {
  position: absolute;
  left: 14px; right: 14px; bottom: 12px;
  color: #fff;
  font-weight: 800; font-style: italic;
  font-size: 17px; line-height: 1.2;
  text-shadow: 0 2px 6px rgba(0,0,0,.55);
}

.rezv {
  width: 519px;
  margin-top: -48px;     /* overlap hero card by 48px from bottom */
  background: var(--c-bg-card);
  border-radius: var(--radius);
  padding: 28px 30px 26px;
  box-shadow: 0 18px 36px rgba(0,0,0,.10);
  position: relative;
  z-index: 3;
  justify-self: end;
}
.rezv h3 {
  font-size: 24px;
  font-style: italic; font-weight: 700;
  line-height: 1.15;
  margin: 0 0 24px;
  color: var(--c-text);
}
.rezv h3 em { font-weight: 800; font-style: italic; }

.rezv .field {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 22px;
}
.rezv .pin { width: 28px; height: 28px; color: var(--c-text); flex-shrink: 0; display: inline-flex; }
.rezv .pin svg { width: 100%; height: 100%; }
.rezv .field label {
  font-style: italic; font-weight: 800; font-size: 15px;
  color: rgb(52,35,19); width: 56px; text-align: right;
}
.rezv .field select {
  flex: 1; height: 38px;
  padding: 0 36px 0 18px;
  border-radius: 38px;
  border: 1px solid var(--c-line);
  background: #fff url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'><path d='M1 1.5l5 5 5-5' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/></svg>") no-repeat right 14px center;
  font-style: italic; font-size: 15px; color: var(--c-text);
  appearance: none; -webkit-appearance: none;
}

.rezv-cta {
  /* #2357 P0-2/P0-4: auto-flow grid (původně 5 fixní sloupce) — compact varianta bez pictogramů.
     Pictogramy v `.picto` jsou auto-sized 40px, button stretch přes 1fr. */
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(40px, max-content)) 1fr repeat(auto-fit, minmax(40px, max-content));
  grid-auto-flow: column;
  gap: 16px;
  align-items: center;
  margin: 16px 0 24px;
}
.rezv.is-compact .rezv-cta { grid-template-columns: 1fr; }
.rezv-cta .picto { color: var(--c-orange-2); display: inline-flex; width: 40px; height: 40px; }
.rezv-cta .picto svg, .rezv-cta .picto .fig-ico { width: 40px; height: 40px; }
.rezv-cta .btn { width: 100%; min-width: 0; }

/* #2357 P0-2/P0-4: .rezv-form wrapper (anchor list → form+select refactor). Submit ploše posílá GET ?trasa=… */
.rezv-form { margin: 0 0 16px; }
.rezv-form .rezv-field {
  display: grid; grid-template-columns: 28px 1fr; gap: 12px; align-items: center;
  background: rgb(228,227,227);
  padding: 10px 18px;
  border-radius: 48px;
  margin-bottom: 16px;
}
.rezv-form .rezv-field .pin { width: 28px; height: 28px; color: var(--c-text); flex-shrink: 0; display: inline-flex; }
.rezv-form .rezv-field .pin svg { width: 100%; height: 100%; }
.rezv-form .rezv-field select {
  width: 100%;
  height: 38px;
  padding: 0 36px 0 18px;
  border-radius: 38px;
  border: 1px solid var(--c-line);
  background: #fff url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'><path d='M1 1.5l5 5 5-5' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/></svg>") no-repeat right 14px center;
  font-style: italic; font-size: 15px; color: var(--c-text);
  appearance: none; -webkit-appearance: none;
  cursor: pointer;
}
.rezv-form .rezv-cta { margin: 0; }
.rezv.is-compact { width: 100%; max-width: 460px; margin-top: 0; padding: 22px 24px; }
.rezv.is-compact h3 { font-size: 20px; margin-bottom: 14px; }

.rezv-contact {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 6px 24px;
  align-items: center;
  font-size: 15px;
  padding-top: 18px;
  border-top: 1px solid rgba(0,0,0,.08);
}
.rezv-contact .label { font-style: italic; font-weight: 800; font-size: 17px; line-height: 1.3; }
.rezv-contact .lines { display: flex; flex-direction: column; gap: 6px; }
.rezv-contact a { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; }
.rezv-contact a.email { color: var(--c-orange-2); }
.rezv-contact svg, .rezv-contact [data-icon] { width: 16px; height: 16px; color: var(--c-text); flex-shrink: 0; display: inline-flex; }

/* ---------- 9. wavy gray band ---------- */
.wavy-band {
  position: relative;
  margin-top: 64px;
  padding: 60px 0 80px;
  isolation: isolate;
}
.wavy-band::before {
  content: "";
  position: absolute;
  inset: 0 -8vw;
  background: var(--c-bg-alt);
  -webkit-mask:
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 2200 700' preserveAspectRatio='none'><path d='M 0 180 C 620 460 1200 90 2200 110 L 2200 530 C 1500 700 800 470 0 600 Z' fill='black'/></svg>")
    no-repeat center / 100% 100%;
          mask:
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 2200 700' preserveAspectRatio='none'><path d='M 0 180 C 620 460 1200 90 2200 110 L 2200 530 C 1500 700 800 470 0 600 Z' fill='black'/></svg>")
    no-repeat center / 100% 100%;
  z-index: -1;
}

/* ---------- 10. 4-card row ---------- */
.cards-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.card {
  position: relative;
  height: 502px;
  border-radius: var(--radius);
  overflow: hidden;
  background: #2b2b2b;
  isolation: isolate;
}
.card .bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
}
.card.is-banner::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,10,10,0) 30%, rgba(10,10,10,1) 100%);
}
.card.is-banner .content {
  position: absolute; left: 26px; right: 26px; bottom: 26px;
  color: rgb(237,237,237);
  z-index: 1;
}
.card.is-banner h3 {
  color: rgb(237,237,237);
  font-size: 20px;
  line-height: 1.2;
  margin: 0 0 22px;
}
.card.is-banner .btn { min-width: 148px; }

/* hours card (white frosted) */
.card.is-hours {
  background:
    linear-gradient(rgba(255,255,255,.78),rgba(255,255,255,.78)),
    url("../assets/card-lode-koloezky.png") center / cover no-repeat;
  color: var(--c-text);
}
.card.is-hours .content {
  position: absolute; left: 27px; right: 27px; top: 23px; bottom: 23px;
  display: flex; flex-direction: column;
}
.card.is-hours .head {
  display: flex; gap: 14px; align-items: center;
  margin-bottom: 14px;
}
.card.is-hours .head svg, .card.is-hours .head [data-icon] { width: 37px; height: 40px; color: var(--c-text); display: inline-flex; }
.card.is-hours h3 {
  font-size: 24px; font-style: italic; font-weight: 800;
  color: var(--c-text);
}
.card.is-hours .squiggle {
  height: 21px;
  margin: 0 0 18px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 263 21' fill='none'><path d='M2 11 C 30 -3 60 25 90 11 C 120 -3 150 25 180 11 C 210 -3 240 25 261 11' stroke='%23fa7c1c' stroke-width='2.5' stroke-linecap='round'/></svg>") no-repeat left center / 263px auto;
}
.card.is-hours .body { font-size: 17px; line-height: 26px; color: var(--c-text); }
.card.is-hours .body p { margin: 0 0 14px; }
.card.is-hours .body strong { font-weight: 700; }
.card.is-hours .footer-icons {
  display: flex; gap: 28px;
  margin-top: auto;
  color: var(--c-orange-2);
}
.card.is-hours .footer-icons svg, .card.is-hours .footer-icons [data-icon] { width: 42px; height: 42px; display: inline-flex; }

/* map card */
.card.is-map { background: #e8eef3; }
.card.is-map iframe { width: 100%; height: 100%; border: 0; display: block; }

/* ---------- 11. text-split (paragraph + h2) ---------- */
.text-split {
  display: grid;
  grid-template-columns: minmax(0, 640px) minmax(0, 1fr);
  gap: 186px;
  padding: 88px 0 0;
}
.text-split p {
  font-weight: 700; font-style: italic; font-size: 17px;
  line-height: 28px; letter-spacing: .02em;
  margin: 0 0 16px;
}
.text-split p:last-child { margin-bottom: 0; }
.text-split p strong { font-weight: 800; }
.text-split h2 {
  font-size: clamp(34px, 3.6vw, 50px);
  line-height: 1.05;
}

/* ---------- 12. wide banner ---------- */
.banner-wide {
  position: relative;
  margin-top: 72px;
  height: 390px;
  border-radius: var(--radius);
  overflow: hidden;
  color: #fff;
  isolation: isolate;
  background:
    linear-gradient(90deg, rgba(10,10,10,1) 0%, rgba(10,10,10,.78) 32%, rgba(10,10,10,0) 62%),
    var(--bg-url, none) center / cover no-repeat;
  background-color: var(--c-dark);
}
.banner-wide .content {
  position: relative; z-index: 1;
  padding: 75px 100px;
  max-width: 600px;
}
.banner-wide h2 {
  color: #fff;
  font-size: 32px;
  line-height: 1.2;
  margin: 0 0 24px;
}
.banner-wide h2 .hl { color: var(--c-accent); font-style: italic; }
.banner-wide p {
  font-size: 16px; line-height: 28px;
  margin: 0 0 30px;
  max-width: 38ch;
  color: rgba(255,255,255,.92);
  font-style: normal; font-weight: 400;
}

/* ---------- 13. two banner row ---------- */
.banner-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 28px;
}
.banner-row .banner-wide { margin-top: 0; height: 390px; }
.banner-row .banner-wide .content { padding: 64px 56px; max-width: 100%; }

/* blue banner (trasy) */
.banner-wide.is-blue {
  background:
    linear-gradient(135deg, rgba(0,89,206,.65) 0%, rgba(0,65,150,.92) 100%),
    var(--bg-url, none) center / cover no-repeat;
  background-color: var(--c-blue-2);
}
.banner-wide.is-blue h2 { font-size: 32px; line-height: 1.2; max-width: 22ch; }
.banner-wide.is-blue .deco { position: absolute; inset: 0; pointer-events: none; z-index: 0; color: rgba(255,255,255,.85); }
.banner-wide.is-blue .deco svg { position: absolute; }

/* dark FAQ banner */
.banner-wide.is-dark {
  background: var(--c-text);
}
.banner-wide.is-dark h2 .hl { color: var(--c-orange-2); }
.banner-wide.is-dark h2 { margin-bottom: 22px; font-size: 28px; line-height: 1.2; }

.floating {
  position: absolute;
  color: rgba(255,255,255,.92);
  pointer-events: none;
  z-index: 1;
  display: inline-flex;
}
.floating svg, .floating .fig-ico { width: 100%; height: 100%; }

/* footprints + wavy line decorations on blue banner */
.footprints {
  position: absolute;
  display: flex;
  gap: 16px;
  z-index: 1;
  pointer-events: none;
  color: rgba(255,255,255,.92);
}
.footprints span, .footprints svg { width: 24px; height: 30px; display: inline-flex; }
.footprints.is-1 { right: 200px; bottom: 50px; transform: rotate(15deg); }
.footprints.is-2 { right: 60px;  bottom: 30px; transform: rotate(-8deg); }
.curve-deco {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  color: rgba(255,255,255,.55);
}
.curve-deco svg { width: 100%; height: 100%; display: block; }

/* FAQ static list */
.faq-list { display: flex; flex-direction: column; gap: 14px; margin: 0 0 24px; }
.faq-item .q {
  font-weight: 800; font-style: italic; font-size: 15px;
  color: #fff; line-height: 1.4;
  margin: 0 0 4px;
}
.faq-item .a {
  font-weight: 400; font-style: normal; font-size: 13px;
  color: rgba(255,255,255,.65); line-height: 1.45;
  margin: 0;
}

/* ---------- 14. instagram ---------- */
.insta { margin-top: 64px; }
.insta-head {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 16px;
  padding-left: 4px;
  font-weight: 700; font-size: 15px;
}
.insta-head .ig {
  width: 40px; height: 40px;
  color: var(--c-dark);
  display: inline-flex; align-items: center; justify-content: center;
}
.insta-head .ig svg, .insta-head .ig .fig-ico { width: 100%; height: 100%; }
.insta-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}
.insta-grid a {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: 8px;
  overflow: hidden;
  background: var(--c-bg-alt);
  display: block;
}
.insta-grid a img { width: 100%; height: 100%; object-fit: cover; display: block; }
.insta-grid a::after {
  content: "";
  position: absolute; inset: 0;
  background: rgba(0,0,0,.35) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='28' height='28' viewBox='0 0 24 24' fill='white'><path d='M7 2C4.243 2 2 4.243 2 7v10c0 2.757 2.243 5 5 5h10c2.757 0 5-2.243 5-5V7c0-2.757-2.243-5-5-5H7zm12 4a1 1 0 1 1 0 2 1 1 0 0 1 0-2zm-7 1.5a4.5 4.5 0 1 1 0 9 4.5 4.5 0 0 1 0-9zm0 2A2.5 2.5 0 1 0 12 14.5 2.5 2.5 0 0 0 12 9.5z'/></svg>") no-repeat center / 28px;
  opacity: 0; transition: opacity .2s ease;
}
.insta-grid a:hover::after { opacity: 1; }

/* ---------- 15. footer ---------- */
.footer {
  position: relative;
  margin-top: 240px;
  background: var(--c-bg-alt);
  color: var(--c-text);
  padding: 30px 0 48px;
}
.footer::before {
  content: "";
  position: absolute;
  left: 0; right: 0;
  top: -240px;
  height: 240px;
  background: var(--c-bg-alt);
  -webkit-mask:
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1920 312' preserveAspectRatio='none'><path d='M 0 143 C 887 312 1573 132 1920 0 L 1920 312 L 0 312 Z' fill='black'/></svg>")
    no-repeat center bottom / 100% 100%;
          mask:
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1920 312' preserveAspectRatio='none'><path d='M 0 143 C 887 312 1573 132 1920 0 L 1920 312 L 0 312 Z' fill='black'/></svg>")
    no-repeat center bottom / 100% 100%;
  pointer-events: none;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.footer-grid h4 {
  font-style: italic; font-weight: 800; font-size: 15px;
  margin: 0 0 12px;
  letter-spacing: .02em;
  text-transform: uppercase;
}
.footer-grid h4 + h4 { margin-top: 22px; }
.footer-grid ul li { padding: 3px 0; font-weight: 700; font-size: 15px; line-height: 24px; }
.footer-grid ul li.active::before {
  content: ">";
  display: inline-block; width: 14px;
  margin-right: 4px;
  color: var(--c-text);
}
.footer .brand { margin-bottom: 26px; }
.footer-meta { font-size: 15px; line-height: 24px; color: var(--c-text); }
.footer-meta p { margin: 0 0 14px; }
.footer-meta strong { font-style: italic; font-weight: 800; }
.footer-contact { margin-top: 18px; display: flex; flex-direction: column; gap: 8px; font-size: 15px; }
.footer-contact a { display: inline-flex; gap: 10px; align-items: center; font-weight: 700; }
.footer-contact svg, .footer-contact [data-icon] { width: 18px; height: 18px; color: var(--c-text); flex-shrink: 0; display: inline-flex; }
.footer-social { display: flex; gap: 18px; margin-top: 28px; }
.footer-social a { color: var(--c-dark); width: 24px; height: 24px; display: inline-flex; align-items: center; justify-content: center; }
.footer-social svg, .footer-social [data-icon] { width: 24px; height: 24px; color: currentColor; display: inline-flex; }
.footer-cta .btn { margin-bottom: 22px; }

/* ---------- 16. trasy/kontakt page-title (simple centered h1) ---------- */
.page-title { text-align: center; padding: 78px 0 12px; }
.page-title h1 { font-size: clamp(56px, 7vw, 100px); }

/* ---------- 17. trasy page ---------- */
.route {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 324px;
  gap: 24px;
  margin: 64px 0;
  align-items: start;
}
.route h2 { font-size: clamp(34px, 3.6vw, 50px); line-height: 1.05; margin-bottom: 22px; max-width: 18ch; }
.route p { font-size: 17px; line-height: 28px; letter-spacing: .02em; margin: 0 0 18px; }
.route p strong { font-weight: 700; }
.route .map {
  width: 324px;
  aspect-ratio: 324 / 216;
  border-radius: var(--radius);
  background: url("../assets/img-route-map.png") center / cover no-repeat;
  box-shadow: 0 8px 24px rgba(0,0,0,.08);
}
.route .btn { margin-top: 16px; }

/* #2396 P1-3/P1-4: per-trasa timetable + photo grid uvnitř article — span obou sloupců.
   `.route` je 2-col grid; child sekce zabírají celou šířku přes column 1/-1. */
.route .route-timetable,
.route .route-photos { grid-column: 1 / -1; }
.route .route-timetable { margin: 12px 0 4px; }

.route-photos {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin: 18px 0 4px;
}
/* #2409 D4: shared 4-foto galerie pod mid-booking widgetem (standalone, mimo .route grid). */
.trasy-shared-gallery {
  margin: 48px 0 24px;
}
.route-photo {
  display: block;
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0,0,0,.08);
}
.route-photo img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform .35s ease;
}
.route-photo:hover img { transform: scale(1.04); }

.timetable {
  margin: 30px 0;
  background: var(--c-bg-alt);
  border-radius: var(--radius);
  padding: 26px 30px;
}
.timetable h4 { font-style: italic; font-weight: 800; font-size: 22px; margin: 0 0 14px; }
.timetable .row {
  display: grid; grid-template-columns: 110px 1fr;
  gap: 18px; padding: 12px 0;
  border-top: 1px solid #e0e0e0;
  align-items: center;
}
.timetable .row:first-of-type { border-top: 0; }
.timetable .row .label { font-weight: 700; font-size: 15px; }
.timetable .grid {
  display: grid; grid-template-columns: repeat(6, 1fr);
  gap: 4px 12px; font-variant-numeric: tabular-nums; font-size: 14px;
}
.timetable .grid .cell { padding: 8px 6px; }
.timetable .grid .cell.hl {
  background: var(--c-accent);
  border-radius: 6px;
  font-weight: 800; text-align: center;
}
.note-small { font-size: 14px; line-height: 22px; color: var(--c-text-soft); font-style: italic; margin: 16px 0; }

/* ---------- 17.b O půjčovně standalone page (#2396 P1-6) ---------- */
.about-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 48px;
  margin: 48px 0 72px;
  align-items: start;
}
.about-text h2 { font-size: clamp(34px, 3.6vw, 50px); line-height: 1.05; margin: 0 0 24px; max-width: 18ch; }
.about-text h2 .accent { color: var(--c-orange-2); font-style: italic; font-weight: 800; }
.about-text p { font-size: 17px; line-height: 28px; margin: 0 0 16px; }
.about-text strong { font-weight: 800; }

.about-founder {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 40px;
  margin: 64px 0;
  align-items: center;
  background: var(--c-bg-alt);
  border-radius: var(--radius);
  padding: 36px 40px;
}
.about-founder-photo {
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  box-shadow: 0 12px 28px rgba(0,0,0,.10);
}
.about-founder-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.about-founder-text blockquote {
  font-size: 22px; line-height: 1.4; font-style: italic; margin: 0 0 16px;
}
.about-founder-meta { font-size: 16px; margin: 0; }

.about-cta {
  text-align: center;
  margin: 64px 0 96px;
  padding: 48px 24px;
  background: var(--c-accent-soft, #fff5e6);
  border-radius: var(--radius);
}
.about-cta h2 { font-size: clamp(28px, 3vw, 40px); margin: 0 0 16px; }
.about-cta p { font-size: 17px; margin: 0 0 24px; }
.about-cta .btn + .btn { margin-left: 12px; }

@media (max-width: 980px) {
  .about-intro { grid-template-columns: 1fr; gap: 32px; }
  .about-founder { grid-template-columns: 1fr; gap: 24px; padding: 28px 24px; }
  .about-founder-photo { max-width: 320px; }
}

/* ---------- 18. kontakt page ---------- */
.kontakt-grid {
  display: grid;
  grid-template-columns: minmax(0, 596px) minmax(0, 676px);
  gap: 100px;
  margin: 60px 0;
  align-items: start;
}
.kontakt-info h2 { font-size: clamp(34px, 3.5vw, 48px); margin-bottom: 36px; }
.kontakt-row {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 12px 0;
  font-size: 16px; line-height: 1.55;
}
.kontakt-row svg, .kontakt-row [data-icon] { width: 22px; height: 22px; margin-top: 2px; color: var(--c-text); flex-shrink: 0; display: inline-flex; }
.kontakt-row strong { font-style: italic; font-weight: 800; }
.kontakt-row a { font-weight: 700; }
.kontakt-row a.email { color: var(--c-orange-2); font-style: italic; }
.kontakt-row .meta { color: var(--c-text-soft); font-size: 14px; }
.kontakt-meta { margin-top: 48px; font-size: 16px; line-height: 28px; max-width: 596px; }
.kontakt-meta h3 { font-style: italic; font-weight: 800; font-size: 22px; margin: 0 0 14px; }
.kontakt-meta strong { font-style: italic; font-weight: 800; }
.kontakt-meta p { margin: 0 0 8px; }
.kontakt-photos { display: grid; grid-template-rows: 451px 451px; gap: 38px; }
.kontakt-photos .photo {
  width: 100%; height: 100%;
  border-radius: var(--radius);
  background-size: cover; background-position: center;
  box-shadow: 0 8px 24px rgba(0,0,0,.08);
}
/* #2357 P1-8: Google Map iframe v kontakt sidebar — matches .photo dimensions ve 2-row gridu. */
.kontakt-photos .kontakt-map {
  width: 100%; height: 100%;
  border: 0;
  border-radius: var(--radius);
  box-shadow: 0 8px 24px rgba(0,0,0,.08);
  background: #f0f0f0;
  display: block;
}

/* ---------- 19. rezervace page ---------- */
.rezv-page {
  display: grid;
  grid-template-columns: minmax(0, 540px) minmax(0, 1fr);
  gap: 60px;
  margin: 56px 0;
  align-items: start;
}
.rezv-builder {
  background: var(--c-bg-card);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: 0 8px 24px rgba(0,0,0,.08);
}
.rezv-builder h2 {
  font-size: 24px; margin: 0 0 22px; line-height: 1.1;
}
.rezv-field {
  display: grid; grid-template-columns: 28px 70px 1fr; gap: 12px; align-items: center;
  background: rgb(228,227,227);
  padding: 13px 18px;
  border-radius: 48px;
  margin-bottom: 8px;
}
.rezv-field svg { color: var(--c-text); width: 24px; height: 24px; }
.rezv-field label { font-style: italic; font-weight: 800; font-size: 15px; }
.rezv-field select, .rezv-field input {
  height: 38px; border-radius: 38px;
  border: 1px solid var(--c-line);
  background: #fff; padding: 0 18px;
  font-style: italic; font-size: 15px;
  appearance: none; -webkit-appearance: none;
}
.rezv-field.is-row { grid-template-columns: 28px 70px repeat(4, 1fr); gap: 8px; }
.rezv-field.is-row input { padding: 0 12px; }

.rezv-cart { background: var(--c-bg-alt); border-radius: var(--radius); padding: 18px 24px; margin: 16px 0; }
.rezv-item {
  display: grid; grid-template-columns: 1fr auto auto;
  gap: 18px; align-items: center;
  padding: 14px 0; border-bottom: 1px solid #e0e0e0; font-size: 15px;
}
.rezv-item:last-child { border-bottom: 0; }
.rezv-item .name { font-weight: 700; }
.rezv-item .stock { color: var(--c-orange-2); font-weight: 700; font-size: 13px; }
.rezv-item input[type=number] {
  width: 68px; height: 38px;
  border-radius: 38px; border: 1px solid var(--c-line);
  background: #fff; padding: 0 12px;
  text-align: center;
}

.rezv-side h2 { font-size: clamp(32px, 2.5vw, 40px); margin-bottom: 16px; }
.rezv-side p { font-size: 17px; line-height: 28px; letter-spacing: .02em; font-style: italic; font-weight: 700; margin: 0 0 22px; }
.price-table { background: var(--c-bg-alt); border-radius: var(--radius); padding: 22px 24px; }
.price-row { display: flex; justify-content: space-between; gap: 16px; padding: 12px 0; border-top: 1px solid #e0e0e0; font-size: 15px; }
.price-row:first-of-type { border-top: 0; }
.price-row strong { font-weight: 800; }

/* ---------- 20. responsive ---------- */
@media (max-width: 1280px) {
  :root { --pad-x: 28px; }
  .intro-grid { grid-template-columns: 1fr 460px; gap: 0 40px; }
  .intro-side { width: 460px; }
  .rezv { width: 460px; margin-top: -480px; padding: 22px 22px; }
  .rezv h3 { font-size: 22px; margin-bottom: 18px; }
  .nav-list { gap: 22px; font-size: 16px; }
  .nav-list a { padding: 28px 0; }
  .text-split { gap: 80px; }
  .banner-wide .content { padding: 56px 64px; }
}

@media (max-width: 1080px) {
  :root { --pad-x: 24px; }
  .topbar .note { display: none; }
  /* #2357 P0-1: snížit nav-inner gap @ mobile aby logo + Rezervace btn + burger se vešly bez squash */
  .nav-inner { height: 80px; gap: 14px; }
  .brand-logo { width: 120px; height: 39px; }
  .nav-toggle { display: inline-flex; }
  .nav-list {
    display: none;
    position: fixed; inset: 80px 0 auto 0;
    background: #fff;
    flex-direction: column; align-items: stretch;
    gap: 0; padding: 12px 0;
    border-bottom: 1px solid var(--c-line-soft);
    box-shadow: 0 12px 30px rgba(0,0,0,.08);
    max-height: calc(100vh - 80px); overflow-y: auto;
  }
  .nav.is-open .nav-list { display: flex; }
  .nav-list a { padding: 14px 24px; border-bottom: 1px solid var(--c-line-soft); }
  .nav-list .has-sub::after { margin-left: auto; }
  .nav .btn { margin: 12px 24px 8px; }

  .hero-card { height: 380px; }
  .hero-body { padding: 48px 48px; }

  .intro-grid { grid-template-columns: 1fr; gap: 32px; }
  .intro-side { width: 100%; max-width: 519px; justify-self: stretch; }
  .rezv { width: 100%; max-width: 519px; margin-top: 0; justify-self: stretch; }

  .wavy-band { padding: 56px 0 60px; }
  .cards-4 { grid-template-columns: 1fr 1fr; }
  .card { height: 420px; }

  /* #2409 D3: intro-photos řada se zmenší ze 3 sloupců na 2 + zmenší se gap. */
  .intro-photos { grid-template-columns: 1fr 1fr; gap: 16px; }
  .intro-photos-strip { margin-top: 36px; }

  .text-split { grid-template-columns: 1fr; gap: 28px; padding-top: 64px; }
  .banner-wide .content { padding: 48px 36px; }
  .banner-row { grid-template-columns: 1fr; }

  .kontakt-grid { grid-template-columns: 1fr; gap: 48px; }
  .kontakt-photos { grid-template-rows: auto auto; }
  .kontakt-photos .photo { aspect-ratio: 16 / 10; height: auto; }

  .rezv-page { grid-template-columns: 1fr; gap: 48px; }
  .route { grid-template-columns: 1fr; gap: 28px; }
  .route .map { width: 100%; max-width: 480px; aspect-ratio: 16/9; }
  /* #2396 P1-4: route photo grid 2-col na tabletu, 1-col na mobilu (přes .cards-4 inheritance níže) */
  .route-photos { grid-template-columns: repeat(2, 1fr); }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px 32px; }
  .footer-cta { grid-column: 1 / -1; }

  .insta-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 640px) {
  .hero-body { padding: 32px 28px; }
  .hero-card { height: 320px; }
  .hero-body h1 { font-size: 44px; }
  .cards-4 { grid-template-columns: 1fr; }
  .card { height: 380px; }
  /* #2409 D3: pod 640px už 1 sloupec — 2 sloupce by ořezaly caption "Splavnost mapy Trojzemí". */
  .intro-photos { grid-template-columns: 1fr; gap: 14px; }
  .banner-wide, .banner-row .banner-wide { height: auto; }
  .banner-wide .content { padding: 36px 24px; max-width: 100%; }
  .footer-grid { grid-template-columns: 1fr; }
  .insta-grid { grid-template-columns: repeat(2, 1fr); }
  .timetable .grid { grid-template-columns: repeat(3, 1fr); }
  .rezv-field.is-row { grid-template-columns: 28px 70px 1fr 1fr; }
  .topbar-inner { gap: 16px; justify-content: center; font-size: 13px; }
}
