:root {
  --ink: #1c241b;
  --text: #354033;
  --muted: #687363;
  --paper: #fbf6ec;
  --paper-2: #f1eadc;
  --white: #fffef9;
  --green: #123820;
  --green-2: #2f5b35;
  --moss: #7c8f4e;
  --brick: #b94c2c;
  --gold: #c89b3f;
  --blue: #d9e8ec;
  --line: rgba(28, 36, 27, 0.14);
  --line-strong: rgba(28, 36, 27, 0.24);
  --shadow: 0 18px 42px rgba(28, 36, 27, 0.12);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Trebuchet MS", "Segoe UI", sans-serif;
  background:
    linear-gradient(90deg, rgba(18, 56, 32, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(18, 56, 32, 0.035) 1px, transparent 1px),
    var(--paper);
  background-size: 44px 44px;
}

img,
svg {
  max-width: 100%;
}

a {
  color: inherit;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 0.8rem;
  left: 0.8rem;
  z-index: 100;
  padding: 0.75rem 1rem;
  color: var(--green);
  font-weight: 900;
  text-decoration: none;
  background: var(--white);
  border: 2px solid var(--gold);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transform: translateY(-150%);
  transition: transform 160ms ease;
}

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

p,
h1,
h2,
h3,
figure {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 1.1rem;
  font-size: clamp(2.7rem, 6vw, 5.6rem);
  line-height: 0.98;
}

h2 {
  max-width: 760px;
  margin-bottom: 1rem;
  font-size: clamp(2rem, 4.2vw, 4rem);
  line-height: 1.04;
}

h3 {
  margin-bottom: 0.65rem;
  font-size: clamp(1.35rem, 2.3vw, 2rem);
  line-height: 1.1;
}

.section-shell {
  width: min(1180px, calc(100% - 2rem));
  margin-inline: auto;
}

.section {
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.eyebrow {
  margin: 0 0 0.7rem;
  color: var(--brick);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 2rem;
}

.section-heading p,
.text-stack p,
.hero-copy p,
.menu-hero p,
.contact-grid p,
.legal-content p,
.form-hero p:not(.eyebrow) {
  color: var(--text);
  font-size: clamp(1rem, 1.2vw, 1.12rem);
  line-height: 1.68;
}

.button,
.nav-cta,
.nav-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.9rem;
  padding: 0.8rem 1rem;
  font-weight: 900;
  text-decoration: none;
  border-radius: var(--radius);
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.button:hover,
.nav-cta:hover,
.nav-link:hover {
  transform: translateY(-1px);
}

.button-primary,
.nav-cta {
  color: #fff;
  background: var(--brick);
  border: 1px solid var(--brick);
}

.button-primary:hover,
.nav-cta:hover {
  background: #963d25;
}

.button-light {
  color: var(--green);
  background: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.75);
}

.button-quiet {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.button-whatsapp {
  color: #fff;
  background: #18864f;
  border: 1px solid #18864f;
}

.whatsapp-disabled-toast {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 120;
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  width: min(420px, calc(100vw - 2rem));
  padding: 1rem;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line-strong);
  border-left: 5px solid #18864f;
  border-radius: var(--radius);
  box-shadow: 0 18px 42px rgba(18, 56, 32, 0.22);
  opacity: 0;
  pointer-events: none;
  transform: translateY(1rem);
  transition: opacity 180ms ease, transform 180ms ease;
}

.whatsapp-disabled-toast.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.whatsapp-disabled-toast__content {
  display: grid;
  gap: 0.25rem;
}

.whatsapp-disabled-toast__content strong {
  color: var(--green);
  font-size: 0.98rem;
}

.whatsapp-disabled-toast__content span {
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.45;
}

.whatsapp-disabled-toast__close {
  display: inline-grid;
  flex: 0 0 auto;
  place-items: center;
  width: 2rem;
  height: 2rem;
  margin: -0.35rem -0.35rem 0 0;
  color: var(--muted);
  font: inherit;
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  background: transparent;
  border: 0;
  border-radius: 50%;
}

.whatsapp-disabled-toast__close:hover {
  color: var(--green);
  background: var(--paper-2);
}

.site-header {
  position: fixed;
  top: 0.85rem;
  left: 50%;
  z-index: 50;
  display: grid;
  grid-template-columns: 1fr auto;
  column-gap: 0.6rem;
  row-gap: 0;
  align-items: center;
  width: min(1180px, calc(100% - 1rem));
  padding: 0.5rem;
  color: var(--white);
  background: rgba(18, 56, 32, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  box-shadow: 0 12px 32px rgba(18, 56, 32, 0.22);
  backdrop-filter: blur(14px);
  transform: translateX(-50%);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  text-decoration: none;
}

.brand-logo {
  display: block;
  width: auto;
  height: 2.75rem;
  max-width: calc(100vw - 6rem);
}

.main-nav {
  display: grid;
  grid-column: 1 / -1;
  grid-row: 2;
  grid-template-columns: 1fr;
  gap: 0.35rem;
  max-height: 0;
  overflow: hidden;
  visibility: hidden;
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
  transition: max-height 220ms ease, padding 220ms ease;
}

.main-nav a {
  padding: 0.8rem 0.9rem;
  color: #fff;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
}

.main-nav a:hover,
.main-nav a:focus-visible,
.main-nav a[aria-current="page"] {
  outline: 0;
  color: var(--green);
  background: var(--white);
}

.site-header.nav-open .main-nav {
  max-height: 30rem;
  padding-top: 0.4rem;
  visibility: visible;
}

.nav-actions {
  display: flex;
  gap: 0.45rem;
  align-items: center;
  justify-self: end;
}

.nav-link,
.nav-cta {
  display: none;
}

.nav-link {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.menu-toggle {
  display: grid;
  width: 2.7rem;
  height: 2.7rem;
  padding: 0;
  align-content: center;
  justify-content: center;
  gap: 0.34rem;
  color: #fff;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
}

.menu-toggle span {
  display: block;
  width: 1.25rem;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
  transition: transform 180ms ease;
}

.site-header.nav-open .menu-toggle span:first-child {
  transform: translateY(0.17rem) rotate(45deg);
}

.site-header.nav-open .menu-toggle span:last-child {
  transform: translateY(-0.17rem) rotate(-45deg);
}

.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
  color: #fff;
  background: var(--green);
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: 2;
  content: "";
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 52px 52px;
  opacity: 0.42;
  pointer-events: none;
}

.hero::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background:
    linear-gradient(90deg, rgba(18, 56, 32, 0.88) 0%, rgba(18, 56, 32, 0.62) 48%, rgba(18, 56, 32, 0.25) 100%),
    linear-gradient(0deg, rgba(18, 56, 32, 0.35), rgba(18, 56, 32, 0.08));
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  min-height: 100vh;
  padding: clamp(6.2rem, 11svh, 7.4rem) 0 clamp(1.6rem, 4svh, 2.8rem);
}

.hero-copy {
  max-width: 760px;
  text-shadow: 0 2px 22px rgba(0, 0, 0, 0.38);
}

.hero-title-brand {
  font-weight: 900;
}

.hero .eyebrow,
.section-dark .eyebrow,
.contact-band .eyebrow {
  color: var(--gold);
}

.hero-copy p {
  color: rgba(255, 255, 255, 0.8);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.35rem;
}

.current-info-band {
  padding: clamp(1rem, 2.8vw, 1.45rem) 0;
  background:
    linear-gradient(135deg, rgba(255, 254, 249, 0.96), rgba(241, 234, 220, 0.94)),
    var(--paper-2);
  border-bottom: 1px solid var(--line);
}

.current-info-list {
  display: grid;
  gap: 0.85rem;
}

.current-info-card {
  padding: clamp(1rem, 2.4vw, 1.35rem);
  background: var(--white);
  border: 1px solid rgba(185, 76, 44, 0.22);
  border-left: 0.35rem solid var(--brick);
  border-radius: var(--radius);
  box-shadow: 0 14px 32px rgba(28, 36, 27, 0.08);
}

.current-info-card .eyebrow {
  margin-bottom: 0.45rem;
  color: var(--brick);
}

.current-info-card p:last-child {
  margin-bottom: 0;
  color: var(--text);
  font-size: clamp(1rem, 1.25vw, 1.12rem);
  font-weight: 900;
  line-height: 1.5;
}

.current-info-inline {
  margin: -0.45rem 0 1rem;
}

.current-info-list-compact .current-info-card {
  box-shadow: none;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}

.text-stack p:last-child,
.section-heading p:last-child {
  margin-bottom: 0;
}

.inline-photo,
.event-photo {
  position: relative;
  overflow: hidden;
  margin: 0;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.inline-photo img,
.event-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.restaurant-photo,
.dining-room-photo {
  grid-column: 1 / -1;
  aspect-ratio: 16 / 9;
  margin-top: clamp(0.25rem, 2vw, 0.75rem);
  background: var(--paper-2);
}

.restaurant-photo figcaption,
.dining-room-photo figcaption {
  position: absolute;
  right: clamp(0.75rem, 2vw, 1.25rem);
  bottom: clamp(0.75rem, 2vw, 1.25rem);
  max-width: min(420px, calc(100% - 1.5rem));
  padding: 0.75rem 0.9rem;
  color: #fff;
  font-weight: 900;
  line-height: 1.35;
  background: rgba(18, 56, 32, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
}

.dining-room-photo {
  margin: clamp(1rem, 3vw, 1.75rem) 0;
}

.dining-room-photo figcaption {
  right: auto;
  left: clamp(0.75rem, 2vw, 1.25rem);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  padding-bottom: clamp(3rem, 6vw, 5rem);
}

#spezial-events .feature-grid {
  padding-bottom: 0;
}

.feature-card,
.menu-teaser,
.hours-card,
.reservation-panel,
.address-card,
.map-card,
.qr-card,
.menu-category-card,
.occasion-panel,
.fact-grid article,
.legal-content,
.party-form-card,
.menu-bottom-cta,
.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.feature-card {
  padding: clamp(1rem, 2.8vw, 1.5rem);
  background: var(--white);
}

.feature-card span {
  display: inline-block;
  margin-bottom: 1.2rem;
  color: var(--brick);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.feature-card p,
.menu-teaser p,
.highlight-list span,
.fact-grid p,
.occasion-panel li,
.address-card span,
.address-card p,
.reservation-panel p,
.faq-list p,
.notice,
.note {
  color: var(--muted);
  line-height: 1.6;
}

.image-break {
  position: relative;
  display: grid;
  min-height: clamp(320px, 42vw, 520px);
  overflow: hidden;
  color: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.image-break img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-break::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(18, 56, 32, 0.84), rgba(18, 56, 32, 0.18) 70%);
}

.image-break div {
  position: relative;
  z-index: 1;
  align-self: end;
  max-width: 720px;
  padding: clamp(1.25rem, 4vw, 2.4rem);
}

.image-break p {
  margin-bottom: 0.55rem;
  color: var(--gold);
  font-weight: 900;
  text-transform: uppercase;
}

.image-break strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.8rem, 4vw, 3.5rem);
  font-weight: 500;
  line-height: 1.05;
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 1rem;
}

