/* ujanika.cz — mini grid/utility shim (náhrada Bootstrapu)
   Reimplementace JEN tříd reálně použitých v markupu.
   Breakpointy (Bootstrap 4): sm≥576, md≥768, lg≥992, xl≥1200. */

/* ---- reset, který dříve dodával Bootstrap ---- */
*, *::before, *::after { box-sizing: border-box; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; font-size: 100%; line-height: 1.15; margin: 0; }
[hidden] { display: none !important; }

/* ---- container ---- */
.container,
.container-fluid {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: 15px;
  padding-left: 15px;
}
@media (min-width: 576px)  { .container { max-width: 540px; } }
@media (min-width: 768px)  { .container { max-width: 720px; } }
@media (min-width: 992px)  { .container { max-width: 960px; } }
@media (min-width: 1200px) { .container { max-width: var(--container-max); } }

/* ---- row ---- */
.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.no-gutters { margin-right: 0; margin-left: 0; }
.no-gutters > [class*="col-"] { padding-right: 0; padding-left: 0; }

/* ---- columns (gutter 15px) ---- */
[class*="col-"] {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
}

/* base (xs) */
.col-6  { flex: 0 0 50%;  max-width: 50%; }
.col-12 { flex: 0 0 100%; max-width: 100%; }

/* sm ≥576 */
@media (min-width: 576px) {
  .col-sm-6 { flex: 0 0 50%; max-width: 50%; }
}

/* md ≥768 */
@media (min-width: 768px) {
  .col-md-4 { flex: 0 0 33.333333%; max-width: 33.333333%; }
}

/* lg ≥992 */
@media (min-width: 992px) {
  .col-lg-2  { flex: 0 0 16.666667%; max-width: 16.666667%; }
  .col-lg-4  { flex: 0 0 33.333333%; max-width: 33.333333%; }
  .col-lg-5  { flex: 0 0 41.666667%; max-width: 41.666667%; }
  .col-lg-6  { flex: 0 0 50%;        max-width: 50%; }
  .col-lg-12 { flex: 0 0 100%;       max-width: 100%; }
}

/* xl ≥1200 */
@media (min-width: 1200px) {
  .col-xl-4 { flex: 0 0 33.333333%; max-width: 33.333333%; }
  .col-xl-6 { flex: 0 0 50%;        max-width: 50%; }
}

/* ---- width utilities ---- */
.w-100 { width: 100% !important; }
@media (min-width: 1200px) {
  .w-xl-80 { width: 80% !important; }
  .w-xl-20 { width: 20% !important; }
}

/* ---- display utilities ---- */
.d-none  { display: none !important; }
.d-flex  { display: flex !important; }
@media (min-width: 992px) {
  .d-lg-block { display: block !important; }
  .d-lg-none  { display: none !important; }
}

/* ---- flex utilities ---- */
.flex-wrap { flex-wrap: wrap !important; }
.align-items-center { align-items: center !important; }
.justify-content-center { justify-content: center !important; }
.justify-content-start { justify-content: flex-start !important; }
.h-100 { height: 100% !important; }

/* ---- order utilities ---- */
.order-1 { order: 1; }
.order-2 { order: 2; }
.order-3 { order: 3; }
@media (min-width: 992px) {
  .order-lg-1 { order: 1; }
  .order-lg-2 { order: 2; }
}

/* ---- spacing / misc utilities ---- */
.px-0 { padding-right: 0 !important; padding-left: 0 !important; }
.pt-3 { padding-top: 1rem !important; }
.py-5 { padding-top: 3rem !important; padding-bottom: 3rem !important; }
.text-center { text-align: center !important; }
.position-relative { position: relative !important; }

/* ============================================================
   Komponenty, které dříve poskytoval Bootstrap / slick
   ============================================================ */

/* ---- taby jídelního lístku (náhrada Bootstrap tabů) ---- */
.tab-content > .tab-pane { display: none; }
.tab-content > .tab-pane.active { display: block; }
.tab-pane.fade { opacity: 0; transition: opacity .2s linear; }
.tab-pane.fade.active { opacity: 1; }

/* ---- slidery: CSS scroll-snap (náhrada slick) ---- */
.reviews__track,
.gallery-type-1__track {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -ms-overflow-style: none;   /* IE/Edge */
  scrollbar-width: none;      /* Firefox */
}
.reviews__track::-webkit-scrollbar,
.gallery-type-1__track::-webkit-scrollbar { display: none; } /* WebKit */

/* recenze — vystředěné slidy s náhledem sousedů */
.reviews__track { padding: 40px 15px; }
.reviews__track .item {
  flex: 0 0 100%;
  scroll-snap-align: center;
}
@media (min-width: 768px) {
  .reviews__track { padding: 40px 12%; }
  .reviews__track .item { flex: 0 0 76%; }
}

/* instagram — responzivní počet dlaždic (jako slick: 1→2→3→4→5) */
.gallery-type-1__track .item {
  flex: 0 0 100%;
  scroll-snap-align: start;
}
@media (min-width: 400px)  { .gallery-type-1__track .item { flex: 0 0 50%; } }
@media (min-width: 576px)  { .gallery-type-1__track .item { flex: 0 0 33.333%; } }
@media (min-width: 992px)  { .gallery-type-1__track .item { flex: 0 0 25%; } }
@media (min-width: 1400px) { .gallery-type-1__track .item { flex: 0 0 20%; } }

/* ---- hero slideshow (crossfade) ---- */
.hero-slideshow {
  position: relative;
  width: 100%;
  height: 80dvh;
  min-height: 600px;
  overflow: hidden;
  border-radius: 0 0 6px 6px;
}
/* hero LCP snímek jako <img> (preloadovatelný), ostatní slidy = background */
.hero-slideshow__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-slideshow__slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
  will-change: opacity;
}
.hero-slideshow__slide.is-active { opacity: 1; }
/* tmavý překryv přes hero fotky → ztmavení pro čitelnost textu */
.hero-slideshow::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  pointer-events: none;
  z-index: 1;
}

/* ---- logo (U Janíka) — na tmavé hlavičce bílé SVG, na světlých boxech
   (scrolled header, mobil, patička) hnědá varianta SVG ---- */
header.scrolling .main-nav .logo .logo-img,
header.other-page-menu .main-nav .logo .logo-img,
.mobile-nav .logo .logo-img,
.footer-bottom__logo .logo-img {
  background-image: url(../img/logo/u-janika-logo-hnede.svg) !important;
}
/* patičkové logo — bez bílého boxu; pozadí v barvě webu, aby přerušilo
   linku (border-top footer-bottom) kolem loga jako v originále */
