:root {
  --paper: #efe3cf;
  --paper-soft: #f6eedf;
  --paper-deep: #dfceb0;
  --ink: #201a14;
  --muted: #675b4b;
  --line: #cdbb9b;
  --line-soft: rgba(80, 63, 42, 0.18);
  --awning: #080807;
  --awning-soft: #191613;
  --brass: #a7833b;
  --blue: #2c6f9e;
  --olive: #566449;
  --white: #fffaf0;
  --shadow: 0 18px 48px rgba(42, 30, 18, 0.12);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: Inter, Arial, sans-serif;
  --max: 1180px;
  --section-max: 1320px;
  --page-gutter: 32px;
  --module-padding-y: 88px;
  --contained-module-padding: 44px;
  --top-bar-height: 36px;
  --nav-height: 76px;
  --header-height: calc(var(--top-bar-height) + var(--nav-height));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background-color: var(--paper);
  background-image:
    radial-gradient(ellipse at 18% 0%, rgba(255, 250, 237, 0.82) 0%, rgba(255, 250, 237, 0.18) 38%, rgba(255, 250, 237, 0) 70%),
    linear-gradient(90deg, #efe3cf 0%, #eadcc4 42%, #f0e4d0 100%);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
  min-height: 100vh;
}

body.menu-open,
body.modal-open {
  overflow: hidden;
}

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

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

address {
  font-style: normal;
}

.hidden {
  display: none !important;
}

.skip-link {
  background: var(--awning);
  color: var(--white);
  left: 1rem;
  padding: 0.75rem 1rem;
  position: absolute;
  top: -4rem;
  z-index: 100;
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  background: rgba(239, 227, 207, 0.96);
  border-bottom: 1px solid var(--line-soft);
  position: sticky;
  top: 0;
  z-index: 50;
}

.utility-bar {
  background: var(--awning);
  color: var(--white);
}

.utility-shell {
  align-items: center;
  display: flex;
  gap: 1.2rem;
  height: var(--top-bar-height);
  justify-content: flex-end;
  margin: 0 auto;
  max-width: var(--max);
  padding: 0 24px;
}

.utility-link,
.footer-contact-links a {
  align-items: center;
  display: inline-flex;
  gap: 0.42rem;
}

.utility-link {
  color: rgba(255, 250, 240, 0.88);
  font-size: 0.74rem;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.utility-link:hover {
  color: var(--white);
}

.instagram-link::before {
  background: currentColor;
  content: "";
  display: inline-block;
  flex: 0 0 auto;
  height: 1.05em;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Crect x='3' y='3' width='18' height='18' rx='5' fill='none' stroke='black' stroke-width='2'/%3E%3Ccircle cx='12' cy='12' r='4' fill='none' stroke='black' stroke-width='2'/%3E%3Ccircle cx='17.5' cy='6.5' r='1.5' fill='black'/%3E%3C/svg%3E") center / contain no-repeat;
  width: 1.05em;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Crect x='3' y='3' width='18' height='18' rx='5' fill='none' stroke='black' stroke-width='2'/%3E%3Ccircle cx='12' cy='12' r='4' fill='none' stroke='black' stroke-width='2'/%3E%3Ccircle cx='17.5' cy='6.5' r='1.5' fill='black'/%3E%3C/svg%3E") center / contain no-repeat;
}

.nav-shell {
  align-items: center;
  display: flex;
  gap: 1.5rem;
  height: var(--nav-height);
  justify-content: space-between;
  margin: 0 auto;
  max-width: var(--max);
  padding: 0 24px;
}

.brand {
  align-items: center;
  display: inline-flex;
  flex: 0 0 auto;
  line-height: 1;
}

.brand img {
  height: 46px;
  object-fit: contain;
  width: auto;
}

.primary-nav {
  align-items: center;
  display: flex;
  gap: 1.35rem;
}

.primary-nav a,
.mobile-menu a,
.eyebrow,
.button {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.primary-nav a {
  border-bottom: 1px solid transparent;
  color: var(--muted);
  padding: 0.45rem 0;
}

.primary-nav a:hover,
.primary-nav a.active {
  border-bottom-color: var(--brass);
  color: var(--ink);
}

.nav-actions {
  align-items: center;
  display: flex;
  gap: 0.65rem;
}

.nav-actions .button {
  white-space: nowrap;
}

.button,
button.button {
  align-items: center;
  appearance: none;
  border: 1px solid var(--ink);
  border-radius: 4px;
  cursor: pointer;
  display: inline-flex;
  font-family: var(--sans);
  justify-content: center;
  min-height: 42px;
  padding: 0.72rem 1rem;
  transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease;
}

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

.button-primary:hover {
  background: var(--blue);
  border-color: var(--blue);
}

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

.button-ghost:hover {
  border-color: var(--blue);
  color: var(--blue);
}

.mobile-toggle.button {
  background: transparent;
  display: none;
}

.hamburger-icon {
  display: grid;
  gap: 4px;
  width: 20px;
}

.hamburger-icon span {
  background: currentColor;
  display: block;
  height: 2px;
  width: 100%;
}

[aria-expanded="true"] .hamburger-icon span:first-child {
  transform: translateY(6px) rotate(45deg);
}

[aria-expanded="true"] .hamburger-icon span:nth-child(2) {
  opacity: 0;
}

[aria-expanded="true"] .hamburger-icon span:last-child {
  transform: translateY(-6px) rotate(-45deg);
}

.mobile-menu {
  background: var(--paper-soft);
  border-bottom: 1px solid var(--line-soft);
  border-top: 1px solid var(--line-soft);
  box-shadow: 0 18px 42px rgba(42, 30, 18, 0.18);
  left: 0;
  max-height: calc(100svh - var(--header-height));
  overflow: auto;
  padding: 1rem 24px 1.25rem;
  position: fixed;
  right: 0;
  top: var(--header-height);
  z-index: 60;
}

.mobile-menu-inner {
  display: grid;
  gap: 1rem;
  margin: 0 auto;
  max-width: var(--max);
}

.mobile-menu a {
  border-bottom: 1px solid var(--line-soft);
  color: var(--ink);
  padding-bottom: 0.75rem;
}

.site-main {
  min-height: calc(100vh - var(--header-height));
}

.home-hero {
  background: var(--paper);
  display: grid;
  grid-template-columns: clamp(320px, 28vw, 430px) minmax(0, 1fr);
  min-height: calc(100svh - var(--header-height));
  overflow: hidden;
  position: relative;
}

.home-story-panel {
  align-items: center;
  background: var(--paper);
  border-right: 1px solid rgba(80, 63, 42, 0.14);
  box-shadow: 14px 0 32px rgba(42, 30, 18, 0.12);
  display: flex;
  grid-column: 1;
  grid-row: 1;
  justify-content: center;
  min-height: calc(100svh - var(--header-height));
  padding: clamp(24px, 4svh, 64px) 42px;
  position: relative;
  z-index: 3;
}

.home-hero-photo {
  align-items: stretch;
  background: var(--paper);
  display: flex;
  grid-column: 2;
  grid-row: 1;
  justify-content: flex-start;
  min-height: calc(100svh - var(--header-height));
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.home-hero-photo img {
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center center;
  width: 100%;
}

.home-story-inner {
  color: rgba(32, 26, 20, 0.86);
  display: grid;
  gap: clamp(12px, 2.2svh, 24px);
  justify-items: center;
  max-width: 300px;
  position: relative;
  text-align: center;
  width: 100%;
}

.story-logo {
  display: block;
  height: auto;
  justify-self: center;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0;
  max-width: 54%;
  object-fit: contain;
  pointer-events: none;
  position: relative;
  transform: none;
  width: clamp(112px, 10vw, 150px);
  z-index: 1;
}

.story-rule,
.story-heading,
.story-hats,
.story-copy {
  position: relative;
  z-index: 1;
}

.story-rule {
  background: var(--brass);
  height: 1px;
  opacity: 0.72;
  width: 100%;
}

.story-heading {
  color: rgba(32, 26, 20, 0.78);
  display: grid;
  font-family: var(--serif);
  font-size: clamp(1.05rem, 1.75svh, 1.25rem);
  font-weight: 600;
  gap: 0.1rem;
  letter-spacing: 0.1em;
  line-height: 1.35;
  text-transform: uppercase;
}

.story-heading span {
  display: block;
}

.story-hats {
  display: block;
  height: auto;
  margin: clamp(2px, 1svh, 10px) 0 0;
  width: clamp(66px, 9svh, 82px);
}

.story-copy {
  display: grid;
  gap: clamp(0.85rem, 2svh, 1.35rem);
}

.story-copy p {
  color: rgba(32, 26, 20, 0.78);
  font-family: var(--serif);
  font-size: clamp(1rem, 1.8svh, 1.18rem);
  font-weight: 500;
  line-height: 1.34;
}

.story-copy span {
  display: block;
}

.section {
  margin: 0 auto;
  max-width: var(--section-max);
  padding: var(--module-padding-y) var(--page-gutter);
}

.section-tight {
  padding-top: var(--module-padding-y);
}

.section-split {
  align-items: center;
  display: grid;
  gap: clamp(56px, 6vw, 88px);
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}

.section-split.wide-first {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}

.page-header {
  margin: 0 auto;
  max-width: 860px;
  padding: var(--module-padding-y) var(--page-gutter);
  text-align: center;
}

.page-hero {
  align-items: center;
  display: grid;
  gap: 64px;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  margin: 0 auto;
  max-width: var(--section-max);
  padding: var(--module-padding-y) var(--page-gutter);
}

.page-hero-copy {
  max-width: 620px;
}

.page-hero h1 {
  font-size: 6rem;
}

.page-hero-subtitle {
  color: var(--ink);
  font-family: var(--serif);
  font-size: 2.1rem;
  font-weight: 600;
  line-height: 1.1;
  margin-top: 0.75rem;
}

.page-hero-media,
.section-split > figure {
  margin: 0;
}

.page-hero-frame {
  aspect-ratio: 16 / 11;
}

.eyebrow {
  color: var(--blue);
  display: inline-block;
  margin-bottom: 0.75rem;
}

h1,
h2,
h3 {
  color: var(--ink);
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.05;
  margin: 0;
}

h1 {
  font-size: 6.75rem;
}

h2 {
  font-size: 4.4rem;
}

h3 {
  font-size: 2.35rem;
}

.section h1,
.section h2,
.menu-shell h2,
.redirect-panel h1 {
  font-size: clamp(2.15rem, 3.2vw, 2.85rem);
}

.section h3,
.mini-card h3,
.ink-panel h3 {
  font-size: clamp(1.45rem, 2.8vw, 1.85rem);
}

p {
  margin: 0;
}

.lede {
  color: var(--muted);
  font-size: 1.28rem;
  line-height: 1.7;
}

.section .lede,
.menu-shell .lede,
.body-copy .lede {
  font-size: inherit;
  line-height: inherit;
}

.body-copy {
  color: var(--muted);
  display: grid;
  gap: 1.15rem;
}

.rule {
  background: var(--brass);
  height: 1px;
  margin: 1.35rem 0;
  width: 88px;
}

.rule.centered {
  margin-left: auto;
  margin-right: auto;
}

.actions-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.actions-row.centered {
  justify-content: center;
}

.narrow-article {
  max-width: 820px;
}

.paper-panel {
  background: rgba(251, 246, 234, 0.78);
  border-top: 2px solid var(--brass);
  padding: clamp(38px, 4vw, 56px);
}

.ink-panel {
  background: var(--awning);
  color: var(--white);
  padding: clamp(38px, 4vw, 56px);
}

.ink-panel h2,
.ink-panel h3 {
  color: var(--white);
}

.ink-panel p {
  color: rgba(255, 250, 240, 0.78);
}

.image-frame {
  background: var(--paper-soft);
  border: 1px solid var(--line);
  padding: 8px;
}

.image-frame img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.image-frame.tall {
  aspect-ratio: 4 / 5;
}

.image-frame.wide {
  aspect-ratio: 16 / 10;
}

.image-frame.square {
  aspect-ratio: 1;
}

.caption {
  color: var(--muted);
  font-size: 0.9rem;
  margin-top: 0.65rem;
}

.feature-grid,
.cards-grid {
  display: grid;
  gap: 24px;
}

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

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

.mini-card {
  background: rgba(251, 246, 234, 0.72);
  border-top: 1px solid var(--brass);
  padding: 26px;
}

.mini-card h3 {
  margin-bottom: 0.5rem;
}

.mini-card p {
  color: var(--muted);
}

.menu-page {
  padding-bottom: var(--module-padding-y);
}

.menu-shell {
  background: rgba(251, 246, 234, 0.78);
  border: 1px solid var(--line-soft);
  margin: var(--module-padding-y) auto 0;
  max-width: var(--max);
  padding: var(--contained-module-padding);
}

.menu-intro {
  align-items: start;
  display: grid;
  gap: 30px;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  margin-bottom: 48px;
}

.menu-section {
  border-top: 1px solid var(--line);
  padding: 34px 0;
}

.menu-section:first-of-type {
  border-top: 2px solid var(--brass);
}

.menu-section-header {
  align-items: baseline;
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  margin-bottom: 22px;
}

.menu-section-header h2 {
  font-size: clamp(2rem, 3vw, 2.55rem);
}

.menu-list {
  display: grid;
  gap: 18px;
}

.menu-columns {
  align-items: start;
  display: grid;
  gap: 38px 44px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.menu-group {
  display: grid;
  gap: 14px;
  min-width: 0;
}

.menu-group.wide {
  grid-column: 1 / -1;
}

.menu-group.featured {
  background: rgba(239, 227, 207, 0.62);
  border: 1px solid var(--line-soft);
  border-top: 2px solid var(--brass);
  padding: 18px 20px;
}

.menu-photo-card {
  align-self: start;
  background: rgba(255, 250, 240, 0.52);
  border: 1px solid var(--line-soft);
  border-top: 2px solid var(--brass);
  margin: 0;
  padding: 10px;
}

.menu-photo-card-wide {
  grid-column: 1 / -1;
}

.menu-photo-card img {
  aspect-ratio: 4 / 3;
  display: block;
  height: clamp(220px, 26vw, 330px);
  object-fit: cover;
  object-position: center;
  width: 100%;
}

.menu-photo-card-wide img {
  height: clamp(260px, 34vw, 420px);
}

.menu-photo-card .caption {
  margin: 0.7rem 0 0;
}

.menu-group-title {
  font-family: var(--sans);
  font-size: 1.02rem;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.25;
  text-transform: uppercase;
}

.menu-group-note {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

.menu-list.compact {
  gap: 12px;
}

.menu-item {
  display: grid;
  gap: 0.4rem 1rem;
  grid-template-columns: minmax(0, 1fr) auto;
  min-width: 0;
}

.menu-item h3 {
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.3;
}

.menu-item p {
  color: var(--muted);
  grid-column: 1 / 2;
  line-height: 1.5;
}

.menu-group.featured p {
  color: var(--muted);
}

.menu-group strong {
  color: var(--ink);
}

.price {
  color: var(--ink);
  font-variant-numeric: tabular-nums;
  font-weight: 800;
  grid-column: 2 / 3;
  grid-row: 1 / span 2;
  justify-self: end;
  white-space: nowrap;
}

.feature-price {
  color: var(--ink);
  font-size: 1.1rem;
  font-variant-numeric: tabular-nums;
  font-weight: 800;
}

.menu-fineprint {
  color: var(--muted);
  display: grid;
  font-size: 0.9rem;
  gap: 0.75rem;
  line-height: 1.5;
}

.menu-fineprint p:nth-child(2) {
  color: var(--ink);
  font-weight: 700;
  text-transform: uppercase;
}

.menu-book {
  background: transparent;
  border: 0;
  display: grid;
  gap: 42px;
  margin-top: 0;
  max-width: var(--section-max);
  padding: 0 var(--page-gutter);
}

.menu-jump {
  align-items: center;
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
  padding: 14px 0;
}

.menu-jump a {
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 800;
  padding: 0.55rem 0.78rem;
  text-transform: uppercase;
}

.menu-jump a:hover {
  background: var(--awning);
  border-color: var(--awning);
  color: var(--white);
}

.print-menu-page {
  --menu-red: #812725;
  --menu-page: #edf4f2;
  --menu-line: rgba(28, 34, 30, 0.32);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.74), rgba(255, 255, 255, 0.38)),
    var(--menu-page);
  border: 1px solid rgba(28, 34, 30, 0.22);
  border-radius: 8px;
  box-shadow: 0 22px 54px rgba(42, 30, 18, 0.14);
  color: #211f1c;
  display: grid;
  gap: 24px;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(32px, 4.8vw, 62px);
  position: relative;
  scroll-margin-top: calc(var(--header-height) + 24px);
}

.print-menu-page::before {
  background: url("assets/images/logo.png") center / contain no-repeat;
  content: "";
  inset: 10% 16%;
  mix-blend-mode: multiply;
  opacity: 0.045;
  pointer-events: none;
  position: absolute;
  z-index: -1;
}

.print-page-title,
.print-block h3,
.mid-title {
  color: var(--menu-red);
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.06;
  text-align: center;
  text-transform: uppercase;
}

.menu-shell .print-page-title {
  font-size: clamp(1.85rem, 3.1vw, 2.65rem);
}

.print-block h3,
.mid-title {
  font-size: clamp(1.35rem, 2.1vw, 1.95rem);
}

.print-block h3 small {
  color: var(--menu-red);
  display: inline;
  font-family: var(--serif);
  font-size: 0.62em;
  font-style: italic;
  font-weight: 600;
  text-transform: none;
}

.section-title {
  margin-top: 8px;
}

.print-page-band {
  align-items: center;
  display: grid;
  gap: 16px;
  grid-template-columns: minmax(0, 1fr) auto;
}

.print-page-band .print-page-title {
  justify-self: end;
}

.print-page-band > span {
  background: #1d1d1d;
  color: var(--white);
  font-family: var(--serif);
  font-size: 1.1rem;
  font-style: italic;
  font-weight: 600;
  padding: 0.55rem 0.85rem;
}

.print-menu-grid {
  align-items: start;
  display: grid;
  gap: 24px 42px;
}

.print-menu-grid.two-column {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.compact-grid {
  gap: 10px 42px;
}

.full-width,
.print-footnote,
.print-note.full-width {
  grid-column: 1 / -1;
}

.print-block {
  display: grid;
  gap: 10px;
  min-width: 0;
}

.print-block.no-heading {
  gap: 0;
}

.print-list {
  display: grid;
  gap: 0.48rem;
}

.print-list.two-up {
  gap: 0.55rem 2rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.print-item,
.print-table-row,
.print-table-head {
  align-items: baseline;
  display: grid;
  gap: 0.75rem;
  grid-template-columns: minmax(0, 1fr) auto;
}

.print-item p,
.print-table-row p {
  line-height: 1.32;
  min-width: 0;
}

.print-item strong,
.print-table-row strong,
.print-callout strong,
.framed-feature strong {
  font-family: var(--sans);
  font-weight: 800;
}

.print-item em,
.print-table-row em,
.print-callout em {
  color: rgba(33, 31, 28, 0.82);
  font-family: var(--serif);
  font-size: 1.08em;
  font-style: italic;
  font-weight: 600;
}

.print-item > span,
.print-table-row > span,
.print-table-head > span,
.print-callout span {
  font-variant-numeric: tabular-nums;
  font-weight: 700;
  justify-self: end;
  white-space: nowrap;
}

.print-table-head,
.print-table-row {
  grid-template-columns: minmax(0, 1fr) 58px 64px;
}

.print-table-head {
  color: var(--menu-red);
  font-family: var(--serif);
  font-style: italic;
  font-weight: 600;
}

.subitem p {
  padding-left: 0.8rem;
}

.boxed-row {
  border: 1px solid var(--menu-line);
  padding: 0.45rem 0.65rem;
}

.print-note,
.print-footnote {
  color: var(--menu-red);
  font-family: var(--serif);
  font-size: 1.02rem;
  font-style: italic;
  font-weight: 600;
  line-height: 1.28;
  text-align: center;
}

.print-note strong {
  color: #211f1c;
  font-family: var(--sans);
  font-style: normal;
}

.accent {
  color: var(--menu-red);
}

.framed-feature,
.print-callout,
.kids-menu-frame,
.greek-panel {
  border: 1px solid var(--menu-line);
  background: rgba(255, 255, 255, 0.2);
}

.framed-feature,
.kids-menu-frame {
  padding: 16px 20px;
}

.framed-feature p,
.centered-copy,
.protein-box p {
  line-height: 1.35;
  text-align: center;
}

.protein-box {
  justify-self: center;
  max-width: 620px;
  width: min(100%, 620px);
}

.bar-menu-grid {
  display: grid;
  gap: 0;
  grid-template-columns: 1.3fr 0.8fr 1.1fr 0.9fr;
}

.bar-block {
  border-left: 2px dotted rgba(33, 31, 28, 0.5);
  gap: 14px;
  padding: 0 18px;
}

.bar-block:first-child {
  border-left: 0;
  padding-left: 0;
}

.bar-block:last-child {
  padding-right: 0;
}

.bar-block h3 {
  font-style: italic;
  text-transform: none;
}

.print-callout-grid {
  display: grid;
  gap: 10px;
}

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

.print-callout {
  color: #211f1c;
  line-height: 1.28;
  padding: 10px 12px;
  text-align: center;
}

.print-callout strong {
  color: var(--menu-red);
  text-transform: uppercase;
}

.vinaigrette-callout {
  justify-self: center;
  max-width: 440px;
  width: min(100%, 440px);
}

.greek-panel {
  border-color: rgba(65, 108, 106, 0.5);
  border-width: 6px;
  padding: 24px 34px;
}

.soup-box {
  justify-self: center;
  max-width: 860px;
  width: min(100%, 860px);
}

.centered-block {
  align-self: center;
}

.centered-list {
  justify-self: center;
  max-width: 540px;
  width: min(100%, 540px);
}

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

.kids-menu-frame {
  margin-top: 12px;
  padding: clamp(22px, 3vw, 34px);
}

.kids-menu-frame .print-page-title {
  margin-bottom: 4px;
}

.print-fineprint {
  border-top: 0;
  color: var(--menu-red);
  font-family: var(--serif);
  font-size: 1rem;
  font-style: italic;
  font-weight: 600;
  padding: 10px 0 0;
  text-align: center;
}

.print-fineprint p:nth-child(2) {
  color: var(--menu-red);
  font-weight: 600;
  text-transform: none;
}

.print-fineprint p:nth-child(3),
.print-fineprint p:nth-child(4) {
  color: var(--menu-red);
  font-weight: 700;
  text-transform: uppercase;
}

.quote-letter {
  align-items: center;
  display: grid;
  gap: 48px;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
}

.saved-letter {
  background: rgba(251, 246, 234, 0.84);
  border: 1px solid var(--line-soft);
  border-top: 2px solid var(--brass);
  box-shadow: var(--shadow);
  display: grid;
  margin: 0;
  padding: clamp(28px, 5vw, 54px);
}

.saved-letter a,
.gallery figure > a {
  display: block;
}

.saved-letter img {
  display: block;
  height: auto;
  width: 100%;
}

.gallery {
  background: rgba(251, 246, 234, 0.72);
  border-top: 2px solid var(--brass);
  margin: 0 auto;
  max-width: 880px;
  padding: 24px;
}

.gallery > .eyebrow {
  display: block;
  text-align: center;
}

.gallery figure {
  margin: 0;
}

.gallery img {
  height: auto;
  margin: 18px auto 0;
  max-height: 620px;
  max-height: min(62svh, 620px);
  max-width: 100%;
  object-fit: contain;
  object-position: center top;
  width: auto;
}

.gallery figcaption {
  color: var(--muted);
  margin-top: 0.8rem;
}

.gallery-controls {
  align-items: center;
  display: flex;
  gap: 0.75rem;
  justify-content: space-between;
  margin-top: 1rem;
}

.gallery-count {
  color: var(--muted);
  font-size: 0.9rem;
}

.visit-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
}

.visit-details {
  display: grid;
  gap: 20px;
}

.detail-block {
  border-top: 1px solid var(--line);
  padding-top: 18px;
}

.detail-block strong {
  display: block;
  font-size: 0.82rem;
  margin-bottom: 0.25rem;
  text-transform: uppercase;
}

.map-embed {
  border: 1px solid var(--line);
  height: 420px;
  overflow: hidden;
}

.visit-map {
  height: 100%;
  min-height: 560px;
}

.map-embed iframe {
  border: 0;
  height: 100%;
  width: 100%;
}

.order-modal {
  align-items: center;
  display: grid;
  inset: 0;
  padding: 24px;
  position: fixed;
  z-index: 120;
}

.order-modal-backdrop {
  background: rgba(32, 26, 20, 0.56);
  backdrop-filter: blur(2px);
  inset: 0;
  position: absolute;
}

.order-modal-panel {
  background: var(--paper-soft);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(42, 30, 18, 0.34);
  color: var(--ink);
  justify-self: center;
  max-height: calc(100svh - 48px);
  max-width: 560px;
  outline: none;
  overflow: auto;
  position: relative;
  width: 100%;
  z-index: 1;
}

.order-modal-header {
  align-items: flex-start;
  border-bottom: 1px solid var(--line-soft);
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  padding: 24px 28px 16px;
}

.order-modal-header h2 {
  color: var(--ink);
  font-family: var(--serif);
  font-size: 2.35rem;
  font-weight: 600;
  line-height: 1.05;
}

.order-modal-close {
  align-items: center;
  appearance: none;
  background: rgba(255, 250, 240, 0.24);
  border: 1px solid var(--ink);
  border-radius: 50%;
  color: var(--ink);
  cursor: pointer;
  display: inline-flex;
  flex: 0 0 auto;
  font-family: var(--sans);
  font-size: 1.5rem;
  height: 36px;
  justify-content: center;
  line-height: 1;
  padding: 0 0 2px;
  width: 36px;
}

.order-modal-close:hover {
  border-color: var(--blue);
  color: var(--blue);
}

.order-list {
  display: grid;
}

.order-option {
  align-items: center;
  border-top: 1px solid var(--line-soft);
  color: var(--ink);
  display: grid;
  gap: 18px;
  grid-template-columns: 44px minmax(0, 1fr) 20px;
  padding: 18px 28px;
}

.order-option:hover {
  background: rgba(255, 250, 240, 0.42);
}

.order-logo {
  align-items: center;
  aspect-ratio: 1;
  border-radius: 50%;
  display: inline-flex;
  font-size: 0.68rem;
  font-weight: 800;
  justify-content: center;
  line-height: 1;
  text-align: center;
  text-transform: none;
  width: 44px;
  box-shadow: 0 0 0 2px rgba(255, 250, 240, 0.72);
}

.order-logo-seamless {
  background: #e4002b;
  color: #ffffff;
  font-size: 0.44rem;
}

.order-logo-grubhub,
.order-logo-direct {
  background: #ff5a00;
  color: #ffffff;
}

.order-logo-direct {
  font-size: 0.6rem;
}

.order-logo-postmates {
  background: #152838;
  color: #ffffff;
}

.order-logo-ubereats {
  background: #06c167;
  color: #07140e;
  font-size: 0.6rem;
}

.order-option-copy {
  display: grid;
  gap: 0.4rem;
  min-width: 0;
}

.order-option-name {
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.65rem;
  font-weight: 600;
  line-height: 1.05;
}

.order-option-meta {
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.35;
}

.order-option-arrow {
  color: var(--brass);
  font-size: 2.3rem;
  line-height: 1;
}

.redirect-panel {
  margin: 96px auto;
  max-width: 720px;
  padding: 0 24px;
  text-align: center;
}

.site-footer {
  background: var(--paper);
  background-image:
    radial-gradient(ellipse at 50% 0%, rgba(255, 250, 237, 0.72) 0%, rgba(255, 250, 237, 0.12) 42%, rgba(255, 250, 237, 0) 72%),
    linear-gradient(90deg, #efe3cf 0%, #eadcc4 42%, #f0e4d0 100%);
  border-top: 1px solid var(--line-soft);
  color: var(--ink);
  margin-top: 56px;
}

.footer-shell {
  display: grid;
  gap: 28px;
  margin: 0 auto;
  max-width: var(--max);
  padding: 46px 24px;
}

.footer-top {
  align-items: center;
  display: grid;
  gap: 1.5rem;
  justify-items: center;
}

.footer-brand {
  display: inline-flex;
  justify-content: center;
}

.footer-brand img {
  height: auto;
  max-width: min(220px, 62vw);
}

.footer-meta {
  border-top: 1px solid var(--line-soft);
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1.5rem;
  justify-content: space-between;
  padding-top: 22px;
}

.footer-contact-links {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
}

.footer-credit {
  color: var(--muted);
  display: inline-flex;
  font-size: 0.88rem;
  font-weight: 700;
  justify-self: center;
  text-align: center;
}

.footer-credit:hover {
  color: var(--ink);
}

@media (max-width: 980px) {
  :root {
    --page-gutter: 24px;
    --module-padding-y: 72px;
  }

  .brand {
    max-width: 180px;
  }

  .brand img {
    height: 40px;
  }

  h1 {
    font-size: 5rem;
  }

  h2 {
    font-size: 3.35rem;
  }

  h3 {
    font-size: 2rem;
  }

  .page-hero {
    gap: 36px;
    grid-template-columns: 1fr;
  }

  .page-hero-copy {
    max-width: none;
  }

  .page-hero h1 {
    font-size: 4.5rem;
  }

  .page-hero-subtitle {
    font-size: 1.85rem;
  }

  .primary-nav,
  .nav-actions .button-ghost {
    display: none;
  }

  .nav-actions .mobile-toggle.button {
    display: inline-flex;
  }

  .home-hero {
    align-items: start;
    grid-template-columns: 1fr;
    grid-template-rows: calc(100svh - var(--header-height)) auto;
    min-height: auto;
    overflow: visible;
    padding: 0 0 32px;
  }

  .home-hero-photo {
    align-self: start;
    grid-column: 1;
    grid-row: 1;
    height: 100%;
    min-height: calc(100svh - var(--header-height));
    position: relative;
  }

  .home-hero-photo img {
    object-fit: cover;
    object-position: 75% top;
  }

  .home-story-panel {
    border: 1px solid rgba(80, 63, 42, 0.16);
    box-shadow: 0 18px 44px rgba(42, 30, 18, 0.18);
    grid-column: 1;
    grid-row: 2;
    justify-self: center;
    margin: 24px 16px 0;
    min-height: auto;
    padding: 28px 24px;
    width: min(100%, 420px);
  }

  .section-split,
  .section-split.wide-first,
  .menu-intro,
  .menu-columns,
  .quote-letter,
  .visit-grid {
    grid-template-columns: 1fr;
  }

  .section-split > :not(figure) {
    order: 1;
  }

  .section-split > figure {
    order: 2;
  }

  .feature-grid,
  .cards-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  :root {
    --page-gutter: 16px;
    --module-padding-y: 64px;
    --contained-module-padding: 22px;
    --home-mobile-photo-height: clamp(480px, 68svh, calc(100svh - var(--header-height)));
    --top-bar-height: 34px;
    --nav-height: 68px;
  }

  .utility-shell {
    gap: 0.9rem;
    justify-content: center;
    padding: 0 16px;
  }

  .utility-link {
    font-size: 0.68rem;
  }

  .nav-shell {
    padding: 0 16px;
  }

  .brand {
    max-width: 132px;
  }

  .brand img {
    height: 34px;
  }

  h1 {
    font-size: 3.35rem;
  }

  h2,
  .menu-section-header h2 {
    font-size: 2.35rem;
  }

  h3 {
    font-size: 1.7rem;
  }

  .lede {
    font-size: 1.1rem;
  }

  .button {
    min-height: 40px;
    padding: 0.65rem 0.85rem;
  }

  .mobile-menu {
    top: var(--header-height);
    max-height: calc(100svh - var(--header-height));
  }

  .nav-actions {
    gap: 0.45rem;
  }

  .home-hero {
    grid-template-rows: var(--home-mobile-photo-height) auto;
  }

  .home-hero-photo {
    min-height: var(--home-mobile-photo-height);
  }

  .home-story-inner {
    gap: 18px;
    justify-items: center;
    max-width: 280px;
  }

  .story-logo {
    justify-self: center;
    max-width: 48%;
    place-self: center;
    width: min(130px, 38vw);
  }

  .home-hero-photo img {
    object-position: 78% top;
  }

  .story-rule {
    width: 180px;
  }

  .story-heading {
    font-size: 1.05rem;
  }

  .story-copy {
    gap: 1rem;
  }

  .story-copy p {
    font-size: 1.02rem;
  }

  .section,
  .page-header,
  .page-hero {
    padding-left: var(--page-gutter);
    padding-right: var(--page-gutter);
  }

  .page-hero {
    gap: 28px;
  }

  .page-hero h1 {
    font-size: 3.15rem;
  }

  .page-hero-subtitle {
    font-size: 1.55rem;
  }

  .section {
    padding-bottom: var(--module-padding-y);
    padding-top: var(--module-padding-y);
  }

  .paper-panel,
  .ink-panel,
  .menu-shell,
  .gallery {
    padding: var(--contained-module-padding);
  }

  .menu-section-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .menu-columns {
    gap: 32px;
  }

  .menu-group.featured {
    padding: 16px;
  }

  .menu-item {
    grid-template-columns: 1fr;
  }

  .menu-item p,
  .price {
    grid-column: auto;
    grid-row: auto;
    justify-self: start;
  }

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

  .order-modal {
    padding: 12px;
  }

  .order-modal-panel {
    max-height: calc(100svh - 24px);
    max-width: 460px;
  }

  .order-modal-header {
    align-items: center;
    padding: 16px 18px 12px;
  }

  .order-modal-header h2 {
    font-size: 1.75rem;
  }

  .order-modal-close {
    font-size: 1.25rem;
    height: 32px;
    padding-bottom: 2px;
    width: 32px;
  }

  .order-option {
    gap: 12px;
    grid-template-columns: 36px minmax(0, 1fr) 16px;
    padding: 13px 18px;
  }

  .order-logo {
    font-size: 0.58rem;
    width: 36px;
  }

  .order-logo-seamless {
    font-size: 0.36rem;
  }

  .order-logo-direct,
  .order-logo-ubereats {
    font-size: 0.5rem;
  }

  .order-option-copy {
    gap: 0.25rem;
  }

  .order-option-name {
    font-size: 1.25rem;
  }

  .order-option-name + .order-option-meta {
    display: none;
  }

  .order-option-meta {
    font-size: 0.82rem;
    line-height: 1.25;
  }

  .order-option-arrow {
    font-size: 1.75rem;
  }
}

@media (max-width: 420px) {
  .brand {
    max-width: 110px;
  }

  .nav-actions .button {
    font-size: 0.72rem;
    min-height: 38px;
    padding: 0.55rem 0.7rem;
  }

  .nav-actions .mobile-toggle.button {
    aspect-ratio: 1;
    padding: 0;
    width: 38px;
  }

  .order-modal {
    padding: 10px;
  }

  .order-modal-panel {
    max-height: calc(100svh - 20px);
  }

  .order-modal-header {
    padding: 14px 16px 10px;
  }

  .order-option {
    gap: 10px;
    grid-template-columns: 34px minmax(0, 1fr) 14px;
    padding: 12px 16px;
  }

  .order-logo {
    width: 34px;
  }

  .order-option-name {
    font-size: 1.15rem;
  }

  .order-option-meta {
    font-size: 0.78rem;
  }
}

@media (max-width: 1100px) {
  .bar-menu-grid {
    gap: 24px 28px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .bar-block,
  .bar-block:first-child,
  .bar-block:last-child {
    border-left: 0;
    padding: 0;
  }

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

@media (min-width: 981px) and (max-width: 1180px) {
  .home-hero-photo img {
    object-position: 78% center;
  }
}

@media (max-width: 760px) {
  .menu-book {
    gap: 30px;
    padding-left: var(--page-gutter);
    padding-right: var(--page-gutter);
  }

  .menu-jump {
    justify-content: center;
    overflow-x: visible;
    padding-bottom: 12px;
  }

  .menu-jump a {
    flex: 0 0 auto;
  }

  .print-menu-page {
    border-radius: 6px;
    padding: 28px 18px;
  }

  .print-menu-page::before {
    inset: 18% 4%;
  }

  .print-menu-grid.two-column,
  .bar-menu-grid,
  .print-callout-grid.three,
  .print-list.two-up {
    grid-template-columns: 1fr;
  }

  .print-page-band {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .print-page-band .print-page-title {
    justify-self: center;
  }

  .print-page-band > span {
    font-size: 0.98rem;
  }

  .print-item,
  .print-table-row,
  .print-table-head {
    gap: 0.6rem;
  }

  .print-table-head,
  .print-table-row {
    grid-template-columns: minmax(0, 1fr) 48px 54px;
  }

  .greek-panel {
    border-width: 4px;
    padding: 18px;
  }
}

@media (max-width: 480px) {
  .print-menu-page {
    padding: 24px 14px;
  }

  .menu-shell .print-page-title {
    font-size: 1.75rem;
  }

  .print-block h3,
  .mid-title {
    font-size: 1.35rem;
  }

  .print-item {
    grid-template-columns: minmax(0, 1fr) minmax(36px, auto);
  }

  .print-item > span,
  .print-table-row > span,
  .print-table-head > span {
    white-space: normal;
  }

  .framed-feature,
  .kids-menu-frame {
    padding: 14px;
  }
}
