:root {
  color-scheme: light;
  --bg: #f4efe4;
  --paper: #fffaf0;
  --paper-strong: #fff4dd;
  --ink: #1a211c;
  --muted: #6d6d64;
  --green: #153b2a;
  --green-rgb: 21, 59, 42;
  --green-dark: #0d2418;
  --green-dark-rgb: 13, 36, 24;
  --green-2: #2f6b46;
  --green-2-rgb: 47, 107, 70;
  --amber: #c98734;
  --gold: #f0b354;
  --brick: #8b4635;
  --line: rgba(26, 33, 28, 0.14);
  --shadow: 0 18px 48px rgba(20, 25, 21, 0.16);
  --radius: 8px;
  --max: 1180px;
  --header-h: 78px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  overflow-x: clip;
}

[id] {
  scroll-margin-top: calc(var(--header-h) + 18px);
}

body {
  margin: 0;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  overflow-x: hidden;
  overflow-x: clip;
  background:
    linear-gradient(180deg, rgba(244, 239, 228, 0.9), rgba(255, 250, 240, 0.94)),
    var(--bg);
  color: var(--ink);
  line-height: 1.6;
}

body.nav-open {
  overflow: hidden;
}

main,
.hero,
.page-hero,
.section,
.notice-section,
.signature-section,
.site-footer {
  width: 100%;
  max-width: 100%;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

button,
input {
  font: inherit;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 999;
  transform: translateY(-150%);
  background: var(--paper);
  color: var(--green);
  padding: 0.7rem 1rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.skip-link:focus {
  transform: translateY(0);
}

.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: 50;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0 5vw;
  color: #fffaf0;
  background: linear-gradient(90deg, rgba(var(--green-dark-rgb), 0.88), rgba(var(--green-rgb), 0.76));
  border-bottom: 1px solid rgba(255, 250, 240, 0.16);
  backdrop-filter: blur(18px);
  transition: background 180ms ease, box-shadow 180ms ease;
}

.header-actions {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
}

.language-switch {
  display: inline-flex;
  gap: 0.2rem;
  padding: 0.18rem;
  border: 1px solid rgba(255, 250, 240, 0.22);
  border-radius: var(--radius);
  background: rgba(255, 250, 240, 0.08);
}

.language-switch button {
  min-width: 36px;
  min-height: 32px;
  padding: 0.28rem 0.48rem;
  border: 0;
  border-radius: calc(var(--radius) - 2px);
  color: rgba(255, 250, 240, 0.78);
  background: transparent;
  font-size: 0.78rem;
  font-weight: 900;
  cursor: pointer;
}

.language-switch button[aria-pressed="true"] {
  color: #18130b;
  background: var(--gold);
}

.site-header.is-scrolled {
  background: rgba(var(--green-rgb), 0.96);
  box-shadow: 0 12px 32px rgba(9, 18, 12, 0.24);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  text-decoration: none;
  min-width: max-content;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 250, 240, 0.44);
  background: rgba(255, 250, 240, 0.08);
  border-radius: 50%;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
}

.brand strong {
  display: block;
  letter-spacing: 0;
  font-size: 1.05rem;
}

.brand small {
  display: block;
  margin-top: -0.2rem;
  color: rgba(255, 250, 240, 0.72);
  font-size: 0.78rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.site-nav a {
  position: relative;
  text-decoration: none;
  padding: 0.65rem 0.7rem;
  color: rgba(255, 250, 240, 0.86);
  border-radius: var(--radius);
  font-size: 0.94rem;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0.8rem;
  right: 0.8rem;
  bottom: 0.45rem;
  height: 2px;
  background: var(--amber);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: #fff;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.site-nav a[aria-current="page"] {
  color: #fff;
  background: rgba(255, 250, 240, 0.08);
}

.site-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(255, 250, 240, 0.24);
  border-radius: var(--radius);
  background: rgba(255, 250, 240, 0.08);
  color: #fff;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 380px);
  align-items: end;
  gap: clamp(1rem, 3vw, 2.4rem);
  padding: calc(var(--header-h) + 6rem) 5vw 5rem;
  overflow: hidden;
  color: #fffaf0;
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(115deg, transparent 0 37%, rgba(240, 179, 84, 0.18) 46%, transparent 56% 100%),
    radial-gradient(ellipse at 74% 28%, rgba(240, 179, 84, 0.2), transparent 44%);
  mix-blend-mode: screen;
  animation: heroSweep 8s ease-in-out infinite alternate;
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 34%;
  background: linear-gradient(to top, rgba(9, 18, 12, 0.94), rgba(9, 18, 12, 0));
  z-index: -1;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(8, 18, 12, 0.84) 0%, rgba(8, 18, 12, 0.52) 42%, rgba(8, 18, 12, 0.2) 100%),
    var(--home-hero-image, url("../assets/generated/pub-hero.png")) center / cover no-repeat;
  transform: scale(1.03);
  animation: heroDrift 18s ease-in-out infinite alternate;
}

