/* =========================================================
   Hotel Adler — prototyp
   Moderní horský web · Jizerské hory
   ========================================================= */

:root {
  /* paleta */
  --forest-900: #0d2116;
  --forest-800: #12301f;
  --forest-700: #1a4530;
  --forest-600: #235a3e;
  --moss:       #3a7d54;
  --sage:       #7fa987;
  --sand:       #f3ede2;
  --snow:       #fbfaf6;
  --ink:        #16241c;
  --wood:       #b9835a;
  --accent:     #d9793c;
  --accent-2:   #e6a24b;

  /* role */
  --bg:         #fbfaf6;
  --bg-tint:    #f0efe6;
  --surface:    #ffffff;
  --text:       #1c2a22;
  --text-muted: #4d5d52;
  --border:     #e4e2d6;
  --brand:      var(--forest-700);
  --brand-ink:  var(--forest-800);

  --radius:     18px;
  --radius-sm:  12px;
  --shadow:     0 18px 40px -24px rgba(13, 33, 22, .35);
  --shadow-lg:  0 40px 80px -40px rgba(13, 33, 22, .5);
  --maxw:       1160px;
  --ease:       cubic-bezier(.22, 1, .36, 1);

  --font-head:  "Fraunces", Georgia, "Times New Roman", serif;
  --font-body:  "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

/* ---- varianta: světle hnědá / dřevo ---- */
:root[data-palette="wood"] {
  --forest-900: #2b1d10;
  --forest-800: #3c2a18;
  --forest-700: #513820;
  --forest-600: #6d4c2b;
  --moss:       #9a6a34;
  --sage:       #cbab7d;
  --bg:         #f8f2e8;
  --bg-tint:    #efe3d1;
  --surface:    #fffdf8;
  --text:       #33271b;
  --text-muted: #6f5c46;
  --border:     #e8dcc7;
  --brand:      #8a5a2a;
  --brand-ink:  #5e3d1a;
  --accent:     #c6822f;
  --accent-2:   #dba758;
  --shadow:     0 18px 40px -24px rgba(60, 40, 20, .32);
  --shadow-lg:  0 40px 80px -40px rgba(60, 40, 20, .46);
}
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"])[data-palette="wood"] {
    --forest-900: #170f07;
    --forest-800: #22160b;
    --forest-700: #311f0f;
    --forest-600: #4a3016;
    --moss:       #c08c4e;
    --sage:       #d8bd93;
    --bg:         #191108;
    --bg-tint:    #22160c;
    --surface:    #271a0e;
    --text:       #f0e7d8;
    --text-muted: #c3ab8c;
    --border:     #3a2a17;
    --brand:      #d9a86a;
    --brand-ink:  #ecd0a6;
    --shadow:     0 18px 40px -24px rgba(0, 0, 0, .6);
    --shadow-lg:  0 40px 80px -40px rgba(0, 0, 0, .75);
  }
}

