/*
Theme Name: Alcatraz Burger
Theme URI: https://alcatrazburger.sk
Author: Alcatraz Burger
Description: Moderná téma pre burgráreň Alcatraz v Trenčíne. Štýl junk food s prepínačom jazykov SK/EN, mapou, recenziami a plávajúcim kontaktným tlačidlom. Plne responzívny dizajn.
Version: 1.0.79
Text Domain: alcatraz-burger
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
*/

/* ==========================================================================
   CSS Variables - Alcatraz Brand (Logo & Banner)
   ========================================================================== */
:root {
  /* Brand palette from graphics */
  --color-cream: #F7EEDC;
  --color-cream-dark: #E8DCC8;
  --color-dark-brown: #33211B;
  --color-brown: #5C4037;
  --color-forest-green: #1B3C34;
  --color-forest-dark: #152a24;
  --color-sage: #AAB9A1;
  --color-mustard: #D4A34B;
  --color-mustard-dark: #b88a35;
  /* Mapped for compatibility */
  --color-black: #000000;
  --color-white: #ffffff;
  --color-light-grey: #F2F2F2;
  --color-red: #1B3C34;
  --color-red-dark: #152a24;
  --color-lime: #D4A34B;
  --color-lime-dark: #b88a35;
  --color-yellow: #B6C6B1;
  --font-heading: 'Montserrat', 'Oswald', sans-serif;
  --font-body: 'Montserrat', 'Open Sans', sans-serif;
  --font-stencil: 'Bebas Neue', 'Impact', sans-serif;
  --font-display: 'Bebas Neue', 'Montserrat', sans-serif;
  --transition: 0.3s ease;
}

/* ==========================================================================
   Base & Reset
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  width: 100%;
  overflow-x: hidden;
  scrollbar-gutter: stable;
}

body {
  margin: 0;
  padding: 0;
  width: 100%;
  min-width: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-black);
  background: #f8f6f2;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
  touch-action: none;
  overscroll-behavior: none;
}

body.menu-open .floating-contact {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: scale(0.94);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
}

body.single .site-header,
body.home .site-header,
body.blog .site-header {
  width: 100%;
}

.site-main {
  width: 100%;
  min-width: 0;
}

.screen-reader-text {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition), background var(--transition);
}

/* ==========================================================================
   Section Transitions - Clean (gallery-style, no wavy edges)
   ========================================================================== */
.section-clean {
  position: relative;
}


/* ==========================================================================
   Scroll-triggered Animations
   ========================================================================== */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.animate-visible {
  opacity: 1;
  transform: translateY(0);
}

.animate-slide-left {
  transform: translateX(-60px);
}

.animate-slide-left.animate-visible {
  transform: translateX(0);
}

.animate-slide-right {
  transform: translateX(60px);
}

.animate-slide-right.animate-visible {
  transform: translateX(0);
}

.animate-fade-up {
  transform: translateY(40px);
}

.animate-fade-up.animate-visible {
  transform: translateY(0);
}

.animate-scale-in {
  transform: scale(0.92);
}

.animate-scale-in.animate-visible {
  transform: scale(1);
}

.animate-on-scroll[data-animate-delay] {
  transition-delay: 0s;
}

.animate-on-scroll.animate-visible[data-animate-delay="100"] {
  transition-delay: 0.1s;
}

.animate-on-scroll.animate-visible[data-animate-delay="200"] {
  transition-delay: 0.2s;
}

.animate-on-scroll[data-animate-index] {
  transition-delay: 0s;
}

.animate-stagger .animate-on-scroll.animate-visible[data-animate-index="0"] { transition-delay: 0s; }
.animate-stagger .animate-on-scroll.animate-visible[data-animate-index="1"] { transition-delay: 0.08s; }
.animate-stagger .animate-on-scroll.animate-visible[data-animate-index="2"] { transition-delay: 0.16s; }
.animate-stagger .animate-on-scroll.animate-visible[data-animate-index="3"] { transition-delay: 0.24s; }
.animate-stagger .animate-on-scroll.animate-visible[data-animate-index="4"] { transition-delay: 0.32s; }
.animate-stagger .animate-on-scroll.animate-visible[data-animate-index="5"] { transition-delay: 0.4s; }

/* ==========================================================================
   Header & Navigation - Logo colors, logo centered
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--color-cream);
  padding: 0.85rem 1.5rem;
  box-shadow: 0 2px 20px rgba(51, 33, 27, 0.1);
  border-bottom: 2px solid var(--color-sage);
}

.site-header {
  width: 100%;
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr minmax(auto, min(480px, 72vw)) 1fr;
  align-items: center;
  gap: 1rem;
}

.header-nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  align-self: center;
  padding-right: 0.25rem;
  min-height: 2.75rem;
}

.header-nav .nav-menu {
  margin: 0;
  padding: 0;
}

.header-logo {
  display: flex;
  justify-content: center;
  flex-shrink: 0;
  min-width: 0;
}

.header-logo a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
  min-width: 0;
}

/* Text tagline removed — logo image is full wordmark (alcatraz pizza & burgers) */

.header-logo img {
  height: auto;
  width: auto;
  max-height: clamp(72px, 11vw, 112px);
  max-width: min(440px, 72vw);
  object-fit: contain;
  opacity: 0.95;
  transition: opacity 0.3s ease, transform 0.3s ease;
  background: transparent;
}

@media (min-width: 769px) {
  .header-logo img {
    min-height: 80px;
  }
}

.header-logo:hover img {
  opacity: 1;
  transform: scale(1.02);
}

.header-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1rem;
}

.header-social {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.header-social-link {
  width: 36px;
  height: 36px;
  background: var(--color-sage);
  color: var(--color-dark-brown) !important;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}

.header-social-link:hover {
  background: var(--color-dark-brown);
  color: var(--color-cream) !important;
  transform: scale(1.1);
}

.header-social-link svg {
  width: 18px;
  height: 18px;
}

.nav-menu {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: nowrap;
  gap: 0 0.75rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-menu li {
  display: flex;
  align-items: center;
  margin: 0;
}

.nav-menu li a {
  display: inline-flex;
  align-items: center;
  line-height: 1.25;
  padding: 0.4rem 0.2rem;
  color: var(--color-dark-brown);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.8125rem;
  letter-spacing: 0.045em;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: color var(--transition), border-color var(--transition);
}

.nav-menu li a:hover,
.nav-menu li a:focus-visible {
  color: var(--color-forest-green);
  border-bottom-color: rgba(27, 60, 52, 0.35);
  outline: none;
}

.btn-order {
  display: inline-block;
  padding: 0.6rem 1.25rem;
  background: var(--color-dark-brown);
  color: var(--color-cream) !important;
  font-weight: 700;
  text-transform: uppercase;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background var(--transition);
}

.btn-order:hover {
  background: var(--color-brown);
}

.language-switcher {
  display: flex;
  gap: 0.25rem;
}

.language-switcher a {
  padding: 0.35rem 0.6rem;
  color: var(--color-dark-brown);
  font-size: 0.85rem;
  font-weight: 600;
  border: 2px solid var(--color-dark-brown);
  border-radius: 4px;
}

.language-switcher a:hover,
.language-switcher a.active {
  background: var(--color-dark-brown);
  color: var(--color-cream) !important;
  border-color: var(--color-dark-brown);
}

/* Mobile menu toggle — fixovaná plocha, ikony v rovnakom boxe (žiadny skok layoutu) */
.menu-toggle {
  display: none;
  position: relative;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  background: none;
  border: none;
  color: var(--color-dark-brown);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  padding: 0;
  align-self: center;
  justify-self: start;
}

.menu-toggle .menu-icon-open,
.menu-toggle .menu-icon-close {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
}

.menu-toggle .menu-icon-close {
  display: none;
}

.menu-toggle[aria-expanded="true"] .menu-icon-open {
  display: none;
}

.menu-toggle[aria-expanded="true"] .menu-icon-close {
  display: flex;
}

.menu-close {
  display: none;
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: var(--color-dark-brown);
  color: var(--color-cream) !important;
  border: none;
  border-radius: 8px;
  padding: 0.75rem 1.25rem;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 2px 12px rgba(51, 33, 27, 0.3);
  transition: background var(--transition), transform var(--transition);
}

.menu-close span {
  margin-right: 0.5rem;
  font-size: 1.25rem;
}

.menu-close:hover {
  background: var(--color-brown);
  transform: scale(1.02);
}

@media (min-width: 993px) {
  /* Horizontálne menu v jednom riadku — žiadne zalamovanie pod seba */
  .header-inner {
    grid-template-columns: minmax(0, 1fr) minmax(260px, min(480px, 62vw)) minmax(0, 1fr);
  }

  .nav-menu {
    flex-wrap: nowrap;
    gap: 0 0.65rem;
  }

  .nav-menu li a {
    font-size: clamp(0.72rem, calc(0.75rem + 0.15vw), 0.8125rem);
    padding: 0.4rem 0.12rem;
  }
}

/* ==========================================================================
   Hero Carousel – videá alebo obrázky (nad hero-slide-bg pozadím)
   ========================================================================== */
.hero-carousel {
  position: relative;
  /* Úväz prvého „záberu“: odpočítame priebežnú výšku hlavičky (sticky v toku dokumentu). */
  min-height: calc(100vh - clamp(96px, 18vw + 56px, 176px));
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

@supports (height: 100svh) {
  .hero-carousel {
    min-height: calc(100svh - clamp(96px, 18vw + 56px, 176px));
  }
}

@supports (height: 100dvh) {
  .hero-carousel {
    min-height: calc(100dvh - clamp(96px, 18vw + 56px, 176px));
  }
}

.hero-carousel-track {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  pointer-events: none;
}

.hero-slide.active {
  opacity: 1;
  pointer-events: auto;
  z-index: 1;
}

.hero-slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  animation: hero-zoom 8s ease-in-out infinite;
}

.hero-slide.active .hero-slide-bg {
  animation-play-state: running;
}

.hero-slide:not(.active) .hero-slide-bg {
  animation-play-state: paused;
}

@keyframes hero-zoom {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.08); }
}

.hero-slide-bg--video {
  overflow: hidden;
}

.hero-carousel--videos .hero-slide-bg--video.hero-slide-bg {
  animation: none;
}

.hero-slide-video {
  position: absolute;
  inset: -2%;
  width: 104%;
  height: 104%;
  object-fit: cover;
  object-position: center;
  /* Jemné stlmenie pre čitateľný text — svetlejšie, video viac viditeľné. */
  filter: brightness(0.94) contrast(1.03) saturate(1.05);
}

.hero-carousel--videos .hero-slide-overlay {
  background:
    linear-gradient(
      to top,
      rgba(0, 0, 0, 0.48) 0%,
      rgba(0, 0, 0, 0.22) 38%,
      rgba(14, 22, 18, 0.1) 100%
    );
}

.hero-carousel--videos .hero-desc {
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.42);
}

.hero-carousel--videos .hero-title-line {
  text-shadow:
    0 2px 8px rgba(0, 0, 0, 0.5),
    0 12px 36px rgba(0, 0, 0, 0.38);
}

.hero-carousel--videos .hero-title-sub {
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

@media (prefers-reduced-motion: reduce) {
  .hero-carousel--videos .hero-slide-video {
    filter: brightness(0.9) contrast(1.02);
  }
}

.hero-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 40%, rgba(0, 0, 0, 0.2) 100%);
}