.chip-row a {
  padding: 0.64rem 0.82rem;
  color: var(--green);
  font-size: 0.86rem;
  font-weight: 900;
  text-decoration: none;
  background: var(--blue);
  border: 1px solid rgba(18, 56, 32, 0.12);
  border-radius: var(--radius);
}

.chip-row a:hover {
  color: #fff;
  background: var(--green);
  border-color: var(--green);
}

.menu-teaser {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 1rem;
  align-items: stretch;
  padding: clamp(1.1rem, 3vw, 1.7rem);
  background: var(--white);
}

.menu-gallery-teaser {
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1.2rem;
  align-items: end;
}

.menu-gallery-teaser .button {
  align-self: end;
  white-space: nowrap;
}

.highlight-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.highlight-list li {
  overflow: hidden;
  background: var(--paper-2);
  border-radius: var(--radius);
}

.highlight-list button {
  display: grid;
  grid-template-columns: 5.2rem minmax(0, 1fr);
  gap: 0.85rem;
  align-items: center;
  width: 100%;
  min-height: 5.5rem;
  padding: 0.55rem;
  color: inherit;
  font: inherit;
  text-align: left;
  cursor: pointer;
  background: transparent;
  border: 0;
}

.highlight-list button:hover img,
.highlight-list button:focus-visible img {
  transform: scale(1.04);
}

