/* ===== COMO – Simplified Landing (Split-Layout) ===== */

.landing { padding: 90px 14px 0; }
.landing-notice { display: flex; width: fit-content; align-items: center; gap: 9px; margin: 2px auto 14px; padding: 6px 16px; border: 1px solid var(--line-soft); border-radius: 100px; background: rgba(200,146,63,.06); font-size: .8rem; color: var(--cream-dim); }
.landing-notice .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--gold-bright); flex: none; animation: ccpulse 2.2s ease-out infinite; }
.landing-notice b { color: var(--cream); font-weight: 700; }
.landing-notice a { color: var(--gold-bright); font-weight: 600; padding-left: 4px; border-left: 1px solid var(--line); margin-left: 2px; }
@media (prefers-reduced-motion: reduce) { .landing-notice .dot { animation: none; } }

/* Saison-Badge auf der Reservierungs-Kachel */
.tile-flag { display: inline-flex; align-items: center; gap: 7px; font-size: .62rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--gold-bright); padding: 4px 10px; border: 1px solid var(--line); border-radius: 100px; background: rgba(200,146,63,.16); margin-bottom: 8px; }
.tile-flag .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold-bright); flex: none; animation: ccpulse 2.2s ease-out infinite; }
@media (prefers-reduced-motion: reduce) { .tile-flag .dot { animation: none; } }
.landing-split {
  display: grid; grid-template-columns: 1.12fr .88fr; gap: 14px;
  min-height: calc(100svh - 90px);
}

/* ===== Schwebender Header (Pill) ===== */
.hdr {
  position: fixed; top: 14px; left: 14px; right: 14px; z-index: 60;
  display: flex; align-items: center; gap: clamp(.9rem, 2.2vw, 1.8rem);
  padding: 9px 11px;
  background: rgba(16,12,7,.72); backdrop-filter: blur(16px) saturate(1.1); -webkit-backdrop-filter: blur(16px) saturate(1.1);
  border: 1px solid rgba(243,234,216,.14); border-radius: 16px; box-shadow: 0 12px 40px rgba(0,0,0,.4);
}
.hdr-burger { width: 44px; height: 44px; border-radius: 11px; border: 1px solid rgba(243,234,216,.18); background: transparent; display: grid; place-content: center; gap: 4px; cursor: pointer; transition: border-color .25s, background .25s; flex: none; }
.hdr-burger span { display: block; width: 18px; height: 1.6px; background: var(--cream); transition: transform .35s, opacity .25s; }
.hdr-burger:hover { border-color: var(--gold); background: rgba(255,255,255,.03); }
body.menu-open .hdr-burger span:nth-child(1) { transform: translateY(5.6px) rotate(45deg); }
body.menu-open .hdr-burger span:nth-child(2) { opacity: 0; }
body.menu-open .hdr-burger span:nth-child(3) { transform: translateY(-5.6px) rotate(-45deg); }
.hdr-logo { display: inline-flex; align-items: center; }
.hdr-logo img { height: 34px; width: auto; display: block; transition: transform .4s; }
.hdr-logo:hover img { transform: scale(1.06); }
.hdr-nav { display: flex; gap: clamp(1rem, 2vw, 1.7rem); margin-left: 4px; }
.hdr-nav a { font-family: var(--body); font-size: .76rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--cream-dim); position: relative; padding: 4px 0; transition: color .25s; }
.hdr-nav a::after { content: ""; position: absolute; left: 0; bottom: -2px; height: 1px; width: 0; background: var(--gold-bright); transition: width .35s; }
.hdr-nav a:hover, .hdr-nav a.is-active { color: var(--cream); }
.hdr-nav a:hover::after, .hdr-nav a.is-active::after { width: 100%; }
/* Unterseiten: Inhalt unter den schwebenden Header schieben */
body.subpage { padding-top: clamp(104px, 11vh, 124px); }
@media (max-width: 760px) { body.subpage { padding-top: 82px; } }
.hdr-actions { display: flex; align-items: center; gap: clamp(.55rem,1.1vw,.95rem); margin-left: auto; }
.hdr-phone { display: inline-flex; align-items: center; gap: 7px; font-family: var(--body); font-weight: 600; font-size: .82rem; letter-spacing: .02em; color: var(--cream); white-space: nowrap; transition: color .25s; }
.hdr-phone svg { width: 15px; height: 15px; color: var(--gold-bright); flex: none; }
.hdr-phone:hover { color: var(--gold-bright); }
.hdr-phone:hover svg { color: var(--gold-bright); }
.hdr-cta { font-family: var(--body); font-size: .72rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--cream); border: 1px solid var(--gold); border-radius: 11px; padding: 11px 16px; transition: .3s; white-space: nowrap; flex: none; }
.hdr-cta:hover { background: var(--gold-bright); color: #1a1206; border-color: var(--gold-bright); }
.hdr-cta--ghost { border-color: rgba(243,234,216,.2); color: var(--cream-dim); }
.hdr-cta--ghost:hover { background: transparent; color: var(--cream); border-color: var(--gold); }

/* ===== Off-canvas Menü ===== */
.menu-overlay { position: fixed; inset: 0; z-index: 55; background: rgba(10,8,4,.97); backdrop-filter: blur(22px); -webkit-backdrop-filter: blur(22px); opacity: 0; visibility: hidden; transition: opacity .5s, visibility .5s; display: flex; overflow-y: auto; padding: clamp(96px,14vh,150px) clamp(1.2rem,5vw,3rem) 3rem; }
body.menu-open { overflow: hidden; }
body.menu-open .menu-overlay { opacity: 1; visibility: visible; }
.menu-overlay-inner { width: min(900px, 94vw); margin: auto; display: grid; gap: clamp(1.8rem,4.5vw,3rem); transform: translateY(18px); opacity: 0; transition: transform .6s .08s, opacity .6s .08s; }
body.menu-open .menu-overlay-inner { transform: none; opacity: 1; }
.menu-overlay-nav { display: grid; }
.menu-overlay-nav a { display: flex; align-items: baseline; gap: 1rem; font-family: var(--display); font-size: clamp(1.9rem,6vw,3.4rem); color: var(--cream-dim); line-height: 1.18; border-bottom: 1px solid var(--line-soft); padding: .5rem 0; transition: color .3s, padding-left .3s; }
.menu-overlay-nav a .num { font-family: var(--body); font-size: .8rem; font-weight: 600; letter-spacing: .2em; color: var(--gold-bright); }
.menu-overlay-nav a:hover { color: var(--cream); padding-left: .7rem; }
.menu-overlay-meta { display: flex; flex-wrap: wrap; gap: clamp(1.4rem,4vw,2.6rem); color: var(--cream-dim); font-size: .95rem; }
.menu-overlay-meta .eyebrow { color: var(--gold); font-family: var(--body); font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; margin: 0 0 .5rem; }
.menu-overlay-meta p { margin: .2rem 0; }
.menu-overlay-meta a:hover { color: var(--gold-bright); }

/* ===== Hero-Slideshow ===== */
.hero-slides { position: absolute; inset: 0; z-index: 1; }
.hero-slides .hs-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity 1.4s ease; }
.hero-slides .hs-img.is-shown { opacity: 1; }

