:root {
  --ink: #171612;
  --coal: #2b2a25;
  --paper: #fcfbf7;
  --white: #ffffff;
  --sage: #5c7e61;
  --leaf: #1f5a3b;
  --leaf-dark: #123421;
  --wood: #9a673c;
  --wood-dark: #56361f;
  --clay: #b65036;
  --gold: #c8a044;
  --mist: #eef1ea;
  --line: rgba(23, 22, 18, 0.14);
  --shadow: 0 28px 76px rgba(33, 29, 20, 0.16);
  --radius: 8px;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 18px 18px, rgba(92, 126, 97, 0.14) 0 1px, transparent 1px 34px),
    linear-gradient(135deg, rgba(238, 241, 234, 0.95), rgba(252, 251, 247, 0.95)),
    var(--paper);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

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

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

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

button,
input {
  font: inherit;
}

.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;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
  min-height: 76px;
  padding: 12px 56px;
  background: rgba(252, 251, 247, 0.9);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px);
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(252, 251, 247, 0.97);
  border-color: var(--line);
  box-shadow: 0 12px 36px rgba(23, 22, 18, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  color: var(--paper);
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(31, 90, 59, 0.92), rgba(18, 52, 33, 0.98)),
    var(--leaf);
  border: 1px solid rgba(18, 52, 33, 0.2);
  border-radius: var(--radius);
  box-shadow: 0 12px 24px rgba(18, 52, 33, 0.16);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.9rem;
  font-weight: 900;
}

.brand-name,
.brand-location {
  display: block;
}

.brand-name {
  font-size: 1.08rem;
  font-weight: 900;
}

.brand-location {
  color: var(--coal);
  font-size: 0.78rem;
  font-weight: 800;
}

.site-nav {
  justify-self: center;
  display: flex;
  gap: 8px;
  align-items: center;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 14px;
  color: rgba(23, 22, 18, 0.78);
  font-size: 0.92rem;
  font-weight: 800;
  border-radius: 999px;
}

.site-nav a.mobile-order {
  display: none;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--leaf-dark);
  background: rgba(92, 126, 97, 0.14);
  outline: none;
}

.header-order {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  color: var(--paper);
  font-weight: 900;
  background: var(--ink);
  border-radius: 999px;
  box-shadow: 0 14px 28px rgba(23, 22, 18, 0.15);
}

.header-order:hover,
.header-order:focus-visible {
  background: var(--leaf-dark);
  outline: none;
}

.nav-toggle {
  display: none;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 380px);
  align-items: end;
  gap: 48px;
  min-height: 690px;
  padding: 150px 72px 72px;
  overflow: hidden;
  color: var(--paper);
  background: #1f241d;
}

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

.hero-media {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0)),
    url("assets/chin-interior.png") center / cover;
  transform: scale(1.015);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(15, 20, 14, 0.9) 0%, rgba(15, 20, 14, 0.68) 43%, rgba(15, 20, 14, 0.22) 100%),
    linear-gradient(0deg, rgba(15, 20, 14, 0.7) 0%, rgba(15, 20, 14, 0) 46%);
}

.hero-content,
.hero-panel {
  position: relative;
  z-index: 2;
}

.hero-content {
  min-width: 0;
  max-width: 800px;
}

.hero-content::before {
  display: block;
  width: 220px;
  height: 12px;
  margin-bottom: 24px;
  content: "";
  background:
    linear-gradient(90deg, var(--gold) 0 18%, transparent 18% 24%, var(--gold) 24% 42%, transparent 42% 48%, var(--gold) 48% 66%, transparent 66% 72%, var(--gold) 72% 100%);
  border-radius: 999px;
  opacity: 0.95;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--clay);
  font-size: 0.77rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #e0c263;
}

.hero h1 {
  max-width: 11ch;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 7.4rem;
  line-height: 0.86;
  letter-spacing: 0;
  overflow-wrap: break-word;
}

