/* ==========================================================================
   Penzion Gretl — Pohorsko, Šumava
   Barvy vycházejí z chalupy samotné: okrová fasáda, cihlová střecha,
   šumavský les a sníh na dvoře.
   ========================================================================== */

:root {
  --forest:      #1b3a2d;
  --forest-mid:  #2c5744;
  --moss:        #6e8f68;
  --ochre:       #d69a3d;
  --ochre-deep:  #ab741f;
  --brick:       #9c4a30;
  --cream:       #fbf6ec;
  --sand:        #f3ead8;
  --sand-deep:   #e7d9bf;
  --bark:        #4a3a2c;
  --ink:         #221f1a;
  --muted:       #6d6458;

  --radius-s: 8px;
  --radius:   16px;
  --radius-l: 26px;

  --shadow-s: 0 1px 2px rgba(34, 31, 26, .06), 0 2px 8px rgba(34, 31, 26, .05);
  --shadow:   0 2px 6px rgba(34, 31, 26, .07), 0 12px 32px rgba(34, 31, 26, .10);
  --shadow-l: 0 8px 20px rgba(34, 31, 26, .10), 0 30px 60px rgba(34, 31, 26, .16);

  --serif: "Fraunces", "Iowan Old Style", Georgia, "Times New Roman", serif;
  --sans:  "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  --gutter: clamp(1.25rem, 4vw, 2.5rem);
  --section: clamp(4rem, 9vw, 7.5rem);
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--sans);
  font-size: clamp(1rem, .96rem + .2vw, 1.0625rem);
  line-height: 1.7;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, picture, svg { display: block; max-width: 100%; }
/* <picture> je jen obal kolem <img>. Bez tohoto pravidla se výška 100 %
   vztahuje k obalu s automatickou výškou a obrázek pak svůj rám nevyplní
   (přeteče a ořízne se odshora místo ořezu na střed). */
.hero-media picture,
.animal-media picture,
.card-media picture,
.gallery picture { height: 100%; }
img { height: auto; }
a { color: inherit; }
button { font: inherit; color: inherit; }

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -.015em;
  text-wrap: balance;
}
h1 { font-size: clamp(2.5rem, 1.6rem + 4.4vw, 5rem); }
h2 { font-size: clamp(1.9rem, 1.4rem + 2.3vw, 3.1rem); }
h3 { font-size: clamp(1.25rem, 1.1rem + .7vw, 1.6rem); }
p  { text-wrap: pretty; }

:focus-visible {
  outline: 3px solid var(--ochre);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: absolute; left: 50%; top: 0; transform: translate(-50%, -110%);
  z-index: 200; background: var(--forest); color: var(--cream);
  padding: .75rem 1.25rem; border-radius: 0 0 var(--radius-s) var(--radius-s);
  font-weight: 600; text-decoration: none;
}
.skip-link:focus { transform: translate(-50%, 0); }

/* ---------- layout ---------- */
.wrap { width: min(1200px, 100% - var(--gutter) * 2); margin-inline: auto; }
.wrap--narrow { width: min(760px, 100% - var(--gutter) * 2); }
.section { padding-block: var(--section); }
.section--sand { background: var(--sand); }
.section--forest { background: var(--forest); color: var(--cream); }
.section--forest h2, .section--forest h3 { color: var(--cream); }