.hero-lights {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(240, 179, 84, 0.16), transparent 34%),
    linear-gradient(90deg, transparent, rgba(255, 250, 240, 0.12), transparent);
  opacity: 0.8;
  transform: translateX(-18%);
  animation: barLight 6s ease-in-out infinite;
  pointer-events: none;
}

.page-hero {
  position: relative;
  min-height: clamp(360px, 50svh, 560px);
  display: grid;
  align-items: end;
  padding: calc(var(--header-h) + 6rem) 5vw 4.8rem;
  color: #fffaf0;
  overflow: hidden;
  isolation: isolate;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(8, 18, 12, 0.84), rgba(8, 18, 12, 0.42)),
    var(--page-hero-image, url("../assets/photos/contact-wide.jpg")) center / cover no-repeat;
  transform: scale(1.04);
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(115deg, transparent 0 36%, rgba(240, 179, 84, 0.2) 48%, transparent 60% 100%),
    radial-gradient(ellipse at 72% 20%, rgba(240, 179, 84, 0.22), transparent 48%);
  mix-blend-mode: screen;
  animation: heroSweep 8s ease-in-out infinite alternate;
}

.page-hero-menu::before {
  background:
    linear-gradient(90deg, rgba(8, 18, 12, 0.86), rgba(8, 18, 12, 0.44)),
    var(--page-hero-image, url("../assets/photos/original-bar-main.jpg")) center / cover no-repeat;
}

.page-hero-location::before {
  background:
    linear-gradient(90deg, rgba(8, 18, 12, 0.88), rgba(8, 18, 12, 0.44)),
    var(--page-hero-image, url("../assets/photos/contact-wide.jpg")) center / cover no-repeat;
}

.page-hero-gallery::before {
  background:
    linear-gradient(90deg, rgba(8, 18, 12, 0.86), rgba(8, 18, 12, 0.36)),
    var(--page-hero-image, url("../assets/photos/gallery-09.jpg")) center / cover no-repeat;
}

.page-hero-events::before {
  background:
    linear-gradient(90deg, rgba(8, 18, 12, 0.86), rgba(8, 18, 12, 0.34)),
    var(--page-hero-image, url("../assets/photos/contact-wide.jpg")) center / cover no-repeat;
}

.page-hero-content {
  width: min(100%, var(--max));
  margin: 0 auto;
}

.page-hero h1 {
  max-width: 12ch;
  font-size: clamp(3.4rem, 9vw, 7.4rem);
}

.page-hero p:not(.eyebrow) {
  max-width: 660px;
  margin: 1rem 0 0;
  color: rgba(255, 250, 240, 0.84);
  font-size: clamp(1.05rem, 2vw, 1.24rem);
}

.page-hero p:not(.eyebrow):empty {
  display: none;
}

.hero-content {
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 0.8rem;
  color: var(--amber);
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.05;
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(4.1rem, 12vw, 8.8rem);
  max-width: 8ch;
  text-shadow: 0 10px 46px rgba(0, 0, 0, 0.45), 0 0 22px rgba(240, 179, 84, 0.28);
}

h2 {
  font-size: clamp(2.05rem, 5vw, 4.4rem);
}

h3 {
  font-size: 1.45rem;
}

.hero-lead {
  max-width: 610px;
  margin: 1.2rem 0 0;
  color: rgba(255, 250, 240, 0.84);
  font-size: clamp(1.05rem, 2vw, 1.26rem);
}

.hero-staples {
  display: inline-grid;
  gap: 0.15rem;
  margin: 0 0 1rem;
  padding: 0.7rem 0.86rem;
  color: #18130b;
  background: rgba(240, 179, 84, 0.92);
  border: 1px solid rgba(255, 250, 240, 0.22);
  border-radius: var(--radius);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.2);
}

.hero-staples span {
  color: rgba(24, 19, 11, 0.72);
  font-size: 0.72rem;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.hero-staples strong {
  font-size: 1.04rem;
  line-height: 1.15;
}

.hero-actions,
.contact-actions,
.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.8rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 46px;
  padding: 0.78rem 1.05rem;
  border: 1px solid transparent;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 800;
  line-height: 1.15;
  position: relative;
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button::after {
  content: "";
  position: absolute;
  inset: -40% auto -40% -60%;
  width: 52%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
  transform: skewX(-18deg);
  transition: left 360ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-3px) scale(1.015);
}

.button:hover::after,
.button:focus-visible::after {
  left: 120%;
}

.button-primary {
  background: var(--amber);
  color: #18130b;
  box-shadow: 0 12px 30px rgba(201, 135, 52, 0.32);
}

.button-ghost {
  color: #fffaf0;
  border-color: rgba(255, 250, 240, 0.38);
  background: rgba(255, 250, 240, 0.08);
}

.button-with-icon > span:first-child {
  display: inline-grid;
  place-items: center;
  width: 1.45rem;
  height: 1.45rem;
  border-radius: 50%;
  background: rgba(255, 250, 240, 0.16);
  font-weight: 900;
}

