.restaurant-page-body {
  --rp-width: min(1520px, calc(100% - 48px));
  background: var(--paper);
  overflow-x: hidden;
}

.restaurant-page-body .topbar {
  position: absolute;
  inset: 0 0 auto;
  z-index: 6;
  width: var(--rp-width);
  height: 84px;
  margin: 0 auto;
  border: 0;
  color: #fffdf8;
}

.restaurant-page-body .topbar .brand { color: #fffdf8; }
.restaurant-page-body .nav-links a { color: rgba(255, 253, 248, .72); }
.restaurant-page-body .nav-links a.active,
.restaurant-page-body .nav-links a:hover { color: #fffdf8; }
.restaurant-page-body .topbar-note { color: rgba(255, 253, 248, .7); }
.restaurant-page-body .site-footer {
  width: var(--rp-width);
  margin: 0 auto;
}

.rp-hero {
  position: relative;
  min-height: min(88vh, 820px);
  display: grid;
  align-items: center;
  color: #fffdf8;
  isolation: isolate;
  text-align: center;
}

.rp-hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.rp-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
}

.rp-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(23, 23, 20, .52) 0%, rgba(23, 23, 20, .28) 42%, rgba(23, 23, 20, .84) 100%);
}

.rp-hero-inner {
  width: var(--rp-width);
  margin: 0 auto;
  padding: 132px 0 72px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.rp-crumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  justify-content: center;
  margin: 0 0 28px;
  color: rgba(255, 253, 248, .68);
  font: 10px/1 'DM Mono', monospace;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.rp-crumb a:hover { color: #fffdf8; }
.rp-crumb strong { color: #fffdf8; font-weight: 500; }

.rp-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 16px;
  color: var(--yellow);
  font: 11px/1 'DM Mono', monospace;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.rp-hero h1 {
  max-width: 16ch;
  margin: 0;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(56px, 9vw, 112px);
  font-weight: 600;
  line-height: .86;
  letter-spacing: -.05em;
  text-shadow: 0 10px 40px rgba(0, 0, 0, .35);
}

.rp-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: center;
  margin: 26px 0 0;
}

.rp-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(255, 253, 248, .22);
  background: rgba(23, 23, 20, .28);
  backdrop-filter: blur(10px);
  color: #fffdf8;
  font-size: 12px;
}

.rp-chip b { font-weight: 600; }
.rp-chip-live { border-color: rgba(165, 173, 130, .55); color: #dce3b8; }
.rp-chip-closed { border-color: rgba(232, 92, 50, .45); color: #ffd0c2; }

.rp-lede {
  max-width: 46ch;
  margin: 22px auto 0;
  color: rgba(255, 253, 248, .88);
  font-size: 16px;
  line-height: 1.55;
  text-shadow: 0 2px 16px rgba(0, 0, 0, .4);
}

.rp-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 28px;
}

.rp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
}

.rp-btn-primary { background: var(--orange); color: #fffdf8; }
.rp-btn-primary:hover { background: #d24c25; }
.rp-btn-ghost {
  border-color: rgba(255, 253, 248, .45);
  background: rgba(255, 253, 248, .08);
  color: #fffdf8;
}
.rp-btn-ghost:hover { background: rgba(255, 253, 248, .16); }
.rp-hero .rp-btn-ghost { color: #fffdf8; }

.rp-hero-note {
  margin: 18px 0 0;
  color: rgba(255, 253, 248, .5);
  font: 9px/1.4 'DM Mono', monospace;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.rp-wrap {
  width: var(--rp-width);
  margin: -42px auto 0;
  padding: 0 0 96px;
  position: relative;
  z-index: 1;
}

.rp-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(280px, .78fr);
  gap: 28px;
  align-items: start;
}

.rp-card {
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 18px 40px rgba(23, 23, 20, .08);
}

.rp-panel { padding: 28px 32px 32px; }
.rp-panel + .rp-panel,
.rp-stack > * + * { margin-top: 18px; }

.rp-side { position: sticky; top: 24px; }

.rp-label {
  margin: 0 0 10px;
  color: var(--orange);
  font: 10px/1 'DM Mono', monospace;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.rp-title {
  margin: 0;
  font-size: clamp(32px, 4vw, 48px);
  line-height: .92;
  letter-spacing: -.06em;
}

.rp-title em {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-weight: 600;
}

.rp-side .rp-title { font-size: clamp(26px, 3vw, 34px); }
.rp-title-follow { margin-top: 28px; }

.rp-copy {
  max-width: 62ch;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.rp-story {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 210px;
  gap: 28px;
  align-items: start;
}

.rp-story img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border: 1px solid var(--line);
}

.rp-cats {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.rp-cat {
  padding: 8px 12px;
  border: 1px solid rgba(232, 92, 50, .28);
  border-radius: 999px;
  color: var(--orange);
  font-size: 11px;
}

.rp-cat:hover { background: var(--orange); color: var(--white); }

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

.rp-menu-head p {
  max-width: 26ch;
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.rp-menu-image {
  position: relative;
  margin: 22px 0 0;
  padding: 14px;
  background: var(--paper-deep);
  border: 1px solid var(--line);
}

.rp-menu-image .menu-page-button {
  width: 100%;
}

.rp-menu-image img {
  display: block;
  width: 100%;
  height: auto;
  background: var(--white);
  box-shadow: 0 10px 28px rgba(23, 23, 20, .08);
}

.rp-pdf-row {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 18px;
  margin-bottom: 28px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.rp-pdf-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px 14px;
}

.rp-pdf-links a {
  color: var(--orange);
  font-size: 13px;
}

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

.rp-dish-list {
  list-style: none;
  margin: 22px 0 0;
  padding: 0;
}

.rp-reserve-note {
  margin: 14px 0 0;
}

.rp-dish {
  display: grid;
  grid-template-columns: minmax(0, auto) minmax(24px, 1fr) auto;
  gap: 10px;
  align-items: baseline;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
}

.rp-dish strong {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -.03em;
}

.rp-dish small {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.4;
}

.rp-dots {
  border-bottom: 1px dotted rgba(23, 23, 20, .28);
  transform: translateY(-4px);
}

.rp-price {
  color: var(--orange);
  font: 600 13px/1 'DM Mono', monospace;
  letter-spacing: -.02em;
}

.rp-price-empty { color: var(--muted); font-weight: 500; }

.rp-files {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.menu-card {
  display: flex;
  flex-direction: column;
  min-height: 0;
  background: var(--paper-deep);
  border: 1px solid var(--line);
}

.menu-card-preview { position: relative; padding: 12px; }
.menu-page-stack { display: grid; }
.menu-page-stack > .menu-page-button:not(:first-child) { display: none; }
.menu-page-button {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: var(--white);
  line-height: 0;
  cursor: zoom-in;
  box-shadow: 0 8px 20px rgba(23, 23, 20, .12);
}

.menu-page-button img {
  display: block;
  width: 100%;
  height: auto;
}

.menu-page-count {
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 6px 8px;
  background: rgba(255, 253, 248, .94);
  font: 9px 'DM Mono', monospace;
  text-transform: uppercase;
  letter-spacing: .08em;
  pointer-events: none;
}

.menu-card > div:last-child {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
  padding: 16px 18px 18px;
}

.menu-card h3 { margin: 0; font-size: 18px; letter-spacing: -.04em; }
.menu-card p, .menu-card-placeholder {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.menu-card-placeholder {
  min-height: 160px;
  display: grid;
  place-items: center;
  text-align: center;
  font: 10px/1.6 'DM Mono', monospace;
  text-transform: uppercase;
  letter-spacing: .1em;
}

.rp-reviews {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.rp-review {
  padding: 18px 20px 16px;
  background: var(--paper-deep);
  border-left: 3px solid var(--orange);
}

.rp-review blockquote {
  margin: 0;
  color: var(--ink);
  font: italic 18px/1.45 'Playfair Display', Georgia, serif;
}

.rp-review footer {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 12px;
  color: var(--muted);
  font: 10px 'DM Mono', monospace;
  text-transform: uppercase;
  letter-spacing: .08em;
  height: auto;
}

.rp-stars { color: var(--orange); letter-spacing: .12em; }

.rp-hours { display: grid; }
.rp-hour {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
}

.rp-hour span { color: var(--muted); }
.rp-hour strong { font-weight: 600; }
.rp-hour.is-today {
  margin: 0 -32px;
  padding: 11px 32px;
  background: rgba(232, 92, 50, .08);
  border-bottom-color: transparent;
}

.rp-hour.is-today span,
.rp-hour.is-today strong { color: var(--ink); }

.rp-contact {
  display: grid;
  gap: 14px;
}

.rp-contact a,
.rp-contact p {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin: 0;
  color: var(--ink);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.35;
}

.rp-contact a:hover { color: var(--orange); }

.rp-contact span {
  color: var(--orange);
  font: 10px 'DM Mono', monospace;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.rp-wine {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
}

.rp-amenity-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.rp-amenity {
  padding: 7px 10px;
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 11px;
}

.rp-map {
  display: grid;
  grid-template-columns: minmax(240px, .7fr) minmax(0, 1.3fr);
  overflow: hidden;
}

.rp-side .rp-map { grid-template-columns: 1fr; }

.rp-map-copy { padding: 32px; }
.rp-side .rp-map-copy { padding: 28px 32px 24px; }
.rp-map-copy p { margin: 16px 0 22px; color: var(--muted); font-size: 14px; line-height: 1.55; }
.rp-map-frame { min-height: 340px; background: var(--paper-deep); }
.rp-map-frame iframe { display: block; width: 100%; height: 100%; min-height: 340px; border: 0; }
.rp-side .rp-map-frame,
.rp-side .rp-map-frame iframe { min-height: 220px; }

.rp-nearby-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 16px;
}

.rp-nearby {
  display: flex;
  gap: 12px;
  padding: 14px;
  border: 1px solid var(--line);
  background: var(--paper-deep);
}

.rp-nearby b {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  flex: none;
  border-radius: 50%;
  background: var(--yellow);
  font: 18px 'Playfair Display', Georgia, serif;
}

.rp-nearby:hover { border-color: var(--ink); }
.rp-nearby h3 { margin: 0; font-size: 15px; letter-spacing: -.04em; }
.rp-nearby p { margin: 4px 0 0; color: var(--muted); font-size: 11px; line-height: 1.35; }

.rp-note {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 22px;
  padding: 22px 0 0;
  border-top: 1px solid var(--ink);
  color: var(--muted);
  font-size: 12px;
}

.rp-note span {
  display: block;
  margin-bottom: 6px;
  color: var(--orange);
  font: 10px 'DM Mono', monospace;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.rp-note strong, .rp-note a { color: var(--ink); font-weight: 600; }
.rp-note a { text-decoration: underline; text-decoration-color: var(--orange); text-underline-offset: 3px; }

.rp-back {
  display: inline-block;
  margin-top: 28px;
  color: var(--orange);
  font-size: 13px;
}

.button { border-radius: 100px; padding: 12px 16px; font-size: 12px; font-weight: 700; }
.button-dark { color: var(--white); background: var(--ink); }

.menu-lightbox {
  position: fixed;
  z-index: 100;
  inset: 0;
  overflow: auto;
  overscroll-behavior: contain;
  padding: 24px;
  background: rgba(23, 23, 20, .86);
}

.menu-lightbox[hidden] { display: none; }
.menu-lightbox-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 190px;
  width: min(1120px, 100%);
  min-height: calc(100vh - 48px);
  height: auto;
  margin: 0 auto;
  overflow: visible;
  background: var(--paper);
  box-shadow: 0 25px 80px rgba(0, 0, 0, .35);
}

.menu-lightbox-stage {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 22px 26px 18px;
}

.menu-lightbox-title { margin: 0; padding-right: 48px; font-size: 18px; font-weight: 600; }
.menu-lightbox-counter { color: var(--muted); font: 10px 'DM Mono', monospace; text-transform: uppercase; letter-spacing: .08em; }
.menu-lightbox-image-wrap {
  flex: none;
  overflow: visible;
  padding: 18px 0 8px;
}
.menu-lightbox-image {
  display: block;
  width: 100%;
  height: auto;
  background: #fffdf8;
}

.menu-lightbox-control {
  position: fixed;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}

.menu-lightbox-control:hover { background: var(--orange); color: var(--white); border-color: var(--orange); }
.menu-lightbox-control[hidden] { display: none; }
.menu-lightbox-close { top: 28px; right: 28px; }
.menu-lightbox-prev,
.menu-lightbox-next { top: 50%; transform: translateY(-50%); }
.menu-lightbox-prev { left: 28px; }
.menu-lightbox-next { right: 28px; }
.menu-lightbox.is-single .menu-lightbox-panel {
  grid-template-columns: minmax(0, 1fr);
  grid-template-rows: auto;
}
.menu-lightbox.is-single .menu-lightbox-pages { display: none; }
.menu-lightbox-pages {
  position: sticky;
  top: 24px;
  align-self: start;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  padding: 22px 16px;
  border-left: 1px solid var(--line);
  background: var(--paper-deep);
}

.menu-lightbox-thumb {
  display: block;
  flex: none;
  padding: 0;
  border: 2px solid transparent;
  background: var(--white);
  cursor: pointer;
  opacity: .68;
  line-height: 0;
}

.menu-lightbox-thumb:hover,
.menu-lightbox-thumb.is-active { border-color: var(--orange); opacity: 1; }
.menu-lightbox-thumb img { display: block; width: 100%; height: auto; }
.restaurant-page-body.is-lightbox-open { overflow: hidden; }

@media (max-width: 980px) {
  .rp-layout,
  .rp-story,
  .rp-map { grid-template-columns: 1fr; }
  .rp-side { position: static; }
  .rp-map-frame iframe,
  .rp-map-frame { min-height: 280px; }
}

@media (max-width: 720px) {
  .restaurant-page-body .topbar,
  .restaurant-page-body .site-footer,
  .rp-hero-inner,
  .rp-wrap { width: calc(100% - 32px); }

  .rp-hero { min-height: 0; }
  .rp-hero-inner { padding: 108px 0 42px; }
  .rp-hero h1 { font-size: 54px; max-width: none; }
  .rp-lede { font-size: 14px; }
  .rp-story img { aspect-ratio: 16 / 10; max-height: 220px; }
  .rp-wrap { margin-top: -28px; padding-bottom: 64px; }
  .rp-panel { padding: 22px 18px 24px; }
  .rp-hour.is-today { margin: 0 -18px; padding: 11px 18px; }
  .rp-nearby-grid,
  .rp-note { grid-template-columns: 1fr; }
  .rp-actions { flex-direction: column; }
  .rp-btn { width: 100%; }

  .menu-lightbox { padding: 0; }
  .menu-lightbox-panel {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    width: 100%;
    min-height: 100%;
  }
  .menu-lightbox-stage { padding-bottom: 120px; }
  .menu-lightbox-pages {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    top: auto;
    z-index: 4;
    max-height: 108px;
    flex-direction: row;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 10px;
    border-left: 0;
    border-top: 1px solid var(--line);
  }
  .menu-lightbox-thumb { width: 62px; }
  .menu-lightbox-close { top: 16px; right: 16px; }
  .menu-lightbox-prev { left: 16px; }
  .menu-lightbox-next { right: 16px; }
}