footer .footer-bottom__logo {
  background: var(--c-bg) !important;
}
/* zbytkový oddělovač "|" za copyrightem (po druhém spanu) — pryč */
footer .footer-bottom-text p span::after {
  content: none !important;
}

/* ---- hlavička: obsah v kontejneru 1460px na střed, pozadí přes 100% ----
   Zachováváme původní in-flow layout (listy 42 %, logo absolutně, linka
   ::before na úrovni přepínače jazyků). Originál má boční padding 100px jen
   kvůli plné šířce; na 1460 ho zrušíme, aby listy měly místo a nezalamovaly. */
.header-home .top-info-panel__menu,
.header-home .main-nav {
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
}
.header-home .main-nav {
  padding-left: 0;
  padding-right: 0;
}
/* linka pod horním panelem přes celou šířku (místo dvou půlek v kontejneru) */
.header-home .top-info-panel {
  border-bottom: 2px solid rgba(255, 255, 255, 0.12);
}
.header-home .main-nav__left::before,
.header-home .main-nav__right::before {
  display: none;
}
/* desktop dropdown submenu (JÍDELNÍ A NAPOJOVÝ LÍSTEK) */
.header-home .main-nav .has-submenu { position: relative; }
/* šipka ▾ – indikace rozbalovacího menu */
.header-home .main-nav .has-submenu > a::after {
  content: "";
  display: inline-block;
  margin-left: 2px;
  vertical-align: middle;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
}
.header-home .main-nav .submenu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  display: none;
  min-width: 250px;
  margin: 0;
  padding: 6px 0;
  background: var(--c-text);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
  border-radius: 6px;
  overflow: hidden;
  z-index: 200;
  text-align: left;
}
.header-home .main-nav .has-submenu:hover .submenu { display: block; }
.header-home .main-nav .submenu li { display: block; }
.header-home .main-nav .submenu li::before { display: none; } /* bez kytky uvnitř */
.header-home .main-nav .submenu li + li {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}
.header-home .main-nav .submenu a,
.header-home .main-nav .submenu li:first-of-type a {
  display: block;
  padding: 10px 22px;        /* i první položka zarovnaná jako ostatní */
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  white-space: nowrap;
}
.header-home .main-nav .submenu a:hover {
  background: rgba(255, 255, 255, 0.05);
}