.hero-panel {
  align-self: end;
  background: rgba(255, 250, 240, 0.92);
  color: var(--ink);
  border: 1px solid rgba(255, 250, 240, 0.35);
  border-radius: var(--radius);
  padding: 1.3rem;
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
  transform-style: preserve-3d;
  animation: panelFloat 4.8s ease-in-out infinite;
}

.status-label {
  margin: 0;
  color: var(--muted);
  font-size: 0.8rem;
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.status {
  margin: 0.25rem 0 1.15rem;
  color: var(--green);
  font-size: 1.38rem;
  font-weight: 900;
  line-height: 1.18;
}

.status-note {
  margin: -0.55rem 0 1.15rem;
  padding: 0.7rem 0.8rem;
  color: var(--green);
  background: rgba(var(--green-rgb), 0.08);
  border: 1px solid rgba(var(--green-rgb), 0.16);
  border-radius: var(--radius);
  font-size: 0.92rem;
  font-weight: 750;
  line-height: 1.35;
}

.status-note[hidden] {
  display: none;
}

.hero-panel dl,
.business-details {
  margin: 0;
}

.hero-panel div,
.business-details div {
  border-top: 1px solid var(--line);
  padding-top: 0.9rem;
  margin-top: 0.9rem;
}

dt {
  color: var(--muted);
  font-size: 0.8rem;
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 0.06em;
}

dd {
  margin: 0.2rem 0 0;
}

.notice-section {
  position: relative;
  z-index: 2;
  overflow: visible;
  padding: clamp(0.95rem, 2vw, 1.35rem) 5vw;
  color: #fffaf0;
  background:
    linear-gradient(90deg, rgba(var(--green-rgb), 0.98), rgba(var(--green-2-rgb), 0.95)),
    var(--green);
}

.notice-section[hidden] {
  display: none;
}

.notice-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) clamp(180px, 22vw, 300px);
  gap: 0.8rem clamp(1rem, 4vw, 2rem);
  align-items: center;
}

.notice-copy {
  min-width: 0;
}

.notice-inner .eyebrow {
  margin: 0;
  color: var(--gold);
}

.notice-inner h2 {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(1.25rem, 3vw, 2rem);
  font-weight: 900;
}

.notice-inner h2:empty {
  display: none;
}

.notice-inner p:not(.eyebrow) {
  margin: 0;
  color: rgba(255, 250, 240, 0.88);
  font-size: clamp(1rem, 2vw, 1.16rem);
  white-space: pre-wrap;
}

.notice-inner p:not(.eyebrow):empty {
  display: none;
}

.notice-image {
  display: block;
  align-self: center;
  height: clamp(150px, 16vw, 220px);
  margin-block: -1.45rem;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 22px 56px rgba(0, 0, 0, 0.22);
  transform: translateY(0.8rem);
}

.notice-image[hidden] {
  display: none;
}

.notice-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 260ms ease, filter 260ms ease;
}

.notice-image:hover img,
.notice-image:focus-visible img {
  transform: scale(1.06);
  filter: saturate(1.15) contrast(1.06);
}

.notice-dots {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  gap: 0.45rem;
  margin-top: 0.15rem;
}

.notice-dots[hidden] {
  display: none;
}

.notice-dots button {
  width: 0.72rem;
  height: 0.72rem;
  padding: 0;
  border: 1px solid rgba(255, 250, 240, 0.78);
  border-radius: 999px;
  background: rgba(255, 250, 240, 0.18);
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.notice-dots button.is-active {
  border-color: var(--gold);
  background: var(--gold);
  transform: scale(1.25);
}

.notice-dots button:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.section {
  padding: clamp(4rem, 9vw, 7.5rem) 5vw;
}

.section-inner {
  width: min(100%, var(--max));
  margin: 0 auto;
}

.signature-section {
  position: relative;
  padding: clamp(3.5rem, 7vw, 6rem) 5vw;
  background:
    linear-gradient(180deg, #101912, #18291e 55%, #101912);
  color: #fffaf0;
  overflow: hidden;
}

.signature-section::before,
.signature-section::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.signature-section::before {
  background:
    repeating-linear-gradient(90deg, rgba(255, 250, 240, 0.04) 0 1px, transparent 1px 92px),
    linear-gradient(120deg, transparent, rgba(201, 135, 52, 0.14), transparent);
  opacity: 0.7;
}

.signature-section::after {
  background: linear-gradient(90deg, transparent 0 25%, rgba(240, 179, 84, 0.16), transparent 75% 100%);
  animation: signatureGlow 7s ease-in-out infinite alternate;
}

.signature-section .section-inner {
  position: relative;
  z-index: 1;
}

.signature-heading {
  max-width: 780px;
  margin: 0 auto clamp(1.6rem, 3vw, 2.4rem);
  text-align: center;
}

.signature-heading h2 {
  font-size: clamp(2.3rem, 4.2vw, 4.7rem);
}

.signature-heading h2 {
  max-width: none;
}

.signature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(0.9rem, 1.6vw, 1.2rem);
}

.signature-card {
  position: relative;
  min-height: clamp(300px, 27vw, 410px);
  display: grid;
  align-items: end;
  padding: clamp(0.95rem, 1.4vw, 1.2rem);
  border: 1px solid rgba(255, 250, 240, 0.16);
  border-radius: var(--radius);
  overflow: hidden;
  background: #101912;
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.24);
  transform: perspective(1000px) rotateX(var(--tilt-y, 0deg)) rotateY(var(--tilt-x, 0deg));
  transition: transform 240ms ease, border-color 240ms ease, box-shadow 240ms ease;
}

