/* =========================================================
   Isabella Café — handcrafted stylesheet
   Palette: black, white and controlled greys to match the logo.
   No shadcn. No tailwind defaults.
   ========================================================= */

:root {
  --paper:        #FFFFFF;
  --paper-soft:   #F5F5F5;
  --paper-deep:   #E8E8E8;
  --ink:          #050505;
  --ink-soft:     #454545;
  --olive:        #111111;
  --olive-deep:   #000000;
  --sage:         #737373;
  --terracotta:   #050505;
  --terracotta-deep: #242424;
  --gold:         #FFFFFF;
  --line:         #D8D8D8;

  --serif: "Fraunces", "Cormorant Garamond", Georgia, serif;
  --sans:  "Inter", "Helvetica Neue", Arial, sans-serif;

  --container: 1240px;
  --gutter:    clamp(1.25rem, 4vw, 2.5rem);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  background: #000;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  font-weight: 400;
  font-feature-settings: "ss01", "cv11";
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a   { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.01em;
  margin: 0 0 0.5em;
  line-height: 1.05;
  font-variation-settings: "SOFT" 30, "WONK" 0;
}

h1 {
  font-size: clamp(2.6rem, 6.5vw, 5.4rem);
  font-weight: 350;
  letter-spacing: -0.02em;
  overflow-wrap: break-word;
}

h2 {
  font-size: clamp(2rem, 4.2vw, 3.4rem);
  font-weight: 380;
}

h3 {
  font-size: clamp(1.4rem, 2.2vw, 1.9rem);
  font-weight: 400;
}

p { margin: 0 0 1em; max-width: 62ch; }

.eyebrow {
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--olive);
  margin: 0 0 1.25rem;
}

.eyebrow::before {
  content: "";
  display: inline-block;
  width: 26px;
  height: 1px;
  background: var(--olive);
  vertical-align: middle;
  margin-right: 12px;
  transform: translateY(-2px);
}

.italicize { font-style: italic; font-feature-settings: "ss01"; }

/* ---------- Layout helpers ---------- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

.section { padding: clamp(4rem, 9vw, 7rem) 0; }

/* ---------- Top bar ---------- */
.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #000;
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
}

.brand {
  font-variation-settings: "SOFT" 100;
  display: flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand img {
  width: 220px;
  height: 58px;
  object-fit: contain;
  object-position: left center;
  display: block;
}

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

.nav a {
  font-size: 0.95rem;
  position: relative;
  padding: 6px 0;
  color: var(--ink-soft);
  transition: color 0.2s ease;
}

.nav a:hover, .nav a.is-active { color: var(--ink); }

.topbar .nav a {
  color: rgba(255, 255, 255, 0.72);
}

.topbar .nav a:hover,
.topbar .nav a.is-active {
  color: #fff;
}

.nav a.is-active::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 50%;
  width: 22px;
  height: 1px;
  transform: translateX(-50%);
  background: currentColor;
}

.cta {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.75rem 1.2rem;
  border-radius: 999px;
  background: var(--ink);
  color: var(--paper);
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  border: 1px solid var(--ink);
  transition: transform 0.2s ease, background 0.2s ease;
}

.cta:hover { background: var(--olive-deep); transform: translateY(-1px); }

.cta--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.cta--ghost:hover { background: var(--ink); color: var(--paper); }

.cta--terra {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--paper);
}
.cta--terra:hover { background: var(--terracotta-deep); }

.topbar .nav a.cta--header,
.topbar .nav a.cta--header:hover,
.topbar .nav a.cta--header:focus-visible {
  background: transparent;
  border-color: rgba(255,255,255,0.45);
  color: #fff;
  letter-spacing: 0.02em;
  padding-inline: 1rem;
}

.topbar .nav a.cta--header:hover {
  background: #fff;
  border-color: #fff;
  color: #000;
}

.cta__arrow { transition: transform 0.2s ease; }
.cta:hover .cta__arrow { transform: translateX(3px); }

