:root {
  --ink: #0f0e0b;
  --charcoal: #17130f;
  --paper: #f4eee2;
  --paper-2: #fff8eb;
  --muted: #685f52;
  --rust: #9c4a2c;
  --brass: #d6a15b;
  --brick: #7c3f2c;
  --line: rgba(15, 14, 11, 0.15);
  --line-light: rgba(244, 238, 226, 0.18);
  --max: 1180px;
  --pad: clamp(18px, 5.2vw, 58px);
  --serif: "Iowan Old Style", "Palatino Linotype", "URW Palladio L", P052, Georgia, serif;
  --sans: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 76px;
  text-size-adjust: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.45;
  letter-spacing: 0;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  opacity: 0.34;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(15, 14, 11, 0.045) 1px, transparent 1px),
    radial-gradient(circle at 20% 0%, rgba(180, 92, 55, 0.08), transparent 36%),
    var(--paper);
  background-size: 38px 38px, auto, auto;
}

a {
  color: inherit;
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 3px;
}

svg {
  display: block;
  width: 16px;
  height: 16px;
  fill: currentColor;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 40;
  transform: translateY(-140%);
  background: var(--ink);
  color: var(--paper);
  padding: 10px 14px;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 12px var(--pad);
  border-bottom: 1px solid transparent;
  background: rgba(244, 238, 226, 0.88);
  backdrop-filter: blur(18px);
  transition: border-color 180ms ease, background 180ms ease;
}

body.has-scrolled .site-header {
  border-color: var(--line);
  background: rgba(244, 238, 226, 0.96);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 44px;
  text-decoration: none;
}

.brand-mark {
  display: block;
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.brand-word {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: lowercase;
}

.header-nav {
  display: none;
}

.header-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
}

.hero {
  min-height: calc(100svh - 57px);
  display: grid;
  grid-template-rows: minmax(300px, 44svh) auto;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.hero-collage {
  position: relative;
  display: block;
  min-height: 300px;
  margin: 0;
  border: 8px solid var(--ink);
  background: var(--ink);
  overflow: hidden;
}

.hero-collage::after,
.place-visual::after,
.photo-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.13;
  mix-blend-mode: overlay;
  background-image:
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.12) 0 1px, transparent 1px 3px),
    linear-gradient(115deg, transparent, rgba(255, 255, 255, 0.22), transparent 36%);
}

.hero-photo {
  display: block;
  height: 100%;
  min-height: inherit;
}

.hero-collage img {
  object-position: center center;
  filter: saturate(0.95) contrast(1.04);
}

.hero-collage figcaption {
  position: absolute;
  left: 12px;
  bottom: 12px;
  z-index: 2;
  max-width: 12rem;
  color: var(--paper);
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.02;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.65);
}

.hero-menu-strip {
  position: absolute;
  right: 8px;
  bottom: 8px;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(4, auto);
  align-items: end;
  gap: 10px;
  min-height: 104px;
  margin: 0;
  padding: 18px 14px 17px;
  border: 1px solid rgba(15, 14, 11, 0.16);
  border-left-color: rgba(156, 74, 44, 0.58);
  background: rgba(244, 238, 226, 0.42);
  color: var(--ink);
  list-style: none;
  box-shadow: -10px 10px 24px rgba(15, 14, 11, 0.14);
}

.hero-menu-strip li {
  position: relative;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-family: var(--serif);
  font-size: clamp(17px, 4.5vw, 24px);
  line-height: 1;
  text-shadow: 0 1px 10px rgba(244, 238, 226, 0.82);
  white-space: nowrap;
}

.hero-menu-strip li + li::after {
  content: "";
  position: absolute;
  top: -9px;
  bottom: -9px;
  right: -7px;
  width: 1px;
  background: var(--rust);
  opacity: 0.62;
}

.hero-menu-strip::before {
  content: "";
  position: absolute;
  top: 18px;
  bottom: 18px;
  left: 11px;
  width: 1px;
  background: var(--rust);
  opacity: 0.7;
}

.hero-stage {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: calc(56svh - 57px);
  padding: clamp(28px, 7vw, 72px) var(--pad) 92px;
}

.kicker {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.16em;
  line-height: 1.2;
  text-transform: uppercase;
}

.rust {
  color: var(--rust);
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 14px;
  margin-bottom: 14px;
}

.hero-meta .kicker {
  margin-bottom: 0;
}

