:root {
  /* Farby podľa loga Penzión Modrá Laguna */
  --teal-dark:   #1a4f80;
  --teal-mid:    #2878b0;
  --teal-bright: #3da0d4;
  --teal-pale:   #a8d8f0;
  --teal-softer: #e8f4fb;
  --sign-blue:   #7cc8e8;
  --sign-dark:   #1a4f80;
  --white:       #ffffff;
  --cream:       #f0f7fc;
  --text-dark:   #0e2a40;
  --text-mid:    #1d4d6b;
  --text-light:  #4a7a9b;
  --radius:  12px;
  --radius-lg: 20px;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'DM Sans', sans-serif; color: var(--text-dark); background: var(--white); overflow-x: hidden; }
h1, h2, h3 { font-family: 'Cormorant Garamond', serif; }
.icon { width: 1em; height: 1em; display: block; }
.inline-icon { display: inline-flex; align-items: center; justify-content: center; vertical-align: -0.15em; margin-right: 0.35em; }
.inline-icon .icon { width: 1.05em; height: 1.05em; }

/* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 999;
  background: rgba(26,79,128,0.97); backdrop-filter: blur(10px);
  padding: 0 2rem;
  border-bottom: 1px solid rgba(61,160,212,0.3);
}
.nav-inner {
  max-width: 1140px;
  margin: 0 auto;
  width: 100%;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.nav-logo { display: flex; align-items: center; text-decoration: none; }
.nav-logo-img { height: 46px; width: auto; display: block; }
.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a { text-decoration: none; color: rgba(255,255,255,0.8); font-size: 0.87rem; transition: color 0.2s; }
.nav-links a:hover { color: var(--teal-pale); }
.nav-links a[aria-current="page"] { color: var(--teal-pale); }
.nav-logo[aria-current="page"] { position: relative; }
.nav-logo[aria-current="page"]::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--teal-pale);
  border-radius: 1px;
}

/* Podstránky: prvý blok obsahu pod fixným navom */
main.page-main > section:first-of-type { padding-top: 110px; }
.nav-cta { background: var(--teal-bright); color: var(--white); padding: 9px 22px; border-radius: 7px; text-decoration: none; font-size: 0.85rem; font-weight: 500; transition: background 0.2s; }
.nav-cta:hover { background: var(--teal-mid); }
.nav-menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.45);
  background: rgba(255,255,255,0.08);
  color: var(--white);
  font-family: inherit;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}
.nav-menu-toggle:hover { background: rgba(255,255,255,0.14); border-color: rgba(255,255,255,0.55); }
.nav-menu-icon {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 22px;
  flex-shrink: 0;
}
.nav-menu-icon span {
  display: block;
  height: 2px;
  background: currentColor;
  border-radius: 1px;
}
.nav-backdrop {
  display: none;
  position: fixed;
  inset: 68px 0 0 0;
  background: rgba(0,0,0,0.4);
  z-index: 997;
}
nav.is-open .nav-backdrop { display: block; }

/* HERO */
.hero-strip {
  position: relative;
  width: 100%;
}
#hero {
  min-height: 100vh;
  background: linear-gradient(160deg, rgba(26,79,128,0.72) 0%, rgba(26,79,128,0.50) 55%, rgba(26,79,128,0.78) 100%),
  url('obr/prestory/fullshot-modra-laguna.jpg') center/cover no-repeat;
  display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 120px 2rem 100px; position: relative;
}
.hero-content { max-width: 780px; min-width: 0; }
.hero-badge {
  display: inline-block; background: rgba(124,200,232,0.15); border: 1px solid rgba(124,200,232,0.5);
  color: var(--teal-pale); font-size: 0.74rem; letter-spacing: 3px; text-transform: uppercase;
  padding: 6px 20px; border-radius: 30px; margin-bottom: 1.6rem;
}
.hero-title-script {
  font-family: 'Great Vibes', cursive; font-size: clamp(3.2rem, 8vw, 6rem);
  color: var(--white); line-height: 1.1; margin-bottom: 0.4rem;
  text-shadow:
    0 1px 2px rgba(0,0,0,0.55),
    0 3px 18px rgba(0,0,0,0.45),
    0 8px 36px rgba(0,0,0,0.35);
}
h1.hero-title-script {
  font-weight: 400;
  margin-top: 0;
}
.hero-title-main {
  font-family: 'Cormorant Garamond', serif; font-size: clamp(1rem, 2.5vw, 1.5rem);
  font-weight: 300; color: var(--white); letter-spacing: 4px;
  text-transform: uppercase; margin-bottom: 1.5rem;
  white-space: nowrap;
  text-shadow:
    0 1px 3px rgba(0,0,0,0.65),
    0 4px 20px rgba(0,0,0,0.5);
}
@media (max-width: 520px) {
  .hero-title-main { white-space: normal; }
}
.hero-title-main .hero-title-sep { font-weight: 600; }
.hero-subtitle {
  font-size: 1.12rem; font-weight: 300; color: var(--white);
  text-shadow:
    0 1px 3px rgba(0,0,0,0.75),
    0 3px 14px rgba(0,0,0,0.65),
    0 6px 28px rgba(0,0,0,0.55);
  line-height: 1.75; margin-bottom: 2.5rem; max-width: 760px; margin-left: auto; margin-right: auto;
}
.hero-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.btn-primary { background: var(--teal-bright); color: var(--white); padding: 14px 32px; border-radius: 8px; text-decoration: none; font-weight: 500; font-size: 0.95rem; transition: all 0.2s; }
.btn-primary:hover { background: var(--teal-mid); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,0.55); padding: 14px 32px; border-radius: 8px; text-decoration: none; font-size: 0.95rem; transition: all 0.2s; }
.btn-outline:hover { border-color: var(--teal-pale); color: var(--teal-pale); }
.hero-stats {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  margin: 0;
  box-sizing: border-box;
  background: rgba(26,79,128,0.88);
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: center;
}
.hero-stat { text-align: center; color: var(--white); padding: 1.2rem 3rem; border-right: 1px solid rgba(255,255,255,0.12); }
.hero-stat:last-child { border-right: none; }
.hero-stat strong { display: block; font-size: 1.7rem; font-family: 'Cormorant Garamond', serif; font-weight: 600; color: var(--teal-pale); }
.hero-stat span { font-size: 0.7rem; opacity: 0.7; letter-spacing: 1.5px; text-transform: uppercase; }

