/* =========================================================
   Isleworth Bakery — minimalist editorial bakery landing
   palette: warm cream / espresso / single terracotta accent
   typography: Fraunces (serif display) + Outfit (sans body)
   icons: HugeIcons stroke style (1.5px, rounded, 24x24)
   ========================================================= */

/* ----- Self-hosted variable fonts ----- */
@font-face {
  font-family: 'Fraunces';
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url('fonts/fraunces-normal-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Fraunces';
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url('fonts/fraunces-normal-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Fraunces';
  font-style: italic;
  font-weight: 300 700;
  font-display: swap;
  src: url('fonts/fraunces-italic-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Fraunces';
  font-style: italic;
  font-weight: 300 700;
  font-display: swap;
  src: url('fonts/fraunces-italic-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Outfit';
  font-style: normal;
  font-weight: 300 600;
  font-display: swap;
  src: url('fonts/outfit-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Outfit';
  font-style: normal;
  font-weight: 300 600;
  font-display: swap;
  src: url('fonts/outfit-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

:root {
  --bg:        #F4EEE2;
  --bg-2:      #EFE6D4;
  --bg-card:   #FBF6EC;
  --ink:       #1F1612;
  --ink-2:     #3A2C24;
  --ink-soft:  #6B5A4F;
  --ink-mute:  #71635A;
  --line:      rgba(31, 22, 18, 0.10);
  --line-soft: rgba(31, 22, 18, 0.06);
  --accent:    #A8593A;            /* terracotta caramel  ~70% sat */
  --accent-2:  #8B4429;
  --accent-soft: #E8C9B0;

  --status-open:        #4F8B5C;
  --status-open-glow:   rgba(79, 139, 92, 0.35);
  --status-closed:      #B85A45;
  --status-closed-glow: rgba(184, 90, 69, 0.35);

  --serif:  'Fraunces', 'Cormorant Garamond', 'Times New Roman', serif;
  --sans:   'Outfit', -apple-system, BlinkMacSystemFont, system-ui, 'Segoe UI', sans-serif;

  --ease:    cubic-bezier(0.2, 0.8, 0.2, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.4, 0.64, 1);

  --radius:    18px;
  --radius-lg: 28px;
  --radius-sm: 12px;

  --max:    1280px;
  --pad-x:  clamp(20px, 4vw, 56px);
  --space:  clamp(40px, 5vw, 80px);
  --nav-h:  76px;
}

* { box-sizing: border-box; }
*::selection { background: var(--accent); color: var(--bg-card); }

html {
  scroll-padding-top: var(--nav-h);
}
/* On the menu page the sticky chip-nav lives directly under the site nav,
   so anchor scrolls (e.g. menu.html#cat-rolls) need extra clearance. */
body.menu-body {
  scroll-padding-top: calc(var(--nav-h) + var(--chip-nav-h, 56px) + 8px);
}

html, body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.55;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  /* `clip` prevents horizontal overflow (e.g. marquee) WITHOUT creating a scroll
     container — preserves position: sticky on .menu-nav--page. Fallback: hidden. */
  overflow-x: hidden;
  overflow-x: clip;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; }
ul { list-style: none; padding: 0; margin: 0; }
figure { margin: 0; }

/* =================== Scroll progress bar =================== */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 2px;
  z-index: 100;
  background: linear-gradient(90deg, var(--accent-2), var(--accent));
  transform-origin: 0 50%;
  transform: scaleX(0);
  pointer-events: none;
  will-change: transform;
}

/* =================== Section divider =================== */
.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(28px, 4vw, 56px) var(--pad-x);
  color: var(--ink-mute);
}
.divider__line {
  flex: 0 1 90px;
  height: 1px;
  background: linear-gradient(90deg, transparent, currentColor, transparent);
  opacity: 0.5;
}
.divider__icon {
  width: 22px; height: 22px;
  flex-shrink: 0;
  color: var(--accent-2);
  opacity: 0.85;
}

/* =================== Grain (fixed, GPU-cheap) =================== */
.grain {
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 1000;
  opacity: 0.45;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='220' height='220'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.12  0 0 0 0 0.08  0 0 0 0 0.06  0 0 0 0.18 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

/* =================== Type =================== */
.display {
  font-family: var(--serif);
  font-weight: 350;
  font-variation-settings: "opsz" 144, "SOFT" 60;
  letter-spacing: -0.03em;
  line-height: 1.02;
  color: var(--ink);
  margin: 0;
  font-size: clamp(38px, 6.4vw, 88px);
}
.display em {
  font-style: italic;
  font-weight: 350;
  color: var(--accent-2);
  font-variation-settings: "opsz" 144, "SOFT" 100;
}
h2.display { font-size: clamp(34px, 5.2vw, 68px); }
h3.display { font-size: clamp(28px, 3.6vw, 44px); }

p { margin: 0 0 1em; color: var(--ink-soft); }
.lead {
  font-size: clamp(17px, 1.4vw, 20px);
  color: var(--ink-2);
  max-width: 52ch;
  overflow-wrap: break-word;
  word-break: normal;
  hyphens: manual;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.eyebrow__dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(168, 89, 58, 0.15);
}
.eyebrow__dash {
  width: 22px; height: 1px;
  background: var(--ink-soft);
}
.eyebrow--light { color: rgba(251, 246, 236, 0.72); }
.eyebrow--light .eyebrow__dash { background: rgba(251, 246, 236, 0.4); }

/* =================== Buttons =================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  height: 56px;
  padding: 0 14px 0 26px;
  border-radius: 999px;
  font-weight: 500;
  font-size: 15.5px;
  letter-spacing: -0.005em;
  white-space: nowrap;
  transition: transform .35s var(--ease), background-color .35s var(--ease), color .35s var(--ease), box-shadow .45s var(--ease);
  will-change: transform;
}
.btn:active { transform: scale(0.97); }
.btn__icon {
  display: inline-grid;
  place-items: center;
  width: 36px; height: 36px;
  border-radius: 999px;
  background: rgba(255,255,255,0.18);
  transition: transform .35s var(--ease-spring), background-color .35s var(--ease);
}
.btn__icon svg { width: 17px; height: 17px; }

.btn--primary {
  background: var(--ink);
  color: var(--bg-card);
}
.btn--primary:hover { background: var(--accent-2); }
.btn--primary:hover .btn__icon { transform: translate(2px, -2px) rotate(8deg); background: rgba(255,255,255,0.28); }

.btn--ghost {
  background: transparent;
  color: var(--ink);
  box-shadow: inset 0 0 0 1px var(--line);
}
.btn--ghost .btn__icon { background: var(--ink); color: var(--bg-card); }
.btn--ghost:hover { box-shadow: inset 0 0 0 1px var(--ink); background: var(--bg-card); }
.btn--ghost:hover .btn__icon { transform: translate(2px, -2px); }

.btn--light {
  background: var(--bg-card);
  color: var(--ink);
}
.btn--light .btn__icon { background: var(--ink); color: var(--bg-card); }
.btn--light:hover .btn__icon { transform: translate(3px, -3px) rotate(8deg); }

.btn--sm { height: 44px; padding: 0 8px 0 20px; font-size: 14px; }
.btn--sm .btn__icon { width: 30px; height: 30px; }
.btn--sm .btn__icon svg { width: 14px; height: 14px; }

/* =================== Nav =================== */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  padding: 22px var(--pad-x) 18px;
  transition: transform .5s var(--ease), background-color .4s var(--ease), backdrop-filter .4s var(--ease), padding .4s var(--ease), box-shadow .4s var(--ease);
}
.nav[data-state="hidden"] { transform: translateY(-110%); }
.nav[data-state="scrolled"] {
  background: rgba(244, 238, 226, 0.78);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  padding-top: 12px; padding-bottom: 12px;
  box-shadow: 0 1px 0 var(--line-soft);
}
.nav__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}
.nav__brand {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
  letter-spacing: -0.02em;
}
.nav__mark {
  display: grid; place-items: center;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--bg-card);
}
.nav__mark svg { width: 18px; height: 18px; }
.nav__name { font-style: italic; }
.nav__links {
  display: flex; gap: 28px;
  justify-self: center;
  font-size: 14.5px;
  color: var(--ink-soft);
}
.nav__links a {
  position: relative;
  padding: 6px 0;
  transition: color .3s var(--ease);
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: 0;
  height: 1px; background: var(--ink);
  transition: right .4s var(--ease);
}
.nav__links a:hover { color: var(--ink); }
.nav__links a:hover::after { right: 0; }
.nav__links a[aria-current="page"] { color: var(--ink); }
.nav__links a[aria-current="page"]::after { right: 0; background: var(--accent); }

.nav__actions {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.nav__cta {
  display: inline-flex; align-items: center; gap: 10px;
  height: 42px; padding: 0 8px 0 18px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--bg-card);
  font-size: 14px; font-weight: 500;
  transition: background-color .3s var(--ease), transform .3s var(--ease);
}
.nav__cta svg {
  width: 16px; height: 16px;
  background: rgba(255,255,255,0.16);
  border-radius: 999px;
  padding: 6px;
  transition: transform .3s var(--ease-spring);
}
.nav__cta:hover { background: var(--accent-2); }
.nav__cta:hover svg { transform: translate(2px, -2px) rotate(8deg); }

.nav__burger {
  display: none;
  background: var(--ink);
  color: var(--bg-card);
  border: 0;
  width: 44px; height: 44px;
  border-radius: 50%;
  position: relative;
}
.nav__burger span {
  position: absolute;
  left: 50%; top: 50%;
  width: 16px; height: 1.5px;
  background: currentColor;
  transform: translate(-50%, -50%) translateY(-4px);
  transition: transform .35s var(--ease);
}
.nav__burger span:last-child { transform: translate(-50%, -50%) translateY(4px); }
.nav__burger[aria-expanded="true"] span:first-child { transform: translate(-50%, -50%) rotate(45deg); }
.nav__burger[aria-expanded="true"] span:last-child  { transform: translate(-50%, -50%) rotate(-45deg); }

.nav__mobile {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 18px var(--pad-x) 24px;
  background: rgba(244, 238, 226, 0.96);
  backdrop-filter: blur(16px);
  border-top: 1px solid var(--line-soft);
}
.nav__mobile a:not(.nav__mobile-cta) {
  font-family: var(--serif);
  font-style: italic;
  font-size: 28px;
  padding: 10px 0;
  color: var(--ink);
  border-bottom: 1px solid var(--line-soft);
}
/* :last-of-type would match the CTA itself; use :has() to target the
   regular link immediately preceding the CTA. */
.nav__mobile a:has(+ .nav__mobile-cta) { border-bottom: 0; }
/* Fallback for browsers without :has() — assumes CTA is always last child. */
.nav__mobile > a:nth-last-child(2) { border-bottom: 0; }
.nav__mobile .nav__mobile-cta {
  margin-top: 12px;
  font-family: var(--sans);
  font-style: normal;
  font-size: 16px;
  align-self: flex-start;
  padding: 14px 22px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--bg-card);
  border-bottom: 0;
}

/* =================== Hero =================== */
.hero {
  padding: clamp(110px, 14vw, 150px) var(--pad-x) clamp(40px, 5vw, 70px);
  max-width: var(--max);
  margin: 0 auto;
  position: relative;
}
.hero__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.15fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
}
.hero__content { position: relative; z-index: 2; }
.hero__content .eyebrow { margin-bottom: 24px; }
.hero__content .display { margin-bottom: 24px; }
.hero__content .lead { margin-bottom: 32px; }