.hero-copy {
  max-width: 640px;
  margin: 28px 0 0;
  color: rgba(255, 253, 248, 0.9);
  font-size: 1.22rem;
  overflow-wrap: break-word;
}

.hero-actions,
.visit-actions,
.section-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.hero-actions {
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  color: var(--ink);
  font-weight: 900;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease,
    border-color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  outline: none;
}

.button-primary {
  color: var(--paper);
  background: var(--leaf);
  box-shadow: 0 18px 36px rgba(18, 52, 33, 0.22);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--leaf-dark);
}

.button-secondary {
  color: var(--paper);
  background: rgba(252, 251, 247, 0.12);
  border-color: rgba(252, 251, 247, 0.36);
}

.button-outline {
  background: var(--white);
  border-color: var(--line);
  box-shadow: 0 14px 28px rgba(23, 22, 18, 0.08);
}

.button-doordash {
  color: var(--paper);
  background: var(--clay);
  box-shadow: 0 18px 36px rgba(182, 80, 54, 0.22);
}

.hero-panel {
  display: grid;
  gap: 1px;
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
  background: rgba(252, 251, 247, 0.32);
  border: 1px solid rgba(252, 251, 247, 0.32);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-panel > * {
  display: grid;
  gap: 4px;
  padding: 20px;
  background: rgba(13, 19, 14, 0.58);
  backdrop-filter: blur(16px);
}

.metric {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.2rem;
  font-weight: 900;
}

.metric-label {
  color: rgba(255, 253, 248, 0.72);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.metric-link:hover,
.metric-link:focus-visible {
  color: #e8d372;
  outline: none;
}

.service-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  background: var(--ink);
  color: var(--paper);
}

.service-strip div {
  padding: 24px 56px;
  border-right: 1px solid rgba(252, 251, 247, 0.14);
}

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

.service-strip strong,
.service-strip span {
  display: block;
}

.service-strip strong {
  font-size: 1rem;
}

.service-strip span {
  margin-top: 4px;
  color: rgba(252, 251, 247, 0.7);
  font-size: 0.92rem;
}

.section,
.photo-section,
.review-section,
.visit-section {
  padding: 92px 72px;
}

.section-intro {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(300px, 1fr);
  gap: 48px;
  align-items: center;
}

.story-photo {
  grid-row: 1 / span 2;
  margin: 0;
}

.story-photo img,
.feature-dish img,
.photo-tile img {
  height: 100%;
  object-fit: cover;
}

.story-photo img {
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

figcaption {
  margin-top: 10px;
  color: rgba(23, 22, 18, 0.62);
  font-size: 0.84rem;
  font-weight: 700;
}

.section-heading {
  max-width: 780px;
}

.section-heading h2,
.visit-copy h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 3rem;
  line-height: 1;
  letter-spacing: 0;
}

.story-copy {
  grid-column: 2;
  display: grid;
  gap: 16px;
  color: rgba(23, 22, 18, 0.78);
  font-size: 1.05rem;
}

.story-copy p {
  margin: 0;
}

.gallery-band {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1px;
  background: var(--ink);
}

.feature-dish {
  position: relative;
  min-height: 420px;
  margin: 0;
  overflow: hidden;
  background: var(--coal);
}

.feature-dish.large {
  min-height: 520px;
}

.feature-dish::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(0deg, rgba(11, 12, 9, 0.78) 0%, rgba(11, 12, 9, 0.04) 58%);
}

.feature-dish figcaption {
  position: absolute;
  right: 24px;
  bottom: 24px;
  left: 24px;
  z-index: 1;
  display: grid;
  gap: 5px;
  margin: 0;
  color: var(--paper);
}

.feature-dish strong {
  font-size: 1.08rem;
}

.feature-dish span {
  color: rgba(252, 251, 247, 0.78);
}

.menu-section {
  background: var(--paper);
}

.menu-tools {
  display: grid;
  gap: 18px;
  margin-top: 34px;
}

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

