:root {
  --cream: #fff7eb;
  --cream-deep: #f8ead9;
  --red: #d90000;
  --red-dark: #8f0000;
  --red-deeper: #5d0000;
  --gold: #ffbd2e;
  --black: #050505;
  --ink: #211611;
  --white: #fff;
  --muted: #695b53;
  --shadow: 0 18px 44px rgba(61, 20, 6, .16);
  --radius: 24px;
  --shell: min(1180px, calc(100% - 40px));
  --header-height: 116px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: var(--header-height); }
body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, textarea, select { font: inherit; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, .footer-about h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: .98;
}
h2 { margin-bottom: 24px; font-size: clamp(2.35rem, 5vw, 4.7rem); }
h3 { line-height: 1.1; }

.page-shell { width: var(--shell); margin-inline: auto; }
.page-shell--narrow { width: min(960px, calc(100% - 40px)); margin-inline: auto; }
.section { padding: 100px 0; }
.section--cream { background: var(--cream); }
.section--red { background: var(--red); color: var(--white); }
.eyebrow {
  margin-bottom: 12px;
  color: var(--red);
  font-size: .73rem;
  font-weight: 900;
  letter-spacing: .17em;
  text-transform: uppercase;
}
.eyebrow--gold { color: var(--gold); }
.section-intro { max-width: 680px; margin: -10px auto 38px; color: var(--muted); }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: var(--white);
  background: var(--black);
  transform: translateY(-150%);
}
.skip-link:focus { transform: none; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 24px;
  border: 0;
  border-radius: 999px;
  color: var(--white);
  background: var(--red);
  box-shadow: 0 10px 24px rgba(145, 0, 0, .26);
  font-size: .82rem;
  font-weight: 800;
  text-decoration: none;
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}
.button:hover, .button:focus-visible { background: #b80000; transform: translateY(-2px); box-shadow: 0 14px 28px rgba(145, 0, 0, .34); }
.button:focus-visible, a:focus-visible, button:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; }
.button--cream { color: var(--red-dark); background: var(--cream); box-shadow: none; }
.button--cream:hover, .button--cream:focus-visible { color: var(--white); background: var(--red-dark); }
.button--dark { background: var(--black); box-shadow: none; }
.button--dark:hover, .button--dark:focus-visible { background: #28201d; }

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: var(--header-height);
  padding: 12px max(5vw, 24px);
  color: var(--white);
  background: transparent;
  box-shadow: 0 10px 30px rgba(0,0,0,0);
  transition: color .25s ease, background-color .25s ease, box-shadow .25s ease;
}
.site-header.is-scrolled {
  color: var(--white);
  background: var(--black);
  box-shadow: 0 10px 30px rgba(0,0,0,.2);
}
.brand {
  position: relative;
  z-index: 2;
  display: block;
  width: 230px;
  aspect-ratio: 1489 / 475;
  overflow: visible;
}
.brand img { width: 100%; height: auto; aspect-ratio: 1489 / 475; object-fit: contain; }
.site-nav { display: flex; align-items: center; gap: 36px; }
.site-nav > a:not(.button):not(.facebook-link) {
  position: relative;
  padding: 9px 0;
  font-size: .88rem;
  text-decoration: none;
}
.site-nav > a:not(.button):not(.facebook-link)::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 2px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .22s ease;
}
.site-nav > a:not(.button):not(.facebook-link):hover::after,
.site-nav > a:not(.button):not(.facebook-link):focus-visible::after,
.site-nav > a:not(.button):not(.facebook-link).is-active::after { transform: scaleX(1); }
.site-nav > a.is-active { font-weight: 800; }
.header-on-light:not(.menu-open) .site-header:not(.is-scrolled) { color: var(--black); }
.header-on-light:not(.menu-open) .site-header:not(.is-scrolled) .facebook-link {
  color: var(--white);
  background: var(--black);
}
.facebook-link, .footer-facebook {
  display: inline-grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 50%;
  color: var(--black);
  background: var(--white);
  font-family: Arial, sans-serif;
  font-size: 1.35rem;
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
}
.button--header { min-height: 48px; padding-inline: 26px; }
.menu-toggle { display: none; }