.hero__actions {
  display: flex; flex-wrap: wrap; gap: 14px;
  margin-bottom: 44px;
}

.hero__meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin: 0;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
.hero__meta dt {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 8px;
}
.hero__meta dd {
  margin: 0;
  font-family: var(--serif);
  font-size: 17px;
  letter-spacing: -0.01em;
  color: var(--ink);
}

/* hero media — asymmetric stack */
.hero__media {
  position: relative;
  aspect-ratio: 4 / 5;
  min-height: 480px;
}
.hero__photo {
  position: absolute;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-2);
  isolation: isolate;
}
.hero__photo img,
.hero__photo video {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.hero__photo img {
  transform: scale(1.02);
  transition: transform 1.2s var(--ease-out);
}
.hero__photo:hover img { transform: scale(1.06); }

.hero__photo--main {
  inset: 0;
}
.hero__photo--main figcaption {
  position: absolute;
  bottom: 16px; right: 16px;
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--bg-card);
  background: rgba(31, 22, 18, 0.72);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 7px 12px 7px 7px;
  border-radius: 999px;
  white-space: nowrap;
  max-width: calc(100% - 32px);
}
.hero__photo--main figcaption span {
  font-family: var(--serif);
  font-style: italic;
  background: var(--accent);
  color: var(--bg-card);
  padding: 3px 9px;
  border-radius: 999px;
  font-size: 12px;
}


