:root{
  --bg: #ffffff;
  --text: #0f172a;
  --muted: #475569;
  --line: #e2e8f0;
  --alt: #f8fafc;

  --brand: #166534;   /* tmavší zelená */
  --brand2: #14532d;
  --btnText: #ffffff;

  --radius: 18px;
  --shadow: 0 10px 25px rgba(2, 6, 23, .08);
  --max: 1120px;
}

*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

a{ color: inherit; }
.container{
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
}

.skip{
  position:absolute; left:-9999px; top:auto;
}
.skip:focus{
  left: 12px; top: 12px;
  background: #fff;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 10px;
  z-index: 9999;
}
.note--right{
  margin-top:6px;
  margin-left:170px; /* dorovnání pod druhé tlačítko */
  opacity:.75;
}


/* Header */
.header{
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 16px;
  padding: 12px 0;
}
.brand{
  text-decoration:none;
  display:flex;
  flex-direction:column;
  gap: 2px;
}
.brand__title{ font-weight: 800; letter-spacing: .2px; }
.brand__subtitle{ font-size: 13px; color: var(--muted); }

.nav{
  display:flex;
  align-items:center;
  gap: 14px;
}
.nav a{
  text-decoration:none;
  font-weight: 600;
  color: var(--muted);
}
.nav a:hover{ color: var(--text); }

.navToggle{
  display:none;
  border: 1px solid var(--line);
  background: #fff;
  padding: 10px 12px;
  border-radius: 12px;
  font-weight: 700;
}

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 14px;
  background: var(--brand);
  color: var(--btnText);
  text-decoration:none;
  font-weight: 800;
  border: 1px solid transparent;
  box-shadow: var(--shadow);
}
.btn:hover{ background: var(--brand2); }
.btn--ghost{
  background: transparent;
  color: var(--brand);
  border-color: rgba(22, 101, 52, .25);
  box-shadow: none;
}
.btn--ghost:hover{
  background: rgba(22, 101, 52, .07);
}
.btn--small{ padding: 10px 12px; border-radius: 12px; }

/* Sections */
.section{ padding: 56px 0; }
.section--alt{ background: var(--alt); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }

h1{ font-size: clamp(32px, 4vw, 44px); line-height: 1.1; margin: 0 0 12px; }
h2{ font-size: clamp(24px, 3vw, 32px); margin: 0 0 10px; }
h3{ margin: 0 0 8px; }

.lead{ font-size: 18px; color: var(--muted); max-width: 48ch; }
.leadSmall{ color: var(--muted); max-width: 70ch; }
.small{ font-size: 14px; }
.muted{ color: var(--muted); }
.note{ margin-top: 14px; color: var(--muted); font-size: 14px; }

/* Hero */
.hero{
  padding: 42px 0 20px;
}
.hero__grid{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 26px;
  align-items:center;
}
.badge{
  display:inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: var(--muted);
  background: #fff;
  font-weight: 600;
  width: fit-content;
}
.hero__cta{
  display:flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 18px 0 14px;
}
.hero__bullets{
  margin: 0;
  padding: 0 0 0 18px;
  color: var(--muted);
}
.hero__media{
  border-radius: var(--radius);
  overflow:hidden;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow);
}
.mediaPlaceholder{
  min-height: 320px;
  display:grid;
  place-items:center;
  background:
    radial-gradient(900px 250px at 30% 10%, rgba(22,101,52,.14), transparent 60%),
    radial-gradient(600px 280px at 90% 40%, rgba(2,132,199,.12), transparent 60%),
    #fff;
}
.mediaPlaceholder__inner{
  text-align:center;
  color: var(--muted);
}

/* Cards */
.cards{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.card{
  background:#fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
}
.card p{ margin: 0; color: var(--muted); }

/* Two columns */
.twoCol{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 22px;
  align-items:start;
}

/* Lists */
.checklist{
  list-style:none;
  padding: 0;
  margin: 14px 0 0;
}
.checklist li{
  padding-left: 26px;
  position: relative;
  margin: 10px 0;
}
.checklist li::before{
  content: "✓";
  position:absolute;
  left: 0;
  top: 0;
  color: var(--brand);
  font-weight: 900;
}

.listGrid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 14px;
}
.listBox{
  background:#fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
}
.listBox ul{ margin: 0; padding-left: 18px; color: var(--muted); }

/* Gallery teaser */
.galleryTeaser{
  background:#fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
}
.thumbs{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin: 10px 0 14px;
}
.thumb{
  border-radius: 14px;
  border: 1px solid var(--line);
  min-height: 92px;
  background:
    radial-gradient(220px 80px at 20% 10%, rgba(22,101,52,.15), transparent 70%),
    #fff;
}