.menu-toggle {
  display: none;
  background: none;
  border: 0;
  width: 38px;
  height: 38px;
  padding: 0;
  position: relative;
}
.menu-toggle span {
  position: absolute; left: 8px; right: 8px; height: 1.5px;
  background: var(--ink); transition: transform 0.2s ease, opacity 0.2s ease;
}
.topbar .menu-toggle span { background: #fff; }
.menu-toggle span:nth-child(1) { top: 14px; }
.menu-toggle span:nth-child(2) { top: 22px; }
.menu-toggle.is-open span:nth-child(1) { transform: translateY(4px) rotate(45deg); }
.menu-toggle.is-open span:nth-child(2) { transform: translateY(-4px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: clamp(2rem, 4vw, 3.5rem) 0 clamp(3rem, 6vw, 5rem);
  overflow: hidden;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}

.hero__text { max-width: 620px; }

.hero h1 .accent {
  font-style: italic;
  font-weight: 350;
  color: var(--terracotta);
  font-variation-settings: "SOFT" 80, "WONK" 1;
}

.hero__lede {
  font-size: 1.18rem;
  color: var(--ink-soft);
  margin: 1.75rem 0 2.25rem;
  max-width: 52ch;
  line-height: 1.55;
}

.hero__meta {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
  margin-top: 2rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--line);
  font-size: 0.92rem;
}

.hero__meta div span:first-child {
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.7rem;
  color: var(--olive);
  margin-bottom: 4px;
}

.hero__actions {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
}

.hero__media {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 30px 60px -30px rgba(0,0,0,0.35);
}

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

/* ---------- Marquee strip ---------- */
.strip {
  background: #000;
  color: var(--paper);
  padding: 1.1rem 0;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.1rem;
  overflow: hidden;
  white-space: nowrap;
}
.strip__track {
  display: inline-flex;
  gap: 3rem;
  animation: marquee 70s linear infinite;
}
.strip__track span { display: inline-flex; align-items: center; gap: 3rem; }
.strip__dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #fff; display: inline-block;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ---------- Story / Two column ---------- */
.story__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: start;
}

.story__images {
  position: relative;
  aspect-ratio: 1 / 1;
}
.story__images img {
  position: absolute;
  width: 70%;
  border-radius: 4px;
  object-fit: cover;
  box-shadow: 0 20px 40px -25px rgba(0,0,0,0.4);
}
.story__images img:first-child {
  top: 0; left: 0;
  aspect-ratio: 3 / 4;
}
.story__images img:last-child {
  bottom: 0; right: 0;
  aspect-ratio: 4 / 3;
  width: 62%;
  border: 8px solid var(--paper);
}

.story h2 .accent {
  font-style: italic;
  color: var(--terracotta);
  font-variation-settings: "WONK" 1;
}

.story p { font-size: 1.06rem; }

.signature {
  margin-top: 2rem;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--olive);
}

/* ---------- Featured items ---------- */
.featured {
  background: var(--paper-soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.featured__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.featured__head h2 { margin: 0; max-width: 18ch; }

.featured__head p {
  max-width: 38ch;
  color: var(--ink-soft);
  margin: 0;
}

.featured__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.dish {
  position: relative;
  display: flex;
  flex-direction: column;
}
.dish__media {
  aspect-ratio: 4 / 5;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 1.25rem;
  background: var(--paper-deep);
}
.dish__media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.8s ease;
}
.dish:hover .dish__media img { transform: scale(1.04); }

.dish__tag {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.dish h3 {
  margin: 0 0 0.4rem;
  font-size: 1.45rem;
}

.dish__desc {
  color: var(--ink-soft);
  margin: 0 0 0.9rem;
  font-size: 0.97rem;
  line-height: 1.55;
}

.dish__price {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--olive-deep);
}

/* ---------- Day-parts ---------- */
.dayparts__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.daypart {
  padding: 2.2rem 1.75rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 6px;
  position: relative;
  overflow: hidden;
}
.daypart::before {
  content: attr(data-time);
  position: absolute;
  top: 1.4rem; right: 1.4rem;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--olive);
}
.daypart h3 {
  font-size: 1.7rem;
  margin: 0 0 0.5rem;
  font-style: italic;
  font-variation-settings: "WONK" 1, "SOFT" 60;
}
.daypart h3 .num {
  font-family: var(--sans);
  font-style: normal;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: var(--terracotta);
  display: block;
  margin-bottom: 0.65rem;
  font-weight: 500;
}
.daypart p { color: var(--ink-soft); font-size: 0.97rem; margin-bottom: 0; }
.daypart ul {
  margin: 1.2rem 0 0;
  padding: 0;
  list-style: none;
  font-size: 0.92rem;
  color: var(--ink-soft);
}
.daypart li {
  padding: 0.5rem 0;
  border-top: 1px dashed rgba(0,0,0,0.15);
  display: flex; justify-content: space-between; gap: 1rem;
}
.daypart li:first-child { border-top: 0; }
.daypart li b { font-weight: 500; color: var(--ink); }