.heritage-note {
  width: max-content;
  margin: 0;
  padding-left: 14px;
  border-left: 1px solid rgba(156, 74, 44, 0.48);
  color: var(--rust);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.16em;
  line-height: 1.2;
  text-transform: uppercase;
}

.section-dark .rust {
  color: var(--brass);
}

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

h1,
h2,
h3 {
  color: inherit;
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: 0;
}

h1 {
  max-width: 7.2ch;
  margin: 0 0 18px;
  font-size: clamp(80px, 24vw, 180px);
  line-height: 0.84;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(32px, 9vw, 82px);
  line-height: 0.96;
}

h3 {
  margin-bottom: 8px;
  font-size: clamp(25px, 7vw, 36px);
  line-height: 0.98;
}

.hero-subtitle {
  max-width: 28rem;
  margin-bottom: 24px;
  font-family: var(--serif);
  font-size: clamp(22px, 5.8vw, 36px);
  line-height: 1.02;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--muted);
}

.status-badge.is-open {
  color: var(--ink);
}

.status-badge.is-open .status-dot {
  background: #4c7c4a;
}

.status-badge.is-closed .status-dot {
  background: var(--rust);
}

.hero-ratings {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 8px;
  align-items: center;
  margin: -10px 0 24px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.hero-ratings a {
  text-decoration-color: rgba(156, 74, 44, 0.5);
  text-underline-offset: 3px;
}

.action-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 52px;
  padding: 15px 18px;
  border: 1px solid currentColor;
  border-radius: 0;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.1em;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease, border-color 160ms ease;
}

.button:active {
  transform: translateY(1px);
}

.button-primary {
  border-color: var(--rust);
  background: var(--rust);
  color: #fff8eb;
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #963f25;
  border-color: #963f25;
}

.button-ghost {
  background: transparent;
  color: currentColor;
}

.button-ghost:hover,
.button-ghost:focus-visible {
  background: rgba(15, 14, 11, 0.06);
}

.section-dark .button-ghost:hover,
.section-dark .button-ghost:focus-visible {
  background: rgba(244, 238, 226, 0.08);
}

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

.section-pad,
.section-dark {
  padding: clamp(72px, 15vw, 158px) var(--pad);
}

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

.intro {
  background: linear-gradient(180deg, var(--paper-2), var(--paper));
}

.intro-grid {
  display: grid;
  gap: 38px;
}

.intro p {
  max-width: 24rem;
  color: var(--muted);
  font-family: var(--serif);
  font-size: 24px;
  line-height: 1.1;
}

.facts {
  margin: 0;
  border-top: 1px solid var(--line);
}

.facts div {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 18px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.facts dt {
  color: var(--rust);
  font-size: 10px;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.facts dd {
  margin: 0;
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.08;
}

.order-picks {
  background: linear-gradient(180deg, var(--paper-2), var(--paper));
}

.order-head {
  margin-bottom: 24px;
}

.order-head h2 {
  max-width: 11ch;
  margin-bottom: 0;
}

.order-grid {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(96px, 1fr);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  margin: 0;
  padding: 0 0 6px;
  list-style: none;
}

.order-grid::-webkit-scrollbar {
  display: none;
}

.order-grid li {
  display: block;
  scroll-snap-align: start;
}

.order-photo {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: inherit;
  cursor: zoom-in;
}

.order-photo:focus-visible {
  outline: 2px solid var(--rust);
  outline-offset: 3px;
}

.order-photo picture {
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--ink);
}

.order-grid img {
  filter: saturate(0.9) contrast(1.04);
  transition: transform 500ms ease;
}

.order-photo:hover img,
.order-photo:focus-visible img {
  transform: scale(1.025);
}

.order-grid h3 {
  margin: 10px 0 5px;
  font-size: clamp(18px, 5vw, 30px);
}

.order-grid p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: clamp(12px, 3.2vw, 15px);
  line-height: 1.28;
}

.photo-dialog {
  width: min(calc(100vw - 28px), 760px);
  max-height: calc(100dvh - 28px);
  padding: 0;
  border: 1px solid rgba(244, 238, 226, 0.35);
  background: var(--ink);
  color: var(--paper);
  overflow: hidden;
}

.photo-dialog::backdrop {
  background: rgba(15, 14, 11, 0.74);
}

.photo-dialog img {
  width: 100%;
  height: min(78dvh, 760px);
  object-fit: contain;
  background: var(--ink);
}

