﻿:root {
  --green: #2f4934;
  --green-dark: #1b2d20;
  --moss: #6f7f4e;
  --clay: #b64f33;
  --gold: #d4b16a;
  --cream: #f7f0e4;
  --paper: #fffaf1;
  --ink: #231d17;
  --muted: #766b60;
  --line: rgba(35, 29, 23, 0.14);
  --shadow: 0 24px 80px rgba(29, 24, 17, 0.22);
  --radius: 8px;
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}
/* Anchor offset for fixed header */
section[id] {
  scroll-margin-top: 255px;
}

@media (max-width: 760px) {
  section[id] {
    scroll-margin-top: 190px;
  }
}

body {
  margin: 0;
  overflow-x: clip;
  background: var(--cream);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

body.nav-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: grid;
  grid-template-columns: minmax(110px, 1fr) auto minmax(110px, 1fr);
  align-items: center;
  gap: 20px;
  padding: 12px clamp(18px, 4vw, 56px);
  color: #fff;
  transition: background 180ms ease, box-shadow 180ms ease, padding 180ms ease;
}

.site-header.is-scrolled {
  border-bottom: 1px solid rgba(255, 255, 255, 0.24);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18), 0 14px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(12px) saturate(130%);
  -webkit-backdrop-filter: blur(12px) saturate(130%);
}

.brand {
  grid-column: 2;
  justify-self: center;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border: 1px solid rgba(212, 177, 106, 0.72);
  border-radius: 50%;
  color: var(--gold);
  font-family: Georgia, serif;
  font-size: 1.02rem;
  font-weight: 700;
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.75rem;
}

.site-nav {
  position: relative;
  grid-column: 1;
  justify-self: start;
  font-size: 0.95rem;
  font-weight: 700;
}

.nav-menu-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 98px;
  height: 44px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.13);
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.9rem;
  font-weight: 900;
  cursor: pointer;
  backdrop-filter: blur(10px);
}

.nav-menu-list {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  z-index: 20;
  display: grid;
  min-width: 190px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(27, 45, 32, 0.96);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.24);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.site-nav.is-open .nav-menu-list {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.nav-menu-list a {
  display: flex;
  align-items: center;
  min-height: 40px;
  padding: 0 12px;
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.9);
}


.language-switcher {
  position: relative;
  grid-column: 3;
  justify-self: end;
  display: inline-block;
}

.language-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 82px;
  height: 44px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.13);
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.82rem;
  font-weight: 900;
  cursor: pointer;
  backdrop-filter: blur(10px);
}

.language-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  z-index: 20;
  display: grid;
  min-width: 86px;
  padding: 6px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(27, 45, 32, 0.96);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.24);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.language-switcher.is-open .language-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.language-menu button {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 12px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.78rem;
  font-weight: 900;
  cursor: pointer;
}

.language-menu button[aria-pressed="true"] {
  background: var(--gold);
  color: var(--green-dark);
}

.language-toggle:focus-visible,

.site-nav,
.language-switcher {
  align-self: center;
}

.nav-menu-button,
.language-toggle {
  line-height: 1;
}.language-menu button:focus-visible {
  outline: 3px solid rgba(212, 177, 106, 0.48);
  outline-offset: 3px;
}

.nav-menu-button:hover,
.nav-menu-button:focus-visible,
.nav-menu-list a:hover,
.nav-menu-list a:focus-visible,
.site-nav a:hover,
.site-nav a:focus-visible {
  color: #fff;
}

.nav-cta,
.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid transparent;
  padding: 0 24px;
  font-weight: 800;
  cursor: pointer;
}

.nav-cta {
  background: var(--clay);
  color: #fff !important;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  cursor: pointer;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 94svh;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: #fff;
  text-align: center;
}

.hero-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: #21160f url("../../../images/hero-salas-video-poster.jpg?v=20260728-23") center / cover no-repeat;
  transform: scale(1.02);
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(rgba(16, 22, 16, 0.36), rgba(16, 22, 16, 0.64));
  pointer-events: none;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(940px, calc(100% - 32px));
  padding: 132px 0 90px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero h1,
.section h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  line-height: 0.98;
}

.hero h1 {
  font-size: clamp(3.2rem, 8vw, 7.4rem);
  text-wrap: balance;
}

.hero-text {
  width: min(900px, 100%);
  margin: 24px auto 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1rem, 1.7vw, 1.2rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 34px;
}

.button {
  min-width: 158px;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--gold);
  color: var(--green-dark);
  box-shadow: 0 14px 30px rgba(212, 177, 106, 0.24);
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.52);
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
}

.button-ghost.dark {
  border-color: var(--line);
  color: var(--green-dark);
  background: #fff;
}

.status-pill,
.music-status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(10px);
  font-weight: 800;
}

.status-pill {
  margin-top: 26px;
  padding: 12px 18px;
  min-height: 48px;
}

.music-status {
  width: auto;
  max-width: 100%;
  min-height: 48px;
  margin-top: 26px;
  margin-left: 10px;
  padding: 12px 18px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  vertical-align: top;
}


.music-status[hidden] {
  display: none !important;
}

.music-status > span:first-child {
  display: grid;
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  place-items: center;
  border-radius: 50%;
  background: rgba(212, 177, 106, 0.2);
  color: var(--gold);
  font-weight: 900;
}

.music-status.is-live > span:first-child {
  background: rgba(72, 212, 108, 0.18);
  color: #7bff9a;
}

.music-status.is-live > span:first-child {
  animation: musicNotePulse 1.35s ease-in-out infinite;
  box-shadow: 0 0 0 0 rgba(123, 255, 154, 0.38);
  transform-origin: center;
}

@keyframes musicNotePulse {
  0%, 100% {
    transform: translateY(0) scale(1);
    box-shadow: 0 0 0 0 rgba(123, 255, 154, 0.34);
  }
  38% {
    transform: translateY(-4px) scale(1.08);
    box-shadow: 0 0 0 7px rgba(123, 255, 154, 0.12);
  }
  62% {
    transform: translateY(1px) scale(0.98);
    box-shadow: 0 0 0 11px rgba(123, 255, 154, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .music-status.is-live > span:first-child {
    animation: none;
  }
}

.status-pill > span:first-child {
  width: 10px;
  height: 10px;
  flex: 0 0 10px;
  border-radius: 50%;
  background: #48d46c;
  box-shadow: 0 0 0 6px rgba(72, 212, 108, 0.16);
}

.status-pill.is-open > span:first-child {
  animation: statusPulse 1.6s ease-out infinite;
}

.status-pill > span:last-child {
  min-width: 0;
}

.status-pill.is-closed > span:first-child {
  background: #ffb44c;
  box-shadow: 0 0 0 6px rgba(255, 180, 76, 0.18);
  animation: none;
}

@keyframes statusPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(72, 212, 108, 0.45);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(72, 212, 108, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(72, 212, 108, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .status-pill.is-open > span:first-child {
    animation: none;
  }
}

.section {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(70px, 9vw, 118px) 0;
}

.section-copy {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(260px, 1.15fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

.section-copy.narrow {
  display: block;
  width: min(720px, 100%);
}

.section h2 {
  font-size: clamp(2.4rem, 5vw, 4.7rem);
}

.section-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.08rem;
}

.about-text {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.about-text p {
  margin: 0;
  line-height: 1.75;
}

.intro-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 42px;
}

.intro-grid article,
.menu-card,
.notice,
.contact-panel,
.map-panel,
.reservation-form {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.intro-grid article {
  padding: 26px;
}

.intro-grid h3,
.menu-card h3,
.notice h3,
.cookie-dialog h3 {
  margin: 0 0 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.42rem;
}

.intro-grid p,
.menu-card p,
.notice p {
  margin: 0;
  color: var(--muted);
}

.menu-section,
.hours-section,
.work-section,
.legal-section {
  border-top: 1px solid var(--line);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.menu-card {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 20px;
  padding: 24px;
}

.menu-card strong {
  flex: 0 0 auto;
  color: var(--clay);
  font-size: 1.12rem;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: 220px;
  gap: 16px;
  margin-top: 34px;
}

.gallery-item {
  position: relative;
  margin: 0;
  min-height: 220px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--green);
}

.gallery-item-large {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-card {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  color: #fff;
  cursor: pointer;
  overflow: hidden;
}

.gallery-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(16, 22, 16, 0.74));
  opacity: 0.95;
  transition: opacity 160ms ease;
}

.gallery-card:hover::after,
.gallery-card:focus-visible::after {
  opacity: 1;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 240ms ease;
}

.gallery-card:hover img,
.gallery-card:focus-visible img {
  transform: scale(1.04);
}

.gallery-card span {
  position: absolute;
  right: 18px;
  bottom: 16px;
  left: 18px;
  z-index: 1;
  font-family: Georgia, serif;
  font-size: clamp(1rem, 2.1vw, 1.75rem);
  font-weight: 700;
  line-height: 1.08;
  text-align: left;
  white-space: nowrap;
}
.hours-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 1.1fr);
  gap: 18px;
  margin-top: 34px;
}

.hours-layout-single {
  grid-template-columns: minmax(0, 760px);
}

.contact-layout,
.reservation-layout {
  margin-top: 34px;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(320px, 1.2fr);
  gap: 18px;
}

.reservation-layout {
  max-width: 760px;
}

.hours-list {
  display: grid;
  gap: 2px;
}

.hours-list p {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin: 0;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.notice {
  padding: 28px;
  background: var(--green);
  color: #fff;
}

.notice p {
  color: rgba(255, 255, 255, 0.82);
}

.work-section .section-copy {
  padding: 28px;
  background: var(--green);
  color: #fff;
}

.work-section .eyebrow,
.work-section p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.82);
}

.contact-panel,
.reservation-form {
  padding: 28px;
}

.contact-panel {
  display: grid;
  gap: 18px;
  font-style: normal;
}

.contact-panel p {
  margin: 0;
}

.contact-panel span {
  display: block;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 800;
  text-transform: uppercase;
}
.contact-panel a,
.contact-panel strong {
  overflow-wrap: anywhere;
}

.contact-address strong {
  display: block;
  line-height: 1.6;
}

.map-column {
  display: grid;
  gap: 14px;
}

.map-panel {
  min-height: 330px;
  overflow: hidden;
}

.map-panel iframe {
  width: 100%;
  height: 100%;
  min-height: 330px;
  border: 0;
}

.map-actions {
  display: flex;
  justify-content: center;
}

.map-button {
  min-width: 180px;
  text-transform: uppercase;
}

.reservation-form,
.reservation-form label {
  display: grid;
  gap: 9px;
}

.reservation-form {
  gap: 16px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  padding: 13px 14px;
}

input:focus,
textarea:focus,
button:focus-visible,
a:focus-visible {
  outline: 3px solid rgba(212, 177, 106, 0.48);
  outline-offset: 3px;
}

textarea {
  resize: vertical;
}

.check-row {
  grid-template-columns: 20px 1fr;
  align-items: start;
  color: var(--muted);
  font-size: 0.94rem;
}

.check-row input {
  margin-top: 3px;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.text-button {
  display: inline-flex;
  margin-top: 14px;
  border: 0;
  background: transparent;
  color: var(--clay);
  font-weight: 900;
  padding: 0;
  cursor: pointer;
}

.site-footer {
  background: var(--green-dark);
  color: rgba(255, 255, 255, 0.82);
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.8fr);
  gap: clamp(48px, 8vw, 112px);
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 56px 0 36px;
}

.footer-left {
  display: grid;
  justify-items: start;
  gap: 28px;
}

.footer-brand {
  color: #fff;
}

.footer-social-title {
  margin: 0 0 -10px;
  color: #fff;
  font-family: Georgia, serif;
  font-size: 20px;
  letter-spacing: 0;
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.88);
  transition: border-color 160ms ease, background 160ms ease, color 160ms ease;
}