/* SHARED */
section { padding: 90px 2rem; }
.container { max-width: 1140px; margin: 0 auto; }
.section-label { font-size: 0.72rem; letter-spacing: 3px; text-transform: uppercase; color: var(--teal-mid); font-weight: 500; margin-bottom: 0.5rem; }
.section-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(1.9rem, 3.5vw, 2.9rem); font-weight: 600; color: var(--teal-dark); line-height: 1.2; margin-bottom: 1rem; }
.section-lead { font-size: 1.12rem; color: var(--text-mid); line-height: 1.8; max-width: 560px; }
.divider { width: 44px; height: 3px; background: var(--teal-bright); margin: 1rem 0 2rem; border-radius: 2px; }

/* O NÁS */
#o-nas { background: var(--cream); }
.about-video-wrap {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 14px;
  margin-bottom: 0;
  box-shadow: 0 6px 24px rgba(0,0,0,.13);
}
.about-video-wrap iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: 0;
}
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: start; }
.about-text-col { min-width: 0; }
.about-right-col { display: flex; flex-direction: column; gap: 1.5rem; min-width: 0; }
.about-img {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 380px;
}
.about-carousel {
  position: absolute;
  inset: 0;
  width: 100%;
  overflow: hidden;
  touch-action: pan-y;
  user-select: none;
  -webkit-user-select: none;
  outline: none;
}
.about-carousel .carousel-viewport {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.about-carousel .carousel-track {
  width: 100%;
  height: 100%;
  display: flex;
  transition: transform 380ms ease;
  will-change: transform;
}
.about-carousel .carousel-slide {
  display: block;
  width: 100%;
  flex: 0 0 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 35%;
}
.about-carousel .carousel-slide.carousel-slide--focus-center {
  object-position: center;
}
.about-carousel .carousel-slide.carousel-slide--focus-right {
  object-position: 78% center;
}
@media (min-width: 961px) {
  .about-img {
    height: 100%;
    align-self: stretch;
    min-height: 420px;
  }
}
@media (max-width: 960px) {
  .about-img {
    height: min(72vw, 440px);
    min-height: 300px;
  }
}
.about-carousel .carousel-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 44px; height: 44px; border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.35);
  background: rgba(26,79,128,0.55);
  color: rgba(255,255,255,0.92);
  font-family: 'DM Sans', sans-serif;
  font-size: 28px;
  line-height: 0;
  padding: 0;
  cursor: pointer;
  display: grid; place-items: center;
  z-index: 2;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}
.about-carousel .carousel-btn:hover { background: rgba(26,79,128,0.72); border-color: rgba(255,255,255,0.55); }
.about-carousel .carousel-btn:active { transform: translateY(-50%) scale(0.98); }
.about-carousel .carousel-btn.prev { left: 14px; }
.about-carousel .carousel-btn.next { right: 14px; }
.about-img-badge { position: absolute; bottom: 20px; left: 20px; background: var(--teal-mid); color: var(--white); padding: 10px 16px; border-radius: 10px; font-weight: 500; font-size: 0.82rem; }
.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 0; }
.feat-card { background: var(--white); border: 1px solid rgba(40,120,176,0.18); border-radius: var(--radius); padding: 1rem 1.1rem; display: flex; align-items: flex-start; gap: 12px; }
.feat-icon { width: 40px; height: 40px; border-radius: 10px; background: var(--teal-softer); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 18px; }
.feat-icon .icon { width: 20px; height: 20px; color: var(--teal-mid); }
.feat-icon .feat-icon-img { width: 20px; height: 20px; object-fit: contain; display: block; }
.feat-card h4 { font-family: 'DM Sans', sans-serif; font-size: 0.88rem; font-weight: 500; margin-bottom: 2px; color: var(--teal-dark); }
.feat-card p { font-size: 0.86rem; color: var(--text-light); line-height: 1.5; }