/* ---------- typografické drobnosti ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: .6rem;
  font-family: var(--sans);
  font-size: .78rem; font-weight: 600;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--ochre-deep);
  margin-bottom: 1rem;
}
.eyebrow::before {
  content: ""; width: 28px; height: 2px; border-radius: 2px;
  background: currentColor; opacity: .55;
}
.section--forest .eyebrow { color: var(--ochre); }

.lede {
  font-size: clamp(1.1rem, 1.02rem + .4vw, 1.35rem);
  line-height: 1.6;
  color: var(--bark);
}
.section--forest .lede { color: #d9e4dc; }

.section-head { max-width: 62ch; margin-bottom: clamp(2.25rem, 5vw, 3.5rem); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head--center .eyebrow::before { display: none; }

.prose p + p { margin-top: 1.15em; }
.prose strong { color: var(--forest); }

/* ---------- tlačítka ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  padding: .95rem 1.75rem;
  border: 1.5px solid transparent; border-radius: 999px;
  font-weight: 600; font-size: .98rem; letter-spacing: .01em;
  text-decoration: none; cursor: pointer;
  transition: transform .18s ease, background-color .18s ease, color .18s ease,
              border-color .18s ease, box-shadow .18s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn--primary { background: var(--ochre); color: #2b1d06; box-shadow: var(--shadow-s); }
.btn--primary:hover { background: #e4a84b; box-shadow: var(--shadow); }
.btn--ghost { border-color: rgba(251, 246, 236, .5); color: var(--cream); }
.btn--ghost:hover { background: rgba(251, 246, 236, .12); border-color: var(--cream); }
.btn--outline { border-color: var(--forest); color: var(--forest); }
.btn--outline:hover { background: var(--forest); color: var(--cream); }
.btn-row { display: flex; flex-wrap: wrap; gap: .85rem; }

.arrow-link {
  display: inline-flex; align-items: center; gap: .5rem;
  font-weight: 600; text-decoration: none; color: var(--forest-mid);
  border-bottom: 1.5px solid rgba(44, 87, 68, .3);
  padding-bottom: 2px;
  transition: gap .18s ease, border-color .18s ease;
}
.arrow-link:hover { gap: .85rem; border-color: var(--ochre); }
.section--forest .arrow-link { color: var(--ochre); border-color: rgba(214, 154, 61, .4); }

/* ==========================================================================
   Hlavička
   ========================================================================== */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  padding-block: 1rem;
  transition: background-color .3s ease, box-shadow .3s ease, padding .3s ease;
}
.site-header::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(to bottom, rgba(27, 58, 45, .55), transparent);
  transition: opacity .3s ease;
}
.site-header.is-solid {
  background: rgba(251, 246, 236, .92);
  -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(74, 58, 44, .12), 0 6px 24px rgba(34, 31, 26, .07);
  padding-block: .6rem;
}
.site-header.is-solid::before { opacity: 0; }

.header-inner { display: flex; align-items: center; gap: 1.5rem; }

.brand {
  display: flex; align-items: center; gap: .8rem;
  text-decoration: none; margin-right: auto;
}
.brand-mark {
  width: 44px; height: 44px; flex: none;
  border-radius: 50%;
  display: grid; place-items: center;
  background: var(--ochre);
  color: #2b1d06;
  font-family: var(--serif); font-weight: 700; font-size: 1.35rem;
  letter-spacing: -.02em;
  box-shadow: inset 0 0 0 1.5px rgba(43, 29, 6, .18);
}
.brand-text { display: grid; line-height: 1.15; }
.brand-name {
  font-family: var(--serif); font-weight: 600;
  font-size: 1.3rem; letter-spacing: .22em; color: var(--cream);
  transition: color .3s ease;
}
.brand-tag {
  font-size: .68rem; letter-spacing: .14em; text-transform: uppercase;
  color: rgba(251, 246, 236, .78); font-weight: 500;
  transition: color .3s ease;
}
.is-solid .brand-name { color: var(--forest); }
.is-solid .brand-tag { color: var(--muted); }

.nav { display: flex; align-items: center; gap: .25rem; }
.nav a {
  padding: .55rem .85rem; border-radius: 999px;
  text-decoration: none; font-weight: 500; font-size: .95rem;
  color: rgba(251, 246, 236, .92);
  transition: background-color .2s ease, color .2s ease;
}
.nav a:hover { background: rgba(251, 246, 236, .16); }
.nav a[aria-current="page"] { color: var(--ochre); font-weight: 600; }
.is-solid .nav a { color: var(--bark); }
.is-solid .nav a:hover { background: rgba(44, 87, 68, .1); color: var(--forest); }
.is-solid .nav a[aria-current="page"] { color: var(--ochre-deep); }