.signature-card.featured {
  grid-row: auto;
}

.signature-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(7, 12, 9, 0.06), rgba(7, 12, 9, 0.5) 43%, rgba(7, 12, 9, 0.92)),
    linear-gradient(90deg, rgba(7, 12, 9, 0.55), transparent 58%);
}

.signature-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(115deg, transparent 0 34%, rgba(255, 250, 240, 0.24) 45%, transparent 56% 100%);
  transform: translateX(-120%);
  transition: transform 520ms ease;
}

.signature-card:hover,
.signature-card:focus-within {
  border-color: rgba(240, 179, 84, 0.62);
  box-shadow: 0 30px 88px rgba(0, 0, 0, 0.36);
}

.signature-card:hover::after,
.signature-card:focus-within::after {
  transform: translateX(120%);
}

.signature-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.12) contrast(1.08);
  transform: scale(1.04);
  transition: transform 560ms ease, filter 560ms ease;
}

.signature-card:hover img {
  transform: scale(1.12);
  filter: saturate(1.25) contrast(1.12);
}

.signature-card div {
  position: relative;
  z-index: 3;
  max-width: 100%;
  min-width: 0;
}

.signature-card span {
  display: inline-block;
  margin-bottom: 0.4rem;
  color: var(--gold);
  font-size: clamp(0.68rem, 0.82vw, 0.78rem);
  font-weight: 900;
  text-transform: uppercase;
}

.signature-card h3 {
  max-width: 100%;
  font-size: clamp(1.45rem, 1.75vw, 2.25rem);
  line-height: 0.98;
  overflow-wrap: anywhere;
  text-wrap: balance;
  text-shadow: 0 8px 30px rgba(0, 0, 0, 0.46);
}

.signature-card strong {
  display: inline-flex;
  margin-top: 0.7rem;
  padding: 0.38rem 0.58rem;
  color: #18130b;
  background: var(--gold);
  border-radius: var(--radius);
  font-size: 0.98rem;
}

.about-section {
  background: var(--paper);
}

.about-grid,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1.08fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}

.about-grid-simple {
  grid-template-columns: minmax(0, 760px);
  justify-content: center;
  text-align: center;
}

.about-grid-simple .about-copy p:not(.eyebrow) {
  margin-left: auto;
  margin-right: auto;
}

.about-copy p:not(.eyebrow),
.section-heading p {
  max-width: 670px;
  color: var(--muted);
  font-size: 1.05rem;
}

.highlights {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
  margin-top: 2rem;
}

.highlights div,
.hours-card,
.menu-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 250, 240, 0.72);
}

.highlights div {
  padding: 1rem;
}

.highlights strong {
  display: block;
  color: var(--green);
  font-size: 1.15rem;
}

.highlights span {
  color: var(--muted);
  font-size: 0.86rem;
}

.home-quick-section {
  background:
    linear-gradient(180deg, rgba(244, 239, 228, 0.94), rgba(255, 250, 240, 0.96)),
    var(--bg);
}

.quick-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(0.9rem, 1.8vw, 1.35rem);
}

.quick-card,
.contact-panel {
  position: relative;
  padding: clamp(1.1rem, 2vw, 1.45rem);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 250, 240, 0.8);
  box-shadow: 0 16px 38px rgba(20, 25, 21, 0.08);
  overflow: hidden;
}

.quick-card::before,
.contact-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(240, 179, 84, 0.16), transparent 42%);
  opacity: 0.72;
  pointer-events: none;
}

.quick-card > *,
.contact-panel > * {
  position: relative;
}

.quick-card > span {
  display: inline-flex;
  margin-bottom: 1.2rem;
  color: var(--amber);
  font-weight: 900;
}

.quick-card h3,
.contact-panel h3 {
  color: var(--green);
}

.quick-card p {
  margin: 0.7rem 0 0;
  color: var(--muted);
}

.quick-card a {
  color: var(--green);
  font-weight: 800;
  text-decoration-color: rgba(var(--green-rgb), 0.28);
}

.quick-card ul {
  list-style: none;
  padding: 0;
  margin: 0.8rem 0 0;
}

.quick-card li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.42rem 0;
  border-bottom: 1px solid rgba(26, 33, 28, 0.1);
}

.quick-card li:last-child {
  border-bottom: 0;
}

.quick-card li strong {
  color: var(--green);
}