.menu-summary div {
  min-width: 0;
  padding: 16px;
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 5px solid var(--gold);
  border-radius: var(--radius);
  box-shadow: 0 12px 28px rgba(23, 22, 18, 0.06);
}

.menu-summary strong,
.menu-summary span {
  display: block;
}

.menu-summary strong {
  font-size: 0.84rem;
  font-weight: 950;
  text-transform: uppercase;
}

.menu-summary span {
  margin-top: 4px;
  color: rgba(23, 22, 18, 0.68);
  font-size: 0.92rem;
  font-weight: 750;
}

.search-wrap input {
  width: min(100%, 520px);
  min-height: 54px;
  padding: 0 18px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 24px rgba(23, 22, 18, 0.06);
}

.search-wrap input:focus-visible {
  border-color: var(--leaf);
  outline: 3px solid rgba(92, 126, 97, 0.18);
}

.filter-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill {
  min-height: 40px;
  padding: 0 16px;
  color: rgba(23, 22, 18, 0.78);
  font-weight: 900;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 999px;
  cursor: pointer;
}

.pill:hover,
.pill:focus-visible,
.pill.is-active {
  color: var(--paper);
  background: var(--leaf);
  border-color: var(--leaf);
  outline: none;
}

.menu-grid {
  display: grid;
  gap: 22px;
  margin-top: 30px;
}

.menu-category {
  display: grid;
  gap: 16px;
  padding: 24px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(238, 241, 234, 0.84)),
    var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 42px rgba(23, 22, 18, 0.07);
}

.menu-category-feature {
  border-color: rgba(200, 160, 68, 0.44);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(248, 241, 220, 0.72)),
    var(--white);
}

.menu-category[hidden] {
  display: none;
}

.menu-category-heading {
  display: grid;
  gap: 5px;
  max-width: 760px;
}

.menu-category-heading h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  line-height: 1;
}

.menu-category-heading p:not(.dish-category) {
  margin: 0;
  color: rgba(23, 22, 18, 0.66);
  font-weight: 700;
}

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

.menu-item {
  position: relative;
  display: flex;
  min-height: 132px;
  justify-content: space-between;
  gap: 18px;
  padding: 46px 18px 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 28px rgba(23, 22, 18, 0.05);
}

.menu-item::before {
  position: absolute;
  top: 14px;
  left: 14px;
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 9px;
  color: var(--leaf-dark);
  content: attr(data-menu-label);
  font-size: 0.66rem;
  font-weight: 950;
  line-height: 1;
  text-transform: uppercase;
  background: rgba(92, 126, 97, 0.14);
  border: 1px solid rgba(92, 126, 97, 0.25);
  border-radius: 999px;
}

.menu-item[data-menu-source="site"]::before {
  color: var(--wood-dark);
  background: rgba(200, 160, 68, 0.16);
  border-color: rgba(200, 160, 68, 0.34);
}

.menu-item-photo {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr) auto;
  align-items: start;
}

.menu-item-photo img {
  width: 92px;
  height: 92px;
  object-fit: cover;
  border-radius: var(--radius);
}

.menu-item.is-hidden {
  display: none;
}

.dish-category {
  margin: 0 0 8px;
  color: var(--leaf);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.menu-item h4 {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.15;
}

.menu-item p {
  margin: 10px 0 0;
  color: rgba(23, 22, 18, 0.68);
}

.menu-item > span {
  flex: 0 0 auto;
  align-self: flex-start;
  color: var(--wood-dark);
  font-weight: 950;
  white-space: nowrap;
}

.menu-empty {
  margin-top: 24px;
  color: var(--coal);
  font-weight: 800;
}

.section-cta {
  margin-top: 34px;
}

.photo-section {
  color: var(--paper);
  background:
    linear-gradient(135deg, rgba(18, 52, 33, 0.92), rgba(23, 22, 18, 0.96)),
    var(--leaf-dark);
}

.photo-section .eyebrow {
  color: #e0c263;
}

.photo-section .section-heading h2 {
  color: var(--paper);
}

.photo-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  grid-auto-rows: 250px;
  gap: 14px;
  margin-top: 36px;
}