/* přepínač palety v navigaci */
.nav__palette {
  width: 40px; height: 40px; flex: 0 0 auto; margin-left: 2px;
  display: grid; place-items: center;
  border: 0; background: transparent; cursor: pointer; padding: 0;
}
.nav__palette-dot {
  width: 20px; height: 20px; border-radius: 50%;
  background: conic-gradient(from 215deg, #3a7d54 0 50%, #b9835a 50% 100%);
  box-shadow: inset 0 0 0 2px rgba(255,255,255,.9), 0 1px 4px rgba(0,0,0,.3);
  transition: transform .4s var(--ease);
}
.nav__palette:hover .nav__palette-dot { transform: rotate(180deg) scale(1.08); }

/* nápovědní bublina u přepínače palety */
.palette-wrap { position: relative; display: inline-flex; }
.coach {
  position: absolute; top: calc(100% + 16px); right: -4px; z-index: 200;
  width: max-content; max-width: 320px; text-align: left;
  background: var(--accent); color: #fff;
  font-size: 1.02rem; line-height: 1.45; font-weight: 600;
  padding: 1.05em 2.9em 1.05em 1.25em; border-radius: 16px;
  box-shadow: 0 16px 40px rgba(0,0,0,.32);
  animation: coachBob 2.2s ease-in-out infinite;
}
.coach__arrow {
  position: absolute; bottom: 100%; right: 22px;
  border: 12px solid transparent; border-bottom-color: var(--accent);
}
.coach__x {
  position: absolute; top: 7px; right: 7px;
  width: 28px; height: 28px; border: 0; border-radius: 50%;
  background: rgba(255,255,255,.22); color: #fff; cursor: pointer;
  font-size: .82rem; line-height: 1; display: grid; place-items: center;
}
.coach__x:hover { background: rgba(255,255,255,.4); }
.coach.is-hidden { display: none; }
@keyframes coachBob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-4px); } }
@media (prefers-reduced-motion: reduce) { .coach { animation: none; } }
@media (max-width: 594px) { .coach { max-width: 260px; right: -2px; font-size: .95rem; } }

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --bg:         #0e1a13;
    --bg-tint:    #12241a;
    --surface:    #16281d;
    --text:       #eaf0ea;
    --text-muted: #a7bcac;
    --border:     #23392b;
    --brand:      #6fce98;
    --brand-ink:  #bfe8cd;
    --shadow:     0 18px 40px -24px rgba(0, 0, 0, .6);
    --shadow-lg:  0 40px 80px -40px rgba(0, 0, 0, .75);
  }
}

/* ruční přepnutí na tmavý režim (přebije systémové nastavení) */
:root[data-theme="dark"] {
  --bg:#0e1a13; --bg-tint:#12241a; --surface:#16281d; --text:#eaf0ea; --text-muted:#a7bcac;
  --border:#23392b; --brand:#6fce98; --brand-ink:#bfe8cd;
  --shadow:0 18px 40px -24px rgba(0,0,0,.6); --shadow-lg:0 40px 80px -40px rgba(0,0,0,.75);
}
:root[data-theme="dark"][data-palette="wood"] {
  --forest-900:#170f07; --forest-800:#22160b; --forest-700:#311f0f; --forest-600:#4a3016;
  --moss:#c08c4e; --sage:#d8bd93; --bg:#191108; --bg-tint:#22160c; --surface:#271a0e;
  --text:#f0e7d8; --text-muted:#c3ab8c; --border:#3a2a17; --brand:#d9a86a; --brand-ink:#ecd0a6;
  --shadow:0 18px 40px -24px rgba(0,0,0,.6); --shadow-lg:0 40px 80px -40px rgba(0,0,0,.75);
}

/* přepínač světlá/tmavá v navigaci */
.nav__theme {
  width: 40px; height: 40px; flex: 0 0 auto; border: 0; background: transparent;
  cursor: pointer; display: grid; place-items: center; font-size: 1.15rem; padding: 0; line-height: 1;
}
.nav:not(.is-scrolled) .nav__theme { color: #fff; }
.nav.is-scrolled .nav__theme { color: var(--text); }

* { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 88px; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 48px);
}

/* ---------- typografie ---------- */
.h2 {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: clamp(1.9rem, 1.2rem + 2.6vw, 3.1rem);
  line-height: 1.08;
  letter-spacing: -.01em;
  margin: .2em 0 .5em;
  color: var(--brand-ink);
}
.h2--light { color: var(--snow); }

.eyebrow {
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--moss);
  margin: 0 0 .3em;
}
.eyebrow--light { color: var(--sage); }