.hero-carousel-content {
  box-sizing: border-box;
  position: relative;
  z-index: 10;
  text-align: center;
  width: 100%;
  max-width: min(720px, calc(100% - 2rem));
  margin-inline: auto;
  padding-block: clamp(3rem, 9vh, 4.75rem) clamp(7rem, 15vh, 9rem);
  padding-inline-start: calc(env(safe-area-inset-left, 0px) + clamp(1rem, 4.5vw, 2rem));
  padding-inline-end: calc(env(safe-area-inset-right, 0px) + clamp(1rem, 4.5vw, 2rem));
}

/* Video hero: rezerva bočne pre šípky — centrovaný text sa nevojde „pod“ tlačidlá. */
.hero-carousel.hero-carousel--videos .hero-carousel-content {
  max-width: min(640px, calc(100% - 9.25rem));
}

.hero-content-animate .hero-badge,
.hero-content-animate .hero-title-main,
.hero-content-animate .hero-desc,
.hero-content-animate .hero-cta,
.hero-content-animate .hero-location {
  animation: hero-fade-up 0.8s ease forwards;
}

.hero-content-animate .hero-badge { animation-delay: 0.1s; opacity: 0; }
.hero-content-animate .hero-title-main { animation-delay: 0.2s; opacity: 0; }
.hero-content-animate .hero-desc { animation-delay: 0.35s; opacity: 0; }
.hero-content-animate .hero-cta { animation-delay: 0.5s; opacity: 0; }
.hero-content-animate .hero-location { animation-delay: 0.6s; opacity: 0; }

@keyframes hero-fade-up {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-carousel-content .hero-badge,
.hero-carousel-content .hero-title-main,
.hero-carousel-content .hero-desc {
  transition: opacity 0.2s ease;
}

.hero-content-switch .hero-badge,
.hero-content-switch .hero-title-main,
.hero-content-switch .hero-desc {
  opacity: 0.3 !important;
}

/* Tablet: šírejší padding bez orezania videí / textu pri šípkach */
@media (max-width: 992px) {
  .hero-carousel-content {
    max-width: min(640px, calc(100% - 2rem));
    padding-block: clamp(2.5rem, 8vh, 3.75rem) clamp(6.75rem, 13vh, 8.75rem);
  }

  .hero-carousel.hero-carousel--videos .hero-carousel-content {
    max-width: min(600px, calc(100% - 7.75rem));
  }
  .hero-title-line {
    font-size: clamp(2rem, 6vw, 3.25rem);
    line-height: 1.05;
  }

  .hero-title-sub {
    font-size: clamp(0.8rem, 2.1vw, 0.95rem);
    max-width: 34ch;
  }
  .hero-desc {
    font-size: clamp(0.95rem, 2.65vw, 1.06rem);
  }
}

@media (max-width: 768px) {
  .hero-carousel-content {
    padding-block: clamp(2rem, 7vh, 3rem) clamp(6.25rem, 12vh, 7.85rem);
  }

  .hero-carousel.hero-carousel--videos .hero-carousel-content {
    max-width: calc(100% - 7rem);
  }
  .hero-title-line {
    font-size: clamp(2rem, 10vw, 2.85rem);
  }

  .hero-title-sub {
    font-size: clamp(0.78rem, 3.25vw, 0.94rem);
  }
  .hero-desc {
    font-size: clamp(0.9rem, 3.85vw, 1.02rem);
    line-height: 1.6;
    margin-bottom: 1.65rem;
  }

  .hero-location {
    margin-top: 1.2rem;
  }
}

.hero-badge {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  background: var(--color-mustard);
  color: var(--color-dark-brown);
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  border-radius: 100px;
  margin-bottom: 1.5rem;
  box-shadow: 0 0 30px rgba(212, 163, 75, 0.35);
}

.hero-title-main {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
  margin: 0 0 1rem 0;
  text-align: center;
}

.hero-title-line {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 8vw, 6rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--color-white);
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
  overflow-wrap: anywhere;
  text-wrap: balance;
  line-height: 1.08;
}

/* Druhý riadok nadpisu (napr. doplnenie o mäse / žemiach) — čitateľný, nie display veľkosť */
.hero-title-sub {
  display: block;
  max-width: 38ch;
  margin: 0;
  padding: 0 0.25rem;
  font-family: var(--font-heading);
  font-size: clamp(0.9rem, 2.15vw, 1.1rem);
  font-weight: 600;
  line-height: 1.42;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.88);
  text-transform: none;
  overflow-wrap: anywhere;
  text-wrap: balance;
}

.hero-title-sub:empty {
  display: none;
}

.hero-desc {
  font-size: 1.15rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.95);
  margin: 0 0 2rem 0;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.1rem 2rem;
  background: var(--color-forest-green);
  color: var(--color-white) !important;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  border-radius: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 30px rgba(27, 60, 52, 0.4);
}

.hero-cta:hover {
  background: var(--color-forest-dark);
  transform: translateY(-3px);
  box-shadow: 0 8px 40px rgba(27, 60, 52, 0.5);
}

.hero-cta svg {
  transition: transform 0.3s ease;
}

.hero-cta:hover svg {
  transform: translateX(4px);
}

.hero-location {
  display: block;
  margin-top: 2rem;
  font-size: 0.9rem;
  color: var(--color-mustard);
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero-carousel-dots {
  position: absolute;
  bottom: max(1.25rem, calc(env(safe-area-inset-bottom, 0px) + 0.75rem));
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.35rem;
  row-gap: 0.85rem;
  max-width: calc(100% - 2rem);
}

/* Min. 44×44 dot target (bez zmeny HTML) — viditeľný kruh v ::before */
.hero-dot {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  box-sizing: border-box;
  border: none;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  padding: 0;
  display: grid;
  place-items: center;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.hero-dot:focus-visible {
  outline: 2px solid rgba(212, 163, 75, 0.95);
  outline-offset: 3px;
}

.hero-dot::before {
  content: '';
  box-sizing: border-box;
  display: block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.6);
  background: transparent;
  transition:
    transform 0.25s ease,
    background-color 0.25s ease,
    border-color 0.25s ease;
}

.hero-dot:hover::before {
  background: rgba(255, 255, 255, 0.38);
}

.hero-dot.active::before {
  background: var(--color-mustard);
  border-color: var(--color-mustard);
  transform: scale(1.2);
}

.hero-dot.active {
  transform: none;
}

.hero-carousel-nav {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  z-index: 10;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
  padding-inline: clamp(0.75rem, 3vw, 1.25rem);
}

.hero-carousel-nav button {
  pointer-events: auto;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.5);
  background: rgba(0, 0, 0, 0.3);
  color: white;
  font-size: 1.75rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.hero-carousel-nav button:hover {
  background: var(--color-forest-green);
  border-color: var(--color-forest-green);
}

/* „Scroll“ nápoveda vie kolidovať s lokáciou / bodkami na užších šírkach — šípky ostávajú viditeľné na všetkom. */
@media (max-width: 1299px) {
  .hero-carousel--videos .hero-scroll-hint {
    display: none !important;
  }
}

.hero-scroll-hint {
  position: absolute;
  bottom: max(5.25rem, calc(env(safe-area-inset-bottom, 0px) + 4rem));
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: hero-scroll-pulse 2s ease-in-out infinite;
}

@keyframes hero-scroll-pulse {
  0%, 100% { opacity: 0.6; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(0.7); }
}

/* Úzka výška (napr. landscape mobil) — zrazí výšku textu aby nezakrýval ovládacie body */
@media (max-height: 520px) and (orientation: landscape) {
  .hero-carousel-content {
    padding-block: clamp(0.85rem, 10vh, 1.85rem) clamp(4rem, 20vh, 5.85rem);
  }

  .hero-title-main {
    margin-bottom: 0.5rem;
  }

  .hero-desc {
    font-size: 0.86rem;
    line-height: 1.42;
    margin-bottom: 0.85rem;
  }

  .hero-location {
    margin-top: 0.85rem;
  }

  .hero-scroll-hint {
    display: none;
  }
}

/* ==========================================================================
   O Alcatraze / About Section
   ========================================================================== */
.about-section {
  padding: 6rem 2rem;
  background: linear-gradient(180deg, #ebe7df 0%, #f2efe8 50%, #faf8f5 100%);
}

.about-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-photo-frame {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(0, 0, 0, 0.05);
}

.about-photo-frame img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.about-photo-accent {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.4), transparent);
  pointer-events: none;
}

.about-photo-frame::before {
  content: '';
  position: absolute;
  top: -8px;
  right: -8px;
  width: 80px;
  height: 80px;
  border: 3px solid rgba(212, 163, 75, 0.6);
  border-radius: 12px;
  z-index: 1;
  pointer-events: none;
}

.about-badge {
  display: inline-block;
  padding: 0.4rem 1rem;
  background: rgba(212, 163, 75, 0.2);
  color: var(--color-brown);
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  border-radius: 100px;
  margin-bottom: 1rem;
}

.about-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  color: var(--color-black);
  letter-spacing: -0.02em;
  margin: 0 0 1.5rem 0;
  line-height: 1.1;
}

.about-desc {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #444;
  margin: 0 0 1rem 0;
}

.about-desc-secondary {
  font-size: 1.05rem;
  line-height: 1.75;
  color: #555;
  margin: 0 0 2rem 0;
}

.btn-red {
  display: inline-block;
  padding: 1rem 2rem;
  background: var(--color-forest-green);
  color: var(--color-white) !important;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 4px;
  transition: background var(--transition);
}

.btn-red:hover {
  background: var(--color-forest-dark);
}

/* ==========================================================================
   Features Section - Alcatraz Pizza and Burgers
   ========================================================================== */
.features-section {
  padding: 6rem 2rem 7rem;
  background: linear-gradient(180deg, #f8f6f2 0%, #fff 50%, #f5f3ef 100%);
}

.features-inner {
  max-width: 900px;
  margin: 0 auto;
}

.features-brand {
  text-align: center;
  margin-bottom: 2rem;
}

.features-brand .features-logo {
  width: auto;
  max-width: min(400px, 92vw);
  height: auto;
  max-height: clamp(100px, 16vw, 128px);
  display: block;
  margin: 0 auto 0.5rem;
  opacity: 0.9;
  background: transparent;
}

.features-brand-name {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-forest-green);
}

.features-main {
  text-align: center;
}

.features-title {
  font-family: var(--font-stencil);
  font-size: clamp(1.8rem, 3.2vw, 2.4rem);
  letter-spacing: 0.06em;
  color: var(--color-dark-brown);
  margin: 0 0 0.75rem 0;
  line-height: 1.2;
}

.features-lead {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #5a544c;
  margin: 0 auto 1.25rem;
  max-width: 540px;
}

.features-pillars {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.features-pillar {
  display: inline-block;
  padding: 0.4rem 1rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-forest-green);
  background: rgba(27, 60, 52, 0.08);
  border-radius: 100px;
}

.features-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem 2rem;
  text-align: left;
  max-width: 640px;
  margin: 0 auto;
}

.features-list-item {
  font-size: 0.9rem;
  line-height: 1.5;
  color: #5a544c;
}

.features-list-item strong {
  color: var(--color-dark-brown);
  font-weight: 700;
}

/* ==========================================================================
   Rozvoz – foto + kartičky (nad ponukou)
   ========================================================================== */