/* UBYTOVANIE */
#ubytovanie { background: var(--white); }
.rooms-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; margin-top: 3rem; }
.room-card { border: 1px solid rgba(40,120,176,0.2); border-radius: var(--radius-lg); overflow: hidden; transition: transform 0.25s, box-shadow 0.25s; }
.room-card:hover { transform: translateY(-5px); box-shadow: 0 16px 40px rgba(26,79,128,0.14); }
.room-img { aspect-ratio: 4/3; overflow: hidden; position: relative; }
.room-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.room-card:hover .room-img img { transform: scale(1.05); }
.room-body { padding: 1.3rem; }
.room-body h3 { font-size: 1.15rem; margin-bottom: 0.4rem; color: var(--teal-dark); }
.room-body p { font-size: 0.95rem; color: var(--text-mid); line-height: 1.6; margin-bottom: 1rem; }
.room-amenities { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 1rem; }
.amenity { background: var(--teal-softer); color: var(--teal-mid); font-size: 0.7rem; padding: 3px 10px; border-radius: 20px; font-weight: 500; }
.room-footer { display: flex; align-items: center; justify-content: space-between; padding-top: 0.8rem; border-top: 1px solid rgba(40,120,176,0.15); }
.room-price { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; font-weight: 600; color: var(--teal-dark); }
.room-price span { font-family: 'DM Sans', sans-serif; font-size: 0.75rem; color: var(--text-light); font-weight: 300; }
.btn-sm { background: var(--teal-dark); color: var(--white); padding: 8px 18px; border-radius: 6px; text-decoration: none; font-size: 0.8rem; font-weight: 500; transition: background 0.2s; }
.btn-sm:hover { background: var(--teal-mid); }

/* REŠTAURÁCIA */
#restauracia { background: var(--teal-dark); }
#restauracia .section-label { color: var(--teal-pale); }
#restauracia .section-title { color: var(--white); }
#restauracia .section-lead { color: rgba(255,255,255,0.72); }
#restauracia .divider { background: var(--teal-bright); }
.restaurant-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.menu-items { display: flex; flex-direction: column; gap: 0.9rem; margin-top: 1.8rem; }
.menu-item { display: flex; gap: 1rem; align-items: flex-start; padding: 1rem 1.2rem; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius); transition: background 0.2s; }
.menu-item:hover { background: rgba(255,255,255,0.1); }
.menu-item-icon { font-size: 20px; flex-shrink: 0; margin-top: 2px; width: 22px; height: 22px; display: inline-flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.9); }
.menu-item-icon .icon { width: 20px; height: 20px; }
.menu-item h4 { font-family: 'DM Sans', sans-serif; font-size: 0.92rem; font-weight: 500; color: var(--white); margin-bottom: 2px; }
.menu-item p { font-size: 0.88rem; color: rgba(255,255,255,0.6); line-height: 1.5; }
.menu-item-listok-link { display: inline-block; margin-top: 0.4rem; font-size: 0.78rem; font-weight: 500; color: var(--teal-bright); text-decoration: none; transition: opacity 0.2s; }
.menu-item-listok-link:hover { opacity: 0.75; }
body.page-restauracia #restauracia .menu-item-listok-link { color: var(--teal-mid); }
.restaurant-img { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 3/4; }
.food-carousel { position: relative; width: 100%; height: 100%; overflow: hidden; touch-action: pan-y; user-select: none; -webkit-user-select: none; outline: none; }
.food-carousel .carousel-viewport { width: 100%; height: 100%; overflow: hidden; }
.food-carousel .carousel-track { width: 100%; height: 100%; display: flex; transition: transform 380ms ease; will-change: transform; }
.food-carousel .carousel-slide { display: block; width: 100%; flex: 0 0 100%; height: 100%; object-fit: cover; }
.food-carousel .carousel-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 44px; height: 44px; border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.35);
  background: rgba(26,79,128,0.55);
  color: rgba(255,255,255,0.92);
  font-family: 'DM Sans', sans-serif;
  font-size: 28px;
  line-height: 0;
  padding: 0;
  cursor: pointer;
  display: grid; place-items: center;
  z-index: 2;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}
.food-carousel .carousel-btn:hover { background: rgba(26,79,128,0.72); border-color: rgba(255,255,255,0.55); }
.food-carousel .carousel-btn:active { transform: translateY(-50%) scale(0.98); }
.food-carousel .carousel-btn.prev { left: 14px; }
.food-carousel .carousel-btn.next { right: 14px; }
.food-carousel .carousel-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  pointer-events: none;
}
.hours-block { margin-top: 1.5rem; padding: 1.2rem; background: rgba(61,160,212,0.12); border: 1px solid rgba(61,160,212,0.3); border-radius: var(--radius); }
.hours-block h4 { font-family: 'DM Sans', sans-serif; font-size: 0.82rem; font-weight: 500; color: var(--teal-pale); margin-bottom: 0.6rem; }
.hours-block p { font-size: 0.9rem; color: rgba(255,255,255,0.75); line-height: 1.9; }

