:root {
  --blue: #0b425a;
  --blue-deep: #062f41;
  --blue-ink: #092837;
  --gold: #c9a66a;
  --gold-light: #e1c492;
  --ivory: #f7f3eb;
  --cream: #eee6d8;
  --ink: #14222a;
  --muted: #657078;
  --white: #ffffff;
  --nav-h: 80px;
  --shadow: 0 24px 55px rgba(6, 47, 65, .14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--nav-h) + 26px); }
section[id] { scroll-margin-top: calc(var(--nav-h) + 26px); }
body {
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  padding-bottom: 88px;
}
body.lightbox-open, body.gallery-modal-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, a { -webkit-tap-highlight-color: transparent; }

/* Lightweight fallbacks keep the page polished even before Bootstrap finishes loading. */
.container { width: min(1320px, calc(100% - 40px)); margin-left: auto; margin-right: auto; }
.container-fluid { width: 100%; }
.text-center { text-align: center; }
.mx-auto { margin-left: auto !important; margin-right: auto !important; }
.welcome-grid { display: grid; grid-template-columns: 5fr 7fr; gap: clamp(36px, 6vw, 78px); align-items: center; }
.gallery-heading { display: grid; grid-template-columns: 7fr 5fr; gap: clamp(28px, 5vw, 64px); align-items: end; margin-bottom: 28px; }

.skip-link {
  position: fixed;
  left: 12px;
  top: -80px;
  z-index: 5000;
  background: var(--white);
  color: var(--blue);
  padding: 12px 16px;
  border-radius: 6px;
}
.skip-link:focus { top: 12px; }

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1100;
}
.nav-shell {
  min-height: var(--nav-h);
  background: rgba(7, 48, 66, .97);
  border-bottom: 1px solid rgba(225, 196, 146, .32);
  box-shadow: 0 10px 28px rgba(0, 0, 0, .08);
  backdrop-filter: blur(12px);
}
.desktop-nav {
  position: relative;
  height: var(--nav-h);
  min-height: var(--nav-h);
  display: grid;
  grid-template-columns: minmax(0, 1fr) 190px minmax(0, 1fr);
  grid-template-rows: var(--nav-h);
  align-items: center;
  max-width: 1460px;
  margin: 0 auto;
  padding-left: clamp(28px, 4vw, 72px);
  padding-right: clamp(28px, 4vw, 72px);
  overflow: visible;
}
.desktop-nav-left,
.desktop-nav-right { display: flex; align-items: center; gap: clamp(16px, 1.9vw, 30px); min-width: 0; }
.desktop-nav-left { grid-column: 1; justify-content: flex-end; }
.desktop-nav-right { grid-column: 3; justify-content: flex-start; }
.desktop-nav a:not(.desktop-logo) {
  color: rgba(255, 255, 255, .86);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
  transition: color .2s ease, opacity .2s ease;
  white-space: nowrap;
}
.desktop-nav a:not(.desktop-logo):hover { color: var(--gold-light); }
.desktop-logo {
  grid-column: 2;
  grid-row: 1;
  position: relative;
  justify-self: center;
  align-self: start;
  margin-top: 3px;
  z-index: 3;
}
.logo-medallion {
  width: 124px;
  height: 124px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--blue-deep);
  border: 2px solid var(--gold);
  box-shadow: 0 14px 32px rgba(0, 0, 0, .23);
  overflow: hidden;
}
.logo-medallion img { width: 104px; height: auto; }
.nav-phone { color: var(--gold-light) !important; }
.nav-order {
  padding: 11px 15px;
  border: 1px solid var(--gold);
  border-radius: 999px;
}
.nav-mobile-row, .mobile-nav { display: none; }