.delivery-strip {
  padding: clamp(3.25rem, 5.5vw, 4.75rem) 2rem;
  background:
    radial-gradient(120% 80% at 12% 20%, rgba(212, 163, 75, 0.12) 0%, transparent 55%),
    linear-gradient(135deg, #fffbf7 0%, #faf7f3 52%, #f4f1eb 100%);
  border-bottom: 1px solid rgba(51, 33, 27, 0.06);
}

.delivery-strip-inner {
  max-width: 1180px;
  margin: 0 auto;
}

.delivery-strip-head {
  text-align: center;
  max-width: 46rem;
  margin: 0 auto 2.25rem;
}

.delivery-strip-badge {
  display: inline-block;
  padding: 0.4rem 1rem;
  background: rgba(212, 163, 75, 0.2);
  color: var(--color-brown);
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  border-radius: 100px;
  margin-bottom: 1rem;
}

.delivery-strip-title {
  font-family: var(--font-stencil);
  font-weight: 400;
  font-size: clamp(2.35rem, 4vw, 3.35rem);
  color: var(--color-dark-brown);
  margin: 0 0 0.85rem;
  letter-spacing: 0.045em;
  line-height: 1.05;
}

.delivery-strip-lead {
  margin: 0;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--color-brown);
}

.delivery-strip-layout {
  display: flex;
  flex-direction: column;
  gap: clamp(1.75rem, 4vw, 2.5rem);
}

.delivery-strip-figure {
  margin: 0;
  width: 100%;
}

.delivery-strip-photo-shell {
  position: relative;
  border-radius: clamp(14px, 2.5vw, 22px);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  max-height: min(420px, 58vh);
  background: rgba(27, 60, 52, 0.06);
  box-shadow:
    0 2px 4px rgba(51, 33, 27, 0.05),
    0 16px 40px rgba(21, 42, 36, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
  border: 1px solid rgba(212, 163, 75, 0.32);
}

.delivery-strip-photo-shell::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background: linear-gradient(
    155deg,
    rgba(255, 255, 255, 0.15) 0%,
    transparent 35%,
    rgba(27, 60, 52, 0.15) 100%
  );
}

.delivery-strip-photo-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 44%;
}

.delivery-strip-main {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

@media (min-width: 940px) {
  .delivery-strip-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.14fr) minmax(340px, 1fr);
    gap: clamp(2rem, 4.5vw, 3rem);
    align-items: stretch;
  }

  .delivery-strip-photo-shell {
    max-height: none;
    min-height: 22rem;
  }

  .delivery-strip--with-photo .delivery-strip-note {
    text-align: left;
    align-items: flex-start;
    margin-inline: 0;
    margin-bottom: 1.5rem;
  }

  .delivery-strip--with-photo .delivery-strip-cta {
    text-align: left;
  }
}

.delivery-strip-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  list-style: none;
  margin: 0 0 2rem;
  padding: 0;
}

@media (min-width: 800px) {
  .delivery-strip:not(.delivery-strip--with-photo) .delivery-strip-list {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.15rem;
  }
}

.delivery-strip-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.2rem 1.25rem;
  border-radius: 14px;
  background: #fff;
  border: 1px solid rgba(51, 33, 27, 0.08);
  box-shadow:
    0 1px 2px rgba(51, 33, 27, 0.04),
    0 8px 24px rgba(21, 42, 36, 0.04);
  transition:
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.delivery-strip-item:hover {
  border-color: rgba(212, 163, 75, 0.45);
  box-shadow:
    0 2px 4px rgba(51, 33, 27, 0.06),
    0 12px 34px rgba(21, 42, 36, 0.07);
}

.delivery-strip-icon-wrap {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.95) 0%, rgba(247, 238, 220, 0.75) 100%);
  border: 1px solid rgba(27, 60, 52, 0.1);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 1px 3px rgba(27, 60, 52, 0.06);
}

.delivery-strip-svg {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  color: var(--color-forest-green);
}

.delivery-strip-text {
  flex: 1;
  min-width: 0;
}

.delivery-strip-item-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.98rem;
  color: var(--color-dark-brown);
  letter-spacing: 0.015em;
  margin: 0 0 0.35rem;
  line-height: 1.3;
}

.delivery-strip-text p {
  margin: 0;
  font-size: 0.885rem;
  line-height: 1.56;
  color: #555047;
}

.delivery-strip-note {
  max-width: 52rem;
  margin: 0 auto 1.6rem;
  padding: 0.9rem 1.2rem;
  font-size: 0.865rem;
  line-height: 1.56;
  text-align: center;
  color: #5e574e;
  background: rgba(255, 255, 255, 0.75);
  border-radius: 10px;
  border: 1px dashed rgba(212, 163, 75, 0.42);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.55rem;
}

.delivery-strip-note-heading {
  display: block;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.76rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--color-dark-brown);
}

.delivery-strip-note-body {
  display: block;
  max-width: 48rem;
}

.delivery-strip-cta {
  text-align: center;
}

@media (prefers-reduced-motion: reduce) {
  .delivery-strip-item {
    transition: none;
  }

  .delivery-strip-item:hover {
    box-shadow:
      0 1px 2px rgba(51, 33, 27, 0.04),
      0 8px 24px rgba(21, 42, 36, 0.04);
  }
}

/* ==========================================================================
   Menu Section
   ========================================================================== */
.menu-section {
  padding: 5rem 2rem;
  background: linear-gradient(135deg, #fff 0%, #faf8f5 50%, #f5f2ed 100%);
}

.menu-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.menu-section h2,
.reviews-section h2,
.gallery-section h2,
.blog-section h2 {
  font-family: var(--font-stencil);
  font-weight: 400;
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  text-align: center;
  margin-bottom: 2rem;
  letter-spacing: 0.05em;
}

.menu-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.menu-pizza-intro {
  display: none;
  max-width: 44rem;
  margin: -0.35rem auto 1.35rem;
  padding: 0.75rem 1.1rem;
  text-align: center;
  font-size: 0.92rem;
  line-height: 1.45;
  color: var(--color-brown, #5a4336);
  background: rgba(212, 163, 75, 0.18);
  border: 1px solid rgba(212, 163, 75, 0.45);
  border-radius: 10px;
}

.menu-pizza-intro.is-visible {
  display: block;
}

.menu-combo-info {
  text-align: center;
  padding: 1rem 2rem;
  margin-bottom: 2rem;
  background: rgba(27, 60, 52, 0.08);
  border-radius: 8px;
  border-left: 4px solid var(--color-forest-green);
}

.menu-combo-info p {
  margin: 0 0 0.25rem 0;
  font-size: 0.95rem;
}

.menu-combo-price {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--color-forest-green);
  margin-top: 0.25rem !important;
}

.menu-allergen-legend {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(51, 33, 27, 0.15);
}

.menu-allergen-legend h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 1rem 0;
  color: var(--color-dark-brown);
  letter-spacing: 0.02em;
}

.allergen-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 0.35rem 2rem;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 0.85rem;
  color: #555;
  line-height: 1.5;
}

.allergen-list .allergen-num {
  display: inline-block;
  min-width: 1.5em;
  font-weight: 600;
  color: var(--color-dark-brown);
}

.menu-tab {
  padding: 0.75rem 1.5rem;
  background: transparent;
  border: 2px solid var(--color-black);
  font-family: var(--font-body);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.menu-tab:hover,
.menu-tab.active {
  background: var(--color-forest-green);
  border-color: var(--color-forest-green);
  color: var(--color-white);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
  width: 100%;
}

.menu-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.35s ease;
}

.menu-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.12);
}

.menu-card-image img {
  transition: transform 0.5s ease;
}

.menu-card:hover .menu-card-image img {
  transform: scale(1.05);
}

.menu-card-image {
  height: 180px;
  background: var(--color-black);
  overflow: hidden;
}

.menu-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.menu-card-content {
  padding: 1.5rem;
}

.menu-card h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  margin: 0 0 0.5rem 0;
}

.menu-card p {
  font-size: 0.9rem;
  color: #555;
  margin: 0 0 0.5rem 0;
}

.menu-card-allergens {
  font-size: 0.8rem;
  color: #666;
  margin: 0 0 1rem 0;
}

.menu-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.menu-card-price {
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--color-forest-green);
}

.menu-card-add {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-red);
  color: var(--color-white);
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transition: background var(--transition);
}

/* ==========================================================================
   Blog Section
   ========================================================================== */
.blog-section {
  padding: 5rem 2rem;
  background: linear-gradient(180deg, #e8e5df 0%, #f2f0ea 100%);
}

.blog-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.blog-section h2 {
  font-family: var(--font-stencil);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  text-align: center;
  margin-bottom: 3rem;
  letter-spacing: 0.05em;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.blog-card a {
  display: block;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: transform var(--transition), box-shadow var(--transition);
}

.blog-card a:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.blog-card-image {
  height: 200px;
  overflow: hidden;
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-card-content {
  padding: 1.5rem;
}

.blog-card-content h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  margin: 0 0 0.5rem 0;
}

.blog-card-content p {
  font-size: 0.9rem;
  color: #555;
  margin: 0;
}

.blog-more {
  text-align: center;
  margin-top: 2rem;
}

/* ==========================================================================
   Promo Banners
   ========================================================================== */
.promo-section {
  padding: 3rem 2rem;
  background: var(--color-light-grey);
}

.promo-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.promo-banner {
  position: relative;
  padding: 2rem;
  border-radius: 12px;
  color: var(--color-white);
  overflow: hidden;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.promo-banner.black { background: var(--color-black); }
.promo-banner.green { background: #2d6a4f; }
.promo-banner.red { background: var(--color-red); }
.promo-banner.dark { background: #333; }

.promo-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--color-yellow);
  color: var(--color-black);
  padding: 0.5rem 1rem;
  border-radius: 50%;
  font-weight: 700;
  font-size: 0.9rem;
}

.promo-banner h3 {
  font-family: var(--font-stencil);
  font-size: 1.5rem;
  margin: 0 0 0.5rem 0;
}

.promo-banner .price {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.promo-banner img {
  position: absolute;
  right: -20px;
  bottom: -20px;
  max-height: 120px;
  opacity: 0.9;
}

/* ==========================================================================
   Achievements Section - Premium dark, clean
   ========================================================================== */
.achievements-section {
  padding: 6rem 2rem 7rem;
  background: var(--color-forest-green);
  color: var(--color-cream);
  position: relative;
}

.achievements-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.achievements-header {
  text-align: center;
  margin-bottom: 3rem;
}

.achievements-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-mustard);
  margin-bottom: 0.5rem;
}

.achievements-title {
  font-family: var(--font-stencil);
  font-size: clamp(1.8rem, 3.2vw, 2.4rem);
  letter-spacing: 0.06em;
  color: var(--color-cream);
  margin: 0;
  line-height: 1.25;
}

.achievements-cards {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 1.5rem;
}

.achievement-card {
  text-decoration: none;
  color: inherit;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.achievement-card:hover {
  transform: translateY(-6px);
}

/* Video card - overlay caption */
.achievement-card-video {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}

.achievement-card-video .achievement-card-media {
  position: relative;
  padding-bottom: 56.25%;
  overflow: hidden;
}

.achievement-card-media img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.achievement-card:hover .achievement-card-media img {
  transform: scale(1.06);
}

.achievement-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(27, 60, 52, 0.9) 0%, rgba(27, 60, 52, 0.3) 50%, rgba(27, 60, 52, 0.1) 100%);
  pointer-events: none;
}

.achievement-card-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 76px;
  height: 76px;
  color: var(--color-forest-green);
  transition: transform 0.35s ease;
}