.hero__chip {
  position: absolute;
  top: 8%; right: -4%;
  z-index: 2;
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 15px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  padding: 12px 18px;
  border-radius: 999px;
  box-shadow: 0 18px 40px -20px rgba(31, 22, 18, 0.18);
  animation: float 6s ease-in-out infinite;
}
.hero__chip-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(168, 89, 58, 0.18);
  animation: pulse 2.4s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(168, 89, 58, 0.20); }
  50%      { box-shadow: 0 0 0 9px rgba(168, 89, 58, 0.04); }
}

/* marquee strip below hero */
.marquee {
  margin-top: clamp(48px, 6vw, 80px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  padding: 18px 0;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(22px, 3vw, 38px);
  color: var(--ink-2);
  position: relative;
  margin-left: calc(var(--pad-x) * -1);
  margin-right: calc(var(--pad-x) * -1);
}
.marquee__track {
  display: inline-flex;
  gap: 28px;
  white-space: nowrap;
  animation: marquee 38s linear infinite;
  padding-left: 28px;
}
.marquee__track .dot { color: var(--accent); }
@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* =================== About =================== */
.about {
  padding: var(--space) var(--pad-x);
  max-width: var(--max);
  margin: 0 auto;
}
.about__grid {
  display: grid;
  grid-template-columns: 5fr 6fr;
  gap: clamp(32px, 6vw, 90px);
  align-items: center;
}
.about__photo {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-2);
}
.about__photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 1.2s var(--ease-out);
}
.about__photo:hover img { transform: scale(1.07); }
.about__photo-tag {
  position: absolute;
  top: 18px; left: 18px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 13px;
  background: var(--bg-card);
  padding: 8px 14px;
  border-radius: 999px;
}

.about__text .eyebrow { margin-bottom: 24px; }
.about__text .display { margin-bottom: 24px; max-width: 14ch; }
.about__text > p {
  font-size: 17px;
  color: var(--ink-soft);
  max-width: 50ch;
  margin-bottom: 36px;
}
.about__points { display: grid; gap: 18px; max-width: 540px; }
.about__points li {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px 22px;
  background: var(--bg-card);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  transition: transform .4s var(--ease), border-color .4s var(--ease);
}
.about__points li:hover {
  transform: translateX(6px);
  border-color: var(--line);
}
.ic {
  width: 46px; height: 46px;
  min-width: 46px; min-height: 46px;
  position: relative;
  border-radius: 50%;
  background: var(--bg-2);
  color: var(--accent-2);
  flex-shrink: 0;
  line-height: 0;
  padding: 0;
}
.location__list .ic,
.about__points .ic {
  transform: translateY(0);
}
.ic svg {
  width: 20px; height: 20px;
  display: block;
  overflow: visible;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.ic--lg { width: 56px; height: 56px; }
.ic--lg svg { width: 28px; height: 28px; }
.about__points strong {
  display: block;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.2;
  color: var(--ink);
  margin-bottom: 4px;
}
.about__points span {
  font-size: 14.5px;
  line-height: 1.4;
  color: var(--ink-soft);
}

/* =================== Section heads =================== */
.section__head {
  max-width: 720px;
  margin: 0 auto clamp(40px, 5vw, 70px);
  text-align: center;
}
.section__head .eyebrow { margin-bottom: 18px; }
.section__head .display { font-size: clamp(34px, 5vw, 64px); }

.section__head--row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  text-align: left;
  max-width: var(--max);
}
.section__head--row .display { max-width: 16ch; }

/* =================== Atmosphere / Bento =================== */
.atmosphere {
  padding: var(--space) var(--pad-x);
  max-width: var(--max);
  margin: 0 auto;
}
.bento {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 180px;
  gap: 14px;
}
.bento figure {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-2);
}
.bento img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 1.2s var(--ease-out);
}
.bento figure:hover img { transform: scale(1.08); }

.bento__a { grid-column: span 4; grid-row: span 2; }
.bento__b { grid-column: span 2; grid-row: span 2; }
.bento__c { grid-column: span 2; grid-row: span 2; }
.bento__d { grid-column: span 2; grid-row: span 2; }
.bento__e { grid-column: span 2; grid-row: span 2; }