/* Reštaurácia — podstránka (bledé pozadie, tmavý text) */
body.page-restauracia #restauracia { background: var(--teal-softer); }
body.page-restauracia #restauracia .section-label { color: var(--teal-mid); }
body.page-restauracia #restauracia .section-title { color: var(--teal-dark); }
body.page-restauracia #restauracia .section-lead { color: var(--text-mid); }
body.page-restauracia #restauracia .divider { background: var(--teal-bright); }
body.page-restauracia #restauracia .menu-item {
  background: var(--white);
  border: 1px solid rgba(40,120,176,0.2);
}
body.page-restauracia #restauracia .menu-item:hover {
  background: var(--cream);
  border-color: rgba(40,120,176,0.32);
}
body.page-restauracia #restauracia .menu-item-icon { color: var(--teal-mid); }
body.page-restauracia #restauracia .menu-item h4 { color: var(--text-dark); }
body.page-restauracia #restauracia .menu-item p { color: var(--text-light); }
body.page-restauracia #restauracia .hours-block {
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(40,120,176,0.22);
}
body.page-restauracia #restauracia .hours-block h4 { color: var(--teal-dark); }
body.page-restauracia #restauracia .hours-block p { color: var(--text-mid); }
body.page-restauracia #restauracia .restaurant-img {
  box-shadow: 0 16px 48px rgba(26,79,128,0.14);
  border: 1px solid rgba(40,120,176,0.12);
}
body.page-restauracia #restauracia .food-carousel .carousel-btn {
  border-color: rgba(255,255,255,0.5);
  background: rgba(26,79,128,0.65);
}
body.page-restauracia #restauracia .food-carousel .carousel-btn:hover {
  background: rgba(26,79,128,0.82);
  border-color: rgba(255,255,255,0.65);
}
body.page-restauracia #restauracia .food-carousel .carousel-btn:disabled {
  opacity: 0.4;
}

/* PARKOVISKO */
#parkovisko { background: var(--cream); }
.parking-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.parking-perks { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 2rem; }
.perk-card { background: var(--white); border: 1px solid rgba(40,120,176,0.2); border-radius: var(--radius); padding: 1.4rem; text-align: center; transition: box-shadow 0.2s, transform 0.2s; }
.perk-card:hover { box-shadow: 0 6px 24px rgba(26,79,128,0.1); transform: translateY(-2px); }
.perk-icon { font-size: 1.8rem; margin-bottom: 0.6rem; }
.perk-icon { width: 40px; height: 40px; border-radius: 12px; display: inline-flex; align-items: center; justify-content: center; background: var(--teal-softer); color: var(--teal-mid); margin-left: auto; margin-right: auto; }
.perk-icon .icon { width: 22px; height: 22px; }
.perk-icon--p {
  font-family: 'DM Sans', sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  line-height: 1;
  letter-spacing: -0.02em;
}
.perk-card h4 { font-family: 'DM Sans', sans-serif; font-size: 0.88rem; font-weight: 500; color: var(--teal-dark); margin-bottom: 0.3rem; }
.perk-card p { font-size: 0.77rem; color: var(--text-light); line-height: 1.5; }
.parking-img-wrap { border-radius: var(--radius-lg); overflow: hidden; margin-bottom: 1.5rem; }
.parking-img-wrap img { width: 100%; height: 260px; object-fit: cover; display: block; }
.parking-cta-box { background: var(--teal-dark); color: var(--white); border-radius: var(--radius-lg); padding: 2rem; text-align: center; }
.parking-cta-box h3 { font-size: 1.35rem; margin-bottom: 0.5rem; color: var(--teal-pale); }
.parking-cta-box p { font-size: 0.88rem; color: rgba(255,255,255,0.72); margin-bottom: 1.4rem; line-height: 1.7; }

/* GALÉRIA */
#galeria { background: var(--white); }
.gallery-block { margin-top: 3rem; }
.gallery-block:first-of-type { margin-top: 0; }
.gallery-block .section-title { font-size: clamp(1.35rem, 2.5vw, 1.85rem); margin-bottom: 0; line-height: 1.25; }
.gallery-block .gallery-grid { margin-top: 1.25rem; }
#detsky-kutik { scroll-margin-top: 5.5rem; }
.gallery-placeholder-box {
  margin-top: 1.25rem;
  padding: 2.5rem 1.5rem;
  text-align: center;
  background: var(--cream);
  border: 1px dashed rgba(40, 120, 176, 0.35);
  border-radius: var(--radius-lg);
  color: var(--text-mid);
  font-size: 0.95rem;
  line-height: 1.65;
}
.gallery-placeholder-box p { margin: 0; max-width: 28rem; margin-inline: auto; }
.gallery-intro { font-size: 1.04rem; color: var(--text-mid); line-height: 1.8; max-width: 640px; margin-top: 1rem; }
.gallery-cta { margin-top: 3.5rem; text-align: center; padding: 2.75rem 1.75rem; background: var(--cream); border-radius: var(--radius-lg); border: 1px solid rgba(61,160,212,0.12); }
.gallery-cta h2,
.gallery-cta h3 { font-size: clamp(1.35rem, 2.5vw, 1.75rem); margin-bottom: 0.65rem; color: var(--teal-dark); font-family: 'Cormorant Garamond', serif; font-weight: 600; }
.gallery-cta p { color: var(--text-mid); font-size: 1.04rem; line-height: 1.75; max-width: 480px; margin: 0 auto 1.35rem; }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 3rem; }
.gallery-item { border-radius: var(--radius); overflow: hidden; position: relative; cursor: pointer; aspect-ratio: 4/3; }
.gallery-item img { width: 100%; height: 100%; display: block; object-fit: cover; transition: transform 0.4s; }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-overlay { position: absolute; inset: 0; background: rgba(26,79,128,0); transition: background 0.3s; }
.gallery-item:hover .gallery-overlay { background: rgba(26,79,128,0.25); }