.lead-muted {
  font-size: clamp(1.05rem, 1rem + .4vw, 1.22rem);
  color: var(--text-muted);
  max-width: 60ch;
  margin: 0 0 1.4em;
}
.lead-muted--light { color: #cfe0d4; }
.body { color: var(--text-muted); max-width: 62ch; }

/* ---------- tlačítka ---------- */
.btn {
  --btn-bg: var(--brand);
  --btn-fg: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5em;
  padding: .82em 1.5em;
  border-radius: 999px;
  font: 600 .98rem/1 var(--font-body);
  text-decoration: none;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .2s, color .2s;
  will-change: transform;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--primary { background: var(--btn-bg); color: var(--btn-fg); box-shadow: 0 12px 24px -12px rgba(26,69,48,.7); }
.btn--primary:hover { box-shadow: 0 18px 30px -12px rgba(26,69,48,.75); }
.btn--ghost { background: rgba(255,255,255,.12); color: #fff; border-color: rgba(255,255,255,.55); backdrop-filter: blur(4px); }
.btn--ghost:hover { background: rgba(255,255,255,.22); }
.btn--light { background: #fff; color: var(--forest-800); }
.btn--outline { background: transparent; color: var(--brand); border-color: var(--border); }
.btn--outline:hover { border-color: var(--brand); }
.btn--block { width: 100%; }

/* ---------- navigace ---------- */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  transition: background .3s, box-shadow .3s, padding .3s;
  padding: 10px 0;
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.nav.is-scrolled {
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: saturate(1.4) blur(12px);
  box-shadow: 0 1px 0 var(--border);
}

.brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; font-weight: 600; color: var(--text); }
.brand__mark { display: inline-flex; color: var(--moss); }
.brand__text { font-family: var(--font-head); font-size: 1.2rem; letter-spacing: -.01em; }
.brand__text strong { color: var(--brand); }
.nav:not(.is-scrolled) .brand,
.nav:not(.is-scrolled) .brand__mark { color: #fff; }
.nav:not(.is-scrolled) .brand__text strong { color: #fff; }

.nav__links { display: flex; align-items: center; gap: 6px; }
.nav__links a {
  text-decoration: none;
  font-weight: 500;
  font-size: .95rem;
  padding: .5em .85em;
  border-radius: 10px;
  color: inherit;
  transition: background .2s, color .2s;
}
.nav:not(.is-scrolled) .nav__links a { color: rgba(255,255,255,.9); }
.nav__links a:hover { background: color-mix(in srgb, var(--moss) 16%, transparent); }
.nav:not(.is-scrolled) .nav__links a:hover { background: rgba(255,255,255,.16); }
.nav__cta {
  background: var(--brand);
  color: #fff !important;
}
.nav__cta:hover { background: var(--forest-600); }
.nav:not(.is-scrolled) .nav__cta { background: var(--accent); }

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 44px; height: 44px;
  border: 0; background: transparent; cursor: pointer;
  padding: 10px;
}
.nav__toggle span {
  height: 2px; border-radius: 2px; background: currentColor;
  transition: transform .3s var(--ease), opacity .2s;
}
.nav:not(.is-scrolled) .nav__toggle { color: #fff; }
.nav.is-scrolled .nav__toggle { color: var(--text); }

/* ---------- hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
}
.hero__slides { position: absolute; inset: 0; z-index: 0; }
.hero__slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0; transition: opacity 1.6s var(--ease);
  transform: scale(1.04);
}
.hero__slide.is-active { opacity: 1; animation: heroZoom 9s ease-out forwards; }
@keyframes heroZoom { from { transform: scale(1.04); } to { transform: scale(1.12); } }
.hero__veil {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(180deg, rgba(12,26,17,.34) 0%, rgba(12,26,17,.15) 40%, rgba(12,26,17,.72) 100%),
    linear-gradient(90deg, rgba(12,26,17,.62) 0%, rgba(12,26,17,.12) 60%);
}

.hero__content { position: relative; z-index: 2; padding-top: 96px; padding-bottom: 120px; }
.hero__eyebrow {
  font-size: .82rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase;
  color: rgba(255,255,255,.85); margin: 0 0 18px;
}
.hero__title {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: clamp(2.4rem, 1.1rem + 5.4vw, 5rem);
  line-height: 1.02;
  letter-spacing: -.02em;
  margin: 0 0 .4em;
  text-wrap: balance;
  text-shadow: 0 2px 30px rgba(0,0,0,.28);
}
.hero__lead {
  font-size: clamp(1.05rem, 1rem + .5vw, 1.32rem);
  max-width: 54ch;
  color: rgba(255,255,255,.94);
  margin: 0 0 2em;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 3.4em; }

.hero__facts {
  display: flex; flex-wrap: wrap; gap: clamp(24px, 6vw, 72px);
  list-style: none; margin: 0; padding: 0;
}
.hero__facts li { display: flex; flex-direction: column; }
.hero__facts b { font-family: var(--font-head); font-size: clamp(1.6rem, 1rem + 2vw, 2.4rem); font-weight: 600; line-height: 1; }
.hero__facts span { font-size: .9rem; color: rgba(255,255,255,.8); margin-top: 6px; }

.hero__scroll {
  position: absolute; left: 50%; bottom: 26px; transform: translateX(-50%);
  z-index: 3; width: 26px; height: 42px; border: 2px solid rgba(255,255,255,.6);
  border-radius: 14px;
}
.hero__scroll span {
  position: absolute; left: 50%; top: 8px; width: 4px; height: 8px; border-radius: 2px;
  background: #fff; transform: translateX(-50%);
  animation: scrolldot 1.8s var(--ease) infinite;
}
@keyframes scrolldot { 0% { opacity: 0; top: 8px; } 40% { opacity: 1; } 100% { opacity: 0; top: 22px; } }

/* ---------- sekce ---------- */
.section { padding: clamp(64px, 9vw, 130px) 0; }
.section--tint { background: var(--bg-tint); }
.section--dark {
  background:
    radial-gradient(120% 120% at 10% 0%, color-mix(in srgb, var(--forest-600) 70%, var(--forest-900)) 0%, transparent 55%),
    var(--forest-900);
  color: #f2efe8;
}
.section__head { max-width: 720px; margin: 0 auto clamp(40px, 5vw, 68px); text-align: center; }
.section__head .lead-muted { margin-inline: auto; }

.grid-2 { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(32px, 6vw, 76px); align-items: center; }
.grid-2--wide { align-items: start; }

/* ---------- statistiky ---------- */
.stats { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.stat {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 24px;
  box-shadow: var(--shadow);
}
.stat b { display: block; font-family: var(--font-head); font-size: 2rem; font-weight: 600; color: var(--brand); line-height: 1; }
.stat span { font-size: .92rem; color: var(--text-muted); margin-top: 8px; display: block; }

/* ---------- karty vybavení ---------- */
.cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: color-mix(in srgb, var(--moss) 40%, var(--border)); }
.card__icon {
  font-size: 1.7rem; width: 56px; height: 56px; display: grid; place-items: center;
  background: color-mix(in srgb, var(--moss) 14%, transparent);
  border-radius: 14px; margin-bottom: 16px;
}
.card h3 { font-family: var(--font-head); font-weight: 600; font-size: 1.15rem; margin: 0 0 .35em; color: var(--brand-ink); }
.card p { margin: 0; font-size: .95rem; color: var(--text-muted); }

/* ---------- checklist ---------- */
.checklist { list-style: none; padding: 0; margin: 0 0 1.8em; display: grid; gap: 12px; }
.checklist li { position: relative; padding-left: 34px; color: var(--text); }
.checklist li::before {
  content: "✓"; position: absolute; left: 0; top: 1px;
  width: 22px; height: 22px; display: grid; place-items: center;
  background: color-mix(in srgb, var(--moss) 20%, transparent);
  color: var(--moss); border-radius: 50%; font-size: .8rem; font-weight: 700;
}

/* ---------- panel s termíny ---------- */
.panel {
  border-radius: var(--radius);
  padding: clamp(28px, 4vw, 40px);
  box-shadow: var(--shadow-lg);
}
.panel--accent {
  background: linear-gradient(155deg, var(--forest-700), var(--forest-800) 70%);
  color: #eaf3ec;
}
.panel__label { font-size: .78rem; letter-spacing: .14em; text-transform: uppercase; color: var(--accent-2); margin: 0 0 .5em; font-weight: 600; }
.panel__title { font-family: var(--font-head); font-weight: 600; font-size: 1.6rem; margin: 0 0 1em; color: #fff; }
.terms { list-style: none; padding: 0; margin: 0 0 1.4em; display: grid; gap: 16px; }
.terms li { display: grid; gap: 4px; padding-bottom: 16px; border-bottom: 1px solid rgba(255,255,255,.14); }
.terms li:last-child { border-bottom: 0; padding-bottom: 0; }
.terms__tag { font-size: .78rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--accent-2); }
.terms__text { color: rgba(255,255,255,.9); font-size: .98rem; }
.panel__note { font-style: italic; color: rgba(255,255,255,.8); margin: 0 0 1.2em; }

/* ---------- sport ---------- */
.sportgrid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.sporttile {
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius);
  padding: 28px 24px;
  background: rgba(255,255,255,.04);
  transition: transform .3s var(--ease), background .3s;
}
.sporttile:hover { transform: translateY(-6px); background: rgba(255,255,255,.08); }
.sporttile h3 { font-family: var(--font-head); font-weight: 600; font-size: 1.2rem; margin: 0 0 .4em; color: #fff; }
.sporttile p { margin: 0; color: #c8dccd; font-size: .95rem; }

/* ---------- foto galerie ---------- */
.gallery { display: grid; gap: 14px; margin-top: clamp(28px, 4vw, 44px); }
.gallery--photos { grid-template-columns: repeat(4, 1fr); grid-auto-rows: 190px; }
.gallery--wide { grid-template-columns: repeat(4, 1fr); }
.tile {
  margin: 0; border-radius: var(--radius); overflow: hidden; position: relative;
  display: flex; align-items: flex-end; padding: 16px;
  color: #fff; font-weight: 600; cursor: pointer;
  box-shadow: var(--shadow);
}
.tile img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: 0;
  transition: transform .5s var(--ease);
}
.tile:hover img { transform: scale(1.07); }
.tile::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(0,0,0,0) 45%, rgba(0,0,0,.62));
}
.tile figcaption {
  position: relative; z-index: 2; font-family: var(--font-head); font-size: 1.05rem;
  text-shadow: 0 1px 8px rgba(0,0,0,.5);
}
.tile--tall { grid-row: span 2; }

/* pás fotek (o nás) */
.photostrip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: clamp(36px, 5vw, 60px); }
.ph { margin: 0; position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); cursor: pointer; }
.ph img { width: 100%; height: 260px; object-fit: cover; display: block; transition: transform .5s var(--ease); }
.ph:hover img { transform: scale(1.06); }
.ph figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 26px 16px 14px;
  color: #fff; font-weight: 600; font-size: .95rem;
  background: linear-gradient(180deg, rgba(0,0,0,0), rgba(0,0,0,.6));
}