.placeholder {
  background:
    radial-gradient(120% 80% at 0% 0%, rgba(168, 89, 58, 0.08), transparent 60%),
    radial-gradient(120% 80% at 100% 100%, rgba(168, 89, 58, 0.06), transparent 60%),
    var(--bg-card);
  border: 1px dashed var(--line);
  display: grid; place-items: center;
}
.placeholder__inner {
  display: grid; place-items: center; gap: 10px;
  text-align: center;
  color: var(--ink-soft);
  padding: 24px;
}
.placeholder__inner span:not(.ic):not(.ic--lg) {
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  color: var(--ink-2);
}
.placeholder__inner em {
  font-style: normal;
  font-size: 11.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

/* =================== Location =================== */
.location {
  padding: var(--space) var(--pad-x);
  max-width: var(--max);
  margin: 0 auto;
}
.location__grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: stretch;
}
.location__info { padding: 8px 0; }
.location__info .eyebrow { margin-bottom: 22px; }
.location__info .display { margin-bottom: 18px; max-width: 12ch; }
.location__info > p { margin-bottom: 36px; max-width: 36ch; }

.location__list {
  display: grid; gap: 6px;
  margin-bottom: 36px;
}
.location__list li {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 20px 22px;
  border-bottom: 1px solid var(--line-soft);
  transition: padding .4s var(--ease);
}
.location__list li:hover { padding-left: 28px; }
.location__list strong {
  display: block;
  font-family: var(--serif);
  font-weight: 400;
  font-size: 19px;
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 6px;
}
.location__list span {
  display: block;
  font-size: 14.5px;
  line-height: 1.35;
  color: var(--ink-soft);
}
.location__list b {
  font-weight: 500;
  color: var(--ink-2);
  margin-right: 12px;
  font-size: 12.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.plain-link {
  color: inherit;
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease);
}
.plain-link:hover { border-bottom-color: var(--accent); }
.order__phone {
  color: inherit;
  border-bottom: 1px solid rgba(251, 246, 236, 0.35);
  transition: border-color .3s var(--ease);
}
.order__phone:hover { border-bottom-color: var(--accent-soft); }

.location__map {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-2);
  min-height: 460px;
  border: 1px solid var(--line-soft);
}
/* Click-to-load placeholder shown until consent (or explicit click) */
.map-placeholder {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 24px;
  background:
    linear-gradient(135deg, rgba(168, 89, 58, 0.08), rgba(31, 22, 18, 0.04)),
    var(--bg-2);
  border: 0;
  cursor: pointer;
  font-family: var(--sans);
  color: var(--ink-soft);
  transition: background-color .3s var(--ease), color .3s var(--ease);
}
.map-placeholder:hover {
  background:
    linear-gradient(135deg, rgba(168, 89, 58, 0.14), rgba(31, 22, 18, 0.06)),
    var(--bg-2);
  color: var(--ink);
}
.map-placeholder__icon {
  display: grid; place-items: center;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--bg-card);
  color: var(--accent-2);
  box-shadow: 0 1px 0 rgba(31,22,18,0.04) inset, 0 0 0 1px var(--line);
  margin-bottom: 6px;
  transition: transform .35s var(--ease-spring);
}
.map-placeholder:hover .map-placeholder__icon { transform: translateY(-3px); }
.map-placeholder__icon svg { width: 26px; height: 26px; }
.map-placeholder__title {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.map-placeholder__hint {
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--ink-mute);
  text-align: center;
  max-width: 28ch;
}

.location__map iframe {
  width: 100%; height: 100%;
  position: absolute; inset: 0;
  border: 0;
  filter: saturate(0.9) contrast(0.96);
}

/* =================== Order CTA =================== */
.order {
  padding: clamp(40px, 5vw, 70px) var(--pad-x);
}
.order__inner {
  max-width: var(--max);
  margin: 0 auto;
  background: var(--ink);
  color: var(--bg-card);
  border-radius: clamp(24px, 3vw, 36px);
  padding: clamp(48px, 6vw, 80px) clamp(28px, 5vw, 72px);
  position: relative;
  overflow: hidden;
}
.order__inner::before {
  content: "";
  position: absolute;
  inset: -40% -10% auto auto;
  width: 70%; aspect-ratio: 1;
  background: radial-gradient(circle, rgba(168, 89, 58, 0.45), transparent 60%);
  filter: blur(40px);
  pointer-events: none;
}
.order__inner .eyebrow { margin-bottom: 22px; position: relative; }
.order__inner .display {
  position: relative;
  color: var(--bg-card);
  margin-bottom: 22px;
  max-width: 18ch;
  font-size: clamp(36px, 5.4vw, 72px);
}
.order__inner .display em {
  color: var(--accent-soft);
}
.order__inner > p {
  position: relative;
  color: rgba(251, 246, 236, 0.7);
  font-size: 17px;
  max-width: 44ch;
  margin-bottom: 40px;
}
.order__actions {
  position: relative;
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  align-items: center;
}
.order__sub {
  font-size: 14px;
  color: rgba(251, 246, 236, 0.62);
}
.order__sub b {
  color: var(--bg-card);
  font-weight: 500;
}

/* =================== Reviews =================== */
.reviews {
  padding: var(--space) var(--pad-x);
  max-width: var(--max);
  margin: 0 auto;
}
.reviews__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.quote {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 36px 28px 28px;
  transition:
    transform 0.3s var(--ease),
    border-color 0.4s var(--ease),
    background-color 0.4s var(--ease);
}
.quote:hover {
  border-color: var(--line);
  background: var(--bg-2);
}
.quote__mark {
  font-family: var(--serif);
  font-style: italic;
  font-size: 64px;
  line-height: 0.6;
  color: var(--accent);
  display: block;
  margin-bottom: 12px;
}
.quote blockquote { margin: 0 0 24px; }
.quote blockquote p {
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.35;
  color: var(--ink);
  margin: 0;
  letter-spacing: -0.01em;
}
.quote figcaption {
  display: flex; justify-content: space-between; align-items: baseline;
  gap: 16px;
  padding-top: 18px;
  border-top: 1px solid var(--line-soft);
}
.quote figcaption strong {
  font-family: var(--sans);
  font-weight: 500;
  color: var(--ink);
}
.quote figcaption span {
  font-size: 13px;
  color: var(--ink-mute);
}
.quote__rating {
  position: absolute;
  top: 28px; right: 28px;
  color: var(--accent);
  letter-spacing: 0.1em;
  font-size: 13px;
}