/* mobilní rozbalovací submenu (JÍDELNÍ A NAPOJOVÝ LÍSTEK) */
.mobile-menu .m-has-submenu {
  display: block;
  position: relative;
  text-align: center;
}
.mobile-menu .m-submenu-toggle { display: none; } /* caret je přímo v odkazu */
.mobile-menu .m-has-submenu > a::after {
  content: "";
  display: inline-block;
  margin-left: 8px;
  vertical-align: middle;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid var(--c-kytka);
  transition: transform .2s ease;
}
.mobile-menu .m-has-submenu.open > a::after {
  transform: rotate(180deg);
}
.mobile-menu .m-submenu {
  display: none;
  padding: 0 0 10px;
}
.mobile-menu .m-has-submenu.open .m-submenu {
  display: block;
}
.mobile-menu .m-has-submenu .m-submenu li {
  display: block;
}
.mobile-menu .m-has-submenu .m-submenu li::before {
  display: none;
}
.mobile-menu .m-has-submenu .m-submenu a {
  display: block;
  padding: 12px 10px;
  color: #fff;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* mobilní menu: oddělovače jako kytka (var(--c-kytka)), místo zlaté tečky */
.header-home .mobile-menu ul:first-of-type li::before {
  width: 14px;
  height: 14px;
  bottom: -7px;
  background: var(--c-kytka);
  -webkit-mask: url(../img/logo/kytka.svg) no-repeat center / contain;
          mask: url(../img/logo/kytka.svg) no-repeat center / contain;
}
/* nav: font 14px, rozpaly mezi položkami */
.header-home .main-nav ul li a {
  font-size: 14px;
  padding-left: 0.975rem;
  padding-right: 0.975rem;
}
/* logo v hlavičce 180×180 — jen nescrollovaná hlavička;
   sticky (scrolled) logo si ponechává původní velikost */
.header-home:not(.scrolling) .main-nav .logo .logo-img {
  width: 180px;
  height: 180px;
}
/* podstránky (other-page-menu): usazené logo 120×120 (jako scrolled stav) —
   přebíjí 180px pravidlo výše (stejná specificita, pozdější v souboru) */
.header-home.other-page-menu .main-nav .logo .logo-img {
  width: 120px;
  height: 120px;
}
/* sticky (odscrollovaná) hlavička: plné hnědé pozadí přes celou šířku
   (nahoře přes hero zůstává průhledná) */
.header-home.scrolling {
  background-color: var(--c-heading);
}
/* sticky logo bez stínu + zaoblená spodní hrana boxu */
.header-home.scrolling .main-nav .logo {
  box-shadow: none;
  border-radius: 0 0 6px 6px;
}
/* podstránky: logo si drží jemný stín i po odscrollování (aby se oddělilo) */
.header-home.other-page-menu.scrolling .main-nav .logo {
  box-shadow: 0 3px 27px rgba(0, 0, 0, 0.09);
}
/* mobilní logo box — zaoblená spodní hrana */
.header-home .mobile-nav .logo.logo--mobile {
  border-radius: 0 0 6px 6px;
}
/* odebrat zbytečnou spodní mezeru pod logem (zbytek po logo__text) — prodlužovala box */
.header-home .logo .logo-img {
  margin-bottom: 0;
}

/* pod 1495px už by byl desktop nav stěsnaný → přepnout na mobilní (hamburger)
   menu dřív (místo zmenšování fontu) */
@media (max-width: 1494px) {
  .header-home .top-info-panel,
  .header-home > .container-fluid {
    display: none !important;
  }
  .header-home .mobile-nav {
    display: block !important;
  }
  /* mobilní logo drží telefonní velikost (jinak by ho ≥992px pravidlo zvětšilo) */
  .header-home .mobile-nav .logo .logo-img {
    width: 80px;
    height: 80px;
  }
  /* ≥992px pravidlo dává logu margin-top:-35px → na telefonu to není; reset,
     ať logo nelepí nahoře (horní padding jako na mobilu) */
  .header-home .mobile-nav .logo {
    margin-top: 0;
  }
}
.header-home .main-nav ul li::before {
  width: 14px;
  height: 14px;
  left: -10px;
  background: var(--c-kytka);     /* barva kytky */
  -webkit-mask: url(../img/logo/kytka.svg) no-repeat center / contain;
          mask: url(../img/logo/kytka.svg) no-repeat center / contain;
}

/* tmavá lišta s boxy (intro-items) — zaoblené rohy */
.intro-items {
  border-radius: 6px;
  overflow: hidden;
}
/* zaoblené rohy 6px — fotky a bílá karta (Hospoda s tradicí) */
.about_us__image img,
.family-tradition__image img {
  border-radius: 6px;
  height: auto; /* drží poměr stran (zabraňuje natažení z width/height atributů) */
}
.family-tradition__card {
  border-radius: 6px;
}

/* rezervační tlačítko — plné tlačítko místo linek */
.button.button-primary {
  display: inline-block;
  background-color: var(--c-cta);
  border: none;
  border-radius: 6px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.28);
}
.button.button-primary::before,
.button.button-primary::after { content: none; }
.button.button-primary:hover {
  background-color: var(--c-cta-hover);
  transform: translateY(-2px);
}
.button.button-primary:hover .button__text { color: #fff !important; }

/* sjednocená velikost nadpisů sekcí (default dle sekce ubytování) */
section.about_us h2,
.family-tradition-title h2,
.next_events__title h2,
.section-head h2 {
  font-size: 25px;
}
@media (min-width: 992px) {
  section.about_us h2,
  .family-tradition-title h2,
  .next_events__title h2,
  .section-head h2 {
    font-size: 34px;
  }
}

/* sekce recenzí — horní/dolní padding sjednocený s ostatními sekcemi
   (vyšší specificita kvůli media-query pravidlu ve style.css: 200px 0 + margin-top:-50px) */
section.reviews.reviews {
  padding: 100px 0;
  margin-top: 0;
}
/* hvězdičky recenzí — SVG (mask) místo PNG, medová */
.guest-review__stars {
  display: flex;
  justify-content: center;
  gap: 5px;
}
.guest-review__stars .star {
  width: 22px;
  height: 22px;
  display: inline-block;
  background-color: var(--c-accent);
  -webkit-mask: url(../img/svg/star.svg) no-repeat center / contain;
          mask: url(../img/svg/star.svg) no-repeat center / contain;
}
/* text recenze — menší (default 48px ve style.css media query) */
.guest-review .guest-review__text {
  font-size: 21px;
}
/* sjednocení tělového textu na 16px (default je 15px na pár místech) */
.family-tradition__card p,
.content ol li,
.content ul li {
  font-size: 16px;
}
/* pozadí za kartou recenze — místo kytek plná barva + 6px rohy */
section.reviews .reviews__slider::before {
  background: var(--c-surface-2);
  border-radius: 6px;
}
/* šipky slideru recenzí — přebarvení SVG na medovou var(--c-accent) (mask) */
section.reviews .reviews-slider-arrow--left,
section.reviews .reviews-slider-arrow--right {
  width: 46px;
  height: 46px;
  border: 0;
  padding: 0;
  cursor: pointer;
  -webkit-appearance: none;
          appearance: none;
  background-image: none;
  background-color: var(--c-accent);
  -webkit-mask: no-repeat center / contain;
          mask: no-repeat center / contain;
}
section.reviews .reviews-slider-arrow--left {
  -webkit-mask-image: url(../img/svg/arrow-badge-left.svg);
          mask-image: url(../img/svg/arrow-badge-left.svg);
}
section.reviews .reviews-slider-arrow--right {
  -webkit-mask-image: url(../img/svg/arrow-badge-right.svg);
          mask-image: url(../img/svg/arrow-badge-right.svg);
}

/* společná hlavička sekce (label + nadpis + oddělovač) */
.section-head {
  text-align: center;
  margin-bottom: 50px;
}
.section-head h2 {
  color: var(--c-heading);
}
.section-head .section-label {
  margin-bottom: 15px;
}
.section-head .section-label::before {
  content: none;
}

/* oddělovač v kartě Hospoda s tradicí — kytka místo diamantu */
.family-tradition .family-tradition-title .diamond {
  background: var(--c-kytka);
  -webkit-mask: url(../img/logo/kytka.svg) no-repeat center / contain;
          mask: url(../img/logo/kytka.svg) no-repeat center / contain;
}

/* podpis v kartě Hospoda s tradicí — v toku, vycentrovaný (jako zbytek karty) */
.family-tradition .family-tradition__card .family-signature {
  position: static;
  margin-top: 24px;
  display: block;
  text-align: center;
}
.family-tradition .family-tradition__card .family-signature__owner {
  padding-left: 0;
}
.family-tradition .family-tradition__card .family-signature__owner::before {
  display: none;
}
.family-tradition .family-tradition__card .family-signature__owner strong {
  font-style: italic;
}

/* hero text — čitelnost (stín) + zmenšení citátu (první verze) */
.intro-text__small,
.intro-text__main {
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.55);
}
.intro-text__main span {
  font-size: 22px;
  letter-spacing: .3px;
  margin-top: 20px;
}
@media (min-width: 992px) {
  .intro-text__main span { font-size: 26px; }
}

/* sekce O nás — tmavší text + podnadpisy */
section.about_us h2 {
  margin-bottom: 20px;
}
.about_us__image img {
  max-width: 90%;
  height: auto;
}
section.about_us p {
  color: var(--c-text);
}
.about_us__subtitle {
  position: relative;
  z-index: 15;
  font-family: Merriweather;
  font-weight: 400;
  font-size: 22px;
  line-height: 1.4;
  color: var(--c-heading);
  margin: 36px 0 14px;
  text-align: center;
}
@media (min-width: 992px) {
  section.about_us p,
  .about_us__subtitle { text-align: left; }
  .about_us__subtitle { font-size: 24px; }
}