/* Galéria — lightbox */
.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 2500;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 3.75rem 1.25rem 1.5rem;
  box-sizing: border-box;
  background: rgba(14, 42, 64, 0.9);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  cursor: zoom-out;
}
.gallery-lightbox.is-open {
  display: flex;
}
.gallery-lightbox-img {
  max-width: min(96vw, 1100px);
  max-height: calc(100vh - 5rem);
  max-height: calc(100dvh - 5rem);
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
  cursor: default;
  pointer-events: auto;
}
.gallery-lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 2;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 12px;
  background: rgba(26, 79, 128, 0.65);
  color: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: background 0.2s, border-color 0.2s;
}
.gallery-lightbox-close svg { width: 20px; height: 20px; display: block; flex-shrink: 0; }
.gallery-lightbox-close:hover {
  background: rgba(40, 120, 176, 0.85);
  border-color: rgba(255, 255, 255, 0.65);
}
.gallery-lightbox-close:focus-visible {
  outline: 2px solid var(--teal-pale);
  outline-offset: 3px;
}
body.gallery-lightbox-open {
  overflow: hidden;
}
.gallery-lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(255,255,255,.4);
  border-radius: 50%;
  background: rgba(26,79,128,.6);
  color: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: background .2s, border-color .2s, transform .15s;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.gallery-lightbox-nav svg { width: 22px; height: 22px; display: block; flex-shrink: 0; }
.gallery-lightbox-prev { left: 1.25rem; }
.gallery-lightbox-next { right: 1.25rem; }
.gallery-lightbox-nav:hover {
  background: rgba(40,120,176,.9);
  border-color: rgba(255,255,255,.7);
  transform: translateY(-50%) scale(1.08);
}
.gallery-lightbox-nav:focus-visible {
  outline: 2px solid var(--teal-pale);
  outline-offset: 3px;
}
@media (max-width: 600px) {
  .gallery-lightbox-nav {
    width: 40px;
    height: 40px;
  }
  .gallery-lightbox-nav svg { width: 18px; height: 18px; }
  .gallery-lightbox-prev { left: .5rem; }
  .gallery-lightbox-next { right: .5rem; }
}

/* KONTAKT */
#kontakt { background: var(--teal-softer); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 4rem; align-items: start; }
.contact-info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem; }
.contact-info { display: flex; flex-direction: column; gap: 1.4rem; }
.contact-item { display: flex; gap: 1rem; align-items: flex-start; }
.contact-icon { width: 44px; height: 44px; border-radius: 10px; background: var(--teal-dark); color: var(--white); display: flex; align-items: center; justify-content: center; font-size: 17px; flex-shrink: 0; }
.contact-icon .icon { width: 20px; height: 20px; color: rgba(255,255,255,0.95); }
.contact-icon--copy { border: none; padding: 0; cursor: pointer; }
.contact-icon--copy:hover { background: var(--teal-mid); }
.contact-icon--copy:active { transform: scale(0.98); }
.contact-icon--copy:focus-visible { outline: 2px solid var(--teal-mid); outline-offset: 3px; }
.contact-item h4 { font-family: 'DM Sans', sans-serif; font-size: 0.75rem; font-weight: 500; color: var(--text-light); text-transform: uppercase; letter-spacing: 1.2px; margin-bottom: 3px; }
.contact-item p { font-size: 1.05rem; color: var(--text-dark); }
.contact-item a { color: var(--teal-mid); text-decoration: none; }
.contact-section { background: var(--white); border: 1px solid rgba(40,120,176,0.18); border-radius: var(--radius-lg); padding: 1.35rem 1.45rem; }
.contact-section-title { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; color: var(--teal-dark); margin-bottom: 1rem; }
.contact-section-body { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem 1.4rem; }
.contact-section-body .contact-item--full { grid-column: 1 / -1; }
.contact-register { margin-top: 0.25rem; font-size: 0.92rem; color: var(--text-light); line-height: 1.6; grid-column: 1 / -1; }
.copy-row { display: inline-flex; align-items: center; gap: 0.55rem; flex-wrap: nowrap; }
.copy-btn {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  border: 1px solid rgba(40,120,176,0.25);
  background: var(--white);
  color: var(--teal-mid);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}