/* =================== Instagram grid =================== */
.ig {
  padding: var(--space) var(--pad-x) clamp(60px, 8vw, 100px);
  max-width: var(--max);
  margin: 0 auto;
}
.ig__marquee {
  position: relative;
  margin-top: 16px;
  overflow: hidden;
  width: 100%;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.ig__track {
  display: flex;
  gap: 10px;
  width: max-content;
  animation: ig-scroll 48s linear infinite;
}
.ig__marquee:hover .ig__track { animation-play-state: paused; }
@keyframes ig-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .ig__track { animation: none; }
}
.ig__cell {
  position: relative;
  flex: 0 0 auto;
  width: clamp(180px, 22vw, 260px);
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: var(--radius-sm);
  background: var(--bg-2);
}
.ig__cell img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform .9s var(--ease-out);
}
.ig__cell:hover img { transform: scale(1.1); }

.ig__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(31, 22, 18, 0.55) 100%);
  display: grid; place-items: end center;
  padding: 14px;
  color: var(--bg-card);
  opacity: 0;
  transition: opacity .35s var(--ease);
}
.ig__cell:hover .ig__overlay { opacity: 1; }
.ig__overlay svg { width: 22px; height: 22px; justify-self: end; }

.ig__cell--placeholder {
  display: grid; place-items: center;
  background:
    radial-gradient(80% 60% at 30% 30%, rgba(168, 89, 58, 0.08), transparent 60%),
    var(--bg-card);
  border: 1px dashed var(--line);
}
.ig__cell--placeholder span {
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  color: var(--ink-mute);
}

/* =================== Footer =================== */
.footer {
  background: var(--ink);
  color: var(--bg-card);
  padding: clamp(56px, 6vw, 88px) var(--pad-x) 28px;
  position: relative;
  margin-top: clamp(32px, 4vw, 60px);
}
.footer__grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 48px 40px;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(251, 246, 236, 0.12);
}
.footer__brand h3 {
  color: var(--bg-card);
  font-size: clamp(40px, 5vw, 60px);
  margin: 0 0 16px;
  font-style: italic;
}
.footer__brand p {
  color: rgba(251, 246, 236, 0.62);
  max-width: 32ch;
}
.footer__col p {
  color: rgba(251, 246, 236, 0.78);
  margin-top: 18px;
  line-height: 1.7;
  font-size: 15px;
}
.footer__social {
  display: grid;
  gap: 10px;
  margin-top: 18px;
  font-size: 15px;
}
.footer__social a,
.footer__link-btn {
  display: inline-flex; align-items: center; gap: 8px;
  color: rgba(251, 246, 236, 0.78);
  transition: color .3s var(--ease);
  font-size: inherit;
  font-family: inherit;
  background: transparent;
  padding: 0;
  cursor: pointer;
  text-align: left;
}
.footer__social a:hover,
.footer__link-btn:hover { color: var(--accent-soft); }

.footer__bottom {
  max-width: var(--max);
  margin: 0 auto;
  padding-top: 28px;
  display: flex; justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  color: rgba(251, 246, 236, 0.5);
}
.footer__sig { font-style: italic; font-family: var(--serif); }

/* =================== Live status dot =================== */
.hero__meta-status dt {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.status-dot {
  display: inline-block;
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--ink-mute);
  position: relative;
  transition: background-color .4s var(--ease);
}
.status-dot::after {
  content: "";
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.18;
  animation: dot-pulse 2.4s ease-in-out infinite;
}
.status-dot[data-state="open"]   { background: var(--status-open);   color: var(--status-open); }
.status-dot[data-state="closed"] { background: var(--status-closed); color: var(--status-closed); }

@keyframes dot-pulse {
  0%, 100% { transform: scale(0.85); opacity: 0.22; }
  50%      { transform: scale(1.25); opacity: 0; }
}

/* =================== Sticky mobile order =================== */
.sticky-order {
  display: none;
  position: fixed;
  right: 14px;
  bottom: calc(14px + env(safe-area-inset-bottom, 0px));
  z-index: 60;
  align-items: center;
  gap: 10px;
  background: var(--ink);
  color: var(--bg-card);
  padding: 11px 11px 11px 18px;
  border-radius: 999px;
  font-size: 14.5px;
  font-weight: 500;
  letter-spacing: -0.005em;
  box-shadow: 0 14px 30px -10px rgba(31, 22, 18, 0.45),
              0 2px 6px rgba(31, 22, 18, 0.18);
  transform: translateY(140%);
  opacity: 0;
  transition: transform .55s var(--ease), opacity .35s var(--ease), background-color .3s var(--ease);
  will-change: transform;
}
.sticky-order.is-visible {
  transform: translateY(0);
  opacity: 1;
}
.sticky-order:active { transform: translateY(0) scale(0.97); }
.sticky-order__dot {
  position: relative;
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--status-open);
  box-shadow: 0 0 0 3px var(--status-open-glow);
  transition: background-color .4s var(--ease), box-shadow .4s var(--ease);
}
.sticky-order__dot::after {
  content: "";
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.18;
  animation: dot-pulse 2.4s ease-in-out infinite;
}
.sticky-order__dot[data-state="open"] {
  background: var(--status-open);
  color: var(--status-open);
  box-shadow: 0 0 0 3px var(--status-open-glow);
}
.sticky-order__dot[data-state="closed"] {
  background: var(--status-closed);
  color: var(--status-closed);
  box-shadow: 0 0 0 3px var(--status-closed-glow);
}
.sticky-order__icon {
  display: grid; place-items: center;
  width: 30px; height: 30px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
}
.sticky-order__icon svg { width: 15px; height: 15px; }