/* sekce Apartmány Janíkovy louky — logo + text na pozadí budovy */
.our_menu--promo {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: clamp(480px, 80vh, 880px);
  padding: 100px 0;
}
/* tmavý překryv přes fotku budovy → ztmavení (stejně jako hero) */
.our_menu--promo::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  pointer-events: none;
  z-index: 0;
}
.our_menu--promo > * {
  position: relative;
  z-index: 1;
}
.our_menu--promo .our_menu__title {
  max-width: none;
  margin: 0 auto;
  padding: 0 20px;
}
.our_menu--promo .our_menu__title::before,
.our_menu--promo .our_menu__title::after {
  content: none;
}
.our_menu--promo .apartmany-logo {
  display: block;
  width: 220px;
  height: auto;
  margin: 0 auto 24px;
  filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.45));
}
.our_menu--promo h2 {
  color: #fff;
  margin-bottom: 12px;
  font-size: 25px;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.55);
}
@media (min-width: 992px) {
  .our_menu--promo h2 { font-size: 34px; white-space: nowrap; }
}
.our_menu--promo .our_menu__subtitle {
  color: var(--c-accent);
  font-family: Merriweather;
  font-style: italic;
  font-size: 22px;
  margin: 0;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.55);
}

/* bílá karta s příběhem ubytování */
.ubytovani__card {
  max-width: 1200px;
  margin: 40px 20px 0;
  background: #fff;
  border-radius: 6px;
  padding: 40px 45px;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.18);
  text-align: left;
}
.ubytovani__card h3 {
  font-family: Merriweather;
  font-weight: 400;
  font-size: 21px;
  line-height: 1.4;
  color: var(--c-heading);
  margin: 0 0 20px;
}
.ubytovani__card p {
  color: var(--c-text);
  margin-bottom: 0;
}
.ubytovani__link {
  margin-top: 20px;
}
.ubytovani__link a {
  color: var(--c-cta);
  font-weight: 500;
}
.ubytovani__link a:hover {
  color: var(--c-cta-hover);
}

/* ---- sekce Akce — bento grid karet (inspirace mlroznov.cz) ---- */
/* padding sjednocený se sekcí ubytování (100px nahoře/dole = default) */
.next_events {
  padding: 100px 0;
}
.events-grid .next_events__title {
  text-align: center;
  margin-bottom: 50px;
}
.events-grid .next_events__title::before,
.events-grid .next_events__title::after {
  content: none;
}
.events-grid__divider {
  display: block;
  width: 60px;
  height: 2px;
  background: var(--c-accent);
  margin: 18px auto 0;
}
.events-grid__layout {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: minmax(228px, 1fr);
  gap: 22px;
}
.event-card {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 6px;
  background-color: var(--c-text);
  background-size: cover;
  background-position: center;
  color: #fff;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.event-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.35) 45%, rgba(0, 0, 0, 0) 78%);
}
.event-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.28);
}
.event-card--featured {
  grid-row: span 2;
}
.event-card__badge {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  background: var(--c-cta);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.4px;
  padding: 5px 12px;
  border-radius: 4px;
}
.event-card__body {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 22px 24px;
}
.event-card__date {
  display: inline-block;
  font-size: 13px;
  letter-spacing: 0.3px;
  opacity: 0.92;
  margin-bottom: 8px;
}
.event-card__date::before {
  content: "";
  display: inline-block;
  width: 14px;
  height: 14px;
  margin-right: 7px;
  vertical-align: -2px;
  background: currentColor;
  -webkit-mask: url(../img/svg/form-calendar.svg) no-repeat center / contain;
          mask: url(../img/svg/form-calendar.svg) no-repeat center / contain;
}
.event-card__title {
  font-family: Merriweather;
  font-weight: 400;
  color: #fff;
  font-size: 18px;
  line-height: 1.3;
  margin: 0;
}
.event-card--featured .event-card__title {
  font-size: 26px;
  margin-bottom: 12px;
}
.event-card__excerpt {
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
}
.events-grid__more {
  display: flex;
  justify-content: center;
  padding-top: 50px;
}

@media (max-width: 991px) {
  .events-grid__layout {
    grid-template-columns: repeat(2, 1fr);
  }
  .event-card--featured {
    grid-column: span 2;
    grid-row: auto;
    min-height: 300px;
  }
}
@media (max-width: 575px) {
  .events-grid__layout {
    grid-template-columns: 1fr;
  }
  .event-card--featured {
    grid-column: auto;
  }
}

/* ---- patička: otevírací doba + rezervační blok (vše na střed) ---- */
.contact-box__hours {
  text-align: center;
  color: var(--c-muted);
}
.contact-box__hours p {
  margin: 0 0 6px;
  font-size: 16px;
  letter-spacing: 0.3px;
}
/* kontaktní sloupec — text 16px (default 12px ve style.css) */
footer .contact-box__address,
footer .contact-box__contacts a {
  font-size: 16px;
}
/* kontakty — design jako návrh: normální case, vlevo, tučný název + label */
footer .contact-box--kontakt .contact-box__address {
  display: block;
  text-align: center;
  text-transform: none;
  margin: 0 auto 24px;
  color: var(--c-text);
  font-weight: 400;
  line-height: 1.7;
}
footer .contact-box--kontakt .contact-box__address span {
  display: inline;
  font-weight: 700;
}
footer .contact-box--kontakt .contact-box__contacts {
  display: flex;
  flex-direction: column;
  align-items: center;
}
footer .contact-box--kontakt .contact-box__contacts a {
  text-transform: none;
  letter-spacing: 0.2px;
}
/* dolní navigace patičky — text 14px (default 10px) */
footer .footer-bottom__left li a,
footer .footer-bottom__right li a {
  font-size: 14px;
}
/* oddělovače v dolní navigaci — kytka místo tečky (medová) */
footer .footer-bottom__left li::before,
footer .footer-bottom__right li::before {
  width: 12px;
  height: 12px;
  left: -6px;
  background: var(--c-accent);
  -webkit-mask: url(../img/logo/kytka.svg) no-repeat center / contain;
          mask: url(../img/logo/kytka.svg) no-repeat center / contain;
}
.contact-box__hours p span {
  font-weight: 600;
  color: var(--c-text);
  margin-right: 6px;
}
.contact-box__reserve {
  margin-top: 24px;
  text-align: center;
}

/* ============================================================
   A11Y + UX (audit fixes)
   ============================================================ */

/* mobilní opener + submenu caret jsou <button> — pryč s nativním UA vzhledem
   (jinak iOS/Safari překreslí nativní tlačítko a potlačí background-ikonu →
   opener nejde poznat / „menu se nerozbaluje") */
.mobile-menu-opener,
.m-submenu-toggle {
  -webkit-appearance: none;
  appearance: none;
  border: 0;
  padding: 0;
  background-color: transparent;
  cursor: pointer;
}