/* ---------- Reviews ---------- */
.reviews { background: var(--ink); color: var(--paper); }
.reviews .eyebrow { color: var(--gold); }
.reviews .eyebrow::before { background: var(--gold); }

.reviews__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 2.25rem;
}
.reviews__head h2 {
  color: var(--paper);
  margin: 0;
  max-width: 16ch;
}
.reviews__carousel {
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  padding: 0 0 1.2rem;
  scroll-snap-type: x mandatory;
  scrollbar-color: rgba(255,255,255,0.55) rgba(255,255,255,0.12);
}
.reviews__carousel::-webkit-scrollbar { height: 8px; }
.reviews__carousel::-webkit-scrollbar-track { background: rgba(255,255,255,0.12); }
.reviews__carousel::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.55); }
.review-card {
  flex: 0 0 calc((100% - 1.25rem) / 2.16);
  min-height: 280px;
  margin: 0;
  padding: clamp(1.5rem, 3vw, 2.25rem);
  border: 1px solid rgba(255,255,255,0.24);
  border-radius: 6px;
  background: rgba(255,255,255,0.06);
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.review__stars {
  color: #fff;
  letter-spacing: 0.2em;
  font-size: 0.9rem;
  margin-bottom: 0.9rem;
}
.review-card p {
  font-family: var(--serif);
  font-size: clamp(1.45rem, 2.4vw, 2.15rem);
  line-height: 1.22;
  font-style: italic;
  color: var(--paper);
  font-variation-settings: "SOFT" 50;
  margin: 0;
}
.review-card cite {
  font-style: normal;
  font-family: var(--sans);
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  display: block;
  margin-top: 1.25rem;
}
.reviews__hint {
  margin-top: 0.4rem;
  color: rgba(255,255,255,0.58);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

/* ---------- Visit / Hours ---------- */
.visit__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: stretch;
}

.hours {
  display: grid;
  grid-template-columns: auto 1fr;
  row-gap: 0.85rem;
  column-gap: 2rem;
  margin: 1.75rem 0 2rem;
  font-size: 1rem;
}
.hours dt {
  font-family: var(--serif);
  font-style: italic;
  color: var(--ink-soft);
}
.hours dd { margin: 0; font-feature-settings: "tnum"; }

.contact-block {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 0.4rem;
  font-size: 0.95rem;
}
.contact-block a:hover { color: var(--terracotta); }
.contact-block .label {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--olive);
}

.map-wrap {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  height: clamp(360px, 52vw, 560px);
  border: 1px solid var(--line);
}
.map-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.map-wrap--visit {
  min-height: 520px;
}

/* ---------- Footer ---------- */
.footer {
  background: #000;
  color: var(--paper);
  border-top: 1px solid #000;
  padding: 4.5rem 0 calc(2rem + 2px);
  margin-bottom: -2px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}
