:root {
  --blue: #0b43e8;
  --blue-dark: #061f82;
  --cream: #fbf4e7;
  --paper: #fffaf0;
  --ink: #07123e;
  --red: #d92716;
  --green: #00683f;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  width: 100%;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--cream);
  font-family: "Inter Tight", system-ui, sans-serif;
}

a { color: inherit; text-decoration: none; }
button { font: inherit; border: 0; background: none; cursor: pointer; color: inherit; }
img { max-width: 100%; display: block; }

.nav {
  position: fixed;
  inset: 18px 34px auto;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  pointer-events: none;
}

.mark,
.nav nav,
.menu-toggle,
.mobile-menu {
  pointer-events: auto;
}

.mark {
  width: 58px;
  height: 58px;
  overflow: hidden;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,.82);
  backdrop-filter: blur(10px);
}

.mark img {
  width: 58px;
  height: 58px;
  object-fit: contain;
  opacity: 1;
  transform: scale(1.22);
  transform-origin: center;
}

.nav nav {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px;
  border-radius: 999px;
  background: rgba(255,255,255,.72);
  backdrop-filter: blur(12px);
}

.nav a,
.nav button {
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--blue-dark);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  transition: transform .25s ease, background .25s ease, color .25s ease;
}

.nav-phone {
  color: white !important;
  background: var(--blue-dark);
}

.nav a:hover,
.nav button:hover {
  color: white;
  background: var(--blue);
  transform: translateY(-2px);
}

.menu-toggle,
.mobile-menu {
  display: none;
}

.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  display: grid;
  align-items: center;
}

.hero-media,
.hero-img {
  position: absolute;
  inset: 0;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.03);
  animation: livingHero 14s ease-in-out infinite alternate;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(251,244,231,.98) 0%, rgba(251,244,231,.78) 36%, rgba(251,244,231,.1) 68%);
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: min(680px, calc(100% - 36px));
  margin-left: clamp(18px, 7vw, 120px);
  padding-top: 92px;
}

.hero-logo-mobile {
  display: none;
}

.hero-mobile-title {
  display: none;
}

