:root {
  color-scheme: light;
  --ink: #201815;
  --muted: #6b5f57;
  --paper: #fff8ea;
  --paper-deep: #f1dec0;
  --lacquer: #a71924;
  --lacquer-dark: #681016;
  --gold: #f3c84b;
  --jade: #2f6f58;
  --wood: #5f3429;
  --line: rgba(67, 38, 26, 0.2);
  --shadow: 0 18px 50px rgba(42, 22, 13, 0.18);
  --content: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    repeating-linear-gradient(90deg, rgba(95, 52, 41, 0.04) 0 1px, transparent 1px 7px),
    linear-gradient(180deg, #fffaf0 0%, #f4dfbc 48%, #fff7e6 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  letter-spacing: 0;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(135deg, rgba(167, 25, 36, 0.05) 25%, transparent 25%) 0 0 / 28px 28px,
    linear-gradient(315deg, rgba(47, 111, 88, 0.04) 25%, transparent 25%) 0 0 / 28px 28px;
  opacity: 0.7;
}

body.modal-open {
  overflow: hidden;
}

.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

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

a {
  color: inherit;
}

button,
input {
  font: inherit;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  transform: translateY(-140%);
  border-radius: 8px;
  background: var(--ink);
  color: #fff;
  padding: 10px 14px;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
  padding: 12px max(20px, calc((100vw - var(--content)) / 2));
  border-bottom: 1px solid rgba(255, 248, 234, 0.26);
  background: rgba(32, 24, 21, 0.9);
  color: #fff8ea;
  box-shadow: 0 12px 30px rgba(32, 24, 21, 0.22);
  backdrop-filter: blur(16px);
}

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

.brand-name,
.brand-subtitle {
  display: block;
}

.brand-name {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.28rem;
  font-weight: 800;
}

.brand-subtitle {
  color: rgba(255, 248, 234, 0.78);
  font-size: 0.82rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-nav a {
  border-radius: 8px;
  padding: 10px 12px;
  color: rgba(255, 248, 234, 0.88);
  font-size: 0.94rem;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: rgba(255, 248, 234, 0.1);
  color: #fff;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(255, 248, 234, 0.22);
  border-radius: 8px;
  background: rgba(255, 248, 234, 0.08);
  color: #fff;
  cursor: pointer;
}

.nav-toggle-line,
.nav-toggle-line::before,
.nav-toggle-line::after {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  content: "";
}

.nav-toggle-line {
  position: relative;
}

.nav-toggle-line::before,
.nav-toggle-line::after {
  position: absolute;
  left: 0;
}

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

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

.hero {
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: center;
  min-height: 680px;
  padding: 96px max(20px, calc((100vw - var(--content)) / 2)) 82px;
  overflow: hidden;
  background: #201815;
  color: #fff8ea;
}

.hero-slideshow,
.hero-slide,
.hero::before,
.hero::after {
  position: absolute;
  content: "";
}

.hero-slideshow,
.hero-slide,
.hero::before {
  inset: 0;
}

.hero-slideshow {
  z-index: -2;
}

.hero-slide {
  background-position: center;
  background-size: cover;
  opacity: 0;
  transform: scale(1.02);
  animation: heroFade 18s infinite;
}

.hero-slide-one {
  background-image: url("assets/hero/restaurant-interior-01.jpg");
  background-position: center 42%;
}

.hero-slide-two {
  background-image: url("assets/hero/restaurant-interior-02.jpg");
  background-position: center 52%;
  animation-delay: 6s;
}

.hero-slide-three {
  background-image: url("assets/hero/restaurant-interior-03.jpg");
  background-position: center 55%;
  animation-delay: 12s;
}

.hero::before {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(32, 24, 21, 0.88) 0%, rgba(32, 24, 21, 0.72) 44%, rgba(32, 24, 21, 0.32) 100%),
    linear-gradient(180deg, rgba(32, 24, 21, 0.12), rgba(32, 24, 21, 0.42));
}

.hero::after {
  inset: auto 0 0;
  z-index: -1;
  height: 120px;
  background: linear-gradient(180deg, transparent, rgba(32, 24, 21, 0.48));
}

@keyframes heroFade {
  0%,
  100% {
    opacity: 0;
  }

  8%,
  30% {
    opacity: 1;
  }

  38% {
    opacity: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-slide {
    animation: none;
  }

  .hero-slide-one {
    opacity: 1;
  }

  .button,
  .social-links a,
  .footer-social a,
  .menu-tab,
  .photo-grid a,
  .lightbox-close,
  .lightbox-nav,
  .lightbox-dots button {
    transition: none;
  }

  .button:hover,
  .button:focus-visible,
  .social-links a:hover,
  .social-links a:focus-visible,
  .footer-social a:hover,
  .footer-social a:focus-visible,
  .menu-tab:hover,
  .menu-tab:focus-visible,
  .photo-grid a:hover,
  .photo-grid a:focus-visible,
  .lightbox-close:hover,
  .lightbox-close:focus-visible,
  .lightbox-nav:hover,
  .lightbox-nav:focus-visible,
  .lightbox-dots button.active {
    transform: none;
  }
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(720px, 100%);
  margin-top: 48px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--lacquer);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--gold);
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.05;
}