.photo-dialog-close {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid rgba(244, 238, 226, 0.48);
  background: rgba(15, 14, 11, 0.72);
  color: var(--paper);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.photo-rail {
  padding: 8px var(--pad);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.photo-rail figure {
  position: relative;
  width: min(100%, var(--max));
  aspect-ratio: 16 / 10;
  margin: 0 auto;
  overflow: hidden;
  background: var(--ink);
}

.photo-rail picture {
  display: block;
  height: 100%;
}

.photo-rail img {
  object-position: center 74%;
  filter: saturate(0.82) contrast(1.05);
}

.photo-rail figcaption {
  position: absolute;
  left: 14px;
  bottom: 14px;
  z-index: 2;
  max-width: 15rem;
  color: var(--paper);
  font-family: var(--serif);
  font-size: clamp(19px, 5vw, 34px);
  line-height: 1.02;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.72);
}

.section-dark {
  background: var(--ink);
  color: var(--paper);
}

.visit {
  padding-top: 10px;
}

.food-grid,
.visit-grid {
  display: grid;
  gap: 38px;
}

.food-copy p:not(.kicker),
.visit p:not(.ratings) {
  max-width: 34rem;
  color: rgba(244, 238, 226, 0.68);
  font-size: 17px;
}

.food-visuals {
  display: grid;
  gap: 14px;
}

.food-visuals .photo-panel {
  min-height: 260px;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 30px 0 26px;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line-light);
  border-left: 1px solid var(--line-light);
}

.menu-grid li {
  min-height: 78px;
  display: flex;
  align-items: center;
  padding: 18px;
  border-right: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
  color: var(--paper);
  font-family: var(--serif);
  font-size: 30px;
  line-height: 1;
}

.food-copy .menu-note {
  max-width: 30rem;
  margin: -10px 0 26px;
  color: rgba(244, 238, 226, 0.78);
  font-family: var(--serif);
  font-size: 18px;
  font-style: italic;
  line-height: 1.25;
}

.editorial-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--paper);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-decoration: underline;
  text-decoration-color: rgba(214, 161, 91, 0.78);
  text-underline-offset: 5px;
  text-transform: uppercase;
}

.photo-panel {
  position: relative;
  min-height: 430px;
  margin: 0;
  overflow: hidden;
  background: var(--charcoal);
}

.photo-panel picture {
  position: absolute;
  inset: 0;
}

.photo-panel img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  filter: saturate(0.95) contrast(1.02);
  transition: transform 700ms ease;
}

.photo-panel:hover img {
  transform: scale(1.025);
}

.photo-panel figcaption {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  z-index: 2;
  max-width: 18rem;
  margin: 0;
  color: var(--paper);
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.02;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.72);
}

.place-visual img,
.food-photo img,
.street-photo img {
  object-position: center center;
}

.instagram-section {
  padding: clamp(58px, 10vw, 104px) 0;
  border-top: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(15, 14, 11, 0.045) 1px, transparent 1px),
    var(--paper-2);
  background-size: 38px 38px;
}

.instagram-head {
  padding-inline: var(--pad);
}

.instagram-head h2 {
  max-width: 10ch;
}

.instagram-head p:not(.kicker) {
  max-width: 25rem;
  margin-bottom: 26px;
  color: var(--muted);
  font-family: var(--serif);
  font-size: 24px;
  line-height: 1.1;
}

.instagram-embed {
  display: grid;
  gap: 18px;
  padding-inline: var(--pad);
}

.instagram-fallback {
  max-width: 32rem;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.instagram-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  align-items: start;
}

.instagram-media {
  width: min(100%, 540px) !important;
  min-width: 0 !important;
  min-height: 460px;
  margin: 0 !important;
  border: 1px solid var(--line) !important;
  background: rgba(255, 248, 235, 0.72);
  overflow: hidden;
}

.instagram-media a {
  display: inline-flex;
  padding: 18px;
  color: var(--ink);
  font-weight: 800;
  text-decoration-color: rgba(156, 74, 44, 0.5);
  text-underline-offset: 4px;
}

.instagram-media iframe {
  max-width: 100% !important;
}

.instagram-embed .button {
  width: 100%;
}

@media (min-width: 680px) and (max-width: 919px) {
  .instagram-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .instagram-media {
    width: 100% !important;
  }
}

.visit-grid {
  align-items: start;
}

.ratings {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
  margin-bottom: 28px;
  color: rgba(244, 238, 226, 0.85);
  font-size: 13px;
  font-weight: 700;
}

.ratings .muted {
  color: rgba(244, 238, 226, 0.62);
  font-weight: 400;
}

.ratings a {
  color: inherit;
  text-decoration-color: rgba(214, 161, 91, 0.78);
  text-underline-offset: 3px;
}