.highlight-list img {
  display: block;
  width: 5.2rem;
  height: 4.4rem;
  object-fit: cover;
  border-radius: calc(var(--radius) - 2px);
  transition: transform 180ms ease;
}

.highlight-list span {
  display: grid;
  gap: 0.2rem;
}

.highlight-list strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
  font-weight: 500;
}

.highlight-list em {
  color: var(--muted);
  font-style: normal;
  line-height: 1.35;
}

.dish-gallery {
  grid-column: 1 / -1;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.85rem;
}

.dish-gallery li {
  border: 1px solid rgba(18, 56, 32, 0.1);
}

.dish-gallery button {
  display: block;
  min-height: 100%;
  padding: 0.45rem;
}

.dish-gallery img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
}

.dish-gallery span {
  min-height: 4.6rem;
  padding: 0.65rem 0.5rem 0.55rem;
}

.dish-gallery strong {
  font-size: clamp(1rem, 1.25vw, 1.16rem);
  line-height: 1.14;
}

.dish-gallery em {
  font-size: 0.86rem;
}

.menu-lightbox {
  width: min(860px, calc(100% - 2rem));
  max-height: min(88vh, 820px);
  padding: 0;
  color: #fff;
  background: transparent;
  border: 0;
}

.menu-lightbox::backdrop {
  background: rgba(14, 37, 21, 0.78);
  backdrop-filter: blur(8px);
}

.menu-lightbox figure {
  position: relative;
  overflow: hidden;
  margin: 0;
  background: var(--green);
  border-radius: var(--radius);
  box-shadow: 0 22px 58px rgba(0, 0, 0, 0.32);
}

.menu-lightbox img {
  display: block;
  width: 100%;
  max-height: 68vh;
  object-fit: cover;
}

.menu-lightbox figcaption {
  display: grid;
  gap: 0.25rem;
  padding: 1rem;
}

.menu-lightbox figcaption strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 500;
}

.menu-lightbox figcaption span {
  color: rgba(255, 255, 255, 0.78);
}

.menu-lightbox-close {
  position: absolute;
  top: 0.7rem;
  right: 0.7rem;
  z-index: 1;
  display: grid;
  width: 2.6rem;
  height: 2.6rem;
  padding: 0;
  place-items: center;
  color: var(--green);
  font-size: 1.7rem;
  line-height: 1;
  cursor: pointer;
  background: rgba(255, 254, 249, 0.94);
  border: 1px solid rgba(255, 254, 249, 0.45);
  border-radius: 50%;
}

.note {
  margin: 0.9rem 0 0;
  font-size: 0.94rem;
}

.section-dark {
  color: #fff;
  background:
    linear-gradient(135deg, rgba(185, 76, 44, 0.2), transparent 34%),
    linear-gradient(135deg, #0e2515, var(--green));
}

.reviews-section {
  padding-top: 0;
}

.reviews-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 0.32fr);
  gap: 1rem;
  align-items: end;
  margin-bottom: 1rem;
}

.reviews-head p:not(.eyebrow) {
  max-width: 720px;
  color: var(--text);
  line-height: 1.68;
}

