:root {
  --bg: #f9f4ea;
  --paper: #fffaf0;
  --surface: #fff;
  --text: #2d1c12;
  --muted: #6f5341;
  --line: #e7d5bf;
  --brand-red: #b9261f;
  --brand-red-deep: #8f1d18;
  --brand-gold: #ffcc4d;
  --brand-brown: #5f2f1a;
  --shadow: 0 14px 34px rgba(102, 50, 27, 0.14);
  --radius: 18px;
  --max: 1160px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 10% 0%, #ffe4b3 0, transparent 24%),
    radial-gradient(circle at 96% 8%, #ffd2bf 0, transparent 22%),
    var(--bg);
  line-height: 1.65;
}

h1, h2, h3, h4 {
  font-family: "Bebas Neue", "Impact", sans-serif;
  letter-spacing: 0.03em;
  margin: 0 0 0.6rem;
  line-height: 1.1;
}

h1 { font-size: clamp(2.35rem, 6vw, 4.7rem); }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.8rem); }
p { margin: 0 0 1rem; color: var(--muted); }
a { color: var(--brand-red); text-decoration: none; }
a:hover { color: var(--brand-red-deep); }

.site-shell { min-height: 100vh; display: flex; flex-direction: column; }
main { flex: 1; }
.section-inner { width: min(var(--max), 92vw); margin: 0 auto; }
.section { padding: 4.5rem 0; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.75rem 1.35rem;
  font-size: 0.92rem;
  font-weight: 800;
  border: 2px solid transparent;
  transition: all 0.2s ease;
}
.btn-primary {
  background: linear-gradient(135deg, var(--brand-red), var(--brand-red-deep));
  color: #fff;
  box-shadow: 0 8px 18px rgba(143, 29, 24, 0.32);
}
.btn-primary:hover { transform: translateY(-1px); color: #fff; }
.btn-ghost {
  border-color: rgba(255, 255, 255, 0.55);
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
}
.btn-ghost:hover { border-color: #fff; color: #fff; }
.btn-outline {
  border-color: var(--line);
  color: var(--text);
  background: #fff;
}
.btn-outline:hover {
  border-color: var(--brand-red);
  color: var(--brand-red);
}
.btn-white {
  background: #fff;
  color: var(--brand-red-deep);
}
.btn-ghost-white {
  border-color: rgba(255, 255, 255, 0.55);
  color: #fff;
  background: transparent;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(8px);
  border-bottom: 1px solid #f0dcc3;
  background: rgba(255, 248, 237, 0.92);
}

.page-location {
  border-bottom: 1px solid #efd8bf;
  background: rgba(255, 250, 241, 0.92);
}

.page-location-inner {
  min-height: 40px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.4rem;
  font-size: 0.82rem;
  color: #6f5341;
}

.page-location-inner a {
  color: #8f1d18;
  font-weight: 700;
}

.page-location-sep {
  color: #ab7c5d;
}

.page-location-current {
  color: #5b3523;
  font-weight: 800;
}
.phone-bar {
  background: linear-gradient(90deg, #7d130f, #b9261f 50%, #7d130f);
  color: #fff4d1;
  min-height: 42px;
  font-size: 0.78rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 0.3rem 1rem;
}
.phone-bar a { color: #fff; }

.header-inner {
  width: min(var(--max), 92vw);
  min-height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.brand { display: inline-flex; gap: 0.7rem; align-items: center; }
.brand-mark {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.35rem;
  letter-spacing: 0.06em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: linear-gradient(160deg, var(--brand-red), #7d130f);
}
.brand-text { display: flex; flex-direction: column; }
.brand-name { font-size: 1.1rem; font-weight: 900; color: var(--text); }
.brand-tag {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.66rem;
  color: var(--muted);
  font-weight: 800;
}

.main-nav { margin-left: auto; display: flex; flex-wrap: wrap; gap: 0.3rem; }
.nav-link {
  padding: 0.42rem 0.72rem;
  border-radius: 8px;
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 700;
}
.nav-link:hover,
.nav-link--active {
  background: #fff1dc;
  color: var(--brand-red);
}
.header-cta {
  margin-left: 0.6rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brand-gold), #ffb029);
  color: #4a240f;
  font-size: 0.84rem;
  font-weight: 900;
  padding: 0.66rem 1.15rem;
}
.nav-toggle { display: none; }

.hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: url("/ben.jpg") center center / cover no-repeat,
              url("https://lh3.googleusercontent.com/gps-cs-s/APNQkAEfu2OgsGTO52r0hLse8tFk4KDdpPrj9mI7U8QV8KwU5Sce1L0mO5sxF2jOsSnRuPqaNcwm0favqOLSJu1ZZKQP52qVBk_BiK4MaueREoWW2lkTR9v9A3br9v9iMUt788N2Dxirow=w1280-h720-k-no") center center / cover no-repeat;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(140deg, rgba(35, 11, 4, 0.85), rgba(123, 25, 16, 0.56));
}
.hero-inner {
  position: relative;
  z-index: 1;
  min-height: min(88vh, 780px);
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1.2rem;
  align-items: center;
  padding: 3rem 0;
}
.hero-badge {
  display: inline-flex;
  border: 1px solid rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.14);
  color: #ffe8b5;
  border-radius: 999px;
  padding: 0.35rem 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  font-size: 0.75rem;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.hero-sub { color: rgba(255, 245, 222, 0.95); max-width: 60ch; font-size: 1.06rem; }
.hero-actions { display: flex; gap: 0.7rem; margin-top: 1.4rem; flex-wrap: wrap; }
.trust-bar {
  margin-top: 1.3rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}
.trust-item {
  border-radius: 999px;
  padding: 0.32rem 0.7rem;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.1);
  font-size: 0.78rem;
  color: #fff8e7;
}
.hero-card {
  background: rgba(255, 253, 247, 0.96);
  color: var(--text);
  border-radius: var(--radius);
  border: 1px solid #f4ddc1;
  box-shadow: var(--shadow);
  padding: 1.3rem;
}
.hero-card-kicker {
  color: var(--brand-red);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 900;
}
.hero-card-hours { font-size: 1rem; color: var(--text); font-weight: 700; }
.hero-card-address { font-size: 0.93rem; }

.disclaimer-strip {
  background: #fff5e7;
  border-top: 1px solid #efddb9;
  border-bottom: 1px solid #efddb9;
}
.disclaimer-strip .section-inner {
  padding: 0.75rem 0;
}
.disclaimer-strip p {
  margin: 0;
  color: #5a3a29;
  font-size: 0.9rem;
}
.disclaimer-strip a {
  font-weight: 800;
}

.legacy-strip { background: #fff3dd; border-top: 1px solid #f1d6af; border-bottom: 1px solid #f1d6af; }
.legacy-inner { display: grid; grid-template-columns: auto 1fr; gap: 1.2rem; align-items: center; }
.legacy-year {
  margin: 0;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2rem, 5vw, 3.8rem);
  color: var(--brand-red);
  line-height: 0.9;
}
.legacy-copy { margin: 0; color: #5d3a25; font-size: 1.02rem; }

.section-header { text-align: center; margin-bottom: 2.5rem; }
.section-header p { max-width: 65ch; margin: 0 auto; }
.section-header .btn { margin-top: 0.9rem; }
.section-eyebrow {
  display: inline-block;
  border-radius: 999px;
  padding: 0.28rem 0.75rem;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #7f3b20;
  border: 1px solid #f0d6b5;
  background: #fff3de;
  font-weight: 800;
  margin-bottom: 0.6rem;
}

.menu-section { background: var(--paper); }
.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
.menu-card {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: #fff;
  padding: 1.25rem;
  box-shadow: 0 8px 20px rgba(114, 66, 39, 0.07);
}
.menu-card h3 { color: var(--brand-red-deep); }

.gallery-section { background: linear-gradient(180deg, #fffaf0 0%, #fff2df 100%); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.9rem;
}
.gallery-card {
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #ecd2b2;
  background: #fff;
  box-shadow: 0 10px 24px rgba(114, 66, 39, 0.1);
}
.gallery-card a {
  display: block;
  background: #f2e2cd;
}
.gallery-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.25s ease;
}
.gallery-card:hover img { transform: scale(1.04); }
.gallery-card figcaption {
  padding: 0.55rem 0.7rem 0.65rem;
  font-size: 0.8rem;
  color: #6b4b36;
  font-weight: 700;
}
.gallery-card-featured {
  grid-column: 1 / -1;
  position: relative;
}
.gallery-card-featured img {
  aspect-ratio: 21 / 8;
}
.gallery-card-featured figcaption {
  font-size: 0.95rem;
  color: #402919;
  background: linear-gradient(180deg, #fff3dd 0%, #ffe6c0 100%);
  padding: 0.7rem 0.95rem 0.8rem;
}

.review-links-section {
  background: linear-gradient(180deg, #fffdf8 0%, #fff2e3 100%);
}
.review-links-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.95rem;
}
.review-link-card {
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 0.62rem;
  padding: 1.05rem 0.8rem;
  border-radius: 16px;
  border: 1px solid #e8d9c2;
  background: linear-gradient(180deg, #fff 0%, #fff7eb 100%);
  box-shadow: 0 10px 24px rgba(114, 66, 39, 0.1);
  color: #4a2d1f;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.review-link-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 32px rgba(114, 66, 39, 0.16);
  border-color: #d8be9d;
}
.review-link-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1px solid #efdfc8;
  box-shadow: inset 0 0 0 1px #fff7ec;
}
.review-link-icon img {
  width: 30px;
  height: 30px;
  display: block;
}
.review-link-card--yelp .review-link-icon { background: #fff5f5; }
.review-link-card--tripadvisor .review-link-icon { background: #f4fff8; }
.review-link-card--google .review-link-icon { background: #f5f8ff; }
.review-link-label {
  font-weight: 800;
  font-size: 0.95rem;
  line-height: 1.25;
}
.review-link-card:focus-visible {
  outline: 3px solid rgba(185, 38, 31, 0.22);
  outline-offset: 3px;
}

.reviews-section { background: #fff; }
.review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
.review-card {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: #fffaf1;
  padding: 1.2rem;
}
.review-stars { color: #ef9e00; font-size: 1rem; letter-spacing: 0.13em; margin-bottom: 0.7rem; }
.review-card blockquote { margin: 0 0 0.85rem; color: #51392a; }
.review-source { font-size: 0.77rem; color: #8c6a4c; text-transform: uppercase; letter-spacing: 0.08em; }

.visit-section { background: #f8ecdc; }
.visit-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  align-items: stretch;
}
.visit-list { margin: 0 0 1.2rem 1rem; color: var(--muted); }
.visit-actions { display: flex; flex-wrap: wrap; gap: 0.7rem; }
.map-card {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  min-height: 340px;
}
.map-card iframe {
  width: 100%;
  height: 100%;
  min-height: 340px;
  border: 0;
}

.cta-banner {
  padding: 3.6rem 0;
  background: linear-gradient(135deg, #7f150f, #b9261f);
  color: #fff;
}
.cta-inner {
  width: min(var(--max), 92vw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr auto;
  gap: 1rem;
  align-items: center;
}
.cta-inner h2, .cta-inner p { color: #fff; }
.cta-actions { display: flex; gap: 0.7rem; flex-wrap: wrap; }

.page-hero {
  background: linear-gradient(145deg, #fff6e5, #f8e5ca);
  border-bottom: 1px solid #efd7b4;
  padding: 2.3rem 0;
}
.page-hero-inner, .page-content { width: min(var(--max), 92vw); margin: 0 auto; }
.page-hero-desc { max-width: 66ch; }
.page-content {
  padding: 2.2rem 0 3rem;
  display: grid;
  grid-template-columns: 1.1fr 0.52fr;
  gap: 1rem;
}
.page-content-inner {
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--line);
  padding: 1.25rem;
}
.contact-form-wrap {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}
.contact-note {
  margin-bottom: 0.8rem;
  font-size: 0.92rem;
  color: #7b5037;
}
.contact-form {
  display: grid;
  gap: 0.9rem;
  margin-top: 1rem;
}
.required-mark {
  color: var(--brand-red);
  font-weight: 900;
}
.contact-form label {
  display: grid;
  gap: 0.35rem;
  color: var(--text);
  font-weight: 700;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid #dabb97;
  border-radius: 12px;
  padding: 0.85rem 0.95rem;
  font: inherit;
  color: var(--text);
  background: #fffdf9;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(185, 38, 31, 0.18);
  border-color: var(--brand-red);
}
.contact-form textarea {
  resize: vertical;
  min-height: 160px;
}
.contact-form input:invalid,
.contact-form textarea:invalid {
  border-color: #d96d63;
}
.field-help {
  font-size: 0.82rem;
  color: #7b5d46;
  font-weight: 500;
}
.contact-form .btn {
  width: auto;
  justify-self: start;
}
.contact-form .btn:disabled {
  opacity: 0.7;
  cursor: wait;
}
.contact-response {
  margin-top: 1rem;
  border-radius: 12px;
  padding: 0.9rem 1rem;
  font-weight: 700;
}
.contact-response-success {
  border: 1px solid #b9d7a1;
  background: #eef9e6;
  color: #36561e;
}
.contact-response-error {
  border: 1px solid #e1aba6;
  background: #fff1ef;
  color: #8a2f28;
}
.contact-modal-open {
  overflow: hidden;
}
.contact-success-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 1.25rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}
.contact-success-modal.is-visible {
  opacity: 1;
  pointer-events: auto;
}
.contact-success-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(43, 22, 13, 0.58);
  backdrop-filter: blur(4px);
}
.contact-success-card {
  position: relative;
  z-index: 1;
  width: min(520px, 100%);
  border-radius: 24px;
  padding: 1.5rem 1.4rem 1.3rem;
  background: linear-gradient(180deg, #fff8ef 0%, #ffe9c6 100%);
  border: 1px solid #efc27a;
  box-shadow: 0 24px 60px rgba(62, 27, 10, 0.28);
  text-align: center;
  animation: contactSuccessPop 0.28s ease-out;
}
.contact-success-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 110px;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brand-gold), #ffb029);
  color: #5a280f;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.9rem;
}
.contact-success-card h3 {
  color: #6b220f;
  margin-bottom: 0.5rem;
}
.contact-success-card p {
  color: #5c412e;
  margin: 0;
}
.contact-success-close {
  position: absolute;
  top: 0.9rem;
  right: 0.9rem;
  border: 0;
  background: rgba(255, 255, 255, 0.72);
  color: #6b220f;
  border-radius: 999px;
  padding: 0.45rem 0.75rem;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}
@keyframes contactSuccessPop {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
.contact-honeypot {
  position: absolute;
  left: -9999px;
}
.prose h2 { margin-top: 1.5rem; }
.prose ul, .prose ol { margin: 0 0 1rem 1.2rem; }

.page-aside { display: grid; gap: 0.9rem; align-content: start; }
.aside-card {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: #fff;
  padding: 1rem;
}
.aside-card .btn { width: 100%; margin-top: 0.45rem; }
.aside-hours { margin-top: 0.7rem; color: var(--muted); font-size: 0.9rem; display: grid; }
.aside-card--emergency {
  background: linear-gradient(145deg, #5f2f1a, #7f3b20);
  border-color: #7f3b20;
}
.aside-card--emergency h3,
.aside-card--emergency p,
.aside-card--emergency .emergency-icon { color: #fff4d7; }

.site-footer {
  border-top: 1px solid #ebd8c3;
  background: #2b160d;
  color: #f6d2b8;
}
.footer-inner {
  width: min(var(--max), 92vw);
  margin: 0 auto;
  padding: 2.2rem 0;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 1rem;
}
.footer-brand { display: flex; gap: 0.8rem; }
.footer-brand strong { color: #fff5d9; display: block; margin-bottom: 0.3rem; }
.footer-brand p { color: #f0c9ab; }
.footer-cols { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.8rem; }
.footer-col h4 {
  color: #ffd992;
  margin: 0 0 0.5rem;
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 0.05em;
}
.footer-col p, .footer-col a { color: #f0c9ab; font-size: 0.92rem; display: block; margin-bottom: 0.35rem; }
.footer-col a:hover { color: #fff5d9; }
.footer-cta {
  display: inline-flex;
  margin-top: 0.4rem;
  border: 1px solid #c88959;
  border-radius: 999px;
  padding: 0.4rem 0.75rem;
}
.footer-bottom {
  border-top: 1px solid #4f2c1a;
  min-height: 46px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(var(--max), 92vw);
  margin: 0 auto;
  font-size: 0.78rem;
  color: #e3b99a;
}
.footer-hosted a {
  color: #ffd992;
}
.footer-hosted a:hover {
  color: #fff5d9;
}
.footer-disclaimer {
  color: #f0c9ab;
}
.footer-disclaimer a {
  color: #ffd992;
}
.footer-disclaimer a:hover {
  color: #fff5d9;
}

.owner-message-wrap {
  width: min(var(--max), 92vw);
  margin: 0 auto;
  padding: 0.6rem 0 1.3rem;
}

.owner-message-divider {
  border: 0;
  border-top: 1px solid #4f2c1a;
  margin: 0 0 0.8rem;
}

.owner-popup-trigger-wrap {
  display: flex;
  justify-content: center;
}

.owner-popup-trigger-wrap-contact {
  margin: 0.25rem 0 0.85rem;
}

.owner-popup-trigger {
  border: 1px solid #c88959;
  background: #3a1f13;
  color: #ffe3a8;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: 0.02em;
  padding: 0.55rem 1rem;
  cursor: pointer;
}

.owner-popup-trigger:hover {
  background: #4a2818;
  color: #fff1cc;
}

.owner-popup {
  position: fixed;
  inset: 0;
  z-index: 999;
}

.owner-popup-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 6, 4, 0.64);
}

.owner-popup-panel {
  position: relative;
  width: min(640px, 92vw);
  margin: 8vh auto 0;
  border: 1px solid #6a3f2a;
  background: #2f1a10;
  color: #f3cfb0;
  border-radius: 14px;
  padding: 1.2rem 1.15rem 1rem;
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.4);
}

.owner-popup-panel h3 {
  color: #ffe3a8;
  margin: 0 0 0.65rem;
}

.owner-popup-panel p {
  margin: 0 0 0.72rem;
  color: #f3cfb0;
  font-size: 0.92rem;
}

.owner-popup-details {
  display: block;
  margin-top: 0.45rem;
  padding: 0.22rem 0.5rem;
  border: 1px solid #5f3521;
  border-radius: 8px;
  background: rgba(200, 137, 89, 0.15);
  color: #ffe3b8;
  font-weight: 700;
}

.owner-popup-panel a {
  color: #ffd992;
  font-weight: 700;
}

.owner-popup-panel a:hover {
  color: #fff5d9;
}

.owner-popup-close {
  position: absolute;
  top: 0.35rem;
  right: 0.55rem;
  border: 0;
  background: transparent;
  color: #f0c9ab;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
}

.owner-popup-close:hover {
  color: #fff5d9;
}

.owner-popup-legal {
  border-top: 1px solid #5f3521;
  margin-top: 0.8rem;
  padding-top: 0.75rem;
  font-size: 0.82rem;
  color: #dcb79c;
}

body.owner-popup-open {
  overflow: hidden;
}

@media (max-width: 1080px) {
  .hero-inner,
  .visit-inner,
  .cta-inner,
  .page-content,
  .footer-inner {
    grid-template-columns: 1fr;
  }
  .review-links-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .gallery-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .review-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-cols { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 760px) {
  .header-inner { min-height: 66px; }
  .main-nav { display: none; }
  .header-cta { display: none; }
  .nav-toggle { display: inline-flex; margin-left: auto; background: none; border: none; font-size: 1.3rem; }
  .hero { background-position: center top; }
  .hero-inner { min-height: auto; padding: 3.2rem 0; }
  .menu-grid,
  .review-links-grid,
  .gallery-grid,
  .review-grid,
  .footer-cols { grid-template-columns: 1fr; }
  .phone-bar { flex-direction: column; gap: 0.2rem; padding: 0.4rem 0.6rem; }
  .legacy-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; justify-content: center; gap: 0.2rem; padding: 0.55rem 0; }
  .owner-message-wrap { padding: 0.5rem 0 1rem; }
  .owner-popup-panel { margin-top: 6vh; padding: 1rem 0.9rem 0.9rem; }
  .owner-popup-trigger-wrap-contact { margin-bottom: 0.7rem; }
}
