:root {
  color-scheme: light;
  --ink: #171411;
  --paper: #f6ecda;
  --paper-soft: #fff9ed;
  --red: #de321f;
  --red-dark: #b92518;
  --line: rgba(23, 20, 17, 0.22);
  --white: #fffdf8;
  --shell: min(100% - 32px, 1240px);
  --header-height: 72px;
  --ease: cubic-bezier(.22, 1, .36, 1);
  --ease-out: cubic-bezier(.23, 1, .32, 1);
  --ease-in-out: cubic-bezier(.77, 0, .175, 1);
  --ease-drawer: cubic-bezier(.32, .72, 0, 1);
  --z-sticky: 20;
}

*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  overflow-x: hidden;
}

body.is-locked {
  overflow: hidden;
}

button, input, select, textarea {
  font: inherit;
}

button, a {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
}

a {
  color: inherit;
}

img, svg {
  display: block;
}

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

.icon {
  width: 1em;
  height: 1em;
  flex: none;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

img {
  max-width: 100%;
}

::selection {
  background: var(--red);
  color: var(--white);
}

:focus-visible {
  outline: 3px solid #2f74ff;
  outline-offset: 4px;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 8px;
  left: 8px;
  padding: 10px 14px;
  background: var(--white);
  color: var(--ink);
  font-weight: 800;
  transform: translateY(-150%);
}

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

.eyebrow {
  margin: 0 0 14px;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  line-height: 1.2;
  text-transform: uppercase;
}

.site-header {
  position: fixed;
  z-index: var(--z-sticky);
  inset: 0 0 auto;
  height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  transition: background-color 220ms ease, color 220ms ease, border-color 220ms ease;
}

.site-header.is-solid {
  background: rgba(246, 236, 218, 0.96);
  color: var(--ink);
  border-color: var(--line);
  backdrop-filter: blur(14px);
}

.header-brand {
  display: flex;
  align-items: center;
  gap: 11px;
}

.site-header .wordmark {
  width: 56px;
  height: 56px;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 1px;
  border: 1px solid rgba(23, 20, 17, 0.22);
  border-radius: 50%;
  background: var(--paper-soft);
  color: var(--ink);
  box-shadow: 0 4px 12px rgba(23, 20, 17, 0.16);
  font-size: 0.76rem;
  line-height: 0.95;
  transform: translateY(3px);
  overflow: hidden;
}

.brand-logo {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.site-header .wordmark span:first-child {
  padding: 3px 5px 2px;
  background: var(--red);
  color: var(--white);
  font-size: 0.62rem;
}

.site-header .wordmark span:last-child {
  font-size: 0.46rem;
  letter-spacing: 0.1em;
}

.header-name {
  display: inline-block;
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.36rem;
  letter-spacing: 0.06em;
  line-height: 1;
  text-transform: uppercase;
  text-shadow: 0 1px 7px rgba(0, 0, 0, 0.32);
}

.site-header.is-solid .header-name {
  color: var(--ink);
  text-shadow: none;
}

.wordmark,
.footer-wordmark {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 1.28rem;
  letter-spacing: 0.02em;
  line-height: 1;
  text-decoration: none;
}

.wordmark span:first-child,
.footer-wordmark span {
  padding: 5px 7px 4px;
  background: var(--red);
  color: var(--white);
}

.desktop-nav {
  display: none;
  align-items: center;
  gap: clamp(18px, 2.2vw, 36px);
}

.desktop-nav a {
  position: relative;
  padding: 8px 0;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.desktop-nav a::after {
  position: absolute;
  content: "";
  inset: auto 0 3px;
  height: 2px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms var(--ease-out);
}

.desktop-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 4px;
}

.social-icon,
.menu-toggle,
.icon-button {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  transition: transform 140ms var(--ease-out), background-color 140ms ease;
}

.social-icon svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.menu-toggle .icon {
  width: 26px;
  height: 26px;
}

.social-icon svg rect,
.social-icon svg circle:not(.icon-dot) {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
}

.social-icon .icon-dot {
  fill: currentColor;
}

.menu-toggle {
  gap: 6px;
}

.menu-toggle span {
  width: 24px;
  height: 2px;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: grid;
  align-items: end;
  isolation: isolate;
  overflow: hidden;
  color: var(--white);
}

.hero-media,
.hero-media img,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media {
  z-index: -3;
}

.hero-media img {
  object-fit: cover;
  object-position: 50% 50%;
  animation: hero-arrive 900ms var(--ease);
}

.hero-overlay {
  z-index: -2;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.10) 0%, rgba(0, 0, 0, 0.12) 40%, rgba(0, 0, 0, 0.26) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-block: calc(var(--header-height) + 56px) 86px;
}

.hero-ambient {
  position: absolute;
  z-index: -1;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  width: min(72vw, 620px);
  aspect-ratio: 1;
  border-radius: 50%;
  opacity: 0.46;
  mix-blend-mode: screen;
  will-change: transform, opacity;
}

.hero-glow-one {
  top: -24%;
  right: -28%;
  background: radial-gradient(circle, rgba(222, 50, 31, 0.72) 0%, rgba(222, 50, 31, 0) 68%);
  animation: glow-drift-one 11s var(--ease-in-out) infinite alternate;
}

.hero-glow-two {
  bottom: -38%;
  left: -32%;
  background: radial-gradient(circle, rgba(255, 167, 56, 0.55) 0%, rgba(255, 167, 56, 0) 70%);
  animation: glow-drift-two 14s var(--ease-in-out) infinite alternate;
}

.hero-stamp {
  position: absolute;
  z-index: 1;
  top: 22%;
  right: -24px;
  width: 126px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(222, 50, 31, 0.9);
  box-shadow: 0 0 0 8px rgba(255, 253, 248, 0.13);
  color: var(--white);
  pointer-events: none;
  transform: rotate(-8deg);
}

.hero-stamp svg {
  position: absolute;
  inset: 4px;
  width: calc(100% - 8px);
  height: calc(100% - 8px);
  overflow: visible;
  animation: stamp-spin 18s linear infinite;
  will-change: transform;
}

.hero-stamp text {
  fill: currentColor;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 1.8px;
}

.hero-stamp strong {
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 1.65rem;
  letter-spacing: 0.03em;
}

.hero-eyebrow {
  animation: rise-in 560ms var(--ease);
}

.hero h1,
.section h2,
.visit-info h2,
.closing-cta h2,
.dialog-heading h2 {
  margin: 0;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-weight: 900;
  letter-spacing: -0.025em;
  line-height: 0.88;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 8ch;
  font-size: clamp(4.35rem, 21vw, 6rem);
  text-wrap: balance;
  animation: rise-in 680ms var(--ease);
}

.hero-copy {
  max-width: 31rem;
  margin: 24px 0 0;
  font-size: clamp(1.06rem, 2.5vw, 1.3rem);
  line-height: 1.4;
  animation: rise-in 720ms var(--ease);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
  animation: rise-in 780ms var(--ease);
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 19px;
  border: 2px solid transparent;
  border-radius: 2px;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 150ms var(--ease-out), background-color 150ms ease, color 150ms ease, border-color 150ms ease, box-shadow 150ms ease;
}

.button-primary {
  background: var(--red);
  color: var(--white);
}

.button-ghost,
.button-red-outline {
  border-color: currentColor;
  background: rgba(0, 0, 0, 0.10);
  color: var(--white);
}

.button-dark {
  background: var(--ink);
  color: var(--white);
}

.button-outline-dark {
  border-color: var(--ink);
  color: var(--ink);
  background: transparent;
}

.button-light {
  background: var(--white);
  color: var(--ink);
}

.button-red-outline {
  background: transparent;
}

.button:active {
  transform: translateY(0) scale(0.97);
  transition-duration: 110ms;
}

.hero-scroll {
  position: absolute;
  right: 16px;
  bottom: 22px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 160ms var(--ease-out);
}

.hero-scroll span:last-child {
  font-size: 1.3rem;
  animation: bob 1600ms ease-in-out infinite;
}

.hero-scroll .icon {
  width: 18px;
  height: 18px;
  animation: bob 1600ms ease-in-out infinite;
}

.ticker {
  overflow: hidden;
  background: var(--red);
  color: var(--white);
  border-block: 1px solid rgba(23, 20, 17, 0.22);
}

.ticker-track {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 0;
  padding: 0;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(1.2rem, 3vw, 2rem);
  letter-spacing: 0.02em;
  line-height: 1;
  text-transform: uppercase;
  animation: ticker 24s linear infinite;
  will-change: transform;
}

.ticker-group {
  flex: none;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 12px 9px;
}

.ticker i {
  font-family: Arial, sans-serif;
  font-size: 0.45em;
  font-style: normal;
}

.quick-rail {
  display: grid;
  background: var(--ink);
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.quick-fact,
.quick-links {
  min-width: 0;
  padding: 18px 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.quick-fact span,
.quick-fact small {
  display: block;
}

.quick-fact span {
  color: #aaa197;
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.quick-fact .quick-label {
  display: flex;
  align-items: center;
  gap: 7px;
}

.quick-label .icon {
  width: 14px;
  height: 14px;
  stroke-width: 2.2;
}

.quick-fact strong {
  display: block;
  margin-top: 5px;
  font-size: 0.9rem;
  line-height: 1.35;
}

.quick-fact small {
  margin-top: 2px;
  color: #cfc7bd;
  font-size: 0.75rem;
}

.quick-today strong[data-open="true"]::before,
.visit-today strong[data-open="true"]::before {
  content: "";
  width: 8px;
  height: 8px;
  display: inline-block;
  margin-right: 7px;
  border-radius: 50%;
  background: #68d77a;
  box-shadow: 0 0 0 3px rgba(104, 215, 122, 0.17);
  animation: status-pulse 2200ms var(--ease-in-out) infinite;
}

.quick-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  padding: 0;
}

.quick-links a,
.quick-links button {
  min-width: 0;
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 14px;
  border: 0;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
  background: transparent;
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 140ms var(--ease-out), background-color 140ms ease;
}

.quick-links a,
.quick-links button {
  gap: 7px;
}

.quick-links .icon {
  width: 15px;
  height: 15px;
}

.quick-links button {
  border-left: 0;
}

.quick-links a:active,
.quick-links button:active,
.mobile-action-bar a:active,
.mobile-action-bar button:active {
  transform: scale(0.97);
}

.section {
  padding-block: 88px;
}

.about-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--paper);
}

.about-section::before {
  position: absolute;
  z-index: 0;
  content: "EAT";
  right: -0.08em;
  bottom: -0.3em;
  color: rgba(222, 50, 31, 0.075);
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(17rem, 50vw, 42rem);
  line-height: 0.75;
  pointer-events: none;
  animation: background-word-drift 15s var(--ease-in-out) infinite alternate;
  will-change: transform;
}

.about-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 42px;
}