.rating-card {
  display: grid;
  gap: 0.35rem;
  justify-items: start;
  padding: 1.2rem;
  color: #fff;
  background: var(--green);
  border: 1px solid rgba(18, 56, 32, 0.18);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.rating-card[hidden] {
  display: none;
}

.rating-value {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1;
}

.rating-stars {
  color: var(--gold);
  font-size: 1.05rem;
  letter-spacing: 0.08em;
}

.rating-card a,
.review-card a,
.reviews-loading a {
  font-weight: 900;
  text-decoration: none;
}

.rating-card a {
  color: #fff;
}

.rating-write-link {
  margin-top: 0.35rem;
  padding-top: 0.65rem;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.reviews-slider {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 0.8rem;
  align-items: center;
  -webkit-user-select: none;
  user-select: none;
}

.reviews-slider a {
  -webkit-user-drag: none;
}

.reviews-viewport {
  overflow: hidden;
  padding: 0.15rem;
  cursor: grab;
  touch-action: pan-y;
}

.reviews-slider.is-dragging .reviews-viewport {
  cursor: grabbing;
}

.reviews-track {
  display: flex;
  gap: 0.8rem;
  transition: transform 420ms ease;
  will-change: transform;
}

.reviews-arrow {
  display: grid;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  place-items: center;
  color: var(--green);
  cursor: pointer;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 50%;
  box-shadow: 0 10px 24px rgba(28, 36, 27, 0.12);
}

.reviews-arrow svg {
  width: 1.25rem;
  height: 1.25rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.4;
}

.review-card {
  display: flex;
  flex: 0 0 calc((100% - 1.6rem) / 3);
  min-height: 17rem;
  flex-direction: column;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 28px rgba(28, 36, 27, 0.1);
}

.review-card-head {
  display: grid;
  gap: 0.3rem;
}

.review-card-head a,
.review-card-head strong {
  color: var(--ink);
  font-weight: 900;
  text-decoration: none;
}

.review-card-head span {
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 0.05em;
}

.review-card p {
  display: -webkit-box;
  margin: 0;
  overflow: hidden;
  color: var(--text);
  line-height: 1.55;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 7;
}

.review-card > a {
  color: var(--brick);
  font-size: 0.9rem;
}

.reviews-loading {
  width: 100%;
  margin: 0;
  padding: 1rem;
  color: var(--muted);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.reviews-pagination {
  display: none;
  gap: 0.45rem;
  justify-content: center;
  margin-top: 1rem;
}

.reviews-pagination button {
  width: 1.5rem;
  height: 1.5rem;
  padding: 0;
  cursor: pointer;
  background: rgba(18, 56, 32, 0.24);
  border: 0;
  border-radius: 50%;
}

.reviews-pagination button.is-active {
  background: var(--green);
}

.reviews-attribution {
  margin: 0.8rem 0 0;
  color: var(--muted);
  font-size: 0.88rem;
  text-align: center;
}

.section-dark .text-stack p,
.section-dark .fact-grid p,
.section-dark .occasion-panel li {
  color: rgba(255, 255, 255, 0.78);
}

.section-dark .occasion-panel,
.section-dark .fact-grid article {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: none;
}

.event-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 1rem;
  margin-top: 2rem;
}

.event-photo {
  min-height: clamp(320px, 40vw, 500px);
  margin: 2rem auto 0;
  color: #fff;
  background: #1b130d;
}

.event-photo img {
  position: absolute;
  inset: 0;
}

.event-photo::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(14, 37, 21, 0.88), rgba(14, 37, 21, 0.18) 68%);
}

.event-photo figcaption {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: end;
  max-width: 720px;
  min-height: inherit;
  padding: clamp(1.25rem, 4vw, 2.4rem);
}

.event-photo span {
  margin-bottom: 0.6rem;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.event-photo strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.8rem, 4vw, 3.35rem);
  font-weight: 500;
  line-height: 1.03;
}

.occasion-panel,
.fact-grid article {
  padding: clamp(1.1rem, 2.5vw, 1.45rem);
}

.occasion-panel ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.occasion-panel li {
  padding: 0.52rem 0.68rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
}

.fact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.fact-grid .button {
  grid-column: 1 / -1;
  justify-self: start;
}

.cta-line {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  margin-top: 1.25rem;
  padding: 1rem 0 0;
  border-top: 1px solid var(--line);
}

.cta-line p {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.contact-band {
  color: #fff;
  background: linear-gradient(120deg, #0e2515, var(--green));
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.36fr);
  gap: clamp(1rem, 5vw, 4rem);
  align-items: center;
}

.contact-grid p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.78);
}

.contact-grid .note {
  color: rgba(255, 255, 255, 0.68);
}

.qr-card {
  display: grid;
  gap: 0.75rem;
  padding: 1rem;
  color: var(--ink);
  text-align: center;
  background: var(--white);
}

.qr-card-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: min(250px, 72vw);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.qr-card img {
  width: min(250px, 100%);
  margin: 0 auto;
}

.qr-card-disabled img {
  opacity: 0.2;
  filter: grayscale(1);
}

.qr-card-overlay {
  position: absolute;
  inset: 0.75rem;
  z-index: 1;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 0.45rem;
  padding: 1rem;
  background: rgba(255, 254, 249, 0.9);
  border: 1px solid rgba(18, 56, 32, 0.16);
  border-radius: var(--radius);
  box-shadow: 0 12px 28px rgba(18, 56, 32, 0.12);
}