/* skip-link — viditelný jen na focus */
.skip-link {
  position: absolute;
  left: 8px;
  top: -60px;
  z-index: 2000;
  padding: 10px 18px;
  background: var(--c-heading);
  color: #fff;
  border-radius: 6px;
  transition: top 0.2s ease;
}
.skip-link:focus {
  top: 8px;
  color: #fff;
}

/* skrytý text pro čtečky (ikonová tlačítka — mobilní opener) */
.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

/* viditelný focus pro klávesnici (nejen :hover) */
a:focus-visible,
button:focus-visible,
.button:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid var(--c-accent);
  outline-offset: 2px;
  border-radius: 2px;
}

/* desktop submenu dostupné i klávesnicí (focus-within, nejen :hover) */
.header-home .main-nav .has-submenu:focus-within .submenu {
  display: block;
}

/* kontaktní adresa je v <address> — bez výchozí kurzívy */
footer .contact-box--kontakt .contact-box__address {
  font-style: normal;
}

/* fixed mobilní hlavička — respektovat notch (safe area) */
.header-home .mobile-nav {
  padding-top: env(safe-area-inset-top);
}

/* stabilní scrollbar-gutter (prevence poskoku layoutu) */
html {
  scrollbar-gutter: stable;
}

/* slidery — horizontální swipe nechytá scroll stránky */
.reviews__track,
.gallery-type-1__track {
  overscroll-behavior-x: contain;
}

/* respektovat prefers-reduced-motion (auto hero crossfade + hover transformy) */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  html {
    scroll-behavior: auto;
  }
}

/* mobil: nižší hero → méně prázdného místa nad/pod intro textem
   (offset +30px drží text pod sticky hlavičkou, min-height pojme celý text) */
@media (max-width: 767px) {
  .hero-slideshow {
    min-height: 540px;
    height: 70dvh;
    border-radius: 0;
  }
  .container-fluid .intro-text {
    transform: translateX(-50%) translateY(calc(-50% + 30px));
  }
  /* intro boxy: bez 6px zaoblení, položky zarovnané vlevo (ne na střed) */
  .intro-items {
    border-radius: 0;
  }
  .intro-items .intro-items__box {
    justify-content: flex-start;
    padding-left: 30px;
  }
  /* jemná oddělovací linka mezi položkami (pod sebou na mobilu) */
  .intro-items .row > div + div {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
}

/* ============================================================
   Kontaktní / rezervační formulář (port v1.2.0 modulu)
   Přeneseno ze skeletonového style.css, přebarveno na paletu U Janíka.
   Submit tlačítko používá .button.button-primary (ze style.css).
   ============================================================ */
.contact-form {
  max-width: 40rem;
  margin-top: 2rem;
}
.form-row {
  margin: 0 0 1.1rem;
}
.form-row label {
  display: block;
  font-weight: 600;
  color: var(--c-heading);
  margin-bottom: .4rem;
}
.form-row input,
.form-row textarea {
  width: 100%;
  padding: .65rem .75rem;
  font: inherit;
  color: var(--c-text);
  background: #fff;
  border: 1px solid var(--c-sand);
  border-radius: 6px;
}
.form-row textarea { resize: vertical; }
.form-row input:focus,
.form-row textarea:focus {
  outline: 2px solid var(--c-cta);
  outline-offset: 1px;
  border-color: var(--c-cta);
}
.form-row.has-error input,
.form-row.has-error textarea {
  border-color: #b23b3b;
}
.form-row__error {
  display: block;
  margin-top: .35rem;
  font-size: .85rem;
  color: #b23b3b;
}
.form-error,
.form-success {
  padding: .85rem 1.1rem;
  border-radius: 6px;
  margin: 1.2rem 0;
}
.form-error {
  background: #fbeaea;
  color: #8a2b2b;
  border: 1px solid #e3b6b6;
}
.form-success {
  background: var(--c-surface-2);
  color: var(--c-heading);
  border: 1px solid var(--c-sand);
}
.form-actions { margin-top: 1.4rem; }

/* ============================================================
   Touch-targety (D2 z auditu) — mobilní menu + footer odkazy ≥44px.
   ============================================================ */
@media (max-width: 991.98px) {
  .mobile-menu a {
    display: block;
    min-height: 44px;
    padding-top: 11px;
    padding-bottom: 11px;
  }
  /* jazykový přepínač vedle sebe, ne přes celou šířku */
  .mobile-menu .lang a {
    display: inline-block;
  }
}
.footer-bottom__left a,
.footer-bottom__right a {
  display: inline-block;
  padding-top: 8px;
  padding-bottom: 8px;
  min-height: 44px;
}

/* ============================================================
   Podstránky — nadpis stránky (.page h1) se zlatým podtržením.
   ============================================================ */
.page h1 {
  font-family: Merriweather, serif;
  font-weight: 400;
  color: var(--c-heading);
  font-size: 44px;
  line-height: 1.2;
  margin: 0 0 48px;
  position: relative;
}
.page h1::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -16px;
  width: 40px;
  height: 2px;
  background: var(--c-cta);
}

/* ============================================================
   Rezervační formulář (/rezervace) — layout dle návrhu:
   jméno (celá šířka) / e-mail + telefon / datum + čas + počet / zpráva.
   ============================================================ */
/* karta formuláře — teplý krémový panel se zaoblením a jemným stínem */
.rezervace-form {
  max-width: none;
  margin-top: 0;
  background: #faf5ec;
  border: 1px solid #e7decd;
  border-radius: 6px;
  padding: 48px;
  box-shadow: 0 14px 44px rgba(81, 61, 38, 0.06);
}
@media (max-width: 767px) {
  .rezervace-form { padding: 24px; }
}
.rezervace-form .form-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}
.rezervace-form .form-field { position: relative; }
.rezervace-form .form-field--full  { flex: 0 0 100%; }
.rezervace-form .form-field--half  { flex: 1 1 calc(50% - 9px); min-width: 240px; }
.rezervace-form .form-field--third { flex: 1 1 calc(33.333% - 12px); min-width: 200px; }

.rezervace-form .form-input,
.rezervace-form textarea {
  width: 100%;
  background: #fffdf9;
  border: 1px solid #e2d8c6;
  border-radius: 6px;
  padding: 20px 22px;
  font: inherit;
  color: var(--c-text);
  transition: border-color .2s ease, box-shadow .2s ease;
}
.rezervace-form textarea { resize: vertical; min-height: 190px; }
.rezervace-form .form-input.has-icon { padding-left: 54px; }