.achievement-card-play svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 4px 16px rgba(0, 0, 0, 0.3));
}

.achievement-card:hover .achievement-card-play {
  transform: translate(-50%, -50%) scale(1.12);
}

.achievement-card-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem 1.75rem;
  color: var(--color-cream);
}

.achievement-card-caption h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0 0 0.25rem 0;
  color: var(--color-white);
}

.achievement-card-caption span {
  font-size: 0.85rem;
  opacity: 0.95;
}

/* Seal / badge card */
.achievement-card-seal {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2.5rem 2rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(212, 163, 75, 0.35);
  border-radius: 16px;
  backdrop-filter: blur(8px);
  transition: background 0.35s ease, border-color 0.35s ease;
}

.achievement-card-seal:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(212, 163, 75, 0.55);
}

.achievement-seal-icon {
  width: 64px;
  height: 64px;
  color: var(--color-mustard);
  margin-bottom: 1rem;
}

.achievement-seal-icon svg {
  width: 100%;
  height: 100%;
  animation: seal-pulse 3s ease-in-out infinite;
}

@keyframes seal-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.9; transform: scale(1.02); }
}

.achievement-card-seal h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-cream);
  margin: 0 0 0.5rem 0;
}

.achievement-card-seal p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(247, 238, 220, 0.85);
  margin: 0 0 1rem 0;
}

.achievement-card-seal .achievement-card-cta {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--color-mustard);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.25s ease;
}

.achievement-card-seal:hover .achievement-card-cta {
  color: var(--color-cream);
}

@media (max-width: 768px) {
  .achievements-cards {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   Catering & Private Events - Modern split layout
   ========================================================================== */
.catering-section {
  padding: 6rem 2rem;
  background: var(--color-forest-green);
  position: relative;
  overflow: hidden;
}

.catering-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212,163,75,0.4), transparent);
  opacity: 0.6;
}

.catering-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.catering-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 4rem;
  align-items: center;
}

/* Photo block – hero + thumbs */
.catering-visual {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.catering-hero {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.35);
}

.catering-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: brightness(0.9) contrast(1.1) saturate(1.05);
  transition: transform 0.5s ease, filter 0.4s ease;
}

.catering-hero:hover img {
  transform: scale(1.03);
  filter: brightness(0.95) contrast(1.1) saturate(1.1);
}

.catering-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(27,60,52,0) 0%, rgba(27,60,52,0.35) 100%);
  pointer-events: none;
}

.catering-hero-badge {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  background: rgba(212,163,75,0.95);
  color: var(--color-dark-brown);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 0.4rem 0.9rem;
  border-radius: 100px;
}

.catering-thumbs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.catering-thumb {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 16/10;
  box-shadow: 0 15px 35px -10px rgba(0,0,0,0.25);
}

.catering-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.88) contrast(1.08) saturate(1.02);
  transition: transform 0.4s ease, filter 0.3s ease;
}

.catering-thumb:hover img {
  transform: scale(1.05);
  filter: brightness(0.95) contrast(1.08) saturate(1.08);
}

/* Content block */
.catering-content {
  padding: 0 0.5rem;
}

.catering-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-mustard);
  margin-bottom: 0.75rem;
}

.catering-title {
  font-family: var(--font-stencil);
  font-size: clamp(2.25rem, 4vw, 3.25rem);
  line-height: 1.1;
  letter-spacing: 0.03em;
  color: var(--color-cream);
  margin: 0 0 1.25rem;
}

.catering-desc {
  font-size: 1.05rem;
  line-height: 1.75;
  color: rgba(247,238,220,0.9);
  margin: 0 0 1.75rem;
}

.catering-features {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
}

.catering-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1rem;
  color: var(--color-cream);
  padding: 0.4rem 0;
}

.catering-feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: rgba(212,163,75,0.3);
  color: var(--color-mustard);
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 700;
}

.catering-content .btn-catering {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--color-mustard);
  color: var(--color-dark-brown);
  padding: 1rem 2rem;
  border-radius: 100px;
  font-weight: 700;
  font-size: 1rem;
  transition: background var(--transition), transform var(--transition);
  box-shadow: 0 4px 20px rgba(212,163,75,0.35);
}

.catering-content .btn-catering:hover {
  background: var(--color-mustard-dark);
  color: var(--color-cream);
  transform: translateY(-2px);
}

.catering-content .btn-catering svg {
  flex-shrink: 0;
}

@media (max-width: 900px) {
  .catering-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .catering-visual {
    order: 1;
  }

  .catering-content {
    order: 2;
    text-align: center;
    padding: 0;
  }

  .catering-features {
    display: inline-block;
    text-align: left;
  }

  .catering-hero {
    aspect-ratio: 16/10;
  }
}

@media (max-width: 600px) {
  .catering-section {
    padding: 4rem 1rem;
  }

  .catering-thumbs {
    grid-template-columns: 1fr;
  }

  .catering-thumb {
    aspect-ratio: 21/9;
  }
}

/* ==========================================================================
   Reviews Section
   ========================================================================== */
.reviews-section {
  background: linear-gradient(180deg, #eae8e2 0%, #f5f3ee 100%);
  padding: 5rem 2rem;
  position: relative;
  overflow: hidden;
}

.reviews-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.reviews-section h2 {
  font-family: var(--font-stencil);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  text-align: center;
  margin-bottom: 0.5rem;
  letter-spacing: 0.05em;
}

.reviews-google-badge {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 0.9rem;
  color: #5f6368;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.reviews-google-badge::before {
  content: 'G';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  font-weight: 700;
  font-size: 0.85rem;
  color: #fff;
  background: linear-gradient(135deg, #4285f4 0%, #34a853 50%, #fbbc05 75%, #ea4335 100%);
  border-radius: 4px;
}

/* Osobné poďakovanie – rovnaká „karta“ ako .review-card + typografia ako v ostatných textových blokoch */
.reviews-story {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
  align-items: center;
  margin: 0 0 2.75rem;
  padding: clamp(1.35rem, 3vw, 2rem);
  background: rgba(249, 241, 226, 0.95);
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(170, 185, 161, 0.35);
  border-left: 5px solid var(--color-mustard);
  transition: box-shadow 0.3s ease;
}

.reviews-story:hover {
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.11);
}

.reviews-story__visual {
  margin: 0;
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  box-shadow: 0 4px 16px rgba(51, 33, 27, 0.1);
  border: 1px solid rgba(91, 64, 55, 0.08);
  align-self: stretch;
}

.reviews-story__visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  transition: transform 0.45s ease, filter 0.35s ease;
}

.reviews-story:hover .reviews-story__visual img {
  transform: scale(1.025);
  filter: brightness(1.02) saturate(1.03);
}

.reviews-story__body {
  min-width: 0;
}

.reviews-story__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-bottom: 0.85rem;
  padding: 0.35rem 0.82rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.68rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--color-forest-green);
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(212, 163, 75, 0.5);
  border-radius: 999px;
}

.reviews-story__title {
  font-family: var(--font-stencil);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 400;
  letter-spacing: 0.045em;
  color: var(--color-dark-brown);
  margin: 0 0 1.05rem;
  line-height: 1.14;
}

.reviews-story__title::after {
  content: '';
  display: block;
  width: min(5.5rem, 28%);
  height: 4px;
  margin-top: 0.65rem;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--color-mustard), rgba(212, 163, 75, 0.35));
}

.reviews-story__text {
  margin: 0 0 1rem;
  font-size: 1rem;
  line-height: 1.62;
  color: #494440;
}

.reviews-story__text--lead {
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--color-brown);
  line-height: 1.62;
}

.reviews-story__text--accent {
  margin-top: 0.35rem;
  padding-top: 1.05rem;
  margin-bottom: 0;
  border-top: 1px solid rgba(170, 185, 161, 0.55);
  font-weight: 500;
  color: var(--color-forest-green);
}

.reviews-story__text:last-child {
  margin-bottom: 0;
}

@media (min-width: 840px) {
  .reviews-story {
    grid-template-columns: minmax(200px, 0.41fr) 1fr;
    gap: 2rem;
    padding: 2rem;
    align-items: center;
  }

  .reviews-story__visual {
    aspect-ratio: 1 / 1.05;
    max-height: 300px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reviews-story__visual img,
  .reviews-story:hover .reviews-story__visual img {
    transition: none;
    transform: none;
    filter: none;
  }

  .reviews-story:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  }
}

.reviews-carousel-wrap {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  position: relative;
}

.reviews-carousel {
  flex: 1;
  overflow: hidden;
}

.reviews-carousel-track {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.4s ease;
  padding: 0.25rem 0;
}

.review-card {
  flex: 0 0 calc(100% - 2rem);
  min-width: calc(100% - 2rem);
  background: rgba(249, 241, 226, 0.95);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: box-shadow 0.3s ease;
}

.review-card:hover {
  box-shadow: 0 6px 24px rgba(0,0,0,0.12);
}

.review-card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.review-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--color-sage);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.review-card-header > div {
  flex: 1;
  min-width: 0;
}

.review-google-tag {
  font-size: 0.75rem;
  color: #5f6368;
  background: #f1f3f4;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  align-self: flex-start;
}

.review-stars {
  color: var(--color-mustard);
  font-size: 1.1rem;
  letter-spacing: 0.05em;
}

.review-card p {
  color: #555;
  font-style: italic;
  margin: 0;
  line-height: 1.5;
}

.reviews-carousel-btn {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid var(--color-sage);
  background: #fff;
  color: var(--color-sage);
  font-size: 1.5rem;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.reviews-carousel-btn:hover {
  background: var(--color-sage);
  color: #fff;
  border-color: var(--color-sage);
}

.reviews-carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.reviews-carousel-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ccc;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s;
}

.reviews-carousel-dots .dot.active {
  background: var(--color-sage);
  transform: scale(1.2);
}

.btn-review-write {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 auto;
  padding: 0.9rem 1.8rem;
  background: #fff;
  border: 2px solid var(--color-sage);
  color: var(--color-sage);
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.2s ease;
  font-size: 1rem;
}

.btn-review-write:hover {
  background: var(--color-sage);
  color: #fff;
  border-color: var(--color-sage);
}

.reviews-inner .btn-review-write {
  display: flex;
  justify-content: center;
}

@media (min-width: 600px) {
  .review-card {
    flex: 0 0 calc(50% - 1rem);
    min-width: calc(50% - 1rem);
  }
}

@media (min-width: 900px) {
  .review-card {
    flex: 0 0 calc(33.333% - 1rem);
    min-width: calc(33.333% - 1rem);
  }
}