.qr-card .qr-card-overlay strong {
  color: var(--green);
  font-size: 1.15rem;
}

.qr-card .qr-card-overlay p {
  max-width: 13rem;
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.35;
}

.qr-card-overlay .button {
  width: 100%;
  min-height: 2.65rem;
}

.qr-card strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  font-weight: 500;
  line-height: 1.1;
}

.qr-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.hours-grid,
.location-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.46fr);
  gap: 1rem;
}

.hours-card,
.reservation-panel,
.address-card,
.map-card {
  background: var(--white);
}

.hours-card {
  padding: clamp(1rem, 2.8vw, 1.65rem);
}

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

.hours-card div:last-of-type {
  border-bottom: 0;
}

.hours-card span {
  color: var(--muted);
}

.reservation-panel {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1rem;
  padding: clamp(1.1rem, 2.8vw, 1.65rem);
  color: #fff;
  background: linear-gradient(135deg, var(--green), #0e2515);
}

.reservation-panel p {
  color: rgba(255, 255, 255, 0.72);
}

.map-card {
  padding: 0.7rem;
  background:
    linear-gradient(145deg, rgba(255, 254, 249, 0.96), rgba(238, 231, 214, 0.92)),
    var(--white);
  border: 1px solid rgba(28, 36, 27, 0.08);
}

.map-visual-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.map-visual-link:focus-visible {
  outline: 3px solid rgba(200, 155, 63, 0.55);
  outline-offset: 4px;
}

.osm-tile-map {
  position: relative;
  display: block;
  overflow: hidden;
  background: #dfdbc9;
  border-radius: var(--radius);
  aspect-ratio: 16 / 10;
  box-shadow: inset 0 0 0 1px rgba(18, 56, 32, 0.12);
}

.osm-tile-map::before,
.osm-tile-map::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  pointer-events: none;
}

.osm-tile-map::before {
  background:
    linear-gradient(135deg, rgba(255, 254, 249, 0.24), rgba(18, 56, 32, 0.04) 45%, rgba(18, 56, 32, 0.18)),
    radial-gradient(circle at 24% 28%, rgba(200, 155, 63, 0.26), transparent 24rem);
  mix-blend-mode: multiply;
}

.osm-tile-map::after {
  background:
    linear-gradient(180deg, rgba(14, 37, 21, 0), rgba(14, 37, 21, 0.2)),
    linear-gradient(90deg, rgba(14, 37, 21, 0.26), transparent 38%, transparent 70%, rgba(14, 37, 21, 0.16));
}

.osm-tile-grid {
  position: absolute;
  top: -38%;
  left: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: 100%;
  aspect-ratio: 1 / 1;
}

.osm-tile-grid img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.map-route-line {
  position: absolute;
  right: 13%;
  bottom: 21%;
  z-index: 2;
  width: 42%;
  height: 34%;
  border-bottom: 3px solid rgba(200, 155, 63, 0.9);
  border-left: 3px solid rgba(200, 155, 63, 0.9);
  border-radius: 0 0 0 2rem;
  opacity: 0.85;
  transform: rotate(-7deg);
}

.map-route-line::before,
.map-route-line::after {
  position: absolute;
  content: "";
  border-radius: 50%;
}

.map-route-line::before {
  left: -0.45rem;
  top: -0.38rem;
  width: 0.7rem;
  height: 0.7rem;
  background: var(--gold);
  box-shadow: 0 0 0 0.28rem rgba(200, 155, 63, 0.2);
}

.map-route-line::after {
  right: -0.32rem;
  bottom: -0.32rem;
  width: 0.55rem;
  height: 0.55rem;
  background: #fffef9;
  border: 2px solid var(--gold);
}

.map-label {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  z-index: 3;
  display: grid;
  gap: 0.12rem;
  max-width: min(17rem, calc(100% - 2rem));
  padding: 0.72rem 0.82rem;
  color: #fff;
  background: rgba(14, 37, 21, 0.84);
  border: 1px solid rgba(255, 254, 249, 0.18);
  border-radius: var(--radius);
  box-shadow: 0 14px 30px rgba(14, 37, 21, 0.22);
  backdrop-filter: blur(8px);
}

.map-label span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.map-label strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.2rem, 2.2vw, 1.65rem);
  font-weight: 500;
}