.hero {
  min-height: 760px;
  height: 84svh;
  max-height: 920px;
  position: relative;
  display: flex;
  align-items: center;
  color: var(--white);
  background-image: url('../assets/images/hero-interior.webp');
  background-size: cover;
  background-position: center 50%;
  overflow: hidden;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(3, 27, 38, .88) 0%, rgba(3, 27, 38, .68) 45%, rgba(3, 27, 38, .24) 78%, rgba(3, 27, 38, .18) 100%),
    linear-gradient(0deg, rgba(3, 27, 38, .38), transparent 35%);
}
.hero-content { position: relative; z-index: 1; padding-top: 110px; }
.hero-content > * { max-width: 770px; }
.eyebrow, .section-kicker {
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .19em;
  text-transform: uppercase;
  color: var(--gold);
}
.hero h1, .display-heading, .visit-content h2, .menu-library h2 {
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: -.035em;
}
.hero h1 {
  font-size: clamp(3.25rem, 7vw, 6.8rem);
  line-height: .96;
  font-weight: 400;
  margin: 20px 0 24px;
  text-wrap: balance;
}
.hero h1 em { color: var(--gold-light); font-weight: 400; }
.hero-copy { font-size: clamp(1.05rem, 1.6vw, 1.32rem); max-width: 610px; color: rgba(255, 255, 255, .85); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.btn-elegant {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 21px;
  border-radius: 4px;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}
.btn-elegant:hover { transform: translateY(-2px); }
.btn-gold { background: var(--gold); color: var(--blue-deep); border: 1px solid var(--gold); }
.btn-gold:hover { background: var(--gold-light); color: var(--blue-deep); }
.btn-blue { background: var(--blue); color: var(--white); border: 1px solid var(--blue); }
.btn-blue:hover { background: var(--blue-deep); color: var(--white); }
.btn-outline-light-custom { border: 1px solid rgba(255,255,255,.62); color: var(--white); background: rgba(255,255,255,.03); }
.btn-outline-light-custom:hover { border-color: var(--white); color: var(--white); background: rgba(255,255,255,.1); }
.hero-scroll {
  position: absolute;
  right: clamp(28px, 5vw, 80px);
  bottom: 36px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 9px;
  color: rgba(255,255,255,.68);
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: .14em;
}
.scroll-line { width: 1px; height: 42px; background: linear-gradient(var(--gold), transparent); }

.section-pad { padding: clamp(80px, 9vw, 128px) 0; }
.section-pad-sm { padding: clamp(56px, 7vw, 90px) 0; }
.section-kicker { margin-bottom: 14px; }
.section-kicker.light { color: var(--gold-light); }
.display-heading {
  font-size: clamp(2.35rem, 5vw, 4.8rem);
  line-height: 1.02;
  color: var(--blue-deep);
  font-weight: 400;
  text-wrap: balance;
}
.lead-copy { font-size: clamp(1.08rem, 1.6vw, 1.28rem); color: #4e5b61; max-width: 760px; }
.quick-details {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
  margin-top: 36px;
  padding-top: 26px;
  border-top: 1px solid rgba(11, 66, 90, .16);
}
.quick-details > div { display: flex; flex-direction: column; gap: 5px; }
.detail-label { color: var(--gold); text-transform: uppercase; letter-spacing: .12em; font-size: .7rem; font-weight: 800; }
.quick-details a { font-weight: 700; color: var(--blue); }

.menu-preview { background: var(--white); }
.section-intro { max-width: 800px; margin-bottom: 52px; }
.section-intro p { color: var(--muted); font-size: 1.05rem; max-width: 640px; margin: 18px auto 0; }
.menu-slider-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 16px;
}
.menu-slider-hint { color: var(--muted); font-size: .84rem; }
.menu-slider-controls { display: flex; gap: 8px; flex: 0 0 auto; }
.menu-slider-btn {
  width: 46px;
  height: 46px;
  border: 1px solid rgba(11,66,90,.22);
  border-radius: 50%;
  background: var(--white);
  color: var(--blue-deep);
  font-size: 1.8rem;
  line-height: 1;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background .2s ease, color .2s ease, border-color .2s ease, opacity .2s ease, transform .2s ease;
}
.menu-slider-btn:hover:not(:disabled) { background: var(--blue-deep); color: var(--white); border-color: var(--blue-deep); transform: translateY(-1px); }
.menu-slider-btn:disabled { opacity: .28; cursor: default; }
.menu-slider-wrap { position: relative; }
.menu-track {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding: 1px 1px 14px;
  outline: none;
}
.menu-track::-webkit-scrollbar { display: none; }
.menu-track:focus-visible { box-shadow: 0 0 0 3px rgba(201,166,106,.28); border-radius: 4px; }
.menu-card {
  flex: 0 0 calc((100% - 24px) / 3);
  scroll-snap-align: start;
  padding: clamp(24px, 3vw, 38px);
  min-height: 276px;
  border: 1px solid #d9d4ca;
  background: #fff;
  transition: background .25s ease, transform .25s ease, box-shadow .25s ease;
}
.menu-card:hover { background: var(--ivory); box-shadow: 0 14px 32px rgba(6,47,65,.07); }
.menu-card-top { display: flex; justify-content: space-between; gap: 20px; color: var(--gold); font-size: .71rem; text-transform: uppercase; letter-spacing: .1em; font-weight: 800; }
.menu-card .price { font-family: Georgia, serif; font-size: 1.12rem; letter-spacing: 0; }
.menu-card h3 { font-family: Georgia, serif; color: var(--blue-deep); font-size: 1.75rem; margin: 22px 0 12px; }
.menu-card p { margin: 0; color: #596268; font-size: .95rem; }
.menu-actions { margin-top: 34px; display: flex; justify-content: center; align-items: center; flex-wrap: wrap; gap: 26px; }
.text-link { color: var(--blue); font-weight: 800; font-size: .9rem; border-bottom: 1px solid rgba(11, 66, 90, .25); padding-bottom: 3px; }

.menu-library { background: linear-gradient(135deg, var(--blue-deep), var(--blue)); color: var(--white); }
.menu-library-shell { display: grid; grid-template-columns: .82fr 1.18fr; gap: clamp(36px, 6vw, 80px); align-items: center; }
.menu-library h2 { font-size: clamp(2.2rem, 4.2vw, 4rem); line-height: 1.03; font-weight: 400; margin: 0; max-width: 500px; }
.menu-downloads { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); border: 1px solid rgba(255,255,255,.17); }
.menu-downloads a { min-height: 180px; padding: 24px; display: flex; flex-direction: column; justify-content: space-between; border-right: 1px solid rgba(255,255,255,.17); transition: background .2s ease; }
.menu-downloads a:last-child { border-right: 0; }
.menu-downloads a:hover { background: rgba(255,255,255,.08); }
.menu-downloads span { color: var(--gold-light); text-transform: uppercase; letter-spacing: .12em; font-size: .68rem; font-weight: 800; }
.menu-downloads strong { font-family: Georgia, serif; font-size: 1.4rem; font-weight: 400; }
.menu-downloads small { color: rgba(255,255,255,.55); }

.food-gallery-section { background: var(--cream); }
.gallery-note { margin: 0 0 7px auto; max-width: 460px; color: #5d6569; }
.food-gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: clamp(190px, 17vw, 250px);
  gap: 12px;
}
.gallery-tile {
  position: relative;
  overflow: hidden;
  border: 0;
  padding: 0;
  background: var(--blue-deep);
  cursor: zoom-in;
  color: var(--white);
  border-radius: 2px;
}
.gallery-tile.featured { grid-column: span 2; grid-row: span 1; }
.gallery-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s cubic-bezier(.2,.8,.2,1), opacity .3s ease; }
.gallery-tile:hover img { transform: scale(1.035); opacity: .96; }
.gallery-more-wrap { margin-top: 26px; }
.gallery-more-btn { gap: 11px; }
.gallery-more-btn span { font-size: 1.25rem; line-height: 1; margin-top: -2px; }