.about-copy {
  align-self: center;
}

.section h2,
.visit-info h2,
.closing-cta h2,
.dialog-heading h2 {
  font-size: clamp(3.15rem, 11vw, 5.8rem);
  text-wrap: balance;
}

.about-lead,
.menu-kicker,
.gallery-intro,
.visit-place {
  margin: 0 0 16px;
  color: var(--red-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.15rem, 2.5vw, 1.55rem);
  font-style: italic;
  line-height: 1.25;
}

.about-copy > .about-body {
  max-width: 47rem;
  margin: 30px 0 0;
  font-size: clamp(1rem, 1.7vw, 1.14rem);
}

.about-proof {
  margin: 34px 0 0;
  border-block: 3px solid var(--ink);
}

.about-proof > div {
  display: grid;
  grid-template-columns: minmax(90px, 0.42fr) 1fr;
  gap: 18px;
  padding: 13px 0;
  border-top: 1px solid var(--line);
}

.about-proof > div:first-child {
  border-top: 0;
}

.about-proof dt,
.about-proof dd {
  margin: 0;
}

.about-proof dt {
  color: #5d554d;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about-proof dd {
  font-weight: 800;
}

.text-links {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 30px;
}

.text-links a,
.inline-link,
.review-card > a {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-decoration-thickness: 2px;
  text-underline-offset: 6px;
  text-transform: uppercase;
}