.map-marker {
  position: absolute;
  left: 47%;
  top: 49%;
  z-index: 3;
  display: inline-flex;
  gap: 0.65rem;
  align-items: center;
  min-width: 14rem;
  padding: 0.72rem 0.82rem;
  color: #fff;
  background: linear-gradient(135deg, var(--green), #0e2515);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius);
  box-shadow: 0 14px 30px rgba(28, 36, 27, 0.32);
  transform: translate(-50%, -118%);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.map-visual-link:hover .map-marker {
  box-shadow: 0 18px 38px rgba(28, 36, 27, 0.38);
  transform: translate(-50%, -124%);
}

.marker-dot {
  width: 0.95rem;
  height: 0.95rem;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 0 0.32rem rgba(200, 155, 63, 0.24);
}

.map-marker strong,
.map-marker small {
  display: block;
}

.map-marker small {
  color: rgba(255, 255, 255, 0.72);
}

.location-perks {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.55rem;
  margin-top: 0.65rem;
}

.location-perks > div {
  display: grid;
  grid-template-columns: 2.3rem minmax(0, 1fr);
  gap: 0.62rem;
  align-items: start;
  min-height: 5.4rem;
  padding: 0.72rem;
  background: rgba(255, 254, 249, 0.68);
  border: 1px solid rgba(28, 36, 27, 0.08);
  border-radius: var(--radius);
}

.location-perk-icon {
  display: grid;
  width: 2.3rem;
  height: 2.3rem;
  place-items: center;
  color: #fff;
  font-weight: 900;
  background: var(--brick);
  border-radius: 50%;
}

.location-perk-icon svg {
  width: 1.35rem;
  height: 1.35rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.location-perks strong,
.location-perks small {
  display: block;
}

.location-perks strong {
  color: var(--ink);
  line-height: 1.15;
}

.location-perks small {
  margin-top: 0.18rem;
  color: var(--muted);
  line-height: 1.35;
}

.map-attribution {
  margin: 0.5rem 0 0;
  color: var(--muted);
  font-size: 0.78rem;
}

.address-card {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  padding: clamp(1.1rem, 2.8vw, 1.65rem);
  font-style: normal;
}

.address-card strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.08;
}

.address-card a:not(.button) {
  color: var(--brick);
  font-weight: 900;
  text-decoration: none;
}

.faq-list {
  display: grid;
  gap: 0.7rem;
}

.faq-list details {
  padding: 1rem;
  background: var(--white);
}

.faq-list summary {
  cursor: pointer;
  font-weight: 900;
}

.faq-list p {
  margin: 0.75rem 0 0;
}

.footer-logo-stage {
  display: grid;
  min-height: clamp(22rem, 42vw, 34rem);
  place-items: center;
  padding: clamp(2.5rem, 7vw, 5rem) 1rem;
  background:
    radial-gradient(circle at 50% 45%, rgba(124, 143, 78, 0.18), transparent 24rem),
    linear-gradient(180deg, var(--paper), var(--paper-2));
  border-top: 1px solid var(--line);
}

.footer-feature-logo {
  display: block;
  width: min(28rem, 84vw);
  height: auto;
  filter: drop-shadow(0 18px 34px rgba(28, 36, 27, 0.14));
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1rem, 4vw, 3rem);
  padding: clamp(1.8rem, 4vw, 3rem);
  color: #fff;
  text-align: center;
  background: #0e2515;
}

.footer-intro {
  display: grid;
  justify-items: center;
  max-width: 680px;
  margin-inline: auto;
}

.site-footer p,
.site-footer address {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.62;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  justify-content: center;
}

.site-footer a {
  color: #fff;
  font-weight: 800;
  text-decoration: none;
}

.footer-credit {
  font-size: 0.86rem;
}

.footer-credit a {
  color: #f1d48a;
}

.mobile-action-bar {
  display: none;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.subpage,
.legal-page,
.form-page {
  min-height: 100svh;
  padding-top: 5.4rem;
}

.menu-hero,
.legal-hero,
.form-hero {
  padding: clamp(3rem, 7vw, 6rem) 0 2rem;
}

.menu-hero {
  padding: clamp(1.5rem, 3.2vw, 3rem) 0 1.4rem;
}

.menu-hero h1,
.legal-hero h1,
.form-hero h1 {
  max-width: none;
}

.notice {
  max-width: 820px;
  padding: 1rem;
  background: var(--blue);
  border-left: 4px solid var(--green);
  border-radius: var(--radius);
}

.menu-page {
  display: grid;
  gap: 1rem;
  padding: 0.75rem 0 clamp(3rem, 7vw, 6rem);
}

.menu-category-card {
  scroll-margin-top: 7.5rem;
  display: grid;
  grid-template-columns: minmax(250px, 0.34fr) minmax(0, 1fr);
  gap: clamp(1.4rem, 4vw, 3.2rem);
  padding: clamp(1.1rem, 3vw, 1.8rem);
  background: var(--white);
}

.menu-category-card.featured {
  background: linear-gradient(135deg, var(--white), #f6f7ed);
  border-color: rgba(124, 143, 78, 0.38);
}

.menu-intro-card p,
.menu-section-copy {
  margin: 0 0 1rem;
  color: var(--text);
  line-height: 1.68;
}

.menu-local-nav {
  margin-bottom: 0;
}

.menu-category-card h2 {
  max-width: 12ch;
  margin: 0;
  font-size: clamp(1.65rem, 3vw, 2.65rem);
  hyphens: auto;
  overflow-wrap: break-word;
}

.dish-list {
  display: grid;
  gap: 0.8rem;
}

.dish-list div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.3rem 1rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid var(--line);
}

.dish-list div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.dish-list strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.2rem, 1.8vw, 1.5rem);
  font-weight: 500;
  line-height: 1.1;
}

.dish-list span {
  color: var(--brick);
  font-weight: 900;
}