.restaurant-gallery { background: var(--ivory); }
.restaurant-gallery .section-intro { margin-bottom: 2.5rem; }
.interior-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-flow: dense;
  grid-auto-rows: clamp(112px, 9.2vw, 138px);
  gap: 10px;
  max-width: 1320px;
  margin-inline: auto;
}
.interior-item {
  position: relative;
  display: block;
  margin: 0;
  padding: 0;
  border: 0;
  overflow: hidden;
  background: #ddd;
  cursor: zoom-in;
}
.interior-item:nth-child(1) { grid-column: 1 / span 3; grid-row: 1 / span 3; }
.interior-item:nth-child(2) { grid-column: 4 / span 6; grid-row: 1 / span 2; }
.interior-item:nth-child(3) { grid-column: 10 / span 3; grid-row: 1 / span 2; }
.interior-item:nth-child(4) { grid-column: 4 / span 3; grid-row: 3 / span 2; }
.interior-item:nth-child(5) { grid-column: 7 / span 3; grid-row: 3 / span 2; }
.interior-item:nth-child(6) { grid-column: 10 / span 3; grid-row: 3 / span 2; }
.interior-item:nth-child(7) { grid-column: 1 / span 3; grid-row: 4 / span 3; }
.interior-item:nth-child(8) { grid-column: 4 / span 6; grid-row: 5 / span 2; }
.interior-item:nth-child(9) { grid-column: 10 / span 3; grid-row: 5 / span 1; }
.interior-item:nth-child(10) { grid-column: 10 / span 3; grid-row: 6 / span 1; }
.interior-item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform .6s cubic-bezier(.2,.8,.2,1), filter .4s ease;
}
.interior-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(5,48,65,0);
  transition: background .35s ease;
  pointer-events: none;
}
.interior-item:hover img { transform: scale(1.045); }
.interior-item:hover::after { background: rgba(5,48,65,.10); }
.interior-item:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; z-index: 2; }