.footer h4 {
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  font-weight: 600;
}
.footer ul { list-style: none; padding: 0; margin: 0; font-size: 0.95rem; line-height: 2; }
.footer a:hover { color: var(--gold); }
.footer__brand h3 {
  font-family: var(--serif);
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
  font-style: italic;
  font-variation-settings: "WONK" 1;
}
.footer__brand p { font-size: 0.95rem; color: rgba(255,255,255,0.75); max-width: 32ch; }

.footer__base {
  border-top: 0;
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.83rem;
  color: rgba(255,255,255,0.6);
}

/* =========================================================
   MENU PAGE
   ========================================================= */

.menu-hero {
  padding: clamp(3rem, 6vw, 5rem) 0 clamp(2rem, 4vw, 3rem);
  border-bottom: 1px solid var(--line);
}
.menu-hero__grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 3rem;
  align-items: end;
}
.menu-hero h1 { margin: 0; font-size: clamp(2.4rem, 5.5vw, 4.6rem); }
.menu-hero h1 em {
  color: var(--terracotta);
  font-variation-settings: "WONK" 1;
}
.menu-hero p {
  font-size: 1.05rem;
  color: var(--ink-soft);
  max-width: 42ch;
}
.menu-hero__note {
  background: var(--paper-soft);
  border-left: 2px solid var(--terracotta);
  padding: 1rem 1.25rem;
  font-size: 0.88rem;
  color: var(--ink-soft);
  font-style: italic;
  font-family: var(--serif);
  margin-top: 1.5rem;
  max-width: 50ch;
}

/* Category strip */
.cat-nav {
  position: sticky;
  top: 78px;
  z-index: 30;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  padding: 0.9rem 0;
}
.cat-nav__inner {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.cat-nav__inner::-webkit-scrollbar { display: none; }
.cat-nav a {
  flex-shrink: 0;
  font-size: 0.83rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.55rem 1.05rem;
  border-radius: 999px;
  color: var(--ink-soft);
  border: 1px solid transparent;
  transition: all 0.2s ease;
}
.cat-nav a:hover { color: var(--ink); border-color: var(--line); }
.cat-nav a.is-current {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}

/* Menu category section */
.menu-cat { padding: clamp(3.5rem, 7vw, 5.5rem) 0; }
.menu-cat + .menu-cat { border-top: 1px solid var(--line); }

.menu-cat__head {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  align-items: end;
  margin-bottom: 3rem;
}
.menu-cat__head h2 {
  margin: 0;
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
}
.menu-cat__head h2 em {
  color: var(--terracotta);
  font-variation-settings: "WONK" 1;
}
.menu-cat__head p {
  margin: 0;
  color: var(--ink-soft);
  max-width: 50ch;
  font-size: 1rem;
}

/* Item card with image */
.items-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem 2rem;
}
.items-grid--2 { grid-template-columns: repeat(2, 1fr); }
.items-grid--menu {
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem 1.35rem;
}

.item-card { display: flex; flex-direction: column; }
.item-card--menu {
  border: 1px solid var(--line);
  background: var(--paper);
  padding: 0.8rem;
  border-radius: 6px;
}
.item-card__media {
  aspect-ratio: 4 / 3;
  border-radius: 4px;
  overflow: hidden;
  background: var(--paper-soft);
  margin-bottom: 1.1rem;
  position: relative;
}
.item-card--menu .item-card__media {
  aspect-ratio: 1 / 1;
  background: #f2f2f2;
}
.item-card__media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.7s ease;
}
.item-card:hover .item-card__media img { transform: scale(1.05); }

.item-card__badge {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--paper);
  color: var(--terracotta);
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
}

.item-card__row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 0.35rem;
}
.item-card__row h3 {
  font-size: 1.18rem;
  margin: 0;
  font-weight: 450;
  font-variation-settings: "SOFT" 40;
}
.item-card__price {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.08rem;
  color: var(--olive);
  white-space: nowrap;
}
.item-card__desc {
  color: var(--ink-soft);
  font-size: 0.92rem;
  line-height: 1.55;
  margin: 0;
}
.item-card--menu .item-card__desc {
  font-size: 0.86rem;
}