.dish-list p {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.dish-list .menu-list-note {
  grid-template-columns: 1fr;
  padding: 0.9rem 1rem;
  color: var(--green);
  background: var(--blue);
  border: 1px solid rgba(18, 56, 32, 0.1);
  border-radius: var(--radius);
}

.dish-list .menu-list-note strong {
  font-family: "Trebuchet MS", "Segoe UI", sans-serif;
  font-size: 0.98rem;
  font-weight: 900;
}

.dish-list strong .allergen-codes {
  font-family: "Trebuchet MS", "Segoe UI", sans-serif;
  font-size: 0.72em;
}

.allergen-codes {
  color: var(--brick);
  font-weight: 800;
  white-space: nowrap;
}

.allergen-card h3 {
  max-width: none;
  margin: 0 0 0.9rem;
  font-family: "Trebuchet MS", "Segoe UI", sans-serif;
  font-size: 1rem;
  font-weight: 900;
  text-transform: uppercase;
}

.allergen-card h3:not(:first-child) {
  margin-top: 1.6rem;
}

.allergen-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.6rem;
}

.allergen-grid p,
.allergen-list p {
  margin: 0;
  color: var(--text);
  line-height: 1.55;
}

.allergen-grid p {
  padding: 0.7rem 0.8rem;
  background: var(--paper-2);
  border-radius: var(--radius);
}

.allergen-list {
  display: grid;
  gap: 0.7rem;
}

.allergen-grid strong,
.allergen-list strong {
  color: var(--brick);
}

.menu-bottom-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  margin-bottom: clamp(3rem, 7vw, 6rem);
  padding: clamp(1.1rem, 3vw, 1.55rem);
  color: #fff;
  background: var(--green);
}

.menu-bottom-cta div {
  flex: 1 1 360px;
}

.menu-bottom-cta h2 {
  max-width: none;
  margin-bottom: 0.35rem;
  font-size: clamp(1.65rem, 2.8vw, 2.35rem);
}

.menu-bottom-cta p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.legal-content {
  width: min(860px, calc(100% - 2rem));
  margin: 0 auto clamp(4rem, 8vw, 7rem);
  padding: clamp(1.25rem, 4vw, 2rem);
  background: var(--white);
}

.legal-content h2 {
  max-width: none;
  margin-top: 2rem;
  font-size: clamp(1.65rem, 3.5vw, 2.7rem);
}

.legal-content h2:first-child {
  margin-top: 0;
}

.party-form-card {
  margin-bottom: clamp(4rem, 8vw, 7rem);
  padding: clamp(1.15rem, 4vw, 2rem);
  background: var(--white);
}

.party-form,
.form-grid {
  display: grid;
  gap: 1rem;
}

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