.photo-tile {
  position: relative;
  display: block;
  width: 100%;
  min-width: 0;
  padding: 0;
  overflow: hidden;
  background: var(--coal);
  border: 1px solid rgba(252, 251, 247, 0.18);
  border-radius: var(--radius);
  cursor: zoom-in;
}

.photo-caption {
  position: absolute;
  right: 14px;
  bottom: 14px;
  max-width: calc(100% - 28px);
  padding: 8px 11px;
  color: var(--paper);
  font-size: 0.78rem;
  font-weight: 950;
  line-height: 1;
  text-transform: uppercase;
  background: rgba(13, 46, 29, 0.84);
  border: 1px solid rgba(252, 251, 247, 0.3);
  border-radius: 999px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.25);
}

.photo-tile:hover,
.photo-tile:focus-visible {
  outline: 3px solid rgba(224, 194, 99, 0.45);
}

.photo-tile.tall {
  grid-row: span 2;
}

.photo-tile.wide {
  grid-column: span 2;
}

.review-section {
  background:
    linear-gradient(180deg, rgba(252, 251, 247, 0.92), rgba(238, 241, 234, 0.94)),
    var(--mist);
}

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

.reviews blockquote {
  min-height: 230px;
  margin: 0;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 42px rgba(23, 22, 18, 0.08);
}

.reviews blockquote::before {
  display: block;
  margin-bottom: 18px;
  color: var(--gold);
  content: "5.0";
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  font-weight: 900;
}

.reviews p {
  margin: 0;
  color: rgba(23, 22, 18, 0.76);
  font-size: 1.02rem;
}

.reviews cite {
  display: block;
  margin-top: 18px;
  color: var(--leaf-dark);
  font-style: normal;
  font-weight: 900;
}

.visit-section {
  display: grid;
  grid-template-columns: minmax(300px, 1fr) minmax(280px, 0.72fr);
  gap: 18px;
  align-items: stretch;
  background: var(--paper);
}

.visit-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 430px;
  padding: 40px;
  color: var(--paper);
  background:
    linear-gradient(135deg, rgba(23, 22, 18, 0.82), rgba(18, 52, 33, 0.88)),
    url("assets/storefront.png") center / cover;
  border-radius: var(--radius);
  overflow: hidden;
}

.visit-copy .eyebrow {
  color: #e0c263;
}

.visit-copy p {
  max-width: 650px;
  color: rgba(252, 251, 247, 0.82);
}

.hours-panel,
.map-panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 42px rgba(23, 22, 18, 0.08);
}

.hours-panel {
  padding: 28px;
}

.open-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  max-width: 100%;
  margin-bottom: 22px;
  color: var(--wood-dark);
  font-size: 0.88rem;
  font-weight: 900;
}

.status-dot {
  width: 10px;
  height: 10px;
  flex: 0 0 auto;
  background: var(--clay);
  border-radius: 999px;
  box-shadow: 0 0 0 5px rgba(182, 80, 54, 0.14);
}

.hours-panel h3 {
  margin: 0 0 18px;
  font-size: 1.2rem;
}

.contact-list {
  display: grid;
  gap: 12px;
  margin: 0;
}

.contact-list div {
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.contact-list div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.contact-list dt {
  color: rgba(23, 22, 18, 0.56);
  font-weight: 900;
}

.contact-list dd {
  margin: 0;
  color: var(--ink);
  font-weight: 800;
}

.contact-list a {
  color: var(--leaf);
}

.map-panel {
  grid-column: 1 / -1;
  min-height: 410px;
  overflow: hidden;
}

.map-panel iframe {
  display: block;
  width: 100%;
  height: 410px;
  border: 0;
}

.phone-modal,
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  padding: 20px;
}