/* Pricing */
.priceGrid{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 14px;
}
.priceCard{
  background:#fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
}
.price{ margin: 6px 0 12px; color: var(--muted); }
.priceCard ul{ margin: 0; padding-left: 18px; color: var(--muted); }

/* Map box */
.mapBox{
  background:#fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
}
.mapPlaceholder{
  margin-top: 12px;
  border-radius: 14px;
  border: 1px solid var(--line);
  min-height: 220px;
  display:grid;
  place-items:center;
  color: var(--muted);
  background: #fff;
}

/* Contact */
.contactCard{
  background:#fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
}
.contactCard a{ color: var(--brand); font-weight: 800; text-decoration: none; }
.contactCard a:hover{ text-decoration: underline; }

/* Form */
.form{
  background:#fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
}
label{
  display:block;
  font-weight: 700;
  margin: 12px 0;
}
input, textarea{
  width: 100%;
  margin-top: 6px;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid var(--line);
  outline: none;
  font: inherit;
}
input:focus, textarea:focus{
  border-color: rgba(22, 101, 52, .45);
  box-shadow: 0 0 0 4px rgba(22, 101, 52, .12);
}
button[disabled]{ opacity: .6; cursor: not-allowed; }

/* Footer */
.footer{
  padding: 30px 0;
  border-top: 1px solid var(--line);
}
.footer__inner{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap: 14px;
  flex-wrap: wrap;
}