.text-links .icon,
.inline-link .icon,
.review-card > a .icon {
  width: 15px;
  height: 15px;
}

.portrait-frame {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: #d6c6aa;
}

.portrait-frame > img,
.portrait-frame > picture > img,
.gallery-card > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 560ms var(--ease-out);
}

.portrait-frame > picture {
  display: block;
  width: 100%;
  height: 100%;
}

.about-image {
  margin: 0;
  box-shadow: 16px 16px 0 var(--red);
}

.about-image figcaption {
  position: absolute;
  inset: auto 14px 14px;
  width: fit-content;
  padding: 7px 10px;
  background: var(--white);
  color: var(--ink);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.photo-badge {
  position: absolute;
  z-index: 2;
  top: 18px;
  left: 16px;
  width: 104px;
  aspect-ratio: 1;
  display: grid;
  align-content: center;
  justify-items: center;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 7px rgba(255, 253, 248, 0.78);
  color: var(--white);
  text-align: center;
  text-transform: uppercase;
  animation: badge-float 4.8s var(--ease-in-out) infinite alternate;
  will-change: transform;
}

.photo-badge b,
.photo-badge em {
  display: block;
  line-height: 1;
}

.photo-badge b {
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 1.05rem;
  letter-spacing: 0.03em;
}

.photo-badge em {
  margin-top: 6px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.7rem;
  text-transform: none;
}

.menu-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--paper-soft);
  border-block: 1px solid var(--line);
}

.menu-section::before {
  position: absolute;
  z-index: 0;
  content: "";
  top: 7%;
  right: -220px;
  width: 460px;
  aspect-ratio: 1;
  border: 58px solid rgba(222, 50, 31, 0.065);
  border-radius: 50%;
  pointer-events: none;
  animation: menu-orbit-drift 16s var(--ease-in-out) infinite alternate;
  will-change: transform;
}

.menu-section > .shell {
  position: relative;
  z-index: 1;
}

.section-heading {
  display: grid;
  gap: 18px;
  margin-bottom: 38px;
}

.section-heading > p {
  max-width: 30rem;
  margin: 0;
}

.menu-grid {
  display: grid;
  gap: 32px;
}

.ingredient-signal {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: -10px 0 34px;
  color: var(--red-dark);
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.ingredient-signal span {
  white-space: nowrap;
}

.ingredient-signal i {
  position: relative;
  min-width: 24px;
  height: 2px;
  flex: 1;
  overflow: hidden;
  background: rgba(23, 20, 17, 0.16);
}

.ingredient-signal i::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 42%;
  height: 100%;
  background: var(--red);
  transform: translate3d(-120%, 0, 0);
  animation: signal-run 2.8s linear infinite;
  will-change: transform;
}

.ingredient-signal i:nth-of-type(2)::after {
  animation-delay: 1.4s;
}

.menu-card {
  border-top: 3px solid var(--ink);
}

.menu-card .portrait-frame::after {
  position: absolute;
  z-index: 1;
  content: "";
  inset: -30%;
  background: linear-gradient(105deg, transparent 35%, rgba(255, 253, 248, 0.32) 50%, transparent 65%);
  pointer-events: none;
  transform: translate3d(-115%, 0, 0);
  animation: image-sweep 8.5s linear infinite;
  will-change: transform;
}

.menu-card:nth-child(2) .portrait-frame::after {
  animation-delay: 2.7s;
}

.menu-card:nth-child(3) .portrait-frame::after {
  animation-delay: 5.4s;
}

.menu-number {
  position: absolute;
  z-index: 2;
  top: 12px;
  left: 12px;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  background: var(--red);
  color: var(--white);
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  transition: transform 180ms var(--ease-out);
}

.menu-card-body {
  padding-top: 20px;
}

.menu-card h3 {
  margin: 0 0 16px;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(1.7rem, 4vw, 2.4rem);
  letter-spacing: 0.01em;
  line-height: 1;
  text-transform: uppercase;
}

.menu-list {
  margin: 0;
}

.menu-list > div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  padding-block: 11px;
  border-top: 1px solid var(--line);
}

.menu-list dt,
.menu-list dd {
  margin: 0;
  font-size: 0.91rem;
}

.menu-list dt {
  font-weight: 800;
}

.menu-list dt small {
  display: block;
  max-width: 34ch;
  margin-top: 5px;
  color: #5d554d;
  font-size: 0.76rem;
  font-weight: 400;
  line-height: 1.45;
}

.menu-list dd {
  font-weight: 900;
}

.menu-extras {
  margin-top: 56px;
  padding: 30px 0;
  border-block: 3px solid var(--ink);
}

.menu-extras-heading {
  display: grid;
  gap: 10px;
  margin-bottom: 28px;
}

.menu-extras-heading h3 {
  margin: 0;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(2.4rem, 7vw, 4.25rem);
  line-height: 0.95;
  text-transform: uppercase;
}