.party-form label {
  display: grid;
  gap: 0.45rem;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.party-form input,
.party-form select,
.party-form textarea {
  width: 100%;
  min-height: 3.05rem;
  padding: 0.82rem 0.92rem;
  color: var(--ink);
  font: inherit;
  font-size: 1rem;
  letter-spacing: 0;
  text-transform: none;
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.party-form textarea {
  resize: vertical;
}

.form-note {
  margin: 0;
  padding: 1rem;
  color: var(--text);
  line-height: 1.55;
  background: var(--blue);
  border-radius: var(--radius);
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

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

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

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

  .button,
  .nav-cta,
  .nav-link,
  .skip-link,
  .reveal {
    transition: none;
  }

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

@media (min-width: 1060px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
  }

  .main-nav {
    display: flex;
    grid-column: auto;
    grid-row: auto;
    justify-content: center;
    gap: clamp(0.45rem, 1vw, 0.95rem);
    max-height: none;
    overflow: visible;
    padding: 0;
    visibility: visible;
  }

  .main-nav a {
    padding: 0;
    background: transparent;
  }

  .main-nav a:hover,
  .main-nav a:focus-visible,
  .main-nav a[aria-current="page"] {
    outline: 0;
    color: var(--gold);
    background: transparent;
    box-shadow: inset 0 -2px 0 var(--gold);
  }

  .nav-link,
  .nav-cta {
    display: inline-flex;
  }

  .menu-toggle {
    display: none;
  }

  .hero-copy h1 {
    font-size: clamp(3.4rem, 5.2vw, 5.1rem);
    line-height: 0.96;
  }
}

@media (min-width: 1060px) and (max-height: 780px) {
  .hero-inner {
    gap: clamp(1.2rem, 3vw, 3rem);
    padding-top: 5.7rem;
    padding-bottom: 1.15rem;
  }

  .hero-copy h1 {
    font-size: clamp(3.2rem, 4.8vw, 4.45rem);
  }

  .hero-copy p {
    font-size: 1rem;
    line-height: 1.5;
  }

  .hero-actions {
    margin-top: 1rem;
  }

}

@media (max-width: 1059px) {
  .hero-inner,
  .two-column,
  .menu-teaser,
  .event-layout,
  .contact-grid,
  .reviews-head,
  .hours-grid,
  .location-grid,
  .site-footer,
  .menu-category-card {
    grid-template-columns: 1fr;
  }

  .dish-gallery {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .menu-gallery-teaser .button {
    justify-self: start;
  }

  .hero-inner {
    align-items: center;
    min-height: 100vh;
    padding-bottom: 2rem;
  }

  .feature-grid,
  .fact-grid {
    grid-template-columns: 1fr;
  }

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

  .menu-category-card h2 {
    max-width: none;
  }
}

@media (max-width: 720px) {
  body {
    padding-bottom: 5.7rem;
  }

  .section-shell {
    width: min(100% - 1rem, 1180px);
  }

  h1 {
    font-size: clamp(2.35rem, 12vw, 3.6rem);
  }

  h2 {
    font-size: clamp(1.85rem, 9vw, 2.8rem);
  }

  .hero-inner {
    padding-top: 6.7rem;
  }

  .hero-media {
    object-position: right center;
  }

  .hero-actions,
  .cta-line,
  .hours-card div,
  .form-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .button {
    width: 100%;
  }

  .reviews-slider {
    grid-template-columns: 1fr;
  }

  .reviews-arrow {
    display: none;
  }

  .reviews-pagination {
    display: flex;
  }

  .review-card {
    flex-basis: 100%;
  }

  .highlight-list,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .highlight-list button {
    grid-template-columns: 4.8rem minmax(0, 1fr);
  }

  .highlight-list img {
    width: 4.8rem;
    height: 4rem;
  }

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

  .dish-gallery button {
    grid-template-columns: 1fr;
  }

  .dish-gallery img {
    width: 100%;
    height: auto;
  }

  .image-break {
    min-height: 330px;
  }

  .image-break::after {
    background: linear-gradient(0deg, rgba(18, 56, 32, 0.86), rgba(18, 56, 32, 0.1));
  }

  .image-break strong {
    font-size: clamp(1.65rem, 8vw, 2.4rem);
  }

  .dish-list div {
    grid-template-columns: 1fr;
  }

  .osm-tile-map {
    aspect-ratio: 4 / 3;
  }

  .map-label {
    left: 0.75rem;
    bottom: 0.75rem;
  }

  .map-marker {
    min-width: 12.2rem;
    transform: translate(-43%, -118%);
  }

  .map-visual-link:hover .map-marker {
    transform: translate(-43%, -124%);
  }

  .location-perks {
    grid-template-columns: 1fr;
  }

  .location-perks > div {
    min-height: 0;
  }

  .site-footer {
    padding-bottom: 7rem;
  }

  .mobile-action-bar {
    position: fixed;
    right: 50%;
    bottom: calc(0.7rem + env(safe-area-inset-bottom));
    z-index: 60;
    display: grid;
    grid-template-columns: repeat(3, 3.25rem);
    gap: 0.55rem;
    width: max-content;
    padding: 0.45rem;
    background: rgba(255, 254, 249, 0.96);
    border: 1px solid rgba(28, 36, 27, 0.18);
    border-radius: 999px;
    box-shadow: 0 10px 24px rgba(28, 36, 27, 0.16);
    opacity: 0;
    pointer-events: none;
    transform: translateX(50%) translateY(calc(100% + 2.4rem)) scale(0.96);
    transition: opacity 560ms ease, transform 820ms cubic-bezier(0.22, 0.75, 0.18, 1);
    backdrop-filter: blur(16px);
    will-change: opacity, transform;
  }

  .mobile-action-bar.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(50%) translateY(0) scale(1);
  }

  .mobile-action-bar a {
    position: relative;
    display: inline-grid;
    width: 3.25rem;
    height: 3.25rem;
    place-items: center;
    color: #fff;
    text-decoration: none;
    background: var(--green);
    border: 1px solid rgba(18, 56, 32, 0.2);
    border-radius: 50%;
    opacity: 0;
    box-shadow: none;
    transform: translateY(1rem) scale(0.82);
    transition: opacity 460ms ease, transform 680ms cubic-bezier(0.22, 0.75, 0.18, 1), box-shadow 160ms ease;
    will-change: opacity, transform;
  }

  .mobile-action-bar.is-visible a {
    opacity: 1;
    transform: translateY(0) scale(1);
  }

  .mobile-action-bar.is-visible a:nth-child(2) {
    transition-delay: 140ms;
  }

  .mobile-action-bar.is-visible a:nth-child(3) {
    transition-delay: 260ms;
  }

  .mobile-action-bar a:active {
    transform: translateY(1px) scale(0.97);
  }

  .mobile-action-bar svg {
    width: 1.32rem;
    height: 1.32rem;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2;
  }

  .mobile-action-whatsapp svg {
    width: 2rem;
    height: 2rem;
  }

  .mobile-action-whatsapp svg path:first-child {
    fill: none;
  }

  .mobile-action-whatsapp svg path:last-child {
    fill: currentColor;
    stroke: none;
  }

  .mobile-action-bar .mobile-action-whatsapp {
    background: #18864f;
    border-color: rgba(24, 134, 79, 0.22);
  }

  .mobile-action-bar .mobile-action-call {
    background: var(--brick);
    border-color: rgba(185, 76, 44, 0.22);
  }
}

@media (max-width: 550px) {
  .restaurant-photo,
  .dining-room-photo {
    aspect-ratio: auto;
  }

  .restaurant-photo img,
  .dining-room-photo img {
    height: auto;
    aspect-ratio: 16 / 9;
  }

  .restaurant-photo figcaption,
  .dining-room-photo figcaption {
    position: static;
    max-width: none;
    padding: 0.85rem 0.95rem;
    color: #fff;
    background: var(--green);
    border: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 0;
  }
}

@media (max-width: 720px) {
  .whatsapp-disabled-toast {
    right: 0.75rem;
    bottom: calc(5.3rem + env(safe-area-inset-bottom));
    width: calc(100vw - 1.5rem);
  }
}