/* feature blok (media + text) */
.feature { display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(28px, 5vw, 64px); align-items: center; margin-top: clamp(32px, 5vw, 56px); }
.feature--reverse .feature__media { order: 2; }
.feature__media { margin: 0; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); }
.feature__media img { width: 100%; height: 100%; max-height: 460px; object-fit: cover; display: block; cursor: pointer; }
.h3 { font-family: var(--font-head); font-weight: 600; font-size: clamp(1.3rem, 1rem + 1vw, 1.7rem); margin: 0 0 .5em; color: var(--brand-ink); }

/* chips */
.chips { list-style: none; padding: 0; margin: clamp(28px, 4vw, 40px) 0 0; display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.chips li {
  background: var(--surface); border: 1px solid var(--border); border-radius: 999px;
  padding: .55em 1.1em; font-size: .92rem; font-weight: 500; color: var(--text);
}

/* seznam výletů */
.triplist { margin-top: clamp(28px, 4vw, 40px); }
.triplist ul { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.triplist li {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-sm);
  padding: 18px 20px; display: grid; gap: 4px;
}
.triplist b { color: var(--brand-ink); font-family: var(--font-head); font-weight: 600; }
.triplist span { color: var(--text-muted); font-size: .9rem; }

/* poznámky ceníku */
.notelist { list-style: none; padding: 0; margin: clamp(28px, 4vw, 40px) auto 0; max-width: 760px; display: grid; gap: 12px; }
.notelist li { position: relative; padding-left: 32px; color: var(--text-muted); }
.notelist li::before {
  content: "i"; position: absolute; left: 0; top: 1px; width: 22px; height: 22px;
  display: grid; place-items: center; font-family: var(--font-head); font-weight: 600; font-style: italic;
  background: color-mix(in srgb, var(--moss) 18%, transparent); color: var(--moss); border-radius: 50%; font-size: .85rem;
}

.maplink { display: inline-block; margin-top: 22px; color: var(--brand); font-weight: 600; text-decoration: none; }
.maplink:hover { text-decoration: underline; }

/* lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 100; display: none;
  align-items: center; justify-content: center; padding: 4vmin;
  background: rgba(8,16,11,.9); backdrop-filter: blur(6px);
}
.lightbox.is-open { display: flex; animation: lbin .25s var(--ease); }
@keyframes lbin { from { opacity: 0; } to { opacity: 1; } }
.lightbox__img { max-width: 92vw; max-height: 88vh; border-radius: 12px; box-shadow: var(--shadow-lg); }
.lightbox__close {
  position: absolute; top: 18px; right: 22px; width: 48px; height: 48px;
  border: 0; border-radius: 50%; background: rgba(255,255,255,.14); color: #fff;
  font-size: 1.8rem; line-height: 1; cursor: pointer; transition: background .2s;
}
.lightbox__close:hover { background: rgba(255,255,255,.28); }

/* ---------- ceník ---------- */
.pricing { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: stretch; }
.price {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 34px 30px;
  display: flex; flex-direction: column;
  box-shadow: var(--shadow);
}
.price--feature {
  border-color: var(--brand);
  box-shadow: var(--shadow-lg);
  transform: translateY(-8px);
}
.price__badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--accent); color: #fff; font-size: .74rem; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase; padding: .4em 1em; border-radius: 999px;
}
.price h3 { font-family: var(--font-head); font-weight: 600; font-size: 1.35rem; margin: 0 0 .2em; color: var(--brand-ink); }
.price__amount { font-family: var(--font-head); font-size: 1.5rem; color: var(--moss); margin: 0 0 1em; font-weight: 600; }
.price ul { list-style: none; padding: 0; margin: 0 0 1.6em; display: grid; gap: 10px; flex: 1; }
.price li { position: relative; padding-left: 24px; color: var(--text-muted); font-size: .96rem; }
.price li::before { content: "·"; position: absolute; left: 8px; color: var(--moss); font-weight: 900; }