.social-link:hover,
.social-link:focus-visible {
  border-color: rgba(212, 177, 106, 0.72);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.social-icon {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border: 1px solid rgba(212, 177, 106, 0.64);
  border-radius: 50%;
  color: var(--gold);
  font-size: 11px;
  font-weight: 900;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  font-size: 14px;
}

.footer-legal p {
  margin: 0;
}

.footer-legal a,
.footer-partners a {
  text-decoration: underline;
  text-decoration-color: rgba(212, 177, 106, 0.45);
  text-underline-offset: 4px;
}

.footer-partners {
  justify-self: end;
  width: min(100%, 320px);
}

.footer-partners h2 {
  margin: 0 0 18px;
  color: #fff;
  font-family: Georgia, serif;
  font-size: 20px;
  letter-spacing: 0;
}

.footer-partners ul {
  display: grid;
  gap: 11px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.partner-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
  text-decoration-color: transparent;
  transition: border-color 160ms ease, background 160ms ease, color 160ms ease;
}

.partner-logo {
  display: grid;
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(212, 177, 106, 0.64);
  border-radius: 8px;
  background: rgba(212, 177, 106, 0.1);
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 900;
  line-height: 1;
}

.partner-link span:last-child {
  line-height: 1.3;
}

.partner-link:hover,
.partner-link:focus-visible {
  border-color: rgba(212, 177, 106, 0.72);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.footer-legal a:hover,
.footer-legal a:focus-visible {
  color: var(--gold);
}


.scroll-top-button {
  position: fixed;
  right: clamp(14px, 2.2vw, 26px);
  bottom: clamp(16px, 2.4vw, 28px);
  z-index: 19;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(212, 177, 106, 0.62);
  border-radius: 50%;
  background: rgba(255, 250, 241, 0.82);
  color: #3c261b;
  box-shadow: 0 18px 45px rgba(29, 24, 17, 0.18);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(14px) scale(0.96);
  transition: opacity 180ms ease, transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.scroll-top-button.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.scroll-top-button:hover,
.scroll-top-button:focus-visible {
  border-color: rgba(212, 177, 106, 0.95);
  background: #3c261b;
  color: var(--gold);
}

.scroll-top-button:focus-visible {
  outline: 3px solid rgba(212, 177, 106, 0.36);
  outline-offset: 3px;
}
.cookie-banner {
  position: fixed;
  right: 18px;
  bottom: 18px;
  left: 18px;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: min(980px, calc(100% - 36px));
  margin: 0 auto;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 250, 241, 0.96);
  box-shadow: var(--shadow);
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner h2,
.cookie-banner p {
  margin: 0;
}

.cookie-banner h2,
.cookie-dialog h2 {
  font-family: Georgia, serif;
}

.cookie-banner p {
  color: var(--muted);
}

.cookie-actions,
.dialog-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.cookie-dialog {
  width: min(650px, calc(100% - 32px));
  border: 0;
  border-radius: var(--radius);
  padding: 0;
  background: var(--paper);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.lightbox {
  width: min(1060px, calc(100% - 32px));
  border: 0;
  border-radius: var(--radius);
  padding: 0;
  background: #141710;
  color: #fff;
  box-shadow: var(--shadow);
}

.lightbox::backdrop {
  background: rgba(18, 20, 16, 0.78);
}

.lightbox figure {
  margin: 0;
}

.lightbox img {
  width: 100%;
  max-height: min(74vh, 760px);
  object-fit: contain;
  background: #0d0f0b;
}

.lightbox figcaption {
  padding: 16px 20px 20px;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 800;
}

.lightbox-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
}
.cookie-dialog::backdrop {
  background: rgba(18, 20, 16, 0.58);
}

.cookie-dialog form {
  padding: 24px;
}

.dialog-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.dialog-head h2 {
  margin: 0;
  font-size: 2rem;
}

.icon-button {
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
  font-size: 1.6rem;
  line-height: 1;
}

.cookie-option {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: center;
  margin-top: 16px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
}

.cookie-option p {
  margin: 0;
  color: var(--muted);
}

.cookie-option input {
  width: 22px;
  height: 22px;
}

@media (max-width: 900px) {
  .nav-toggle {
    display: block;
  }

  .site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: grid;
  grid-template-columns: minmax(110px, 1fr) auto minmax(110px, 1fr);
  align-items: center;
  gap: 20px;
  padding: 12px clamp(18px, 4vw, 56px);
  color: #fff;
  transition: background 180ms ease, box-shadow 180ms ease, padding 180ms ease;
}

  .site-nav {
    position: fixed;
    inset: 82px 18px auto;
    display: grid;
    gap: 6px;
    padding: 18px;
    border-radius: var(--radius);
    background: rgba(27, 45, 32, 0.98);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 160ms ease, transform 160ms ease;
  }

  .site-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav a {
    padding: 12px 10px;
  }

  .section-copy,
  .intro-grid,
  .menu-grid,
  .hours-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .about-article-photos {
    grid-template-columns: 1fr;
    margin-top: 24px;
  }

  .about-article-photo,
  .about-article-photo img {
    min-height: 220px;
  }

  .gallery {
    grid-template-columns: 1fr;
    grid-auto-rows: minmax(220px, 52vw);
  }

  .gallery-item-large {
    grid-column: auto;
    grid-row: auto;
  }

  .cookie-banner {
    align-items: stretch;
    flex-direction: column;
  }

  .cookie-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 560px) {
  .brand {
  grid-column: 2;
  justify-self: center;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

  .brand small {
    display: block;
    font-size: 0.68rem;
    line-height: 1.2;
    white-space: nowrap;
  }

  .hero {
    min-height: 92svh;
  }

  .hero-content {
    padding-top: 112px;
  }

  .hero h1 {
    font-size: clamp(2.8rem, 16vw, 4.8rem);
  }

  .button,
  .hero-actions,
  .cookie-actions,
  .dialog-actions {
    width: 100%;
  }

  .button {
    min-width: 100%;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .footer-left {
    order: 2;
  }

  .footer-partners {
    order: 1;
    justify-self: stretch;
    width: 100%;
  }
}
@media (max-width: 900px) {
  .site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: grid;
  grid-template-columns: minmax(110px, 1fr) auto minmax(110px, 1fr);
  align-items: center;
  gap: 20px;
  padding: 12px clamp(18px, 4vw, 56px);
  color: #fff;
  transition: background 180ms ease, box-shadow 180ms ease, padding 180ms ease;
}

  .language-switcher {
    margin-left: auto;
    gap: 2px;
    padding: 3px;
  }

  .language-toggle {
    width: 30px;
    height: 28px;
    font-size: 0.7rem;
  }
}

@media (max-width: 420px) {
  .brand {
  grid-column: 2;
  justify-self: center;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

  .brand-mark {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border: 1px solid rgba(212, 177, 106, 0.72);
  border-radius: 50%;
  color: var(--gold);
  font-family: Georgia, serif;
  font-size: 1.02rem;
  font-weight: 700;
}

  .brand strong {
    max-width: none;
    overflow: visible;
    text-overflow: clip;
    white-space: nowrap;
  }

  .language-toggle {
    width: 27px;
    height: 26px;
  }

  .nav-toggle {
    width: 40px;
    height: 40px;
  }
}
@media (max-width: 560px) {
  .hero-content {
    width: calc(100vw - 32px);
    max-width: calc(100vw - 32px);
  }

  .hero h1,
  .hero-text,
  .eyebrow,
  .status-pill {
    overflow-wrap: anywhere;
  }
}
@media (max-width: 560px) {
  .hero-media {
    transform: none;
  }
}

@media (max-width: 360px) {
  .site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: grid;
  grid-template-columns: minmax(110px, 1fr) auto minmax(110px, 1fr);
  align-items: center;
  gap: 20px;
  padding: 12px clamp(18px, 4vw, 56px);
  color: #fff;
  transition: background 180ms ease, box-shadow 180ms ease, padding 180ms ease;
}

  .brand {
  grid-column: 2;
  justify-self: center;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

  .brand > span:last-child {
    display: none;
  }

  .language-switcher {
    gap: 1px;
    padding: 2px;
  }

  .language-toggle {
    width: 25px;
  }
}

.mobile-language-switcher {
  display: none;
}

@media (max-width: 900px) {
  .site-header > .language-switcher {
    display: none;
  }

  .site-nav {
    max-height: calc(100svh - 100px);
    overflow-y: auto;
  }

  .mobile-language-switcher {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 6px;
    margin-top: 8px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
  }

  .mobile-language-label {
    grid-column: 1 / -1;
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
  }

  .mobile-language-switcher button {
    min-width: 0;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.82);
    font-weight: 900;
    cursor: pointer;
  }

  .mobile-language-switcher button[aria-pressed="true"] {
    border-color: var(--gold);
    background: var(--gold);
    color: var(--green-dark);
  }

  .mobile-language-switcher button:focus-visible {
    outline: 3px solid rgba(212, 177, 106, 0.48);
    outline-offset: 2px;
  }
}

@media (max-width: 360px) {
  .site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: grid;
  grid-template-columns: minmax(110px, 1fr) auto minmax(110px, 1fr);
  align-items: center;
  gap: 20px;
  padding: 12px clamp(18px, 4vw, 56px);
  color: #fff;
  transition: background 180ms ease, box-shadow 180ms ease, padding 180ms ease;
}

  .brand {
  grid-column: 2;
  justify-self: center;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

  .brand > span:last-child {
    display: block;
  }
}
@media (max-width: 560px) {
  .hero-location {
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    text-align: center;
  }

  .hero-location span {
    display: block;
    max-width: 100%;
    text-align: center;
    white-space: normal;
  }

  .hero-location .hero-location-separator {
    display: none;
  }
}
@media (max-width: 560px) {
  .site-header {
    grid-template-columns: 44px 1fr 44px;
    gap: 8px;
    padding-inline: 12px;
  }

  .brand {
    grid-column: 2;
  }

  .brand-mark {
    width: 48px;
    height: 48px;
  }

  .site-nav {
    grid-column: 1 / -1;
  }

  .nav-menu-button {
    display: none;
  }

  .nav-menu-list {
    position: static;
    display: grid;
    min-width: 0;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .nav-menu-list a {
    min-height: auto;
    padding: 12px 10px;
  }
}
@media (min-width: 561px) and (max-width: 900px) {
  .site-header {
    display: grid;
    grid-template-columns: minmax(110px, 1fr) auto minmax(110px, 1fr);
    align-items: center;
    gap: 20px;
    padding: 12px clamp(18px, 4vw, 56px);
  }

  .nav-toggle {
    display: none;
  }

  .brand {
    grid-column: 2;
    justify-self: center;
    min-width: 0;
  }

  .brand-mark {
    width: 52px;
  height: 52px;
  }

  .site-nav {
    position: relative;
    inset: auto;
    grid-column: 1;
    justify-self: start;
    display: block;
    padding: 0;
    border-radius: 0;
    background: transparent;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .nav-menu-button {
    display: inline-flex;
  }

  .nav-menu-list {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    display: grid;
    min-width: 190px;
    padding: 8px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 8px;
    background: rgba(27, 45, 32, 0.96);
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.24);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-6px);
  }

  .site-nav.is-open .nav-menu-list {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-menu-list a {
    min-height: 40px;
    padding: 0 12px;
  }

  .site-header > .language-switcher {
    display: inline-block;
    grid-column: 3;
    justify-self: end;
  }

  .mobile-language-switcher {
    display: none;
  }
}
@media (min-width: 561px) {
  .site-header {
    align-items: center;
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .site-nav,
  .language-switcher,
  .brand {
    align-self: center;
  }

  .brand-mark {
    width: 52px;
    height: 52px;
  }

  .nav-menu-button,
  .language-toggle {
    height: 44px;
    line-height: 1;
  }
}
@media (min-width: 561px) {
  .site-header .brand {
    gap: 18px;
  }

  .site-header .brand-mark {
    width: 208px;
    height: 208px;
    font-size: 4.08rem;
  }

  .site-header .brand strong {
    font-size: 3.6rem;
    line-height: 1.05;
  }

  .site-header .brand small {
    font-size: 1.6rem;
  }
}
@media (min-width: 561px) {
  .site-nav,
  .language-switcher {
    align-self: center;
    transform: none;
  }

  .nav-menu-list,
  .language-menu {
    transform: translateY(-6px);
  }

  .site-nav.is-open .nav-menu-list,
  .language-switcher.is-open .language-menu {
    transform: translateY(0);
  }
}
@media (min-width: 561px) {
  .hero h1 {
    max-width: 920px;
    margin-inline: auto;
    line-height: 0.95;
  }
}
@media (min-width: 561px) {
  .hero-content {
    padding-top: clamp(240px, 22vw, 310px);
  }
}
.site-header .brand {
  padding: 6px 14px 6px 8px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: transparent;
  box-shadow: none;
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease, backdrop-filter 180ms ease;
}

.site-header.is-scrolled .brand {
  border-color: transparent;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.site-header.is-scrolled .brand strong,
.site-header.is-scrolled .brand small {
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.34);
}

.site-header.is-scrolled .brand-logo {
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.24));
}
/* Glass menu override */
.nav-menu-button {
  min-width: 54px;
  width: 54px;
  padding: 0;
}

.menu-icon {
  display: grid;
  width: 22px;
  gap: 5px;
}

.menu-icon span {
  display: block;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.site-nav .nav-menu-list {
  border-color: rgba(255, 255, 255, 0.32);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.52));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.46), 0 20px 44px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(18px) saturate(135%);
}

.site-nav .nav-menu-list a {
  color: rgba(27, 45, 32, 0.9);
}

.site-nav .nav-menu-list a:hover,
.site-nav .nav-menu-list a:focus-visible {
  background: rgba(255, 255, 255, 0.36);
  color: var(--green-dark);
}

.site-nav .nav-menu-list .nav-cta {
  color: #fff !important;
}

@media (max-width: 900px) {
  .site-nav {
    border: 1px solid rgba(255, 255, 255, 0.28);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.56));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.42), 0 22px 48px rgba(0, 0, 0, 0.22);
    backdrop-filter: blur(20px) saturate(135%);
  }

  .mobile-language-label {
    color: rgba(27, 45, 32, 0.68);
  }

  .mobile-language-switcher {
    border-top-color: rgba(27, 45, 32, 0.16);
  }

  .mobile-language-switcher button {
    border-color: rgba(27, 45, 32, 0.16);
    background: rgba(255, 255, 255, 0.34);
    color: rgba(27, 45, 32, 0.82);
  }
}