h1 {
  max-width: 760px;
  font-size: 4.9rem;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.34);
}

h2 {
  font-size: 2.55rem;
}

h3 {
  font-size: 1.45rem;
}

.hero-copy {
  max-width: 650px;
  margin: 22px 0 0;
  color: rgba(255, 248, 234, 0.9);
  font-size: 1.2rem;
}

.hero-actions,
.visit-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 11px 18px;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background-color 160ms ease,
    border-color 160ms ease;
  will-change: transform;
}

.button-primary {
  background: var(--gold);
  color: #25160f;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
}

.button-secondary {
  border-color: rgba(255, 248, 234, 0.42);
  background: rgba(255, 248, 234, 0.1);
  color: #fff8ea;
}

.button-outline {
  border-color: rgba(167, 25, 36, 0.35);
  background: transparent;
  color: var(--lacquer-dark);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-3px) scale(1.035);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.24);
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 980px;
  margin: 44px 0 0;
}

.hero-facts div {
  min-width: 0;
  border: 1px solid rgba(255, 248, 234, 0.2);
  border-radius: 8px;
  padding: 14px;
  background: rgba(32, 24, 21, 0.36);
}

.hero-facts dt {
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-facts dd {
  margin: 5px 0 0;
  color: rgba(255, 248, 234, 0.9);
  font-size: 0.94rem;
}

.holiday-notice {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  margin: 0;
  padding: 7px 16px;
  border-top: 1px solid rgba(255, 248, 234, 0.14);
  border-bottom: 1px solid rgba(255, 248, 234, 0.2);
  background: rgba(32, 24, 21, 0.36);
  color: #f3c84b;
  text-align: center;
  box-shadow: 0 12px 30px rgba(32, 24, 21, 0.14);

}

.holiday-notice strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.92rem;
  line-height: 1.15;
}

.holiday-notice span {
  color: rgba(255, 248, 234, 0.84);
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.15;
}

.quick-info {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  padding-inline: max(20px, calc((100vw - var(--content)) / 2));
  background: var(--wood);
  color: #fff8ea;
}

.quick-info > div {
  min-width: 0;
  padding: 22px 24px;
  background: linear-gradient(135deg, rgba(104, 16, 22, 0.84), rgba(95, 52, 41, 0.94));
}

.quick-info > div:not(:first-child) {
  padding-left: 24px;
}

.info-label {
  display: block;
  margin-bottom: 4px;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
}

.quick-info strong {
  display: block;
  font-size: 1rem;
  line-height: 1.4;
}

.section-band {
  padding: 84px 20px;
}