.header-cta {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .6rem 1.15rem; border-radius: 999px;
  background: var(--ochre); color: #2b1d06;
  font-weight: 600; font-size: .92rem; text-decoration: none; white-space: nowrap;
  transition: background-color .2s ease, transform .2s ease;
}
.header-cta:hover { background: #e4a84b; transform: translateY(-1px); }

.nav-toggle {
  display: none; width: 46px; height: 46px; flex: none;
  border: 1.5px solid rgba(251, 246, 236, .45); border-radius: 12px;
  background: rgba(27, 58, 45, .25); cursor: pointer;
  align-items: center; justify-content: center;
}
.is-solid .nav-toggle { border-color: rgba(74, 58, 44, .3); background: transparent; }
.nav-toggle span { display: block; width: 20px; height: 2px; border-radius: 2px; background: var(--cream); position: relative; transition: background-color .2s; }
.nav-toggle span::before, .nav-toggle span::after {
  content: ""; position: absolute; left: 0; width: 20px; height: 2px;
  border-radius: 2px; background: currentColor; background: inherit;
  transition: transform .25s ease;
}
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after  { top: 6px; }
.is-solid .nav-toggle span, .is-solid .nav-toggle span::before, .is-solid .nav-toggle span::after { background: var(--bark); }
.nav-toggle[aria-expanded="true"] span { background: transparent !important; }
.nav-toggle[aria-expanded="true"] span::before { transform: translateY(6px) rotate(45deg); background: var(--bark); }
.nav-toggle[aria-expanded="true"] span::after  { transform: translateY(-6px) rotate(-45deg); background: var(--bark); }

@media (max-width: 980px) {
  .nav-toggle { display: inline-flex; }
  .header-cta { display: none; }
  .nav {
    position: fixed; inset: 0 0 auto 0; top: 0;
    flex-direction: column; align-items: stretch; gap: .2rem;
    background: var(--cream);
    padding: 5.5rem var(--gutter) 2rem;
    box-shadow: var(--shadow-l);
    transform: translateY(-100%);
    transition: transform .32s cubic-bezier(.4, 0, .2, 1);
    z-index: -1;
  }
  .nav.is-open { transform: translateY(0); }
  .nav a { color: var(--bark); padding: .9rem 1rem; border-radius: var(--radius-s); font-size: 1.05rem; }
  .nav a[aria-current="page"] { color: var(--ochre-deep); background: rgba(214, 154, 61, .12); }
  .nav .nav-phone {
    margin-top: .75rem; background: var(--forest); color: var(--cream);
    text-align: center; font-weight: 600;
  }
  .nav .nav-phone:hover { background: var(--forest-mid); color: var(--cream); }
}
@media (min-width: 981px) { .nav .nav-phone { display: none; } }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative; isolation: isolate;
  min-height: min(100svh, 940px);
  display: grid; align-items: end;
  padding-block: 9rem clamp(3rem, 7vw, 5.5rem);
  color: var(--cream);
}
.hero--compact { min-height: min(68svh, 620px); }
/* u nízkého heroa je výřez velmi široký – posunout těžiště dolů,
   ať je vidět stavení, ne jen střecha a nebe */
.hero--compact .hero-media img { object-position: center 68%; }

.hero-media { position: absolute; inset: 0; z-index: -2; overflow: hidden; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(to top, rgba(20, 35, 27, .88) 0%, rgba(20, 35, 27, .45) 38%, rgba(20, 35, 27, .18) 62%, rgba(20, 35, 27, .5) 100%);
}

.hero-inner { max-width: 44rem; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: .6rem;
  font-size: .8rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase;
  color: var(--ochre);
  background: rgba(20, 35, 27, .4);
  border: 1px solid rgba(214, 154, 61, .35);
  padding: .45rem 1rem; border-radius: 999px;
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  margin-bottom: 1.5rem;
}
.hero h1 {
  color: var(--cream);
  text-shadow: 0 2px 30px rgba(12, 22, 17, .45);
}
.hero .hero-title-mark {
  display: block;
  font-size: clamp(3.2rem, 2rem + 6vw, 7rem);
  letter-spacing: .12em;
  font-weight: 600;
}
.hero-sub {
  margin-top: 1.4rem;
  font-size: clamp(1.08rem, 1rem + .45vw, 1.4rem);
  line-height: 1.55;
  color: rgba(251, 246, 236, .92);
  max-width: 34rem;
  text-shadow: 0 1px 16px rgba(12, 22, 17, .4);
}
.hero .btn-row { margin-top: 2.25rem; }