@media (max-width: 560px) {
  .site-nav .nav-menu-list {
    border: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
  }
}
/* Glass language override */
.language-toggle {
  min-width: 54px;
  width: 54px;
  padding: 0;
  border-color: rgba(255, 255, 255, 0.28);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18), 0 14px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(12px) saturate(130%);
}

.language-icon {
  display: grid;
  width: 23px;
  height: 23px;
  place-items: center;
}

.language-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.language-menu {
  border-color: rgba(255, 255, 255, 0.32);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.52));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.46), 0 20px 44px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(18px) saturate(135%);
}

.language-menu button {
  color: rgba(27, 45, 32, 0.86);
}

.language-menu button:hover,
.language-menu button:focus-visible {
  background: rgba(255, 255, 255, 0.36);
  color: var(--green-dark);
}

.language-menu button[aria-pressed="true"] {
  background: var(--gold);
  color: var(--green-dark);
}
/* Brand image logo override */
.brand-mark {
  width: 92px;
  height: 54px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--gold);
  font-size: 0;
  overflow: visible;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.18));
}

.footer-brand .brand-mark {
  width: 96px;
  height: 55px;
}

@media (min-width: 561px) {
  .site-header .brand-mark {
    width: clamp(170px, 16vw, 260px);
    height: clamp(96px, 9.1vw, 148px);
    font-size: 0;
  }
}

@media (max-width: 560px) {
  .site-header .brand-mark {
    width: 76px;
    height: 44px;
  }

  .footer-brand .brand-mark {
    width: 90px;
    height: 52px;
  }
}
/* Direct brand logo override */
.brand-logo {
  display: block;
  width: 92px;
  height: 54px;
  object-fit: contain;
  border: 0;
  border-radius: 0;
  background: transparent;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.18));
}

.footer-brand .brand-logo {
  width: 96px;
  height: 55px;
}

@media (min-width: 561px) {
  .site-header .brand-logo {
    width: clamp(170px, 16vw, 260px);
    height: clamp(96px, 9.1vw, 148px);
  }
}

@media (max-width: 560px) {
  .site-header .brand-logo {
    width: 76px;
    height: 44px;
  }

  .footer-brand .brand-logo {
    width: 90px;
    height: 52px;
  }
}
/* Brand text gold override */
.brand strong,
.brand small {
  color: var(--gold);
}

.brand small {
  opacity: 0.82;
}

.site-header.is-scrolled .brand strong,
.site-header.is-scrolled .brand small {
  color: var(--gold);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.34);
}
/* About read more override */
.about-more {
  display: grid;
  gap: 14px;
}

.about-more summary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid rgba(35, 29, 23, 0.16);
  border-radius: 999px;
  background: rgba(255, 250, 241, 0.78);
  color: var(--green-dark);
  font-weight: 900;
  cursor: pointer;
  list-style: none;
  box-shadow: 0 10px 24px rgba(29, 24, 17, 0.08);
}

.about-more summary::-webkit-details-marker {
  display: none;
}

.about-more summary::after {
  content: "+";
  margin-left: 10px;
  color: var(--clay);
  font-size: 1.05rem;
  line-height: 1;
}

.about-more[open] summary::after {
  content: "-";
}

.about-more summary:hover,
.about-more summary:focus-visible {
  border-color: rgba(182, 79, 51, 0.28);
  background: var(--paper);
  outline: none;
}

.about-more-content {
  display: grid;
  gap: 14px;
}
/* Gold buttons override */
.button,
.nav-cta,
.text-button,
.icon-button,
.nav-toggle,
.nav-menu-button,
.language-toggle,
.mobile-language-switcher button,
.language-menu button,
.about-more summary {
  border-color: rgba(212, 177, 106, 0.62);
  background: linear-gradient(135deg, rgba(212, 177, 106, 0.96), rgba(238, 208, 136, 0.86));
  color: var(--green-dark) !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.34), 0 14px 30px rgba(91, 68, 24, 0.18);
}

.button-ghost,
.button-ghost.dark,
.text-button {
  border: 1px solid rgba(212, 177, 106, 0.62);
  padding-inline: 24px;
  min-height: 48px;
  border-radius: 999px;
  backdrop-filter: blur(10px) saturate(125%);
  -webkit-backdrop-filter: blur(10px) saturate(125%);
}

.text-button {
  align-items: center;
  justify-content: center;
  width: fit-content;
}

.nav-toggle span:not(.sr-only),
.menu-icon span {
  background: currentColor;
}

.language-icon svg {
  stroke: currentColor;
}

.button:hover,
.nav-cta:hover,
.text-button:hover,
.icon-button:hover,
.nav-toggle:hover,
.nav-menu-button:hover,
.language-toggle:hover,
.mobile-language-switcher button:hover,
.language-menu button:hover,
.about-more summary:hover,
.button:focus-visible,
.nav-cta:focus-visible,
.text-button:focus-visible,
.icon-button:focus-visible,
.nav-toggle:focus-visible,
.nav-menu-button:focus-visible,
.language-toggle:focus-visible,
.mobile-language-switcher button:focus-visible,
.language-menu button:focus-visible,
.about-more summary:focus-visible {
  border-color: rgba(238, 208, 136, 0.88);
  background: linear-gradient(135deg, rgba(238, 208, 136, 1), rgba(212, 177, 106, 0.92));
  color: var(--green-dark) !important;
}

.language-menu button[aria-pressed="true"],
.mobile-language-switcher button[aria-pressed="true"] {
  border-color: rgba(27, 45, 32, 0.28);
  background: var(--green-dark);
  color: var(--gold) !important;
}

.site-nav .nav-menu-list .nav-cta {
  color: var(--green-dark) !important;
}
/* Footer desktop order override */
.footer-inner {
  grid-template-columns: 1fr;
  gap: 34px;
  padding-top: 54px;
}

.footer-logo-block,
.footer-follow,
.footer-partners,
.footer-legal {
  width: 100%;
}

.footer-logo-block {
  display: grid;
  justify-items: start;
  order: 1;
}

.footer-brand {
  grid-column: auto;
  justify-self: start;
  margin-right: auto;
}

.footer-follow {
  display: grid;
  justify-items: start;
  gap: 12px;
  order: 2;
}

.footer-social-title {
  margin: 0;
}

.footer-separator {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.14);
}

.footer-separator-social {
  order: 3;
}

.footer-partners {
  justify-self: stretch;
  width: 100%;
  order: 4;
}