.menu-extras-heading p,
.menu-extras-grid p {
  margin: 0;
}

.menu-extras-grid {
  display: grid;
}

.menu-extras-grid > div {
  padding: 20px 0;
  border-top: 1px solid var(--line);
}

.menu-extras-grid h4 {
  margin: 0 0 8px;
  color: var(--red-dark);
  font-size: 0.72rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.menu-extras-grid p {
  max-width: 42ch;
  font-size: 0.92rem;
}

.menu-footer {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.menu-footer p {
  max-width: 46rem;
  margin: 0;
  font-size: 0.82rem;
}

.gallery-section {
  background: var(--ink);
  color: var(--white);
}

.gallery-intro {
  color: #f6b3a8;
}

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

.gallery-card {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  padding: 0;
  border: 0;
  background: #302c28;
  cursor: zoom-in;
  transition: transform 150ms var(--ease-out);
}

.gallery-card::after {
  position: absolute;
  content: "";
  inset: 0;
  background: linear-gradient(180deg, transparent 65%, rgba(0, 0, 0, 0.48));
  pointer-events: none;
}

.gallery-card:focus-visible img {
  transform: scale(1.045);
}

.gallery-card::before {
  position: absolute;
  z-index: 2;
  content: "";
  inset: 10px;
  border: 2px solid rgba(255, 255, 255, 0.72);
  opacity: 0;
  pointer-events: none;
  transform: scale(0.97);
  transition: transform 220ms var(--ease-out), opacity 180ms ease;
}

.gallery-card::after {
  animation: gallery-wash 5.8s var(--ease-in-out) infinite alternate;
}

.gallery-card:nth-child(2n)::after {
  animation-delay: -2.9s;
}

.reviews-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--red-dark);
  color: var(--white);
}

.reviews-section::before {
  position: absolute;
  z-index: 0;
  content: "BURGERS · SIDES · SHAKES · BURGERS ·";
  top: 54px;
  left: -8vw;
  white-space: nowrap;
  color: rgba(255, 255, 255, 0.09);
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(5rem, 14vw, 13rem);
  letter-spacing: 0.025em;
  line-height: 0.8;
  pointer-events: none;
  animation: review-word-slide 19s var(--ease-in-out) infinite alternate;
  will-change: transform;
}

.reviews-section > .shell {
  position: relative;
  z-index: 1;
}

.reviews-grid {
  display: grid;
  gap: 1px;
  background: rgba(255, 253, 248, 0.62);
  border: 1px solid rgba(255, 253, 248, 0.62);
}

.review-card {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  padding: 26px;
  background: var(--paper-soft);
  color: var(--ink);
}

.review-card::after {
  position: absolute;
  content: "";
  top: -40%;
  bottom: -40%;
  left: -70%;
  width: 38%;
  background: linear-gradient(90deg, transparent, rgba(23, 20, 17, 0.045), transparent);
  opacity: 0.35;
  pointer-events: none;
  transform: translate3d(0, 0, 0) rotate(12deg);
  animation: review-glint 10s linear infinite;
  will-change: transform;
}

.review-card:nth-child(2)::after {
  animation-delay: 3.3s;
}

.review-card:nth-child(3)::after {
  animation-delay: 6.6s;
}

.review-feature {
  min-height: 430px;
}

.review-feature blockquote {
  font-size: clamp(1.45rem, 4.2vw, 2.15rem);
  line-height: 1.35;
}

.review-top {
  display: flex;
  align-items: center;
  gap: 13px;
}

.review-top img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
}

.review-top h3 {
  margin: 0;
  font-size: 0.92rem;
}

.stars {
  margin: 2px 0 0;
  color: var(--red);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
}

.review-card blockquote {
  margin: 46px 0 34px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.22rem, 3vw, 1.6rem);
  line-height: 1.45;
}

.review-card > a {
  margin-top: auto;
  color: var(--red-dark);
}

.review-card-mixed {
  background: var(--paper);
}

.visit-section {
  display: grid;
  background: var(--paper);
}

.visit-info {
  padding: 80px 16px;
}

.visit-info address {
  margin-top: 28px;
  font-size: 1.08rem;
  font-style: normal;
}

.visit-info .inline-link {
  display: inline-flex;
  margin-top: 20px;
}

.visit-today {
  max-width: 34rem;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4px 18px;
  margin-top: 38px;
  padding: 17px 0;
  border-block: 1px solid var(--line);
}

.visit-today span {
  color: #5d554d;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.visit-today > span {
  display: flex;
  align-items: center;
  gap: 7px;
}

.visit-today > span .icon {
  width: 14px;
  height: 14px;
}

.visit-today strong {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: center;
  font-size: 1.02rem;
}

.visit-today small {
  font-size: 0.82rem;
}

.hours {
  max-width: 34rem;
  margin-top: 42px;
  border-top: 3px solid var(--ink);
}

.hours h3 {
  margin: 18px 0 12px;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hours dl {
  margin: 0;
}

.hours dl > div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 9px 0;
  border-top: 1px solid var(--line);
}

.hours dt,
.hours dd {
  margin: 0;
}

.hours dd {
  text-align: right;
}

.visit-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.map-wrap {
  position: relative;
  min-height: 560px;
  background: #d3c5ad;
  border-top: 1px solid var(--line);
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 560px;
  display: block;
  border: 0;
}

.map-pulse {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 18px;
  border: 5px solid var(--white);
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 4px 16px rgba(23, 20, 17, 0.24);
  pointer-events: none;
  transform: translate(-50%, -50%);
}

.map-pulse span {
  position: absolute;
  inset: -8px;
  border: 2px solid var(--red);
  border-radius: 50%;
  animation: map-beacon 2.8s var(--ease-out) infinite;
  will-change: transform, opacity;
}