.phone-modal[hidden],
.lightbox[hidden] {
  display: none;
}

.phone-modal-backdrop,
.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(11, 12, 9, 0.68);
  border: 0;
}

.phone-modal-card,
.lightbox-frame {
  position: relative;
  z-index: 1;
  width: min(100%, 460px);
  background: var(--paper);
  border-radius: var(--radius);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
}

.phone-modal-card {
  padding: 34px;
}

.phone-modal-card h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.6rem;
  line-height: 1;
}

.phone-modal-card p:not(.eyebrow) {
  color: rgba(23, 22, 18, 0.7);
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 40px;
  height: 40px;
  padding: 0;
  background: rgba(23, 22, 18, 0.08);
  border: 0;
  border-radius: 999px;
  cursor: pointer;
}

.modal-close::before,
.modal-close::after {
  position: absolute;
  top: 19px;
  left: 10px;
  width: 20px;
  height: 2px;
  content: "";
  background: var(--ink);
}

.modal-close::before {
  transform: rotate(45deg);
}

.modal-close::after {
  transform: rotate(-45deg);
}

.lightbox-frame {
  width: min(100%, 940px);
  padding: 12px;
  background: var(--ink);
}

.lightbox-frame img {
  max-height: 80vh;
  object-fit: contain;
  border-radius: var(--radius);
}

.lightbox-frame .modal-close {
  top: -16px;
  right: -16px;
  background: var(--paper);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 32px 72px;
  color: var(--paper);
  background: var(--ink);
}

.site-footer strong,
.site-footer span {
  display: block;
}

.site-footer span {
  margin-top: 4px;
  color: rgba(252, 251, 247, 0.68);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  justify-content: flex-end;
}

.footer-links a {
  color: rgba(252, 251, 247, 0.84);
  font-weight: 800;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: #e0c263;
  outline: none;
}

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