.copy-btn:hover { background: var(--cream); border-color: rgba(40,120,176,0.35); }
.copy-btn:active { transform: scale(0.98); }
.copy-btn:focus-visible { outline: 2px solid var(--teal-mid); outline-offset: 3px; }
.copy-btn-icon { width: 18px; height: 18px; display: block; }
.copy-btn.is-copied { background: rgba(61,160,212,0.12); border-color: rgba(61,160,212,0.3); }
.map-box { position: relative; border-radius: var(--radius-lg); overflow: hidden; height: 420px; margin-top: 2rem; border: 1px solid rgba(40,120,176,0.2); width: 100%; }
.map-box iframe { width: 100%; height: 100%; border: none; }
.map-meta { margin-top: 0.55rem; font-size: 0.72rem; color: var(--text-light); line-height: 1.45; }
.map-meta a { color: var(--teal-mid); text-decoration: none; }
.map-meta a:hover { text-decoration: underline; }
.contact-form { background: var(--white); border-radius: var(--radius-lg); padding: 2rem 2.2rem; border: 1px solid rgba(40,120,176,0.2); }
.contact-form h3 { font-size: 1.4rem; color: var(--teal-dark); margin-bottom: 1.5rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1rem; }
.form-group label { display: block; font-size: 0.78rem; font-weight: 500; color: var(--text-mid); margin-bottom: 6px; }
.form-group input, .form-group textarea, .form-group select { width: 100%; padding: 10px 14px; border-radius: 8px; border: 1.5px solid rgba(40,120,176,0.25); font-family: 'DM Sans', sans-serif; font-size: 0.9rem; color: var(--text-dark); background: var(--cream); outline: none; transition: border-color 0.2s; }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--teal-mid); background: var(--white); }
.form-group textarea { resize: vertical; min-height: 100px; }
.btn-form { width: 100%; background: var(--teal-dark); color: var(--white); padding: 13px; border: none; border-radius: 8px; font-family: 'DM Sans', sans-serif; font-size: 0.95rem; font-weight: 500; cursor: pointer; transition: background 0.2s; }
.btn-form:hover { background: var(--teal-mid); }
.ml-form-status { margin-top: 0.9rem; font-size: 0.92rem; line-height: 1.45; }
.ml-form-status.is-success { color: #1f7a3b; }
.ml-form-status.is-error { color: #b42318; }

/* FOOTER */
footer { background: var(--teal-dark); padding: 3.5rem 2rem 1.5rem; color: rgba(255,255,255,0.65); }
.footer-inner { max-width: 1140px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem; margin-bottom: 2.5rem; align-items: stretch; }
.footer-brand { display: flex; flex-direction: column; height: 100%; min-height: 0; }
.footer-logo-link { display: inline-block; margin-bottom: 0.85rem; line-height: 0; text-decoration: none; }
.footer-logo-link:focus-visible { outline: 2px solid var(--teal-pale); outline-offset: 4px; border-radius: 4px; }
.footer-logo-img { height: 52px; width: auto; display: block; }
.footer-brand p { font-size: 0.84rem; line-height: 1.8; }
.footer-brand .footer-register { margin-top: auto; font-size: 0.78rem; line-height: 1.55; color: rgba(255,255,255,0.52); }
.footer-col h4 { font-family: 'DM Sans', sans-serif; font-size: 0.72rem; font-weight: 500; color: var(--teal-pale); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 1rem; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.5rem; }
.footer-col ul li a { color: rgba(255,255,255,0.6); text-decoration: none; font-size: 0.84rem; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--teal-pale); }
.footer-col ul li.footer-ident { font-size: 0.78rem; color: rgba(255,255,255,0.52); line-height: 1.45; }
.footer-bottom {
  position: relative;
  max-width: 1140px;
  margin: 0 auto;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 1.5rem max(1rem, env(safe-area-inset-right)) max(0.65rem, env(safe-area-inset-bottom)) max(1rem, env(safe-area-inset-left));
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  grid-template-rows: auto auto;
  grid-template-areas:
    "logo logo logo"
    "left . right";
  align-items: center;
  gap: 1rem;
  font-size: 0.78rem;
}
.footer-bottom-left {
  grid-area: left;
  justify-self: start;
  color: rgba(255,255,255,0.52);
  font-size: 0.72rem;
}
.footer-bottom-center { grid-area: logo; justify-self: center; }
.footer-bottom-right {
  grid-area: right;
  justify-self: end;
  display: inline-flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
}
.footer-bottom a { color: rgba(255,255,255,0.78); text-decoration: underline; text-underline-offset: 3px; }
.footer-bottom a:hover { color: var(--teal-pale); }
.footer-bottom-link { display: inline-flex; align-items: center; justify-content: center; text-decoration: none; line-height: 0; }
.footer-bottom-link:focus-visible { outline: 2px solid var(--teal-pale); outline-offset: 4px; border-radius: 6px; }
.footer-bottom-logo { height: 68px; width: auto; display: block; opacity: 0.92; }

@media (max-width: 760px) {
  .footer-bottom {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    grid-template-areas:
      "logo"
      "left"
      "right";
    justify-items: center;
    text-align: center;
    row-gap: 0.75rem;
  }
  .footer-bottom-left, .footer-bottom-center, .footer-bottom-right { justify-self: center; }
  .footer-bottom-right { justify-content: center; }
}

/* ═══════════════════════════════════════════════════════════════
   MENU PODSTRÁNKA
═══════════════════════════════════════════════════════════════ */
#menu-hero {
  background: var(--teal-softer);
  padding-bottom: 0;
}
#menu-hero .section-title { color: var(--teal-dark); }
#menu-hero .section-label { color: var(--teal-mid); }
#menu-hero .section-lead { color: var(--text-mid); margin-bottom: 2.5rem; }

/* Tab Switcher */
.menu-tabs {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  background: var(--white);
  border: 1px solid rgba(40,120,176,0.2);
  border-radius: 12px;
  padding: 5px;
  gap: 4px;
  margin-top: 0.5rem;
}
.menu-tab {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: 8px;
  border: none;
  background: transparent;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-mid);
  cursor: pointer;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  white-space: nowrap;
}
.menu-tab:hover { background: var(--teal-softer); color: var(--teal-dark); }
.menu-tab.is-active {
  background: var(--teal-dark);
  color: var(--white);
  box-shadow: 0 2px 10px rgba(26,79,128,0.22);
}
.menu-tab-icon { width: 18px; height: 18px; flex-shrink: 0; }

.menu-daily-period {
  margin-bottom: 2rem;
  padding: 1rem 1.25rem;
  background: var(--teal-softer);
  border: 1px solid rgba(40,120,176,0.18);
  border-radius: var(--radius);
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.5;
}
.menu-daily-period strong {
  color: var(--teal-dark);
  font-weight: 600;
}

/* Panel */
.menu-panel { background: var(--white); padding: 3.5rem 2rem; }
.menu-panel[hidden] { display: none; }