.map-pulse span:nth-child(2) {
  animation-delay: 1.4s;
}

.closing-cta {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding-block: 84px;
  background: var(--red);
  color: var(--white);
}

.closing-cta::before {
  position: absolute;
  z-index: 0;
  content: "EAT BURGER · EAT BURGER";
  top: 50%;
  left: -4vw;
  white-space: nowrap;
  color: transparent;
  -webkit-text-stroke: 2px rgba(255, 255, 255, 0.14);
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(7rem, 19vw, 17rem);
  line-height: 0.8;
  pointer-events: none;
  transform: translate3d(0, -50%, 0);
  animation: closing-word-drift 14s var(--ease-in-out) infinite alternate;
  will-change: transform;
}

.closing-inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 32px;
}

.closing-message > p {
  margin: 0 0 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.1rem, 2.4vw, 1.5rem);
  font-style: italic;
}

.closing-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.site-footer {
  padding-block: 56px 80px;
  background: var(--ink);
  color: var(--white);
}

.footer-grid {
  display: grid;
  gap: 36px;
}

.footer-grid > div:first-child p {
  margin: 20px 0 0;
  color: #bfb6aa;
}

.footer-wordmark {
  font-size: clamp(2rem, 5vw, 3rem);
}

.footer-wordmark {
  width: 84px;
  height: 84px;
  gap: 0;
  overflow: hidden;
  border-radius: 50%;
}

.nav-dialog .wordmark {
  width: 64px;
  height: 64px;
  gap: 0;
  overflow: hidden;
  border-radius: 50%;
}

.footer-grid h2 {
  margin: 0 0 14px;
  color: #8f877e;
  font-size: 0.7rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.footer-grid > div:not(:first-child) > a {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 9px;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.footer-grid > div:not(:first-child) > a .icon {
  width: 15px;
  height: 15px;
}

.footer-socials {
  display: flex;
  gap: 2px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 52px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  color: #8f877e;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.mobile-action-bar {
  position: fixed;
  z-index: var(--z-sticky);
  right: 0;
  bottom: 0;
  left: 0;
  height: 58px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--ink);
  color: var(--white);
  box-shadow: 0 -8px 18px rgba(23, 20, 17, 0.16);
  transition: transform 220ms var(--ease);
}

.mobile-action-bar a,
.mobile-action-bar button {
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 8px;
  border: 0;
  border-left: 1px solid rgba(255, 255, 255, 0.24);
  background: transparent;
  color: inherit;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 120ms var(--ease-out), background-color 140ms ease;
}

.mobile-action-bar .icon {
  width: 15px;
  height: 15px;
}

.mobile-action-bar button {
  border-left: 0;
  background: var(--red);
}

body.is-locked .mobile-action-bar {
  transform: translateY(100%);
}

dialog {
  padding: 0;
  border: 0;
}

dialog::backdrop {
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(5px);
}

.nav-dialog {
  width: 100%;
  max-width: none;
  height: 100%;
  max-height: none;
  margin: 0;
  padding: 18px 16px 24px;
  background: var(--red);
  color: var(--white);
}

.nav-dialog[open] {
  display: flex;
  flex-direction: column;
  animation: dialog-in 260ms var(--ease-drawer) both;
}

.nav-dialog-top,
.dialog-heading,
.lightbox-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.nav-dialog .icon-button,
.lightbox-dialog .icon-button {
  color: var(--white);
}

.icon-button {
  font-size: 2rem;
  line-height: 1;
}

.icon-button .icon {
  width: 23px;
  height: 23px;
}

.nav-dialog nav {
  display: grid;
  margin-top: 48px;
}

.nav-dialog nav a {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 12px 0 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.38);
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(3.1rem, 14vw, 5.5rem);
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 160ms var(--ease-out);
}

.nav-dialog[open] nav a {
  animation: nav-link-in 260ms var(--ease-out) both;
}

.nav-dialog[open] nav a:nth-child(2) { animation-delay: 42ms; }
.nav-dialog[open] nav a:nth-child(3) { animation-delay: 84ms; }
.nav-dialog[open] nav a:nth-child(4) { animation-delay: 126ms; }
.nav-dialog[open] nav a:nth-child(5) { animation-delay: 168ms; }

.nav-dialog nav a span {
  font-family: Arial, sans-serif;
  font-size: 0.7rem;
}

.nav-book {
  width: 100%;
  margin-top: auto;
}

.booking-dialog {
  width: min(calc(100% - 20px), 700px);
  max-height: calc(100% - 20px);
  background: var(--paper-soft);
  color: var(--ink);
  box-shadow: 0 24px 100px rgba(0, 0, 0, 0.34);
}

.booking-dialog[open] {
  animation: dialog-in 240ms var(--ease-out) both;
}

.dialog-panel {
  padding: 24px;
}

.dialog-heading {
  align-items: flex-start;
}

.dialog-heading h2 {
  font-size: clamp(2.7rem, 9vw, 4.5rem);
}

.dialog-intro {
  max-width: 37rem;
  margin: 24px 0 28px;
}

.booking-form,
.booking-form label {
  display: grid;
  gap: 7px;
}

.booking-form {
  gap: 17px;
}