.footer-partners ul {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.partner-link {
  height: 100%;
  align-items: flex-start;
}

.footer-separator-partners {
  order: 5;
}

.footer-legal {
  order: 6;
  justify-content: flex-start;
  text-align: left;
  color: rgba(255, 255, 255, 0.72);
}

@media (max-width: 900px) {
  .footer-partners ul {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .footer-partners ul {
    grid-template-columns: 1fr;
  }

  .footer-logo-block,
  .footer-follow,
  .footer-bottom {
    justify-items: start;
  }
}
/* Full width reservation override */
.reservation-section .section-copy.narrow {
  width: min(920px, 100%);
}

.reservation-layout {
  width: 100%;
  max-width: none;
}

.reservation-form {
  width: 100%;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: clamp(18px, 3vw, 30px);
}

.reservation-form > label,
.reservation-form > .form-row {
  min-width: 0;
}

.reservation-form > label:nth-of-type(3),
.reservation-form > .check-row,
.reservation-form > button,
.reservation-form > .form-note {
  grid-column: 1 / -1;
}

.reservation-form .form-row {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.reservation-form textarea {
  min-height: 150px;
}

@media (max-width: 700px) {
  .reservation-form {
    grid-template-columns: 1fr;
  }

  .reservation-form .form-row {
    grid-template-columns: 1fr;
  }
}
/* Contact equal height override */
.contact-layout {
  align-items: start;
}

.contact-panel,
.map-panel {
  height: clamp(360px, 34vw, 430px);
  min-height: 0;
}

.contact-panel {
  align-content: center;
}

.map-column {
  gap: 26px;
}

.map-panel iframe {
  height: 100%;
  min-height: 0;
}

.map-actions {
  margin-top: 6px;
}

@media (max-width: 900px) {
  .contact-panel,
  .map-panel {
    height: 360px;
  }
}

@media (max-width: 560px) {
  .contact-panel,
  .map-panel {
    height: auto;
    min-height: 330px;
  }

  .map-panel iframe {
    min-height: 330px;
  }
}
/* Holidays panel override */
.hours-layout {
  align-items: start;
}

.holiday-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  padding: 28px;
}

.holiday-head h3 {
  margin: 0;
  color: var(--green-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.7rem, 3vw, 2.3rem);
}

.holiday-head p {
  margin: 10px 0 0;
  color: var(--muted);
}

.holiday-list {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.holiday-list p {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  margin: 0;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
}

.holiday-list p:last-child {
  border-bottom: 0;
}

.holiday-list span,
.holiday-list small {
  display: block;
}

.holiday-list strong {
  color: var(--green-dark);
}

.holiday-list small {
  color: var(--muted);
  line-height: 1.35;
}

.holiday-list em {
  display: inline-flex;
  min-width: 150px;
  justify-content: center;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(212, 177, 106, 0.18);
  color: var(--green-dark);
  font-size: 0.78rem;
  font-style: normal;
  font-weight: 900;
  text-align: center;
}

@media (max-width: 760px) {
  .holiday-list p {
    grid-template-columns: 1fr;
  }

  .holiday-list em {
    width: fit-content;
  }
}
/* Hours card match holidays override */
.hours-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  padding: 28px;
}

.hours-card-head h3 {
  margin: 0;
  color: var(--green-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.7rem, 3vw, 2.3rem);
}

.hours-card-head p {
  margin: 10px 0 0;
  color: var(--muted);
}

.hours-card .hours-list {
  gap: 10px;
  margin-top: 22px;
}

.hours-card .hours-list p {
  padding: 13px 0;
}

.hours-card .hours-list p:last-child {
  border-bottom: 0;
}
/* Holiday open closed override */
.holiday-list em.holiday-open {
  background: rgba(47, 73, 52, 0.14);
  color: var(--green-dark);
}

.holiday-list em.holiday-closed {
  background: rgba(182, 79, 51, 0.14);
  color: var(--clay);
}
/* Hours heading width override */
.hours-section .section-copy.narrow {
  width: 100%;
  max-width: none;
}

@media (min-width: 761px) {
  .hours-section .section-copy.narrow h2 {
    max-width: 100%;
    white-space: nowrap;
    font-size: clamp(2.4rem, 4.7vw, 4.7rem);
  }
}
/* Extra message override */
.extra-message {
  margin-top: 22px;
  padding: 18px;
  border: 1px solid rgba(212, 177, 106, 0.38);
  border-radius: var(--radius);
  background: rgba(212, 177, 106, 0.12);
}

.extra-message h4 {
  margin: 0;
  color: var(--green-dark);
  font-size: 1rem;
  font-weight: 900;
}

.extra-message p {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.55;
}
/* Equal hours panels override */
.hours-layout {
  align-items: stretch;
}

.hours-card,
.holiday-panel {
  height: clamp(560px, 52vw, 680px);
}

.hours-card,
.holiday-panel {
  display: flex;
  flex-direction: column;
}

.holiday-list {
  min-height: 0;
  overflow-y: auto;
  padding-right: 8px;
  scrollbar-color: rgba(212, 177, 106, 0.72) rgba(35, 29, 23, 0.08);
  scrollbar-width: thin;
}

.holiday-list::-webkit-scrollbar {
  width: 8px;
}

.holiday-list::-webkit-scrollbar-track {
  background: rgba(35, 29, 23, 0.08);
  border-radius: 999px;
}

.holiday-list::-webkit-scrollbar-thumb {
  background: rgba(212, 177, 106, 0.72);
  border-radius: 999px;
}

@media (max-width: 900px) {
  .hours-card,
  .holiday-panel {
    height: auto;
    max-height: none;
  }

  .holiday-list {
    max-height: 420px;
  }
}
/* Full width extra message override */
.hours-section > .extra-message {
  width: 100%;
  margin-top: 22px;
  padding: clamp(20px, 3vw, 28px);
}

.hours-section > .extra-message h4 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.45rem, 2.4vw, 2rem);
}
/* About photos override */
.intro .section-copy.narrow {
  width: 100%;
  max-width: none;
}

.intro .section-copy.narrow > h2 {
  max-width: min(1080px, 100%);
  font-size: clamp(2.25rem, 4.3vw, 4.15rem);
  line-height: 1.02;
}

.about-story {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: clamp(22px, 4vw, 48px);
  align-items: start;
  margin-top: 22px;
}

.about-story .about-text {
  margin-top: 0;
}

.about-article-photos {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.about-article-photo {
  position: relative;
  display: block;
  width: 100%;
  min-height: 250px;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: var(--radius);
  background: transparent;
  color: #fff;
  cursor: pointer;
  box-shadow: 0 18px 36px rgba(29, 24, 17, 0.16);
}

.about-article-photo img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 250px;
  object-fit: cover;
  transition: transform 240ms ease;
}

.about-article-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 42%, rgba(16, 22, 16, 0.76));
  opacity: 0.95;
  transition: opacity 160ms ease;
}

.about-article-photo:hover::after,
.about-article-photo:focus-visible::after {
  opacity: 1;
}

.about-article-photo:hover img,
.about-article-photo:focus-visible img {
  transform: scale(1.04);
}

.about-article-photo span {
  position: absolute;
  right: 18px;
  bottom: 16px;
  left: 18px;
  z-index: 1;
  color: #fff;
  font-family: Georgia, serif;
  font-size: clamp(1.2rem, 2vw, 1.72rem);
  font-weight: 700;
  line-height: 1.08;
  text-align: left;
}

.about-article-photos + .intro-grid {
  margin-top: 22px;
}

.about-history-photo {
  align-self: start;
  min-height: 280px;
  aspect-ratio: 4 / 3;
}

.about-history-photo img {
  min-height: 280px;
}

.about-photos {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  position: sticky;
  top: 110px;
}

.about-photos img {
  width: 100%;
  height: 185px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: 0 18px 36px rgba(29, 24, 17, 0.16);
}

.about-photo-feature,
.about-photo-card {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: 0 18px 36px rgba(29, 24, 17, 0.16);
}

.about-photo-feature {
  grid-column: 1 / -1;
}

.about-photo-feature img,
.about-photo-card img {
  display: block;
  box-shadow: none;
  transition: transform 240ms ease;
}

.about-photo-feature img {
  height: 250px;
}

.about-photo-feature figcaption,
.about-photo-card figcaption {
  position: absolute;
  left: 16px;
  bottom: 14px;
  padding: 8px 14px;
  border: 1px solid rgba(218, 178, 92, 0.42);
  border-radius: 999px;
  background: rgba(60, 38, 27, 0.48);
  color: #f5d891;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(8px);
}

@media (max-width: 900px) {
  .about-story {
    grid-template-columns: 1fr;
  }

  .about-photos {
    position: static;
  }
}

@media (max-width: 560px) {
  .about-photos {
    grid-template-columns: 1fr;
  }

  .about-photos img,
  .about-photo-feature img {
    height: 220px;
  }

  .about-photo-feature figcaption,
  .about-photo-card figcaption {
    left: 12px;
    bottom: 12px;
    font-size: 0.94rem;
  }
}
/* Regular hours current status override */
.hours-current-status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  max-width: 100%;
  margin-top: 16px;
  padding: 10px 14px;
  border: 1px solid rgba(212, 177, 106, 0.5);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--green-dark);
  font-weight: 800;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.55), 0 12px 24px rgba(35, 29, 23, 0.08);
}

.hours-current-status > span:first-child {
  width: 10px;
  height: 10px;
  flex: 0 0 10px;
  border-radius: 50%;
  background: #48d46c;
  box-shadow: 0 0 0 6px rgba(72, 212, 108, 0.16);
}

.hours-current-status.is-open > span:first-child {
  animation: statusPulse 1.6s ease-out infinite;
}

.hours-current-status.is-closed > span:first-child {
  background: #ffb44c;
  box-shadow: 0 0 0 6px rgba(255, 180, 76, 0.18);
  animation: none;
}

.hours-card .hours-list p.is-today {
  padding: 13px 14px;
  border: 1px solid rgba(212, 177, 106, 0.58);
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(212, 177, 106, 0.22), rgba(255, 255, 255, 0.72));
  box-shadow: 0 12px 24px rgba(35, 29, 23, 0.08);
}

.hours-card .hours-list p.is-today span,
.hours-card .hours-list p.is-today strong {
  color: var(--green-dark);
}

@media (prefers-reduced-motion: reduce) {
  .hours-current-status.is-open > span:first-child {
    animation: none;
  }
}
/* Brown footer readability override */
.site-footer {
  background:
    linear-gradient(135deg, rgba(255, 248, 221, 0.08), rgba(33, 21, 13, 0.18)),
    linear-gradient(180deg, #5a3824 0%, #3c261b 58%, #2a1b14 100%);
  color: rgba(255, 248, 225, 0.88);
  border-top: 1px solid rgba(212, 177, 106, 0.28);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.site-footer a {
  color: #fff3d0;
}

.site-footer .footer-inner {
  color: rgba(255, 248, 225, 0.88);
}

.site-footer .footer-brand {
  color: #fff3d0;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(212, 177, 106, 0.28);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 16px 34px rgba(0, 0, 0, 0.16);
}

.site-footer .footer-brand .brand-logo {
  filter: drop-shadow(0 8px 14px rgba(0, 0, 0, 0.28));
}

.site-footer .footer-brand strong,
.site-footer .footer-brand small,
.site-footer .footer-social-title,
.site-footer .footer-partners h2 {
  color: #f5d990;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.22);
}

.site-footer .footer-social-title,
.site-footer .footer-partners h2 {
  font-weight: 800;
}

.site-footer .social-link,
.site-footer .partner-link {
  color: #fff3d0;
  border-color: rgba(245, 217, 144, 0.24);
  background: rgba(255, 255, 255, 0.07);
  text-decoration: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.site-footer .social-link:hover,
.site-footer .social-link:focus-visible,
.site-footer .partner-link:hover,
.site-footer .partner-link:focus-visible {
  color: #fff8df;
  border-color: rgba(245, 217, 144, 0.54);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), 0 12px 24px rgba(0, 0, 0, 0.14);
  outline: none;
}

.site-footer .social-icon,
.site-footer .partner-logo {
  color: #2a1b14;
  border-color: rgba(245, 217, 144, 0.5);
  background: #f5d990;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.34);
}

.site-footer .footer-separator {
  background: rgba(245, 217, 144, 0.24);
}

.site-footer .footer-legal {
  color: rgba(255, 248, 225, 0.78);
}

.site-footer .footer-legal p {
  color: rgba(255, 248, 225, 0.78);
}

.site-footer .footer-legal a {
  color: #f5d990;
  font-weight: 800;
  text-decoration-color: rgba(245, 217, 144, 0.46);
}

.site-footer .footer-legal a:hover,
.site-footer .footer-legal a:focus-visible {
  color: #fff8df;
  text-decoration-color: #fff8df;
  outline: none;
}

@media (max-width: 560px) {
  .site-footer .footer-brand {
    width: 100%;
    justify-content: flex-start;
  }

  .site-footer .social-link,
  .site-footer .partner-link {
    width: 100%;
  }
}
/* Footer logo no background override */
.site-footer .footer-brand {
  background: transparent;
  border-color: transparent;
  box-shadow: none;
  padding-left: 0;
  padding-right: 0;
}

.site-footer .footer-brand:hover,
.site-footer .footer-brand:focus-visible {
  background: transparent;
  border-color: transparent;
  box-shadow: none;
}
/* Taller hours panels override */
.hours-card,
.holiday-panel {
  height: clamp(640px, 58vw, 780px);
}

.hours-card .hours-list {
  min-height: 0;
  overflow-y: auto;
  padding-right: 6px;
  scrollbar-color: rgba(212, 177, 106, 0.72) rgba(35, 29, 23, 0.08);
  scrollbar-width: thin;
}

.hours-card .hours-list::-webkit-scrollbar {
  width: 8px;
}

.hours-card .hours-list::-webkit-scrollbar-track {
  background: rgba(35, 29, 23, 0.08);
  border-radius: 999px;
}

.hours-card .hours-list::-webkit-scrollbar-thumb {
  background: rgba(212, 177, 106, 0.72);
  border-radius: 999px;
}

.hours-card .hours-list p.is-today {
  padding: 12px 14px;
  margin-block: 1px;
}

@media (max-width: 900px) {
  .hours-card,
  .holiday-panel {
    height: auto;
  }

  .hours-card .hours-list {
    max-height: none;
    overflow-y: visible;
    padding-right: 0;
  }
}
/* Hero title two-line override */
.hero h1 {
  max-width: min(1080px, calc(100vw - 32px));
  font-size: clamp(3rem, 6.6vw, 6.4rem);
  line-height: 0.98;
  overflow-wrap: normal;
  word-break: normal;
}

@media (max-width: 560px) {
  .hero h1 {
    font-size: clamp(2.25rem, 11.2vw, 3.85rem);
    line-height: 1.02;
  }
}
/* Header internal login override */
.header-actions {
  grid-column: 3;
  justify-self: end;
  align-self: center;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.header-actions .language-switcher {
  grid-column: auto;
  justify-self: auto;
}

.internal-login-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 54px;
  width: 54px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1));
  color: var(--gold);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18), 0 14px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(12px) saturate(130%);
  -webkit-backdrop-filter: blur(12px) saturate(130%);
  text-decoration: none;
  transition: border-color 180ms ease, background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.internal-login-link svg,