.visit-section {
  min-height: 720px;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  background: var(--blue-deep);
  color: var(--white);
}
.visit-map-wrap { min-height: 720px; background: #d7d2c7; }
.visit-map-wrap iframe { width: 100%; height: 100%; min-height: 720px; border: 0; filter: saturate(.78) contrast(.96); }
.visit-content { padding: clamp(54px, 6vw, 88px); display: flex; flex-direction: column; justify-content: center; }
.visit-content h2 { font-size: clamp(2.8rem, 5.2vw, 5.3rem); line-height: .98; font-weight: 400; margin: 12px 0 28px; }
.visit-address { font-family: Georgia, serif; font-size: 1.35rem; line-height: 1.45; color: var(--gold-light); }
.visit-phone { font-weight: 800; margin-top: 8px; }
.hours { margin-top: 34px; border-top: 1px solid rgba(255,255,255,.14); }
.hours > div { display: flex; justify-content: space-between; gap: 18px; padding: 9px 0; border-bottom: 1px solid rgba(255,255,255,.1); font-size: .89rem; }
.hours strong { font-weight: 700; color: rgba(255,255,255,.8); text-align: right; }
.visit-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 30px; }

.site-footer { background: #041f2b; color: rgba(255,255,255,.74); padding: 64px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr repeat(3, 1fr); gap: 46px; }
.footer-brand img { width: 180px; margin-bottom: 16px; }
.footer-brand p { font-family: Georgia, serif; color: var(--gold-light); }
.footer-grid > div:not(.footer-brand) { display: flex; flex-direction: column; gap: 7px; }
.footer-grid strong { color: var(--white); text-transform: uppercase; letter-spacing: .1em; font-size: .74rem; margin-bottom: 8px; }
.footer-grid a { font-size: .9rem; }
.footer-grid a:hover { color: var(--gold-light); }
.footer-bottom { margin-top: 46px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.1); display: flex; justify-content: space-between; gap: 20px; font-size: .78rem; }

.persistent-actions {
  position: fixed;
  left: 50%;
  bottom: max(14px, env(safe-area-inset-bottom));
  transform: translateX(-50%);
  z-index: 1500;
  width: min(620px, calc(100% - 28px));
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: 999px;
  overflow: hidden;
  box-shadow: 0 16px 42px rgba(0,0,0,.28);
  border: 1px solid rgba(255,255,255,.24);
}
.persistent-actions a { min-height: 62px; display: flex; align-items: center; justify-content: center; gap: 12px; padding: 10px 18px; }
.persistent-actions small { display: block; font-size: .61rem; font-weight: 700; text-transform: uppercase; letter-spacing: .09em; opacity: .72; line-height: 1.2; }
.persistent-call { background: rgba(7, 48, 66, .97); color: var(--white); }
.persistent-call svg { width: 20px; height: 20px; fill: var(--gold-light); }
.persistent-order { background: var(--gold); color: var(--blue-deep); font-weight: 800; }

.back-to-top {
  position: fixed;
  right: 22px;
  bottom: 104px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(7,48,66,.96);
  border: 1px solid rgba(225,196,146,.55);
  color: var(--gold-light);
  box-shadow: 0 12px 28px rgba(0,0,0,.18);
  z-index: 1490;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity .2s ease, transform .2s ease, visibility .2s ease, background .2s ease;
}
.back-to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--blue-deep); color: var(--white); }
.back-to-top svg { width: 22px; height: 22px; fill: currentColor; }