/* Loading */
.menu-loading {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--text-light);
  font-size: 0.9rem;
  padding: 2rem 0;
}
.menu-spinner {
  width: 22px; height: 22px;
  border: 2.5px solid rgba(40,120,176,0.2);
  border-top-color: var(--teal-bright);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  flex-shrink: 0;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* Menu content categories */
.menu-content { max-width: 900px; }
.menu-category { margin-bottom: 3rem; }
.menu-category:last-child { margin-bottom: 0; }
.menu-category-header {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-bottom: 1.5rem;
}
.menu-category-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 600;
  color: var(--teal-dark);
  line-height: 1.2;
}
.menu-category-divider {
  flex: 1;
  height: 1px;
  background: rgba(40,120,176,0.15);
}

/* Item grid */
.menu-items-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(40,120,176,0.1);
  border: 1px solid rgba(40,120,176,0.12);
  border-radius: var(--radius);
  overflow: hidden;
}
.menu-item-card {
  background: var(--white);
  padding: 1.1rem 1.25rem;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  transition: background 0.18s;
}
.menu-item-card:hover { background: var(--cream); }
.menu-item-photo {
  flex-shrink: 0;
  width: 88px;
  height: 88px;
  border-radius: 10px;
  overflow: hidden;
  background: var(--cream);
  border: 1px solid rgba(40,120,176,0.12);
}
button.menu-item-photo {
  appearance: none;
  padding: 0;
  margin: 0;
  cursor: pointer;
  font: inherit;
  color: inherit;
  text-align: left;
}
button.menu-item-photo:focus-visible {
  outline: 2px solid var(--teal-bright);
  outline-offset: 2px;
}
.menu-item-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.menu-item-info { flex: 1; min-width: 0; }
.menu-item-name {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 3px;
  line-height: 1.35;
}
.menu-item-desc {
  font-size: 0.86rem;
  color: var(--text-light);
  line-height: 1.5;
  margin-bottom: 4px;
}
.menu-item-allergens {
  font-size: 0.7rem;
  color: var(--text-light);
}
.menu-item-allergen-tag {
  display: inline-block;
  background: var(--teal-softer);
  color: var(--teal-mid);
  padding: 1px 6px;
  border-radius: 20px;
  font-weight: 500;
  margin: 1px 1px;
  font-size: 0.68rem;
}
.menu-item-right {
  flex-shrink: 0;
  text-align: right;
  align-self: flex-start;
}
.menu-item-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--teal-dark);
  white-space: nowrap;
}
.menu-item-price-unit {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.7rem;
  color: var(--text-light);
  font-weight: 300;
}

/* Allergen legend */
#menu-allergens { background: var(--cream); padding: 3rem 2rem; }
.allergens-box {
  max-width: 900px;
  background: var(--white);
  border: 1px solid rgba(40,120,176,0.15);
  border-radius: var(--radius-lg);
  padding: 1.75rem 2rem;
}
.allergens-box h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  color: var(--teal-dark);
  margin-bottom: 0.5rem;
}
.allergens-box p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 1.2rem;
}
.allergens-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 0.5rem;
}
.allergens-grid span {
  font-size: 0.78rem;
  color: var(--text-mid);
  background: var(--cream);
  border-radius: 6px;
  padding: 5px 10px;
}
.allergens-grid span strong {
  color: var(--teal-dark);
  margin-right: 4px;
}

/* Menu empty state */
.menu-empty {
  text-align: center;
  padding: 3rem 1rem;
  color: var(--text-light);
  font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 640px) {
  .menu-tabs { width: 100%; justify-content: stretch; }
  .menu-tab { flex: 1 1 auto; justify-content: center; padding: 9px 10px; font-size: 0.8rem; }
  .menu-item-photo { width: 72px; height: 72px; }
  .menu-items-grid { grid-template-columns: 1fr; }
  .allergens-grid { grid-template-columns: repeat(auto-fill, minmax(110px, 1fr)); }
}

