:root {
  --bg: #110d0b;
  --bg-deep: #090706;
  --panel: #1b1410;
  --panel-soft: #241b15;
  --text: #fff8ed;
  --muted: #c9b8a3;
  --faint: rgba(255, 248, 237, 0.12);
  --gold: #d6ac68;
  --amber: #b86237;
  --wine: #4b1519;
  --green: #153d32;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.42);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 70% 0%, rgba(75, 21, 25, 0.5), transparent 30rem),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-deep) 100%);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

body.is-locked {
  overflow: hidden;
}

body.has-fallback-lightbox::before {
  position: fixed;
  inset: 0;
  z-index: 70;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  content: "";
}

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

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

button {
  color: inherit;
  font: inherit;
}

.site-header {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  width: min(calc(100% - 28px), 1180px);
  min-height: 72px;
  padding: 12px 14px 12px 20px;
  border: 1px solid rgba(255, 248, 237, 0.12);
  border-radius: 8px;
  background: rgba(16, 12, 10, 0.62);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.22);
  transform: translateX(-50%);
  backdrop-filter: blur(18px);
  transition: background 220ms ease, border-color 220ms ease, top 220ms ease;
}

.site-header.is-scrolled {
  top: 10px;
  border-color: rgba(214, 172, 104, 0.28);
  background: rgba(16, 12, 10, 0.9);
}

.brand img {
  width: 148px;
  filter: drop-shadow(0 0 18px rgba(255, 248, 237, 0.28));
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: clamp(14px, 2.4vw, 34px);
  color: rgba(255, 248, 237, 0.74);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.main-nav a {
  position: relative;
  padding: 8px 0;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 1px;
  background: var(--gold);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  transform: scaleX(1);
}

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 6px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.header-cta {
  padding: 0 18px;
  background: var(--text);
  color: #17100c;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--faint);
  border-radius: 6px;
  background: transparent;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 1px;
  margin: 6px auto;
  background: var(--text);
}

.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100svh;
  padding: 116px clamp(18px, 5vw, 72px) 118px;
  overflow: hidden;
}

.hero-image,
.hero-elephant,
.hero-lamp,
.hero-shade {
  position: absolute;
}

.hero-image {
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: saturate(1.02) contrast(1.08) brightness(0.94);
  transform: scale(1.02);
  animation: hero-image-breathe 18s ease-in-out infinite alternate;
}

.hero-elephant {
  top: clamp(92px, 12vw, 138px);
  left: clamp(14px, 4vw, 72px);
  z-index: 2;
  width: clamp(140px, 28vw, 460px);
  opacity: 0.22;
  filter: drop-shadow(0 22px 70px rgba(0, 0, 0, 0.62));
  animation: elephant-float 10s ease-in-out infinite alternate;
}

.hero-lamp {
  top: -1px;
  right: clamp(12px, 8vw, 120px);
  z-index: 3;
  display: grid;
  justify-items: center;
  width: clamp(96px, 17vw, 230px);
  padding-top: 0;
  transform-origin: top center;
  animation: lamp-drop 1300ms cubic-bezier(0.17, 0.84, 0.35, 1.26) both;
}

.hero-lamp::after {
  position: absolute;
  top: clamp(72px, 9vw, 132px);
  left: 50%;
  z-index: -1;
  width: clamp(190px, 31vw, 460px);
  height: clamp(190px, 34vw, 500px);
  background: radial-gradient(ellipse at top, rgba(214, 172, 104, 0.3), rgba(214, 172, 104, 0.09) 38%, transparent 72%);
  content: "";
  opacity: 0.58;
  transform: translateX(-50%);
  animation: lamp-glow 4.8s ease-in-out infinite;
  mix-blend-mode: screen;
}

.hero-casque {
  width: 100%;
  opacity: 0.92;
  filter: drop-shadow(0 24px 54px rgba(0, 0, 0, 0.62));
  transform-origin: 50% -58%;
  animation: lamp-swing 4.4s ease-in-out 1350ms infinite;
}