@media (max-width: 900px) {
  .sticky-order { display: inline-flex; }
}

/* =================== Back-to-top button =================== */
.back-to-top {
  position: fixed;
  right: 14px;
  bottom: calc(70px + env(safe-area-inset-bottom, 0px));
  z-index: 55;
  width: 42px; height: 42px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--bg-card);
  color: var(--ink);
  box-shadow:
    0 1px 0 rgba(31, 22, 18, 0.04) inset,
    0 0 0 1px var(--line),
    0 14px 30px -14px rgba(31, 22, 18, 0.30);
  cursor: pointer;
  border: 0;
  opacity: 0;
  transform: translateY(16px) scale(0.92);
  pointer-events: none;
  transition:
    opacity .35s var(--ease),
    transform .45s var(--ease-spring),
    background-color .3s var(--ease),
    color .3s var(--ease),
    box-shadow .3s var(--ease);
}
.back-to-top.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.back-to-top svg {
  width: 16px; height: 16px;
  transition: transform .3s var(--ease);
}
.back-to-top:hover {
  background: var(--ink);
  color: var(--bg-card);
  box-shadow:
    0 0 0 1px var(--ink),
    0 18px 38px -16px rgba(31, 22, 18, 0.45);
}
.back-to-top:hover svg { transform: translateY(-2px); }
.back-to-top:active { transform: translateY(0) scale(0.94); }

/* On wide screens move it to bottom-left (sticky-order isn't shown there) */
@media (min-width: 901px) {
  .back-to-top {
    left: 22px;
    right: auto;
    bottom: 22px;
    width: 46px; height: 46px;
  }
}
body.menu-open .sticky-order,
body.menu-open .back-to-top {
  transform: translateY(140%);
  opacity: 0;
  pointer-events: none;
}

/* =================== Word-stagger reveal (hero h1 + lead) =================== */
.hero__title .word,
.lead--stagger .word {
  display: inline-block;
  opacity: 0;
  transform: translateY(20px);
  animation: word-in 0.9s var(--ease-out) var(--d, 0s) both;
}
.hero__title .word { transform: translateY(28px); }
@keyframes word-in {
  to { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
  .hero__title .word,
  .lead--stagger .word { animation: none; opacity: 1; transform: none; }
}

/* =================== 3D tilt on quote cards =================== */
.quote {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  --hover-y: 0px;
  transform-style: preserve-3d;
  transform: perspective(900px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y)) translateY(var(--hover-y));
}
.quote:hover {
  --hover-y: -6px;
}

/* =================== Marquee pause on hover =================== */
.marquee:hover .marquee__track {
  animation-play-state: paused;
}

/* =================== Reveal animation =================== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity .9s var(--ease-out) var(--d, 0s),
    transform 1s var(--ease-out) var(--d, 0s);
  will-change: opacity, transform;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* =================== Responsive =================== */