@media (max-width: 1180px) {
  .site-header,
  .section,
  .photo-section,
  .review-section,
  .visit-section,
  .site-footer {
    padding-right: 36px;
    padding-left: 36px;
  }

  .hero {
    padding-right: 36px;
    padding-left: 36px;
  }

  .hero h1 {
    font-size: 5.6rem;
  }

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

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
  }

  .nav-toggle {
    position: relative;
    z-index: 22;
    display: grid;
    width: 46px;
    height: 46px;
    place-items: center;
    padding: 0;
    background: var(--ink);
    border: 0;
    border-radius: 999px;
  }

  .nav-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--paper);
    transition: transform 180ms ease;
  }

  .nav-toggle span + span {
    margin-top: -12px;
  }

  .nav-open .nav-toggle span:first-child {
    transform: translateY(5px) rotate(45deg);
  }

  .nav-open .nav-toggle span:last-child {
    transform: translateY(-5px) rotate(-45deg);
  }

  .site-nav {
    position: fixed;
    inset: 76px 0 auto;
    z-index: 21;
    display: none;
    padding: 18px 36px 26px;
    background: rgba(252, 251, 247, 0.98);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 28px 64px rgba(23, 22, 18, 0.12);
  }

  .nav-open .site-nav {
    display: grid;
    justify-items: start;
  }

  .site-nav a.mobile-order {
    display: inline-flex;
  }

  .header-order {
    display: none;
  }

  .brand {
    justify-self: start;
  }

  .hero {
    grid-template-columns: minmax(0, 1fr);
    min-height: 640px;
    padding-top: 120px;
    padding-bottom: 42px;
  }

  .hero h1 {
    max-width: 9ch;
    font-size: 4.5rem;
  }

  .hero-panel {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: 520px;
  }

  .hero-panel > * {
    padding: 14px;
    min-width: 0;
  }

  .metric {
    font-size: 1.7rem;
  }

  .metric-label {
    font-size: 0.68rem;
  }

  .service-strip,
  .section-intro,
  .menu-summary,
  .visit-section {
    grid-template-columns: 1fr;
  }

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

  .feature-dish,
  .feature-dish.large {
    min-height: 330px;
  }

  .story-photo,
  .story-copy {
    grid-row: auto;
    grid-column: auto;
  }

  .service-strip div {
    padding: 22px 36px;
    border-right: 0;
    border-bottom: 1px solid rgba(252, 251, 247, 0.14);
  }

  .photo-grid {
    grid-template-columns: 1fr 1fr;
  }

  .photo-tile.tall,
  .photo-tile.wide {
    grid-row: span 1;
    grid-column: span 1;
  }

  .map-panel {
    grid-column: auto;
  }

  .site-footer {
    display: grid;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .site-header,
  .section,
  .photo-section,
  .review-section,
  .visit-section,
  .site-footer {
    padding-right: 18px;
    padding-left: 18px;
  }

  .site-header {
    gap: 12px;
    min-height: 70px;
  }

  .brand-mark {
    width: 48px;
    height: 48px;
    font-size: 0.75rem;
  }

  .brand-name {
    font-size: 0.98rem;
  }

  .hero {
    min-height: auto;
    padding: 92px 18px 28px;
  }

  .hero h1 {
    max-width: 10ch;
    font-size: 3rem;
  }

  .hero-copy {
    font-size: 1.02rem;
    line-height: 1.45;
    overflow-wrap: anywhere;
  }

  .hero-panel {
    display: none;
  }

  .hero-content,
  .hero-copy,
  .hero-actions {
    width: 100%;
    max-width: 100%;
  }

  .hero-panel > * {
    padding: 12px 10px;
  }

  .metric {
    font-size: 1.16rem;
  }

  .metric-label {
    font-size: 0.58rem;
    overflow-wrap: anywhere;
  }

  .hero-content::before {
    width: 170px;
  }

  .button {
    width: 100%;
    min-height: 54px;
  }

  .section-heading h2,
  .visit-copy h2 {
    font-size: 2.28rem;
  }

  .feature-dish,
  .feature-dish.large {
    min-height: 320px;
  }

  .gallery-band {
    grid-template-columns: 1fr;
  }

  .menu-grid,
  .menu-category-grid,
  .reviews,
  .photo-grid {
    grid-template-columns: 1fr;
  }

  .menu-item {
    display: grid;
    min-height: 0;
  }

  .menu-item-photo {
    grid-template-columns: 86px minmax(0, 1fr);
  }

  .menu-item-photo > span {
    grid-column: 1 / -1;
  }

  .menu-item-photo img {
    width: 86px;
    height: 86px;
  }

  .menu-item > span {
    justify-self: start;
    white-space: normal;
  }

  .photo-grid {
    grid-auto-rows: 260px;
  }

  .visit-copy {
    min-height: 390px;
    padding: 26px;
  }

  .contact-list div {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .phone-modal-card h2 {
    font-size: 2rem;
  }

  .map-panel iframe {
    height: 320px;
  }

  body {
    padding-bottom: calc(74px + env(safe-area-inset-bottom));
  }

  .mobile-action-bar {
    position: fixed;
    right: 10px;
    bottom: 10px;
    left: 10px;
    z-index: 45;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    padding: 8px;
    padding-bottom: calc(8px + env(safe-area-inset-bottom));
    background: rgba(23, 22, 18, 0.92);
    border: 1px solid rgba(252, 251, 247, 0.16);
    border-radius: var(--radius);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.24);
    backdrop-filter: blur(18px);
  }

  .mobile-action-bar a {
    display: grid;
    min-height: 48px;
    place-items: center;
    color: var(--paper);
    font-weight: 950;
    background: rgba(252, 251, 247, 0.1);
    border-radius: var(--radius);
  }

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

  .mobile-action-bar a:nth-child(2) {
    background: var(--leaf);
  }

  .mobile-action-bar a:nth-child(3) {
    background: var(--clay);
  }
}
