/* ============================================================================
   Autokemp Danaj — design system.  Nature-forward & warm.
   Fraunces (serif) for display, system sans for body.  Mobile-first.
   fonts.css (@font-face) is <link>ed in base.html head — NOT @imported here — so it downloads in
   parallel with this file instead of waterfalling behind it (WS-02).
   ============================================================================ */

:root {
  /* Greens (forest → meadow) */
  --green-900: #16301f;
  --green-800: #1d4029;
  --green-700: #2c6244;
  --green-600: #377854;
  --green-500: #4a9d6b;
  --green-100: #e4f0e8;
  /* Warm sand neutrals */
  --sand-50:  #faf7f1;
  --sand-100: #f3ecdf;
  --sand-200: #e9dfcc;
  --sand-300: #dccbb0;
  /* Lake blue accent + warm sun */
  --lake:  #2f7f9e;
  --lake-600: #266b86;
  --sun:   #e2a24a;
  /* Ink & muted */
  --ink:   #26261f;
  --muted: #626a5a;
  --white: #ffffff;

  --radius: 16px;
  --radius-lg: 26px;
  --shadow-sm: 0 2px 10px rgba(22,48,31,.06);
  --shadow-md: 0 10px 30px rgba(22,48,31,.10);
  --shadow-lg: 0 24px 60px rgba(22,48,31,.16);
  --maxw: 1140px;
  --ease: cubic-bezier(.22,.61,.36,1);

  --font-body: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--sand-50);
  line-height: 1.65;
  font-size: 1.05rem;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--green-700); text-decoration-color: color-mix(in srgb, var(--green-500) 45%, transparent); text-underline-offset: 3px; }
a:hover { color: var(--green-600); }

h1, h2, h3 { font-family: var(--font-display); font-weight: 600; line-height: 1.1; color: var(--green-900); letter-spacing: -.01em; margin: 0 0 .5em; }
h1 { font-size: clamp(2.2rem, 5.5vw, 3.8rem); }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.6rem); }
h3 { font-size: 1.25rem; }
p { margin: 0 0 1rem; }

.container { max-width: var(--maxw); margin: 0 auto; padding-inline: 1.25rem; }
.section { padding-block: clamp(3rem, 7vw, 5.5rem); }
.section--tint { background: var(--sand-100); }
.section__head { max-width: 640px; margin: 0 auto 2.5rem; text-align: center; }
.section__head p { color: var(--muted); font-size: 1.1rem; margin: 0; }
.eyebrow {
  display: inline-block; font-family: var(--font-body); font-weight: 700;
  text-transform: uppercase; letter-spacing: .14em; font-size: .74rem;
  color: var(--green-600); margin-bottom: .7rem;
}

/* ---- Buttons -------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .85rem 1.6rem; border-radius: 999px; border: 2px solid transparent;
  font-weight: 700; font-size: 1rem; text-decoration: none; cursor: pointer;
  transition: transform .12s var(--ease), box-shadow .2s var(--ease), background .2s;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--green-700); color: var(--white); box-shadow: var(--shadow-md); }
.btn-primary:hover { background: var(--green-800); color: var(--white); transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-ghost { background: transparent; border-color: color-mix(in srgb, var(--green-700) 30%, transparent); color: var(--green-800); }
.btn-ghost:hover { background: var(--green-100); color: var(--green-900); }
.btn-light { background: var(--white); color: var(--green-900); box-shadow: var(--shadow-md); }
.btn-light:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); color: var(--green-900); }

/* ---- Header / nav --------------------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in srgb, var(--sand-50) 88%, transparent);
  backdrop-filter: saturate(1.4) blur(10px);
  border-bottom: 1px solid var(--sand-200);
}
.site-header__inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; height: 68px; }
.brand { display: inline-flex; align-items: center; gap: .55rem; text-decoration: none; }
.brand__mark {
  width: 38px; height: 38px; border-radius: 12px; display: grid; place-items: center;
  background: linear-gradient(145deg, var(--green-600), var(--green-800)); color: #fff; font-size: 1.2rem;
  box-shadow: var(--shadow-sm);
}
.brand__name { font-family: var(--font-display); font-weight: 600; font-size: 1.3rem; color: var(--green-900); line-height: 1; }
.brand__sub { display: block; font-family: var(--font-body); font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }

.nav { display: flex; align-items: center; gap: 1.4rem; }
.nav a { color: var(--ink); text-decoration: none; font-weight: 600; font-size: .98rem; }
.nav a:hover { color: var(--green-600); }
.nav .btn { padding: .55rem 1.1rem; }
.nav-phone { color: var(--green-700); font-weight: 700; white-space: nowrap; text-decoration: none; }
.nav-phone:hover { color: var(--green-900); }
.nav-phone .ico { vertical-align: -4px; }
.lang-dd { position: relative; }
.lang-dd summary { list-style: none; cursor: pointer; display: inline-flex; align-items: center; gap: .25rem;
  padding: .35rem .4rem; border-radius: 7px; }
.lang-dd summary::-webkit-details-marker { display: none; }
.lang-dd summary:hover { background: rgba(22,48,31,.06); }
.lang-dd summary .flag { width: 22px; height: 15px; border-radius: 2px; box-shadow: 0 0 0 1px rgba(0,0,0,.08); }
.lang-dd summary .chev { width: 13px; height: 13px; opacity: .55; transition: transform .2s; }
.lang-dd[open] summary .chev { transform: rotate(180deg); }
.lang-menu { position: absolute; right: 0; top: 100%; margin-top: .4rem; background: #fff;
  border: 1px solid var(--sand-200); border-radius: 12px; box-shadow: var(--shadow-md); padding: .4rem;
  min-width: 172px; z-index: 60; display: flex; flex-direction: column; }
.lang-menu button { display: flex; align-items: center; gap: .6rem; background: none; border: 0;
  padding: .5rem .6rem; border-radius: 8px; cursor: pointer; font: inherit; color: var(--ink); text-align: left; }
.lang-menu button:hover { background: var(--green-100); }
.lang-menu button.is-active { font-weight: 700; color: var(--green-800); }
.lang-menu button svg { width: 20px; height: 14px; border-radius: 2px; box-shadow: 0 0 0 1px rgba(0,0,0,.08); flex: none; }
@media (max-width: 860px) { .lang-menu { right: auto; left: 0; } }

.nav-toggle { display: none; }
.nav-toggle__btn {
  display: none; background: none; border: 0; cursor: pointer; padding: .4rem;
  color: var(--green-900);
}
.nav-toggle__btn svg { width: 28px; height: 28px; }

@media (max-width: 860px) {
  .nav-toggle__btn { display: inline-flex; }
  .nav {
    position: fixed; inset: 68px 0 auto 0; flex-direction: column; gap: 0;
    background: var(--sand-50); border-bottom: 1px solid var(--sand-200);
    padding: .5rem 1.25rem 1.25rem; align-items: stretch;
    transform: translateY(-130%); transition: transform .3s var(--ease); box-shadow: var(--shadow-md);
  }
  .nav a { padding: .85rem .25rem; border-bottom: 1px solid var(--sand-200); }
  .nav .btn { margin-top: .8rem; justify-content: center; }
  .nav-toggle:checked ~ .nav { transform: translateY(0); }
}

/* ---- Hero ----------------------------------------------------------------- */
/* NOTE: no overflow:hidden here — .hero__slides clips the Ken-Burns slides itself, and clipping
   the hero would cut off the "Termín" date-range popover. */