/* Recenzie na úzkych displejoch — celá šírka pásu, mäkší padding a čitateľnejší blok */
@media (max-width: 599px) {
  .reviews-section {
    padding: clamp(2.65rem, 10vw, 4rem) clamp(0.95rem, 5.5vw, 1.75rem);
  }

  .reviews-google-badge {
    margin-bottom: 1.35rem;
    font-size: 0.8625rem;
  }

  .reviews-story {
    margin-bottom: 1.85rem;
    padding: clamp(1.05rem, 4.2vw, 1.35rem);
    gap: 1.25rem;
  }

  .reviews-carousel-wrap {
    gap: 0.62rem;
  }

  .reviews-carousel-track {
    gap: 0.875rem;
  }

  .review-card {
    flex: 0 0 100%;
    min-width: 100%;
    padding: clamp(1rem, 4vw, 1.35rem);
  }

  .review-card-header {
    flex-wrap: nowrap;
    align-items: flex-start;
    gap: 0.7rem;
    margin-bottom: 0.875rem;
  }

  /* Stĺpec: meno + hviezdy pod sebou — Google štítok drží vpravo */
  .review-card-header > div:not(.review-avatar) {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
  }

  .review-google-tag {
    flex-shrink: 0;
    font-size: 0.6875rem;
    padding: 0.16rem 0.45rem;
  }

  .review-avatar {
    width: 44px;
    height: 44px;
    font-size: 1.1rem;
  }

  .review-stars {
    font-size: 0.975rem;
    letter-spacing: 0.055em;
  }

  .review-card p {
    font-size: 0.96875rem;
    line-height: 1.6;
    hyphens: auto;
    overflow-wrap: break-word;
    word-break: normal;
  }

  .reviews-carousel-btn {
    width: 44px;
    height: 44px;
    font-size: 1.38rem;
  }

  .reviews-carousel-dots {
    margin-bottom: 1.5rem;
  }

  .btn-review-write {
    width: 100%;
    justify-content: center;
    padding: 0.82rem 1.15rem;
    font-size: 0.9625rem;
  }
}

/* ==========================================================================
   Gallery Section
   ========================================================================== */
.gallery-section {
  padding: clamp(2.35rem, 5vw, 3.75rem) 1.75rem;
  background: linear-gradient(180deg, #fff 0%, #f8f6f1 50%, #f0ede8 100%);
}

.gallery-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.gallery-section h2 {
  font-family: var(--font-stencil);
  font-size: clamp(2.35rem, 4vw, 3.35rem);
  text-align: center;
  margin-bottom: clamp(0.85rem, 2vw, 1.5rem);
  letter-spacing: 0.05em;
}

.gallery-wrap {
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
}

.gallery-more-block {
  width: 100%;
}

.gallery-more-block .gallery-grid {
  margin-top: clamp(0.75rem, 2.2vw, 1.35rem);
}

.btn-gallery-expand {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  align-self: center;
  margin-top: clamp(1.1rem, 3vw, 1.65rem);
  padding: 0.65rem 1.85rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.94rem;
  letter-spacing: 0.06em;
  text-transform: none;
  color: var(--color-forest-green);
  background: #fff;
  border: 2px solid var(--color-sage);
  border-radius: 10px;
  cursor: pointer;
  transition:
    border-color var(--transition),
    color var(--transition),
    background var(--transition),
    transform 0.2s ease;
}

.btn-gallery-expand:hover,
.btn-gallery-expand:focus-visible {
  background: var(--color-sage);
  border-color: var(--color-sage);
  color: #fff;
  outline: none;
}

.btn-gallery-expand:active {
  transform: translateY(1px);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(0.62rem, 2vw, 1rem);
  width: 100%;
}

.gallery-item {
  position: relative;
  display: block;
  margin: 0;
  padding: 0;
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid rgba(51, 33, 27, 0.08);
  background: rgba(51, 33, 27, 0.04);
  cursor: zoom-in;
  text-align: left;
  min-height: 0;
  aspect-ratio: 1 / 1;
}

.gallery-item.large {
  grid-row: span 2;
  aspect-ratio: auto;
}

.gallery-item.large img {
  min-height: 100%;
}

.gallery-item:focus {
  outline: none;
}

.gallery-item:focus-visible {
  outline: 2px solid var(--color-mustard);
  outline-offset: 3px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

.gallery-item:hover img,
.gallery-item:focus-visible img {
  transform: scale(1.05);
}

.gallery-item.large .instagram-icon {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 1;
  width: 50px;
  height: 50px;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  line-height: 1;
  pointer-events: none;
}

@media (prefers-reduced-motion: reduce) {
  .gallery-item img {
    transition: none;
  }

  .gallery-item:hover img,
  .gallery-item:focus-visible img {
    transform: none;
  }
}

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-item.large {
    grid-column: span 2;
    grid-row: span 1;
    aspect-ratio: 1 / 1;
  }

  .gallery-item.large img {
    min-height: 0;
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item.large {
    grid-column: span 1;
  }
}

/* Lightbox (<dialog>) */
.gallery-lightbox {
  padding: 0;
  border: none;
  max-width: 100vw;
  background: transparent;
}

.gallery-lightbox[open] {
  display: flex;
  justify-content: center;
  align-items: center;
  width: fit-content;
  max-width: 100vw;
  margin: auto;
  inset: 0;
  position: fixed;
  box-sizing: border-box;
  padding: clamp(0.65rem, 3vw, 1.5rem);
}

.gallery-lightbox::backdrop {
  background: rgba(27, 22, 20, 0.78);
  backdrop-filter: blur(4px);
}

.gallery-lightbox-panel {
  position: relative;
  display: inline-block;
  max-height: min(92vh, 940px);
  max-width: 100%;
}

.gallery-lightbox-panel img.gallery-lightbox-img {
  display: block;
  max-width: min(94vw, 1020px);
  max-height: min(92vh, 940px);
  width: auto;
  height: auto;
  margin: 0 auto;
  border-radius: 12px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.gallery-lightbox-form {
  position: absolute;
  top: 0.65rem;
  right: 0.65rem;
  z-index: 2;
  margin: 0;
  padding: 0;
}

.gallery-lightbox-close {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(51, 33, 27, 0.85);
  color: #fff;
  font: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.gallery-lightbox-close:hover,
.gallery-lightbox-close:focus-visible {
  background: rgba(27, 40, 36, 0.95);
  border-color: rgba(212, 163, 75, 0.55);
  outline: none;
}

/* ==========================================================================
   Sociálne siete (nad galériou alebo nad mapou)
   ========================================================================== */
.social-section {
  padding: clamp(3.5rem, 7vw, 5.75rem) 2rem;
  background:
    radial-gradient(100% 90% at 50% -20%, rgba(212, 163, 75, 0.13) 0%, transparent 60%),
    linear-gradient(180deg, #f4f2ed 0%, #fafaf8 52%, #fffffe 100%);
  border-bottom: 1px solid rgba(51, 33, 27, 0.065);
}

.social-inner {
  max-width: 1120px;
  margin: 0 auto;
  width: 100%;
}

.social-head {
  text-align: center;
  max-width: 41rem;
  margin: 0 auto 1rem;
}

.social-badge {
  display: inline-block;
  padding: 0.4rem 1rem;
  background: rgba(27, 60, 52, 0.08);
  color: var(--color-forest-green);
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  border-radius: 100px;
  margin-bottom: 1rem;
}

.social-title {
  font-family: var(--font-stencil);
  font-size: clamp(2.35rem, 4.2vw, 3.2rem);
  color: var(--color-dark-brown);
  margin: 0 0 0.95rem;
  letter-spacing: 0.045em;
  line-height: 1.08;
}

.social-lead {
  margin: 0;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-brown);
}

.social-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.75rem 1rem;
  margin: 1.35rem auto 2rem;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.82rem 1.35rem;
  border-radius: 999px;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: #fff !important;
  border: none;
  box-shadow: 0 4px 18px rgba(27, 60, 52, 0.15);
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    filter 0.22s ease;
}

.social-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(27, 60, 52, 0.22);
}

.social-btn:active {
  transform: translateY(0);
}

.social-btn-icon svg {
  display: block;
  width: 1.125rem;
  height: 1.125rem;
}

.social-btn-fb {
  background: #1877f2;
}

.social-btn-fb:hover {
  filter: brightness(1.06);
}

.social-btn-ig {
  background: linear-gradient(
    45deg,
    #f58529,
    #dd2a7b,
    #8134af,
    #515bd4
  );
}

.social-btn-ig:hover {
  filter: brightness(1.05);
}

.social-teaser-intro {
  text-align: center;
  margin: 2rem 0 1.15rem;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-dark-brown);
  opacity: 0.92;
}

/* Mriežka skutočných Instagram embedov — pôvodné iframe/blockquote IG, rozumné centovanie na stránke */
.social-embed-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr));
  gap: clamp(1.25rem, 3.5vw, 2rem);
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 1180px;
  justify-items: center;
}

.social-embed-cell {
  margin: 0;
  padding: 0;
  list-style: none;
  width: 100%;
  max-width: 540px;
  min-width: 0;
}

.social-embed-slot {
  overflow: visible;
  border-radius: 16px;
  background: transparent;
  border: none;
  box-shadow:
    0 2px 12px rgba(51, 33, 27, 0.07),
    0 20px 50px rgba(21, 42, 36, 0.1);
}

/* WordPress IG oEmbed: blockquote + neskôr iframe od Instagramu */
.social-embed-slot blockquote.instagram-media {
  position: relative;
  padding: 0 !important;
  margin: 0 auto !important;
  border-radius: 16px !important;
  overflow: hidden !important;
  border: 1px solid rgba(218, 208, 198, 0.85) !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.35),
    0 2px 0 rgba(27, 60, 52, 0.04),
    0 16px 40px rgba(21, 42, 36, 0.12) !important;
}

.social-embed-slot blockquote.instagram-media,
.social-embed-slot iframe[src*='instagram'] {
  min-width: 0 !important;
  max-width: 100% !important;
}

.social-embed-slot iframe[src*='instagram'],
.social-embed-slot .instagram-media iframe {
  margin: 0 auto !important;
  display: block !important;
  border-radius: 14px !important;
}

.social-embed-slot .instagram-media,
.social-embed-slot .instagram-media-rendered {
  margin: 0 auto !important;
  max-width: 100% !important;
}

/* Úzka obrazovka: neorezávať pôvodný layout; jemný posun aby nevyčnieval */
@media (max-width: 400px) {
  .social-embed-cell {
    max-width: 100%;
  }

  .social-embed-slot {
    margin-inline: clamp(-0.25rem, -2vw + 8px, 0px);
    box-shadow:
      0 2px 10px rgba(51, 33, 27, 0.08),
      0 14px 36px rgba(21, 42, 36, 0.1);
  }
}

.social-embed-fail {
  margin: 0;
  padding: 1.75rem;
  font-size: 0.85rem;
  text-align: center;
  word-break: break-all;
}

.social-instagram-fallback {
  max-width: 580px;
  margin: 0 auto;
}

.social-instagram-fallback-shell {
  border-radius: 16px;
  overflow: hidden;
  background:
    radial-gradient(circle at 30% -10%, rgba(212, 163, 75, 0.18), transparent 50%),
    #111;
  border: 1px solid rgba(212, 163, 75, 0.35);
  box-shadow:
    0 2px 6px rgba(51, 33, 27, 0.1),
    0 22px 50px rgba(21, 42, 36, 0.15);
}

.social-instagram-fallback-iframe {
  display: block;
  width: 100%;
  min-height: 580px;
  background: transparent;
}

.social-profile-embed-caption {
  margin: 1rem 0 0.35rem;
  font-size: 0.8rem;
  line-height: 1.52;
  text-align: center;
  color: #5f574f;
}

.social-profile-embed-see {
  margin: 0;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-align: center;
}

.social-profile-embed-see a {
  color: var(--color-forest-green);
  border-bottom: 2px solid rgba(212, 163, 75, 0.55);
  padding-bottom: 1px;
  transition:
    border-color var(--transition),
    color var(--transition);
}

.social-profile-embed-see a:hover {
  color: var(--color-forest-dark);
  border-color: var(--color-mustard);
}