/* ---------- kontakt ---------- */
.contact { list-style: none; padding: 0; margin: 1.6em 0 0; display: grid; gap: 22px; }
.contact li { display: flex; gap: 16px; align-items: flex-start; }
.contact__ic {
  flex: 0 0 auto; width: 46px; height: 46px; display: grid; place-items: center;
  background: color-mix(in srgb, var(--moss) 14%, transparent); border-radius: 12px; font-size: 1.2rem;
}
.contact a { color: var(--brand); text-decoration: none; }
.contact a:hover { text-decoration: underline; }

.cform {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: clamp(26px, 3.4vw, 40px);
  box-shadow: var(--shadow-lg);
}
.cform__title { font-family: var(--font-head); font-weight: 600; font-size: 1.4rem; margin: 0 0 1.2em; color: var(--brand-ink); }
.field { margin-bottom: 16px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field label { display: block; font-size: .86rem; font-weight: 600; margin-bottom: 6px; color: var(--text); }
.field input, .field textarea {
  width: 100%; font: inherit; color: var(--text);
  background: var(--bg);
  border: 1.5px solid var(--border); border-radius: var(--radius-sm);
  padding: .72em .9em; transition: border-color .2s, box-shadow .2s;
}
.field input:focus, .field textarea:focus {
  outline: none; border-color: var(--moss);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--moss) 18%, transparent);
}
.field textarea { resize: vertical; }
.cform__hint { margin: 14px 0 0; font-size: .9rem; color: var(--moss); font-weight: 600; }