.rezervace-form .form-input::placeholder,
.rezervace-form textarea::placeholder {
  text-transform: uppercase;
  letter-spacing: 1.2px;
  font-size: 13px;
  font-weight: 500;
  color: var(--c-muted);
  opacity: 1;
}
.rezervace-form .form-input:focus,
.rezervace-form textarea:focus {
  outline: none;
  border-color: var(--c-cta);
  box-shadow: 0 0 0 3px rgba(176, 84, 31, 0.12);
}
.rezervace-form .form-field.has-error .form-input,
.rezervace-form .form-field.has-error textarea { border-color: #b23b3b; }

/* ikony vlevo */
.rezervace-form .form-field--email::before,
.rezervace-form .form-field--phone::before,
.rezervace-form .form-field--date::before,
.rezervace-form .form-field--time::before,
.rezervace-form .form-field--count::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 30px;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  pointer-events: none;
}
.rezervace-form .form-field--email::before { background-image: url(../img/svg/envelope.svg); }
.rezervace-form .form-field--phone::before { background-image: url(../img/svg/phone.svg); }
.rezervace-form .form-field--date::before  { background-image: url(../img/svg/form-calendar2.svg); }
.rezervace-form .form-field--time::before  { background-image: url(../img/svg/form-clock.svg); }
.rezervace-form .form-field--count::before { background-image: url(../img/svg/form-count.svg); }

/* poznámka pod hvězdičkou */
.rezervace-form .form-note {
  color: var(--c-muted);
  font-style: italic;
  font-size: 14px;
  margin: 14px 0 0;
}

/* submit — centrovaný, uppercase, zlatý podtrh */
.rezervace-form .form-actions { text-align: center; margin: 44px 0 26px; }
.rezervace-form .form-submit {
  display: inline-block;
  background: none;
  border: 0;
  cursor: pointer;
  font-family: inherit;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--c-heading);
  padding: 10px 8px;
  position: relative;
}
.rezervace-form .form-submit::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--c-cta);
}
.rezervace-form .form-submit:hover { color: var(--c-cta); }

/* potvrzovací věta */
.rezervace-form .form-confirm {
  font-weight: 700;
  color: var(--c-heading);
  margin-top: 8px;
}

/* ============================================================
   Breadcrumb (drobečková navigace) — Úvod › stránka.
   Oddělovač = brandová kytka (mask).
   ============================================================ */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.breadcrumb__link { color: var(--c-muted); transition: color .2s ease; }
.breadcrumb__link:hover { color: var(--c-cta); }
.breadcrumb__current { color: var(--c-heading); font-weight: 600; }
.breadcrumb__sep {
  flex: 0 0 auto;
  width: 11px;
  height: 11px;
  background-color: var(--c-kytka);
  -webkit-mask: url(../img/logo/kytka.svg) no-repeat center / contain;
  mask: url(../img/logo/kytka.svg) no-repeat center / contain;
}

/* ============================================================
   Galerie — mřížka po sekcích.
   ============================================================ */
.gallery-section { margin-bottom: 54px; }
.gallery-section__title {
  font-family: Merriweather, serif;
  font-weight: 400;
  color: var(--c-heading);
  font-size: 26px;
  margin: 0 0 28px;
  position: relative;
}
.gallery-section__title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -12px;
  width: 34px;
  height: 2px;
  background: var(--c-cta);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 14px;
}
.gallery-tile {
  display: block;
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 6px;
  background: var(--c-surface-2);
}
.gallery-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}
.gallery-tile:hover img,
.gallery-tile:focus-visible img { transform: scale(1.06); }
.gallery-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(81, 61, 38, 0);
  transition: background .3s ease;
}
.gallery-tile:hover::after { background: rgba(81, 61, 38, .18); }
.gallery-tile:focus-visible { outline: 3px solid var(--c-accent); outline-offset: 2px; }

/* ============================================================
   Lightbox (galerie) — overlay přes celou obrazovku.
   ============================================================ */
.lightbox {
  /* !important: přebíjí leftover .header-home ~ div:last-of-type {position:relative}
     z původní šablony (lightbox je poslední div sourozenec za headerem) */
  position: fixed !important;
  inset: 0;
  z-index: 20000;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(38, 37, 36, .93);
  padding: 40px;
}
.lightbox.is-open { display: flex; }
.lightbox__img {
  max-width: 90vw;
  max-height: 86vh;
  border-radius: 6px;
  box-shadow: 0 12px 50px rgba(0, 0, 0, .55);
}
.lightbox__close,
.lightbox__nav {
  position: absolute;
  -webkit-appearance: none;
  appearance: none;
  background: rgba(255, 255, 255, .1);
  border: 0;
  color: #fff;
  cursor: pointer;
  border-radius: 6px;
  line-height: 1;
  transition: background .2s ease;
}
.lightbox__close { top: 18px; right: 20px; width: 44px; height: 44px; font-size: 28px; }
.lightbox__nav { top: 50%; transform: translateY(-50%); width: 54px; height: 54px; font-size: 34px; }
.lightbox__prev { left: 20px; }
.lightbox__next { right: 20px; }
.lightbox__close:hover,
.lightbox__nav:hover { background: var(--c-cta); }
@media (max-width: 600px) {
  .lightbox { padding: 16px; }
  .lightbox__nav { width: 44px; height: 44px; font-size: 26px; }
}

/* ============================================================
   Page-header zóna (vzorová podstránka) — breadcrumb + nadpis + lead,
   oddělená od obsahu jemnou linkou s kytka-flourishem na ní.
   ============================================================ */