.hero-shade {
  inset: 0;
  z-index: 2;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(8, 6, 5, 0.88), rgba(8, 6, 5, 0.28) 52%, rgba(8, 6, 5, 0.58)),
    radial-gradient(ellipse at 50% 100%, rgba(17, 13, 11, 0.88), transparent 62%),
    linear-gradient(180deg, rgba(8, 6, 5, 0.14), transparent 58%);
}

.hero-content {
  position: relative;
  z-index: 4;
  width: min(760px, 100%);
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 20px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.8rem, 9vw, 8.3rem);
  font-weight: 400;
  line-height: 0.86;
}

h2 {
  margin-bottom: 24px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.25rem, 5vw, 5.6rem);
  font-weight: 400;
  line-height: 0.96;
}

h3 {
  margin-bottom: 14px;
  font-size: clamp(1.25rem, 2vw, 1.7rem);
  line-height: 1.1;
}

.hero-copy {
  max-width: 620px;
  color: rgba(255, 248, 237, 0.82);
  font-size: clamp(1.03rem, 1.8vw, 1.3rem);
}

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

.btn {
  padding: 0 22px;
  border: 1px solid rgba(255, 248, 237, 0.18);
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn-primary {
  border-color: var(--gold);
  background: var(--gold);
  color: #17100c;
}

.btn-ghost {
  background: rgba(255, 248, 237, 0.06);
}

.hero-panel {
  position: absolute;
  bottom: 22px;
  left: clamp(18px, 5vw, 72px);
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: min(760px, 100%);
  border: 1px solid rgba(255, 248, 237, 0.16);
  border-radius: 8px;
  background: rgba(16, 12, 10, 0.62);
  backdrop-filter: blur(16px);
}

.hero-panel div {
  padding: 18px;
}

.hero-panel div + div {
  border-left: 1px solid rgba(255, 248, 237, 0.12);
}

.panel-label,
.menu-item span,
.menu-list span,
.feature-index,
.review-score span,
.quote-card span,
.hours-card span {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-panel strong {
  display: block;
  margin-top: 4px;
  font-size: clamp(0.98rem, 1.6vw, 1.2rem);
}

.band,
.band-dark,
.gallery-section {
  padding: clamp(74px, 10vw, 132px) clamp(18px, 5vw, 72px);
}

.band {
  background: var(--bg);
}

.band-dark {
  background:
    linear-gradient(135deg, rgba(75, 21, 25, 0.46), transparent 44%),
    var(--bg-deep);
}

.section-heading {
  width: min(var(--max), 100%);
  margin: 0 auto 42px;
}

.section-heading h2 {
  width: min(980px, 100%);
}

.experience-grid,
.review-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  width: min(var(--max), 100%);
  margin: 0 auto;
}

.feature-card,
.menu-item,
.menu-board,
.quote-card,
.hours-card {
  border: 1px solid rgba(255, 248, 237, 0.12);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 248, 237, 0.055), rgba(255, 248, 237, 0.025));
  box-shadow: var(--shadow);
}

.feature-card {
  min-height: 300px;
  padding: 28px;
}

.feature-index {
  margin-bottom: 70px;
  color: var(--gold);
}

.feature-card p,
.split-copy p,
.menu-item p,
.menu-list p,
.visit-copy p,
.quote-card p {
  color: rgba(255, 248, 237, 0.72);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.86fr) minmax(320px, 1fr);
  gap: clamp(34px, 8vw, 108px);
  align-items: center;
}

.image-stack {
  position: relative;
  min-height: 640px;
}

.stack-main,
.stack-float {
  position: absolute;
  border: 1px solid rgba(255, 248, 237, 0.16);
  border-radius: 8px;
  box-shadow: var(--shadow);
  object-fit: cover;
}

.stack-main {
  inset: 0 14% 8% 0;
  width: 86%;
  height: 92%;
}

.stack-float {
  right: 0;
  bottom: 0;
  width: 46%;
  height: 42%;
}

.split-copy {
  max-width: 760px;
}