/* Two-column price list (drinks, wine) */
.price-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 3rem;
}
.price-list dl { margin: 0; }
.price-list dt {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.8rem 0;
  border-bottom: 1px dotted rgba(0,0,0,0.18);
  font-size: 0.97rem;
  align-items: baseline;
}
.price-list dt span:first-child { color: var(--ink); }
.price-list dt span:last-child {
  font-family: var(--serif);
  font-style: italic;
  color: var(--olive);
  white-space: nowrap;
}
.price-list dd {
  margin: 0;
  padding: 0 0 0.8rem;
  font-size: 0.85rem;
  color: var(--ink-soft);
  border-bottom: 1px dotted rgba(0,0,0,0.18);
}

/* Category lead with image */
.cat-lead {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 2.5rem;
  align-items: center;
  margin-bottom: 3rem;
  background: var(--paper-soft);
  padding: 2rem;
  border-radius: 4px;
}
.cat-lead__media {
  aspect-ratio: 5 / 4;
  border-radius: 4px;
  overflow: hidden;
}
.cat-lead__media img { width: 100%; height: 100%; object-fit: cover; }

/* Allergy strip */
.allergen {
  background: var(--paper-deep);
  padding: 1.5rem 0;
  text-align: center;
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--ink-soft);
  border-top: 1px solid var(--line);
}

/* =========================================================
   VISIT PAGE
   ========================================================= */
.visit-hero {
  padding: clamp(3rem, 6vw, 5rem) 0 clamp(2rem, 4vw, 3.5rem);
}
.visit-hero h1 em {
  color: var(--terracotta);
  font-variation-settings: "WONK" 1;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.info-card {
  padding: 2rem;
  background: var(--paper-soft);
  border-radius: 4px;
}
.info-card h3 {
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 1rem;
  font-weight: 600;
}
.info-card p { font-family: var(--serif); font-size: 1.15rem; margin: 0; line-height: 1.4; }
.info-card a { border-bottom: 1px solid var(--line); }
.info-card a:hover { color: var(--terracotta); border-color: var(--terracotta); }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 980px) {
  .hero__grid,
  .story__grid,
  .visit__grid,
  .menu-hero__grid,
  .menu-cat__head,
  .cat-lead { grid-template-columns: 1fr; }

  .featured__grid,
  .dayparts__grid,
  .info-grid,
  .items-grid,
  .items-grid--2,
  .items-grid--menu,
  .footer__grid { grid-template-columns: repeat(2, 1fr); }

  .review-card { flex-basis: min(520px, 76vw); }

  .price-list { grid-template-columns: 1fr; }

  .hero__media { max-width: 520px; margin: 0 auto; }
  .story__images { max-width: 520px; margin: 0 auto; }

  .nav { display: none; }
  .nav.is-open {
    display: flex;
    position: absolute;
    top: 78px; left: 0; right: 0;
    background: #000;
    flex-direction: column;
    align-items: flex-start;
    padding: 1.5rem var(--gutter);
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    gap: 1rem;
  }
  .menu-toggle { display: block; }
  .cta--header { display: none; }
  .nav.is-open .cta--header { display: inline-flex; }
}