.login-icon svg {
  width: 22px;
  height: 22px;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.internal-login-link:hover,
.internal-login-link:focus-visible {
  border-color: rgba(238, 208, 136, 0.88);
  background: linear-gradient(135deg, rgba(238, 208, 136, 1), rgba(212, 177, 106, 0.92));
  color: var(--green-dark);
  outline: none;
}

@media (max-width: 900px) {
  .site-header > .header-actions .language-switcher {
    display: none;
  }
}

@media (min-width: 561px) and (max-width: 900px) {
  .site-header > .header-actions .language-switcher {
    display: inline-block;
  }
}

@media (max-width: 560px) {
  .header-actions {
    gap: 6px;
  }

  .internal-login-link {
    min-width: 40px;
    width: 40px;
    height: 40px;
  }

  .internal-login-link svg,
  .login-icon svg {
    width: 19px;
    height: 19px;
  }
}
/* Header login match language final override */
.internal-login-link {
  border-color: rgba(212, 177, 106, 0.62);
  background: linear-gradient(135deg, rgba(212, 177, 106, 0.96), rgba(238, 208, 136, 0.86));
  color: var(--green-dark) !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.34), 0 14px 30px rgba(91, 68, 24, 0.18);
}

.internal-login-link:hover,
.internal-login-link:focus-visible {
  border-color: rgba(238, 208, 136, 0.88);
  background: linear-gradient(135deg, rgba(238, 208, 136, 1), rgba(212, 177, 106, 0.92));
  color: var(--green-dark) !important;
}
/* Mobile centered hamburger login override */
.mobile-login-link {
  display: none;
}