address {
  display: grid;
  gap: 8px;
  padding-top: 8px;
  color: rgba(244, 238, 226, 0.72);
  font-style: normal;
}

address strong {
  color: var(--paper);
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
  line-height: 1;
}

address a {
  width: max-content;
  color: var(--paper);
}

address .hours {
  margin-top: 4px;
  color: var(--brass);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.final {
  padding: clamp(78px, 16vw, 160px) var(--pad);
  text-align: center;
  background:
    linear-gradient(90deg, rgba(15, 14, 11, 0.045) 1px, transparent 1px),
    var(--paper-2);
  background-size: 38px 38px;
}

.final-inner {
  display: grid;
  justify-items: center;
}

.final-mark {
  width: 52px;
  height: 52px;
  margin-bottom: 22px;
}

.final h2 {
  margin-bottom: 2px;
}

.final p {
  margin-bottom: 28px;
  color: var(--muted);
  font-family: var(--serif);
  font-size: clamp(34px, 8vw, 58px);
  line-height: 1;
}

.site-footer {
  display: grid;
  gap: 24px;
  padding: 34px var(--pad) 96px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  background: var(--paper);
  font-size: 14px;
}

.site-footer div {
  display: grid;
  gap: 6px;
}

.site-footer strong {
  color: var(--ink);
  font-family: var(--serif);
  font-size: 23px;
  font-weight: 400;
}

.site-footer a {
  width: max-content;
  color: var(--ink);
}

.footer-socials {
  display: inline-flex;
  gap: 8px;
  margin-top: 4px;
}

.footer-social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  text-decoration: none;
  transition: background 160ms ease, color 160ms ease, border-color 160ms ease;
}

.site-footer a.footer-social {
  width: 36px;
}

.footer-social:hover,
.footer-social:focus-visible {
  border-color: var(--rust);
  background: rgba(156, 74, 44, 0.08);
  color: var(--rust);
}

.footer-social svg {
  width: 17px;
  height: 17px;
}

.footer-social span {
  font-size: 10px;
  font-weight: 950;
  letter-spacing: 0.04em;
}

.mobile-action-bar {
  position: fixed;
  right: 10px;
  bottom: max(10px, env(safe-area-inset-bottom));
  left: 10px;
  z-index: 35;
  display: grid;
  grid-template-columns: 1fr 0.6fr;
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(244, 238, 226, 0.2);
  background: var(--ink);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.28);
  opacity: 0;
  pointer-events: none;
  transform: translateY(14px);
  transition: opacity 180ms ease, transform 180ms ease;
}

body.show-mobile-actions .mobile-action-bar {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.mobile-action-bar a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 56px;
  background: var(--rust);
  color: var(--paper-2);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
}

.mobile-action-bar a:last-child {
  background: var(--ink);
  color: var(--paper);
}

@media (max-width: 679px) {
  .hero-stage {
    padding-bottom: 42px;
  }

  .order-picks {
    padding-top: 34px;
    padding-bottom: 52px;
  }
}

@media (max-width: 360px) and (max-height: 640px) {
  .hero {
    grid-template-rows: minmax(188px, 32svh) auto;
  }

  .hero-collage {
    min-height: 188px;
    border-width: 6px;
  }

  .hero-collage figcaption {
    font-size: 20px;
  }

  .hero-menu-strip {
    min-height: 92px;
    padding: 15px 11px 14px;
  }

  .hero-menu-strip li {
    font-size: 16px;
  }

  .hero-meta {
    margin-bottom: 10px;
  }

  .hero-stage {
    min-height: auto;
    padding-top: 18px;
    padding-bottom: 38px;
  }

  h1 {
    font-size: 64px;
    margin-bottom: 10px;
  }

  .hero-subtitle {
    margin-bottom: 14px;
    font-size: 19px;
  }

  .status-badge {
    margin-bottom: 14px;
  }

  .hero-ratings {
    gap: 4px 6px;
    margin-top: -8px;
    margin-bottom: 8px;
    font-size: 10px;
    line-height: 1.2;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
    animation-duration: 0.001ms !important;
  }

  .photo-panel:hover img {
    transform: none;
  }
}