.section-inner {
  width: min(var(--content), 100%);
  margin: 0 auto;
}

.two-column,
.visit-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 48px;
  align-items: start;
}

.welcome {
  background: linear-gradient(180deg, rgba(255, 248, 234, 0.88), rgba(255, 248, 234, 0.62));
}

.section-copy p {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 1.06rem;
}

.section-copy p:last-child {
  margin-bottom: 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-heading p:not(.eyebrow) {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.mobile-scroll-hint {
  display: none;
}

.deals-section {
  background:
    linear-gradient(135deg, rgba(104, 16, 22, 0.94), rgba(32, 24, 21, 0.92)),
    var(--lacquer-dark);
  color: #fff8ea;
}

.deals-section .section-heading p:not(.eyebrow) {
  color: rgba(255, 248, 234, 0.74);
}

.deals-section .eyebrow {
  color: var(--gold);
}

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

.deal-card {
  display: flex;
  min-height: 290px;
  flex-direction: column;
  align-items: flex-start;
  border: 1px solid rgba(255, 248, 234, 0.18);
  border-radius: 8px;
  padding: 24px;
  background: rgba(255, 248, 234, 0.08);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.2);
}

.deal-card.featured-deal {
  background:
    linear-gradient(135deg, rgba(243, 200, 75, 0.2), rgba(255, 248, 234, 0.08)),
    rgba(255, 248, 234, 0.1);
}

.deal-card.togo-special {
  background:
    linear-gradient(135deg, rgba(47, 111, 88, 0.28), rgba(255, 248, 234, 0.08)),
    rgba(255, 248, 234, 0.1);
}

.deal-kicker {
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.deal-card h3 {
  margin-top: 12px;
  font-size: 1.75rem;
}

.deal-card p {
  margin: 14px 0 0;
  color: rgba(255, 248, 234, 0.78);
}

.deal-card .button,
.social-links {
  margin-top: auto;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 22px;
}

.social-links a,
.footer-social a {
  display: inline-flex;
  width: 44px;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 248, 234, 0.22);
  border-radius: 8px;
  padding: 8px;
  color: #fff8ea;
  font-weight: 900;
  text-decoration: none;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background-color 160ms ease,
    border-color 160ms ease;
  will-change: transform;
}

.social-icon {
  display: block;
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  fill: currentColor;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.button .social-icon {
  width: 19px;
  height: 19px;
  color: #25160f;
}

.google-icon {
  stroke-width: 0;
}

.social-links a:hover,
.social-links a:focus-visible,
.footer-social a:hover,
.footer-social a:focus-visible {
  background: rgba(255, 248, 234, 0.1);
  border-color: rgba(243, 200, 75, 0.44);
  transform: translateY(-3px) scale(1.08);
  box-shadow: 0 14px 26px rgba(0, 0, 0, 0.22);
}

.deal-list {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.deal-list li {
  border-left: 4px solid var(--gold);
  padding-left: 12px;
  color: rgba(255, 248, 234, 0.86);
}

.deal-list strong {
  color: #fff8ea;
}

.deal-note {
  margin-top: auto;
  padding-top: 18px;
  font-size: 0.9rem;
}

.buffet-section {
  background:
    linear-gradient(180deg, rgba(255, 248, 234, 0.96), rgba(244, 223, 188, 0.94)),
    repeating-linear-gradient(0deg, rgba(95, 52, 41, 0.05) 0 1px, transparent 1px 9px);
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.price-card,
.to-go-panel,
.menu-category,
.visit-panel,
.photo-grid a {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 250, 239, 0.9);
  box-shadow: var(--shadow);
}

.price-card {
  position: relative;
  min-height: 220px;
  padding: 22px;
  overflow: hidden;
}

.price-card::before {
  position: absolute;
  inset: 0 0 auto;
  height: 7px;
  content: "";
  background: var(--lacquer);
}

.price-card.highlight::before {
  background: var(--jade);
}

.price-label {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.price-card strong {
  display: block;
  margin-top: 18px;
  color: var(--lacquer-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 3rem;
  line-height: 1;
}

.price-card p {
  margin: 12px 0 0;
  color: var(--muted);
}

.to-go-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
  gap: 24px;
  align-items: center;
  margin-top: 18px;
  padding: 24px;
  background:
    linear-gradient(135deg, rgba(255, 248, 234, 0.96), rgba(243, 200, 75, 0.22)),
    #fff8ea;
}

.to-go-panel h3 {
  font-size: 2rem;
}

.to-go-prices {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.to-go-prices span {
  min-height: 84px;
  border-radius: 8px;
  padding: 14px;
  background: #fff;
  color: var(--muted);
}

.to-go-prices strong {
  display: block;
  color: var(--lacquer-dark);
  font-size: 1.45rem;
}

.menu-section {
  background: linear-gradient(180deg, #fff8ea 0%, #fff2d8 100%);
}

.menu-toolbar {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 24px;
}

.menu-search {
  display: grid;
  width: min(440px, 100%);
  gap: 8px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
}

.menu-search input {
  width: 100%;
  min-height: 46px;
  border: 1px solid rgba(104, 16, 22, 0.24);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
  padding: 10px 12px;
}

.menu-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.menu-tab {
  min-height: 42px;
  border: 1px solid rgba(104, 16, 22, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--lacquer-dark);
  font-weight: 800;
  padding: 8px 14px;
  cursor: pointer;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background-color 160ms ease,
    border-color 160ms ease;
  will-change: transform;
}

.menu-tab.active {
  border-color: var(--lacquer);
  background: var(--lacquer);
  color: #fff8ea;
}

.menu-tab:hover,
.menu-tab:focus-visible {
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 10px 22px rgba(42, 22, 13, 0.16);
}

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

.menu-category {
  min-width: 0;
  padding: 22px;
}

.menu-category.is-hidden {
  display: none;
}

.menu-category h3 {
  color: var(--lacquer-dark);
  font-size: 1.36rem;
}

.category-note {
  margin: 8px 0 14px;
  color: var(--muted);
  font-size: 0.9rem;
}

.menu-list {
  display: grid;
  gap: 10px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.menu-list li {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: baseline;
  padding-bottom: 9px;
  border-bottom: 1px dotted rgba(95, 52, 41, 0.32);
}

.compact-list li {
  grid-template-columns: 1fr;
}

.menu-list span {
  min-width: 0;
}

.menu-list strong {
  color: var(--ink);
  font-size: 0.95rem;
  text-align: right;
  white-space: nowrap;
}

.menu-list em {
  display: inline-block;
  margin-left: 5px;
  color: var(--lacquer);
  font-size: 0.74rem;
  font-style: normal;
  font-weight: 900;
  text-transform: uppercase;
}

.search-highlight {
  border-radius: 4px;
  background: rgba(243, 200, 75, 0.62);
  color: #201815;
  padding: 0 2px;
}

.menu-empty {
  border: 1px dashed rgba(104, 16, 22, 0.3);
  border-radius: 8px;
  margin: 22px 0 0;
  padding: 18px;
  color: var(--muted);
  text-align: center;
}

.photos-section {
  background:
    linear-gradient(180deg, rgba(32, 24, 21, 0.9), rgba(104, 16, 22, 0.88)),
    var(--ink);
  color: #fff8ea;
}

.photos-section .eyebrow,
.photos-section .section-heading p:not(.eyebrow) {
  color: rgba(255, 248, 234, 0.78);
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.photo-grid a {
  display: grid;
  overflow: hidden;
  background: #fff8ea;
  color: var(--ink);
  text-decoration: none;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
  will-change: transform;
}

.photo-grid a:hover,
.photo-grid a:focus-visible {
  border-color: rgba(243, 200, 75, 0.5);
  transform: translateY(-4px) scale(1.025);
  box-shadow: 0 24px 58px rgba(0, 0, 0, 0.24);
}

.photo-grid img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.photo-grid span {
  padding: 12px 14px 14px;
  font-weight: 900;
}

.menu-lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 22px;
  background: rgba(32, 24, 21, 0.84);
  backdrop-filter: blur(12px);
}

.menu-lightbox[hidden] {
  display: none;
}

.lightbox-panel {
  display: grid;
  width: min(980px, 100%);
  max-height: min(92vh, 980px);
  grid-template-rows: auto minmax(0, 1fr) auto;
  overflow: hidden;
  border: 1px solid rgba(255, 248, 234, 0.2);
  border-radius: 8px;
  background: rgba(32, 24, 21, 0.92);
  color: #fff8ea;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.42);
}

.lightbox-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 18px;
  border-bottom: 1px solid rgba(255, 248, 234, 0.16);
}

.lightbox-header .eyebrow {
  margin-bottom: 5px;
  color: var(--gold);
}

.lightbox-header h2 {
  font-size: 1.5rem;
}

.lightbox-close,
.lightbox-nav,
.lightbox-dots button {
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(255, 248, 234, 0.22);
  background: rgba(255, 248, 234, 0.08);
  color: #fff8ea;
  cursor: pointer;
  transition:
    transform 160ms ease,
    background-color 160ms ease,
    border-color 160ms ease;
}

.lightbox-close {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  font-size: 1.8rem;
  line-height: 1;
}

.lightbox-stage {
  position: relative;
  display: grid;
  min-height: 0;
  place-items: center;
  padding: 18px 68px;
  background: rgba(0, 0, 0, 0.22);
}

.lightbox-stage img {
  width: auto;
  max-width: 100%;
  max-height: 68vh;
  border-radius: 8px;
  object-fit: contain;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.28);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  width: 46px;
  height: 58px;
  border-radius: 8px;
  font-size: 2.6rem;
  line-height: 1;
  transform: translateY(-50%);
}

.lightbox-prev {
  left: 14px;
}

.lightbox-next {
  right: 14px;
}

.lightbox-close:hover,
.lightbox-close:focus-visible,
.lightbox-nav:hover,
.lightbox-nav:focus-visible {
  border-color: rgba(243, 200, 75, 0.5);
  background: rgba(255, 248, 234, 0.14);
  transform: scale(1.06);
}

.lightbox-nav:hover,
.lightbox-nav:focus-visible {
  transform: translateY(-50%) scale(1.06);
}

.lightbox-dots {
  display: flex;
  justify-content: center;
  gap: 9px;
  padding: 14px 18px 18px;
}

.lightbox-dots button {
  width: 11px;
  height: 11px;
  border-radius: 999px;
  padding: 0;
}

.lightbox-dots button.active {
  border-color: var(--gold);
  background: var(--gold);
  transform: scale(1.2);
}

.visit-section {
  background: linear-gradient(180deg, #fff7e6 0%, #f2dfc3 100%);
}

.visit-layout {
  align-items: center;
}

.visit-layout p {
  max-width: 620px;
  color: var(--muted);
  font-size: 1.06rem;
}

.visit-panel {
  padding: 26px;
}

.visit-panel h3 {
  margin-bottom: 18px;
  color: var(--lacquer-dark);
}

.visit-panel dl {
  display: grid;
  gap: 14px;
  margin: 0;
}

.visit-panel div {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.visit-panel dt {
  color: var(--muted);
  font-weight: 900;
}

.visit-panel dd {
  margin: 0;
}

.visit-panel a {
  color: var(--lacquer-dark);
  font-weight: 900;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  padding: 28px max(20px, calc((100vw - var(--content)) / 2));
  background: #201815;
  color: rgba(255, 248, 234, 0.86);
}

.site-footer > div:first-child,
.site-footer strong,
.site-footer span {
  display: block;
}

.site-footer strong {
  color: #fff8ea;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.12rem;
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

@media (max-width: 1040px) {
  h1 {
    font-size: 4.1rem;
  }

  h2 {
    font-size: 2.25rem;
  }

  .hero {
    min-height: 640px;
  }

  .hero-facts,
  .price-grid,
  .deals-grid,
  .photo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .to-go-prices {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 780px) {
  .site-header {
    min-height: 68px;
    padding: 10px 16px;
  }

  .brand-name {
    font-size: 1.06rem;
  }

  .brand-subtitle {
    font-size: 0.76rem;
  }

  .nav-toggle {
    display: grid;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 16px;
    left: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    border: 1px solid rgba(255, 248, 234, 0.18);
    border-radius: 8px;
    padding: 8px;
    background: rgba(32, 24, 21, 0.98);
    box-shadow: var(--shadow);
  }

  .site-header.nav-open .site-nav {
    display: flex;
  }

  .site-nav a {
    padding: 13px 12px;
  }

  .hero {
    min-height: 610px;
    padding: 90px 20px 62px;
  }

  h1 {
    font-size: 3.05rem;
  }

  h2 {
    font-size: 2rem;
  }

  .hero-copy {
    font-size: 1.04rem;
  }

  .hero-facts,
  .quick-info,
  .to-go-panel,
  .menu-toolbar,
  .two-column,
  .visit-layout {
    grid-template-columns: 1fr;
  }

  .mobile-scroll-hint {
    display: block;
    margin: -12px 0 16px;
    color: var(--muted);
    font-size: 0.9rem;
    font-weight: 800;
  }

  .deals-section .mobile-scroll-hint,
  .photos-section .mobile-scroll-hint {
    color: rgba(255, 248, 234, 0.76);
  }

  .price-grid,
  .deals-grid,
  .photo-grid,
  .menu-grid {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(278px, 82vw);
    grid-template-columns: none;
    gap: 14px;
    margin-right: -20px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    padding: 2px 20px 14px 0;
    scroll-padding-inline: 0 20px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .menu-grid {
    grid-auto-columns: minmax(310px, 88vw);
    align-items: start;
  }

  .price-card,
  .deal-card,
  .photo-grid a,
  .menu-category {
    scroll-snap-align: start;
  }

  .menu-category {
    height: max-content;
    align-self: start;
  }

  .price-grid::after,
  .deals-grid::after,
  .photo-grid::after,
  .menu-grid::after {
    width: 6px;
    content: "";
  }

  .quick-info > div,
  .quick-info > div:not(:first-child) {
    padding: 18px 20px;
  }

  .holiday-notice {
    display: grid;
    gap: 4px;
    top: 0;
    width: 100%;
    padding: 7px 14px;
  }

  .section-band {
    padding: 64px 20px;
  }

  .menu-toolbar {
    display: grid;
  }

  .menu-tabs {
    width: 100%;
  }

  .menu-tab {
    flex: 1 1 auto;
  }

  .menu-lightbox {
    padding: 12px;
  }

  .lightbox-panel {
    max-height: 92vh;
  }

  .lightbox-header {
    padding: 12px;
  }

  .lightbox-header h2 {
    font-size: 1.18rem;
  }

  .lightbox-stage {
    padding: 12px 48px;
  }

  .lightbox-stage img {
    max-height: 66vh;
  }

  .lightbox-nav {
    width: 36px;
    height: 50px;
    font-size: 2.2rem;
  }

  .lightbox-prev {
    left: 8px;
  }

  .lightbox-next {
    right: 8px;
  }

  .visit-panel div {
    grid-template-columns: 1fr;
    gap: 3px;
  }

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

  .footer-social {
    justify-content: flex-start;
  }
}

@media (max-width: 460px) {
  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 1.78rem;
  }

  .hero-actions,
  .visit-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .price-card strong {
    font-size: 2.5rem;
  }

  .menu-list li {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .menu-list strong {
    text-align: left;
    white-space: normal;
  }
}