.hero-facts {
  margin-top: clamp(2.5rem, 6vw, 4rem);
  display: flex; flex-wrap: wrap; gap: 1rem 2.5rem;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(251, 246, 236, .22);
}
.hero-fact { display: grid; gap: .1rem; }
.hero-fact dt { font-size: .74rem; letter-spacing: .14em; text-transform: uppercase; color: rgba(251, 246, 236, .62); font-weight: 600; }
.hero-fact dd { font-family: var(--serif); font-size: 1.15rem; font-weight: 600; color: var(--cream); }

/* ==========================================================================
   Mřížky a karty
   ========================================================================== */
.grid { display: grid; gap: clamp(1.25rem, 3vw, 2rem); }
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 22rem), 1fr)); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 19rem), 1fr)); }
.grid--4 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 14rem), 1fr)); }

.card {
  background: #fff; border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-s);
  display: flex; flex-direction: column;
  transition: transform .28s ease, box-shadow .28s ease;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.card-media { position: relative; overflow: hidden; background: var(--sand-deep); }
.card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s cubic-bezier(.2, .7, .3, 1); }
.card:hover .card-media img { transform: scale(1.05); }
.card-body { padding: clamp(1.35rem, 3vw, 1.85rem); display: flex; flex-direction: column; gap: .7rem; flex: 1; }
.card-body h3 { color: var(--forest); }
.card-body p { color: var(--muted); font-size: .97rem; }
.card-foot { margin-top: auto; padding-top: .5rem; }

/* štítky */
.tags { display: flex; flex-wrap: wrap; gap: .45rem; list-style: none; padding: 0; }
.tags li {
  font-size: .78rem; font-weight: 600; letter-spacing: .02em;
  padding: .3rem .7rem; border-radius: 999px;
  background: var(--sand); color: var(--bark);
}
.card--dark .tags li { background: rgba(251, 246, 236, .14); color: #d9e4dc; }

/* ---------- vlastnosti / ikonová řada ---------- */
.features { display: grid; gap: clamp(1.5rem, 3vw, 2.25rem); grid-template-columns: repeat(auto-fit, minmax(min(100%, 15rem), 1fr)); }
.feature { display: grid; gap: .6rem; }
.feature-icon {
  width: 52px; height: 52px; border-radius: 14px;
  display: grid; place-items: center;
  background: var(--sand); color: var(--forest-mid);
  box-shadow: inset 0 0 0 1px rgba(74, 58, 44, .08);
}
.section--forest .feature-icon { background: rgba(251, 246, 236, .1); color: var(--ochre); box-shadow: none; }
.feature h3 { font-size: 1.12rem; color: var(--forest); }
.section--forest .feature h3 { color: var(--cream); }
.feature p { font-size: .95rem; color: var(--muted); }
.section--forest .feature p { color: #c3d2c8; }

/* ==========================================================================
   Split sekce (text + obrázek)
   ========================================================================== */
.split {
  display: grid; gap: clamp(2rem, 5vw, 4.5rem);
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 24rem), 1fr));
  align-items: center;
}
.split--reverse > *:first-child { order: 2; }
@media (max-width: 800px) { .split--reverse > *:first-child { order: 0; } }

.split-media { position: relative; }
.split-media img { width: 100%; border-radius: var(--radius-l); box-shadow: var(--shadow); }
.split-media--stack { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; align-items: stretch; }
.split-media--stack > *:first-child { grid-row: span 2; }
.split-media--stack > *:first-child img { height: 100%; object-fit: cover; }
.split-media--stack picture { display: block; height: 100%; }