@media (max-width: 480px) {
  .social-instagram-fallback-iframe {
    min-height: 528px;
  }
}

/* Instagram iframe + Facebook Page Plugin — dva vstupy ako pri „náhľade“ postov */
.social-embed-grid + .social-feed-pair {
  margin-top: clamp(1.35rem, 4vw, 2.35rem);
}

.social-feed-pair {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: clamp(1.35rem, 4vw, 2.35rem);
  align-items: start;
  justify-content: center;
  max-width: 1180px;
  margin: clamp(1.25rem, 3.8vw, 2rem) auto 0;
  width: 100%;
}

.social-feed-pair--solo-fb {
  grid-template-columns: minmax(0, min(560px, 100%));
  justify-content: center;
}

.social-feed-card {
  margin: 0;
  min-width: 0;
}

.social-feed-card .social-instagram-fallback {
  max-width: none;
  margin: 0 auto;
}

.social-feed-card .social-instagram-fallback-shell {
  max-width: 540px;
  margin-inline: auto;
}

.social-feed-iframe-shell--facebook {
  max-width: 540px;
  margin-inline: auto;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(66, 103, 178, 0.42);
  background: linear-gradient(180deg, #f9fafc 0%, #ebedf4 52%, #dee3ef 100%);
  box-shadow:
    0 2px 8px rgba(51, 33, 27, 0.08),
    0 20px 42px rgba(21, 42, 36, 0.12);
}

.social-feed-card .social-feed-iframe {
  display: block;
  width: 100%;
  min-height: 580px;
  border: none;
  background: transparent;
}

.social-feed-card .social-profile-embed-caption {
  padding-inline: clamp(0.35rem, 2.5vw, 0.9rem);
}

@media (max-width: 480px) {
  .social-feed-card .social-feed-iframe {
    min-height: 528px;
  }
}

.social-teaser-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(0.65rem, 2vw, 1rem);
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 920px;
}

.social-teaser-cell {
  margin: 0;
  padding: 0;
  list-style: none;
}

@media (min-width: 760px) {
  .social-teaser-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.social-teaser {
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  aspect-ratio: 1;
  height: 100%;
  box-shadow:
    0 2px 6px rgba(51, 33, 27, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.social-teaser img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.social-teaser:hover img,
.social-teaser:focus-visible img {
  transform: scale(1.07);
}

.social-teaser:focus-visible {
  outline: 2px solid var(--color-mustard);
  outline-offset: 3px;
}

.social-teaser-shade {
  pointer-events: none;
  position: absolute;
  inset: 0;
  background: linear-gradient(
    165deg,
    rgba(26, 16, 12, 0) 42%,
    rgba(26, 16, 12, 0.55) 100%
  );
  opacity: 0.92;
}

.social-teaser-tag {
  position: absolute;
  left: 0.65rem;
  bottom: 0.65rem;
  padding: 0.28rem 0.62rem;
  border-radius: 8px;
  font-family: var(--font-heading);
  font-size: 0.625rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  backdrop-filter: blur(6px);
}

.social-teaser-tag--fb {
  background: rgba(24, 119, 242, 0.92);
  box-shadow: 0 2px 8px rgba(24, 119, 242, 0.35);
}

.social-teaser-tag--ig {
  background: rgba(228, 64, 95, 0.92);
  box-shadow: 0 2px 8px rgba(193, 53, 132, 0.35);
}

/* ==========================================================================
   Map Section
   ========================================================================== */
.map-section {
  padding: 0;
  background: var(--color-forest-green);
  display: flex;
  flex-direction: column;
}

.map-address {
  padding: 2rem 2rem 1.5rem;
  text-align: center;
  color: var(--color-cream);
}

.map-address h2 {
  font-family: var(--font-stencil);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  letter-spacing: 0.08em;
  margin: 0 0 0.5rem 0;
  color: var(--color-cream);
}

.map-address-business {
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  opacity: 0.9;
  margin: 0 0 0.5rem 0;
}

.map-address-text {
  font-size: 1.15rem;
  font-weight: 700;
  margin: 0 0 0.25rem 0;
}

.map-address-place {
  font-size: 0.95rem;
  opacity: 0.9;
  margin: 0 0 1rem 0;
}

.map-directions {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--color-mustard);
  transition: color 0.25s ease;
}

.map-directions:hover {
  color: var(--color-cream);
}

.map-socials {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1.25rem;
  flex-wrap: wrap;
}

.map-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.15);
  color: var(--color-cream);
  border-radius: 50%;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.map-social-link:hover {
  background: var(--color-mustard);
  color: var(--color-dark-brown);
  transform: scale(1.08);
}

.map-social-link svg {
  width: 22px;
  height: 22px;
}

.map-iframe-wrap {
  position: relative;
  overflow: hidden;
}

.map-iframe-wrap iframe {
  width: 100%;
  height: 400px;
  border: none;
  display: block;
  filter: grayscale(35%) contrast(1.08) sepia(20%) hue-rotate(100deg) saturate(0.4);
}

.map-iframe-wrap iframe:hover {
  filter: grayscale(20%) contrast(1.05) sepia(12%) hue-rotate(100deg) saturate(0.5);
  transition: filter 0.4s ease;
}

@media (max-width: 768px) {
  .map-address {
    padding: 1.5rem 1rem 1rem;
  }
  .map-iframe-wrap iframe {
    height: 350px;
  }
}

/* ==========================================================================
   Booking Section
   ========================================================================== */
.booking-section {
  position: relative;
  padding: 6rem 2rem;
  background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), 
              url('https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?w=1920') center/cover;
}

.booking-inner {
  max-width: 600px;
  margin: 0 auto;
  background: rgba(255,255,255,0.95);
  padding: 3rem;
  border-radius: 12px;
}

.booking-section h2 {
  font-family: var(--font-stencil);
  font-size: clamp(2rem, 3vw, 2.5rem);
  text-align: center;
  margin-bottom: 2rem;
  letter-spacing: 0.05em;
}

.booking-form .form-group {
  margin-bottom: 1.5rem;
}

.booking-form label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid #ddd;
  border-radius: 6px;
  font-family: var(--font-body);
}

.booking-form textarea {
  min-height: 100px;
  resize: vertical;
}

.booking-form button[type="submit"] {
  width: 100%;
  padding: 1rem;
  background: var(--color-red);
  color: var(--color-white);
  border: none;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 6px;
  transition: background var(--transition);
}

.booking-form button[type="submit"]:hover {
  background: var(--color-red-dark);
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  width: 100%;
  background: var(--color-cream);
  color: var(--color-dark-brown);
  padding: 4rem 2rem 2rem;
  margin-top: 0;
  flex-shrink: 0;
  border-top: 2px solid var(--color-sage);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.footer-grid {
  display: grid;
  grid-template-columns: auto repeat(3, 1fr);
  gap: 3rem;
  margin-bottom: 3rem;
  align-items: start;
}

.footer-logo {
  display: flex;
  align-items: flex-start;
}

.footer-logo a {
  display: block;
}

.footer-logo img {
  width: auto;
  max-width: min(320px, 85vw);
  height: auto;
  max-height: clamp(88px, 12vw, 108px);
  object-fit: contain;
  background: transparent;
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  text-transform: uppercase;
  margin-bottom: 1rem;
  color: var(--color-dark-brown);
  letter-spacing: 0.08em;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 0.5rem;
}

.footer-col a,
.footer-col li {
  color: var(--color-brown);
}

.footer-col a:hover {
  color: var(--color-sage);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 2px solid var(--color-sage);
}

.footer-social-wrap {
  margin-bottom: 1.5rem;
}

.footer-social-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-dark-brown);
  margin: 0 0 1rem 0;
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.footer-social-link {
  width: 44px;
  height: 44px;
  background: var(--color-sage);
  color: var(--color-dark-brown) !important;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition), transform var(--transition);
}

.footer-social-link:hover {
  background: var(--color-dark-brown);
  color: var(--color-cream) !important;
  transform: scale(1.1);
}

.footer-social-link svg {
  width: 22px;
  height: 22px;
}

.footer-legal {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
}

.footer-copy,
.footer-credit {
  color: var(--color-brown);
  margin: 0;
  font-size: 0.9rem;
}

.footer-credit a {
  color: var(--color-dark-brown);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.footer-credit a:hover {
  color: var(--color-forest-green);
}

/* ==========================================================================
   Single Post - Modern Design
   ========================================================================== */
.single-post {
  width: 100%;
  min-width: 0;
}

.post-article {
  padding-bottom: 0;
}

/* Hero with featured image */
.post-hero {
  position: relative;
  min-height: 45vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.post-hero-image {
  position: absolute;
  inset: 0;
}

.post-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.post-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.3) 50%, transparent 100%);
}

.post-hero-placeholder {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--color-black) 0%, #2a2a2a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.post-hero-placeholder .post-hero-icon {
  font-size: 5rem;
  opacity: 0.4;
}

.post-hero-content {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 2rem 2.5rem;
  z-index: 2;
}

.post-hero-title {
  font-family: var(--font-stencil);
  font-size: clamp(2rem, 5vw, 3.2rem);
  color: var(--color-white);
  letter-spacing: 0.05em;
  margin: 0 0 0.5rem 0;
  line-height: 1.2;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.post-hero-meta {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.85);
}

.post-meta-sep {
  margin: 0 0.5rem;
  opacity: 0.6;
}

.post-hero-meta a {
  color: var(--color-mustard);
}

.post-hero-meta a:hover {
  text-decoration: underline;
}

/* Content area */
.post-body {
  background: var(--color-cream-dark);
  padding: 3rem 2rem 4rem;
}

.post-content-wrap {
  max-width: 720px;
  margin: 0 auto;
  background: var(--color-cream);
  border-radius: 16px;
  padding: 2.5rem 2.5rem 2rem;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}

.post-content.entry-content {
  font-size: 1.05rem;
  line-height: 1.85;
  color: #333;
}

.post-content.entry-content p {
  margin-bottom: 1.25rem;
}

.post-content.entry-content p:first-of-type {
  font-size: 1.15rem;
  color: #444;
}

.post-content.entry-content figure {
  margin: 2rem 0;
  border-radius: 12px;
  overflow: hidden;
}

.post-content.entry-content figure img {
  width: 100%;
  height: auto;
  max-height: 320px;
  object-fit: cover;
  display: block;
}

.post-content.entry-content img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
}

.post-content.entry-content figure.alignwide {
  max-width: 100%;
}

.post-content.entry-content figure.alignwide img {
  max-height: 360px;
}

.post-content.entry-content .wp-block-embed__wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  margin: 1.5rem 0;
  border-radius: 12px;
}

.post-content.entry-content .wp-block-embed__wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Post footer */
.post-article-footer {
  margin-top: 2.5rem;
  padding-top: 2rem;
}

.post-footer-top {
  margin-bottom: 1.5rem;
}

.post-back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  color: var(--color-forest-green);
  transition: color var(--transition), gap var(--transition);
}

.post-back-link:hover {
  color: var(--color-forest-dark);
  gap: 0.75rem;
}

.post-back-icon {
  font-size: 1.2rem;
}

.post-footer-divider {
  height: 1px;
  background: #e0e0e0;
  margin-bottom: 1.5rem;
}

.post-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.post-home-link {
  font-family: var(--font-stencil);
  font-size: 1.25rem;
  letter-spacing: 0.05em;
  color: var(--color-black);
}