.about-media {
  min-height: 420px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.about-media img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.menu-section {
  background:
    linear-gradient(180deg, rgba(244, 239, 228, 0.95), rgba(255, 250, 240, 0.96)),
    url("../assets/photos/contact-square.jpg") center / cover fixed;
  position: relative;
  overflow: hidden;
}

.menu-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(135deg, rgba(var(--green-rgb), 0.035) 0 1px, transparent 1px 24px),
    linear-gradient(90deg, transparent, rgba(201, 135, 52, 0.1), transparent);
  pointer-events: none;
}

.menu-section .section-inner {
  position: relative;
  z-index: 1;
}

.section-heading {
  max-width: 780px;
  margin: 0 auto 2rem;
  text-align: center;
}

.section-heading h2 {
  max-width: none;
}

.section-heading p {
  margin-left: auto;
  margin-right: auto;
}

.menu-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1rem;
}

.search-field {
  flex: 1 1 360px;
}

.search-field input {
  width: 100%;
  min-height: 48px;
  padding: 0.85rem 1rem;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  outline: none;
}

.search-field input:focus {
  border-color: var(--green-2);
  box-shadow: 0 0 0 3px rgba(47, 107, 70, 0.16);
}

.menu-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.45rem;
  color: var(--green);
  font-size: 0.9rem;
  font-weight: 800;
}

.menu-meta span,
.category-tabs button,
.social-links a {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.menu-meta span {
  padding: 0.55rem 0.7rem;
}

.menu-meta .wifi-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  min-height: 52px;
  padding: 0.65rem 0.95rem;
  color: #18130b;
  background: linear-gradient(135deg, var(--gold), #fff0bd 58%, var(--amber));
  border: 2px solid rgba(var(--green-rgb), 0.72);
  box-shadow: 0 16px 34px rgba(201, 135, 52, 0.3);
}

.wifi-badge strong {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--green);
}

.wifi-badge em {
  font-style: normal;
  font-weight: 900;
  font-size: 1.02rem;
}

.category-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  overflow: visible;
  padding: 0.2rem 0.1rem 1.25rem;
  scrollbar-width: thin;
}

.category-tabs button {
  flex: 0 0 auto;
  padding: 0.7rem 0.9rem;
  color: var(--green);
  font-weight: 800;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease, box-shadow 160ms ease;
}

.category-tabs button.is-active {
  color: #fffaf0;
  background: var(--green);
  border-color: var(--green);
  box-shadow: 0 10px 28px rgba(var(--green-rgb), 0.26);
}