/* razítko přes fotku */
.media-badge {
  position: absolute; bottom: -1.25rem; left: -1.25rem;
  background: var(--ochre); color: #2b1d06;
  border-radius: 18px; padding: 1rem 1.35rem;
  box-shadow: var(--shadow);
  display: grid; gap: .1rem; max-width: 14rem;
}
.media-badge b { font-family: var(--serif); font-size: 1.5rem; line-height: 1; }
.media-badge span { font-size: .8rem; font-weight: 600; letter-spacing: .04em; }
@media (max-width: 560px) { .media-badge { left: 0; bottom: -1rem; } }

/* ==========================================================================
   Zvířata
   ========================================================================== */
.animal-grid { display: grid; gap: clamp(1.5rem, 3vw, 2.25rem); grid-template-columns: repeat(auto-fit, minmax(min(100%, 18rem), 1fr)); }

.animal {
  background: #fff; border-radius: var(--radius-l); overflow: hidden;
  box-shadow: var(--shadow-s); display: flex; flex-direction: column;
  transition: transform .3s ease, box-shadow .3s ease;
}
.animal:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.animal-media { position: relative; aspect-ratio: 4 / 5; overflow: hidden; background: var(--sand-deep); }
.animal-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s cubic-bezier(.2, .7, .3, 1); }
.animal:hover .animal-media img { transform: scale(1.06); }
.animal-kind {
  position: absolute; top: .9rem; left: .9rem;
  background: rgba(20, 35, 27, .72); color: var(--cream);
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  font-size: .72rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  padding: .35rem .75rem; border-radius: 999px;
}
.animal-body { padding: clamp(1.35rem, 3vw, 1.75rem); display: grid; gap: .65rem; flex: 1; align-content: start; }
.animal-body h3 { color: var(--forest); font-size: 1.45rem; }
.animal-body p { font-size: .96rem; color: var(--muted); }
.animal-note {
  margin-top: .35rem; padding-top: .85rem;
  border-top: 1px dashed var(--sand-deep);
  font-size: .88rem; color: var(--forest-mid); font-weight: 500;
  display: flex; gap: .5rem; align-items: flex-start;
}
.animal-note svg { flex: none; margin-top: .2rem; }

/* pravidla na statku */
.rules { list-style: none; padding: 0; display: grid; gap: 1rem; }
.rules li { display: flex; gap: .9rem; align-items: flex-start; }
.rules svg { flex: none; margin-top: .25rem; color: var(--ochre); }
.rules strong { display: block; color: var(--cream); font-weight: 600; }
.rules span { color: #c3d2c8; font-size: .95rem; }

/* ==========================================================================
   Galerie
   ========================================================================== */
.gallery { display: grid; gap: .75rem; grid-template-columns: repeat(auto-fit, minmax(min(100%, 13rem), 1fr)); }
.gallery button {
  padding: 0; border: 0; background: var(--sand-deep); cursor: zoom-in;
  border-radius: var(--radius); overflow: hidden; aspect-ratio: 1 / 1;
  display: block;
}
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease, filter .3s ease; }
.gallery button:hover img { transform: scale(1.07); filter: brightness(1.05); }
.gallery--wide button:nth-child(4n + 1) { aspect-ratio: 4 / 5; }

/* lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 300;
  background: rgba(16, 26, 20, .94);
  display: grid; place-items: center; padding: var(--gutter);
  opacity: 0; visibility: hidden; transition: opacity .25s ease, visibility .25s;
}
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox img { max-width: min(1100px, 100%); max-height: 82vh; border-radius: var(--radius); object-fit: contain; box-shadow: var(--shadow-l); }
.lightbox-caption { color: #d9e4dc; text-align: center; margin-top: 1rem; font-size: .95rem; }
.lightbox-close, .lightbox-nav {
  position: absolute; border: 1.5px solid rgba(251, 246, 236, .35);
  background: rgba(20, 35, 27, .55); color: var(--cream);
  width: 48px; height: 48px; border-radius: 50%;
  display: grid; place-items: center; cursor: pointer;
  transition: background-color .2s ease, transform .2s ease;
}
.lightbox-close:hover, .lightbox-nav:hover { background: var(--ochre); color: #2b1d06; transform: scale(1.06); }
.lightbox-close { top: 1.25rem; right: 1.25rem; }
.lightbox-nav--prev { left: 1.25rem; top: 50%; margin-top: -24px; }
.lightbox-nav--next { right: 1.25rem; top: 50%; margin-top: -24px; }
@media (max-width: 640px) {
  .lightbox-nav--prev { left: .5rem; }
  .lightbox-nav--next { right: .5rem; }
}

/* ==========================================================================
   Ceník / tabulky / seznamy vybavení
   ========================================================================== */