@media (max-width: 560px) {
  .site-header .header-actions > .internal-login-link {
    display: none;
  }

  .site-nav {
    position: fixed;
    top: 92px;
    left: 50%;
    right: auto;
    bottom: auto;
    width: min(360px, calc(100vw - 32px));
    grid-column: auto;
    justify-self: auto;
    padding: 18px;
    transform: translate(-50%, -12px);
  }

  .site-nav.is-open {
    transform: translate(-50%, 0);
  }

  .site-nav .nav-menu-list {
    justify-items: stretch;
    text-align: center;
    gap: 8px;
  }

  .site-nav .nav-menu-list a {
    justify-content: center;
  }

  .mobile-login-link {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 44px;
    margin-top: 4px;
    border: 1px solid rgba(212, 177, 106, 0.62);
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(212, 177, 106, 0.96), rgba(238, 208, 136, 0.86));
    color: var(--green-dark) !important;
    font-weight: 900;
    text-decoration: none;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.34), 0 12px 24px rgba(91, 68, 24, 0.14);
  }

  .mobile-login-link .login-icon svg {
    width: 19px;
    height: 19px;
  }

  .mobile-language-switcher {
    text-align: center;
  }
}
/* Mobile hamburger left alignment override */
@media (max-width: 560px) {
  .site-header {
    grid-template-columns: 44px 1fr 44px;
  }

  .nav-toggle {
    grid-column: 1;
    grid-row: 1;
    justify-self: start;
    display: grid;
    place-content: center;
  }

  .site-header > .brand {
    grid-column: 2;
    grid-row: 1;
    justify-self: center;
  }

  .header-actions {
    grid-column: 3;
    grid-row: 1;
    justify-self: end;
  }
}
/* Menu title one-line desktop override */
@media (min-width: 901px) {
  .menu-section .section-copy.narrow {
    width: 100%;
    max-width: none;
  }

  .menu-section h2 {
    max-width: 100%;
    white-space: nowrap;
    font-size: clamp(2.5rem, 4.4vw, 4.35rem);
  }
}
/* Menu photo showcase override */
.menu-showcase {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.menu-photo-card {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 18px 36px rgba(35, 29, 23, 0.08);
}

.menu-photo-card img {
  width: 100%;
  height: clamp(220px, 22vw, 320px);
  object-fit: cover;
}

.menu-photo-card figcaption {
  padding: 22px;
}

.menu-photo-card h3 {
  margin: 0;
  color: var(--green-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.3rem, 2vw, 1.75rem);
}

.menu-photo-card p {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.menu-full-action {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.menu-full-button {
  min-width: min(100%, 360px);
  text-align: center;
}

@media (max-width: 900px) {
  .menu-showcase {
    grid-template-columns: 1fr;
  }

  .menu-photo-card img {
    height: min(64vw, 320px);
  }
}

/* Full interactive menu board override */
.full-menu-panel {
  width: min(100%, 1180px);
  margin: 24px auto 0;
  overflow: hidden;
  border: 1px solid rgba(202, 154, 72, 0.32);
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(43, 31, 21, 0.98), rgba(31, 24, 18, 0.98));
  box-shadow: 0 26px 58px rgba(20, 14, 10, 0.22);
}

.full-menu-tabs {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-bottom: 1px solid rgba(202, 154, 72, 0.28);
  background: rgba(23, 17, 13, 0.34);
}

.full-menu-tabs button {
  min-height: 58px;
  border: 0;
  border-right: 1px solid rgba(202, 154, 72, 0.14);
  background: transparent;
  color: rgba(236, 212, 168, 0.72);
  cursor: pointer;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(0.95rem, 1.4vw, 1.14rem);
  font-weight: 800;
  padding: 14px 12px;
  transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.full-menu-tabs button:last-child {
  border-right: 0;
}

.full-menu-tabs button:hover,
.full-menu-tabs button:focus-visible {
  background: rgba(202, 154, 72, 0.1);
  color: #f5d484;
  outline: none;
}

.full-menu-tabs button[aria-selected="true"] {
  background: rgba(255, 255, 255, 0.055);
  color: #f5d484;
  box-shadow: inset 0 -3px 0 #d5aa5b;
}

.full-menu-content {
  padding: clamp(24px, 4vw, 42px);
}

.full-menu-list {
  display: block;
}

.full-menu-list[hidden] {
  display: none;
}

.full-menu-group + .full-menu-group {
  margin-top: 36px;
}

.full-menu-group h3 {
  margin: 0 0 8px;
  color: #f2c867;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.45rem, 2.8vw, 2rem);
  line-height: 1.15;
}

.full-menu-note {
  margin: 0 0 24px;
  border-top: 2px dotted rgba(202, 154, 72, 0.34);
  padding-top: 10px;
  color: rgba(246, 226, 190, 0.7);
  font-style: italic;
}

.full-menu-item {
  border: 0;
  border-bottom: 1px solid rgba(202, 154, 72, 0.13);
  background: transparent;
  padding: 15px 0 16px;
}

.menu-item-line {
  display: grid;
  grid-template-columns: auto minmax(24px, 1fr) auto;
  align-items: baseline;
  gap: 12px;
}

.menu-item-line h4 {
  margin: 0;
  color: #fffaf0;
  font-family: Inter, system-ui, sans-serif;
  font-size: clamp(1rem, 1.4vw, 1.08rem);
  font-weight: 850;
  line-height: 1.35;
}

.menu-item-line span {
  min-width: 24px;
  border-bottom: 2px dotted rgba(202, 154, 72, 0.38);
  transform: translateY(-4px);
}

.menu-item-line strong {
  color: #f2c867;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.02rem, 1.7vw, 1.28rem);
  white-space: nowrap;
}

.full-menu-item p {
  margin: 6px 0 0;
  color: rgba(246, 226, 190, 0.68);
  font-size: 0.92rem;
  line-height: 1.45;
}

@media (max-width: 900px) {
  .full-menu-tabs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .full-menu-tabs button:last-child {
    grid-column: 1 / -1;
    border-top: 1px solid rgba(202, 154, 72, 0.14);
  }
}

@media (max-width: 560px) {
  .full-menu-panel {
    border-radius: 10px;
  }

  .full-menu-tabs {
    grid-template-columns: 1fr;
  }

  .full-menu-tabs button,
  .full-menu-tabs button:last-child {
    min-height: 50px;
    border-right: 0;
    border-top: 1px solid rgba(202, 154, 72, 0.14);
  }

  .menu-item-line {
    grid-template-columns: 1fr auto;
    gap: 8px;
  }

  .menu-item-line span {
    display: none;
  }
}
/* Brown button text override */
.button,
.nav-cta,
.text-button,
.icon-button,
.nav-toggle,
.nav-menu-button,
.language-toggle,
.internal-login-link,
.mobile-login-link,
.mobile-language-switcher button,
.language-menu button,
.about-more summary,
.menu-full-button {
  color: #4b2f20 !important;
}

.nav-toggle span:not(.sr-only),
.menu-icon span {
  background: #4b2f20;
}

.language-icon svg,
.login-icon svg {
  stroke: #4b2f20;
}

.language-menu button[aria-pressed="true"],
.mobile-language-switcher button[aria-pressed="true"] {
  color: #4b2f20 !important;
}

.full-menu-tabs button {
  color: #b98245;
}

.full-menu-tabs button:hover,
.full-menu-tabs button:focus-visible,
.full-menu-tabs button[aria-selected="true"] {
  color: #c99759;
}
/* Section brown heading override */
.section :is(h2, h3, h4):not(.full-menu-panel *) {
  color: #3c261b;
}

.section .eyebrow {
  color: #5a3824;
}
/* Hours brown text override */
.hours-card,
.hours-card *,
.holiday-panel,
.holiday-panel *,
.extra-message,
.extra-message * {
  color: #3c261b;
}

.holiday-list em.holiday-open,
.holiday-list em.holiday-closed {
  color: #3c261b;
}
/* Regular hours time brown override */
.hours-card .hours-list strong,
.hours-card .hours-list p.is-today strong {
  color: #3c261b !important;
}
/* Holiday date brown override */
.holiday-list strong {
  color: #3c261b !important;
}
/* Work section no green background override */
.work-section .section-copy {
  background: transparent;
  color: #3c261b;
  padding-inline: 0;
}

.work-section .eyebrow,
.work-section h2,
.work-section p:not(.eyebrow) {
  color: #3c261b;
}
.work-card {
  margin-top: 24px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.work-card p {
  max-width: none;
  margin: 0;
  color: #3c261b;
  font-size: clamp(1rem, 1.8vw, 1.16rem);
  line-height: 1.75;
}
/* Footer solid brown background override */
.site-footer {
  background: #3c261b;
}
/* Footer partner logo row override */
.site-footer .footer-partners h2 {
  margin-bottom: 14px;
}

.site-footer .partner-logo-list {
  display: flex !important;
  grid-template-columns: none;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.site-footer .partner-logo-list li {
  list-style: none;
}

.site-footer .partner-logo-link {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 8px;
  background: #fffaf1;
  border: 1px solid rgba(245, 217, 144, 0.35);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.18);
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.site-footer .partner-logo-link:hover,
.site-footer .partner-logo-link:focus-visible {
  transform: translateY(-1px);
  background: #fff3d0;
  box-shadow: 0 14px 26px rgba(0, 0, 0, 0.22);
  outline: none;
}

.site-footer .partner-logo-tile {
  display: grid;
  place-items: center;
  color: #3c261b;
  line-height: 1;
  text-align: center;
}

.site-footer .partner-logo-tile strong {
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.02em;
}

.site-footer .partner-logo-tile small {
  margin-top: 2px;
  font-size: 0.42rem;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.site-footer .partner-logo-travel strong {
  color: #2e5ea8;
}

.site-footer .partner-logo-region strong {
  color: #b64f33;
}

.site-footer .partner-logo-city strong {
  color: #28558a;
}

.site-footer .partner-logo-culture strong {
  color: #9a6b1f;
}

.site-footer .partner-text-item {
  margin-left: 8px;
}

.site-footer .partner-text-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 46px;
  color: #f5d990;
  font-weight: 850;
  text-decoration: none;
  white-space: nowrap;
}

.site-footer .partner-text-link:hover,
.site-footer .partner-text-link:focus-visible {
  color: #fff8df;
  outline: none;
}

@media (max-width: 560px) {
  .site-footer .partner-logo-list {
    gap: 10px;
  }

  .site-footer .partner-text-item {
    width: 100%;
    margin-left: 0;
  }
}
/* Partner logo rectangle override */
.site-footer .partner-logo-link {
  width: 82px;
  height: 46px;
  border-radius: 8px;
}

.site-footer .partner-logo-tile strong {
  font-size: 0.68rem;
}

.site-footer .partner-logo-tile small {
  font-size: 0.38rem;
}

@media (max-width: 560px) {
  .site-footer .partner-logo-link {
    width: 78px;
    height: 44px;
  }
}
.site-footer .partner-logo-museum strong {
  color: #7a3326;
}
/* Web social logos override */
.site-footer .social-icon {
  display: grid;
  place-items: center;
}

.site-footer .social-logo {
  width: 18px;
  height: 18px;
  object-fit: contain;
}
/* Web partner logos override */
.site-footer .partner-logo-tile {
  width: 100%;
  height: 100%;
}

.site-footer .partner-logo-img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.site-footer .partner-logo-link {
  background: #fff;
}

@media (max-width: 560px) {
  .site-footer .partner-logo-img {
    width: 28px;
    height: 28px;
  }
}
/* Travel Slovakia official logo override */
.site-footer .partner-logo-travel .partner-logo-img {
  width: 70px;
  height: 34px;
  object-fit: contain;
}
/* Expanded menu warm glass override */
.full-menu-panel {
  border-color: rgba(202, 154, 72, 0.38);
  background:
    linear-gradient(135deg, rgba(255, 251, 241, 0.9), rgba(235, 214, 178, 0.78)),
    rgba(255, 255, 255, 0.68);
  box-shadow: 0 24px 60px rgba(60, 38, 27, 0.16);
  backdrop-filter: blur(18px) saturate(1.18);
  -webkit-backdrop-filter: blur(18px) saturate(1.18);
}

.full-menu-tabs {
  border-bottom-color: rgba(60, 38, 27, 0.14);
  background: rgba(255, 255, 255, 0.34);
}

.full-menu-tabs button {
  border-right-color: rgba(60, 38, 27, 0.1);
  color: #3c261b !important;
}

.full-menu-tabs button:hover,
.full-menu-tabs button:focus-visible {
  background: rgba(255, 255, 255, 0.52);
  color: #3c261b !important;
  box-shadow: inset 0 0 0 1px rgba(202, 154, 72, 0.28), 0 10px 24px rgba(60, 38, 27, 0.12);
  backdrop-filter: blur(12px) saturate(1.18);
  -webkit-backdrop-filter: blur(12px) saturate(1.18);
  transform: translateY(-1px);
}

.full-menu-tabs button[aria-selected="true"] {
  background: rgba(255, 255, 255, 0.62);
  color: #3c261b !important;
  box-shadow: inset 0 -3px 0 #c89a48, inset 0 0 0 1px rgba(202, 154, 72, 0.3);
}

.full-menu-group h3,
.full-menu-note,
.menu-item-line h4,
.menu-item-line strong,
.full-menu-item p {
  color: #3c261b !important;
}

.full-menu-note {
  border-top-color: rgba(60, 38, 27, 0.26);
}

.full-menu-item {
  border-bottom-color: rgba(60, 38, 27, 0.12);
}

.menu-item-line span {
  border-bottom-color: rgba(60, 38, 27, 0.28);
}

.menu-full-button {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.menu-full-button:hover,
.menu-full-button:focus-visible {
  background: rgba(255, 255, 255, 0.52) !important;
  border-color: rgba(202, 154, 72, 0.44);
  color: #3c261b !important;
  box-shadow: 0 16px 36px rgba(60, 38, 27, 0.18), inset 0 0 0 1px rgba(255, 255, 255, 0.34);
  backdrop-filter: blur(14px) saturate(1.16);
  -webkit-backdrop-filter: blur(14px) saturate(1.16);
  transform: translateY(-2px);
}
/* Header dropdown menu brown glass hover override */
.site-nav .nav-menu-list a,
.site-nav .nav-menu-list .nav-cta,
.site-nav .nav-menu-list .mobile-login-link {
  border: 1px solid transparent;
  color: #3c261b !important;
  text-decoration: none;
  transition: background 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease, color 0.18s ease;
}

.site-nav .nav-menu-list a:hover,
.site-nav .nav-menu-list a:focus-visible,
.site-nav .nav-menu-list .nav-cta:hover,
.site-nav .nav-menu-list .nav-cta:focus-visible,
.site-nav .nav-menu-list .mobile-login-link:hover,
.site-nav .nav-menu-list .mobile-login-link:focus-visible {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.42)) !important;
  border-color: rgba(202, 154, 72, 0.42);
  color: #3c261b !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.58), 0 12px 24px rgba(60, 38, 27, 0.14);
  backdrop-filter: blur(14px) saturate(1.16);
  -webkit-backdrop-filter: blur(14px) saturate(1.16);
  transform: translateY(-1px);
  outline: none;
}

.site-nav .nav-menu-list .nav-cta {
  background: linear-gradient(135deg, rgba(238, 208, 136, 0.86), rgba(202, 154, 72, 0.62));
  border-color: rgba(202, 154, 72, 0.38);
}

@media (max-width: 560px) {
  .site-nav .nav-menu-list a,
  .site-nav .nav-menu-list .nav-cta,
  .site-nav .nav-menu-list .mobile-login-link {
    color: #3c261b !important;
  }
}
/* Language dropdown brown glass hover override */
.language-menu button,
.mobile-language-switcher button {
  border: 1px solid transparent;
  color: #3c261b !important;
  transition: background 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease, color 0.18s ease;
}

.language-menu button:hover,
.language-menu button:focus-visible,
.mobile-language-switcher button:hover,
.mobile-language-switcher button:focus-visible {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.42)) !important;
  border-color: rgba(202, 154, 72, 0.42);
  color: #3c261b !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.58), 0 12px 24px rgba(60, 38, 27, 0.14);
  backdrop-filter: blur(14px) saturate(1.16);
  -webkit-backdrop-filter: blur(14px) saturate(1.16);
  transform: translateY(-1px);
  outline: none;
}

.language-menu button[aria-pressed="true"],
.mobile-language-switcher button[aria-pressed="true"] {
  background: linear-gradient(135deg, rgba(238, 208, 136, 0.86), rgba(202, 154, 72, 0.62)) !important;
  border-color: rgba(202, 154, 72, 0.38);
  color: #3c261b !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5), 0 8px 18px rgba(60, 38, 27, 0.1);
}
/* Header reservation menu alignment override */
.site-nav .nav-menu-list .nav-cta {
  justify-content: flex-start;
  min-height: 40px;
  padding: 0 12px;
  border-radius: 6px;
}

@media (max-width: 560px) {
  .site-nav .nav-menu-list .nav-cta {
    justify-content: center;
    min-height: 44px;
    border-radius: 999px;
  }
}
/* Site search header and dialog */
.site-search-toggle {
  appearance: none;
  cursor: pointer;
  font: inherit;
}

.search-icon,
.site-search-toggle .search-icon {
  display: grid;
  place-items: center;
}

.search-icon svg,
.site-search-toggle svg {
  width: 22px;
  height: 22px;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mobile-search-link {
  font: inherit;
  cursor: pointer;
}

.mobile-search-link .search-icon svg {
  width: 19px;
  height: 19px;
}

.site-search-dialog {
  width: min(720px, calc(100vw - 28px));
  max-height: min(760px, calc(100vh - 48px));
  padding: 0;
  border: 1px solid rgba(212, 177, 106, 0.42);
  border-radius: 18px;
  background: transparent;
  color: #3c261b;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(20, 12, 8, 0.34);
}

.site-search-dialog::backdrop {
  background: rgba(20, 12, 8, 0.54);
  backdrop-filter: blur(6px);
}

.site-search-shell {
  padding: clamp(20px, 4vw, 32px);
  background:
    linear-gradient(135deg, rgba(255, 251, 241, 0.92), rgba(235, 214, 178, 0.84)),
    rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(20px) saturate(1.16);
  -webkit-backdrop-filter: blur(20px) saturate(1.16);
}

.site-search-shell .dialog-head {
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 20px;
}

.site-search-shell .eyebrow,
.site-search-shell h2 {
  color: #3c261b;
}

.site-search-field {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 58px;
  padding: 0 16px;
  border: 1px solid rgba(202, 154, 72, 0.38);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.58);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.68), 0 14px 30px rgba(60, 38, 27, 0.1);
}

.site-search-field input {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: #3c261b;
  font: inherit;
  font-weight: 750;
}

.site-search-field input::placeholder {
  color: rgba(60, 38, 27, 0.58);
}

.site-search-status {
  margin: 14px 4px 0;
  color: rgba(60, 38, 27, 0.72);
  font-size: 0.94rem;
  font-weight: 650;
}

.site-search-results {
  display: grid;
  gap: 10px;
  max-height: min(420px, 44vh);
  margin-top: 18px;
  overflow: auto;
  padding-right: 4px;
}

.site-search-result {
  display: grid;
  gap: 5px;
  padding: 14px 16px;
  border: 1px solid rgba(202, 154, 72, 0.26);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.48);
  color: #3c261b;
  text-decoration: none;
  transition: background 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.site-search-result:hover,
.site-search-result:focus-visible {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.76), rgba(255, 255, 255, 0.46));
  border-color: rgba(202, 154, 72, 0.48);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.62), 0 12px 24px rgba(60, 38, 27, 0.13);
  transform: translateY(-1px);
  outline: none;
}

.site-search-result strong {
  color: #3c261b;
  font-size: 1rem;
}

.site-search-result span {
  color: rgba(60, 38, 27, 0.76);
  line-height: 1.5;
}