.category-tabs button.show-all {
  border-color: rgba(201, 135, 52, 0.72);
  background: linear-gradient(180deg, #fffaf0, #ffe5b2);
  box-shadow: 0 10px 24px rgba(201, 135, 52, 0.16);
}

.category-tabs button.show-all.is-active {
  color: #18130b;
  background: var(--gold);
  border-color: var(--gold);
}

.category-tabs button:hover,
.category-tabs button:focus-visible {
  transform: translateY(-2px);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(0.9rem, 1.7vw, 1.35rem);
}

.menu-fallback-note {
  grid-column: 1 / -1;
  margin: 0 0 0.2rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.menu-card {
  position: relative;
  padding: clamp(1.05rem, 1.7vw, 1.45rem);
  overflow: hidden;
  background: rgba(255, 250, 240, 0.86);
  box-shadow: 0 16px 38px rgba(20, 25, 21, 0.09);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.menu-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(240, 179, 84, 0.18), transparent 36%);
  opacity: 0;
  transition: opacity 220ms ease;
  pointer-events: none;
}

.menu-card:hover {
  transform: translateY(-6px);
  border-color: rgba(201, 135, 52, 0.42);
  box-shadow: 0 22px 52px rgba(20, 25, 21, 0.16);
}

.menu-card:hover::before {
  opacity: 1;
}

.menu-card h3 {
  color: var(--green);
  padding-bottom: 0.85rem;
  border-bottom: 1px solid var(--line);
  font-size: clamp(1.25rem, 1.8vw, 1.55rem);
}

.menu-card ul {
  list-style: none;
  padding: 0;
  margin: 0.9rem 0 0;
}

.menu-card li {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.7rem;
  align-items: baseline;
  padding: 0.62rem 0;
  border-bottom: 1px dashed rgba(26, 33, 28, 0.14);
}

.menu-card li:last-child {
  border-bottom: 0;
}

.item-name {
  min-width: 0;
  font-weight: 720;
  overflow-wrap: anywhere;
  font-size: 0.98rem;
}

.item-name-en {
  display: block;
  margin-top: 0.14rem;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 560;
}

.item-volume {
  display: inline-block;
  margin-left: 0.35rem;
  color: var(--muted);
  font-weight: 650;
  font-size: 0.92rem;
}

.item-price {
  color: var(--brick);
  font-weight: 900;
  white-space: nowrap;
}

.menu-empty {
  grid-column: 1 / -1;
  padding: 2rem;
  text-align: center;
  color: var(--muted);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.social-links a {
  padding: 0.72rem 0.9rem;
  color: var(--green);
  text-decoration: none;
  font-weight: 800;
}

.gallery-section {
  background:
    linear-gradient(180deg, #17221c, #0f1a13);
  color: #fffaf0;
}

.gallery-section .section-heading p {
  color: rgba(255, 250, 240, 0.7);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: 180px;
  grid-auto-flow: dense;
  gap: clamp(0.7rem, 1.4vw, 1rem);
}

.gallery-item {
  position: relative;
  padding: 0;
  border: 0;
  border-radius: var(--radius);
  background: #263127;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.24);
}

.gallery-item::after {
  content: "Zobrazit";
  position: absolute;
  left: 0.8rem;
  bottom: 0.8rem;
  z-index: 2;
  padding: 0.45rem 0.62rem;
  color: #18130b;
  background: var(--gold);
  border-radius: var(--radius);
  font-weight: 900;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 200ms ease, transform 200ms ease;
}

.gallery-item.wide {
  grid-column: span 6;
  grid-row: span 2;
}

.gallery-item.tall {
  grid-column: span 3;
  grid-row: span 2;
}

.gallery-item:not(.wide):not(.tall) {
  grid-column: span 3;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 260ms ease, filter 260ms ease;
}

.gallery-item:hover img,
.gallery-item:focus-visible img {
  transform: scale(1.08) rotate(0.4deg);
  filter: saturate(1.24) contrast(1.1);
}

.gallery-item:hover::after,
.gallery-item:focus-visible::after {
  opacity: 1;
  transform: translateY(0);
}

.contact-section {
  background: var(--paper);
}

.contact-grid {
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.62fr);
  align-items: stretch;
}

.contact-copy {
  align-self: center;
}

.contact-copy > p {
  color: var(--muted);
}

.contact-actions .button-ghost {
  color: var(--green);
  background: transparent;
  border-color: var(--line);
}

.business-details {
  max-width: 520px;
  margin-top: 1.8rem;
  display: grid;
  gap: 0.12rem;
}

.business-details dt,
.business-details dd {
  margin: 0;
  padding: 0;
  border: 0;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 650;
  line-height: 1.55;
}

.business-details dt {
  text-transform: none;
  letter-spacing: 0;
}

.business-details dd {
  margin-top: 0.18rem;
}

.business-details dd:last-child {
  color: var(--ink);
}

.transit-card {
  align-self: stretch;
  background: rgba(255, 244, 221, 0.86);
}

.transit-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
}

.transit-list li {
  display: grid;
  gap: 0.2rem;
  padding: 0.72rem 0;
  border-bottom: 1px solid var(--line);
}

.transit-list li:last-child {
  border-bottom: 0;
}

.transit-list strong {
  color: var(--green);
}

.transit-list span {
  color: var(--muted);
}

.transit-note {
  position: relative;
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.hours-card {
  align-self: start;
  padding: 1.3rem;
  background: var(--paper-strong);
}

.hours-card ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
}

.hours-card li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.52rem 0;
  border-bottom: 1px solid var(--line);
}

.hours-card li:last-child {
  border-bottom: 0;
}

.hours-card strong {
  color: var(--green);
}

.hours-note {
  margin: 0.9rem 0 0;
  padding: 0.75rem 0.85rem;
  color: var(--green);
  background: rgba(var(--green-rgb), 0.08);
  border: 1px solid rgba(var(--green-rgb), 0.18);
  border-radius: var(--radius);
  font-weight: 750;
  white-space: pre-line;
}

.hours-note[hidden] {
  display: none;
}

.map-panel {
  grid-column: 1 / -1;
  min-height: 360px;
  display: grid;
  align-content: end;
  gap: 0.4rem;
  padding: clamp(1.2rem, 4vw, 2rem);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  color: #fffaf0;
  text-decoration: none;
  background:
    linear-gradient(180deg, rgba(14, 23, 16, 0.08), rgba(14, 23, 16, 0.74)),
    var(--map-panel-image, url("../assets/photos/contact-wide.jpg")) center / cover no-repeat;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.map-panel:hover,
.map-panel:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 26px 70px rgba(20, 25, 21, 0.24);
}

.map-panel span {
  font-size: 1.05rem;
  color: rgba(255, 250, 240, 0.82);
}

.map-panel strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1.05;
}

.events-section {
  background:
    radial-gradient(circle at 82% 8%, rgba(240, 179, 84, 0.18), transparent 28%),
    linear-gradient(180deg, #fffaf0, #f4efe4);
}

.events-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 0.72fr);
  gap: clamp(1rem, 3vw, 2rem);
  align-items: start;
}

.events-copy,
.events-price {
  padding: clamp(1.2rem, 3vw, 2rem);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 250, 240, 0.86);
  box-shadow: 0 18px 46px rgba(20, 25, 21, 0.1);
}

.events-copy h2 {
  color: var(--green);
}

.events-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.06rem;
}

.event-food-list {
  display: grid;
  gap: 0.7rem;
  padding: 0;
  margin: 1.2rem 0;
  list-style: none;
}

.event-food-list li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  min-height: 54px;
  padding: 0.7rem 0.9rem;
  border: 1px solid rgba(201, 135, 52, 0.24);
  border-radius: var(--radius);
  background: #fffdf7;
}