.culture-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 14px;
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--blue-dark);
  background: rgba(255,255,255,.9);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.flag-sv {
  width: 28px;
  height: 18px;
  display: inline-block;
  border: 1px solid rgba(6,31,130,.22);
  border-radius: 3px;
  background: linear-gradient(#0b43e8 0 33%, #fff 33% 66%, #0b43e8 66%);
}

.pill {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 7px 13px;
  border-radius: 999px;
  margin: 0 0 18px;
  color: white;
  background: var(--blue);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.pill.light {
  color: var(--blue);
  background: white;
}

h1, h2, h3 {
  margin: 0;
  font-family: "Archivo Black", sans-serif;
  line-height: .85;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  color: var(--blue);
  font-size: clamp(82px, 13vw, 192px);
}

h2 {
  color: var(--blue);
  font-size: clamp(48px, 8vw, 126px);
}

h3 { font-size: 42px; color: var(--blue); }

.lead {
  max-width: 480px;
  margin: 24px 0 0;
  font-size: clamp(18px, 1.8vw, 26px);
  line-height: 1.17;
  font-weight: 800;
}

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

.actions a,
.actions button,
.social-actions a,
dialog a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 13px 18px;
  border-radius: 999px;
  color: white;
  background: var(--blue);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  transition: transform .25s ease, background .25s ease;
}

.actions a:nth-child(2),
.social-actions a:nth-child(2) {
  color: var(--blue-dark);
  background: white;
  box-shadow: inset 0 0 0 2px var(--blue-dark);
}

.actions button {
  background: var(--ink);
}

.actions a:hover,
.actions button:hover,
.social-actions a:hover,
dialog a:hover {
  transform: translateY(-3px) scale(1.03);
  background: var(--blue-dark);
}

.quick-reviews {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  scroll-margin-top: 86px;
  padding: 92px clamp(18px, 7vw, 110px) 18px;
  color: white;
  background: var(--blue);
}

.keyword-marquee {
  overflow: hidden;
  color: white;
  background: var(--blue);
  border-block: 2px solid var(--blue);
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: keywordMarquee 24s linear infinite;
}

.marquee-track span {
  flex: 0 0 auto;
  padding: 14px 22px;
  font-size: clamp(18px, 2vw, 30px);
  font-weight: 900;
  text-transform: uppercase;
  white-space: nowrap;
}

.marquee-track span::after {
  content: " /";
  margin-left: 22px;
  color: #ffd84d;
}

.quick-reviews article {
  min-height: 210px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 2px solid rgba(255,255,255,.7);
  border-radius: 24px;
  background: rgba(255,255,255,.09);
}

.quick-reviews strong,
.quick-reviews span {
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.quick-reviews .stars {
  color: #ffd84d;
  letter-spacing: 2px;
  text-shadow: 0 2px 10px rgba(7,18,62,.2);
}

.quick-reviews p {
  margin: 20px 0;
  font-size: clamp(22px, 2.1vw, 34px);
  line-height: 1;
  font-weight: 900;
}

.menu-section {
  padding: clamp(58px, 7vw, 110px) clamp(18px, 7vw, 110px);
  text-align: center;
}

.section-head {
  width: min(1080px, 100%);
  margin: 0 auto -22px;
}

.menu-section img {
  width: min(1360px, 100%);
  margin: 0 auto;
  border-radius: 28px;
  box-shadow: 0 24px 80px rgba(9,43,151,.10);
}

.hours-grid,
.social-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

.menu-note {
  max-width: 650px;
  margin: 18px auto 26px;
  color: var(--blue-dark);
  font-size: 18px;
  line-height: 1.28;
  font-weight: 800;
}

.menu-board {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin: 32px auto 0;
  width: min(1360px, 100%);
  text-align: left;
}

.menu-board article {
  min-height: 320px;
  padding: 22px;
  border: 2px solid var(--blue);
  border-radius: 24px;
  color: var(--blue-dark);
  background: white;
  box-shadow: 0 20px 60px rgba(9,43,151,.08);
}

.menu-board h3 {
  margin-bottom: 20px;
  font-size: clamp(22px, 1.8vw, 30px);
  line-height: .92;
}

.menu-board p {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  margin: 0;
  padding: 13px 0;
  border-top: 1px solid rgba(16,71,232,.22);
  font-weight: 800;
  line-height: 1.16;
}

.menu-board strong {
  white-space: nowrap;
  font-weight: 900;
}

.carousel-dots {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
}

.carousel-dots span {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(6,31,130,.34);
  transition: width .25s ease, background .25s ease;
}

.carousel-dots span.active {
  width: 28px;
  background: var(--blue-dark);
}

.brand-band {
  position: relative;
  min-height: 660px;
  isolation: isolate;
  overflow: hidden;
  display: grid;
  align-items: center;
  padding: clamp(70px, 9vw, 120px) clamp(18px, 8vw, 120px);
  color: white;
  background: var(--blue);
  border-radius: 28px 28px 0 0;
}

.band-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: url("assets/pattern-v3.jpg") center / cover;
  opacity: .32;
  mix-blend-mode: screen;
  transform: scale(1.08);
}

.band-copy {
  position: relative;
  z-index: 3;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.band-copy h2 { color: white; }
.brand-band h2 {
  overflow-wrap: anywhere;
}
.band-copy p:not(.pill) {
  max-width: 720px;
  font-size: 22px;
  line-height: 1.28;
  font-weight: 800;
}

.review-wall {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  width: 100%;
  margin-top: 30px;
}

.review-card {
  min-height: 180px;
  padding: 20px;
  border: 2px solid rgba(255,255,255,.72);
  border-radius: 22px;
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(10px);
  transition: transform .25s ease, background .25s ease;
}

.review-card:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,.18);
}