.gallery-modal { position: fixed; inset: 0; z-index: 2600; padding: clamp(12px, 3vw, 36px); }
.gallery-modal-backdrop { position: absolute; inset: 0; background: rgba(2,15,21,.78); backdrop-filter: blur(9px); }
.gallery-modal-panel {
  position: relative;
  z-index: 1;
  width: min(1180px, 100%);
  height: min(900px, calc(100vh - clamp(24px, 6vw, 72px)));
  max-height: 92vh;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  background: var(--ivory);
  border: 1px solid rgba(201,166,106,.38);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 32px 90px rgba(0,0,0,.38);
}
.gallery-modal-header {
  flex: 0 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 28px;
  padding: clamp(22px, 3vw, 34px);
  border-bottom: 1px solid rgba(11,66,90,.12);
  background: rgba(247,243,235,.97);
}
.gallery-modal-header .section-kicker { margin-bottom: 7px; }
.gallery-modal-header h2 { margin: 0; font-family: Georgia, serif; color: var(--blue-deep); font-size: clamp(2rem, 4vw, 3.4rem); font-weight: 400; letter-spacing: -.035em; line-height: 1; }
.gallery-modal-close {
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(11,66,90,.18);
  border-radius: 50%;
  background: transparent;
  color: var(--blue-deep);
  font-size: 2rem;
  line-height: 1;
  display: grid;
  place-items: center;
  cursor: pointer;
}
.gallery-modal-close:hover { background: var(--blue-deep); color: var(--white); }
.gallery-modal-scroll { flex: 1 1 auto; min-height: 0; overflow-y: auto; overscroll-behavior: contain; padding: clamp(16px, 2.3vw, 28px); }
.all-dishes-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px; }
.all-dishes-grid .gallery-tile { aspect-ratio: 1 / 1; min-height: 0; }
/*.all-dishes-grid .gallery-tile:nth-child(7n + 1) { grid-column: span 2; aspect-ratio: 2 / 1; }*/

.lightbox { position: fixed; inset: 0; z-index: 3000; }
.lightbox-backdrop { position: absolute; inset: 0; background: rgba(2, 15, 21, .94); backdrop-filter: blur(8px); }
.lightbox-dialog { position: absolute; inset: 0; display: grid; grid-template-columns: 64px minmax(0, 1fr) 64px; align-items: center; padding: 62px clamp(12px, 3vw, 40px) 28px; }
.lightbox-dialog figure { margin: 0 auto; max-width: min(1100px, 82vw); max-height: 82vh; display: flex; flex-direction: column; align-items: center; gap: 10px; }
.lightbox-dialog img { max-width: 100%; max-height: 76vh; object-fit: contain; box-shadow: 0 20px 80px rgba(0,0,0,.4); }
.lightbox-count { color: rgba(255,255,255,.68); font-size: .72rem; text-transform: uppercase; letter-spacing: .14em; }
.lightbox-close, .lightbox-nav { position: relative; z-index: 4; border: 0; color: var(--white); background: rgba(255,255,255,.08); display: grid; place-items: center; cursor: pointer; }
.lightbox-close { position: absolute; right: 22px; top: 18px; width: 46px; height: 46px; border-radius: 50%; font-size: 2rem; line-height: 1; }
.lightbox-nav { width: 52px; height: 70px; border-radius: 3px; font-size: 2.7rem; justify-self: center; }
.lightbox-close:hover, .lightbox-nav:hover { background: rgba(255,255,255,.16); }