.event-food-list span {
  font-size: 1.35rem;
}

.event-order {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.72rem 0.9rem;
  color: #18130b;
  background: var(--gold);
  border-radius: var(--radius);
}

.event-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  align-items: center;
  margin-top: 1.3rem;
}

.event-contact strong {
  color: var(--green);
}

.event-contact a {
  padding: 0.68rem 0.82rem;
  color: var(--green);
  background: #fffdf7;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 850;
}

.events-price h2 {
  margin-bottom: 1rem;
  color: var(--green);
  font-size: clamp(1.8rem, 4vw, 3rem);
}

.events-menu-grid {
  grid-template-columns: 1fr;
}

.events-price-card {
  background: #fffdf7;
}

.site-footer {
  padding: clamp(2.4rem, 5vw, 4rem) 5vw;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(255, 250, 240, 0.94), rgba(244, 239, 228, 0.98)),
    var(--paper);
}

.footer-contact {
  width: min(100%, 720px);
  margin: 0 auto;
  display: grid;
  gap: 0.75rem;
}

.footer-wifi {
  justify-self: center;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  min-height: 50px;
  padding: 0.75rem 1.05rem;
  color: #18130b;
  background: linear-gradient(135deg, var(--gold), #fff0bd 58%, var(--amber));
  border: 2px solid rgba(var(--green-rgb), 0.72);
  border-radius: var(--radius);
  box-shadow: 0 16px 34px rgba(201, 135, 52, 0.22);
  font-weight: 900;
}

.footer-wifi[hidden] {
  display: none;
}

.footer-wifi strong {
  color: var(--green);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.footer-wifi em {
  font-style: normal;
}

.footer-button,
.footer-map {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.78rem 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--green);
  background: rgba(255, 250, 240, 0.8);
  text-decoration: none;
  font-weight: 900;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.footer-button-primary {
  color: #18130b;
  background: var(--amber);
  border-color: var(--amber);
}

.footer-map {
  color: #fffaf0;
  background: var(--green);
  border-color: var(--green);
}

.footer-button:hover,
.footer-button:focus-visible,
.footer-map:hover,
.footer-map:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(20, 25, 21, 0.12);
}

.footer-business {
  margin: 1.1rem 0 0;
  display: grid;
  gap: 0.16rem;
}

.footer-business dt,
.footer-business dd {
  margin: 0;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 750;
  line-height: 1.45;
  text-transform: none;
  letter-spacing: 0;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 5vw;
  background: rgba(9, 18, 12, 0.9);
}

.lightbox[hidden] {
  display: none;
}

.lightbox img {
  max-height: 84svh;
  border-radius: var(--radius);
  box-shadow: 0 20px 80px rgba(0, 0, 0, 0.42);
}

.lightbox-close {
  position: absolute;
  right: 5vw;
  top: 5vw;
  border: 1px solid rgba(255, 250, 240, 0.3);
  border-radius: var(--radius);
  background: rgba(255, 250, 240, 0.1);
  color: #fffaf0;
  padding: 0.75rem 0.95rem;
  font-weight: 800;
  cursor: pointer;
}

.reveal {
  opacity: 1;
  transform: none;
}

.js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes heroDrift {
  from {
    transform: scale(1.03) translateX(0);
  }

  to {
    transform: scale(1.08) translateX(-1.8%);
  }
}

@keyframes heroSweep {
  from {
    opacity: 0.34;
    transform: translateX(-12%);
  }

  to {
    opacity: 0.82;
    transform: translateX(12%);
  }
}

@keyframes barLight {
  0%,
  100% {
    opacity: 0.22;
    transform: translateX(-24%);
  }

  50% {
    opacity: 0.92;
    transform: translateX(24%);
  }
}

@keyframes panelFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

@keyframes signatureGlow {
  from {
    opacity: 0.22;
    transform: translateX(-10%);
  }

  to {
    opacity: 0.7;
    transform: translateX(10%);
  }
}

@media (max-width: 980px) {
  :root {
    --header-h: 70px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: var(--header-h) 0 auto;
    display: grid;
    gap: 0;
    padding: 0.7rem 5vw 1.2rem;
    background: rgba(var(--green-rgb), 0.98);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 180ms ease, transform 220ms ease, visibility 180ms ease;
    border-bottom: 1px solid rgba(255, 250, 240, 0.14);
  }

  body.nav-open .site-nav {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    padding: 0.9rem 0;
  }

  .site-nav a::after {
    left: 0;
    right: auto;
    width: 48px;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: 860px;
    padding-top: calc(var(--header-h) + 4.5rem);
  }

  .hero-content {
    align-self: end;
  }

  .hero-panel {
    max-width: 460px;
  }

  .section-heading,
  .about-grid,
  .contact-grid,
  .events-grid {
    grid-template-columns: 1fr;
  }

  .signature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: minmax(300px, 44vw);
  }

  .signature-card.featured {
    grid-row: auto;
  }

  .menu-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .events-menu-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 240px;
  }

  .gallery-item.wide {
    grid-column: span 2;
    grid-row: span 1;
  }

  .gallery-item.tall {
    grid-column: span 1;
    grid-row: span 2;
  }

  .gallery-item:not(.wide):not(.tall) {
    grid-column: span 1;
  }
}