.post-home-link:hover {
  color: var(--color-forest-green);
}

.post-footer-tagline {
  font-size: 0.9rem;
  color: #666;
}

.site-main.single-post {
  min-width: 0;
}

/* Blog listing (home) */
.blog-listing {
  width: 100%;
}

.blog-listing-header {
  background: var(--color-dark-brown);
  color: var(--color-white);
  padding: 4rem 2rem;
  text-align: center;
}

.blog-listing-header-inner {
  max-width: 800px;
  margin: 0 auto;
}

.blog-listing-title {
  font-family: var(--font-stencil);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  letter-spacing: 0.05em;
  margin: 0 0 0.5rem 0;
}

.blog-listing-subtitle {
  font-size: 1.1rem;
  color: var(--color-mustard);
  margin: 0;
}

.blog-listing-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 2rem 4rem;
  width: 100%;
}

.blog-posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 2rem;
}

.blog-post-card a {
  display: block;
  background: var(--color-white);
  border-radius: 16px;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.blog-post-card a:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}

.blog-post-thumb {
  aspect-ratio: 16/10;
  overflow: hidden;
}

.blog-post-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.blog-post-card a:hover .blog-post-thumb img {
  transform: scale(1.03);
}

.blog-post-thumb-placeholder {
  background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-post-thumb-placeholder span {
  font-size: 3rem;
  opacity: 0.5;
}

.blog-post-content {
  padding: 1.5rem 1.75rem;
}

.blog-post-date {
  display: block;
  font-size: 0.85rem;
  color: var(--color-forest-green);
  margin-bottom: 0.5rem;
}

.blog-post-content h2 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  margin: 0 0 0.75rem 0;
  line-height: 1.3;
}

.blog-post-content .blog-post-read {
  display: inline-block;
  margin-top: 0.75rem;
  font-weight: 600;
  color: var(--color-forest-green);
  font-size: 0.9rem;
}

.blog-listing .nav-links {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 3rem;
  flex-wrap: wrap;
}

.blog-listing .nav-links a,
.blog-listing .nav-links span {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: var(--color-cream-dark);
  border-radius: 8px;
  font-weight: 600;
  transition: background var(--transition);
}

.blog-listing .nav-links a:hover {
  background: var(--color-forest-green);
  color: var(--color-white) !important;
}

.blog-listing .nav-links .current {
  background: var(--color-forest-green);
  color: var(--color-white) !important;
}

@media (max-width: 768px) {
  .blog-listing-header {
    padding: 3rem 1.5rem;
  }

  .blog-listing-wrap {
    padding: 2rem 1rem 3rem;
  }

  .blog-posts-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

/* Single post responsive */
@media (max-width: 768px) {
  .post-hero {
    min-height: 35vh;
  }

  .post-hero-content {
    padding: 2rem 1.25rem 1.5rem;
  }

  .post-hero-title {
    font-size: 1.75rem;
  }

  .post-body {
    padding: 2rem 1rem 3rem;
  }

  .post-content-wrap {
    padding: 1.5rem 1.25rem 1.5rem;
  }

  .post-content.entry-content {
    font-size: 1rem;
  }

  .post-content.entry-content figure img {
    max-height: 240px;
  }
}

@media (max-width: 480px) {
  .post-hero {
    min-height: 30vh;
  }

  .post-hero-title {
    font-size: 1.5rem;
  }

  .post-footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ==========================================================================
   Floating Contact Button – výraznejší CTA, súlad so značkou
   ========================================================================== */
.floating-contact {
  position: fixed;
  bottom: 1.5rem;
  right: 1.25rem;
  z-index: 99990;
}

.floating-contact a {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  min-height: 54px;
  padding: 0.5rem 0.65rem 0.5rem 0.85rem;
  background: linear-gradient(145deg, var(--color-forest-green) 0%, var(--color-forest-dark) 100%);
  color: var(--color-cream) !important;
  border-radius: 999px;
  border: 2px solid rgba(212, 163, 75, 0.65);
  box-shadow:
    0 4px 24px rgba(27, 60, 52, 0.45),
    0 0 0 1px rgba(255, 255, 255, 0.06) inset;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  animation:
    floating-cta-pulse 2.4s ease-in-out infinite,
    floating-cta-breathe 3.2s ease-in-out infinite;
  overflow: visible;
  isolation: isolate;
}

.floating-contact a::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: inherit;
  border: 2px solid rgba(212, 163, 75, 0.55);
  opacity: 0.75;
  animation: floating-cta-ring 2.4s ease-out infinite;
  pointer-events: none;
  z-index: -1;
}

.floating-contact a::after {
  content: '';
  position: absolute;
  inset: -12px;
  border-radius: inherit;
  border: 1px solid rgba(212, 163, 75, 0.25);
  animation: floating-cta-ring 2.4s ease-out 0.5s infinite;
  pointer-events: none;
  z-index: -2;
}

.floating-contact-label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1.2;
  max-width: 7.5rem;
  text-align: left;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  animation:
    floating-cta-text-shine 2.8s ease-in-out infinite,
    floating-cta-nudge 4s ease-in-out infinite;
}

.floating-contact-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(212, 163, 75, 0.25);
  color: var(--color-mustard);
  transition: transform 0.3s ease, background 0.3s ease;
  animation: floating-icon-bob 2.2s ease-in-out infinite;
  box-shadow: 0 0 0 0 rgba(212, 163, 75, 0.45);
}

.floating-contact a:hover {
  transform: translateY(-3px) scale(1.02);
  border-color: var(--color-mustard);
  box-shadow:
    0 10px 36px rgba(27, 60, 52, 0.55),
    0 0 0 1px rgba(255, 255, 255, 0.1) inset;
  animation-play-state: paused, paused;
}

.floating-contact a:hover::before,
.floating-contact a:hover::after {
  animation-play-state: paused;
  opacity: 0;
}

.floating-contact a:hover .floating-contact-icon {
  animation-play-state: paused;
  transform: scale(1.08) rotate(-6deg);
  background: rgba(212, 163, 75, 0.4);
}

.floating-contact svg {
  width: 22px;
  height: 22px;
  color: var(--color-cream);
}

@keyframes floating-cta-pulse {
  0%, 100% {
    box-shadow:
      0 4px 24px rgba(27, 60, 52, 0.45),
      0 0 0 1px rgba(255, 255, 255, 0.06) inset;
  }
  50% {
    box-shadow:
      0 8px 32px rgba(27, 60, 52, 0.55),
      0 0 28px rgba(212, 163, 75, 0.28),
      0 0 0 1px rgba(255, 255, 255, 0.08) inset;
  }
}

@keyframes floating-cta-text-shine {
  0%, 100% { opacity: 1; filter: brightness(1); }
  50% { opacity: 0.92; filter: brightness(1.12); }
}

@keyframes floating-cta-ring {
  0% {
    transform: scale(1);
    opacity: 0.65;
  }
  70%, 100% {
    transform: scale(1.2);
    opacity: 0;
  }
}

@keyframes floating-cta-breathe {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.03);
  }
}

@keyframes floating-cta-nudge {
  0%, 100% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(1px);
  }
  75% {
    transform: translateX(-1px);
  }
}

@keyframes floating-icon-bob {
  0%, 100% {
    transform: translateY(0);
    box-shadow: 0 0 0 0 rgba(212, 163, 75, 0.35);
  }
  50% {
    transform: translateY(-2px);
    box-shadow: 0 4px 14px rgba(212, 163, 75, 0.3);
  }
}

@media (max-width: 380px) {
  .floating-contact-label {
    display: none;
  }

  .floating-contact a {
    padding: 0.5rem;
    min-height: 56px;
    min-width: 56px;
    justify-content: center;
  }
}

/* ==========================================================================
   Weekly menu popup (Customizer)
   ========================================================================== */
body.weekly-popup-open {
  overflow: hidden;
  overscroll-behavior: none;
}

body.weekly-popup-open .floating-contact {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, visibility 0.2s;
}

.weekly-popup {
  position: fixed;
  inset: 0;
  z-index: 100080;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  padding:
    calc(10px + env(safe-area-inset-top))
    calc(12px + env(safe-area-inset-right))
    calc(10px + env(safe-area-inset-bottom))
    calc(12px + env(safe-area-inset-left));
}

.weekly-popup[hidden] {
  display: none !important;
}

.weekly-popup-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(51, 33, 27, 0.58);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.weekly-popup-dialog {
  position: relative;
  z-index: 1;
  width: min(560px, 100%);
  max-height: min(720px, 90dvh, 92vh);
  margin: 0 auto;
  padding: 0 0.85rem;
  flex: 0 1 auto;
  display: flex;
  flex-direction: column;
  min-height: 0;
  opacity: 0;
  transform: translateY(16px) scale(0.98);
  transition: opacity 0.35s cubic-bezier(0.22, 1, 0.36, 1), transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}

.weekly-popup.is-open .weekly-popup-dialog {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

@media (prefers-reduced-motion: reduce) {
  .weekly-popup-dialog {
    transition: none;
    transform: none;
  }

  .weekly-popup.is-open .weekly-popup-dialog {
    opacity: 1;
    transform: none;
  }

  body.weekly-popup-open {
    overscroll-behavior: auto;
  }
}

/* Na mobile/tablete je tlačidlo vnútri viditeľnej oblasti; na väčších obrazovkách nad kartou */
.weekly-popup-close {
  position: absolute;
  top: 0;
  right: calc(0.85rem + env(safe-area-inset-right, 0));
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 50%;
  background: var(--color-cream);
  color: var(--color-dark-brown);
  box-shadow:
    0 4px 16px rgba(51, 33, 27, 0.25),
    0 0 0 2px rgba(212, 163, 75, 0.45);
  font-size: 1.75rem;
  line-height: 1;
  cursor: pointer;
  transition: transform var(--transition), background var(--transition);
  z-index: 2;
}

@media (min-width: 900px) {
  .weekly-popup-close {
    top: -3rem;
    right: calc(1rem + env(safe-area-inset-right, 0));
  }
}

.weekly-popup-close:hover,
.weekly-popup-close:focus-visible {
  background: var(--color-mustard);
  outline: none;
  transform: scale(1.05);
}

@media (max-width: 559px) {
  .weekly-popup-close {
    right: calc(0.35rem + env(safe-area-inset-right, 0));
    width: 48px;
    height: 48px;
    font-size: 1.65rem;
  }
}


.weekly-popup-card {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  min-height: 0;
  max-height: inherit;
  padding-top: 2.85rem;
  background: linear-gradient(160deg, var(--color-cream) 0%, var(--color-cream-dark) 100%);
  border-radius: 18px;
  overflow: hidden;
  box-shadow:
    0 18px 50px rgba(27, 60, 52, 0.35),
    0 0 0 3px rgba(170, 185, 161, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.45);
}

@media (min-width: 900px) {
  .weekly-popup-card {
    padding-top: 0;
  }
}

.weekly-popup-visual {
  flex: 0 0 auto;
  aspect-ratio: 16 / 9;
  min-height: clamp(140px, 28vw, 180px);
  max-height: min(220px, 32vw);
  overflow: hidden;
  border-bottom: 3px solid var(--color-sage);
}

.weekly-popup-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-height: 560px) and (orientation: landscape) {
  .weekly-popup-visual {
    aspect-ratio: 2 / 1;
    min-height: 0;
    max-height: min(132px, 26vh);
  }

  .weekly-popup-card {
    padding-top: 2.55rem;
  }

  .weekly-popup--combo .weekly-popup-title {
    font-size: clamp(1.42rem, 5.5vw, 1.9rem);
    margin-bottom: 0.2rem;
  }
}