@media (min-width: 680px) {
  .header-nav {
    display: flex;
    align-items: center;
    gap: 22px;
  }

  .action-row {
    flex-direction: row;
    align-items: center;
  }

  .action-row .button {
    min-width: 172px;
  }

  .facts {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-bottom: 1px solid var(--line);
  }

  .facts div {
    display: block;
    padding: 20px 22px;
    border-bottom: 0;
    border-right: 1px solid var(--line);
  }

  .facts div:last-child {
    border-right: 0;
  }

  .facts dt {
    margin-bottom: 12px;
  }

  .site-footer {
    grid-template-columns: 1fr auto;
    align-items: end;
    padding-bottom: 44px;
  }

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

  .photo-rail figure {
    aspect-ratio: 16 / 8;
  }
}

@media (min-width: 920px) {
  .site-header {
    padding-top: 16px;
    padding-bottom: 16px;
  }

  .hero {
    min-height: calc(100svh - 65px);
    grid-template-columns: minmax(0, 0.92fr) minmax(440px, 1.08fr);
    grid-template-rows: auto;
  }

  .hero-collage {
    min-height: calc(100svh - 65px);
    border-width: 12px;
  }

  .hero-menu-strip {
    right: 0;
    bottom: 42px;
    min-height: 206px;
    padding: 28px 24px 26px;
    border: 0;
    border-left: 12px solid var(--ink);
    background: rgba(244, 238, 226, 0.96);
    backdrop-filter: none;
    gap: 16px;
    box-shadow: -14px 0 28px rgba(15, 14, 11, 0.16);
  }

  .hero-menu-strip li {
    font-size: 25px;
  }

  .hero-stage {
    min-height: calc(100svh - 65px);
    padding: 64px max(var(--pad), calc((100vw - var(--max)) / 2)) 64px 70px;
  }

  h1 {
    max-width: none;
    font-size: clamp(90px, 11vw, 200px);
  }

  .hero-subtitle {
    font-size: clamp(29px, 3vw, 46px);
  }

  .photo-rail {
    padding-top: 18px;
    padding-bottom: 18px;
  }

  .photo-rail figure {
    aspect-ratio: 16 / 6.8;
  }

  .intro-grid {
    grid-template-columns: 0.72fr 1fr;
    align-items: end;
    gap: clamp(52px, 8vw, 110px);
  }

  .order-picks {
    padding-top: clamp(58px, 7vw, 82px);
    padding-bottom: clamp(58px, 7vw, 82px);
  }

  .order-head {
    margin-bottom: 26px;
  }

  .order-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-auto-flow: row;
    grid-auto-columns: initial;
    overflow: visible;
    gap: 12px;
    padding-bottom: 0;
  }

  .order-grid li {
    display: block;
    padding-top: 0;
    border-top: 0;
  }

  .order-photo picture {
    aspect-ratio: 16 / 11;
  }

  .food-grid,
  .visit-grid {
    grid-template-columns: minmax(0, 0.84fr) minmax(420px, 1fr);
    align-items: center;
    gap: clamp(52px, 8vw, 110px);
  }

  .food-grid {
    grid-template-columns: minmax(0, 0.84fr) minmax(450px, 0.92fr);
  }

  .food-visuals .photo-panel {
    min-height: 420px;
  }

  .visit-grid {
    grid-template-columns: 1fr 0.72fr;
    align-items: end;
  }

  .visit-grid .photo-panel {
    align-self: stretch;
  }

  .instagram-section {
    padding-top: clamp(72px, 8vw, 104px);
    padding-bottom: clamp(72px, 8vw, 104px);
  }

  .instagram-head {
    display: grid;
    grid-template-columns: minmax(0, 0.72fr) minmax(0, 1fr);
    align-items: end;
    gap: 18px clamp(52px, 8vw, 110px);
    margin-bottom: 42px;
    padding-inline: var(--pad);
  }

  .instagram-head .kicker {
    grid-column: 1 / -1;
    margin-bottom: 0;
  }

  .instagram-head p:not(.kicker) {
    margin-bottom: 0;
  }

  .instagram-embed {
    padding-inline: var(--pad);
  }

  .instagram-embed .button {
    justify-self: start;
    width: auto;
  }

  .intro h2 {
    max-width: 10ch;
  }

  .visit h2 {
    max-width: 12ch;
  }

  .section-pad,
  .section-dark {
    padding-top: clamp(112px, 14vw, 176px);
    padding-bottom: clamp(112px, 14vw, 176px);
  }

  .visit {
    padding-top: 18px;
  }
}

@media (min-width: 920px) and (max-width: 1179px) {
  .instagram-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .instagram-media {
    width: 100% !important;
  }
}

@media (min-width: 1180px) {
  .instagram-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .instagram-media {
    width: 100% !important;
  }
}