.stats {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.stats span {
  min-width: 148px;
  padding: 18px;
  border: 1px solid rgba(214, 172, 104, 0.22);
  border-radius: 8px;
  background: rgba(214, 172, 104, 0.08);
  color: var(--muted);
}

.stats strong {
  display: block;
  color: var(--text);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.2rem;
  font-weight: 400;
  line-height: 1;
}

.menu-item {
  min-height: 220px;
  padding: 26px;
  transition: opacity 180ms ease, transform 180ms ease;
}

.menu-item.is-hidden,
.menu-board.is-hidden {
  display: none;
}

.menu-item span {
  margin-bottom: 36px;
  color: var(--gold);
}

.menu-boards {
  display: grid;
  gap: 20px;
  width: min(var(--max), 100%);
  margin: 0 auto;
}

.menu-board {
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(360px, 1fr);
  min-height: 620px;
  overflow: hidden;
}

.menu-board-reverse {
  grid-template-columns: minmax(360px, 1fr) minmax(300px, 0.82fr);
}

.menu-board-reverse .menu-photo {
  order: 2;
}

.menu-photo {
  min-height: 520px;
  background: var(--bg-deep);
}

.menu-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.menu-list {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(28px, 5vw, 64px);
}

.menu-list span {
  margin-bottom: 18px;
  color: var(--gold);
}

.menu-list h3 {
  margin-bottom: 30px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.1rem, 4vw, 4.2rem);
  font-weight: 400;
  line-height: 0.98;
}

.menu-list dl {
  display: grid;
  gap: 18px;
  margin: 0 0 28px;
}

.menu-list dl div {
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 248, 237, 0.1);
}

.menu-list dt {
  color: var(--text);
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.menu-list dd {
  margin: 6px 0 0;
  color: rgba(255, 248, 237, 0.72);
}

.menu-keywords {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.menu-keywords li {
  padding: 8px 12px;
  border: 1px solid rgba(214, 172, 104, 0.24);
  border-radius: 6px;
  background: rgba(214, 172, 104, 0.08);
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gallery-section {
  background: var(--panel);
  overflow: hidden;
}

.gallery-strip {
  display: grid;
  grid-template-columns: 1.1fr 0.7fr 0.7fr;
  grid-auto-rows: 280px;
  gap: 14px;
  width: min(var(--max), 100%);
  margin: 0 auto;
}

.gallery-tile {
  position: relative;
  padding: 0;
  border: 1px solid rgba(255, 248, 237, 0.12);
  border-radius: 8px;
  background: var(--bg);
  overflow: hidden;
  cursor: pointer;
}

.gallery-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease, filter 500ms ease;
}

.gallery-tile:hover img,
.gallery-tile:focus-visible img {
  filter: saturate(1.12);
  transform: scale(1.05);
}

.gallery-tile.tall {
  grid-row: span 2;
}

.gallery-tile.wide {
  grid-column: span 2;
}

.reviews {
  overflow: hidden;
}

.reviews-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 24px;
  align-items: end;
  width: min(var(--max), 100%);
  margin: 0 auto 30px;
}

.reviews-intro h2 {
  margin-bottom: 0;
}

.review-score {
  padding: 26px;
  border: 1px solid rgba(214, 172, 104, 0.24);
  border-radius: 8px;
  background: rgba(214, 172, 104, 0.08);
}

.review-score strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 5.2rem;
  font-weight: 400;
  line-height: 0.9;
}

.review-score span {
  display: block;
  margin-top: 18px;
}

.review-score a {
  display: inline-flex;
  margin-top: 36px;
  color: var(--gold);
  font-weight: 800;
  text-transform: uppercase;
}

.reviews-marquee {
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.reviews-track {
  display: flex;
  align-items: flex-start;
  width: max-content;
  gap: 12px;
  animation: review-scroll var(--review-duration, 90s) linear infinite;
}

.reviews-marquee:hover .reviews-track {
  animation-play-state: paused;
}

.quote-card {
  flex: 0 0 var(--quote-width, 280px);
  width: var(--quote-width, 280px);
  max-width: calc(100vw - 44px);
  padding: 18px 20px;
}

.quote-card p {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1rem, 1.5vw, 1.28rem);
  line-height: 1.18;
}