@media (max-width: 760px) {
  h2 {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .section {
    padding: 3.75rem 0;
  }

  .hero__text,
  .featured__head,
  .reviews__head,
  .visit-hero .container,
  .menu-hero,
  .menu-cat__head {
    text-align: center;
  }

  .hero__text,
  .hero__lede,
  .featured__head p,
  .visit-hero p,
  .menu-hero p,
  .menu-hero__note,
  .reviews__head h2 {
    margin-left: auto;
    margin-right: auto;
  }

  .hero__actions {
    justify-content: center;
  }

  .hero__meta {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.8rem;
    text-align: center;
    margin-top: 1.55rem;
    padding-top: 1.25rem;
  }

  .hero__meta div {
    min-width: 0;
  }

  .hero__meta div span:last-child {
    display: block;
    font-size: 0.86rem;
    line-height: 1.35;
    overflow-wrap: anywhere;
  }

  .featured__grid,
  .dayparts__grid,
  .info-grid,
  .footer__grid {
    grid-template-columns: 1fr;
  }

  .featured__head {
    justify-content: center;
    margin-bottom: 2.25rem;
  }

  .featured__head h2 {
    max-width: 14ch;
    margin-left: auto;
    margin-right: auto;
  }

  .dish {
    max-width: 460px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

  .dish__desc {
    font-size: 1rem;
  }

  .story__grid {
    gap: 2rem;
  }

  .story__grid > div:last-child {
    order: 1;
    text-align: center;
  }

  .story__grid > div:last-child p {
    margin-left: auto;
    margin-right: auto;
  }

  .story__images {
    order: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.85rem;
    width: 100%;
    max-width: 560px;
    margin: 0 auto;
    aspect-ratio: auto;
  }

  .story__images img,
  .story__images img:first-child,
  .story__images img:last-child {
    position: static;
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 5;
    border: 0;
    border-radius: 6px;
    box-shadow: none;
  }

  .story__images img {
    object-fit: cover;
  }

  .daypart,
  .info-card {
    max-width: 500px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .info-card {
    text-align: center;
  }

  .info-card p,
  .daypart p {
    font-size: 1rem;
  }

  .reviews__carousel {
    gap: 0.9rem;
  }

  .review-card {
    flex-basis: min(420px, 82vw);
    min-height: 220px;
    padding: 1.35rem;
  }

  .review-card p {
    font-size: clamp(1.18rem, 5vw, 1.55rem);
  }

  .menu-hero__grid {
    gap: 1.5rem;
  }

  .menu-hero__note {
    border-left: 0;
    border-top: 2px solid var(--ink);
    max-width: 34rem;
  }

  .cat-nav {
    padding: 0.75rem 0;
  }

  .cat-nav__inner {
    scroll-padding-left: var(--gutter);
    scroll-padding-right: var(--gutter);
  }

  .cat-nav a {
    font-size: 0.74rem;
    letter-spacing: 0.14em;
    padding: 0.5rem 0.85rem;
  }

  .map-wrap {
    height: 360px;
  }

  .map-wrap--visit {
    min-height: 360px;
  }

  .footer {
    padding-top: 3.75rem;
  }

  .footer__grid,
  .footer__base {
    text-align: center;
  }

  .footer__brand p {
    margin-left: auto;
    margin-right: auto;
  }

  .footer__base {
    justify-content: center;
  }
}

@media (max-width: 640px) {
  html { scroll-padding-top: 82px; }
  body { font-size: 16px; }
  .featured__grid,
  .dayparts__grid,
  .info-grid,
  .items-grid,
  .items-grid--2,
  .items-grid--menu,
  .footer__grid { grid-template-columns: 1fr; }
  .hero {
    padding: 1.45rem 0 3rem;
  }
  .hero h1 {
    font-size: clamp(2.55rem, 13vw, 4rem);
    line-height: 1.02;
  }
  .hero__grid {
    gap: 2rem;
  }
  .hero__lede {
    font-size: 1.02rem;
    margin: 1.2rem 0 1.6rem;
  }
  .hero__actions .cta {
    justify-content: center;
    min-width: 136px;
  }
  .hero__media {
    width: 100%;
    aspect-ratio: 4 / 4.6;
  }
  .section { padding: 3.2rem 0; }
  .map-wrap { height: 360px; }
  .menu-hero { padding: 2.5rem 0 2rem; }
  .menu-hero__grid { gap: 1.5rem; }
  .menu-cat { padding: 3rem 0; }
  .menu-cat__head { margin-bottom: 1.75rem; }
  .topbar__inner { height: 68px; }
  .brand img { width: 176px; height: 46px; }
  .cat-nav { top: 68px; }
  .review-card { flex-basis: 86vw; min-height: 250px; }
}

@media (max-width: 430px) {
  .hero__meta {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .story__images,
  .items-grid--menu {
    grid-template-columns: 1fr;
  }
}