.page-header {
  position: relative;
  text-align: center;
  padding-bottom: 42px;
  margin-bottom: 54px;
  border-bottom: 1px solid rgba(81, 61, 38, 0.14);
}
.page-header .breadcrumb {
  justify-content: center;
  margin-bottom: 20px;
}
.page-header__title {
  font-family: Merriweather, serif;
  font-weight: 400;
  color: var(--c-heading);
  font-size: 46px;
  line-height: 1.15;
  margin: 0;
}
/* zlatá linka pod nadpisem na střed (přebíjí levé zarovnání z .page h1::after) */
.page-header .page-header__title::after {
  left: 50%;
  transform: translateX(-50%);
}
.page-header__lead {
  max-width: 620px;
  margin: 18px auto 0;
  color: var(--c-muted);
  font-size: 15px;
  line-height: 1.7;
}
/* kytka-flourish vycentrovaná NA spodní lince (pozadí v barvě webu „přeruší" linku) */
.page-header__divider {
  position: absolute;
  left: 50%;
  bottom: -14px;
  transform: translateX(-50%);
  width: 46px;
  height: 28px;
  background: var(--c-bg);
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-header__divider::before {
  content: "";
  width: 24px;
  height: 24px;
  background-color: var(--c-kytka);
  -webkit-mask: url(../img/logo/kytka.svg) no-repeat center / contain;
  mask: url(../img/logo/kytka.svg) no-repeat center / contain;
}
@media (max-width: 767px) {
  .page-header__title { font-size: 34px; }
  .page-header { padding-bottom: 34px; margin-bottom: 42px; }
}

/* ============================================================
   Podstránky — patička oddělená tenkou linkou + kompaktnější
   (scope body[data-route] ≠ home → homepage netknutá).
   ============================================================ */
body:not([data-route="home"]) .page { padding-bottom: 1.5rem; }
body:not([data-route="home"]) footer {
  border-top: 1px solid rgba(81, 61, 38, 0.14);
  padding-top: 40px;
}
@media (min-width: 992px) {
  body:not([data-route="home"]) footer { padding-top: 56px; }
}
/* sjednocení všech linek v patičce podstránek na stejnou jemnou hairline
   (přebíjí jen šířku+barvu, styl solid zůstává → last-child border:none platí dál) */
body:not([data-route="home"]) footer .footer-bottom {
  border-top-width: 1px;
  border-top-color: rgba(81, 61, 38, 0.14);
}
@media (min-width: 992px) {
  body:not([data-route="home"]) footer .contact-box {
    border-right-width: 1px;
    border-right-color: rgba(81, 61, 38, 0.14);
  }
}

/* ============================================================
   Fix: obsah podstránek (positioned potomci jako .page-header,
   .gallery-tile) se maloval NAD fixed hlavičku/mobilní menu i desktop
   submenu. isolation:isolate uzavře main do vlastního stacking kontextu
   pod hlavičku (z-index 10000). Scope :not(home) → homepage netknutá.
   ============================================================ */
body:not([data-route="home"]) #main {
  isolation: isolate;
}

/* ============================================================
   Jídelní lístek — kategorie + položky s tečkovaným leaderem.
   ============================================================ */
.menu { max-width: 1000px; margin: 0 auto; }
.menu-section { margin-bottom: 52px; }
.menu-section__title {
  font-family: Merriweather, serif;
  font-weight: 400;
  color: var(--c-heading);
  font-size: 26px;
  margin: 0 0 26px;
  position: relative;
}
.menu-section__title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -12px;
  width: 34px;
  height: 2px;
  background: var(--c-cta);
}
.menu-list { list-style: none; margin: 0; padding: 0; }
.menu-item { display: flex; align-items: baseline; padding: 13px 0; }
.menu-item + .menu-item { border-top: 1px solid rgba(81, 61, 38, 0.08); }
/* gramáž = pevný levý sloupec, popis se zalamuje pod sebe (ne pod gramáž) */
.menu-item__amount {
  flex: 0 0 58px;
  color: var(--c-muted);
  font-weight: 500;
  font-size: 0.9em;
  white-space: nowrap;
}
.menu-item__body { flex: 1 1 auto; min-width: 0; }
.menu-item__row { display: flex; align-items: baseline; }
.menu-item__name {
  color: var(--c-heading);
  font-weight: 600;
  line-height: 1.45;
}
.menu-item__dots {
  flex: 1 1 auto;
  margin: 0 10px;
  min-width: 16px;
  border-bottom: 2px dotted var(--c-sand);
  position: relative;
  top: -4px;
}
.menu-item__price {
  color: var(--c-cta);
  font-weight: 700;
  white-space: nowrap;
}
.menu-item__note {
  margin: 4px 0 0;
  color: var(--c-muted);
  font-size: 14px;
  font-style: italic;
}
.menu-cta { text-align: center; margin-top: 8px; }

/* ============================================================
   Lístek — karty (taby) pro přepínání kategorií.
   ============================================================ */
.menu-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2px;
  max-width: 1350px;
  margin: 0 auto 44px;
  border-bottom: 1px solid rgba(81, 61, 38, 0.14);
}
.menu-tab {
  -webkit-appearance: none;
  appearance: none;
  background: none;
  border: 0;
  cursor: pointer;
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--c-muted);
  padding: 12px 16px;
  position: relative;
  transition: color 0.2s ease;
}
.menu-tab:hover { color: var(--c-heading); }
.menu-tab.is-active { color: var(--c-cta); }
.menu-tab.is-active::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: -1px;
  height: 2px;
  background: var(--c-cta);
}
.menu-tab:focus-visible { outline: 2px solid var(--c-accent); outline-offset: 2px; }
.menu-empty { color: var(--c-muted); font-style: italic; padding: 12px 0; }
@media (max-width: 767px) {
  .menu-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: flex-start;
    scrollbar-width: none;
  }
  .menu-tabs::-webkit-scrollbar { display: none; }
  .menu-tab { flex: 0 0 auto; white-space: nowrap; }
}

/* text-blok v sekci lístku (vína lahvová, ostatní…) */
.menu-section__text {
  color: var(--c-muted);
  line-height: 1.7;
  margin: 0 0 8px;
  max-width: 760px;
}

/* ============================================================
   Prose — textové podstránky (Historie…): čtecí šířka, figure,
   citace. Vycentrovaný blok pod page-headerem.
   ============================================================ */
.page-prose {
  max-width: 1200px;
  margin: 0 auto;
}
.page-prose > p {
  color: var(--c-text);
  line-height: 1.85;
  margin: 0 0 1.4em;
}
.page-prose > p:last-child { margin-bottom: 0; }
.page-prose__sign {
  margin-top: 2.2em;
  color: var(--c-heading);
}
.page-prose__sign strong { color: var(--c-heading); }

/* historický / ilustrační snímek uvnitř prose */
.page-figure {
  margin: 2.4em 0;
}
.page-figure img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 6px;
}
.page-figure figcaption {
  margin-top: 12px;
  text-align: center;
  font-size: 14px;
  font-style: italic;
  color: var(--c-muted);
}

/* citace (verš, motto) */
.page-quote {
  margin: 2em 0;
  padding: 4px 0 4px 22px;
  border-left: 3px solid var(--c-accent);
}
.page-quote p {
  margin: 0;
  font-family: Merriweather, serif;
  font-style: italic;
  font-size: 1.08em;
  line-height: 1.7;
  color: var(--c-heading);
}
.page-quote cite {
  display: block;
  margin-top: 12px;
  font-style: normal;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  color: var(--c-cta);
}