@media (max-width: 640px) {
  :root {
    --header-h: 54px;
  }

  .site-header {
    inset: 0.55rem 0.55rem auto;
    height: var(--header-h);
    padding-inline: 0.62rem;
    background: linear-gradient(180deg, rgba(9, 18, 12, 0.66), rgba(9, 18, 12, 0.18));
    border: 1px solid rgba(255, 250, 240, 0.12);
    border-radius: var(--radius);
    box-shadow: none;
    backdrop-filter: blur(10px);
  }

  .site-header.is-scrolled,
  body.nav-open .site-header {
    background: rgba(var(--green-rgb), 0.94);
    border-color: rgba(255, 250, 240, 0.14);
    box-shadow: 0 10px 24px rgba(9, 18, 12, 0.2);
    backdrop-filter: blur(14px);
  }

  .brand {
    gap: 0.55rem;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
    background: rgba(9, 18, 12, 0.32);
    font-size: 1.2rem;
  }

  .brand strong {
    font-size: 0.9rem;
  }

  .brand small {
    display: none;
  }

  .nav-toggle {
    width: 38px;
    height: 38px;
    background: rgba(9, 18, 12, 0.28);
    border-color: rgba(255, 250, 240, 0.28);
  }

  .header-actions {
    gap: 0.42rem;
  }

  .language-switch {
    padding: 0.12rem;
  }

  .language-switch button {
    min-width: 31px;
    min-height: 30px;
    padding: 0.18rem 0.32rem;
    font-size: 0.72rem;
  }

  .site-nav {
    inset: calc(var(--header-h) + 0.8rem) 0.55rem auto;
    border-radius: var(--radius);
  }

  .hero {
    min-height: 780px;
    padding: calc(var(--header-h) + 3rem) 1rem 2.2rem;
  }

  .page-hero {
    min-height: 430px;
    padding: calc(var(--header-h) + 4.2rem) 1rem 3rem;
  }

  .page-hero h1 {
    font-size: clamp(2.7rem, 15vw, 4.4rem);
  }

  .hero-media {
    background-position: 58% center;
  }

  .hero-actions,
  .contact-actions,
  .social-links,
  .menu-toolbar {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .section {
    padding-inline: 1rem;
  }

  .notice-section {
    padding: 1rem;
  }

  .notice-inner {
    grid-template-columns: 1fr;
  }

  .notice-image {
    height: 190px;
    margin-block: 0;
    transform: none;
  }

  .notice-inner p:not(.eyebrow) {
    grid-column: auto;
  }

  .section-heading {
    margin-bottom: 1.35rem;
  }

  .signature-section {
    padding-inline: 1rem;
  }

  .signature-heading {
    align-items: start;
    flex-direction: column;
  }

  .signature-grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-auto-rows: unset;
    gap: 0.9rem;
    margin-inline: 0;
    overflow: visible;
    padding: 0;
    scroll-snap-type: none;
  }

  .signature-card {
    width: 100%;
    min-height: 350px;
    scroll-snap-align: unset;
  }

  .menu-section {
    background-attachment: scroll;
  }

  .menu-toolbar {
    gap: 0.75rem;
    margin-bottom: 0.85rem;
  }

  .search-field {
    flex: 0 0 auto;
    width: 100%;
  }

  .menu-meta {
    justify-content: flex-start;
    width: 100%;
  }

  .menu-meta .wifi-badge {
    min-height: 46px;
    padding: 0.58rem 0.82rem;
  }

  .category-tabs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.55rem;
    overflow: visible;
    padding: 0 0 1rem;
  }

  .category-tabs button {
    width: 100%;
    min-height: 48px;
    padding: 0.62rem 0.48rem;
    white-space: normal;
    overflow-wrap: anywhere;
    line-height: 1.16;
    text-align: center;
  }

  .highlights {
    grid-template-columns: 1fr;
  }

  .quick-grid {
    grid-template-columns: 1fr;
  }

  .about-media,
  .about-media img {
    min-height: 310px;
  }

  .menu-grid {
    grid-template-columns: 1fr;
  }

  .events-menu-grid {
    grid-template-columns: 1fr;
  }

  .events-copy,
  .events-price {
    padding: 1rem;
  }

  .event-contact {
    display: grid;
    align-items: stretch;
  }

  .menu-meta {
    justify-content: flex-start;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 260px;
  }

  .gallery-item.wide,
  .gallery-item.tall {
    grid-column: auto;
    grid-row: auto;
  }

  .site-footer {
    padding-inline: 1rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .hero-media {
    transform: none;
    animation: none;
  }

  .hero::before,
  .hero-lights,
  .hero-panel,
  .signature-section::after {
    animation: none;
  }
}