.weekly-popup-body {
  flex: 1 1 auto;
  min-height: 0;
  padding: 1.15rem 1.35rem max(1.35rem, env(safe-area-inset-bottom, 12px));
  overflow-y: auto;
  overscroll-behavior: contain;
  touch-action: pan-y;
  -webkit-overflow-scrolling: touch;
}

.weekly-popup-badge {
  display: inline-block;
  margin: 0 0 0.4rem;
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--color-forest-green), var(--color-forest-dark));
  color: var(--color-cream);
}

.weekly-popup-title {
  margin: 0 0 0.25rem;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.85rem, 5vw, 2.35rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-dark-brown);
  line-height: 1;
}

.weekly-popup-period {
  margin: 0 0 0.75rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-brown);
  letter-spacing: 0.03em;
}

.weekly-popup-rich {
  font-size: 0.92rem;
  line-height: 1.58;
  color: var(--color-dark-brown);
  overflow-wrap: anywhere;
}

.weekly-popup-rich p {
  margin: 0 0 0.65rem;
}

.weekly-popup-rich p:last-child {
  margin-bottom: 0;
}

.weekly-popup-menu {
  margin: 0;
  padding: 0;
  list-style: none;
}

.weekly-popup-menu li {
  display: flex;
  gap: 0.65rem;
  align-items: baseline;
  padding: 0.55rem 0;
  border-bottom: 1px solid rgba(51, 33, 27, 0.1);
}

.weekly-popup-menu li:last-child {
  border-bottom: none;
}

.weekly-popup-day {
  flex: 0 0 4rem;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.76rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-forest-green);
}

.weekly-popup-desc {
  flex: 1;
  min-width: 0;
}

.weekly-popup-footnote {
  font-size: 0.82rem;
  color: var(--color-brown);
  margin-top: 0.85rem !important;
}

.weekly-popup-footnote a {
  font-weight: 700;
  text-decoration: underline;
  color: var(--color-forest-green);
}

.weekly-popup-actions {
  margin: 1rem 0 0;
}

.weekly-popup-btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.55rem 1.35rem;
  border-radius: 999px;
  border: 2px solid var(--color-forest-green);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.76rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: transparent;
  color: var(--color-forest-green);
  transition: background var(--transition), color var(--transition), transform var(--transition);
}

.weekly-popup-btn-secondary:hover,
.weekly-popup-btn-secondary:focus-visible {
  background: var(--color-forest-green);
  color: var(--color-cream);
  outline: none;
}

/* Obedové COMBO — širší dialóg, scroll ostáva v .weekly-popup-body */
.weekly-popup--combo .weekly-popup-dialog {
  width: min(620px, 100%);
  max-height: min(780px, 92dvh, 94vh);
}

.weekly-popup--combo .weekly-popup-body {
  padding: 1.1rem 1.25rem max(1.35rem, env(safe-area-inset-bottom, 12px));
}

@media (max-width: 480px) {
  .weekly-popup--combo .weekly-popup-body {
    padding: 0.95rem max(0.85rem, env(safe-area-inset-left))
      max(1.2rem, env(safe-area-inset-bottom, 14px))
      max(0.95rem, env(safe-area-inset-right));
  }
}

.weekly-popup--combo .weekly-popup-badge {
  display: block;
  width: fit-content;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.weekly-popup--combo .weekly-popup-title {
  text-align: center;
  letter-spacing: 0.07em;
  margin-bottom: 0.35rem;
  padding-bottom: 0.45rem;
  border-bottom: 3px solid var(--color-mustard);
  line-height: 1.05;
}

.weekly-popup--combo .weekly-popup-period {
  text-align: center;
  font-weight: 600;
  margin-bottom: 1rem;
  line-height: 1.38;
}

.weekly-popup-combo-box {
  text-align: center;
  padding: 0.9rem 1rem;
  margin: 0 0 1.05rem;
  background: rgba(27, 60, 52, 0.06);
  border: 1px solid rgba(170, 185, 161, 0.85);
  border-radius: 14px;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.75) inset;
}

.weekly-popup-combo-includes {
  margin: 0 !important;
  font-size: 0.93rem !important;
  font-weight: 700;
}

.weekly-popup-combo-price {
  margin: 0.35rem 0 0 !important;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.85rem, 7vw, 2.5rem);
  letter-spacing: 0.06em;
  color: var(--color-forest-green);
  text-transform: uppercase;
}

.weekly-popup-combo-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.weekly-popup-combo-list > li {
  padding: 0.75rem 0;
  margin: 0;
  border-bottom: 1px solid rgba(51, 33, 27, 0.12);
}

.weekly-popup-combo-list > li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.weekly-popup-combo-dish-name {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(0.82rem, 3.2vw, 0.93rem);
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
  color: var(--color-dark-brown);
  margin-bottom: 0.4rem;
  line-height: 1.38;
}

.weekly-popup-combo-desc {
  margin: 0 !important;
  font-size: clamp(0.8rem, 3.15vw, 0.905rem);
  line-height: 1.53;
}

.weekly-popup--combo .weekly-popup-footnote {
  text-align: center;
  padding-top: 0.55rem;
  margin-top: 0.95rem !important;
  margin-bottom: 0 !important;
  border-top: 1px dashed rgba(51, 33, 27, 0.18);
  font-style: italic;
}

.weekly-popup-delivery-note {
  margin: 0.9rem 0 0;
  padding: 0.72rem 0.95rem;
  font-size: clamp(0.78rem, 3.25vw, 0.9rem);
  font-weight: 600;
  line-height: 1.46;
  text-align: center;
  color: var(--color-dark-brown);
  background: linear-gradient(142deg, rgba(212, 163, 75, 0.24), rgba(170, 185, 161, 0.18));
  border: 1px solid rgba(27, 60, 52, 0.16);
  border-radius: 12px;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.42) inset;
}

.weekly-popup-delivery-note .weekly-popup-delivery-tel {
  font-weight: 900;
  color: var(--color-forest-green);
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
  word-break: break-word;
}

.weekly-popup-delivery-note .weekly-popup-delivery-tel:hover,
.weekly-popup-delivery-note .weekly-popup-delivery-tel:focus-visible {
  color: var(--color-forest-dark);
  outline: none;
}

.weekly-popup--combo .weekly-popup-delivery-note {
  margin-left: auto;
  margin-right: auto;
  max-width: 28rem;
}

.weekly-popup--combo .weekly-popup-actions {
  text-align: center;
}

@media (max-width: 380px) {
  .weekly-popup--combo .weekly-popup-dialog {
    padding: 0 0.65rem;
  }

  .weekly-popup-combo-dish-name {
    font-size: 0.8rem;
  }

  .weekly-popup-combo-desc {
    font-size: 0.78rem;
  }

  .weekly-popup-combo-box {
    padding: 0.75rem 0.82rem;
  }
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 992px) {
  .hero-carousel-nav button {
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
  }
  
  .about-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .about-photo {
    order: -1;
  }
  
  .about-text {
    text-align: center;
  }
  
  .about-text .btn-red {
    margin: 0 auto;
  }
  
  .about-desc,
  .about-desc-secondary {
    max-width: 100%;
    text-align: center;
  }
  
  .about-section {
    padding: 5rem 1.5rem 6rem;
  }
  
  .features-section {
    padding: 5rem 1.5rem 6rem;
  }

  .features-list {
    grid-template-columns: 1fr;
  }
  
  .promo-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 992px) {
  /* Menu overlay musí byť POD .site-header — inak oreže horný pás (SK/EN) a vznikne „medzera“ */
  body.menu-open {
    background: var(--color-cream);
  }

  body.menu-open .site-header {
    z-index: 10050;
    background: var(--color-cream);
    border-bottom: none;
    box-shadow: none;
  }

  .site-header {
    padding: 0.75rem 1rem;
  }

  /* Flex namiesto gridu — logo vždy medzi burgerom a SK/EN bez „odskoku“ stĺpcov */
  .header-inner {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    column-gap: 0.35rem;
  }

  .menu-toggle {
    display: block;
    flex: 0 0 44px;
    width: 44px;
  }

  .header-logo {
    flex: 1 1 0;
    min-width: 0;
    justify-content: center;
    max-width: none;
  }

  .header-right {
    flex: 0 0 auto;
    justify-content: flex-end;
    gap: 0.5rem;
  }

  .header-nav {
    display: none;
  }

  .header-nav.active {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    position: fixed;
    inset: 0;
    z-index: 10040;
    background: var(--color-cream);
    padding: 0 1.5rem 2rem;
    /* Presne pod .site-header (burger, logo, SK/EN) — inak sú odkazy „zacvaknuté“ pod pás a vidíš falošnú medzeru */
    padding-top: calc(env(safe-area-inset-top, 0px) + clamp(5rem, 14vh, 7.5rem));
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    min-height: 100vh;
    min-height: 100dvh;
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
  }

  .header-nav.active .menu-close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: static;
    margin: 0 0 1rem;
    align-self: center;
    flex-shrink: 0;
    box-shadow: 0 2px 12px rgba(51, 33, 27, 0.25);
  }

  /* Odkazy hneď pod horným pásom (+ miesto na zatvorenie), nie „vzduch“ v strede obrazovky */
  .header-nav.active .nav-menu {
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-start;
    gap: 1.25rem;
    margin-top: 0;
    padding-top: 0;
    width: 100%;
    max-width: 20rem;
  }

  .header-nav.active .nav-menu li a {
    font-size: 0.95rem;
    padding: 0.55rem 1rem;
    letter-spacing: 0.06em;
    border-bottom-width: 0;
    border-radius: 6px;
  }

  .header-nav.active .nav-menu li a:hover,
  .header-nav.active .nav-menu li a:focus-visible {
    background: rgba(27, 60, 52, 0.08);
  }
}

@media (max-width: 768px) {
  .header-inner {
    gap: 0.35rem;
    padding: 0;
  }
  
  .header-logo img {
    min-height: unset;
    max-height: clamp(76px, 24vw, 104px);
    max-width: min(380px, 90vw);
  }
  
  .header-social {
    display: none;
  }


  .menu-tabs {
    flex-direction: column;
  }

  .menu-tab {
    width: 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .site-header {
    padding: 1rem;
  }

  /* min-height drží blok vyššie definovaný (svh / dvh) — duplicitné 90vh odstránené */
  .hero-carousel-content {
    padding-block: clamp(1.5rem, 7vh, 2.85rem) clamp(5.4rem, 18vw + 4rem, 6.95rem);
  }

  .hero-carousel.hero-carousel--videos .hero-carousel-content {
    max-width: calc(100% - 6.25rem);
  }

  .hero-title-line {
    font-size: clamp(1.6rem, 9.2vw, 2rem);
    line-height: 1.08;
  }

  .hero-title-sub {
    font-size: clamp(0.74rem, 3.4vw, 0.89rem);
    letter-spacing: 0.035em;
  }

  .hero-desc {
    font-size: clamp(0.83rem, 4.05vw, 0.93rem);
  }

  .hero-badge {
    font-size: 0.62rem;
    letter-spacing: 0.13em;
  }

  .hero-cta {
    width: 100%;
    max-width: min(100%, 19rem);
    margin-inline: auto;
    justify-content: center;
  }
}