.hero {
  position: relative;
  min-height: 760px;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: var(--white);
  background: #251714;
}
.hero__media, .hero__overlay { position: absolute; inset: 0; }
.hero__media {
  background: radial-gradient(circle at 50% 55%, #6b2c1c 0, #311a14 42%, #0a0807 100%);
}
.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__media img { object-position: center; }
.hero__overlay { background: linear-gradient(90deg, rgba(0,0,0,.72), rgba(0,0,0,.3) 50%, rgba(0,0,0,.62)); }
.hero__content {
  position: relative;
  z-index: 1;
  width: min(100% - 40px, 1080px);
  max-width: none;
  padding: 110px 32px 52px;
  font-family: Lato, Arial, sans-serif;
  text-align: center;
}
.hero .eyebrow {
  margin-bottom: 18px;
  font-size: 1rem;
  letter-spacing: .12em;
  text-shadow: 0 3px 12px rgba(0, 0, 0, .45);
}
.hero h1 {
  max-width: 980px;
  margin: 0 auto 24px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(50px, 8vw, 96px);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -.03em;
  text-shadow: 0 5px 22px rgba(0, 0, 0, .48);
}
.hero h1 em {
  color: #c90104;
  font-style: italic;
  font-weight: 700;
  text-shadow: 0 3px 14px rgba(0, 0, 0, .55), 0 0 18px rgba(255, 255, 255, .18);
}
.hero__lead {
  max-width: 850px;
  margin: 0 auto 28px;
  color: #fff8ef;
  font-size: clamp(18px, 1.7vw, 21px);
  font-weight: 700;
  line-height: 1.55;
  text-shadow: 0 4px 16px rgba(0, 0, 0, .55);
}
.hero__badges, .hero__actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; }
.hero__badges { gap: 12px; margin-bottom: 36px; }
.hero__badges span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border: 1px solid rgba(255,255,255,.4);
  border-radius: 999px;
  color: #fff8ef;
  background: rgba(5, 5, 5, .62);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
  backdrop-filter: blur(6px);
}
.footer-tags span {
  padding: 6px 12px;
  border: 1px solid rgba(255,255,255,.4);
  border-radius: 999px;
  background: rgba(0,0,0,.36);
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.hero__actions { gap: 16px; }
.hero__actions .button {
  min-width: 210px;
  min-height: 0;
  padding: 18px 32px;
  border-radius: 16px;
  font-family: Lato, Arial, sans-serif;
  font-size: 18px;
  font-weight: 900;
  box-shadow: 0 14px 32px rgba(0, 0, 0, .32);
}
.hero__actions .button--cream { color: #050505; }
.hero__actions .button:hover, .hero__actions .button:focus-visible { transform: translateY(-3px); }
.hero__actions .button--cream:hover, .hero__actions .button--cream:focus-visible { color: #050505; background: var(--gold); }

.specials { padding-block: 84px; }
.specials-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 30px;
  padding: 46px;
  border: 1px solid rgba(128, 66, 37, .15);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}
.specials-card__mark {
  display: grid;
  width: 92px;
  height: 92px;
  place-items: center;
  border-radius: 24px;
  color: var(--white);
  background: linear-gradient(145deg, #e00000, #850000);
  font-size: 3.8rem;
  font-weight: 900;
  line-height: 1;
}
.specials-card h2 { margin-bottom: 12px; font-size: clamp(2.3rem, 4vw, 3.7rem); }
.specials-card p:last-child { max-width: 610px; margin-bottom: 0; color: var(--muted); }
.specials-card__button { gap: 10px; white-space: nowrap; }

.catering-highlight {
  position: relative;
  display: grid;
  min-height: 650px;
  place-items: center;
  padding: 80px 20px;
  overflow: hidden;
  color: var(--white);
  background: #26201d;
}
.catering-highlight__media, .catering-highlight__overlay { position: absolute; inset: 0; }
.catering-highlight__media {
  background-color: #30201c;
  background-image: url("Images/Martha´s facade.jpg");
  background-repeat: no-repeat;
  background-position: center 58%;
  background-size: cover;
  background-attachment: fixed;
}
.catering-highlight__overlay { background: rgba(6, 4, 3, .56); }
.catering-panel {
  position: relative;
  z-index: 1;
  width: min(100%, 980px);
  min-width: 0;
  padding: 52px 46px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 34px;
  background: rgba(5, 5, 5, .72);
  box-shadow: 0 24px 60px rgba(0, 0, 0, .35);
  font-family: Lato, Arial, sans-serif;
  text-align: center;
  backdrop-filter: blur(10px);
}
.catering-panel .eyebrow { margin-bottom: 12px; font-size: 14px; letter-spacing: .14em; }
.catering-panel h2 {
  margin-bottom: 20px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(44px, 7vw, 72px);
  font-weight: 500;
  line-height: 1.02;
}
.catering-panel > p:not(.eyebrow) {
  max-width: 820px;
  margin: 0 auto 34px;
  color: #fff8ef;
  font-size: clamp(18px, 1.6vw, 21px);
  line-height: 1.65;
}
.catering-types { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-bottom: 36px; }
.catering-types article {
  padding: 26px 22px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 22px;
  background: rgba(255, 248, 239, .1);
  box-shadow: inset 0 0 0 1px rgba(205, 203, 204, .1);
}
.catering-types h3 {
  margin: 0 0 10px;
  color: var(--white);
  font-family: Lato, Arial, sans-serif;
  font-size: 21px;
  font-weight: 900;
  line-height: 1.25;
}
.catering-types p { margin: 0; color: #fff8ef; font-size: 16px; line-height: 1.55; }
.catering-carousel-controls { display: none; }
.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 14px;
  border-radius: 50%;
  color: #c90104;
  background: #fff8ef;
  font-size: 24px;
}
.catering-panel > .button {
  min-width: 220px;
  min-height: 0;
  padding: 17px 32px;
  border-radius: 16px;
  background: #c90104;
  box-shadow: 0 14px 32px rgba(0, 0, 0, .32);
  font-family: Lato, Arial, sans-serif;
  font-size: 18px;
  font-weight: 900;
}
.catering-panel > .button:hover, .catering-panel > .button:focus-visible { background: #670001; transform: translateY(-3px); }

.contact-heading {
  max-width: 780px;
  margin: 0 auto 50px;
  text-align: center;
}
.contact-heading h2 { margin-bottom: 20px; }
.contact-heading > p:last-child { margin: 0; color: var(--muted); font-size: 1.08rem; }
.contact-main { display: grid; grid-template-columns: minmax(360px, .82fr) minmax(0, 1.18fr); gap: 24px; align-items: stretch; }
.diner-card {
  padding: 36px;
  border-radius: 30px;
  color: var(--white);
  background: linear-gradient(145deg, #9f0000, #720000);
  box-shadow: 0 22px 48px rgba(95, 0, 0, .24);
}
.diner-card h3 { margin: 0 0 20px; font-family: "Playfair Display", Georgia, serif; font-size: clamp(2.2rem, 4vw, 3.35rem); font-weight: 500; }
.live-status {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: center;
  margin-bottom: 22px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 16px;
  background: rgba(32, 0, 0, .28);
}
.status-dot { width: 11px; height: 11px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 5px rgba(255, 189, 46, .14); }
.status-dot.is-open { background: #4ade80; box-shadow: 0 0 0 5px rgba(74, 222, 128, .14); animation: status-pulse 2s ease-out infinite; }
.live-status strong { display: block; font-size: .94rem; }
.live-status p { margin: 2px 0 0; color: rgba(255, 255, 255, .8); font-size: .76rem; }
@keyframes status-pulse {
  0%, 100% { box-shadow: 0 0 0 5px rgba(74, 222, 128, .14); }
  50% { box-shadow: 0 0 0 9px rgba(74, 222, 128, 0); }
}
.contact-details { display: grid; grid-template-columns: 1.35fr .8fr; gap: 14px; margin: 0 0 22px; }
.contact-details > div { min-width: 0; padding: 15px 16px; border: 1px solid rgba(255,255,255,.14); border-radius: 14px; background: rgba(255,255,255,.08); }
.contact-details dt { margin-bottom: 5px; color: var(--gold); font-size: .68rem; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.contact-details dd { margin: 0; font-size: .86rem; font-weight: 800; }
.contact-details a { text-decoration-thickness: 1px; text-underline-offset: 3px; }
.contact-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 30px; }
.contact-actions .button { min-width: 0; border-radius: 14px; }
.hours-heading { display: flex; align-items: center; justify-content: space-between; gap: 18px; margin-bottom: 12px; }
.hours-heading h4 { margin: 0; font-family: "Playfair Display", Georgia, serif; font-size: 1.65rem; font-weight: 500; }
.hours-toggle {
  display: none;
  padding: 6px 0;
  border: 0;
  color: var(--gold);
  background: transparent;
  font-size: .72rem;
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 4px;
  cursor: pointer;
}
.weekly-hours { display: grid; gap: 5px; }
.hour-row { display: flex; justify-content: space-between; gap: 18px; padding: 8px 11px; border-radius: 10px; font-size: .76rem; }
.hour-row strong { text-align: right; }
.hour-row.is-today { color: var(--ink); background: var(--cream); box-shadow: inset 4px 0 var(--gold); }
.hours-note { margin: 12px 0 0; color: rgba(255, 255, 255, .68); font-size: .68rem; }
.contact-map {
  display: grid;
  grid-template-rows: minmax(480px, 1fr) auto;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(128,66,37,.14);
  border-radius: 30px;
  background: var(--white);
  box-shadow: var(--shadow);
}
.contact-map iframe { width: 100%; height: 100%; min-height: 480px; border: 0; filter: saturate(.9) contrast(.97); }
.map-address { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 20px 24px; border-top: 1px solid rgba(128,66,37,.12); }
.map-address strong, .map-address span { display: block; }
.map-address span { color: var(--muted); font-size: .82rem; }
.map-address a { color: var(--red-dark); font-size: .78rem; font-weight: 900; text-underline-offset: 4px; white-space: nowrap; }
.before-visit { margin-top: 44px; padding: 30px; border: 1px solid rgba(128,66,37,.13); border-radius: 26px; background: rgba(255,255,255,.52); }
.before-visit__heading { display: flex; align-items: end; justify-content: space-between; gap: 42px; margin-bottom: 24px; }
.before-visit__heading .eyebrow { margin-bottom: 8px; }
.before-visit__heading h3 { margin: 0; font-family: "Playfair Display", Georgia, serif; font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 500; }
.before-visit__heading > p { max-width: 500px; margin: 0; color: var(--muted); }
.before-visit__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.visit-tip { display: grid; grid-template-columns: auto 1fr; gap: 14px; padding: 21px; border: 1px solid rgba(128,66,37,.12); border-radius: 18px; background: var(--white); box-shadow: 0 12px 28px rgba(61,20,6,.07); }
.visit-tip__icon { display: grid; width: 46px; height: 46px; place-items: center; border-radius: 50%; color: var(--red-dark); background: var(--cream); font-size: 1.3rem; }
.visit-tip h4 { margin: 2px 0 6px; font-family: "Playfair Display", Georgia, serif; font-size: 1.24rem; line-height: 1.1; }
.visit-tip p { margin: 0; color: var(--muted); font-size: .82rem; }
.visit-tip strong { color: var(--red-dark); }

.reviews {
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 18% 10%, rgba(255, 189, 46, .1), transparent 28%),
    linear-gradient(145deg, #690000, #940000 58%, #5a0000);
  text-align: center;
}
.reviews__inner { max-width: 1040px; }
.reviews__heading { max-width: 820px; margin: 0 auto 38px; }
.reviews__heading h2 { margin-bottom: 18px; color: var(--white); }
.reviews__heading > p:not(.eyebrow) { max-width: 720px; margin: 0 auto; color: rgba(255,248,239,.84); font-size: 1.02rem; }
.reviews-rating {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 22px;
  padding: 9px 16px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 999px;
  background: rgba(31,0,0,.28);
}
.reviews-rating strong { color: var(--white); font-size: 1.1rem; }
.reviews-rating span { color: var(--gold); letter-spacing: .08em; }
.reviews-rating small { color: rgba(255,248,239,.82); font-weight: 800; }
.reviews-carousel { position: relative; }
.reviews-viewport {
  overflow-x: auto;
  border-radius: 30px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.reviews-viewport::-webkit-scrollbar { display: none; }
.reviews-track { display: flex; align-items: stretch; }
.review-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 0 0 100%;
  min-width: 0;
  min-height: 330px;
  margin: 0;
  padding: 42px 46px;
  overflow: hidden;
  border: 1px solid rgba(205,203,204,.85);
  border-radius: 30px;
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 22px 48px rgba(5,5,5,.18);
  text-align: left;
  scroll-snap-align: center;
  scroll-snap-stop: always;
}
.review-card__top { position: relative; z-index: 1; display: grid; grid-template-columns: auto 1fr auto; gap: 16px; align-items: center; }
.review-avatar { display: grid; width: 58px; height: 58px; place-items: center; border-radius: 50%; color: var(--white); background: var(--red-dark); font-size: 1.25rem; font-weight: 900; }
.review-card__top strong, .review-card__top small { display: block; }
.review-card__top strong { font-size: 1.15rem; }
.review-card__top small { margin-top: 2px; color: var(--muted); font-size: .78rem; font-weight: 700; }
.review-quote { color: var(--red); font-family: "Playfair Display", Georgia, serif; font-size: 8.5rem; line-height: .55; opacity: .11; }
.stars { position: relative; z-index: 1; margin: 20px 0 14px; color: var(--gold); font-size: 1.35rem; letter-spacing: .12em; }
.review-card > p { position: relative; z-index: 1; max-width: 890px; margin: 0; font-size: clamp(1.17rem, 2.15vw, 1.58rem); font-weight: 700; line-height: 1.55; }
.review-controls { display: flex; align-items: center; justify-content: center; gap: 20px; margin-top: 25px; }
.review-arrow {
  display: grid;
  width: 48px;
  height: 48px;
  padding: 0 0 4px;
  place-items: center;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 50%;
  color: var(--red-dark);
  background: var(--cream);
  font-family: Georgia, serif;
  font-size: 2.15rem;
  line-height: 1;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease;
}
.review-arrow:hover, .review-arrow:focus-visible { background: var(--gold); transform: translateY(-2px); }
.review-dots { display: flex; align-items: center; justify-content: center; gap: 9px; min-width: 94px; }
.review-dots button {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255,248,239,.4);
  cursor: pointer;
  transition: width .2s ease, background .2s ease;
}
.review-dots button[aria-current="true"] { width: 28px; background: var(--gold); }
.reviews-google-link { display: inline-flex; gap: 8px; align-items: center; margin-top: 24px; color: var(--white); font-size: .82rem; font-weight: 900; text-underline-offset: 5px; }
.reviews-google-link:hover, .reviews-google-link:focus-visible { color: var(--gold); }

.home-gallery { padding: 56px 0 76px; background: var(--cream); }
.gallery-preview {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(8, 76px);
  grid-template-areas:
    "a a a a a b b b b c c c"
    "a a a a a b b b b c c c"
    "a a a a a b b b b f f f"
    "d d d d d b b b b f f f"
    "d d d d d e e e e f f f"
    "d d d d d e e e e g g g"
    "d d d d d e e e e g g g"
    "d d d d d e e e e g g g";
  gap: 8px;
  overflow: hidden;
  border-radius: 28px;
  background: var(--cream-deep);
  box-shadow: 0 22px 48px rgba(61,20,6,.13);
}
.gallery-preview__item { position: relative; overflow: hidden; min-width: 0; min-height: 0; margin: 0; background: #d7c4ad; }
.gallery-preview__item:nth-child(1) { grid-area: a; }
.gallery-preview__item:nth-child(2) { grid-area: b; }
.gallery-preview__item:nth-child(3) { grid-area: c; }
.gallery-preview__item:nth-child(4) { grid-area: d; }
.gallery-preview__item:nth-child(5) { grid-area: e; }
.gallery-preview__item:nth-child(6) { grid-area: f; }
.gallery-preview__item:nth-child(7) { grid-area: g; }
.gallery-preview__item button { display: block; width: 100%; height: 100%; padding: 0; border: 0; background: transparent; cursor: zoom-in; }
.gallery-preview__item button:focus-visible { position: relative; z-index: 2; outline: 4px solid var(--gold); outline-offset: -5px; }
.gallery-preview__item img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease, filter .35s ease; }
.gallery-preview__item:hover img, .gallery-preview__item:focus-within img { filter: saturate(1.04); transform: scale(1.035); }
.gallery-lightbox[hidden] { display: none; }
.gallery-lightbox {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: grid;
  padding: 42px;
  place-items: center;
  background: rgba(5,5,5,.68);
  opacity: 0;
  transition: opacity .2s ease;
}
.gallery-lightbox.is-open { opacity: 1; }
.gallery-lightbox__dialog {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  width: min(1120px, calc(100vw - 84px));
  max-height: calc(100vh - 84px);
  padding: 18px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 26px;
  background: #11100f;
  box-shadow: 0 28px 80px rgba(0,0,0,.48);
  transform: translateY(10px) scale(.985);
  transition: transform .2s ease;
}
.gallery-lightbox.is-open .gallery-lightbox__dialog { transform: none; }
.gallery-lightbox__figure { position: relative; display: grid; min-width: 0; margin: 0; place-items: center; }
.gallery-lightbox__figure img { display: block; max-width: 100%; max-height: calc(100vh - 124px); border-radius: 16px; object-fit: contain; transition: opacity .12s ease, transform .12s ease; }
.gallery-lightbox__figure img.is-switching { opacity: .18; transform: scale(.99); }
.gallery-lightbox__counter { position: absolute; right: 12px; bottom: 12px; padding: 5px 10px; border-radius: 999px; color: var(--white); background: rgba(5,5,5,.72); font-size: .72rem; font-weight: 900; }
.gallery-lightbox__close, .gallery-lightbox__arrow {
  display: grid;
  padding: 0;
  place-items: center;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 50%;
  color: var(--white);
  background: rgba(5,5,5,.72);
  cursor: pointer;
}
.gallery-lightbox__close:hover, .gallery-lightbox__close:focus-visible,
.gallery-lightbox__arrow:hover, .gallery-lightbox__arrow:focus-visible { color: var(--black); background: var(--gold); }
.gallery-lightbox__close { position: absolute; z-index: 2; top: 28px; right: 28px; width: 44px; height: 44px; font-size: 1.7rem; line-height: 1; }
.gallery-lightbox__arrow { position: relative; z-index: 2; width: 48px; height: 48px; margin: 0 14px; padding-bottom: 4px; font-family: Georgia, serif; font-size: 2.1rem; line-height: 1; }
.lightbox-open { overflow: hidden; }

.site-footer { padding: 70px 0 26px; color: var(--white); background: var(--black); font-family: Lato, Arial, sans-serif; }
.footer-grid { display: grid; grid-template-columns: 1.5fr .75fr 1fr; gap: 52px; align-items: start; }
.footer-rule { display: block; width: 86px; height: 5px; margin-bottom: 28px; border-radius: 999px; background: #c90104; }
.footer-about h2 { margin: 0 0 18px; font-family: "Playfair Display", Georgia, serif; font-size: clamp(2.25rem, 5vw, 3.25rem); line-height: 1.08; font-weight: 500; }
.footer-about > p { max-width: 620px; margin: 0; color: var(--cream); font-size: 1.18rem; line-height: 1.65; font-weight: 700; }
.footer-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.footer-tags span { display: inline-flex; padding: 9px 14px; border: 1px solid rgba(255,248,239,.16); border-radius: 999px; color: var(--cream); background: rgba(255,248,239,.1); font-size: .78rem; font-weight: 900; letter-spacing: .06em; text-transform: uppercase; }
.footer-grid h3 { margin: 0 0 22px; color: var(--gold); font-size: .92rem; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.footer-nav { display: grid; gap: 16px; }
.footer-nav a { width: max-content; color: var(--white); font-size: 1.05rem; font-weight: 900; letter-spacing: .08em; text-decoration: none; text-transform: uppercase; transition: color .2s ease, transform .2s ease; }
.footer-nav a:hover, .footer-nav a:focus-visible { color: #c90104; transform: translateX(4px); }
.footer-facebook { margin-top: 26px; }
.footer-contact p { margin: 0 0 20px; }
.footer-contact strong { display: block; margin-bottom: 5px; color: #c90104; font-size: .86rem; letter-spacing: .08em; text-transform: uppercase; }
.footer-contact a, .footer-contact span { color: var(--cream); font-size: 1.04rem; line-height: 1.55; font-weight: 700; }
.footer-contact a { display: block; text-decoration-thickness: 2px; text-underline-offset: 4px; }
.footer-contact a:hover, .footer-contact a:focus-visible { color: var(--gold); }
.footer-bottom { display: grid; grid-template-columns: 1fr auto 1fr; gap: 24px; align-items: center; margin-top: 54px; padding-top: 24px; border-top: 1px solid rgba(255,248,239,.22); }
.footer-bottom p { margin: 0; color: var(--cream); font-size: .9rem; font-weight: 800; }
.footer-credit { display: inline-flex; align-items: center; justify-self: center; gap: 9px; color: var(--cream); font-size: .8rem; font-weight: 800; text-decoration: none; white-space: nowrap; }
.footer-credit img { display: block; width: 34px; height: 34px; flex: 0 0 34px; overflow: visible; border-radius: 0; object-fit: contain; transition: transform .2s ease; }
.footer-credit:hover, .footer-credit:focus-visible { color: var(--gold); }
.footer-credit:hover img, .footer-credit:focus-visible img { transform: translateY(-2px); }
.footer-tagline { color: #c90104 !important; font-size: .78rem !important; letter-spacing: .22em; text-align: right; text-transform: uppercase; }

@media (max-width: 980px) {
  :root { --shell: min(100% - 32px, 760px); --header-height: 98px; }
  .brand { width: 190px; }
  .menu-toggle {
    position: relative;
    z-index: 3;
    display: grid;
    width: 48px;
    height: 48px;
    place-content: center;
    gap: 5px;
    border: 1px solid rgba(255,255,255,.45);
    border-radius: 50%;
    color: var(--white);
    background: rgba(0,0,0,.22);
  }
  .header-on-light:not(.menu-open) .site-header:not(.is-scrolled) .menu-toggle {
    border-color: rgba(5,5,5,.42);
    color: var(--black);
    background: rgba(255,255,255,.72);
  }
  .menu-toggle__line { display: block; width: 20px; height: 2px; background: currentColor; transition: transform .2s, opacity .2s; }
  .menu-open .menu-toggle__line:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-open .menu-toggle__line:nth-child(2) { opacity: 0; }
  .menu-open .menu-toggle__line:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .site-nav {
    position: fixed;
    z-index: 1;
    inset: 0;
    display: grid;
    place-content: center;
    gap: 25px;
    width: 100vw;
    min-height: 100vh;
    height: 100dvh;
    padding: calc(var(--header-height) + 18px) 24px max(32px, env(safe-area-inset-bottom));
    overflow-y: auto;
    overscroll-behavior: contain;
    color: var(--white);
    background: #080000;
    text-align: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: opacity .22s, visibility .22s, transform .22s;
  }
  .site-nav > a:not(.button) { justify-self: center; font-size: 1.25rem; }
  .menu-open .site-nav { opacity: 1; visibility: visible; transform: none; }
  .hero { min-height: 700px; }
  .catering-panel { padding: 42px 28px; border-radius: 28px; }
  .catering-highlight__media { background-attachment: fixed; background-position: 68% center; }
  .catering-types { grid-template-columns: repeat(2, 1fr); }
  .catering-types article:last-child { grid-column: 1 / -1; width: calc(50% - 9px); justify-self: center; }
  .specials-card { grid-template-columns: auto 1fr; }
  .specials-card__button { grid-column: 1 / -1; width: 100%; }
  .contact-main { grid-template-columns: 1fr; }
  .contact-map { grid-template-rows: 420px auto; }
  .contact-map iframe { min-height: 420px; }
  .before-visit__heading { align-items: start; flex-direction: column; gap: 10px; }
  .gallery-preview {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(8, clamp(68px, 10vw, 94px));
    grid-template-areas:
      "a b"
      "a b"
      "c b"
      "c d"
      "e d"
      "e d"
      "f g"
      "f g";
  }
  .gallery-preview__item:nth-child(1) { grid-area: a; }
  .gallery-preview__item:nth-child(2) { grid-area: e; }
  .gallery-preview__item:nth-child(3) { grid-area: c; }
  .gallery-preview__item:nth-child(4) { grid-area: b; }
  .gallery-preview__item:nth-child(5) { grid-area: d; }
  .gallery-preview__item:nth-child(6) { grid-area: f; }
  .gallery-preview__item:nth-child(7) { grid-area: g; }
  .gallery-lightbox { padding: 28px; }
  .gallery-lightbox__dialog { width: min(100%, 920px); max-height: calc(100vh - 56px); }
  .footer-grid { grid-template-columns: minmax(0, .75fr) minmax(0, 1.25fr); column-gap: 44px; row-gap: 42px; }
  .footer-about { grid-column: 1 / -1; }
  .footer-contact { grid-column: auto; }
  .footer-bottom { grid-template-columns: 1fr; justify-items: start; gap: 18px; }
  .footer-credit { justify-self: start; }
  .footer-tagline { grid-column: auto; text-align: left; }
}

@media (max-width: 660px) {
  :root { --shell: calc(100% - 28px); --radius: 18px; --header-height: 92px; }
  .section { padding: 76px 0; }
  .site-header { padding-inline: 18px; }
  .brand { width: 172px; }
  .hero { min-height: 740px; }
  .hero__content { width: calc(100% - 28px); padding: 105px 6px 38px; }
  .hero .eyebrow { font-size: .82rem; }
  .hero h1 { font-size: clamp(42px, 13vw, 62px); }
  .hero__lead { font-size: 18px; }
  .hero__badges { gap: 10px; }
  .hero__badges span { padding: 8px 11px; font-size: 11px; }
  .hero__actions { width: 100%; max-width: 360px; margin-inline: auto; flex-flow: column nowrap; align-items: stretch; }
  .hero__actions .button { min-width: 0; }
  .specials { padding-block: 58px; }
  .specials-card { grid-template-columns: 1fr; padding: 28px; text-align: center; }
  .specials-card__mark { width: 72px; height: 72px; margin-inline: auto; font-size: 3rem; }
  .specials-card h2 { font-size: 2.45rem; }
  .catering-highlight { padding: 60px 14px; }
  .catering-highlight__media { background-position: 74% center; }
  .catering-panel { padding: 34px 22px; border-radius: 24px; }
  .catering-types {
    display: flex;
    grid-template-columns: none;
    width: calc(100% + 44px);
    gap: 16px;
    margin-inline: -22px;
    margin-bottom: 36px;
    padding: 0 33px 10px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-behavior: smooth;
    scroll-padding-inline: 33px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }
  .catering-types::-webkit-scrollbar { display: none; }
  .catering-types article,
  .catering-types article:last-child {
    flex: 0 0 calc(100% - 10px);
    grid-column: auto;
    width: auto;
    min-width: 0;
    scroll-snap-align: center;
    scroll-snap-stop: always;
  }
  .catering-carousel-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin: -22px 0 30px;
  }
  .carousel-dots button:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; }
  .carousel-dots { display: flex; align-items: center; gap: 8px; }
  .carousel-dots button {
    width: 9px;
    height: 9px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 248, 239, .38);
    cursor: pointer;
    transition: width .2s ease, background .2s ease;
  }
  .carousel-dots button[aria-current="true"] { width: 24px; border-radius: 999px; background: var(--gold); }
  .catering-panel > .button { width: 100%; }
  .contact-heading { margin-bottom: 34px; }
  .contact-heading h2 { margin-bottom: 16px; font-size: clamp(2.55rem, 12vw, 3.75rem); }
  .contact-heading > p:last-child { font-size: .96rem; }
  .diner-card { padding: 28px 20px; border-radius: 24px; }
  .diner-card h3 { font-size: 2.55rem; }
  .contact-details, .contact-actions { grid-template-columns: 1fr; }
  .contact-actions { margin-bottom: 26px; }
  .contact-actions .button { width: 100%; }
  .hours-toggle { display: inline-block; }
  .weekly-hours.is-collapsed .hour-row:not(.is-today) { display: none; }
  .hour-row { padding-inline: 9px; font-size: .73rem; }
  .contact-map { grid-template-rows: 340px auto; border-radius: 24px; }
  .contact-map iframe { min-height: 340px; }
  .map-address { align-items: flex-start; flex-direction: column; gap: 10px; padding: 18px 20px; }
  .before-visit { margin-top: 30px; padding: 24px 18px; border-radius: 22px; }
  .before-visit__heading { margin-bottom: 20px; }
  .before-visit__heading h3 { font-size: 2.35rem; }
  .before-visit__grid { grid-template-columns: 1fr; gap: 12px; }
  .visit-tip { padding: 17px; }
  .reviews { padding-block: 72px; }
  .reviews__heading { margin-bottom: 30px; }
  .reviews__heading h2 { font-size: clamp(2.65rem, 13vw, 3.8rem); }
  .reviews__heading > p:not(.eyebrow) { font-size: .94rem; }
  .reviews-rating { flex-wrap: wrap; justify-content: center; }
  .reviews-viewport { border-radius: 24px; }
  .review-card { min-height: 410px; padding: 30px 22px; border-radius: 24px; }
  .review-card__top { grid-template-columns: auto 1fr auto; gap: 11px; align-items: start; }
  .review-avatar { width: 50px; height: 50px; font-size: 1.05rem; }
  .review-card__top strong { font-size: 1rem; }
  .review-card__top small { font-size: .7rem; }
  .review-quote { font-size: 5rem; }
  .stars { margin-block: 18px 13px; font-size: 1.12rem; }
  .review-card > p { font-size: 1.03rem; line-height: 1.58; }
  .review-controls { margin-top: 20px; }
  .review-arrow { display: none; }
  .review-dots { min-height: 28px; }
  .home-gallery { padding: 38px 0 52px; }
  .gallery-preview { grid-template-rows: repeat(8, clamp(52px, 15vw, 60px)); gap: 7px; border-radius: 20px; }
  .gallery-lightbox { padding: 14px; }
  .gallery-lightbox__dialog { grid-template-columns: minmax(0, 1fr); width: 100%; max-height: calc(100vh - 28px); padding: 10px; border-radius: 20px; }
  .gallery-lightbox__figure img { max-height: calc(100vh - 48px); border-radius: 13px; }
  .gallery-lightbox__arrow { display: none; }
  .gallery-lightbox__close { top: 18px; right: 18px; width: 42px; height: 42px; }
  .site-footer { padding: 56px 0 24px; }
  .footer-grid { grid-template-columns: minmax(0, .72fr) minmax(0, 1.28fr); column-gap: 18px; row-gap: 36px; }
  .footer-about { grid-column: 1 / -1; }
  .footer-grid h3 { font-size: .8rem; }
  .footer-nav { gap: 14px; }
  .footer-nav a { font-size: .92rem; }
  .footer-about > p { font-size: 1rem; }
  .footer-contact p { margin-bottom: 16px; }
  .footer-contact strong { font-size: .72rem; }
  .footer-contact a, .footer-contact span { overflow-wrap: anywhere; font-size: .86rem; line-height: 1.5; }
  .footer-contact { grid-column: auto; }
  .footer-bottom { grid-template-columns: 1fr; }
  .footer-tagline { grid-column: auto; letter-spacing: .12em; line-height: 1.5; }
}

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