@media (max-width: 560px) {
  .site-header .header-actions > .site-search-toggle {
    display: none;
  }

  .site-search-dialog {
    width: min(100vw - 20px, 420px);
  }

  .site-search-shell {
    padding: 18px;
  }
}
/* Holiday open gold status override */
.holiday-list em.holiday-open {
  background: linear-gradient(135deg, rgba(238, 208, 136, 0.96), rgba(202, 154, 72, 0.82)) !important;
  border: 1px solid rgba(202, 154, 72, 0.48);
  color: #3c261b !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.42), 0 8px 18px rgba(60, 38, 27, 0.1);
}
/* Hours and holiday status final polish */
.holiday-list em.holiday-open {
  background: rgba(255, 255, 255, 0.92) !important;
  border: 1px solid rgba(202, 154, 72, 0.72) !important;
  color: #3c261b !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72), 0 8px 18px rgba(60, 38, 27, 0.08);
}

.holiday-list em.holiday-closed,
.hours-current-status {
  background: linear-gradient(135deg, rgba(238, 208, 136, 0.96), rgba(202, 154, 72, 0.82)) !important;
  border: 1px solid rgba(202, 154, 72, 0.58) !important;
  color: #3c261b !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.44), 0 10px 22px rgba(60, 38, 27, 0.12);
}

.hours-current-status > span:last-child,
.holiday-list em.holiday-closed {
  color: #3c261b !important;
}

.hours-current-status.is-open > span:first-child {
  background: #48d46c !important;
  box-shadow: 0 0 0 6px rgba(72, 212, 108, 0.16);
  animation: statusPulse 1.6s ease-out infinite;
}

.hours-current-status.is-closed > span:first-child {
  background: #ffb44c !important;
  box-shadow: 0 0 0 6px rgba(255, 180, 76, 0.18);
  animation: none;
}
/* Legal action buttons and info dialogs */
.legal-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 18px;
}

.legal-info-content {
  display: grid;
  gap: 12px;
  color: #3c261b;
  line-height: 1.65;
}

.legal-info-content p {
  margin: 0;
}

@media (max-width: 560px) {
  .legal-actions {
    align-items: stretch;
  }

  .legal-actions .text-button {
    width: 100%;
  }
}
/* GDPR heading one-line override */
@media (min-width: 761px) {
  .legal-section .section-copy.narrow {
    width: 100%;
    max-width: min(100%, 1120px);
  }

  .legal-section h2 {
    white-space: nowrap;
    font-size: clamp(2.2rem, 4.2vw, 4.2rem);
  }
}
/* Legal actions left alignment override */
.legal-actions {
  justify-content: flex-start;
}
/* Mobile legal actions visibility override */
@media (max-width: 560px) {
  .legal-actions {
    display: grid !important;
    grid-template-columns: 1fr;
    justify-content: stretch;
    align-items: stretch;
    gap: 10px;
    width: 100%;
    margin-top: 20px;
  }

  .legal-actions .text-button {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 48px;
    margin-top: 0;
    padding: 0 16px;
    border: 1px solid rgba(202, 154, 72, 0.48);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.88);
    color: #3c261b !important;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72), 0 10px 22px rgba(60, 38, 27, 0.08);
    text-align: center;
  }

  .legal-actions .text-button:hover,
  .legal-actions .text-button:focus-visible {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(238, 208, 136, 0.62));
    border-color: rgba(202, 154, 72, 0.72);
  }
}
/* Mobile footer legal visibility override */
@media (max-width: 560px) {
  .site-footer .footer-legal {
    display: block !important;
    width: 100%;
    padding-top: 18px;
    text-align: center;
  }

  .site-footer .footer-legal p {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 4px 6px;
    width: 100%;
    margin: 0;
    color: rgba(255, 248, 225, 0.9) !important;
    font-size: 0.86rem;
    line-height: 1.55;
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .site-footer .footer-date-separator {
    display: none;
  }

  .site-footer [data-i18n="footer.updated"],
  .site-footer [data-current-date] {
    display: inline-block;
    color: rgba(255, 248, 225, 0.9) !important;
  }

  .site-footer [data-i18n="footer.updated"] {
    flex-basis: 100%;
    margin-top: 4px;
  }
}
/* Mobile nav click-through fix */
@media (max-width: 560px) {
  .site-nav:not(.is-open),
  .site-nav:not(.is-open) .nav-menu-list,
  .site-nav:not(.is-open) .nav-menu-list * {
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
  }

  .site-nav:not(.is-open) {
    height: 0 !important;
    min-height: 0 !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    border-width: 0 !important;
    overflow: hidden !important;
    transform: translate(-50%, -12px) scale(0.98) !important;
  }

  .site-nav.is-open,
  .site-nav.is-open .nav-menu-list,
  .site-nav.is-open .nav-menu-list * {
    visibility: visible !important;
    opacity: 1 !important;
    pointer-events: auto !important;
  }

  .site-nav.is-open {
    height: auto !important;
    padding: 18px !important;
    border-width: 1px !important;
    overflow: visible !important;
    transform: translate(-50%, 0) !important;
  }
}
/* Mobile footer updated date same line override */
@media (max-width: 560px) {
  .site-footer .footer-date-separator {
    display: block !important;
    flex-basis: 100%;
    width: 0;
    height: 0;
    overflow: hidden;
  }

  .site-footer [data-i18n="footer.updated"] {
    flex-basis: auto;
    margin-top: 4px;
  }

  .site-footer [data-current-date] {
    margin-top: 4px;
    white-space: nowrap;
  }
}
/* Header side controls vertical lift */
.site-header > .site-nav,
.site-header > .header-actions {
  transform: translateY(-26px);
}

.site-header > .site-nav.is-open {
  transform: translateY(-26px);
}

@media (max-width: 560px) {
  .site-header > .nav-toggle,
  .site-header > .header-actions {
    transform: translateY(-16px);
  }

  .site-header > .site-nav,
  .site-header > .site-nav.is-open {
    transform: translate(-50%, -12px);
  }

  .site-header > .site-nav.is-open {
    transform: translate(-50%, 0);
  }
}
/* Compact single-row desktop header */
@media (min-width: 561px) {
  .site-header {
    grid-template-rows: auto;
    padding-top: 8px;
    padding-bottom: 8px;
  }

  .site-header > .brand,
  .site-header > .site-nav,
  .site-header > .header-actions {
    grid-row: 1;
    align-self: center;
  }

  .site-header > .site-nav,
  .site-header > .header-actions,
  .site-header > .site-nav.is-open {
    transform: none;
  }
}
/* Mobile header center-axis alignment */
@media (max-width: 560px) {
  .site-header {
    align-items: center;
  }

  .site-header > .nav-toggle,
  .site-header > .brand,
  .site-header > .header-actions {
    align-self: center;
  }

  .site-header > .nav-toggle,
  .site-header > .header-actions {
    transform: none;
  }
}
/* Mobile realistic hamburger icon */
@media (max-width: 560px) {
  .site-header > .nav-toggle {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    padding: 0;
  }

  .site-header > .nav-toggle span:not(.sr-only) {
    display: block;
    width: 22px;
    height: 2px;
    margin: 0;
    border-radius: 999px;
    background: #4b2f20;
    box-shadow: none;
    transition: transform 160ms ease, width 160ms ease, opacity 160ms ease;
  }

  .site-header > .nav-toggle span:not(.sr-only):nth-child(1),
  .site-header > .nav-toggle span:not(.sr-only):nth-child(2),
  .site-header > .nav-toggle span:not(.sr-only):nth-child(3) {
    width: 22px;
    height: 2px;
    border-radius: 999px;
  }

  .site-header > .nav-toggle[aria-expanded="true"] span:not(.sr-only):nth-child(1) {
    transform: translateY(7px) rotate(42deg);
    width: 24px;
  }

  .site-header > .nav-toggle[aria-expanded="true"] span:not(.sr-only):nth-child(2) {
    transform: scaleX(0.15);
    opacity: 0;
  }

  .site-header > .nav-toggle[aria-expanded="true"] span:not(.sr-only):nth-child(3) {
    transform: translateY(-7px) rotate(-42deg);
    width: 24px;
  }
}
/* Clickable about photos use the gallery caption treatment. */
.about-photo-feature,
.about-photo-card {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  color: #fff;
  cursor: pointer;
}

.about-photo-feature::after,
.about-photo-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(16, 22, 16, 0.74));
  opacity: 0.95;
  transition: opacity 160ms ease;
}

.about-photo-feature:hover::after,
.about-photo-feature:focus-visible::after,
.about-photo-card:hover::after,
.about-photo-card:focus-visible::after {
  opacity: 1;
}

.about-photo-feature:hover img,
.about-photo-feature:focus-visible img,
.about-photo-card:hover img,
.about-photo-card:focus-visible img {
  transform: scale(1.04);
}

.about-photo-feature span,
.about-photo-card span {
  position: absolute;
  right: 18px;
  bottom: 16px;
  left: 18px;
  z-index: 1;
  font-family: Georgia, serif;
  font-size: clamp(1.2rem, 2.2vw, 1.9rem);
  font-weight: 700;
  text-align: left;
  color: #fff;
}
/* Menu preparation note highlight */
.menu-prep-highlight p {
  margin: 0;
  padding: 13px 14px;
  border: 1px solid rgba(212, 177, 106, 0.58);
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(212, 177, 106, 0.22), rgba(255, 255, 255, 0.72));
  box-shadow: 0 12px 24px rgba(35, 29, 23, 0.08);
  color: #3c261b !important;
}

.menu-prep-highlight strong {
  color: #3c261b !important;
  font-weight: 800;
}
/* Cheese price list customer info */
.cheese-product-title {
  margin: 18px 0 8px;
  color: #3c261b !important;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.18rem, 2vw, 1.48rem);
  line-height: 1.18;
  letter-spacing: 0;
}

.cheese-product-title strong {
  color: inherit !important;
  font-weight: 900;
}

.cheese-product-gap {
  height: 18px;
}
/* Cheese price list validity note */
.cheese-validity-note,
.cheese-validity-note strong {
  color: #3c261b !important;
}
/* Menu brown text normalization */
.full-menu-tabs button,
.full-menu-tabs button:hover,
.full-menu-tabs button:focus-visible,
.full-menu-tabs button[aria-selected="true"],
.full-menu-group h3,
.full-menu-group h4,
.full-menu-group p,
.full-menu-group strong,
.full-menu-note,
.menu-item-line h4,
.menu-item-line strong,
.full-menu-item p,
.menu-service-note,
.menu-service-note p,
.menu-service-note strong,
.cheese-product-title,
.cheese-product-title strong,
.cheese-validity-note,
.cheese-validity-note strong {
  color: #3c261b !important;
}
/* Aktuality full-width panel */
.news-layout-wide {
  grid-template-columns: minmax(0, 1fr);
}

.news-layout-wide .holiday-panel {
  width: 100%;
}
/* Aktuality music pill matches opening status */
.news-section .music-status {
  margin-top: 16px;
  margin-left: 0;
  padding: 10px 14px;
  min-height: 0;
  background: linear-gradient(135deg, rgba(238, 208, 136, 0.96), rgba(202, 154, 72, 0.82)) !important;
  border: 1px solid rgba(202, 154, 72, 0.58) !important;
  color: #3c261b !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.44), 0 10px 22px rgba(60, 38, 27, 0.12);
}

.news-section .music-status > span:last-child {
  color: #3c261b !important;
}