.hero { position: relative; color: #fff; text-align: center;
  background: linear-gradient(160deg, #2c6244 0%, #1d4029 55%, #16301f 100%); }
.hero::after { /* soft light from top */
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(120% 80% at 50% -10%, rgba(226,162,74,.20), transparent 60%);
}
.hero__inner { position: relative; z-index: 2; max-width: 800px; margin: 0 auto; padding: clamp(4rem, 9vw, 7rem) 1.25rem clamp(5rem, 9vw, 7.5rem); }
.hero__tag {
  display: inline-flex; align-items: center; gap: .5rem; margin-bottom: 1.1rem;
  padding: .4rem 1rem; border-radius: 999px; font-size: .84rem; font-weight: 600;
  background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.22); backdrop-filter: blur(4px);
}
.hero h1 { color: #fff; }
.hero__sub { font-size: clamp(1.05rem, 2.2vw, 1.4rem); opacity: .95; max-width: 620px; margin: .4rem auto 2rem; }
.hero__cta { display: flex; gap: .8rem; justify-content: center; flex-wrap: wrap; }
.hero__wave { position: absolute; left: 0; right: 0; bottom: -1px; z-index: 1; line-height: 0; }
.hero__wave svg { width: 100%; height: 70px; display: block; }

/* ---- Highlights bar ------------------------------------------------------- */
.highlights { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
@media (min-width: 720px) { .highlights { grid-template-columns: repeat(4, 1fr); } }
.highlight { text-align: center; padding: 1.4rem 1rem; background: var(--white); border: 1px solid var(--sand-200); border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.highlight__icon { font-size: 1.9rem; }
.highlight__title { font-weight: 700; margin: .5rem 0 .2rem; color: var(--green-900); }
.highlight__text { font-size: .92rem; color: var(--muted); margin: 0; }

/* ---- Area cards ----------------------------------------------------------- */
.areas { display: grid; gap: 1.8rem; grid-template-columns: 1fr; }
@media (min-width: 820px) { .areas { grid-template-columns: 1fr 1fr; } }
.area {
  background: var(--white); border: 1px solid var(--sand-200); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .2s var(--ease), box-shadow .25s var(--ease);
  display: flex; flex-direction: column;
}
.area:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.area__media { height: 190px; position: relative; background: linear-gradient(150deg, var(--green-500), var(--green-800)); }
.area__media--atc { background: linear-gradient(150deg, var(--lake), var(--green-700)); }
.area__badge { position: absolute; top: 1rem; left: 1rem; background: rgba(255,255,255,.92); color: var(--green-900);
  font-weight: 700; font-size: .82rem; padding: .35rem .85rem; border-radius: 999px; }
.area__glyph { position: absolute; inset: 0; display: grid; place-items: center; font-size: 3.4rem; opacity: .5; }
.area__body { padding: 1.6rem 1.5rem 1.75rem; display: flex; flex-direction: column; flex: 1; }
.area__body h3 { font-size: 1.5rem; }
.area__body p { color: var(--muted); }
.area__foot { margin-top: auto; padding-top: 1rem; display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }

/* ---- Amenities grid ------------------------------------------------------- */
.amenities { display: grid; grid-template-columns: repeat(2, 1fr); gap: .9rem; }
@media (min-width: 680px) { .amenities { grid-template-columns: repeat(3, 1fr); } }
.amenity { display: flex; align-items: center; gap: .7rem; background: var(--white); border: 1px solid var(--sand-200);
  border-radius: var(--radius); padding: .9rem 1.1rem; box-shadow: var(--shadow-sm); font-weight: 600; }
.amenity span:first-child { font-size: 1.3rem; }

/* ---- Location ------------------------------------------------------------- */
.location { display: grid; gap: 2rem; align-items: center; }
@media (min-width: 820px) { .location { grid-template-columns: 1.1fr 1fr; } }
.location__card { background: var(--white); border: 1px solid var(--sand-200); border-radius: var(--radius-lg); padding: 1.8rem; box-shadow: var(--shadow-sm); }
.location__links { display: flex; gap: .7rem; flex-wrap: wrap; margin-top: 1rem; }
.location__map { position: relative; display: block; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-md); border: 1px solid var(--sand-200); }
.location__map img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s var(--ease); }
.location__map:hover img { transform: scale(1.04); }
.location__map-hint { position: absolute; right: .8rem; bottom: .8rem; background: rgba(22,48,31,.9); color: #fff;
  font-size: .8rem; font-weight: 600; padding: .4rem .8rem; border-radius: 999px; }

/* ---- CTA band ------------------------------------------------------------- */
.cta-band { background: linear-gradient(150deg, var(--green-700), var(--green-900)); color: #fff; border-radius: var(--radius-lg); text-align: center; padding: clamp(2.5rem,6vw,4rem) 1.5rem; }
.cta-band h2 { color: #fff; }
.cta-band p { opacity: .92; max-width: 560px; margin: 0 auto 1.6rem; }
.cta-band__row { display: flex; gap: .8rem; justify-content: center; flex-wrap: wrap; }

/* ---- Footer --------------------------------------------------------------- */
.site-footer { background: var(--green-900); color: color-mix(in srgb, var(--sand-100) 82%, transparent); margin-top: 0; }
.site-footer a { color: var(--sand-100); }
.footer-grid { display: grid; gap: 2rem; grid-template-columns: 1fr; padding-block: 3rem; }
@media (min-width: 720px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; } }
.site-footer h4, .site-footer .footer-h { font-family: var(--font-display); color: #fff; margin: 0 0 .8rem; font-size: 1.1rem; font-weight: 600; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: .5rem; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); padding-block: 1.2rem; font-size: .86rem; text-align: center; opacity: .8; }
.footer-sep { margin: 0 .3rem; opacity: .5; }
.footer-admin { text-decoration: underline; opacity: .85; }

.prose :is(p,ul) { color: var(--muted); }

/* ---- Icons (inline SVG, no emoji-font dependency) ------------------------- */
.ico { width: 1.5em; height: 1.5em; fill: none; stroke: currentColor; stroke-width: 1.7;
  stroke-linecap: round; stroke-linejoin: round; display: inline-block; vertical-align: middle; flex: none; }
.brand__mark .ico { width: 22px; height: 22px; stroke-width: 1.9; }
.highlight__icon { color: var(--green-600); line-height: 1; }
.highlight__icon .ico { width: 34px; height: 34px; stroke-width: 1.6; }
.amenity .ico { width: 26px; height: 26px; color: var(--green-600); }
.area__glyph .ico { width: 62px; height: 62px; color: #fff; stroke-width: 1.5; }
.btn .ico { width: 1.2em; height: 1.2em; }
.hero__tag .ico, .location__links .ico { width: 18px; height: 18px; }

/* ---- Gallery + lightbox --------------------------------------------------- */
.gallery__title { font-family: var(--font-display); color: var(--green-800); font-size: 1.35rem; margin: 1.8rem 0 .9rem; }
.gallery__title:first-of-type { margin-top: 0; }
.gallery-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: .8rem; }
@media (min-width: 620px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 960px) { .gallery-grid { grid-template-columns: repeat(4, 1fr); } }
.gphoto { display: block; aspect-ratio: 4/3; overflow: hidden; border-radius: var(--radius);
  box-shadow: var(--shadow-sm); background: var(--sand-200); }
.gphoto img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.gphoto:hover img { transform: scale(1.07); }

.lightbox { position: fixed; inset: 0; z-index: 100; display: none; align-items: center; justify-content: center;
  background: rgba(9,18,13,.93); padding: 2rem; text-decoration: none; }
.lightbox:target { display: flex; }
.lightbox figure { margin: 0; text-align: center; }
.lightbox img { max-width: 92vw; max-height: 82vh; border-radius: 10px; box-shadow: var(--shadow-lg); }
.lightbox figcaption { color: #fff; margin-top: .9rem; font-size: 1.02rem; }
.lightbox__close { position: absolute; top: .8rem; right: 1.4rem; color: #fff; font-size: 2.6rem; line-height: 1; font-weight: 300; }

/* ---- Nav phone button: force white text+icon (fix .nav a override) -------- */
.nav .btn-primary, .nav .btn-primary:hover { color: #fff; }

/* ---- Hero slideshow (Ken Burns: slow zoom + pan, crossfade) ---------------- */
.hero__slides { position: absolute; inset: 0; z-index: 0; overflow: hidden; background: var(--green-900); }
.hero__slide {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  opacity: 0; will-change: transform, opacity; animation: heroKB 32s infinite;
}
.hero__slide:nth-child(1) { animation-delay: 0s;  transform-origin: center; }
.hero__slide:nth-child(2) { animation-delay: 8s;  transform-origin: top left; }
.hero__slide:nth-child(3) { animation-delay: 16s; transform-origin: bottom right; }
.hero__slide:nth-child(4) { animation-delay: 24s; transform-origin: top right; }
@keyframes heroKB {
  0%   { opacity: 0; transform: scale(1.03); }
  3%   { opacity: 1; }
  22%  { opacity: 1; }
  28%  { opacity: 0; transform: scale(1.16); }
  100% { opacity: 0; transform: scale(1.16); }
}
.hero__overlay { position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(160deg, rgba(28,60,42,.70), rgba(22,48,31,.86)); }
.hero .hero__inner { z-index: 3; }

/* Scroll cue */
.hero__scroll { position: absolute; left: 50%; bottom: 4.5rem; transform: translateX(-50%); z-index: 3;
  color: rgba(255,255,255,.85); display: flex; flex-direction: column; align-items: center; gap: .3rem;
  font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; text-decoration: none; }
.hero__scroll svg { width: 26px; height: 26px; animation: scrollBob 1.8s ease-in-out infinite; }
@keyframes scrollBob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(6px); } }

/* ---- Sub-page hero -------------------------------------------------------- */
.page-hero { background: linear-gradient(160deg, var(--green-700), var(--green-900)); color: #fff;
  text-align: center; padding: clamp(2.8rem,7vw,4.5rem) 0 clamp(2.4rem,5vw,3.4rem); }
.page-hero h1 { color: #fff; margin: .3rem 0 .5rem; }
.page-hero p { opacity: .92; max-width: 580px; margin: 0 auto; }

/* ---- Contact page + form -------------------------------------------------- */
.contact-layout { display: grid; gap: 2rem; grid-template-columns: 1fr; }
@media (min-width: 860px) { .contact-layout { grid-template-columns: 1.3fr 1fr; align-items: start; } }
.contact-card { background: var(--white); border: 1px solid var(--sand-200); border-radius: var(--radius-lg);
  padding: 1.8rem; box-shadow: var(--shadow-sm); }
.contact-card--info { background: var(--sand-100); }
.contact-card h3 { margin-top: 0; }
/* card section titles: h2 for a correct heading outline, sized like the old h3 (level ≠ size) */
.card-h { font-size: 1.25rem; margin-top: 0; }
.field { margin-bottom: 1.05rem; }
.field label, .field__lbl { display: block; font-weight: 700; margin-bottom: .35rem; color: var(--green-900); font-size: .95rem; }
.field .opt { font-weight: 400; color: var(--muted); }
.field-row { display: grid; gap: 1.05rem; grid-template-columns: 1fr; }
@media (min-width: 560px) { .field-row { grid-template-columns: 1fr 1fr; } }
/* text-field styling — must EXCLUDE checkbox/radio, or they render as full-width boxes
   (which pushed their labels into a narrow wrapping column) */
.contact-card input:not([type=checkbox]):not([type=radio]), .contact-card select, .contact-card textarea {
  width: 100%; padding: .75rem .9rem; border: 1.5px solid var(--sand-300); border-radius: 12px;
  font: inherit; color: var(--ink); background: var(--sand-50);
  transition: border-color .15s, box-shadow .15s; }
.contact-card input[type=checkbox], .contact-card input[type=radio] {
  width: 1.1rem; height: 1.1rem; accent-color: var(--green-600); cursor: pointer; }
.contact-card input:focus, .contact-card select:focus, .contact-card textarea:focus {
  outline: none; border-color: var(--green-500); box-shadow: 0 0 0 3px rgba(74,157,107,.18); background: #fff; }
.contact-card textarea { resize: vertical; }
.contact-card .errorlist { list-style: none; margin: .35rem 0 0; padding: 0; color: #b3261e; font-size: .86rem; }
.alert-success { background: var(--green-100); color: var(--green-900); border: 1px solid var(--green-500);
  border-radius: 12px; padding: .9rem 1.1rem; margin-bottom: 1.2rem; font-weight: 600; }
.form-error { color: #b3261e; font-weight: 600; }
.contact-actions { display: flex; gap: .7rem; flex-wrap: wrap; margin-top: 1rem; }
.field-feedback { font-size: .82rem; margin-top: .28rem; min-height: 1em; }
.field-feedback.ok { color: var(--green-600); }
.field-feedback.err { color: #b3261e; }
input.is-ok { border-color: var(--green-500) !important; box-shadow: 0 0 0 3px rgba(74,157,107,.14) !important; }
input.is-err { border-color: #d98b8b !important; box-shadow: 0 0 0 3px rgba(179,38,30,.10) !important; }

/* ---- Booking ------------------------------------------------------------- */
.search-bar { display: flex; flex-wrap: wrap; gap: 1rem; align-items: end; background: var(--white);
  border: 1px solid var(--sand-200); border-radius: var(--radius-lg); padding: 1.4rem; box-shadow: var(--shadow-sm); }
.search-bar .field { margin: 0; }
.search-bar .field--sm input { width: 80px; }
.search-bar input, .search-bar select { padding: .6rem .7rem; border: 1.5px solid var(--sand-300);
  border-radius: 10px; font: inherit; background: var(--sand-50); }
.search-bar input:focus, .search-bar select:focus { outline: none; border-color: var(--green-500);
  box-shadow: 0 0 0 3px rgba(74,157,107,.18); }
/* checkbox + (possibly long) label text: grid pins the box and lets the text fill the row
   instead of a flex item collapsing to a narrow min-content column */
.check-inline { display: grid; grid-template-columns: auto 1fr; align-items: start; gap: .5rem; font-weight: 600; }
.radio-row { display: flex; flex-wrap: wrap; gap: .6rem 1.6rem; }
/* nowrap keeps each short option on one line (else the text shrinks word-by-word) */
.radio-row label { display: inline-flex; align-items: center; gap: .45rem; white-space: nowrap; }
.radio-row label > input, .check-inline > input { flex: 0 0 auto; margin-top: .12rem; }

.unit-list { display: grid; gap: .6rem; margin-top: .5rem; }
.unit-row { display: flex; align-items: center; gap: .9rem; background: var(--white); border: 1.5px solid var(--sand-200);
  border-radius: 12px; padding: .9rem 1.1rem; cursor: pointer; transition: border-color .15s, background .15s; }
.unit-row:hover { border-color: var(--green-500); }
.unit-row:has(input:checked) { border-color: var(--green-600); background: var(--green-100); }
.unit-row input { width: 20px; height: 20px; accent-color: var(--green-600); }
.unit-row__img { width: 84px; height: 64px; object-fit: cover; border-radius: 10px; flex: none; display: block; }
.unit-row__name { flex: 1; font-weight: 700; color: var(--green-900); }
.unit-row__name small { display: block; font-weight: 400; color: var(--muted); }
.unit-row__price { font-weight: 800; color: var(--green-700); white-space: nowrap; }
.cap-hint { margin: 1rem 0 0; font-weight: 600; font-size: .95rem; display: flex; align-items: center; gap: .45rem; }
.cap-hint::before { content: ""; width: 18px; height: 18px; border-radius: 50%; flex: none; }
.cap-hint--ok { color: var(--green-700); } .cap-hint--ok::before { background: var(--green-500); }
.cap-hint--warn { color: #b3672e; } .cap-hint--warn::before { background: #e0a24a; }
.book-form button[type="submit"]:disabled { opacity: .5; cursor: not-allowed; box-shadow: none; transform: none; }

/* TEMPORARY test controls (pre-prod) — visually flagged as not part of the real product */
.testctl { margin-top: 1.1rem; padding: .9rem; border: 1.5px dashed #d9a441; border-radius: 12px; background: #fdf6e8;
  display: flex; flex-direction: column; gap: .55rem; }
.testctl__lbl { font-size: .78rem; font-weight: 700; color: #99671a; }
.testctl .btn-sm { background: #b98a2e; color: #fff; align-self: flex-start; }
@media (max-width: 460px) { .unit-row__img { width: 60px; height: 48px; } }

/* ---- booking: reassurance strip (proč rezervovat přímo) ---- */
.reassure { display: flex; flex-wrap: wrap; gap: .6rem 1.6rem; justify-content: center; margin-bottom: 1.4rem;
  padding: .9rem 1.1rem; background: var(--green-100); border-radius: 14px; }
.reassure__item { display: inline-flex; align-items: center; gap: .5rem; font-size: .92rem; font-weight: 600; color: var(--green-900); }
.reassure__item .ico { width: 20px; height: 20px; color: var(--green-600); }
/* banner variant — sits inside the dark page-hero, echoes the booking-phase bar */
.reassure--banner { background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.22);
  border-radius: 999px; margin: 1.4rem auto 0; padding: .7rem 1.4rem; max-width: max-content; }
.reassure--banner .reassure__item { color: #eaf3ec; font-weight: 500; }
.reassure--banner .reassure__item .ico { color: #bfe3cd; }

/* ---- booking: calendar price + turnus hints ---- */
.cal__from { font-family: var(--font-body); font-size: .82rem; font-weight: 600; color: var(--green-600); white-space: nowrap; }
.cal__turnus { display: inline-block; margin-left: .3rem; color: var(--green-700); }
button.cal__day.cal--sat { box-shadow: inset 2px 0 0 var(--green-500); }

/* ---- booking: how it works (3 steps) ---- */
.howto { margin: 0 0 1.6rem; }
.howto__h { text-align: center; margin: 0 0 1.6rem; }
.howto__steps { display: grid; gap: 1.1rem; grid-template-columns: 1fr; }
@media (min-width: 720px) { .howto__steps { grid-template-columns: repeat(3, 1fr); } }
.howto__step { display: flex; align-items: flex-start; gap: .8rem; background: var(--white); border: 1px solid var(--sand-200);
  border-radius: var(--radius-lg); padding: 1.2rem; box-shadow: var(--shadow-sm); position: relative; }
.howto__num { position: absolute; top: -12px; left: 16px; width: 26px; height: 26px; border-radius: 50%;
  background: var(--green-700); color: #fff; display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: .9rem; }
.howto__ico { flex: none; width: 44px; height: 44px; border-radius: 12px; background: var(--green-100);
  display: inline-flex; align-items: center; justify-content: center; color: var(--green-700); }
.howto__ico .ico { width: 24px; height: 24px; }
.howto__step b { color: var(--green-900); display: block; margin-bottom: .2rem; }
.howto__step p { margin: 0; color: var(--muted); font-size: .9rem; line-height: 1.5; }

.booking-layout { display: grid; gap: 2rem; grid-template-columns: 1fr; }
@media (min-width: 860px) { .booking-layout { grid-template-columns: 1.4fr 1fr; align-items: start; } }
.kv { width: 100%; border-collapse: collapse; }
.kv th { text-align: left; color: var(--muted); font-weight: 600; padding: .4rem .6rem .4rem 0; vertical-align: top; white-space: nowrap; }
.kv td { padding: .4rem 0; }
.kv td.num { text-align: right; font-variant-numeric: tabular-nums; }
.kv td small { color: var(--muted); }
.price-table .price-total th, .price-table .price-total td { border-top: 2px solid var(--sand-300);
  font-weight: 800; color: var(--green-900); font-size: 1.1rem; padding-top: .6rem; }
.pay-amount { font-family: var(--font-display); font-size: 2rem; color: var(--green-800); text-align: center; margin: .2rem 0 1rem; }
.pay-qr { display: block; margin: 0 auto 0.6rem; border-radius: 12px; }
.booking-actions { display: flex; gap: .7rem; flex-wrap: wrap; margin-top: 1.6rem; }
.btn-danger { color: #b3261e; border-color: rgba(179,38,30,.4); }
.btn-danger:hover { background: #fdeceb; color: #911e18; }

/* Stepper */
.stepper { display: flex; gap: .3rem; justify-content: center; flex-wrap: wrap; margin-top: 1.1rem; }
.step { display: flex; align-items: center; gap: .5rem; color: rgba(255,255,255,.55); font-weight: 600; font-size: .9rem; }
.step:not(:last-child)::after { content: ""; width: 26px; height: 2px; background: rgba(255,255,255,.25); margin-left: .35rem; }
.step__dot { width: 28px; height: 28px; border-radius: 50%; display: grid; place-items: center;
  background: rgba(255,255,255,.14); border: 1.5px solid rgba(255,255,255,.35); font-size: .85rem; }
.step.is-done { color: #fff; } .step.is-done .step__dot { background: var(--green-500); border-color: var(--green-500); }
.step.is-active { color: #fff; } .step.is-active .step__dot { background: #fff; color: var(--green-900); border-color: #fff; }

/* Guest-page extra (message + FAQ) */
.booking-extra { margin-top: 2rem; display: grid; gap: 1.6rem; grid-template-columns: 1fr; }
@media (min-width: 860px) { .booking-extra { grid-template-columns: 1.4fr 1fr; align-items: start; } }
.booking-extra textarea { width: 100%; padding: .75rem .9rem; border: 1.5px solid var(--sand-300);
  border-radius: 12px; font: inherit; background: var(--sand-50); resize: vertical; }
.booking-extra textarea:focus { outline: none; border-color: var(--green-500); box-shadow: 0 0 0 3px rgba(74,157,107,.18); }
.btn-danger-solid { background: #b3261e; color: #fff; }
.btn-danger-solid:hover { background: #911e18; color: #fff; }

.state-badge { display: inline-block; padding: .3rem .9rem; border-radius: 999px; font-size: .82rem;
  font-weight: 700; background: rgba(255,255,255,.16); }
.state-badge--deposit_paid, .state-badge--confirmed { background: var(--green-500); }
.state-badge--cancelled, .state-badge--expired { background: #8a8f83; }

.alert-error { background: #fdeceb; color: #911e18; border: 1px solid #e6a9a4; border-radius: 12px;
  padding: .9rem 1.1rem; margin-bottom: 1.2rem; font-weight: 600; }
.muted { color: var(--muted); }

/* ---- Owner console / dashboard ------------------------------------------- */
.console { background: var(--sand-100); }
.console-top { display: flex; align-items: center; gap: 1.2rem; flex-wrap: wrap;
  background: linear-gradient(120deg, var(--green-700), var(--green-900)); color: #fff; padding: .8rem 1.5rem; }
.console-brand { font-family: var(--font-display); font-weight: 600; font-size: 1.2rem; }
.console-brand span { opacity: .7; font-weight: 400; font-size: .85em; }
.console-tabs { display: flex; gap: .25rem; flex-wrap: wrap; flex: 1; }
.console-tabs a { color: rgba(255,255,255,.85); text-decoration: none; font-weight: 600;
  padding: .4rem .8rem; border-radius: 8px; font-size: .95rem; }
.console-tabs a:hover { background: rgba(255,255,255,.12); color: #fff; }
.console-tabs a.is-active { background: #fff; color: var(--green-900); }
.console-actions { display: flex; gap: 1rem; }
.console-actions a { color: rgba(255,255,255,.85); text-decoration: none; font-size: .9rem; font-weight: 600; }
.console-main { max-width: 1100px; margin: 0 auto; padding: 1.8rem 1.25rem; }
.console-main h1 { font-size: 1.8rem; }
.console-main h1 small { font-weight: 400; color: var(--muted); font-size: .9rem; font-family: var(--font-body); }
.stat-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; margin: 1.2rem 0; }
@media (min-width: 680px) { .stat-row { grid-template-columns: repeat(4, 1fr); } }
.stat-card { background: #fff; border: 1px solid var(--sand-200); border-radius: var(--radius); padding: 1.2rem; box-shadow: var(--shadow-sm); }
.stat-card--warn { border-color: var(--sun); background: #fff8ee; }
.stat-num { font-family: var(--font-display); font-size: 2.2rem; color: var(--green-800); line-height: 1; }
.stat-lbl { color: var(--muted); font-size: .9rem; margin-top: .3rem; }
.console-grid { display: grid; gap: 1.2rem; grid-template-columns: 1fr; }
@media (min-width: 820px) { .console-grid { grid-template-columns: 1fr 1fr; } }
.panel { background: #fff; border: 1px solid var(--sand-200); border-radius: var(--radius); padding: 1.4rem; box-shadow: var(--shadow-sm); margin-bottom: 1.2rem; }
.panel h2 { font-size: 1.2rem; margin: 0 0 1rem; display: flex; justify-content: space-between; align-items: baseline; }
.panel__more { font-size: .82rem; font-weight: 600; }
.row { display: flex; align-items: center; gap: 1rem; padding: .7rem 0; border-bottom: 1px solid var(--sand-100); }
.row:last-child { border-bottom: 0; }
.row__main { flex: 1; } .row__main small { color: var(--muted); }
.row__amt { font-weight: 700; color: var(--green-700); white-space: nowrap; }
.btn-sm { padding: .4rem .9rem; font-size: .85rem; }

/* ---- Availability calendar ------------------------------------------------ */
.cal { background: #fff; border: 1px solid var(--sand-200); border-radius: var(--radius-lg);
  padding: 1.4rem; box-shadow: var(--shadow-sm); margin-top: 1.5rem; }
.cal__head { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: .8rem; margin-bottom: 1rem; }
.cal__head h3 { margin: 0; }
.cal__legend { display: flex; gap: 1rem; flex-wrap: wrap; font-size: .82rem; color: var(--muted); }
.cal__legend span { display: inline-flex; align-items: center; gap: .35rem; }
.lg { width: 14px; height: 14px; border-radius: 3px; border: 1px solid var(--sand-300); display: inline-block; }
.lg--free { background: #fff; } .lg--low { background: #dff0e2; }
.lg--mid { background: linear-gradient(135deg,#fff 44%,#e0a24a 44%,#e0a24a 56%,#fff 56%); }
.lg--full { background: #f6d5d1; }
.cal__months { display: grid; gap: 1.4rem; grid-template-columns: 1fr; }
@media (min-width: 560px) { .cal__months { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 920px) { .cal__months { grid-template-columns: repeat(3, 1fr); } }
.cal__mname { font-weight: 700; color: var(--green-900); text-transform: capitalize; margin-bottom: .5rem; }
.cal__grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 3px; }
.cal__wd { text-align: center; font-size: .66rem; color: var(--muted); text-transform: uppercase; padding-bottom: 2px; }
.cal__day { aspect-ratio: 1; display: flex; align-items: center; justify-content: center; font-size: .8rem;
  border-radius: 6px; border: 1px solid var(--sand-200); background: #fff; padding: 0; color: var(--ink); }
button.cal__day { cursor: pointer; transition: outline .1s; }
button.cal__day:hover { outline: 2px solid var(--green-500); }
.cal--empty { border: 0; background: none; }
.cal--out { color: #736e5f; background: var(--sand-50); border-color: var(--sand-100); }
.cal--low { background: #dff0e2; }
.cal--mid { background: linear-gradient(135deg,#fff 44%,#e0a24a 44%,#e0a24a 56%,#fff 56%); }
.cal--full { background: #f6d5d1; color: #b3261e; position: relative; }
.cal--full::after { content: ""; position: absolute; inset: 3px; border-radius: 3px;
  background: linear-gradient(135deg,transparent 43%,#cf7d78 43%,#cf7d78 57%,transparent 57%); }
/* selected range — a green ring layered over the occupancy colour; solid endpoints */
button.cal__day.is-range { box-shadow: inset 0 0 0 2px var(--green-500); font-weight: 700; color: var(--green-900); }
button.cal__day.is-range-start, button.cal__day.is-range-end {
  background: var(--green-700); color: #fff; box-shadow: none; border-color: var(--green-800); z-index: 1; }
.cal--full.is-range-start::after, .cal--full.is-range-end::after { display: none; }
.cal__hint { margin: .9rem 0 0; font-size: .85rem; }

/* ---- Ceník (price cards, live from booking prices) ----------------------- */
.pricegroup { margin-top: 1.8rem; }
.pricegroup:first-of-type { margin-top: .4rem; }
.pricegroup__name { display: flex; align-items: center; gap: .8rem; font-size: 1.15rem; color: var(--green-800);
  margin: 0 0 1rem; }
.pricegroup__name::after { content: ""; flex: 1; height: 1px; background: var(--sand-200); }
.pricecards { display: flex; flex-wrap: wrap; justify-content: center; gap: 1.1rem; }
.pricecards .pcard { flex: 0 1 280px; }
.pcard { display: flex; flex-direction: column; gap: .5rem; background: #fff; border: 1px solid var(--sand-200);
  border-radius: var(--radius-lg); padding: 1.3rem; box-shadow: var(--shadow-sm); transition: transform .15s, box-shadow .15s; }
.pcard:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.pcard__head { display: flex; align-items: center; justify-content: space-between; }
.pcard__ico { width: 30px; height: 30px; color: var(--green-600); }
.pcard__beds { display: inline-flex; align-items: center; gap: .3rem; font-size: .82rem; font-weight: 700;
  color: var(--green-700); background: var(--green-100); padding: .2rem .6rem; border-radius: 999px; white-space: nowrap; }
.pcard__beds .ico { width: 15px; height: 15px; }
.pcard__name { font-family: var(--font-display); font-weight: 600; color: var(--green-900); font-size: 1.05rem; }
.pcard__badge { font-size: .8rem; color: var(--green-700); font-weight: 600; }
.pcard__prices { margin-top: auto; padding-top: .5rem; }
.pcard__price { display: flex; align-items: baseline; gap: .35rem; }
.pcard__price b { font-size: 1.5rem; color: var(--green-800); line-height: 1.1; }
.pcard__price span { font-size: .82rem; color: var(--muted); }
.pcard__price--sm { margin-top: .15rem; font-size: .95rem; color: var(--ink); font-weight: 600; }
.pcard__price--sm span { font-weight: 400; }
.pcard__cta { align-self: flex-start; margin-top: .7rem; }

/* a lone cottage type in an area → one wide FEATURED card (premium), not an orphaned column */
.pricecards--single { display: block; }
.pcard--feat { flex-direction: row; flex-wrap: wrap; align-items: center; gap: .8rem 1.6rem;
  background: linear-gradient(100deg, var(--green-100), #fff 60%); border-color: var(--green-500);
  border-left: 4px solid var(--green-600); padding: 1.4rem 1.7rem; }
.pcard--feat .pcard__head { flex: none; justify-content: flex-start; gap: .55rem; }
.pcard--feat .pcard__name { font-size: 1.25rem; }
.pcard--feat .pcard__badge { margin-right: .3rem; }
.pcard--feat .pcard__prices { margin: 0 0 0 auto; padding: 0; text-align: right; }
.pcard--feat .pcard__price { justify-content: flex-end; }
.pcard--feat .pcard__price--sm { justify-content: flex-end; }
.pcard--feat .pcard__cta { margin: 0; align-self: center; }
@media (max-width: 620px) {
  .pcard--feat .pcard__prices { margin-left: 0; text-align: left; }
  .pcard--feat .pcard__price, .pcard--feat .pcard__price--sm { justify-content: flex-start; }
}
.feestrip { display: flex; flex-wrap: wrap; justify-content: center; gap: .7rem; margin: 2rem 0 0; }
.feechip { display: inline-flex; align-items: center; gap: .45rem; background: var(--sand-100);
  border: 1px solid var(--sand-200); border-radius: 999px; padding: .5rem 1rem; font-size: .9rem; color: var(--ink); }
.feechip .ico { width: 20px; height: 20px; color: var(--green-600); }
.feechip b { color: var(--green-800); }
.cen-note { text-align: center; color: var(--muted); font-size: .88rem; margin: 1rem auto 0; max-width: 620px; }

/* ---- Hero rating badge ---- */
.hero__rating { display: inline-flex; align-items: center; gap: .5rem; margin: 0 auto 1.6rem;
  background: rgba(255,255,255,.16); border: 1px solid rgba(255,255,255,.35); backdrop-filter: blur(4px);
  color: #fff; padding: .4rem .9rem; border-radius: 999px; font-size: .95rem; text-decoration: none; }
.hero__rating:hover { background: rgba(255,255,255,.26); color: #fff; }
.hero__rating b { font-weight: 700; }
.hero__rating-star { color: #ffcf5c; font-size: 1.05rem; }

/* ---- Hero search bar (1.5) — one "Termín" field + a range popover, compact single row ---- */
.hero__pick { display: flex; flex-wrap: nowrap; gap: .25rem; align-items: center; justify-content: center;
  background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.3); backdrop-filter: blur(6px);
  padding: .35rem .4rem; border-radius: 999px; margin: 0 auto 1.4rem; max-width: max-content; }
.hero__term-wrap { position: relative; }
.hero__term { display: inline-flex; align-items: center; gap: .55rem; background: transparent; border: 0;
  color: #fff; cursor: pointer; font: inherit; padding: .5rem .95rem; border-radius: 999px; }
.hero__term:hover { background: rgba(255,255,255,.12); }
.hero__term .ico { width: 20px; height: 20px; color: #bfe3cd; flex: none; }
.hero__term-cap { font-size: .68rem; text-transform: uppercase; letter-spacing: .09em; color: #cfe3d6; }
.hero__term-val { font-weight: 700; font-size: .95rem; white-space: nowrap; }
.hero__pick-f { display: flex; align-items: center; gap: .4rem; text-align: left;
  padding-left: .5rem; border-left: 1px solid rgba(255,255,255,.28); }
.hero__pick-f label { font-size: .78rem; font-weight: 600; color: #eaf3ec; white-space: nowrap; }
.hero__pick-f input { border: 0; border-radius: 8px; padding: .35rem .2rem; font: inherit; font-size: .92rem;
  background: transparent; color: #fff; width: 34px; text-align: center; }
.hero__pick-btn { padding: .6rem 1.3rem; margin-left: .35rem; }
.hero__guests-wrap { position: relative; }
.hero__pick-f + .hero__guests-wrap, .hero__term-wrap + .hero__guests-wrap { }
.hero__guests { border-left: 1px solid rgba(255,255,255,.28); border-radius: 0; padding-left: 1rem; }
.hero__term-val .ico { width: 16px; height: 16px; vertical-align: -3px; color: #bfe3cd; }
.hero__gpop { position: absolute; bottom: calc(100% + .6rem); right: 0; z-index: 40;
  background: #fff; color: var(--ink); border-radius: 14px; box-shadow: var(--shadow-lg); padding: .5rem; min-width: 232px; }
.gstep { display: flex; align-items: center; justify-content: space-between; padding: .55rem .6rem; gap: 1rem; }
.gstep__lbl { font-weight: 600; color: var(--green-900); }
.gstep__ctl { display: inline-flex; align-items: center; gap: .8rem; }
.gstep__ctl b { min-width: 1.2rem; text-align: center; font-variant-numeric: tabular-nums; }
.gstep__b { width: 30px; height: 30px; border-radius: 50%; border: 1.5px solid var(--sand-300); background: #fff;
  color: var(--green-700); font-size: 1.1rem; line-height: 1; cursor: pointer; display: inline-flex; align-items: center; justify-content: center; }
.gstep__b:hover:not(:disabled) { border-color: var(--green-500); background: var(--green-100); }
.gstep__b:disabled { opacity: .35; cursor: default; }
@media (max-width: 760px) { .hero__gpop { right: auto; left: 0; } .hero__guests { border-left: 0; padding-left: .95rem; } }

/* opens UPWARD (the bar sits low in the hero), left-aligned to the trigger */
.hero__cal { position: absolute; bottom: calc(100% + .6rem); top: auto; left: 0; z-index: 40;
  background: #fff; color: var(--ink); border-radius: 16px; box-shadow: var(--shadow-lg); padding: 1rem; text-align: left; }
.hero__cal-nav { display: flex; justify-content: space-between; margin-bottom: .3rem; }
.hero__cal-arrow { width: 30px; height: 30px; border-radius: 8px; border: 1px solid var(--sand-200);
  background: #fff; cursor: pointer; color: var(--green-800); font-size: 1.15rem; line-height: 1; }
.hero__cal-arrow:disabled { opacity: .3; cursor: default; }
.hero__cal-months { display: flex; gap: 1.2rem; }
.hero__cal .cal__month { min-width: 208px; }
.hero__cal .cal__mname { text-transform: capitalize; font-weight: 700; color: var(--green-900); margin-bottom: .4rem; font-size: .95rem; }
.hero__cal .cal__grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 2px; }
.hero__cal .cal__wd { text-align: center; font-size: .64rem; color: var(--muted); text-transform: uppercase; }
.hero__cal .cal__day { aspect-ratio: 1; display: flex; align-items: center; justify-content: center; font-size: .8rem;
  border-radius: 7px; border: 1px solid transparent; background: transparent; color: var(--ink); padding: 0; }
.hero__cal button.cal__day { cursor: pointer; }
.hero__cal button.cal__day:hover { background: var(--green-100); }
.hero__cal .cal--out { color: #c9c3b5; }
.hero__cal .cal--empty { border: 0; }

@media (max-width: 760px) {
  .hero__pick { flex-wrap: wrap; border-radius: 20px; padding: .7rem; gap: .5rem .6rem; }
  .hero__pick-f { border-left: 0; padding-left: 0; }
  .hero__pick-f input { background: rgba(255,255,255,.92); color: var(--ink); width: 42px; }
  .hero__pick-btn { width: 100%; justify-content: center; margin-left: 0; }
  .hero__cal { position: fixed; top: 10vh; left: 4vw; right: 4vw; bottom: auto; max-width: 92vw;
    margin: 0 auto; max-height: 78vh; overflow: auto; }
  .hero__cal-months { flex-direction: column; gap: .8rem; align-items: center; }
}

/* ---- Sticky mobile booking bar (1.4) ---- */
.mobilebar { display: none; }
@media (max-width: 720px) {
  .mobilebar { display: flex; gap: .6rem; align-items: center; position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
    background: var(--white); border-top: 1px solid var(--sand-200);
    padding: .55rem .9rem calc(.55rem + env(safe-area-inset-bottom)); box-shadow: 0 -4px 16px rgba(22,48,31,.10); }
  .mobilebar__call { flex: none; width: 46px; height: 46px; border-radius: 12px; border: 1.5px solid var(--sand-300);
    display: inline-flex; align-items: center; justify-content: center; color: var(--green-700); }
  .mobilebar__cta { flex: 1; }
  body { padding-bottom: 66px; }
}

/* ---- Guest reviews ---- */
.rev-avg { color: var(--green-800); font-weight: 700; }
.reviews { display: flex; flex-wrap: wrap; justify-content: center; gap: 1.1rem; margin-top: .5rem; }
.reviews .rev { flex: 0 1 330px; }
.rev { margin: 0; background: #fff; border: 1px solid var(--sand-200); border-radius: var(--radius-lg);
  padding: 1.5rem; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; gap: .7rem; }
.rev__stars { letter-spacing: 2px; font-size: 1rem; color: var(--sand-300); }
.rev__stars .on { color: #e6a933; }
.rev__text { margin: 0; font-size: 1.02rem; line-height: 1.55; color: var(--ink); font-style: italic; }
.rev__author { margin-top: auto; color: var(--green-700); font-weight: 600; font-size: .92rem; }
.rev__notext { margin: 0; color: var(--muted); font-style: italic; font-size: .95rem; }
.rev__src { display: block; margin-top: .15rem; font-weight: 400; font-size: .78rem; color: var(--muted); }

/* ---- Okolí a výlety (surroundings & trips) ---- */
.okoli { position: relative; overflow: hidden; }
/* moving photo-mosaic wall — our own gallery photos, low opacity, drifting columns */
.okoli__mosaic { position: absolute; inset: 0; z-index: 0; display: flex; gap: 12px; padding: 12px;
  opacity: .15; pointer-events: none; overflow: hidden; }
.okoli__mosaic .mcol { flex: 1 1 0; min-width: 0; will-change: transform; animation: okoliDrift 45s linear infinite; }
.okoli__mosaic .mcol:nth-child(2) { animation-duration: 60s; animation-direction: reverse; }
.okoli__mosaic .mcol:nth-child(3) { animation-duration: 52s; }
.okoli__mosaic img { width: 100%; margin-bottom: 12px; border-radius: 12px; display: block; object-fit: cover; }
/* fade the wall into the page ground top & bottom so text stays legible */
.okoli__mosaic::after { content: ""; position: absolute; inset: 0;
  background: linear-gradient(to bottom, var(--sand-50) 0%, transparent 30%, transparent 68%, var(--sand-50) 100%); }
.okoli__body { position: relative; z-index: 1; }
@keyframes okoliDrift { from { transform: translateY(0); } to { transform: translateY(-50%); } }
@media (prefers-reduced-motion: reduce) { .okoli__mosaic .mcol { animation: none; } }

.trips { display: grid; gap: 1.1rem; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); margin-top: .5rem; }
@media (min-width: 760px) { .trips { grid-template-columns: repeat(3, 1fr); } }
.trip { background: #fff; border: 1px solid var(--sand-200); border-radius: var(--radius-lg);
  padding: 1.5rem; box-shadow: var(--shadow-sm); transition: transform .15s, box-shadow .15s; }
.trip:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.trip__ico { display: inline-flex; align-items: center; justify-content: center; width: 48px; height: 48px;
  border-radius: 14px; background: var(--green-100); color: var(--green-700); margin-bottom: .9rem; }
.trip__ico .ico { width: 26px; height: 26px; }
.trip h3 { font-size: 1.12rem; margin: 0 0 .35rem; color: var(--green-900); }
.trip p { margin: 0; color: var(--muted); font-size: .93rem; line-height: 1.55; }

/* ---- Rodinný kemp (owner story) ---- */
.story { display: grid; gap: clamp(1.4rem, 4vw, 3rem); align-items: center; grid-template-columns: 1fr; }
@media (min-width: 820px) { .story { grid-template-columns: 5fr 6fr; } }
.story__photo { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); aspect-ratio: 4/3; }
.story__photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.story__text .eyebrow { margin-bottom: .5rem; }
.story__text h2 { margin: 0 0 1rem; }
.story__text .prose { font-size: 1.08rem; line-height: 1.7; color: var(--ink); }
.story__sign { display: inline-flex; align-items: center; gap: .5rem; margin-top: 1.2rem;
  font-family: var(--font-display); font-size: 1.2rem; color: var(--green-800); }
.story__sign .ico { width: 22px; height: 22px; color: var(--green-600); }

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; scroll-behavior: auto !important; }
  .hero__slide { animation: none; opacity: 1; }
  .hero__slide:nth-child(n+2) { display: none; }
}

/* ---- Booking wizard ------------------------------------------------------- */
.wiz__bar { display: flex; gap: .5rem; list-style: none; margin: 0 0 1.6rem; padding: 0; flex-wrap: wrap; justify-content: center; }
.wiz__pill { display: inline-flex; align-items: center; gap: .5rem; padding: .5rem 1rem; border-radius: 999px;
  background: var(--sand-100); color: var(--muted); font-weight: 600; font-size: .92rem; }
.wiz__pill b { width: 22px; height: 22px; border-radius: 50%; background: #fff; color: var(--muted);
  display: inline-flex; align-items: center; justify-content: center; font-size: .8rem; }
.wiz__pill.is-active { background: var(--green-700); color: #fff; }
.wiz__pill.is-active b { background: #fff; color: var(--green-800); }
.wiz__pill.is-done { background: var(--green-100); color: var(--green-800); cursor: pointer; }
.wiz__pill.is-done b { background: var(--green-600); color: #fff; }

.wiz__grid { display: grid; gap: 1.6rem; grid-template-columns: 1fr; align-items: start; }
@media (min-width: 900px) { .wiz__grid { grid-template-columns: 1fr 300px; } }
.wiz-form { min-width: 0; }
.wiz__viewport { overflow: hidden; min-width: 0; }
.wiz__track { display: flex; width: 100%; transition: transform .45s var(--ease); }
@media (prefers-reduced-motion: reduce) { .wiz__track { transition: none; } }
.wiz__step { flex: 0 0 100%; min-width: 0; padding: .3rem; }
.wiz__h { font-size: 1.4rem; margin: 0 0 1.2rem; }
.wiz__nav { display: flex; justify-content: space-between; align-items: center; gap: 1rem; margin-top: 1.6rem; }
.wiz__alert { margin: 0 0 1rem; }
.wiz-row { display: flex; flex-wrap: wrap; gap: 1rem; align-items: end; margin-bottom: 1.4rem; }
.wiz-cal { margin: 0; }
.wiz-units { min-height: 80px; }
.wiz-empty { text-align: center; padding: 2.5rem 1rem; color: var(--muted); }
.wiz-empty .ico { width: 44px; height: 44px; color: var(--sand-300); margin-bottom: .6rem; }
.alert-error { background: #fbe9e6; color: #b3261e; border: 1px solid #e3a79f; border-radius: 12px; padding: .8rem 1rem; margin-bottom: 1rem; font-weight: 600; }

/* summary rail */
.wiz__summary { background: var(--white); border: 1px solid var(--sand-200); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm); padding: 1.3rem; position: sticky; top: 84px; }
.wiz__summary h3 { font-size: 1.05rem; margin: 0 0 1rem; }
.wiz-sum__row { display: flex; align-items: flex-start; gap: .6rem; margin-bottom: .8rem; font-size: .95rem; color: var(--ink); }
.wiz-sum__row .ico { width: 20px; height: 20px; color: var(--green-600); flex: none; margin-top: 1px; }
.wiz-sum__total { display: flex; justify-content: space-between; align-items: baseline; margin-top: 1rem;
  padding-top: 1rem; border-top: 1px solid var(--sand-200); font-weight: 600; }
.wiz-sum__total b { font-size: 1.3rem; color: var(--green-800); }

/* ---- Guest page: prominent dates, collapsible price, warm confirmation ---- */
.gd-dates { display: flex; align-items: center; gap: .9rem; background: var(--green-100); border-radius: 14px;
  padding: 1rem 1.2rem; margin-bottom: 1.4rem; }
.gd-dates .ico { width: 28px; height: 28px; color: var(--green-700); flex: none; }
.gd-dates b { display: block; font-size: 1.35rem; font-family: var(--font-display); color: var(--green-900); line-height: 1.15; }
.gd-dates span { color: var(--muted); font-size: .88rem; }
.gd-price { margin-top: 1.2rem; border-top: 1px solid var(--sand-200); }
.gd-price summary { display: flex; align-items: center; gap: .6rem; cursor: pointer; font-weight: 700;
  color: var(--green-900); padding: .9rem 0 .4rem; list-style: none; }
.gd-price summary::-webkit-details-marker { display: none; }
.gd-price summary span { flex: 1; }
.gd-price summary b { color: var(--green-800); }
.gd-price summary::after { content: "+"; color: var(--green-600); font-weight: 400; font-size: 1.1rem; }
.gd-price[open] summary::after { content: "\2013"; }
.gd-welcome { margin-top: 1rem; }
.gd-welcome__h { font-family: var(--font-display); font-size: 1.2rem; color: var(--green-900); margin: 0 0 .3rem; }
.gd-dir__row { display: flex; align-items: center; gap: .5rem; margin: .55rem 0; font-size: .95rem; }
.gd-dir__row .ico { width: 18px; height: 18px; color: var(--green-600); flex: none; }
.gd-dir__links { display: flex; gap: .5rem; flex-wrap: wrap; margin-top: .9rem; }

/* ---- Wizard: smart accommodation type-cards ---- */
.typecards { display: grid; gap: 1rem; grid-template-columns: 1fr; }
@media (min-width: 560px) { .typecards { grid-template-columns: 1fr 1fr; } }
.typecard { position: relative; display: flex; flex-direction: column; background: #fff;
  border: 1.5px solid var(--sand-200); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); transition: border-color .15s, box-shadow .15s; }
.typecard.is-picked { border-color: var(--green-600); box-shadow: 0 0 0 2px color-mix(in srgb, var(--green-500) 30%, transparent); }
.typecard--rec { border-color: var(--green-500); }
.typecard__badge { position: absolute; top: .7rem; left: .7rem; background: var(--green-700); color: #fff;
  font-size: .68rem; font-weight: 700; padding: .25rem .6rem; border-radius: 999px; text-transform: uppercase; letter-spacing: .04em; }
.typecard__img { width: 100%; height: 140px; object-fit: cover; }
.typecard__body { padding: 1rem 1.1rem 1.1rem; display: flex; flex-direction: column; gap: .4rem; flex: 1; }
.typecard__name { font-size: 1.1rem; margin: 0; color: var(--green-900); }
.typecard__meta { margin: 0; color: var(--muted); font-size: .85rem; display: flex; align-items: center; gap: .35rem; flex-wrap: wrap; }
.typecard__meta .ico { width: 15px; height: 15px; color: var(--green-600); }
.typecard__foot { display: flex; align-items: center; justify-content: space-between; gap: .8rem; margin-top: auto; padding-top: .7rem; }
.typecard__price { font-weight: 800; color: var(--green-700); white-space: nowrap; }
.typecard__price small { font-weight: 400; color: var(--muted); }

/* ---- Guest page: consistent 2-column layout ---- */
.booking-grid { display: grid; gap: 1.6rem; grid-template-columns: 1fr; align-items: start; }
@media (min-width: 880px) { .booking-grid { grid-template-columns: 1.5fr 1fr; } }
.booking-grid__main, .booking-grid__side { display: flex; flex-direction: column; gap: 1.6rem; min-width: 0; }
.booking-faq h3 { margin-top: 0; }
.gd-faq-item { border-bottom: 1px solid var(--sand-200); }
.gd-faq-item:last-child { border-bottom: 0; }
.gd-faq-item > summary { font-weight: 700; cursor: pointer; color: var(--green-900); padding: .85rem 1.6rem .85rem 0;
  list-style: none; position: relative; }
.gd-faq-item > summary::-webkit-details-marker { display: none; }
.gd-faq-item > summary::after { content: "+"; position: absolute; right: .2rem; top: .8rem; color: var(--green-600); font-weight: 400; }
.gd-faq-item[open] > summary::after { content: "\2013"; }
.gd-faq-item .prose { padding: 0 0 .9rem; color: var(--muted); }

/* ---- Review: graphical star picker (reverse-order radios, CSS-only) ---- */
.starpick { display: inline-flex; flex-direction: row-reverse; justify-content: flex-end; gap: .15rem; font-size: 2.1rem; line-height: 1; }
.starpick input { position: absolute; width: 1px; height: 1px; opacity: 0; }
.starpick label { color: var(--sand-300); cursor: pointer; transition: color .12s, transform .1s; }
.starpick label:hover { transform: scale(1.12); }
.starpick input:checked ~ label, .starpick label:hover, .starpick label:hover ~ label { color: #e6a933; }
.starpick input:focus-visible + label { outline: 2px solid var(--green-500); outline-offset: 3px; border-radius: 4px; }

/* ---- Season & hours banner ---- */
.seasonbar { background: var(--green-800); color: #eaf3ec; }
.seasonbar__inner { display: flex; flex-wrap: wrap; justify-content: center; gap: .4rem 2rem;
  padding: .7rem 1.25rem; font-size: .92rem; font-weight: 500; }
.seasonbar span { display: inline-flex; align-items: center; gap: .5rem; }
.seasonbar .ico { width: 18px; height: 18px; color: #bfe3cd; }

/* translucent variant: pinned to the top of the hero, just under the sticky nav */
.seasonbar--hero {
  position: absolute; top: 0; left: 0; right: 0; z-index: 3;
  background: color-mix(in srgb, var(--green-900) 42%, transparent);
  backdrop-filter: saturate(1.2) blur(3px);
  border-bottom: 1px solid rgba(255, 255, 255, .14);
  color: #fff;
}
.seasonbar--hero .seasonbar__inner { padding: .5rem 1.25rem; font-size: .88rem; }
.seasonbar--hero .ico { color: #fff; }

/* ---- Legal / Podmínky page ---- */
.legal { max-width: 760px; margin: 0 auto; }
.legal__toc { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 2.5rem; }
.legal__toc a {
  display: inline-flex; align-items: center; padding: .5rem .9rem; border-radius: 999px;
  background: var(--green-100); color: var(--green-800); font-weight: 600; font-size: .9rem;
  text-decoration: none; border: 1px solid transparent; transition: border-color .15s, background .15s;
}
.legal__toc a:hover { background: #fff; border-color: var(--green-500); }
.legal__block { scroll-margin-top: 90px; padding-top: 1.5rem; }
.legal__block + .legal__block { margin-top: 2.75rem; border-top: 1px solid var(--sand-200); }
.legal__block h2 { color: var(--green-800); margin-bottom: 1rem; }
.legal__block h3 { font-size: 1rem; color: var(--green-700); margin-bottom: .35rem; }
.legal__deposit {
  display: flex; gap: .7rem; align-items: flex-start; margin-bottom: 1.1rem; padding: .85rem 1.1rem;
  background: var(--green-100); border-radius: var(--radius); font-size: .96rem;
}
.legal__deposit .ico { width: 22px; height: 22px; color: var(--green-700); flex: none; margin-top: .1rem; }
.legal__card {
  background: var(--sand-100); border: 1px solid var(--sand-200); border-radius: var(--radius);
  padding: 1.1rem 1.3rem; margin-bottom: 1.4rem;
}
.legal__card p { margin: 0; line-height: 1.7; }
.legal .prose { line-height: 1.75; }
.legal .prose p { margin-bottom: 1rem; }
.legal__foot { margin-top: 2.5rem; font-size: .92rem; }

/* ---- Pro rodiny (warm family showcase) ---- */
.family {
  position: relative; overflow: hidden;
  background:
    radial-gradient(120% 90% at 50% -10%, var(--green-100) 0%, transparent 55%),
    linear-gradient(180deg, #fbfaf5 0%, var(--sand-100) 100%);
}
.family__glow {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(48% 40% at 85% 18%, rgba(226, 162, 74, .16), transparent 70%),
    radial-gradient(46% 42% at 10% 88%, rgba(74, 157, 107, .13), transparent 70%);
}
.family .container { position: relative; z-index: 1; }
.eyebrow--warm { display: inline-flex; align-items: center; gap: .45rem; color: var(--sun); }
.eyebrow--warm .ico { width: 18px; height: 18px; }
.family__lead { max-width: 620px; margin: .4rem auto 0; color: var(--muted); font-size: 1.06rem; line-height: 1.7; }
.famgrid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.1rem; margin-top: 2.75rem; }
.famcard {
  text-align: center; background: #fff; border: 1px solid var(--sand-200);
  border-radius: var(--radius-lg); padding: 1.6rem 1.1rem; box-shadow: var(--shadow-sm);
  transition: transform .16s, box-shadow .16s;
}
.famcard:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.famcard__ico {
  display: inline-flex; align-items: center; justify-content: center;
  width: 58px; height: 58px; margin-bottom: .9rem; border-radius: 50%;
  background: var(--green-100); color: var(--green-700);
}
.famcard__ico .ico { width: 30px; height: 30px; stroke-width: 1.7; }
.famcard h3 { font-size: 1.05rem; margin: 0 0 .3rem; color: var(--green-900); }
.famcard p { margin: 0; color: var(--muted); font-size: .9rem; line-height: 1.5; }
@media (max-width: 900px) { .famgrid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 460px) { .famgrid { gap: .7rem; } .famcard { padding: 1.2rem .7rem; } }

/* ---- Hand-drawn section dividers ----
   One rule gives every tinted band an organic wavy top + bottom edge (sand-100 shapes reaching into
   the sand-50 body). A taller, more pronounced wave flows the last content section into the green
   footer. Waves are decorative: z-index 0, pointer-events none, content sits above them. */
.section--tint { position: relative; }
.section--tint > * { position: relative; z-index: 1; }
.section--tint::before, .section--tint::after {
  content: ""; position: absolute; left: 0; right: 0; height: 26px; z-index: 0; pointer-events: none;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 26' preserveAspectRatio='none'%3E%3Cpath d='M0 11 C170 1 330 20 510 12 C690 4 850 22 1030 12 C1210 3 1340 16 1440 10 L1440 26 L0 26 Z' fill='%23f3ecdf'/%3E%3C/svg%3E") center / 100% 100% no-repeat;
}
.section--tint::before { bottom: 100%; }
.section--tint::after { top: 100%; transform: scaleY(-1); }

/* ---- Illustrated area map ---- */
.areamap { margin: 0; }
.areamap__svg {
  display: block; width: 100%; height: auto; max-width: 920px; margin: 0 auto;
  border-radius: var(--radius-lg); box-shadow: var(--shadow-md);
  border: 1px solid var(--sand-200); background: #e7f0dc;
}
.areamap__svg text { font-family: var(--font-body); }
.areamap__svg .am-lake { fill: #ffffff; font-weight: 700; font-size: 21px; text-anchor: middle;
  letter-spacing: .04em; opacity: .92; }
.areamap__svg .am-zone rect { fill: #16301f; }
.areamap__svg .am-zone text { fill: #fff; font-weight: 600; font-size: 15px; text-anchor: middle; dominant-baseline: middle; }
.areamap__svg .am-pin circle { fill: #fff; stroke: #2c6244; stroke-width: 2.4; }
.areamap__svg .am-pin text { fill: #1d4029; font-weight: 600; font-size: 15px; text-anchor: middle;
  paint-order: stroke; stroke: #e7f0dc; stroke-width: 3.5px; stroke-linejoin: round; }
.areamap__svg .am-entry text { fill: #2c6244; font-weight: 700; font-size: 14px; text-anchor: middle;
  paint-order: stroke; stroke: #e7f0dc; stroke-width: 3px; }
.areamap__svg .am-compass text { fill: #7a8a72; font-weight: 700; font-size: 13px; text-anchor: middle; }
.areamap__note { text-align: center; color: var(--muted); font-size: .88rem; margin-top: 1rem; }

.site-footer { position: relative; }
.site-footer::before {
  content: ""; position: absolute; left: 0; right: 0; bottom: 100%; height: 52px; z-index: 1; pointer-events: none;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 52' preserveAspectRatio='none'%3E%3Cpath d='M0 26 C160 6 320 12 480 24 C660 38 800 46 960 32 C1120 18 1280 8 1440 22 L1440 52 L0 52 Z' fill='%2316301f'/%3E%3C/svg%3E") center / 100% 100% no-repeat;
}

/* ---- Responsive images: WebP (with JPG fallback) for the static photo backgrounds ---- */
.hero__slide--1 { background-image: url("../img/hero-1.jpg"); background-image: image-set(url("../img/hero-1.webp") type("image/webp"), url("../img/hero-1.jpg") type("image/jpeg")); }
.hero__slide--2 { background-image: url("../img/hero-2.jpg"); background-image: image-set(url("../img/hero-2.webp") type("image/webp"), url("../img/hero-2.jpg") type("image/jpeg")); }
.hero__slide--3 { background-image: url("../img/hero-3.jpg"); background-image: image-set(url("../img/hero-3.webp") type("image/webp"), url("../img/hero-3.jpg") type("image/jpeg")); }
.hero__slide--4 { background-image: url("../img/hero-4.jpg"); background-image: image-set(url("../img/hero-4.webp") type("image/webp"), url("../img/hero-4.jpg") type("image/jpeg")); }
.area__media--osada, .area__media--atc { background-position: center; background-size: cover; }
.area__media--osada {
  background-image: linear-gradient(to top, rgba(0,0,0,.4), transparent 55%), url("../img/area-osada.jpg");
  background-image: linear-gradient(to top, rgba(0,0,0,.4), transparent 55%), image-set(url("../img/area-osada.webp") type("image/webp"), url("../img/area-osada.jpg") type("image/jpeg"));
}
.area__media--atc {
  background-image: linear-gradient(to top, rgba(0,0,0,.4), transparent 55%), url("../img/area-atc.jpg");
  background-image: linear-gradient(to top, rgba(0,0,0,.4), transparent 55%), image-set(url("../img/area-atc.webp") type("image/webp"), url("../img/area-atc.jpg") type("image/jpeg"));
}

/* ---- Accessibility: skip link + a visible keyboard focus ring for everyone ---- */
.skip-link {
  position: absolute; left: 8px; top: -60px; z-index: 200;
  background: var(--green-800); color: #fff; padding: .7rem 1.1rem; border-radius: 10px;
  font-weight: 700; text-decoration: none; transition: top .15s;
}
.skip-link:focus { top: 8px; }
:focus-visible { outline: 3px solid var(--green-500); outline-offset: 2px; border-radius: 4px; }
a:focus-visible, .btn:focus-visible, button:focus-visible, summary:focus-visible {
  outline: 3px solid var(--green-500); outline-offset: 3px;
}

/* ---- Reduced motion: honour the OS preference across every animation/transition ---- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important; animation-iteration-count: 1 !important;
    transition-duration: .001ms !important; scroll-behavior: auto !important;
  }
}