/* 1100px so iPad Pro 12.9" (1024px portrait) always gets the tablet layout */
@media (max-width: 1100px) {
  .nav__links { display: none; }
  .nav__cta { display: none; }
  .nav__actions { display: none; }
  .nav__burger { display: grid; place-items: center; }
  .nav.is-mobile-open .nav__mobile { display: flex; }

  .hero { padding-top: 110px; }
  .hero__grid {
    grid-template-columns: 1fr;
    gap: 36px;
    min-height: auto;
  }
  .hero__media { aspect-ratio: 4 / 5; min-height: 0; max-height: 70vh; }
  .hero__chip { right: 4%; }

  .about__grid { grid-template-columns: 1fr; gap: 40px; }
  .about__photo { aspect-ratio: 5 / 4; max-width: 600px; }

  .bento {
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 160px;
  }
  .bento__a { grid-column: span 4; }
  .bento__b { grid-column: span 2; }
  .bento__c { grid-column: span 2; }
  .bento__d { grid-column: span 4; }
  .bento__e { grid-column: span 4; }

  .location__grid { grid-template-columns: 1fr; gap: 32px; }
  .location__map { min-height: 360px; }

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

  .section__head--row {
    flex-direction: column;
    align-items: flex-start;
  }

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

@media (max-width: 640px) {
  body { font-size: 16px; }

  .nav { padding: 14px var(--pad-x); }
  .nav__name { display: none; }
  .nav__brand { gap: 0; }

  .hero { padding-top: 100px; padding-bottom: 28px; }
  .hero__grid { gap: 32px; }
  .hero__content .display { margin-bottom: 18px; }
  .hero__content .lead { margin-bottom: 24px; }
  .hero__media { aspect-ratio: 4 / 5; max-height: 64vh; }
  .hero__photo--main { border-radius: 22px; }
  .hero__chip { font-size: 13px; padding: 9px 14px; top: 4%; }
  .hero__meta {
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    padding-top: 24px;
  }
  .hero__meta div:last-child { grid-column: span 2; }

  .btn { height: 52px; padding: 0 12px 0 22px; font-size: 14.5px; }
  .btn__icon { width: 32px; height: 32px; }
  .btn__icon svg { width: 15px; height: 15px; }

  .about__points li { padding: 16px 18px; gap: 14px; }
  .ic { width: 36px; height: 36px; }
  .ic svg { width: 18px; height: 18px; }

  .bento {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 180px;
  }
  .bento__a { grid-column: span 2; }
  .bento__b { grid-column: span 1; }
  .bento__c { grid-column: span 1; }
  .bento__d { grid-column: span 2; }
  .bento__e { grid-column: span 2; }

  .location__list li { padding: 16px 14px; gap: 14px; }

  .order__inner { padding: 48px 28px; }
  .order__actions { flex-direction: column; align-items: flex-start; }

  .quote { padding: 28px 22px 22px; }
  .quote blockquote p { font-size: 19px; }
  .quote__rating { top: 22px; right: 22px; font-size: 12px; }

  .footer__grid { grid-template-columns: 1fr; gap: 24px; padding-bottom: 32px; }
  .footer__col p { margin-top: 10px; }
  .footer__col .footer__social { margin-top: 12px; }
  .footer { padding: clamp(40px, 7vw, 60px) var(--pad-x) 22px; }
}

@media (max-width: 420px) {
  :root { --pad-x: 18px; }
  .display { font-size: clamp(34px, 9vw, 44px); }
  h2.display { font-size: clamp(30px, 8vw, 40px); }
  .hero { padding-top: 92px; }
  .hero__media { min-height: 0; aspect-ratio: 4 / 5; max-height: 60vh; }
  .hero__chip { font-size: 12px; padding: 8px 12px; right: 0; }
  .hero__photo--main figcaption { font-size: 11px; padding: 5px 10px 5px 5px; }
  .hero__photo--main figcaption span { font-size: 11px; padding: 2px 7px; }
  .marquee { font-size: clamp(20px, 6vw, 26px); }
  .order__inner { padding: 36px 22px; }
  .order__inner .display { font-size: clamp(30px, 8vw, 40px); }
  .footer__brand h3 { font-size: 36px; }
}

@media (hover: none) {
  .hero__photo:hover img,
  .about__photo:hover img,
  .bento figure:hover img,
  .ig__cell:hover img { transform: scale(1.02); }
  .quote:hover { transform: none; }
  .about__points li:hover { transform: none; }
  .location__list li:hover { padding-left: 22px; }
}

/* =================== btn--block =================== */
.btn--block {
  width: 100%;
  justify-content: space-between;
}

/* =================== Menu page =================== */
.menu-page {
  max-width: var(--max);
  margin: 0 auto;
  position: relative;
}
.menu-page__intro {
  padding: clamp(108px, 12vw, 140px) var(--pad-x) clamp(24px, 4vw, 44px);
  max-width: 920px;
  position: relative;
}
.menu-page__intro .eyebrow { margin-bottom: 18px; }
.menu-page__intro .display {
  font-size: clamp(48px, 7vw, 86px);
  line-height: 1.02;
  margin: 0 0 20px;
  max-width: 14ch;
}
.menu-page__lead {
  font-size: clamp(17px, 1.3vw, 19px);
  color: var(--ink-soft);
  line-height: 1.55;
  max-width: 56ch;
  margin: 0;
}

/* ---- Back-to-home link in menu hero ---- */
.menu-page__back {
  display: flex;
  width: fit-content;
  max-width: 100%;
  align-items: center;
  gap: 8px;
  margin: 0 0 28px;
  padding: 8px 14px 8px 10px;
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 12.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--ink-soft);
  background: var(--bg-card);
  box-shadow: inset 0 0 0 1px var(--line-soft);
  text-decoration: none;
  transition: color .25s var(--ease), background-color .25s var(--ease), transform .25s var(--ease), box-shadow .25s var(--ease);
}
.menu-page__back svg {
  width: 14px; height: 14px;
  transition: transform .35s var(--ease);
}
.menu-page__back:hover {
  color: var(--ink);
  background: var(--bg);
  box-shadow: inset 0 0 0 1px var(--line);
  transform: translateX(-3px);
}
.menu-page__back:hover svg { transform: translateX(-2px); }

.menu-page__body {
  padding: clamp(20px, 3vw, 36px) var(--pad-x) clamp(40px, 5vw, 64px);
  max-width: 780px;
  margin: 0 auto;
  position: relative;
}

.menu-page__footnote {
  margin: 40px 0 0;
  padding-top: 22px;
  border-top: 1px solid var(--line-soft);
  font-size: 13px;
  color: var(--ink-mute);
  line-height: 1.55;
  text-align: center;
  font-style: italic;
}

/* ---- Menu CTA (on the menu page) ---- */
.order--menu {
  padding: clamp(32px, 4vw, 56px) var(--pad-x) clamp(56px, 7vw, 96px);
}

/* ---- Decorative side accents (only on wide screens) ---- */
.menu-page__decor {
  position: absolute;
  pointer-events: none;
  user-select: none;
  font-family: var(--serif);
  font-style: italic;
  color: var(--accent);
  opacity: 0.08;
  z-index: 0;
}
.menu-page__decor svg { display: block; width: 100%; height: 100%; }
.menu-page__decor--top-right {
  top: 80px; right: 2vw;
  width: clamp(120px, 14vw, 200px); height: clamp(120px, 14vw, 200px);
  animation: decor-float 14s ease-in-out infinite;
}
.menu-page__decor--mid-left {
  top: 38%; left: 2vw;
  width: clamp(100px, 11vw, 160px); height: clamp(100px, 11vw, 160px);
  animation: decor-float 18s ease-in-out infinite reverse;
}
.menu-page__decor--bot-right {
  bottom: 18%; right: 3vw;
  width: clamp(80px, 9vw, 130px); height: clamp(80px, 9vw, 130px);
  animation: decor-float 16s ease-in-out infinite;
  animation-delay: -5s;
}
@keyframes decor-float {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  33%      { transform: translate(8px, -10px) rotate(3deg); }
  66%      { transform: translate(-6px, 8px) rotate(-2deg); }
}
@media (max-width: 1100px) {
  .menu-page__decor { display: none; }
}