/* Gutschein-Hinweis (nur Handy) */
.gutschein-hint { display: none; }
.gutschein-hint .gh-txt { display: flex; flex-direction: column; line-height: 1.16; }
.gutschein-hint .gh-txt b { color: var(--cream); font-weight: 600; }
.gutschein-hint .gh-txt em { font-style: normal; text-transform: uppercase; letter-spacing: .13em; font-size: .64em; color: var(--gold-bright); margin-top: 3px; }

@media (max-width: 560px) {
  /* Brand-Panel: beide Buttons nebeneinander */
  .hero-panel__cta { flex-wrap: nowrap; gap: 10px; }
  .hero-panel__cta .btn { flex: 1 1 0; min-width: 0; justify-content: center; padding: 11px 8px; font-size: .72rem; letter-spacing: .04em; }
  .hero-panel__cta .btn svg { width: 14px; height: 14px; flex: none; }
  /* Gutschein-Hinweis als durchgezogenes Mini-Banner (volle Breite) */
  .gutschein-hint { display: flex; align-items: center; gap: 12px; margin: 28px -12px 0; padding: 16px 18px; border: 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); border-radius: 0; background: linear-gradient(120deg, rgba(200,146,63,.12), rgba(255,255,255,.015)); color: var(--cream-dim); font-size: .9rem; }
  .gutschein-hint .gh-gift { width: 22px; height: 22px; color: var(--gold-bright); flex: none; }
  .gutschein-hint b { color: var(--cream); font-weight: 600; }
  .gutschein-hint .gh-arr { width: 18px; height: 18px; margin-left: auto; color: var(--gold-bright); flex: none; }
}