.booking-form label {
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.booking-form label span {
  font-weight: 400;
}

.field-row {
  display: grid;
  gap: 17px;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 11px 12px;
  border: 1px solid rgba(23, 20, 17, 0.45);
  border-radius: 0;
  background: var(--white);
  color: var(--ink);
  font-size: 1rem;
  letter-spacing: normal;
  text-transform: none;
}

.booking-form textarea {
  min-height: 90px;
  resize: vertical;
}

.booking-form [aria-invalid="true"] {
  border-width: 2px;
  border-color: var(--red);
}

.form-error {
  min-height: 1.5em;
  margin: 0;
  color: #a91d13;
  font-size: 0.85rem;
  font-weight: 700;
}

.request-summary {
  padding-top: 8px;
}

.request-summary:not([hidden]) {
  animation: summary-in 220ms var(--ease-out) both;
}

.request-summary h3 {
  margin: 0 0 12px;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 2.2rem;
  text-transform: uppercase;
}

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

.text-button {
  margin-top: 22px;
  padding: 5px 0;
  border: 0;
  border-bottom: 2px solid currentColor;
  background: transparent;
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}

.lightbox-dialog {
  width: 100%;
  max-width: none;
  height: 100%;
  max-height: none;
  margin: 0;
  background: #0e0d0c;
  color: var(--white);
}

.lightbox-dialog[open] {
  display: grid;
  grid-template-rows: auto 1fr;
  animation: fade-in 220ms ease both;
}

.lightbox-bar {
  min-height: 68px;
  padding: 10px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.lightbox-bar p {
  display: flex;
  gap: 12px;
  margin: 0;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lightbox-stage {
  min-height: 0;
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr) 52px;
  align-items: center;
  gap: 8px;
  padding: 12px 6px 24px;
}

.lightbox-stage img {
  max-width: 100%;
  max-height: calc(100vh - 110px);
  max-height: calc(100svh - 110px);
  justify-self: center;
  object-fit: contain;
}

.lightbox-nav {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.2);
  color: var(--white);
  font-size: 1.2rem;
  cursor: pointer;
  transition: transform 120ms var(--ease-out), background-color 140ms ease;
}

.lightbox-nav .icon {
  width: 21px;
  height: 21px;
}

[hidden] {
  display: none !important;
}

.reveal.will-reveal {
  opacity: 0;
  transform: translate3d(0, 30px, 0);
  transition: opacity 700ms var(--ease-out), transform 700ms var(--ease-out);
  will-change: transform, opacity;
}

.reveal.will-reveal[data-delay="1"] { transition-delay: 60ms; }
.reveal.will-reveal[data-delay="2"] { transition-delay: 120ms; }

.reveal.will-reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

@media (hover: hover) and (pointer: fine) {
  .desktop-nav a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
  }

  .social-icon:hover,
  .menu-toggle:hover,
  .icon-button:hover {
    transform: rotate(-5deg) scale(1.06);
    background: rgba(255, 255, 255, 0.1);
  }

  .site-header.is-solid .social-icon:hover,
  .site-header.is-solid .menu-toggle:hover {
    background: rgba(23, 20, 17, 0.07);
  }

  .button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 0 rgba(23, 20, 17, 0.16);
  }

  .button-primary:hover {
    background: var(--red-dark);
  }

  .hero-scroll:hover {
    transform: translateY(3px);
  }

  .quick-links a:hover,
  .quick-links button:hover,
  .mobile-action-bar a:hover,
  .mobile-action-bar button:hover {
    background: var(--red);
  }

  .menu-card:hover .portrait-frame > img {
    transform: scale(1.045);
  }

  .menu-card:hover .menu-number {
    transform: rotate(-7deg) scale(1.08);
  }

  .gallery-card:hover {
    transform: translateY(-5px);
  }

  .gallery-card:hover img {
    transform: scale(1.055);
  }

  .gallery-card:hover::before {
    opacity: 1;
    transform: scale(1);
  }

  .nav-dialog nav a:hover {
    transform: translateX(8px);
  }
}

.social-icon:active,
.menu-toggle:active,
.icon-button:active,
.gallery-card:active,
.lightbox-nav:active {
  transform: scale(0.94);
}

