:root {
  --bg: #090909;
  --surface: #111111;
  --gold: #c9a56a;
  --gold-soft: #e0c79b;
  --text: #f3f1ed;
  --muted: #cdc7bd;
  --line: #2a2a2a;
}

* {
  box-sizing: border-box;
}

html {
  scroll-padding-top: 6.5rem;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

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

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
  padding-left: max(0px, env(safe-area-inset-left));
  padding-right: max(0px, env(safe-area-inset-right));
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
}

.topbar {
  background: #141414;
  border-bottom: 1px solid #353535;
  font-size: 0.86rem;
  color: #ddd8cf;
  padding-top: env(safe-area-inset-top);
}

.topbar-inner {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.6rem 0;
}

.topbar p {
  margin: 0;
}

.topbar a {
  color: #ece6dc;
  -webkit-tap-highlight-color: rgba(201, 165, 106, 0.25);
}

.topbar a:hover {
  color: var(--gold-soft);
}

.nav {
  background: rgba(20, 20, 20, 0.94);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid #353535;
}

.nav-inner {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
}

.brand {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #faf8f4;
}

.brand-dash {
  font-family: "Inter", sans-serif;
}

.nav-links {
  display: flex;
  gap: 1.7rem;
}

.nav-links a {
  font-size: 0.87rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #f2eee6;
}

.nav-links a:hover {
  color: var(--gold-soft);
}

.nav-links a[aria-current="page"] {
  color: var(--gold);
  box-shadow: inset 0 -2px 0 0 var(--gold);
  padding-bottom: 0.15em;
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border: 1px solid #3a3a3a;
  border-radius: 8px;
  background: rgba(12, 12, 12, 0.95);
  color: var(--gold-soft);
  cursor: pointer;
  -webkit-tap-highlight-color: rgba(201, 165, 106, 0.25);
}

.nav-toggle:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.nav-toggle-bars {
  position: relative;
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 1px;
  background: currentColor;
  transition: background 200ms ease;
}

.nav-toggle-bars::before,
.nav-toggle-bars::after {
  content: "";
  position: absolute;
  left: 0;
  width: 22px;
  height: 2px;
  border-radius: 1px;
  background: currentColor;
  transition: transform 200ms ease, top 200ms ease;
}

.nav-toggle-bars::before {
  top: -7px;
}

.nav-toggle-bars::after {
  top: 7px;
}

.nav.is-open .nav-toggle-bars {
  background: transparent;
}

.nav.is-open .nav-toggle-bars::before {
  top: 0;
  transform: rotate(45deg);
}

.nav.is-open .nav-toggle-bars::after {
  top: 0;
  transform: rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 78vh;
  display: grid;
  align-items: center;
}

.hero img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.72) saturate(1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.38) 0%,
      rgba(0, 0, 0, 0.26) 45%,
      rgba(0, 0, 0, 0.36) 100%
    ),
    radial-gradient(circle at center, rgba(0, 0, 0, 0.02) 0%, #090909 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding: 5rem 0;
}

.hero-content h1 {
  font-size: clamp(2.5rem, 8vw, 5.6rem);
  text-shadow: 0 8px 26px rgba(0, 0, 0, 0.7);
}

.kicker {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.75rem;
  color: var(--gold-soft);
  text-shadow: 0 3px 12px rgba(0, 0, 0, 0.6);
}

h1,
h2,
h3 {
  font-family: "Cormorant Garamond", serif;
  margin: 0 0 0.7rem;
  line-height: 1.15;
}

h1 {
  font-size: clamp(2rem, 6vw, 4.3rem);
  margin-top: 0.5rem;
}

.hero-content p {
  font-size: 1.05rem;
  color: #ece7dd;
  max-width: 62ch;
  text-shadow: 0 4px 14px rgba(0, 0, 0, 0.62);
}

.hero-cta {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.btn {
  position: relative;
  z-index: 1;
  border: 1px solid transparent;
  padding: 0.78rem 1.1rem;
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  touch-action: manipulation;
  cursor: pointer;
}

.btn-primary {
  background: var(--gold);
  color: #101010;
}

.btn-primary:hover {
  background: var(--gold-soft);
}

.btn-secondary {
  border-color: #898171;
}

.btn-secondary:hover {
  border-color: var(--gold-soft);
  color: var(--gold-soft);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.8rem;
  margin-bottom: 4rem;
}

.feature-tile {
  position: relative;
  height: 460px;
  overflow: hidden;
  border: 1px solid #1a1a1a;
  background: #050505;
  color: inherit;
  text-decoration: none;
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0.12);
}