.review-card strong,
.review-card span {
  display: block;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.review-card strong {
  color: #ffd84d;
  letter-spacing: 2px;
}

.review-card p {
  margin: 14px 0 18px;
  font-size: 18px;
  line-height: 1.18;
  font-weight: 900;
}

.review-card span {
  color: white;
}

.hours {
  padding: clamp(70px, 9vw, 120px) clamp(18px, 8vw, 120px);
  background: var(--paper);
}

.hours-grid {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.contact-panel {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr;
  gap: 12px;
  margin-top: 34px;
}

.contact-panel > *,
.contact-call {
  min-height: 150px;
  padding: 22px;
  border: 2px solid var(--blue);
  border-radius: 22px;
  color: var(--blue-dark);
  background: white;
}

.contact-call {
  color: white;
  background: var(--blue-dark);
}

.contact-panel span {
  display: block;
  margin-bottom: 22px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-panel strong {
  display: block;
  font-size: clamp(22px, 2.4vw, 36px);
  line-height: .98;
}

.contact-panel > :last-child {
  grid-column: span 2;
}

.hours-grid article {
  min-height: 210px;
  padding: 22px;
  border: 2px solid var(--blue);
  border-radius: 22px;
  color: var(--blue-dark);
  background: white;
}

.hours-grid span {
  display: block;
  margin-bottom: 50px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.hours-grid strong {
  display: block;
  font-size: clamp(22px, 2.4vw, 38px);
  line-height: .96;
}

.map-panel {
  display: grid;
  grid-template-columns: minmax(260px, .8fr) minmax(320px, 1.2fr);
  gap: 12px;
  margin-top: 34px;
  margin-bottom: 34px;
  border: 2px solid var(--blue);
  border-radius: 28px;
  overflow: hidden;
  background: white;
  box-shadow: 0 22px 70px rgba(9,43,151,.08);
}

.map-panel > div {
  padding: 28px;
}

.map-panel h3 {
  max-width: 520px;
  font-size: clamp(32px, 3.2vw, 58px);
}

.map-panel p:not(.pill) {
  max-width: 430px;
  font-size: 18px;
  line-height: 1.24;
  font-weight: 800;
}

.map-panel a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 16px;
  border-radius: 999px;
  color: white;
  background: var(--green);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.map-panel iframe {
  width: 100%;
  height: 100%;
  min-height: 260px;
  border: 0;
  filter: saturate(.9) contrast(1.05);
}

.spot-gallery {
  padding: clamp(80px, 10vw, 140px) clamp(18px, 8vw, 120px);
  background: var(--cream);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.2fr .9fr .9fr;
  gap: 12px;
  margin-top: 34px;
}

.gallery-grid figure {
  position: relative;
  min-height: 380px;
  margin: 0;
  overflow: hidden;
  border-radius: 28px;
  background: var(--blue);
}

.gallery-grid figure:first-child {
  min-height: 520px;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
  opacity: .92;
  transform: scale(1.04);
}

.gallery-grid figcaption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  padding: 14px 16px;
  border-radius: 999px;
  color: white;
  background: rgba(7,18,62,.86);
  backdrop-filter: blur(10px);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.social {
  position: relative;
  overflow: hidden;
  padding: clamp(80px, 10vw, 140px) clamp(18px, 8vw, 120px);
  color: white;
  background: var(--blue-dark);
}

.social::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(9,43,151,.78), rgba(7,18,62,.94)),
    url("assets/spot-restomontreal.jpg") center / cover;
  opacity: .9;
}

.social > * {
  position: relative;
  z-index: 1;
}

.social h2 {
  color: white;
  overflow-wrap: anywhere;
}

.social-grid {
  justify-content: flex-start;
  margin-top: 40px;
}

.social-card {
  position: relative;
  flex: 1 1 220px;
  min-height: 320px;
  overflow: hidden;
  border-radius: 24px;
  color: white;
  background: var(--blue);
  font-weight: 900;
  text-transform: uppercase;
  transition: transform .3s ease;
}

.social-card:hover {
  transform: translateY(-6px);
}

.social-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .82;
  filter: saturate(1.1);
  transform: scale(1.05);
}

.social-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7,18,62,.22), rgba(7,18,62,.9));
}

.social-card span,
.social-card strong {
  position: absolute;
  z-index: 1;
  left: 20px;
  right: 20px;
}

.social-card span {
  top: 20px;
  font-size: 12px;
}

.social-card strong {
  bottom: 20px;
  font-size: clamp(22px, 2vw, 32px);
  line-height: .98;
}

.social-actions .icon-link,
.social-actions .icon-link:nth-child(2) {
  width: 54px;
  min-height: 54px;
  padding: 0;
  border: 0;
  color: white;
  background: transparent;
}

.social-actions .icon-link svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.map-section {
  padding: clamp(70px, 9vw, 120px) clamp(18px, 8vw, 120px);
  background: var(--paper);
}

.location-layout {
  display: grid;
  grid-template-columns: minmax(320px, .9fr) minmax(420px, 1.1fr);
  gap: 18px;
  align-items: stretch;
}