/* RESPONSIVE */
@media (max-width: 960px) {
  body.nav-menu-open { overflow: hidden; }
  .nav-cta { display: none; }
  .nav-menu-toggle { display: inline-flex; }
  .nav-links {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    background: rgba(26,79,128,0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 0.35rem 2rem 1.25rem;
    gap: 0;
    margin: 0;
    list-style: none;
    box-shadow: 0 16px 40px rgba(0,0,0,0.22);
    border-bottom: 1px solid rgba(61,160,212,0.28);
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition: max-height 0.38s ease, opacity 0.22s ease, visibility 0.22s;
    z-index: 998;
  }
  nav.is-open .nav-links {
    max-height: min(75vh, 520px);
    opacity: 1;
    visibility: visible;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .nav-links li { width: 100%; border-top: 1px solid rgba(255,255,255,0.1); }
  .nav-links li:first-child { border-top: none; }
  .nav-links a { display: block; padding: 0.9rem 0.25rem; font-size: 1rem; }

  .hero-strip {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    min-height: 100dvh;
  }
  #hero {
    flex: 1 1 auto;
    min-height: 0;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    padding: 88px 1.25rem 0;
  }
  .hero-content {
    align-self: center;
    width: 100%;
    max-width: 560px;
    padding-bottom: 1.5rem;
  }
  .hero-stats {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    flex-shrink: 0;
    width: 100%;
    max-width: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding-bottom: max(0.75rem, env(safe-area-inset-bottom, 0px));
  }
  .hero-stat {
    padding: 1rem 0.65rem;
    border: none;
    border-right: 1px solid rgba(255,255,255,0.12);
    border-bottom: 1px solid rgba(255,255,255,0.12);
  }
  .hero-stat:nth-child(2n) { border-right: none; }
  .hero-stat strong { font-size: 1.45rem; }

  .about-grid, .restaurant-grid, .parking-grid, .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .contact-info-grid { grid-template-columns: 1fr; }
  .contact-section-body { grid-template-columns: 1fr; }
  body.page-o-nas .about-grid .about-img { order: -1; }
  .rooms-grid { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  nav { padding: 0 1.3rem; }
  .nav-links { padding-left: 1.3rem; padding-right: 1.3rem; }
  .rooms-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .about-features, .parking-perks { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  section { padding: 60px 1.3rem; }
  .footer-bottom { flex-direction: column; gap: 0.4rem; text-align: center; }
}

/* ── Cookies (Google Consent Mode + lišta) ─────────────────── */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10000;
  padding: 1.35rem 1.25rem max(1.25rem, env(safe-area-inset-bottom, 0px));
  background: linear-gradient(180deg, rgba(18, 52, 78, 0.99) 0%, rgba(10, 32, 52, 0.99) 100%);
  color: rgba(255, 255, 255, 0.92);
  border-top: 1px solid rgba(61, 160, 212, 0.4);
  box-shadow: 0 -12px 40px rgba(0, 0, 0, 0.28);
}
.cookie-banner-inner {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
}
.cookie-banner-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.25rem, 3.5vw, 1.55rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.25;
  margin: 0;
  max-width: 34rem;
}
.cookie-banner-lead {
  font-size: 0.82rem;
  line-height: 1.65;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  max-width: 36rem;
}
.cookie-banner-link {
  color: var(--teal-pale);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.cookie-banner-link:hover {
  color: var(--sign-blue);
}
.cookie-banner-categories {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem 1rem;
  width: 100%;
  max-width: 520px;
  margin-top: 0.25rem;
}
.cookie-cat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
  cursor: pointer;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
  user-select: none;
}
.cookie-cat input {
  width: 1.15rem;
  height: 1.15rem;
  accent-color: var(--teal-bright);
  cursor: pointer;
}
.cookie-cat input:disabled {
  cursor: not-allowed;
  opacity: 0.85;
}
.cookie-cat-label {
  text-align: center;
  line-height: 1.25;
  max-width: 7.5rem;
}
.cookie-banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  justify-content: center;
  margin-top: 0.35rem;
}
.btn-cookie {
  font-family: inherit;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.62rem 1.35rem;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.15s;
}
.btn-cookie:focus-visible {
  outline: 2px solid var(--teal-pale);
  outline-offset: 2px;
}
.btn-cookie-primary {
  background: var(--teal-bright);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.12);
}
.btn-cookie-primary:hover {
  background: var(--teal-mid);
}
.btn-cookie-pill {
  min-width: 8.5rem;
}
.btn-cookie-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.45);
}
.btn-cookie-outline:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.6);
}
.btn-cookie-secondary {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.28);
}
.btn-cookie-secondary:hover {
  background: rgba(255, 255, 255, 0.18);
}
.btn-cookie-ghost {
  background: transparent;
  color: rgba(255, 255, 255, 0.85);
  border-color: rgba(255, 255, 255, 0.22);
}
.btn-cookie-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
}
.cookie-banner-details-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  margin-top: 0.15rem;
  padding: 0.4rem 0.6rem;
  font-family: inherit;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.2s;
}
.cookie-banner-details-toggle:hover {
  color: var(--teal-pale);
}
.cookie-banner-gear {
  flex-shrink: 0;
  opacity: 0.85;
}
.cookie-banner-details {
  width: 100%;
  max-width: 36rem;
  text-align: left;
  margin-top: 0.25rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.cookie-banner-details-text {
  font-size: 0.78rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.68);
  margin: 0 0 0.65rem;
}
.cookie-banner-details-text:last-child {
  margin-bottom: 0;
}
@media (max-width: 560px) {
  .cookie-banner-categories {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.map-box.ml-embed-blocked iframe,
.about-video-wrap.ml-embed-blocked iframe {
  visibility: hidden;
  position: absolute;
  width: 0;
  height: 0;
  pointer-events: none;
}
.ml-embed-blocked-msg {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1.5rem 1.25rem;
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--text-mid);
  background: var(--cream);
}
.map-box .ml-embed-blocked-msg:not([hidden]) {
  position: absolute;
  inset: 0;
  z-index: 2;
  min-height: 100%;
}
.about-video-wrap .ml-embed-blocked-msg:not([hidden]) {
  position: absolute;
  inset: 0;
  z-index: 2;
  border-radius: 14px;
}

.ml-footer-cookie-link {
  font-family: inherit;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.78);
  text-decoration: underline;
  text-underline-offset: 3px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.35rem 0.45rem;
  margin: 0;
  text-align: right;
  line-height: 1.3;
  max-width: min(220px, 60vw);
}
.ml-footer-cookie-link:hover {
  color: var(--teal-pale);
}
.ml-footer-cookie-link:focus-visible {
  outline: 2px solid var(--teal-pale);
  outline-offset: 3px;
  border-radius: 4px;
}