/* ---------- footer ---------- */
.footer { background: var(--forest-900); color: #cfe0d4; padding: 60px 0 28px; }
.footer__inner { display: grid; grid-template-columns: 1fr auto 1fr; gap: 30px; align-items: center; }
.footer__brand { display: flex; align-items: center; gap: 10px; font-family: var(--font-head); font-size: 1.25rem; color: #fff; }
.footer__brand .brand__mark { color: var(--sage); }
.footer__nav { display: flex; flex-wrap: wrap; gap: 6px 18px; justify-content: center; }
.footer__nav a { color: #cfe0d4; text-decoration: none; font-size: .95rem; }
.footer__nav a:hover { color: #fff; }
.footer__meta { text-align: right; font-size: .9rem; margin: 0; color: #a9c4b1; }
.footer__meta a { color: var(--sage); text-decoration: none; }
.footer__note { text-align: center; margin: 34px 0 0; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.1); color: #86a190; font-size: .82rem; }

/* ---------- reveal animace ---------- */
/* Skrýváme jen když běží JS (třída .js na <html>) — bez JS zůstává obsah viditelný. */
.reveal { transition: opacity .7s var(--ease), transform .7s var(--ease); }
.js .reveal { opacity: 0; transform: translateY(28px); }
.reveal.is-visible { opacity: 1; transform: none; }

/* ============ RESPONZIVITA ============ */
@media (max-width: 980px) {
  .sportgrid { grid-template-columns: repeat(2, 1fr); }
  .gallery--photos, .gallery--wide { grid-template-columns: repeat(2, 1fr); }
  .tile--tall { grid-row: span 1; }
  .triplist ul { grid-template-columns: repeat(2, 1fr); }
  .feature { grid-template-columns: 1fr; }
  .feature--reverse .feature__media { order: 0; }
}

@media (max-width: 760px) {
  .nav__toggle { display: flex; }
  .nav__links {
    position: fixed; inset: 62px 12px auto 12px;
    flex-direction: column; align-items: stretch; gap: 4px;
    background: var(--surface); border: 1px solid var(--border);
    border-radius: var(--radius); padding: 12px; box-shadow: var(--shadow-lg);
    transform: translateY(-12px); opacity: 0; pointer-events: none;
    transition: opacity .25s, transform .25s;
  }
  .nav__links a { color: var(--text) !important; padding: .8em 1em; }
  .nav.is-open .nav__links { opacity: 1; transform: none; pointer-events: auto; }
  .nav.is-open .nav__toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav.is-open .nav__toggle span:nth-child(2) { opacity: 0; }
  .nav.is-open .nav__toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .grid-2 { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
  .pricing { grid-template-columns: 1fr; }
  .price--feature { transform: none; }
  .photostrip { grid-template-columns: 1fr; }
  .triplist ul { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; text-align: center; }
  .footer__meta { text-align: center; }
  .field-row { grid-template-columns: 1fr; }
}

@media (max-width: 460px) {
  .sportgrid { grid-template-columns: 1fr; }
  .gallery--photos, .gallery--wide { grid-template-columns: 1fr; }
  .hero__facts { gap: 22px; }
}