/* small mark on the left of every category header (subtle accent) */
.menu-page__body .menu-cat__head {
  position: relative;
}
.menu-page__body .menu-cat__head::before {
  content: "";
  position: absolute;
  left: -18px;
  top: 8px;
  width: 3px;
  height: calc(100% - 18px);
  background: linear-gradient(180deg, var(--accent), transparent);
  border-radius: 2px;
  opacity: 0;
  transform: scaleY(0.6);
  transform-origin: top;
  transition: opacity .6s var(--ease), transform .6s var(--ease);
}
@media (min-width: 720px) {
  .menu-page__body .menu-cat:hover .menu-cat__head::before,
  .menu-page__body .menu-cat__head::before {
    opacity: 1;
    transform: scaleY(1);
  }
}
@media (max-width: 720px) {
  .menu-page__body .menu-cat__head::before { display: none; }
}

/* ---- Sticky category chip navigation ---- */
.menu-nav--page {
  position: sticky;
  top: var(--nav-h);
  z-index: 5;
  background: rgba(244, 238, 226, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line-soft);
  border-top: 1px solid var(--line-soft);
}
.menu-nav--page .menu-nav__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 14px var(--pad-x);
  display: flex;
  gap: 6px;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.menu-nav--page .menu-nav__inner::-webkit-scrollbar { display: none; }
.menu-nav__chip {
  flex-shrink: 0;
  padding: 8px 14px;
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 11.5px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  font-weight: 500;
  background: var(--bg-card);
  color: var(--ink-soft);
  border: 1px solid var(--line-soft);
  cursor: pointer;
  white-space: nowrap;
  transition: background-color .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
}
.menu-nav__chip:hover,
.menu-nav__chip.is-active {
  background: var(--ink);
  color: var(--bg-card);
  border-color: var(--ink);
}

/* ---- Menu categories & items ---- */
.menu-cat {
  margin-bottom: 44px;
  scroll-margin-top: calc(var(--nav-h) + var(--chip-nav-h, 56px) + 16px);
}
.menu-cat:last-child { margin-bottom: 12px; }
.menu-cat__head {
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line-soft);
}
.menu-cat__name {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 28px;
  line-height: 1.1;
  color: var(--ink);
  margin: 0 0 6px;
  letter-spacing: -0.01em;
}
.menu-cat__name em {
  font-style: italic;
  color: var(--accent-2);
}
.menu-cat__note {
  font-size: 13px;
  color: var(--ink-soft);
  font-style: italic;
  margin: 0;
}
.menu-list {
  display: grid;
  gap: 0;
}
.menu-item {
  display: grid;
  grid-template-columns: 1fr auto;
  column-gap: 16px;
  padding: 12px 10px;
  margin: 0 -10px;
  border-bottom: 1px dashed var(--line-soft);
  border-radius: 8px;
  transition: background-color .25s var(--ease), transform .25s var(--ease);
}
.menu-item:last-child { border-bottom: 0; }
@media (hover: hover) and (pointer: fine) {
  .menu-item:hover {
    background: var(--bg-card);
    transform: translateX(4px);
  }
  .menu-item:hover .menu-item__price { color: var(--accent-2); }
}
.menu-item__price { transition: color .25s var(--ease); }
.menu-item__name {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.3;
  color: var(--ink);
  margin: 0;
  grid-column: 1;
  align-self: center;
}
.menu-item__price {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 15px;
  color: var(--ink);
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
  grid-column: 2;
  align-self: center;
}
.menu-item__desc {
  grid-column: 1 / -1;
  font-size: 12.5px;
  color: var(--ink-soft);
  line-height: 1.45;
  margin: 4px 0 0;
}
.menu-item__tag {
  display: inline-block;
  margin-left: 8px;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-2);
  font-weight: 500;
  vertical-align: 2px;
}

/* narrow screens — menu page adjustments */
@media (max-width: 560px) {
  .menu-page__intro .display { font-size: clamp(38px, 10vw, 52px); }
  .menu-cat__name { font-size: 24px; }
  .menu-item__name { font-size: 16px; }
  .menu-nav--page .menu-nav__inner { padding: 12px var(--pad-x); }
}

/* =================== Cookie banner =================== */
.cookie {
  position: fixed;
  left: 14px;
  right: 14px;
  bottom: calc(14px + env(safe-area-inset-bottom, 0px));
  z-index: 60;
  background: var(--ink);
  color: var(--bg-card);
  border-radius: var(--radius);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.04) inset,
    0 24px 60px -20px rgba(31, 22, 18, 0.45);
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: opacity .4s var(--ease), transform .5s var(--ease-spring);
}
.cookie[hidden] { display: none; }
.cookie.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.cookie__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  padding: 18px 22px;
  max-width: var(--max);
  margin: 0 auto;
}
.cookie__text { flex: 1 1 320px; min-width: 0; }
.cookie__text strong {
  display: block;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 18px;
  margin-bottom: 4px;
  color: var(--bg-card);
}
.cookie__text p {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.5;
  color: rgba(251, 246, 236, 0.78);
}
.cookie__actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
.cookie__btn {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  padding: 10px 20px;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  transition: background-color .25s var(--ease), color .25s var(--ease), transform .25s var(--ease);
}
.cookie__btn:active { transform: scale(0.96); }
.cookie__btn--ghost {
  background: transparent;
  color: rgba(251, 246, 236, 0.78);
  box-shadow: inset 0 0 0 1px rgba(251, 246, 236, 0.18);
}
.cookie__btn--ghost:hover {
  color: var(--bg-card);
  box-shadow: inset 0 0 0 1px rgba(251, 246, 236, 0.4);
}
.cookie__btn--primary {
  background: var(--bg-card);
  color: var(--ink);
}
.cookie__btn--primary:hover { background: var(--accent-soft); }

@media (max-width: 560px) {
  .cookie__inner { padding: 16px 18px; gap: 14px; }
  .cookie__text strong { font-size: 16px; }
  .cookie__text p { font-size: 13px; }
  .cookie__actions { width: 100%; }
  .cookie__btn { flex: 1 1 0; }
}

@media (prefers-reduced-motion: reduce) {
  .cookie { transition: opacity .2s; transform: none; }
}