@media (max-width: 1024px) { .hdr-nav { display: none; } }
@media (max-width: 760px) {
  .hdr { top: 10px; left: 10px; right: 10px; gap: .7rem; padding: 8px 9px; }
  .hdr-logo img { height: 30px; }
  /* Am Handy: tippbare Telefonnummer statt der Buttons */
  .hdr-cta, .hdr-cta--ghost { display: none; }
  .hdr-phone { border: 1px solid var(--gold); border-radius: 10px; padding: 9px 12px; font-size: .8rem; }
}

/* shared panel/tile shell */
.panel { position: relative; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line-soft); isolation: isolate; display: flex; }
.panel__bg { position: absolute; inset: 0; z-index: 0; display: grid; place-items: center;
  background: radial-gradient(70% 60% at 50% 35%, rgba(200,146,63,.12), transparent 70%), linear-gradient(160deg, #241c10, #110d06); }
.panel__emblem { width: 38%; max-width: 170px; color: var(--gold); opacity: .14; }
.panel__photo { position: absolute; inset: 0; z-index: 1; width: 100%; height: 100%; object-fit: cover;
  transition: transform .9s cubic-bezier(.2,.7,.2,1); }
.panel:hover .panel__photo { transform: scale(1.05); }
/* Hover-Zoom auch auf den Kacheln + Hero-Slideshow */
.stack-tile:hover .panel__photo { transform: scale(1.06); }
.hero-slides .hs-img { transition: opacity 1.4s ease, transform .9s cubic-bezier(.2,.7,.2,1); }
.hero-panel:hover .hs-img.is-shown { transform: scale(1.045); }
.panel__veil { position: absolute; inset: 0; z-index: 2; }

/* arrow */
.go { display: grid; place-items: center; width: 40px; height: 40px; flex: none;
  border: 1px solid var(--line); border-radius: 50%; color: var(--gold-bright); transition: .3s; }
.go svg { width: 16px; height: 16px; }
a.stack-tile:hover .go, .panel--link:hover .go { background: var(--gold); color: #1a1206; border-color: var(--gold); }

/* HERO PANEL (left) */
.hero-panel { flex-direction: column; justify-content: flex-end; min-height: 540px; }
.hero-panel .panel__photo { object-position: center 42%; }
.hero-panel .panel__veil { background: linear-gradient(0deg, rgba(8,6,3,.9) 0%, rgba(8,6,3,.1) 42%, rgba(8,6,3,.28) 100%); }
.hero-panel__center { position: relative; z-index: 3; margin: auto; text-align: center; padding: 40px; }
.hero-panel .wordmark { font-size: clamp(2.8rem, 6vw, 5rem); }
.hero-panel .wordmark .ring { border-width: 3px; }
.hero-panel__sub { letter-spacing: .34em; text-transform: uppercase; font-size: .76rem; color: var(--cream); opacity: .85; margin-top: 1.1rem; }
.hero-panel__foot { position: relative; z-index: 3; padding: clamp(24px,3vw,40px); }
.hero-panel__foot .art { font-family: var(--display); color: var(--cream); line-height: .92; }
.hero-panel__foot .art .small { display: block; font-size: clamp(1.1rem,2vw,1.6rem); font-style: italic; color: var(--cream-dim); }
.hero-panel__foot .art .big { display: block; font-size: clamp(2.6rem,6vw,5rem); letter-spacing: .02em; }
.hero-panel__cta { position: relative; z-index: 3; margin-top: 18px; display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.hero-panel--clickable { cursor: pointer; }

/* RIGHT STACK */
.landing-stack { display: grid; grid-template-rows: repeat(3, 1fr); gap: 14px; }
.stack-tile { position: relative; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line-soft); isolation: isolate; display: flex; min-height: 116px; transition: border-color .3s; }
.stack-tile .panel__veil { background: linear-gradient(90deg, rgba(8,6,3,.9), rgba(8,6,3,.78) 30%, rgba(8,6,3,.28)); }
.stack-tile:hover { border-color: var(--gold); }
.stack-tile__content { position: relative; z-index: 3; padding: 20px clamp(20px,2.4vw,30px); width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.stack-tile h2 { font-family: var(--display); font-weight: 500; font-size: clamp(1.4rem, 2.4vw, 2.1rem); color: var(--cream); margin: 0; }
.stack-tile .sub { color: var(--cream-dim); font-size: .84rem; margin-top: 2px; display: block; }
.stack-tile__actions { display: flex; gap: 8px; flex-wrap: wrap; }

/* ANFAHRT */
.landing-anfahrt { padding: var(--section-y) 0 calc(var(--section-y) + 24px); }
.anfahrt-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.anfahrt-map { min-height: 500px; position: relative; margin-top: clamp(38px, 3.4vw, 54px); }
.anfahrt-map iframe { width: 100%; height: 100%; min-height: 500px; border: 1px solid var(--line); border-radius: var(--radius-lg); filter: saturate(.85); }
@media (max-width: 760px) { .anfahrt-map, .anfahrt-map iframe { min-height: 320px; } .anfahrt-map { margin-top: 0; } }
.hours td { padding: .2rem 1.4rem .2rem 0; }
.hours td:first-child { color: var(--cream-dim); }

/* Google-Bewertung (dezent, markenkonform) */
.greviews { display: inline-flex; align-items: center; gap: 10px; margin-top: 14px; padding: 11px 18px; border: 1px solid var(--line); border-radius: 100px; background: rgba(255,255,255,.02); color: var(--cream-dim); font-size: .9rem; transition: .25s; }
.greviews:hover { border-color: var(--gold); }
.greviews__stars { position: relative; display: inline-block; font-size: 1rem; line-height: 1; white-space: nowrap; }
.greviews__stars::before { content: "★★★★★"; color: rgba(231,194,130,.22); }
.greviews__stars::after { content: "★★★★★"; color: var(--gold-bright); position: absolute; left: 0; top: 0; width: var(--pct, 96%); overflow: hidden; }
.greviews__num b { color: var(--cream); font-weight: 700; font-size: 1.02rem; }
.greviews__src { color: var(--muted); }
.greviews__cta { color: var(--gold-bright); font-weight: 600; font-size: .82rem; }
@media (max-width: 560px) {
  .greviews { display: flex; flex-wrap: wrap; align-items: center; width: 100%; border-radius: 16px; padding: 13px 16px; column-gap: 8px; row-gap: 0; font-size: .85rem; }
  .greviews__cta { flex-basis: 100%; margin-top: 10px; padding-top: 10px; border-top: 1px solid var(--line-soft); }
}

/* Biergarten Highlight-Band */
.biergarten-band { position: relative; margin: 14px; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line-soft); isolation: isolate; min-height: 340px; display: flex; align-items: center; }
.biergarten-band .panel__veil { background: linear-gradient(90deg, rgba(8,6,3,.94), rgba(8,6,3,.6) 58%, rgba(8,6,3,.22)); }
.biergarten-band__content { position: relative; z-index: 3; padding: clamp(28px,5vw,60px); max-width: 660px; }
.season-flag { display: inline-flex; align-items: center; gap: .5em; font-size: .72rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: #1a1206; background: linear-gradient(135deg, var(--gold-bright), var(--gold-deep)); padding: .45em .95em; border-radius: 100px; }

/* Amenities-Chips */
.amenities { display: flex; flex-wrap: wrap; gap: 10px; }
.amenity { display: inline-flex; align-items: center; gap: .55em; border: 1px solid var(--line); border-radius: 100px; padding: .5em 1em; color: var(--cream-dim); font-size: .86rem; background: rgba(255,255,255,.015); transition: .25s; }
.amenity:hover { border-color: var(--gold); }
.amenity svg { width: 21px; height: 21px; color: var(--gold); flex: none; }
.amenity b { color: var(--cream); font-weight: 600; }
@media (max-width: 560px) {
  .amenities { gap: 8px; }
  .amenity { font-size: .75rem; padding: .5em .8em; white-space: nowrap; }
  .amenity svg { width: 17px; height: 17px; }
}

/* Glass-Buttons (Hero) */
.btn--glass { background: rgba(255,255,255,.06); border: 1px solid rgba(243,234,216,.4); color: var(--cream); backdrop-filter: blur(6px); }
.btn--glass:hover { border-color: var(--gold); color: var(--gold-bright); background: rgba(255,255,255,.12); transform: translateY(-2px); }
.btn svg { width: 15px; height: 15px; }

/* Vorteile-Icons auf der Anfahrt-Kachel */
.tile-amenities { display: flex; gap: 12px; margin-top: 10px; }
.tile-amenities svg { width: 21px; height: 21px; color: var(--gold-bright); }

/* Biergarten-Puls */
.season-flag.pulse { animation: flagPulse 2.2s ease-out infinite; }
@keyframes flagPulse { 0% { box-shadow: 0 0 0 0 rgba(231,194,130,.6); } 70%, 100% { box-shadow: 0 0 0 14px rgba(231,194,130,0); } }
.biergarten-tile { animation: tileGlow 2.6s ease-in-out infinite; }
@keyframes tileGlow { 0%, 100% { border-color: var(--line-soft); } 50% { border-color: var(--gold); } }
@media (prefers-reduced-motion: reduce) { .season-flag.pulse, .biergarten-tile { animation: none; } }

@media (max-width: 860px) {
  .landing { padding: 78px 12px 0; }
  .landing-split { grid-template-columns: 1fr; min-height: 0; gap: 9px; }
  .hero-panel { min-height: 44svh; }
  .hero-panel__center { padding: 26px 24px; }
  .landing-stack { grid-template-rows: none; grid-template-columns: 1fr; gap: 9px; }
  .stack-tile { min-height: 96px; }
  .anfahrt-grid { grid-template-columns: 1fr; gap: 22px; }
  .nav__cta .btn--primary { padding: .66em .95em; font-size: .72rem; letter-spacing: .08em; }
}
@media (max-width: 600px) {
  .nav__cta .btn--primary { display: none; }
}

/* ===== Bildergalerie (Innenraum) ===== */
.gallery { padding: var(--section-y) 0 0; }
.gallery__head { display: flex; align-items: flex-end; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-bottom: 30px; }
.gallery__previews { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; }
.gallery__thumb { position: relative; overflow: hidden; border-radius: var(--radius); border: 1px solid var(--line-soft); aspect-ratio: 1; cursor: pointer; }
.gallery__thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s cubic-bezier(.2,.7,.2,1); }
.gallery__thumb:hover img { transform: scale(1.08); }
.gallery__thumb .cap { position: absolute; left: 10px; right: 10px; bottom: 8px; font-size: .72rem; color: var(--cream); text-shadow: 0 1px 6px #000; opacity: 0; transition: opacity .3s; }
.gallery__thumb:hover .cap { opacity: 1; }
.gallery__more { position: relative; display: grid; place-items: center; text-align: center; aspect-ratio: 1; cursor: pointer; overflow: hidden; border-radius: var(--radius); border: 1px solid var(--line-soft); transition: .3s; }
.gallery__more img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: blur(2px) brightness(.5); transform: scale(1.12); transition: .5s; }
.gallery__more:hover { border-color: var(--gold); }
.gallery__more:hover img { transform: scale(1.18); }
.gallery__more-veil { position: absolute; inset: 0; background: rgba(8,6,3,.3); }
.gallery__more-inner { position: relative; z-index: 2; }
.gallery__more .plus { font-family: var(--display); font-size: 2.6rem; color: #fff; line-height: 1; text-shadow: 0 2px 12px #000; }
.gallery__more .lbl { font-size: .72rem; color: var(--cream); margin-top: 4px; letter-spacing: .1em; text-transform: uppercase; text-shadow: 0 1px 8px #000; }
/* Rundgang Mobile: großes Feature-Bild (öffnet Galerie) + abgesetztes Band */
.gallery__feature { display: none; }
@media (max-width: 760px) {
  .gallery { background: rgba(255,255,255,.022); padding: clamp(40px,7vw,52px) 0 26px; }
  .gallery__head { gap: 8px; margin-bottom: 16px; align-items: flex-start; }
  #gallery-previews, #food-previews { display: block; }
  #gallery-previews .gallery__thumb, #gallery-previews .gallery__more,
  #food-previews .gallery__thumb, #food-previews .gallery__more { display: none; }
  #food-previews .gallery__feature { aspect-ratio: 4/3; }
  .gallery__feature { display: block; position: relative; width: 100%; aspect-ratio: 4/5; border: 1px solid var(--line-soft); border-radius: var(--radius-lg); overflow: hidden; padding: 0; background: none; cursor: pointer; -webkit-tap-highlight-color: transparent; }
  .gallery__feature img { width: 100%; height: 100%; object-fit: cover; display: block; transition: opacity .4s ease, transform .5s; }
  .gallery__feature:active img { transform: scale(1.04); }
  .gallery__feature-veil { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(8,6,3,.82), rgba(8,6,3,.05) 55%); }
  .gallery__feature-cta { position: absolute; left: 0; right: 0; bottom: 16px; display: flex; align-items: center; justify-content: center; gap: 9px; color: var(--cream); font-family: var(--body); font-weight: 600; font-size: .98rem; }
  .gallery__feature-cta svg { width: 19px; height: 19px; color: var(--gold-bright); }
  .gallery__feature-cta em { font-style: normal; color: var(--cream-dim); font-weight: 400; }
}
@media (max-width: 860px) {
  .gallery__previews { grid-template-columns: repeat(3, 1fr); }
  .gallery__thumb:nth-child(3), .gallery__thumb:nth-child(4) { display: none; }
}

/* Lightbox / Rundgang – Vollbild mit unscharfem Hintergrund */
.lightbox { position: fixed; inset: 0; z-index: 300; display: none; align-items: center; justify-content: center; background: #0a0805; overflow: hidden; }
.lightbox.open { display: flex; }
.lb__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: blur(34px) brightness(.38); transform: scale(1.12); z-index: 0; transition: opacity .35s; }
.lightbox::after { content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none; background: linear-gradient(180deg, rgba(8,6,3,.55), transparent 16%, transparent 76%, rgba(8,6,3,.72)); }
.lb__stage { position: relative; z-index: 2; margin: 0; display: flex; flex-direction: column; align-items: center; gap: 16px; max-width: 94vw; }
.lb__img { max-width: 94vw; max-height: 80svh; object-fit: contain; border-radius: var(--radius); box-shadow: 0 36px 90px -30px #000; transition: opacity .35s ease, transform .35s ease; }
.lb__img.fade { opacity: 0; transform: scale(.985); }
.lb__cap { color: #fff; font-family: var(--display); font-size: 1.25rem; text-align: center; text-shadow: 0 2px 12px rgba(0,0,0,.6); }
.lb__count { position: absolute; top: 20px; left: 0; right: 0; z-index: 3; text-align: center; color: rgba(243,234,216,.82); font-size: .78rem; letter-spacing: .25em; }
.lb__close { position: absolute; top: 16px; right: 18px; z-index: 3; width: 46px; height: 46px; border-radius: 50%; background: rgba(0,0,0,.35); border: 1px solid rgba(255,255,255,.22); color: #fff; font-size: 1.05rem; cursor: pointer; backdrop-filter: blur(6px); }
.lb__close:hover { border-color: var(--gold); color: var(--gold-bright); }
.lb__nav { position: absolute; top: 50%; transform: translateY(-50%); z-index: 3; width: 52px; height: 52px; border-radius: 50%; background: rgba(0,0,0,.35); border: 1px solid rgba(255,255,255,.22); color: #fff; font-size: 1.6rem; cursor: pointer; display: grid; place-items: center; backdrop-filter: blur(6px); transition: .25s; }
.lb__nav:hover { border-color: var(--gold); color: var(--gold-bright); background: rgba(200,146,63,.2); }
.lb__prev { left: 14px; }
.lb__next { right: 14px; }
@media (max-width: 560px) { .lb__nav { width: 44px; height: 44px; font-size: 1.3rem; } .lb__prev { left: 8px; } .lb__next { right: 8px; } .lb__img { max-height: 72svh; } }

/* ===== Modal (Gastronovi-Widget) ===== */
.modal { position: fixed; inset: 0; z-index: 100; display: none; align-items: center; justify-content: center; padding: 18px; }
.modal.open { display: flex; }
.modal__backdrop { position: absolute; inset: 0; background: rgba(6,4,2,.82); backdrop-filter: blur(6px); }
.modal__panel { position: relative; z-index: 1; width: min(720px, 96vw); height: min(600px, 90svh); display: flex; flex-direction: column; overflow: hidden; background: linear-gradient(160deg, var(--surface), var(--bg-2)); border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow); transition: height .28s ease; }
.modal__head { display: flex; align-items: center; justify-content: space-between; padding: 18px 22px; border-bottom: 1px solid var(--line-soft); flex: none; background: var(--bg-2); }
.modal__head h3 { margin: 0; font-size: 1.35rem; }
.modal__close { background: none; border: 1px solid var(--line); color: var(--cream); width: 38px; height: 38px; border-radius: 50%; cursor: pointer; font-size: 1rem; transition: .25s; }
.modal__close:hover { border-color: var(--gold); color: var(--gold-bright); }
.modal__body { flex: 1; min-height: 0; overflow: auto; }
.modal__body iframe { width: 100%; height: 100%; border: 0; display: block; }
.widget-ph { padding: 44px 26px; text-align: center; }
.widget-ph svg { width: 52px; height: 52px; color: var(--gold); opacity: .6; margin-bottom: 14px; }
.widget-ph p { color: var(--cream-dim); margin: .3rem 0; }
.widget-ph code { color: var(--gold-bright); font-size: .85em; }