@media (max-width: 1199.98px) {
  .menu-card { flex-basis: calc((100% - 12px) / 2); }
  .food-gallery { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .all-dishes-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .welcome-grid, .gallery-heading { grid-template-columns: 1fr; }
  .gallery-note { margin-left: 0; }
  :root { --nav-h: 72px; }
  .desktop-nav { display: none; }
  .nav-mobile-row { display: grid; grid-template-columns: 52px 1fr 52px; align-items: center; min-height: var(--nav-h); padding: 0 14px; }
  .mobile-logo { justify-self: center; width: 78px; height: 58px; display: grid; place-items: center; overflow: hidden; }
  .mobile-logo img { width: 76px; }
  .menu-toggle, .mobile-phone { width: 48px; height: 48px; display: grid; place-items: center; border: 0; background: transparent; border-radius: 50%; }
  .menu-toggle { padding: 13px 11px; gap: 5px; }
  .menu-toggle span { width: 23px; height: 2px; background: var(--white); display: block; transition: transform .2s ease, opacity .2s ease; }
  .menu-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle.is-open span:nth-child(2) { opacity: 0; }
  .menu-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .mobile-phone svg { width: 22px; height: 22px; fill: var(--gold-light); }
  .mobile-nav { padding: 12px 20px 20px; background: rgba(6, 47, 65, .99); border-top: 1px solid rgba(255,255,255,.08); }
  .mobile-nav:not([hidden]) { display: grid; }
  .mobile-nav a { padding: 13px 4px; color: var(--white); font-size: .88rem; text-transform: uppercase; letter-spacing: .1em; font-weight: 750; border-bottom: 1px solid rgba(255,255,255,.09); }
  .mobile-nav a:last-child { color: var(--gold-light); }
  .hero { min-height: 650px; height: 82svh; }
  .hero-content { padding-top: 88px; }
  .menu-library-shell { grid-template-columns: 1fr; }
  .visit-section { grid-template-columns: 1fr; }
  .visit-map-wrap, .visit-map-wrap iframe { min-height: 430px; }
}

@media (max-width: 991.98px) {
  .interior-grid { grid-template-columns: repeat(6, minmax(0, 1fr)); grid-auto-rows: 130px; }
  .interior-item:nth-child(n) { grid-column: span 3; grid-row: span 2; }
}

@media (max-width: 767.98px) {
  .container { width: min(100% - 30px, 1320px); }
  body { padding-bottom: calc(72px + env(safe-area-inset-bottom)); }
  .hero { min-height: 640px; height: 84svh; background-position: 56% center; align-items: flex-end; padding-bottom: 72px; }
  .hero-overlay { background: linear-gradient(0deg, rgba(3,27,38,.92) 0%, rgba(3,27,38,.63) 55%, rgba(3,27,38,.2) 100%); }
  .hero-content { padding-top: 100px; }
  .hero h1 { font-size: clamp(3.05rem, 14vw, 4.55rem); }
  .hero-copy { font-size: 1rem; }
  .hero-actions { width: 100%; }
  .hero-actions .btn-elegant { flex: 1 1 190px; }
  .hero-scroll { display: none; }
  .section-pad { padding: 76px 0; }
  .display-heading { font-size: clamp(2.45rem, 11vw, 3.5rem); }
  .quick-details { grid-template-columns: 1fr; gap: 18px; }
  .menu-slider-head { align-items: flex-end; }
  .menu-slider-hint { max-width: 190px; }
  .menu-card { flex-basis: 86%; min-height: 0; }
  .menu-library { padding-bottom: 52px; }
  .menu-downloads { grid-template-columns: 1fr; }
  .menu-downloads a { min-height: 120px; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.17); }
  .menu-downloads a:last-child { border-bottom: 0; }
  .food-gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); grid-auto-rows: 43vw; gap: 8px; }
  .gallery-tile.featured { grid-column: span 1; grid-row: span 1; }
  .gallery-preview .preview-extra { display: none; }
  .all-dishes-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; }
  /*.all-dishes-grid .gallery-tile:nth-child(7n + 1) { grid-column: span 1; aspect-ratio: 1 / 1; }*/
  .gallery-modal { padding: 8px; }
  .gallery-modal-panel { height: calc(100svh - 16px); max-height: none; border-radius: 8px; }
  .gallery-modal-header { padding: 20px 18px; }
  .gallery-modal-close { width: 42px; height: 42px; }
  .gallery-modal-scroll { padding: 10px; }
  .interior-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); grid-auto-rows: clamp(140px, 43vw, 180px); gap: 6px; }
  .interior-item:nth-child(n) { grid-column: span 1; grid-row: span 1; }
  .visit-content { padding: 64px 22px 76px; }
  .visit-map-wrap, .visit-map-wrap iframe { min-height: 360px; }
  .visit-content h2 { font-size: clamp(2.8rem, 14vw, 4.1rem); }
  .visit-address { font-size: 1.2rem; }
  .hours > div { font-size: .82rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 34px 22px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; }
  .persistent-actions { width: 100%; left: 0; bottom: 0; transform: none; border-radius: 0; border-left: 0; border-right: 0; border-bottom: 0; }
  .back-to-top { right: 14px; bottom: calc(78px + env(safe-area-inset-bottom)); width: 44px; height: 44px; }
  .persistent-actions a { min-height: 64px; padding: 9px 10px; font-size: .84rem; }
  .persistent-call svg { width: 18px; height: 18px; }
  .persistent-actions small { font-size: .55rem; }
  .lightbox-dialog { grid-template-columns: 42px minmax(0, 1fr) 42px; padding-left: 4px; padding-right: 4px; }
  .lightbox-dialog figure { max-width: calc(100vw - 92px); }
  .lightbox-nav { width: 40px; height: 56px; font-size: 2rem; }
}

@media (max-width: 410px) {
  .persistent-call span, .persistent-order span { line-height: 1.15; }
  .persistent-actions a { gap: 7px; }
  .persistent-call svg { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; animation: none !important; }
}