.feature-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.88) contrast(1.02);
  transform: scale(1);
  transition: transform 280ms ease;
}

.feature-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.58) 0%,
    rgba(0, 0, 0, 0.2) 35%,
    rgba(0, 0, 0, 0.42) 100%
  );
}

.feature-copy {
  position: absolute;
  left: 1.2rem;
  right: 1.2rem;
  bottom: 1.2rem;
  z-index: 1;
  text-transform: uppercase;
  text-align: center;
}

.feature-copy p {
  margin: 0 0 0.35rem;
  color: #e6dfd3;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
}

.feature-copy h2 {
  margin: 0;
  font-family: "Inter", sans-serif;
  font-size: clamp(1.5rem, 2.7vw, 2rem);
  font-weight: 600;
  letter-spacing: 0.07em;
  text-shadow: 0 3px 12px rgba(0, 0, 0, 0.55);
}

.feature-tile:hover img {
  transform: scale(1.05);
}

.feature-tile:nth-child(1) img {
  object-position: center 68%;
}

.feature-tile:nth-child(2) img {
  object-position: center 72%;
}

.feature-tile:nth-child(3) img {
  object-position: center 74%;
}

.restaurant-gallery {
  padding: 6rem 0 6.5rem;
  background: linear-gradient(180deg, #060606 0%, #0a0a0a 100%);
}

.gallery-header {
  text-align: center;
  margin-bottom: 2.3rem;
}

.gallery-eyebrow {
  margin: 0 0 0.4rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: #b7b0a4;
}

.gallery-header h2 {
  margin: 0;
  font-size: clamp(2.2rem, 6.5vw, 4.4rem);
  font-weight: 600;
  color: #f7f6f2;
}

.gallery-collage {
  display: grid;
  gap: 1rem;
}

.gallery-row {
  display: grid;
  gap: 1rem;
}

.gallery-row-1 {
  grid-template-columns: 1.45fr 1.05fr 0.95fr;
  grid-template-rows: 260px 220px;
}

.gallery-row-1 .card-hero {
  grid-row: 1 / span 2;
  min-height: 492px;
}

.gallery-row-1 .card-medium {
  grid-column: 2;
  grid-row: 1;
}

.gallery-row-1 .card-statement {
  grid-column: 3;
  grid-row: 1 / span 2;
}

.gallery-row-1 .card-accent {
  grid-column: 2;
  grid-row: 2;
}

.gallery-row-2 {
  grid-template-columns: 0.8fr 1.9fr 0.8fr;
  align-items: stretch;
}

.gallery-row-2 .card-anchor {
  min-height: 360px;
}

.gallery-stack {
  display: grid;
  gap: 1rem;
  grid-template-rows: 1fr 1fr;
}

.gallery-row-3 {
  grid-template-columns: 1fr 1.7fr 0.9fr;
}

.gallery-row-3 .card-dessert {
  min-height: 290px;
}

.gallery-card {
  margin: 0;
  overflow: hidden;
  border-radius: 10px;
  background: #0d0d0d;
}

.gallery-link {
  display: block;
  width: 100%;
  height: 100%;
  cursor: zoom-in;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  filter: brightness(1.02) saturate(1);
  transform: scale(1);
  transition: transform 460ms ease, filter 460ms ease;
}

.gallery-card:hover img {
  transform: scale(1.04);
  filter: brightness(1.08) saturate(1.02);
}

.card-tall img {
  min-height: 350px;
}

.card-small img {
  min-height: 185px;
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-items: center;
  padding: 1.2rem;
  background: rgba(0, 0, 0, 0.9);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.gallery-lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-image {
  max-width: min(96vw, 1200px);
  max-height: 88vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 10px;
}

.lightbox-close {
  position: absolute;
  top: 0.9rem;
  right: 0.9rem;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid #2e2e2e;
  background: rgba(10, 10, 10, 0.9);
  color: #fff;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
}

.no-scroll {
  overflow: hidden;
}

.reviews-section {
  padding: 5rem 0 4rem;
  background: linear-gradient(180deg, #0b0b0b 0%, #090909 100%);
}

.reviews-header {
  text-align: center;
  margin-bottom: 1.4rem;
}

.reviews-eyebrow {
  margin: 0 0 0.35rem;
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #b8b1a5;
}

.reviews-header h2 {
  margin: 0;
  font-size: clamp(2rem, 5.3vw, 3.2rem);
}

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

.review-card {
  background: #111;
  border: 1px solid #202020;
  border-radius: 10px;
  padding: 1rem;
}

.review-stars {
  margin: 0 0 0.45rem;
  color: #e0c79b;
  letter-spacing: 0.16em;
  font-size: 0.88rem;
}

.review-text {
  margin: 0 0 0.7rem;
  color: #ebe7df;
}

.review-author {
  margin: 0;
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #b8b1a5;
}

.reviews-google-summary {
  margin-top: 1.75rem;
  display: flex;
  justify-content: center;
}

.google-review-card {
  display: block;
  width: 100%;
  max-width: 20.5rem;
  padding: 1rem 1.15rem 1.05rem;
  border-radius: 0;
  border: 1px solid #3c4043;
  background: #1a1a1a;
  color: inherit;
  text-decoration: none;
  transition:
    border-color 0.2s ease,
    background 0.2s ease,
    transform 0.2s ease;
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0.06);
}

.google-review-card:hover {
  border-color: #5f6368;
  background: #222426;
}

.google-review-card:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.google-review-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.85rem;
}

.google-review-brand {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.google-review-name {
  font-size: 0.95rem;
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.02em;
}

.google-review-external {
  display: flex;
  color: #e8eaed;
  opacity: 0.92;
}

.google-review-card-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.google-review-score {
  font-size: 1.85rem;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.google-review-score-denom {
  font-size: 0.55em;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
}

.google-review-count {
  font-size: 0.875rem;
  color: #9aa0a6;
  line-height: 1.3;
}

.reviews-actions {
  margin-top: 1.25rem;
  display: flex;
  justify-content: center;
}

.location-section {
  padding: 5.2rem 0 3.4rem;
  background: #0a0a0a;
}

.legal-page {
  padding: 4rem 0 5rem;
  min-height: 45vh;
  background: linear-gradient(180deg, #070707 0%, #0b0b0b 100%);
}

.legal-page h1 {
  margin-bottom: 1rem;
}

.legal-page h2 {
  margin: 2rem 0 0.65rem;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.35rem, 2.4vw, 1.75rem);
  font-weight: 600;
  color: var(--text);
  line-height: 1.25;
}

.legal-page h2:first-of-type {
  margin-top: 1.25rem;
}

.legal-page h3 {
  margin: 1.35rem 0 0.5rem;
  font-family: "Inter", sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: #e8e4dc;
}

.legal-page h4 {
  margin: 1rem 0 0.4rem;
  font-family: "Inter", sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: #ddd8cf;
}

.legal-page p {
  margin: 0;
  max-width: 62ch;
  color: var(--muted);
  font-size: 1.05rem;
}

.legal-page p + p {
  margin-top: 0.85rem;
}

.legal-page a {
  color: var(--gold-soft);
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.legal-page a:hover {
  color: var(--gold);
}

.legal-page ul {
  margin: 0.65rem 0 0.9rem;
  padding-left: 1.35rem;
  max-width: 62ch;
  color: var(--muted);
  font-size: 1.05rem;
}

.legal-page li {
  margin: 0.35rem 0;
}

.legal-page hr {
  margin: 2.25rem 0;
  border: 0;
  border-top: 1px solid var(--line);
  max-width: 62ch;
}

.menu-page {
  padding: 4.6rem 0 5rem;
  background: linear-gradient(180deg, #070707 0%, #0b0b0b 100%);
}

.menu-intro {
  text-align: center;
  margin-bottom: 1.8rem;
}

.menu-eyebrow {
  margin: 0 0 0.45rem;
  font-size: 0.74rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #b8b1a5;
}

.menu-intro h1 {
  margin-bottom: 0.5rem;
}

.menu-intro p {
  margin: 0 auto;
  max-width: 62ch;
  color: var(--muted);
}

.menu-sheets {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
  align-items: start;
}

.menu-sheet {
  display: flex;
  flex-direction: column;
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #1f1f1f;
  background: #050505;
  transition: transform 260ms ease, border-color 260ms ease;
}

.menu-sheet-media {
  position: relative;
  flex: 0 0 auto;
  width: 100%;
  aspect-ratio: 210 / 297;
  background: #0f0f0f;
  overflow: hidden;
}

.menu-sheet-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  object-fit: contain;
  object-position: center;
  filter: brightness(1.04);
}

.menu-sheet-caption {
  display: block;
  flex-shrink: 0;
  padding: 0.7rem 0.9rem;
  border-top: 1px solid #1f1f1f;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #d6d0c6;
}

.menu-sheet:hover {
  transform: translateY(-2px);
  border-color: #373327;
}

.location-header {
  text-align: center;
  margin-bottom: 1.5rem;
}

.location-eyebrow {
  margin: 0 0 0.35rem;
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #b8b1a5;
}

.location-header h2 {
  margin: 0;
  font-size: clamp(2rem, 5.2vw, 3.3rem);
}

.location-layout {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 1rem;
  align-items: stretch;
}

.map-shell {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #1f1f1f;
  background: #050505;
}

.map-shell iframe {
  width: 100%;
  height: 420px;
  border: 0;
  display: block;
  filter: grayscale(0.95) invert(0.92) hue-rotate(175deg) contrast(1.12)
    brightness(0.78);
}

.entrance-card {
  margin: 0;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #1f1f1f;
  background: #050505;
  display: grid;
  grid-template-rows: 1fr auto;
}

.entrance-card img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  object-position: center;
  filter: brightness(1.06) saturate(1.02);
}

.entrance-card figcaption {
  margin: 0;
  padding: 0.65rem 0.85rem;
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #d6d0c6;
  border-top: 1px solid #1f1f1f;
}

.map-actions {
  margin-top: 1rem;
  display: flex;
  justify-content: flex-start;
}

.footer {
  border-top: 1px solid var(--line);
  padding: 3rem 0 4rem;
}

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

.footer h3 {
  margin-bottom: 0.35rem;
  font-size: 1.7rem;
}

.footer p {
  margin: 0;
  color: var(--muted);
}

.footer a {
  color: var(--gold-soft);
}

.footer-meta {
  margin-top: 1.35rem;
  padding-top: 1.15rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-meta-bar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  column-gap: 1rem;
  row-gap: 0.75rem;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 0.35rem 0.5rem;
  font-size: 0.8125rem;
  letter-spacing: 0.02em;
}

.footer-legal-sep {
  color: rgba(255, 255, 255, 0.35);
  user-select: none;
}

.footer .footer-legal a {
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
}

.footer .footer-legal a:hover {
  color: rgba(255, 255, 255, 0.9);
}

.footer-powered {
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.5;
  letter-spacing: 0.02em;
  text-align: right;
  justify-self: end;
  white-space: nowrap;
}

.footer-powered-by {
  color: rgba(255, 255, 255, 0.45);
  margin-right: 0.35em;
}

/* Hohe Spezifität + !important: iOS/Safari überschreibt sonst Linkfarbe oft mit Grau */
.footer .footer-powered a.footer-powered-brand {
  color: #22b8e0 !important;
  -webkit-text-fill-color: #22b8e0 !important;
  font-weight: 500;
  text-decoration: none !important;
  -webkit-tap-highlight-color: rgba(34, 184, 224, 0.3);
}

.footer .footer-powered a.footer-powered-brand:visited {
  color: #22b8e0 !important;
  -webkit-text-fill-color: #22b8e0 !important;
}

.footer .footer-powered a.footer-powered-brand:hover,
.footer .footer-powered a.footer-powered-brand:focus-visible {
  color: #4dc9eb !important;
  -webkit-text-fill-color: #4dc9eb !important;
}

.footer .footer-powered a.footer-powered-brand:active {
  color: #4dc9eb !important;
  -webkit-text-fill-color: #4dc9eb !important;
}

@media (forced-colors: active) {
  .footer .footer-powered a.footer-powered-brand {
    forced-color-adjust: none;
    color: #22b8e0 !important;
    -webkit-text-fill-color: #22b8e0 !important;
  }
}

@media (max-width: 900px) {
  .feature-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .restaurant-gallery {
    padding: 5rem 0 5.2rem;
  }

  .gallery-header {
    margin-bottom: 1.7rem;
  }

  .gallery-row-1 {
    grid-template-columns: 1.3fr 1fr;
    grid-template-rows: 220px 220px 180px;
  }

  .gallery-row-1 .card-hero {
    grid-column: 1;
    grid-row: 1 / span 2;
    min-height: 460px;
  }

  .gallery-row-1 .card-medium {
    grid-column: 2;
    grid-row: 1;
  }

  .gallery-row-1 .card-statement {
    grid-column: 2;
    grid-row: 2 / span 2;
  }

  .gallery-row-1 .card-accent {
    grid-column: 1;
    grid-row: 3;
  }

  .gallery-row-2 {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-row-2 .card-anchor {
    grid-column: 1 / -1;
    min-height: 300px;
  }

  .gallery-row-3 {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-row-3 .card-dessert {
    grid-column: 1 / -1;
    min-height: 260px;
  }

  .card-balance {
    display: none;
  }

  .map-shell iframe {
    height: 360px;
  }

  .entrance-card img {
    min-height: 360px;
  }

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

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

/* Burger + eingeklappte Navigation auch auf schmalen Tablets (Speisekarte o. Ä.) */
@media (max-width: 960px) {
  .nav-inner {
    flex-wrap: wrap;
    align-items: center;
    gap: 0.65rem;
    column-gap: 0.5rem;
  }

  .nav-inner .brand {
    flex: 1 1 auto;
    min-width: 0;
    font-size: clamp(1.32rem, 3.6vw + 0.55rem, 2rem);
    line-height: 1.15;
    letter-spacing: 0.06em;
  }

  .site-header .nav-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .nav-links {
    display: none;
    flex: 0 0 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    width: 100%;
    padding-top: 0.85rem;
    margin-top: 0.35rem;
    border-top: 1px solid #353535;
  }

  .nav.is-open .nav-links {
    display: flex;
  }

  .nav-links a {
    display: flex;
    align-items: center;
    min-height: 2.85rem;
    padding: 0.35rem 0;
    border-bottom: 1px solid #2a2a2a;
    -webkit-tap-highlight-color: rgba(201, 165, 106, 0.25);
  }

  .nav-links a:last-child {
    border-bottom: none;
  }

  .nav-links a[aria-current="page"] {
    box-shadow: none;
    padding-left: 0.5rem;
    border-left: 3px solid var(--gold);
  }
}

@media (max-width: 720px) {
  .topbar-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 0.7rem;
  }

  .topbar {
    font-size: 0.8rem;
  }

  .topbar-inner p {
    margin: 0;
    white-space: nowrap;
  }

  .topbar-inner p:first-child {
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .hero {
    min-height: 66vh;
  }

  .feature-grid {
    margin-top: 1.1rem;
  }

  .hero img {
    object-position: center;
    filter: brightness(0.64) saturate(0.96);
  }

  .hero-overlay {
    background:
      linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.36) 0%,
        rgba(0, 0, 0, 0.28) 40%,
        rgba(0, 0, 0, 0.44) 100%
      ),
      radial-gradient(circle at center, rgba(0, 0, 0, 0.05) 0%, #090909 100%);
  }

  .restaurant-gallery {
    padding: 4.2rem 0 4.5rem;
  }

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

  .gallery-row,
  .gallery-stack {
    display: contents;
  }

  .gallery-row-1 .card-hero,
  .gallery-row-1 .card-medium,
  .gallery-row-1 .card-statement,
  .gallery-row-1 .card-accent,
  .gallery-row-2 .card-anchor,
  .gallery-row-3 .card-dessert {
    grid-column: auto;
    grid-row: auto;
    min-height: auto;
  }

  .gallery-row-1 .card-medium {
    display: none;
  }

  .gallery-row-1 .card-accent {
    grid-column: 2;
    grid-row: 1;
  }

  .gallery-card img {
    min-height: 150px;
  }

  .card-tall img {
    min-height: 180px;
  }

  .location-section {
    padding: 4.2rem 0 2.6rem;
  }

  .menu-page {
    padding: 3.7rem 0 4rem;
  }

  .location-header {
    margin-bottom: 1rem;
  }

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

  .map-shell iframe {
    height: 300px;
  }

  .entrance-card img {
    min-height: 280px;
  }

  .map-actions .btn {
    width: 100%;
    text-align: center;
  }

  .reviews-section {
    padding: 4.2rem 0 3rem;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }

  .reviews-actions .btn {
    width: 100%;
    text-align: center;
  }

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

@media (max-width: 640px) {
  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.65rem;
  }

  .feature-tile:nth-child(1) {
    grid-column: 1;
    grid-row: 1;
  }

  .feature-tile:nth-child(3) {
    grid-column: 2;
    grid-row: 1;
  }

  .feature-tile:nth-child(2) {
    grid-column: 1 / -1;
    grid-row: 2;
    height: 320px;
  }

  .hero-content {
    padding: 4.2rem 0;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .hero-cta {
    width: 100%;
  }

  .hero-cta .btn {
    flex: 1 1 100%;
    text-align: center;
  }

  .feature-tile {
    height: 280px;
  }

  .feature-tile:nth-child(2) img {
    object-position: center 48%;
  }

  .gallery-collage {
    gap: 0.6rem;
  }

  .gallery-card img {
    min-height: 130px;
  }

  .card-tall img {
    min-height: 160px;
  }

  .feature-copy p {
    font-size: 0.62rem;
    letter-spacing: 0.1em;
  }

  .feature-copy h2 {
    font-size: clamp(1rem, 3.7vw, 1.3rem);
  }
}