.quote-card span {
  color: var(--gold);
}

@keyframes review-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@keyframes hero-image-breathe {
  from {
    transform: scale(1.02) translate3d(0, 0, 0);
  }

  to {
    transform: scale(1.07) translate3d(-1.2%, -0.8%, 0);
  }
}

@keyframes elephant-float {
  from {
    transform: translate3d(0, 0, 0) rotate(-1deg);
  }

  to {
    transform: translate3d(10px, -8px, 0) rotate(1deg);
  }
}

@keyframes lamp-drop {
  0% {
    opacity: 0;
    transform: translate3d(0, -120%, 0) rotate(-9deg);
  }

  72% {
    opacity: 1;
    transform: translate3d(0, 5px, 0) rotate(4deg);
  }

  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) rotate(0deg);
  }
}

@keyframes lamp-swing {
  0%,
  100% {
    transform: rotate(2.8deg);
  }

  50% {
    transform: rotate(-2.8deg);
  }
}

@keyframes lamp-glow {
  0%,
  100% {
    opacity: 0.54;
  }

  50% {
    opacity: 0.84;
  }
}

.visit {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) 420px;
  gap: clamp(24px, 7vw, 90px);
  align-items: start;
}

.visit-copy {
  max-width: 800px;
}

.legal-body {
  background:
    linear-gradient(180deg, rgba(75, 21, 25, 0.34), transparent 440px),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-deep) 100%);
}

.legal-hero {
  min-height: 56svh;
  padding: 150px clamp(18px, 5vw, 72px) 70px;
  background:
    linear-gradient(90deg, rgba(8, 6, 5, 0.9), rgba(8, 6, 5, 0.42)),
    url("../images/hero-current.jpg") center/cover;
}

.legal-hero-inner {
  width: min(820px, 100%);
}

.legal-hero h1 {
  margin: 0;
}

.legal-hero p {
  max-width: 680px;
  margin: 20px 0 0;
  color: rgba(255, 248, 237, 0.78);
  font-size: clamp(1rem, 1.8vw, 1.18rem);
}

.legal-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: clamp(24px, 5vw, 70px);
  align-items: start;
}

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

.legal-card,
.legal-hours {
  border: 1px solid rgba(255, 248, 237, 0.12);
  border-radius: 8px;
  background: rgba(255, 248, 237, 0.045);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.18);
}

.legal-card {
  padding: clamp(22px, 3vw, 34px);
}

.legal-card h2,
.legal-hours h2 {
  margin: 0 0 18px;
  font-size: clamp(1.35rem, 2.3vw, 2rem);
}

.legal-card p {
  margin: 0;
  color: rgba(255, 248, 237, 0.74);
}

.legal-card p + p {
  margin-top: 14px;
}

.legal-card a {
  color: var(--gold);
  font-weight: 800;
}

.legal-card-highlight {
  border-color: rgba(214, 172, 104, 0.34);
  background: rgba(214, 172, 104, 0.08);
}

.legal-hours {
  position: sticky;
  top: 112px;
  padding: 24px;
}

.legal-hours div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 248, 237, 0.1);
}

.legal-hours div:last-child {
  border-bottom: 0;
}

.legal-hours span {
  color: var(--muted);
}

.hours-card {
  padding: 22px;
}

.hours-card div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(255, 248, 237, 0.1);
}

.hours-card div:last-child {
  border-bottom: 0;
}

.hours-card strong {
  text-align: right;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 34px clamp(18px, 5vw, 72px);
  border-top: 1px solid rgba(255, 248, 237, 0.1);
  background: var(--bg-deep);
}

.site-footer img {
  width: 132px;
  filter: drop-shadow(0 0 18px rgba(255, 248, 237, 0.22));
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
  color: var(--muted);
  font-size: 0.88rem;
}