/* ============================================================
   Dárkový poukaz — foto + text + CTA na online obchod.
   ============================================================ */
.voucher {
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding-bottom: 18px;
}
.voucher__media {
  flex: 1 1 380px;
  margin: 0;
  min-width: 0;
}
.voucher__media img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 6px;
  box-shadow: 0 18px 40px rgba(81, 61, 38, 0.18);
}
.voucher__body {
  flex: 1 1 360px;
  min-width: 0;
}
.voucher__body > p {
  color: var(--c-text);
  line-height: 1.8;
  margin: 0 0 1.2em;
}
.voucher__cta {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}
.voucher__body .voucher__note {
  margin: 40px 0 0;
  text-align: center;
  font-size: 14px;
  color: var(--c-muted);
}
.voucher__note a { color: var(--c-cta); }
@media (max-width: 767px) {
  .voucher { gap: 32px; }
  .voucher__media { flex-basis: 100%; max-width: 360px; margin: 0 auto; }
}

/* ============================================================
   Kontakt — věta pod otevírací dobou.
   ============================================================ */
.contact-box__note {
  margin: 22px 0 0;
  font-style: italic;
  color: var(--c-muted);
}

/* ============================================================
   Kontakt — mapa přes celou šířku (full-bleed z .page containeru).
   ============================================================ */
.contact-map {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-top: 48px;
  line-height: 0;
}
.contact-map iframe {
  display: block;
  width: 100%;
  height: 460px;
  border: 0;
}
.contact-map__link {
  position: absolute;
  right: 14px;
  bottom: 14px;
  z-index: 2;
  background: var(--c-heading);
  color: #fff;
  font-size: 13px;
  line-height: 1;
  padding: 9px 14px;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}
.contact-map__link:hover { background: var(--c-cta); }
@media (max-width: 767px) {
  .contact-map iframe { height: 340px; }
}

/* ============================================================
   Kontakt — naši partneři (placeholdery 130×130, klient dodá loga).
   ============================================================ */
.partners {
  text-align: center;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  background: #fff;
  padding: 56px 0 72px;
}
.partners > .container { padding-left: 20px; padding-right: 20px; }
.partners__title {
  font-family: Merriweather, serif;
  font-weight: 400;
  color: var(--c-heading);
  font-size: 28px;
  margin: 0 0 36px;
}
.partners__grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 28px;
}
.partner-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  background: #fff;
  border: 1px solid var(--c-sand); /* světle hnědý proužek kolem loga */
  border-radius: 6px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.partner-logo:hover {
  border-color: var(--c-cta);
  box-shadow: 0 6px 16px rgba(81, 61, 38, 0.12);
}
.partner-logo img {
  width: 120px;
  height: 120px;
  object-fit: contain;
}
@media (prefers-reduced-motion: reduce) {
  .partner-logo { transition: none; }
}

/* ============================================================
   Kontakt — blok KONTAKTY: 16px, bez uppercase, tmavší (jen na
   stránce, ne v patičce).
   ============================================================ */
.page .contact-box--kontakt .contact-box__address,
.page .contact-box--kontakt .contact-box__contacts a {
  font-size: 16px;
  text-transform: none;
  letter-spacing: 0;
  color: var(--c-text);
}
/* vše v kontaktním bloku na střed */
.page .contact-box__address,
.page .contact-box__contacts,
.page .contact-box__note {
  text-align: center;
}

/* ============================================================
   Zpět nahoru — šipka v pravém dolním rohu (sdílené, všechny stránky).
   ============================================================ */
.back-to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 9000;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  border-radius: 6px;
  background: var(--c-cta);
  color: #fff;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(81, 61, 38, 0.32);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease, background-color 0.2s ease;
}
.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}
.back-to-top:hover { background: var(--c-cta-hover); }
.back-to-top:focus-visible { outline: 2px solid var(--c-accent); outline-offset: 3px; }
@media (prefers-reduced-motion: reduce) {
  .back-to-top { transition: opacity 0.25s ease; transform: none; }
  .back-to-top.is-visible { transform: none; }
}
@media (max-width: 575px) {
  .back-to-top { right: 16px; bottom: 16px; width: 44px; height: 44px; }
}

/* ---- Upozornění (popup, _includes/footer.php + initNoticeModal) ---- */
.notice-modal[hidden] { display: none; }
.notice-modal {
  /* !important: jako u .lightbox — leftover .header-home ~ div:last-of-type
     {position:relative} ze šablony trefí popup (poslední div v body) a bez
     tohohle spadne do toku stránky za patičku */
  position: fixed !important;
  inset: 0;
  z-index: 10100; /* nad fixed hlavičkou (10000–10002) */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}
.notice-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(var(--c-heading-rgb), 0.6);
}
.notice-modal__dialog {
  position: relative;
  width: 100%;
  max-width: 460px;
  max-height: calc(100dvh - 32px);
  overflow-y: auto;
  padding: 36px 28px 30px;
  border-radius: 6px;
  border-top: 6px solid var(--c-accent);
  background: var(--c-bg);
  color: var(--c-text);
  text-align: center;
  box-shadow: 0 18px 50px rgba(var(--c-heading-rgb), 0.35);
}
.notice-modal__dialog:focus { outline: none; }
.notice-modal__logo { display: block; width: 110px; height: auto; margin: 0 auto 12px; }
.notice-modal__title {
  margin: 0 0 14px;
  font-family: "Merriweather", serif;
  font-size: 30px;
  color: var(--c-heading);
}
.notice-modal__dialog p { margin: 0 0 10px; font-size: 17px; line-height: 1.55; }
.notice-modal__dialog strong { color: var(--c-cta); }
.notice-modal__thanks { font-weight: 600; }
.notice-modal__ok {
  margin-top: 14px;
  padding: 12px 34px;
  border: 0;
  border-radius: 6px;
  background: var(--c-cta);
  color: #fff;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s ease;
}
.notice-modal__ok:hover { background: var(--c-cta-hover); }
.notice-modal__ok:focus-visible,
.notice-modal__x:focus-visible { outline: 2px solid var(--c-accent); outline-offset: 3px; }
.notice-modal__x {
  position: absolute;
  top: 8px;
  right: 10px;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 0;
  background: none;
  color: var(--c-heading);
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
}
html.notice-open { overflow: hidden; }