.news-section .music-status > span:first-child {
  background: #48d46c !important;
  color: #3c261b !important;
  box-shadow: 0 0 0 6px rgba(72, 212, 108, 0.16);
}
/* Music performance list grouping */
.music-performance-list h4 {
  margin: 18px 0 10px;
  padding: 8px 12px;
  border: 1px solid rgba(202, 154, 72, 0.46);
  border-radius: 12px;
  background: rgba(238, 208, 136, 0.18);
  color: #3c261b;
  font-size: 0.86rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.music-performance-list h4:first-child {
  margin-top: 0;
}

.music-performance-list p {
  grid-template-columns: minmax(0, 1fr);
}
.news-section .today-performer-status {
  margin-left: 10px;
}

@media (max-width: 640px) {
  .news-section .today-performer-status {
    margin-left: 0;
  }
}
/* Music performance auto-hide */
.music-performance-list [hidden] {
  display: none !important;
}

/* Gallery title one-line override */
.gallery-section .section-copy.narrow {
  width: min(900px, 100%);
}

.gallery-section h2 {
  white-space: nowrap;
  font-size: 4rem;
}

@media (max-width: 900px) {
  .gallery-section h2 {
    font-size: 3rem;
  }
}

@media (max-width: 560px) {
  .gallery-section h2 {
    font-size: 2rem;
  }
}

@media (max-width: 420px) {
  .gallery-section h2 {
    font-size: 1.6rem;
  }
}

@media (max-width: 360px) {
  .gallery-section h2 {
    font-size: 1.45rem;
  }
}











.reservation-blocked-dialog h2 {
  color: #3c261b;
}

.reservation-blocked-content {
  margin: 0 24px 18px;
  padding: 18px 18px 18px 20px;
  border-left: 5px solid var(--gold);
  border-radius: var(--radius);
  background: rgba(212, 177, 106, 0.18);
  color: #3c261b;
  font-weight: 800;
}

.reservation-blocked-content p {
  margin: 0;
}

.reservation-blocked-dialog .dialog-actions {
  padding: 0 24px 24px;
}

.form-note.is-warning {
  padding: 12px 14px;
  border: 1px solid rgba(212, 177, 106, 0.68);
  border-radius: var(--radius);
  background: rgba(212, 177, 106, 0.16);
  color: #3c261b;
  font-weight: 800;
}

.contact-line {
  margin: 0;
}

.contact-line > span {
  display: block;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.phone-link,
.contact-action-row {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.phone-link {
  margin-top: 4px;
  color: #3c261b;
  font-weight: 800;
}

.contact-phone-icon {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  color: var(--gold);
}

.phone-number {
  display: inline !important;
  color: inherit !important;
  font-size: inherit !important;
  font-weight: inherit !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
}

.quick-contact-links {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-left: 4px;
}

.quick-contact-link {
  display: inline-grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border: 1px solid rgba(212, 177, 106, 0.58);
  border-radius: 50%;
  background: rgba(212, 177, 106, 0.14);
  color: #3c261b;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.quick-contact-link img {
  width: 15px;
  height: 15px;
  object-fit: contain;
}

.quick-contact-link.sms span {
  display: inline !important;
  color: inherit !important;
  font-size: 0.58rem !important;
  font-weight: 900 !important;
  letter-spacing: 0 !important;
  text-transform: uppercase !important;
}

.quick-contact-link:hover,
.quick-contact-link:focus-visible,
.phone-link:hover,
.phone-link:focus-visible {
  color: #3c261b;
}

.quick-contact-link:hover,
.quick-contact-link:focus-visible {
  border-color: rgba(212, 177, 106, 0.92);
  background: rgba(212, 177, 106, 0.28);
  transform: translateY(-1px);
}

@media (max-width: 430px) {
  .contact-action-row {
    flex-wrap: wrap;
  }

  .quick-contact-links {
    margin-left: 27px;
  }
}

/* Reservation responsive date/time field fix */
.reservation-form,
.reservation-form *,
.reservation-form *::before,
.reservation-form *::after {
  box-sizing: border-box;
}

.reservation-form label,
.reservation-form .form-row,
.reservation-form .form-row label {
  min-width: 0;
  max-width: 100%;
}

.reservation-form input,
.reservation-form textarea {
  display: block;
  width: 100%;
  min-width: 0;
  max-width: 100%;
  inline-size: 100%;
  min-inline-size: 0;
  max-inline-size: 100%;
}

.reservation-form input[type="date"],
.reservation-form input[type="time"] {
  -webkit-appearance: none;
  appearance: none;
  min-height: 54px;
}

@media (max-width: 900px) {
  .reservation-form .form-row {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 560px) {
  .reservation-section .section-copy,
  .reservation-section .section-copy.narrow {
    width: min(100%, calc(100vw - 32px));
  }

  .reservation-layout {
    width: 100%;
    min-width: 0;
  }

  .reservation-form {
    width: 100%;
    min-width: 0;
    overflow: hidden;
    padding-inline: clamp(16px, 5vw, 24px);
  }
}


/* Tablet gallery visible captions card layout */
@media (min-width: 641px) and (max-width: 1180px) {
  .gallery {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    grid-auto-rows: auto !important;
    gap: 16px !important;
  }

  .gallery-item,
  .gallery-item-large {
    grid-column: auto !important;
    grid-row: auto !important;
    min-height: 0 !important;
    overflow: hidden !important;
    border: 1px solid rgba(60, 38, 27, 0.1);
    background: var(--paper) !important;
    box-shadow: 0 12px 26px rgba(60, 38, 27, 0.08);
  }

  .gallery-card {
    display: grid !important;
    grid-template-rows: auto auto !important;
    width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    overflow: hidden !important;
    border-radius: inherit !important;
    background: var(--paper) !important;
    color: #3c261b !important;
  }

  .gallery-card::after {
    content: none !important;
    display: none !important;
  }

  .gallery-card img {
    position: static !important;
    display: block !important;
    width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    aspect-ratio: 16 / 10 !important;
    object-fit: cover !important;
    object-position: center !important;
    border-radius: 0 !important;
    transform: none !important;
  }

  .gallery-card:hover img,
  .gallery-card:focus-visible img {
    transform: none !important;
  }

  .gallery-card span {
    position: static !important;
    inset: auto !important;
    z-index: 2 !important;
    display: block !important;
    width: 100% !important;
    padding: 10px 14px 12px !important;
    background: var(--paper) !important;
    color: #3c261b !important;
    font-size: clamp(0.95rem, 1.65vw, 1.18rem) !important;
    line-height: 1.12 !important;
    text-align: left !important;
    text-shadow: none !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
  }
}

@media (min-width: 641px) and (max-width: 820px) {
  .gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

/* Mobile gallery frame/caption polish */
.gallery-item {
  background: #1d1510;
}

.gallery-card::after {
  z-index: 1;
  background: linear-gradient(180deg, rgba(16, 12, 9, 0) 46%, rgba(16, 12, 9, 0.68) 100%);
}

.gallery-card img {
  display: block;
}

.gallery-card span {
  z-index: 2;
  color: #fff;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.65);
}

@media (max-width: 560px) {
  .gallery {
    grid-auto-rows: auto;
    gap: 16px;
  }

  .gallery-item,
  .gallery-item-large {
    min-height: 0;
    aspect-ratio: 16 / 9;
    background: #1d1510;
  }

  .gallery-card {
    height: 100%;
    min-height: 0;
    border-radius: inherit;
  }

  .gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }

  .gallery-card::after {
    background: linear-gradient(180deg, rgba(16, 12, 9, 0) 50%, rgba(16, 12, 9, 0.74) 100%);
  }

  .gallery-card span {
    right: 14px;
    bottom: 12px;
    left: 14px;
    font-size: clamp(1.05rem, 5vw, 1.38rem);
    line-height: 1.05;
    white-space: nowrap;
  }
}

/* Mobile gallery visible captions card layout */
@media (max-width: 640px) {
  .gallery {
    grid-template-columns: minmax(0, 1fr) !important;
    grid-auto-rows: auto !important;
    gap: 16px !important;
  }

  .gallery-item,
  .gallery-item-large {
    grid-column: auto !important;
    grid-row: auto !important;
    min-height: 0 !important;
    aspect-ratio: auto !important;
    overflow: hidden !important;
    border: 1px solid rgba(60, 38, 27, 0.1);
    background: var(--paper) !important;
    box-shadow: 0 12px 26px rgba(60, 38, 27, 0.08);
  }

  .gallery-card {
    display: grid !important;
    grid-template-rows: auto auto !important;
    width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    overflow: hidden !important;
    border-radius: inherit !important;
    background: var(--paper) !important;
    color: #3c261b !important;
  }

  .gallery-card::after {
    content: none !important;
    display: none !important;
  }

  .gallery-card img {
    position: static !important;
    display: block !important;
    width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    aspect-ratio: 16 / 9 !important;
    object-fit: cover !important;
    object-position: center !important;
    border-radius: 0 !important;
    transform: none !important;
  }

  .gallery-card:hover img,
  .gallery-card:focus-visible img {
    transform: none !important;
  }

  .gallery-card span {
    position: static !important;
    inset: auto !important;
    z-index: 2 !important;
    display: block !important;
    width: 100% !important;
    padding: 10px 14px 12px !important;
    background: var(--paper) !important;
    color: #3c261b !important;
    font-size: clamp(1rem, 4.5vw, 1.22rem) !important;
    line-height: 1.12 !important;
    text-align: left !important;
    text-shadow: none !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
  }
}

/* Reservation consent checkbox alignment */
.reservation-form .check-row {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  max-width: 100%;
  margin: 2px 0 0;
}

.reservation-form .check-row input[type="checkbox"] {
  width: 28px;
  height: 28px;
  min-width: 28px;
  margin: 0;
  align-self: center;
}

.reservation-form .check-row span {
  display: block;
  min-width: 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.35;
  text-align: left;
}

@media (max-width: 560px) {
  .reservation-form .check-row {
    grid-template-columns: 30px minmax(0, 1fr);
    gap: 9px;
    align-items: center;
    padding-inline: 2px;
  }

  .reservation-form .check-row input[type="checkbox"] {
    width: 30px;
    height: 30px;
    min-width: 30px;
  }

  .reservation-form .check-row span {
    font-size: clamp(0.92rem, 4vw, 1rem);
    line-height: 1.28;
  }
}

/* Mobile hamburger language glass panel */
@media (max-width: 560px) {
  .site-header > .site-nav.is-open {
    max-height: min(78dvh, calc(100dvh - 128px));
    overflow-y: auto !important;
    padding-bottom: calc(18px + env(safe-area-inset-bottom)) !important;
    overscroll-behavior: contain;
  }

  .site-nav.is-open .nav-menu-list {
    width: 100%;
    padding-bottom: calc(10px + env(safe-area-inset-bottom));
  }

  .site-nav.is-open .mobile-language-switcher {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 8px;
    width: 100%;
    margin-top: 12px;
    padding: 14px 12px 12px;
    border: 1px solid rgba(255, 255, 255, 0.52);
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.76), rgba(255, 255, 255, 0.54));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7), 0 14px 28px rgba(60, 38, 27, 0.12);
    backdrop-filter: blur(14px) saturate(135%);
    -webkit-backdrop-filter: blur(14px) saturate(135%);
  }

  .site-nav.is-open .mobile-language-label {
    grid-column: 1 / -1;
    margin: 0 0 4px;
    color: #3c261b;
    opacity: 0.72;
    text-align: center;
  }

  .site-nav.is-open .mobile-language-switcher button {
    min-width: 0;
    width: 100%;
    min-height: 44px;
    margin: 0;
    color: #3c261b;
    background: linear-gradient(180deg, rgba(238, 205, 119, 0.96), rgba(222, 178, 78, 0.9));
    border: 1px solid rgba(176, 128, 45, 0.42);
    box-shadow: inset 0 1px 0 rgba(255, 245, 190, 0.55), 0 8px 18px rgba(60, 38, 27, 0.08);
  }

  .site-nav.is-open .mobile-language-switcher button[aria-pressed="true"] {
    background: linear-gradient(180deg, #f3dc93, #d7a93f);
    border-color: rgba(122, 82, 27, 0.38);
  }
}