.price-card {
  background: #fff; border-radius: var(--radius-l);
  box-shadow: var(--shadow-s); overflow: hidden;
  display: flex; flex-direction: column;
}
.price-card--accent { box-shadow: var(--shadow); outline: 2px solid var(--ochre); }
.price-head { padding: clamp(1.5rem, 3vw, 2rem); background: var(--sand); display: grid; gap: .35rem; }
.price-head h3 { color: var(--forest); }
.price-head .price-meta { font-size: .9rem; color: var(--muted); font-weight: 500; }
.price-body { padding: clamp(1.5rem, 3vw, 2rem); display: grid; gap: 1rem; flex: 1; align-content: start; }
.price-value { font-family: var(--serif); font-size: 1.7rem; color: var(--forest); font-weight: 600; }
.price-value small { display: block; font-family: var(--sans); font-size: .85rem; font-weight: 500; color: var(--muted); letter-spacing: 0; }

.season {
  display: grid; gap: .3rem; padding: 1.15rem 1.35rem;
  border-radius: var(--radius); background: #fff; box-shadow: var(--shadow-s);
}
.season dt { font-size: .75rem; letter-spacing: .13em; text-transform: uppercase; color: var(--ochre-deep); font-weight: 600; }
.season dd { font-weight: 600; color: var(--forest); }

.checklist { list-style: none; padding: 0; display: grid; gap: .6rem; }
.checklist li { display: flex; gap: .65rem; align-items: flex-start; font-size: .96rem; }
.checklist svg { flex: none; margin-top: .3rem; color: var(--moss); }

.note {
  display: flex; gap: .9rem; align-items: flex-start;
  padding: 1.25rem 1.4rem; border-radius: var(--radius);
  background: var(--sand); border-left: 4px solid var(--ochre);
  font-size: .96rem; color: var(--bark);
}
.note svg { flex: none; margin-top: .2rem; color: var(--ochre-deep); }
.note strong { color: var(--forest); }

/* ==========================================================================
   Kontakt
   ========================================================================== */
.contact-list { list-style: none; padding: 0; display: grid; gap: 1.5rem; }
.contact-item { display: flex; gap: 1rem; align-items: flex-start; }
.contact-item svg { flex: none; margin-top: .3rem; color: var(--ochre); }
.contact-item dt { font-size: .75rem; letter-spacing: .13em; text-transform: uppercase; color: var(--muted); font-weight: 600; margin-bottom: .15rem; }
.contact-item dd { font-size: 1.1rem; font-weight: 600; color: var(--forest); }
.contact-item dd a { text-decoration: none; border-bottom: 1.5px solid rgba(214, 154, 61, .5); }
.contact-item dd a:hover { border-color: var(--ochre); color: var(--ochre-deep); }
.contact-item .contact-sub { font-size: .9rem; font-weight: 400; color: var(--muted); }

.map-frame {
  border-radius: var(--radius-l); overflow: hidden;
  box-shadow: var(--shadow); background: var(--sand-deep);
  aspect-ratio: 4 / 3; min-height: 320px;
}
.map-frame iframe { width: 100%; height: 100%; border: 0; display: block; }

.route-steps { list-style: none; padding: 0; counter-reset: step; display: grid; gap: 1.25rem; }
.route-steps li { display: flex; gap: 1rem; align-items: flex-start; counter-increment: step; }
.route-steps li::before {
  content: counter(step); flex: none;
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--forest); color: var(--cream);
  display: grid; place-items: center;
  font-family: var(--serif); font-weight: 600; font-size: 1rem;
}