.lightbox {
  width: min(980px, calc(100% - 28px));
  padding: 0;
  border: 1px solid rgba(255, 248, 237, 0.16);
  border-radius: 8px;
  background: #000;
  box-shadow: var(--shadow);
}

.lightbox.is-open {
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 80;
  display: block;
  transform: translate(-50%, -50%);
}

.lightbox::backdrop {
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
}

.lightbox img {
  width: 100%;
  max-height: 86vh;
  object-fit: contain;
}

.lightbox button {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.52);
  cursor: pointer;
}

.lightbox button::before,
.lightbox button::after {
  position: absolute;
  top: 20px;
  left: 11px;
  width: 20px;
  height: 1px;
  background: #fff;
  content: "";
}

.lightbox button::before {
  transform: rotate(45deg);
}

.lightbox button::after {
  transform: rotate(-45deg);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto auto auto;
  }

  .main-nav {
    position: fixed;
    top: 82px;
    right: 14px;
    left: 14px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding: 24px;
    border: 1px solid rgba(255, 248, 237, 0.12);
    border-radius: 8px;
    background: rgba(16, 12, 10, 0.96);
  }

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

  .header-cta {
    justify-self: end;
  }

  .nav-toggle {
    display: block;
  }

  .hero-panel,
  .experience-grid,
  .review-cards,
  .reviews-intro,
  .legal-content,
  .legal-grid,
  .visit,
  .split-section,
  .menu-board,
  .menu-board-reverse {
    grid-template-columns: 1fr;
  }

  .legal-hours {
    position: static;
  }

  .menu-board-reverse .menu-photo {
    order: 0;
  }

  .image-stack {
    min-height: 560px;
  }

  .gallery-strip {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 220px;
  }
}

@media (max-width: 640px) {
  .site-header {
    top: 10px;
    width: calc(100% - 20px);
    min-height: 64px;
    padding: 10px;
  }

  .brand img {
    width: 118px;
  }

  .header-cta {
    min-height: 40px;
    padding: 0 12px;
    font-size: 0.7rem;
  }

  .hero {
    min-height: 100svh;
    padding: 110px 18px 92px;
  }

  h1 {
    font-size: clamp(3rem, 18vw, 4.8rem);
  }

  .hero-elephant {
    top: 110px;
    left: -26px;
    width: 240px;
    opacity: 0.18;
  }

  .hero-lamp {
    top: -1px;
    right: 14px;
    width: 94px;
    padding-top: 0;
  }

  .hero-lamp::after {
    top: 76px;
    width: 210px;
    height: 250px;
  }

  .hero-casque {
    opacity: 0.72;
  }

  .hero-panel {
    display: none;
  }

  .hero-panel div + div {
    border-top: 1px solid rgba(255, 248, 237, 0.12);
    border-left: 0;
  }

  .band,
  .band-dark,
  .gallery-section {
    padding: 70px 18px;
  }

  .feature-index {
    margin-bottom: 44px;
  }

  .image-stack {
    min-height: 420px;
  }

  .stack-main {
    inset: 0 7% 12% 0;
    width: 92%;
  }

  .stack-float {
    width: 58%;
    height: 38%;
  }

  .menu-board {
    min-height: auto;
  }

  .menu-photo {
    min-height: 410px;
  }

  .menu-list {
    padding: 28px;
  }

  .gallery-strip {
    display: flex;
    width: auto;
    margin-right: -18px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }

  .gallery-tile {
    flex: 0 0 78vw;
    height: 440px;
    scroll-snap-align: start;
  }

  .gallery-tile.wide,
  .gallery-tile.tall {
    grid-column: auto;
    grid-row: auto;
  }

  .review-score strong {
    font-size: 5.5rem;
  }

  .quote-card {
    flex: 0 0 min(var(--quote-width, 260px), 82vw);
    width: min(var(--quote-width, 260px), 82vw);
    padding: 16px 18px;
  }

  .legal-hero {
    min-height: 48svh;
    padding: 124px 18px 54px;
  }

  .legal-card,
  .legal-hours {
    padding: 20px;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}