/* Responsive */
@media (max-width: 880px){
  .hero__grid, .twoCol{ grid-template-columns: 1fr; }
  .cards{ grid-template-columns: 1fr; }
  .listGrid{ grid-template-columns: 1fr; }
  .priceGrid{ grid-template-columns: 1fr; }

  .navToggle{ display:inline-flex; }
  .nav{
    position:absolute;
    right: 16px;
    top: 60px;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding: 12px;
    border-radius: 16px;
    border: 1px solid var(--line);
    background: rgba(255,255,255,.98);
    box-shadow: var(--shadow);
    display:none;
    min-width: 220px;
  }
  .nav.isOpen{ display:flex; }
  .nav a{ padding: 10px 10px; border-radius: 12px; }
  .nav a:hover{ background: rgba(2, 6, 23, .04); }
}
.hero__media::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(90deg, rgba(255,255,255,.25), rgba(255,255,255,0));
  border-radius:18px;
}
.thumb img{
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
/* =========================
   VIZUÁL – jemnější, modernější
   vlož na konec styles.css
========================= */

:root{
  --bg: #f6f8fb;
  --card: #ffffff;
  --text: #0f172a;
  --muted: #475569;
  --line: #e6edf5;
  --shadow: 0 16px 40px rgba(15, 23, 42, .08);
  --radius: 18px;
  --accent: #0f5f3a; /* zelená tlačítek */
  --accent2:#118a51;
}

html{ scroll-behavior:smooth; }
body{
  background: radial-gradient(1200px 600px at 20% 0%, rgba(17,138,81,.08), transparent 60%),
              radial-gradient(900px 500px at 85% 15%, rgba(15,95,58,.08), transparent 55%),
              var(--bg);
  color: var(--text);
}

/* jemnější “karta” všude */
.card, .listBox, .galleryTeaser, .priceCard, .sectionCard{
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

/* navbar – lehce skleněný efekt */
.nav{
  backdrop-filter: saturate(140%) blur(10px);
  background: rgba(255,255,255,.78);
  border-bottom: 1px solid rgba(230,237,245,.9);
}

/* tlačítka – konzistentní */
.btn{
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: .2px;
}
.btn--primary{
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  border: 0;
  box-shadow: 0 12px 26px rgba(17,138,81,.22);
}
.btn--primary:hover{ filter: brightness(1.03); transform: translateY(-1px); }
.btn--ghost{
  border: 1px solid rgba(17,138,81,.28);
  background: rgba(17,138,81,.06);
}
.btn--ghost:hover{ background: rgba(17,138,81,.10); }

/* HERO fotka – aby vypadala “prémiově” */
.hero__media{
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.heroImg{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: brightness(1.05) contrast(1.06) saturate(1.05);
  transform: scale(1.01);
}
.hero__media::after{
  content:"";
  position:absolute;
  inset:0;
  background: radial-gradient(600px 340px at 20% 30%, rgba(255,255,255,.18), transparent 60%);
  pointer-events:none;
}

/* nadpisy – čistší */
h1, h2, h3{
  letter-spacing: -0.02em;
}
p{ color: var(--muted); }

/* Galerie náhledy – jednotný poměr + čistý rám */
.thumbs .thumb{
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(230,237,245,.9);
  box-shadow: 0 10px 22px rgba(15,23,42,.06);
  transition: transform .18s ease, box-shadow .18s ease;
}
.thumbs .thumb:hover{
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(15,23,42,.10);
}
.thumbs .thumb img{
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display:block;
}

/* Sekce – víc “vzduchu” */
.section{ padding: 72px 0; }
.container{ max-width: 1120px; }

/* Checklist – hezčí čitelnost */
.checklist li{ margin: 10px 0; }
.note{ color: rgba(71,85,105,.9); }
/* ===== A1 PREMIUM: mikro-animace + “luxury” detaily ===== */

/* jemnější písmo a lepší čitelnost */
body{
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* jemná animace hoverů */
.card, .listBox, .galleryTeaser, .priceCard, .sectionCard, .hero__media{
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.card:hover, .listBox:hover, .galleryTeaser:hover, .priceCard:hover, .sectionCard:hover{
  transform: translateY(-2px);
  box-shadow: 0 20px 50px rgba(15,23,42,.10);
  border-color: rgba(230,237,245,.95);
}

/* tlačítka “živější” */
.btn{
  transition: transform .18s ease, filter .18s ease, box-shadow .18s ease;
}
.btn:hover{ transform: translateY(-1px); }
.btn:active{ transform: translateY(0px); }

/* „luxusní“ highlight v hero fotce */
.hero__media::before{
  content:"";
  position:absolute;
  inset:-40%;
  background: linear-gradient(120deg, transparent 40%, rgba(255,255,255,.22), transparent 60%);
  transform: rotate(8deg);
  opacity: .0;
  transition: opacity .25s ease;
  pointer-events:none;
}
.hero__media:hover::before{ opacity: .9; }

/* Galerie: jemný zoom a zvýraznění */
.thumbs .thumb img{
  transition: transform .25s ease, filter .25s ease;
}
.thumbs .thumb:hover img{
  transform: scale(1.03);
  filter: contrast(1.03) saturate(1.04);
}

/* Fade-in sekcí při scrollu (doplní JS níže) */
.reveal{
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.is-visible{
  opacity: 1;
  transform: translateY(0);
}

/* jemný separator mezi sekcemi */
.section{
  position: relative;
}
.section::after{
  content:"";
  position:absolute;
  left:0; right:0;
  bottom:-1px;
  height:1px;
  background: linear-gradient(90deg, transparent, rgba(230,237,245,.9), transparent);
}
// A1: reveal animace sekcí při scrollu
const revealEls = document.querySelectorAll('.section, .card, .galleryTeaser, .listBox, .priceCard');
revealEls.forEach(el => el.classList.add('reveal'));

const io = new IntersectionObserver(entries => {
  entries.forEach(e => {
    if (e.isIntersecting) {
      e.target.classList.add('is-visible');
      io.unobserve(e.target);
    }
  });
}, { threshold: 0.12 });

revealEls.forEach(el => io.observe(el));
.mapEmbed {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0,0,0,.08);
  overflow: hidden;
}
.mapNote {
  font-size: 0.85rem;
  color: #6b7280;
  margin-top: 6px;
}
<!-- malé pomocné CSS, aby se případně "missing" náhledy tvářily hezky -->
  <style>
    .thumb img{width:100%;height:100%;object-fit:cover;border-radius:12px;display:block}
    .thumb--missing{
      background: linear-gradient(135deg, rgba(10,60,40,.08), rgba(10,60,40,.02));
      border-radius:12px;
      position:relative;
    }
    .thumb--missing::after{
      content:"chybí soubor";
      position:absolute; inset:auto 10px 10px 10px;
      font-size:12px; opacity:.6;
    }
  </style>
  /* === Galerie – fallback při chybějícím obrázku === */
.thumb img{
  width:100%;
  height:100%;
  object-fit:cover;
  border-radius:12px;
  display:block;
}

.thumb--missing{
  background: linear-gradient(135deg, rgba(10,60,40,.08), rgba(10,60,40,.02));
  border-radius:12px;
  position:relative;
}

.thumb--missing::after{
  content:"chybí soubor";
  position:absolute;
  inset:auto 10px 10px 10px;
  font-size:12px;
  opacity:.6;
}
/* Rezervace – centrovaný layout */
.rezCtaRow{
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
  gap:12px;
}

.rezCtaBtns{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  justify-content:center;
}

#rezervace .card{
  max-width: 860px;
  margin: 0 auto;
}
.footer{
  padding: 22px 0;
}
.footer__inner{
  justify-content:center;
  text-align:center;
}
/* Rezervace – nadpis opticky nad kartou */
.rezHeader{
  max-width: 820px;      /* stejná jako karta */
  margin: 0 auto 22px;   /* centrovat + mezera pod headerem */
  text-align: center;
}