/* ==========================================================================
   Citát
   ========================================================================== */
.quote {
  position: relative;
  font-family: var(--serif); font-size: clamp(1.4rem, 1.1rem + 1.4vw, 2.1rem);
  line-height: 1.4; color: var(--forest); font-weight: 500;
  padding-left: clamp(1.5rem, 4vw, 3rem);
  border-left: 3px solid var(--ochre);
  text-wrap: balance;
}
.section--forest .quote { color: var(--cream); }
.quote cite { display: block; margin-top: 1.25rem; font-family: var(--sans); font-size: .9rem; font-style: normal; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--ochre-deep); }
.section--forest .quote cite { color: var(--ochre); }

/* ==========================================================================
   CTA pás
   ========================================================================== */
.cta-band {
  position: relative; isolation: isolate; overflow: hidden;
  border-radius: var(--radius-l);
  padding: clamp(2.5rem, 6vw, 4.5rem);
  color: var(--cream); text-align: center;
}
.cta-band img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; }
.cta-band::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(to right, rgba(20, 35, 27, .88), rgba(20, 35, 27, .72)); }
.cta-band h2 { color: var(--cream); }
.cta-band p { max-width: 46ch; margin-inline: auto; color: rgba(251, 246, 236, .88); margin-top: 1rem; }
.cta-band .btn-row { justify-content: center; margin-top: 2rem; }

/* ==========================================================================
   Patička
   ========================================================================== */
.site-footer { background: var(--forest); color: #c3d2c8; padding-block: clamp(3rem, 6vw, 4.5rem) 2rem; }
.footer-grid { display: grid; gap: clamp(2rem, 5vw, 3rem); grid-template-columns: repeat(auto-fit, minmax(min(100%, 15rem), 1fr)); }
.footer-brand .brand-name { color: var(--cream); }
.footer-brand p { margin-top: 1rem; font-size: .95rem; max-width: 30ch; }
.site-footer h4 { font-family: var(--sans); font-size: .78rem; letter-spacing: .14em; text-transform: uppercase; color: var(--ochre); margin-bottom: 1rem; font-weight: 600; }
.footer-links { list-style: none; padding: 0; display: grid; gap: .55rem; }
.footer-links a { text-decoration: none; font-size: .95rem; transition: color .2s ease; }
.footer-links a:hover { color: var(--ochre); }
.footer-bottom {
  margin-top: clamp(2.5rem, 5vw, 3.5rem); padding-top: 1.5rem;
  border-top: 1px solid rgba(251, 246, 236, .14);
  display: flex; flex-wrap: wrap; gap: .75rem 2rem; justify-content: space-between;
  font-size: .85rem; color: rgba(195, 210, 200, .75);
}
.footer-bottom a { text-decoration: none; }
.footer-bottom a:hover { color: var(--ochre); }

/* ==========================================================================
   Animace při scrollu
   ========================================================================== */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s cubic-bezier(.2, .7, .3, 1), transform .7s cubic-bezier(.2, .7, .3, 1); }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .card, .animal, .card-media img, .animal-media img, .gallery img { transition: none !important; }
  .card:hover, .animal:hover { transform: none; }
}

/* pomocné */
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.text-center { text-align: center; }
.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* ---------- řádek kulatých náhledů zvířat ---------- */
.peek-row { display: flex; flex-wrap: wrap; gap: .6rem; align-items: center; }
.peek {
  width: 66px; height: 66px; border-radius: 50%; overflow: hidden;
  border: 2px solid rgba(214, 154, 61, .55); flex: none;
  box-shadow: 0 4px 14px rgba(10, 20, 15, .3);
}
.peek img { width: 100%; height: 100%; object-fit: cover; }
.peek-row::after {
  content: "…a další"; font-size: .85rem; font-weight: 600;
  color: var(--ochre); letter-spacing: .04em;
}