@keyframes hero-arrive {
  from { opacity: 0; transform: scale(1.035); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes rise-in {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes bob {
  0%, 100% { transform: translateY(-2px); }
  50% { transform: translateY(4px); }
}

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

@keyframes glow-drift-one {
  from { opacity: 0.28; transform: translate3d(-4%, -2%, 0) scale(0.92); }
  to { opacity: 0.58; transform: translate3d(-22%, 18%, 0) scale(1.15); }
}

@keyframes glow-drift-two {
  from { opacity: 0.2; transform: translate3d(-3%, 7%, 0) scale(0.9); }
  to { opacity: 0.52; transform: translate3d(23%, -15%, 0) scale(1.18); }
}

@keyframes stamp-spin {
  to { transform: rotate(360deg); }
}

@keyframes background-word-drift {
  from { transform: translate3d(0, 0, 0) rotate(-2deg); }
  to { transform: translate3d(-7vw, -2vh, 0) rotate(2deg); }
}

@keyframes badge-float {
  from { transform: translate3d(0, -4px, 0) rotate(-6deg); }
  to { transform: translate3d(-5px, 10px, 0) rotate(5deg); }
}

@keyframes menu-orbit-drift {
  from { transform: translate3d(0, -3%, 0) rotate(0deg); }
  to { transform: translate3d(-12vw, 12%, 0) rotate(160deg); }
}

@keyframes signal-run {
  0%, 12% { transform: translate3d(-120%, 0, 0); }
  88%, 100% { transform: translate3d(340%, 0, 0); }
}

@keyframes image-sweep {
  0%, 52% { transform: translate3d(-115%, 0, 0) rotate(0.001deg); }
  72%, 100% { transform: translate3d(115%, 0, 0) rotate(0.001deg); }
}

@keyframes status-pulse {
  0%, 100% { opacity: 0.72; transform: scale(0.78); }
  50% { opacity: 1; transform: scale(1.12); }
}

@keyframes gallery-wash {
  from { opacity: 0.78; }
  to { opacity: 1; }
}

@keyframes review-word-slide {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-16vw, 10px, 0); }
}

@keyframes review-glint {
  0%, 58% { transform: translate3d(0, 0, 0) rotate(12deg); }
  78%, 100% { transform: translate3d(520%, 0, 0) rotate(12deg); }
}

@keyframes map-beacon {
  0% { opacity: 0.85; transform: scale(0.5); }
  72%, 100% { opacity: 0; transform: scale(2.6); }
}

@keyframes closing-word-drift {
  from { transform: translate3d(0, -50%, 0); }
  to { transform: translate3d(-12vw, -50%, 0); }
}

@keyframes nav-link-in {
  from { opacity: 0; transform: translate3d(0, 14px, 0); }
  to { opacity: 1; transform: translate3d(0, 0, 0); }
}

@keyframes summary-in {
  from { opacity: 0; transform: translate3d(0, 10px, 0) scale(0.98); }
  to { opacity: 1; transform: translate3d(0, 0, 0) scale(1); }
}

@keyframes dialog-in {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

@media (min-width: 700px) {
  :root {
    --shell: min(100% - 64px, 1240px);
    --header-height: 78px;
  }

  .site-header {
    padding-inline: 32px;
  }

  .hero-content {
    padding-bottom: 96px;
  }

  .hero-stamp {
    top: 21%;
    right: 6vw;
    width: 166px;
  }

  .hero-stamp strong {
    font-size: 2rem;
  }

  .hero h1 {
    font-size: clamp(5rem, 10vw, 6rem);
  }

  .hero-stamp {
    top: 23%;
    right: 6vw;
    width: 168px;
  }

  .photo-badge {
    width: 118px;
  }

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

  .quick-fact,
  .quick-links {
    padding-inline: 32px;
  }

  .quick-rail > :nth-child(even) {
    border-left: 1px solid rgba(255, 255, 255, 0.18);
  }

  .quick-links {
    padding: 0;
  }

  .section {
    padding-block: 118px;
  }

  .about-grid {
    grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.66fr);
    gap: clamp(58px, 9vw, 130px);
  }

  .about-image {
    align-self: start;
  }

  .section-heading {
    grid-template-columns: minmax(0, 1fr) minmax(240px, 0.38fr);
    align-items: end;
    gap: 50px;
    margin-bottom: 52px;
  }

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

  .menu-card {
    display: flex;
    flex-direction: column;
  }

  .menu-card-body {
    display: flex;
    flex: 1;
    flex-direction: column;
  }

  .menu-list {
    display: grid;
    flex: 1;
    grid-template-rows: repeat(3, minmax(auto, 1fr));
  }

  .menu-list > div {
    min-height: 0;
  }

  .menu-footer {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .menu-extras-heading {
    grid-template-columns: minmax(0, 1fr) minmax(240px, 0.42fr);
    align-items: end;
    gap: 40px;
  }

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

  .menu-extras-grid > div {
    padding: 20px 24px;
    border-left: 1px solid var(--line);
  }

  .menu-extras-grid > div:first-child {
    padding-left: 0;
    border-left: 0;
  }

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

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

  .review-feature {
    grid-column: 1 / -1;
  }

  .review-card {
    padding: 30px;
  }

  .visit-info {
    padding: 100px max(32px, calc((100vw - 1240px) / 2));
  }

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

  .dialog-panel {
    padding: 34px;
  }

  .footer-grid {
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: 38px;
  }

  .site-footer {
    padding-bottom: 22px;
  }

  .mobile-action-bar {
    display: none;
  }
}

@media (min-width: 700px) and (max-width: 1239px) {
  .menu-card h3 {
    min-height: 2em;
  }
}

@media (min-width: 960px) {
  .desktop-nav {
    display: flex;
  }

  .site-header .wordmark {
    width: 56px;
    height: 56px;
    display: block;
    border: 0;
    border-radius: 50%;
    background: transparent;
    box-shadow: 0 3px 10px rgba(23, 20, 17, 0.18);
    transform: none;
  }

  .site-header .wordmark .brand-logo {
    width: 56px;
    height: 56px;
  }

  .site-header .wordmark span:first-child {
    padding: 5px 7px 4px;
    font-size: 1.28rem;
  }

  .site-header .wordmark span:last-child {
    font-size: 1.28rem;
    letter-spacing: 0.02em;
  }

  .header-name {
    display: none;
  }

  .hero-stamp {
    width: 184px;
  }

  .hero-stamp {
    top: 24%;
    right: 8vw;
    width: 186px;
  }

  .menu-toggle {
    display: none;
  }

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

  .quick-rail {
    grid-template-columns: 0.9fr 1.2fr 1.15fr 0.72fr;
  }

  .quick-rail > :nth-child(n) {
    border-top: 0;
    border-left: 1px solid rgba(255, 255, 255, 0.18);
  }

  .quick-rail > :first-child {
    border-left: 0;
  }

  .reviews-grid {
    grid-template-columns: minmax(0, 1.14fr) minmax(320px, 0.86fr);
  }

  .review-feature {
    grid-column: 1;
    grid-row: 1 / span 2;
  }

  .visit-section {
    min-height: 760px;
    grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  }

  .visit-info {
    padding-right: clamp(54px, 7vw, 110px);
  }

  .map-wrap,
  .map-wrap iframe {
    min-height: 760px;
  }

  .closing-inner {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
  }

  .closing-actions {
    justify-content: flex-end;
  }
}

@media (min-width: 1300px) {
  .site-header {
    padding-inline: 48px;
  }

  .hero-scroll {
    right: 48px;
  }
}

@media (max-width: 430px) {
  .hero-actions .button {
    flex: 1 1 145px;
  }

  .visit-actions .button,
  .closing-inner .button,
  .summary-actions .button {
    width: 100%;
  }

  .lightbox-stage {
    grid-template-columns: 46px minmax(0, 1fr) 46px;
    gap: 2px;
  }

  .lightbox-nav {
    width: 42px;
    height: 42px;
  }
}

@media (max-width: 699px) {
  .site-header {
    height: 78px;
    padding-inline: 16px;
    border-bottom-color: transparent;
    background: linear-gradient(180deg, rgba(15, 12, 10, 0.24), transparent);
  }

  .site-header.is-solid {
    background: rgba(246, 236, 218, 0.96);
    border-bottom-color: var(--line);
  }

  .hero-overlay {
    background: linear-gradient(180deg, rgba(12, 10, 8, 0.2) 0%, rgba(12, 10, 8, 0.08) 45%, rgba(12, 10, 8, 0.28) 100%);
  }

  .hero-content {
    padding-block: calc(var(--header-height) + 42px) 88px;
  }

  .hero-eyebrow {
    margin-bottom: 16px;
    font-size: 0.66rem;
    letter-spacing: 0.18em;
  }

  .hero h1 {
    max-width: 10ch;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(3.6rem, 14.5vw, 5.2rem);
    font-weight: 400;
    letter-spacing: -0.035em;
    line-height: 0.88;
    text-transform: none;
  }

  .hero-copy {
    max-width: 22rem;
    margin-top: 24px;
    font-size: 1.03rem;
    line-height: 1.42;
  }

  .hero-actions {
    gap: 12px;
    margin-top: 30px;
  }

  .hero-actions .button {
    min-height: 64px;
    flex: 1 1 0;
    padding: 14px 12px;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    text-transform: none;
  }

  .hero-actions .button-primary {
    border-color: var(--paper-soft);
    background: var(--paper-soft);
    color: var(--ink);
  }

  .hero-actions .button-ghost {
    border-color: rgba(255, 253, 248, 0.86);
    background: rgba(12, 10, 8, 0.12);
    color: var(--white);
  }

  .hero-stamp {
    top: 13%;
    right: -10px;
    width: 148px;
    border: 1px solid rgba(255, 253, 248, 0.68);
    background: transparent;
    box-shadow: none;
    color: var(--white);
    opacity: 0.78;
    transform: rotate(0deg);
  }

  .hero-stamp strong {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.58rem;
    font-weight: 700;
  }

  .hero-scroll {
    right: 18px;
    bottom: 26px;
  }

  .header-actions .social-icon,
  .header-actions .menu-toggle {
    color: var(--white);
  }

  .site-header.is-solid .header-actions .social-icon,
  .site-header.is-solid .header-actions .menu-toggle {
    color: var(--ink);
  }

  body.at-hero .mobile-action-bar {
    transform: translateY(100%);
  }
}

/* Desktop hero: a wide, storefront-style composition with split bottom copy. */
@media (min-width: 960px) {
  .about-grid {
    grid-template-columns: minmax(0, 1fr) minmax(340px, 0.82fr);
    gap: clamp(48px, 6vw, 88px);
  }

  .about-image {
    aspect-ratio: 4 / 5;
    margin-top: clamp(56px, 7vw, 96px);
  }

  .hero-overlay {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.12) 0%, rgba(0, 0, 0, 0.16) 48%, rgba(0, 0, 0, 0.3) 100%);
  }

  .hero-content {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.72fr);
    grid-template-areas:
      "eyebrow eyebrow"
      "title copy"
      "title actions";
    column-gap: clamp(42px, 7vw, 118px);
    align-content: end;
    align-items: end;
    padding-bottom: clamp(76px, 10vh, 108px);
  }

  .hero-eyebrow {
    grid-area: eyebrow;
    margin-bottom: 20px;
  }

  .hero h1 {
    grid-area: title;
    align-self: end;
    max-width: none;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(4.8rem, 8.5vw, 6rem);
    font-weight: 400;
    letter-spacing: -0.035em;
    line-height: 0.86;
    text-transform: uppercase;
  }

  .hero-copy {
    grid-area: copy;
    align-self: end;
    justify-self: end;
    max-width: 28rem;
    margin: 0 0 28px;
    font-size: clamp(1.05rem, 1.6vw, 1.28rem);
    line-height: 1.38;
    text-align: right;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.28);
  }

  .hero-actions {
    grid-area: actions;
    justify-self: end;
    width: min(100%, 390px);
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin: 0;
  }

  .hero-actions .button {
    min-height: 60px;
    gap: 10px;
    padding-inline: 12px;
    font-size: 0.7rem;
    letter-spacing: 0.06em;
    white-space: nowrap;
  }

  .hero-actions .button .icon {
    width: 20px;
    height: 20px;
    stroke-width: 2.25;
  }

  .hero-actions .button-primary {
    background: var(--white);
    color: var(--ink);
  }

  .hero-actions .button-ghost {
    background: rgba(12, 10, 8, 0.14);
  }

  .hero-stamp {
    top: 14%;
    right: 7vw;
    width: 196px;
    border: 1px solid rgba(255, 253, 248, 0.72);
    background: transparent;
    box-shadow: none;
    color: var(--white);
    opacity: 0.82;
    transform: rotate(0deg);
  }

  .hero-stamp strong {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 2rem;
    font-weight: 700;
  }

  .hero-scroll {
    display: none;
  }
}

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

  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .reveal.will-reveal,
  .reveal.will-reveal.is-visible {
    opacity: 1;
    transform: none;
  }

  .hero-glow-one { opacity: 0.32; transform: translate3d(-12%, 8%, 0); }
  .hero-glow-two { opacity: 0.28; transform: translate3d(10%, -5%, 0); }

}