.location-copy {
  padding: clamp(24px, 4vw, 44px);
  border: 2px solid var(--blue);
  border-radius: 28px;
  color: var(--blue-dark);
  background: white;
}

.location-copy h2 {
  font-size: clamp(44px, 6vw, 92px);
}

.location-copy p:not(.pill) {
  max-width: 560px;
  font-size: 20px;
  line-height: 1.24;
  font-weight: 800;
}

.location-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.location-actions a {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  border-radius: 999px;
  color: white;
  background: var(--blue-dark);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.location-actions a:nth-child(2) {
  color: var(--blue-dark);
  background: white;
  box-shadow: inset 0 0 0 2px var(--blue-dark);
}

.location-layout iframe {
  width: 100%;
  min-height: 460px;
  border: 2px solid var(--blue);
  border-radius: 28px;
  background: white;
}

.bottom-hours {
  padding-top: 0;
}

.hours-list {
  margin-top: 28px;
  border-top: 2px solid var(--blue);
}

.hours-list p {
  display: grid;
  grid-template-columns: minmax(90px, .45fr) 1fr;
  gap: 18px;
  margin: 0;
  padding: 18px 0;
  border-bottom: 2px solid rgba(11,67,232,.18);
  color: var(--blue-dark);
}

.hours-list span {
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.hours-list strong {
  font-size: clamp(24px, 3vw, 42px);
  line-height: .98;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 24px clamp(18px, 8vw, 120px);
  color: white;
  background: var(--ink);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

dialog {
  width: min(480px, calc(100% - 34px));
  border: 0;
  border-radius: 24px;
  padding: 0;
  color: var(--ink);
  background: var(--paper);
}

dialog form { position: relative; padding: 32px; }
dialog::backdrop { background: rgba(7,18,62,.68); }
.close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  color: white;
  background: var(--blue);
}

.js-ready [data-animate] {
  opacity: 0;
  transform: translateY(34px) scale(.985);
  transition: opacity .85s cubic-bezier(.2,.7,.2,1), transform .85s cubic-bezier(.2,.7,.2,1);
}

.js-ready [data-animate].in-view {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.js-ready :target [data-animate] {
  opacity: 1;
  transform: translateY(0) scale(1);
}

@keyframes livingHero {
  from { transform: scale(1.03) translateX(-.8%); }
  to { transform: scale(1.09) translateX(.8%); }
}

@keyframes keywordMarquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
  [data-animate] { opacity: 1; transform: none; }
}

@media (max-width: 900px) {
  .nav {
    inset: 10px 12px auto;
  }
  .mark {
    width: 44px;
    height: 44px;
    transition: opacity .35s ease, transform .35s ease;
  }
  .mark img {
    width: 44px;
    height: 44px;
    transform: scale(1.28);
  }
  .nav nav {
    display: none;
  }
  .menu-toggle {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    gap: 4px;
    padding: 13px;
    border-radius: 50%;
    color: var(--blue-dark);
    background: rgba(255,255,255,.9);
    backdrop-filter: blur(12px);
  }
  .menu-toggle span {
    width: 20px;
    height: 2px;
    display: block;
    border-radius: 99px;
    background: currentColor;
  }
  .mobile-menu {
    position: absolute;
    top: 56px;
    right: 0;
    width: min(260px, calc(100vw - 24px));
    display: grid;
    gap: 8px;
    padding: 12px;
    border-radius: 22px;
    color: var(--blue-dark);
    background: rgba(255,255,255,.96);
    box-shadow: 0 18px 60px rgba(7,18,62,.18);
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .22s ease, transform .22s ease;
  }
  .nav.menu-open .mobile-menu {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
  .mobile-menu a,
  .mobile-menu button {
    min-height: 44px;
    display: flex;
    align-items: center;
    padding: 10px 12px;
    border-radius: 14px;
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
  }
  .mobile-menu button {
    color: white;
    background: var(--blue-dark);
  }
  .hero {
    min-height: 820px;
  }
  .hero-img {
    object-position: 58% center;
  }
  .hero::after {
    background: linear-gradient(180deg, rgba(251,244,231,.99), rgba(251,244,231,.74) 42%, rgba(251,244,231,.08) 70%);
  }
  .hero-copy {
    align-self: start;
    margin: 104px auto 0;
    text-align: center;
  }
  .hero-logo-mobile {
    display: none;
  }
  .hero-mobile-title {
    display: block;
    max-width: calc(100vw - 36px);
    margin: 14px auto 22px;
    color: var(--blue);
    font-family: "Archivo Black", sans-serif;
    font-size: clamp(30px, 8.7vw, 38px);
    line-height: .9;
    letter-spacing: 0;
    text-transform: uppercase;
    overflow-wrap: normal;
  }
  .hero-logo-mobile {
    width: min(250px, 68vw);
    aspect-ratio: 1;
    margin: 12px auto 20px;
    object-fit: contain;
    border-radius: 50%;
    background: white;
    box-shadow: 0 18px 70px rgba(6,31,130,.12);
    filter: drop-shadow(0 18px 50px rgba(6,31,130,.18));
  }
  .hero-copy h1 {
    display: none;
  }
  body:not(.scrolled) .mark {
    opacity: 1;
    transform: translate(0, 0) scale(1);
    pointer-events: auto;
  }
  body.scrolled .mark {
    opacity: 1;
    transform: translate(0, 0) scale(1);
  }
  h1 {
    font-size: clamp(64px, 20vw, 96px);
  }
  .hours-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .contact-panel {
    grid-template-columns: 1fr;
  }
  .contact-panel > :last-child {
    grid-column: auto;
  }
  .contact-panel > *,
  .contact-call {
    min-height: 0;
    padding: 18px;
  }
  .contact-panel span {
    margin-bottom: 10px;
  }
  .location-layout {
    grid-template-columns: 1fr;
  }
  .location-layout iframe {
    min-height: 280px;
  }
  .hours-list p {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .quick-reviews {
    grid-template-columns: 1fr;
    padding-top: 86px;
    padding-bottom: 12px;
  }
  .quick-reviews article {
    min-height: 180px;
  }
  .brand-band {
    display: block;
    min-height: 0;
    align-items: start;
    padding-top: 58px;
    padding-bottom: 58px;
  }
  .band-copy {
    position: relative;
    z-index: 5;
  }
  .menu-section {
    padding-inline: 0;
  }
  .menu-section .section-head,
  .menu-section > img {
    width: calc(100% - 36px);
  }
  .menu-section > img {
    max-height: 280px;
    object-fit: cover;
    object-position: center;
  }
  .menu-board {
    display: flex;
    width: 100%;
    gap: 12px;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    scroll-padding-left: 18px;
    padding: 0 18px 12px;
    scrollbar-width: none;
  }
  .menu-board::-webkit-scrollbar,
  .gallery-grid::-webkit-scrollbar,
  .social-grid::-webkit-scrollbar {
    display: none;
  }
  .menu-board article {
    flex: 0 0 min(82vw, 360px);
    min-height: 350px;
    scroll-snap-align: start;
  }
  .review-wall {
    display: flex;
    width: auto;
    flex-wrap: nowrap;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    scroll-padding-left: 0;
    scrollbar-width: none;
  }
  .review-card {
    flex: 0 0 min(84vw, 360px);
    scroll-snap-align: start;
  }
  .gallery-grid,
  .social-grid {
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    scroll-padding-left: 18px;
    padding: 0 18px 10px;
    margin-left: -18px;
    margin-right: -18px;
    scrollbar-width: none;
  }
  .gallery-grid figure,
  .social-card {
    flex: 0 0 min(84vw, 360px);
    scroll-snap-align: start;
  }
  .map-panel {
    grid-template-columns: 1fr;
  }
  .map-panel iframe {
    min-height: 220px;
  }
  .gallery-grid figure,
  .gallery-grid figure:first-child {
    min-height: 320px;
  }
  .hours-grid article {
    min-height: 138px;
    padding: 18px;
  }
  .hours-grid span {
    margin-bottom: 20px;
  }
  .carousel-dots {
    display: flex;
  }
}

@media (max-width: 520px) {
  .nav a:nth-child(n+2) {
    display: none;
  }
  .actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .actions a,
  .actions button,
  .social-actions a {
    width: auto;
    min-height: 48px;
    padding-inline: 12px;
  }
  .actions button {
    grid-column: 1 / -1;
  }
  .site-footer {
    flex-direction: column;
  }
  h2 {
    font-size: 44px;
  }
  .brand-band h2 {
    font-size: 40px;
    line-height: .9;
  }
}
