/* ============================================================
   ERAN'S KITCHEN — Microsite styles
   Editorial / awwwards-style, mobile-first
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--color-cream);
  color: var(--color-espresso);
  font-family: var(--font-serif);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overscroll-behavior-y: none;
}

html { scroll-behavior: smooth; }

body {
  /* paper texture using subtle linear gradients on top of cream */
  background:
    radial-gradient(120% 80% at 50% 0%, rgba(175,86,42,0.06) 0%, transparent 60%),
    var(--color-cream);
  min-height: 100lvh;
}

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

::selection { background: var(--color-terracotta); color: var(--color-cream); }

/* ── Grain overlay ───────────────────────────────────────── */
.grain {
  pointer-events: none;
  position: fixed; inset: 0;
  z-index: 100;
  opacity: 0.06;
  background-image: url("assets/bg-knife-pattern.png");
  background-size: 320px;
  mix-blend-mode: multiply;
}

/* ── Marquee (top bar) ───────────────────────────────────── */
.marquee {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 50;
  background: var(--color-espresso);
  color: var(--color-cream);
  height: 32px;
  padding-top: env(safe-area-inset-top, 0px);
  height: calc(32px + env(safe-area-inset-top, 0px));
  overflow: hidden;
  display: flex; align-items: center;
  border-bottom: 1px solid rgba(251,244,233,0.08);
}
.marquee__track {
  display: inline-flex;
  align-items: center;
  gap: 28px;
  white-space: nowrap;
  font-family: var(--font-ui);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding-left: 100%;
  animation: marquee 36s linear infinite;
}
.marquee__track span { display: inline-flex; align-items: center; line-height: 1; }
.marquee__track span:nth-child(even) {
  color: var(--color-terra-500); /* asterisk */
  font-size: 9px;
  transform: translateY(-1px); /* glyph optical centering */
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── Pages container (vertical snap) ─────────────────────── */
.pages {
  --marquee-h: calc(32px + env(safe-area-inset-top, 0px));
  height: 100lvh;
  overflow-y: auto;
  overflow-x: hidden;
  padding-top: var(--marquee-h); /* marquee */
  scroll-padding-top: var(--marquee-h);
  scrollbar-width: none;
}
.pages::-webkit-scrollbar { display: none; }
.pages__inner { display: block; }

.page {
  position: relative;
}

/* ============================================================
   PAGE 01 — LANDING
   ============================================================ */
.page--landing {
  min-height: calc(100lvh - var(--marquee-h, 32px));
  height: calc(100lvh - var(--marquee-h, 32px));
  display: grid;
  grid-template-rows: auto 1fr auto auto;
  padding: 18px 22px 14px;
  gap: 0;
}

/* Editorial chrome */
.chrome {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-ui);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-terra-700);
}
.chrome__l, .chrome__r { display: flex; align-items: center; gap: 10px; }
.chrome__sep {
  width: 24px; height: 1px;
  background: var(--color-terra-600);
  display: inline-block;
}
.chrome__num { font-weight: 500; }
.chrome__label { color: var(--color-espresso); opacity: 0.55; }

/* Open / Closed status badge (replaces "EST. 2024") */
.status { gap: 8px; }
.status__dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--color-terracotta);
  display: inline-block;
  position: relative;
  flex-shrink: 0;
}
.status__label {
  font-family: var(--font-ui);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-espresso);
}
.status[data-open="true"] .status__dot { background: #4ca64c; }
.status[data-open="true"] .status__dot::after {
  content: "";
  position: absolute; inset: -4px;
  border-radius: 50%;
  border: 1px solid #4ca64c;
  opacity: 0.5;
  animation: status-pulse 2.4s ease-out infinite;
}
.status[data-open="false"] .status__dot { background: #d23b3b; }
.status[data-open="false"] .status__label { opacity: 0.7; }
@keyframes status-pulse {
  0%   { transform: scale(0.7); opacity: 0.6; }
  100% { transform: scale(1.7); opacity: 0; }
}

/* Hero block */
.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: center;
  padding: 18px 0 10px;
  gap: 18px;
  min-height: 0;
}

.hero__logos {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.eyebrow {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--color-terra-700);
  margin: 0;
}
.eyebrow--center { text-align: center; }

.hero__mark {
  width: clamp(96px, 26vw, 132px);
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
  margin: 0;
}
.hero__stamp {
  width: 100%; height: 100%;
  filter: drop-shadow(0 1px 0 rgba(40,24,15,0.04));
}

.hero__title {
  margin: 0;
  display: flex;
  justify-content: center;
  color: var(--color-espresso);
}
.hero__wordmark {
  width: clamp(220px, 60vw, 320px);
  height: auto;
  color: var(--color-espresso);
  display: block;
}

.hero__tag {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 14px;
  line-height: 1.55;
  color: var(--color-espresso);
  opacity: 0.78;
}
.hero__tag em {
  color: var(--color-terracotta);
  font-style: italic;
}

/* Actions */
.actions {
  display: flex; flex-direction: column;
  gap: 10px;
  padding-top: 8px;
}
.actions__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.actions__row--split {
  grid-template-columns: 1.4fr 1fr;
}
.actions__split { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }

/* On small phones the Call/WhatsApp pair gets crushed next to the wide
   "Bulk Order" CTA. Stack the bulk button on top and let Call + WhatsApp
   share their own row underneath. */
@media (max-width: 480px) {
  .actions__row--split {
    grid-template-columns: 1fr;
  }
  /* Match the Call/WhatsApp pill height when stacked above them. */
  .actions__row--split > .cta--ghost {
    min-height: 64px;
  }
}

/* CTA buttons */
.cta {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 14px 16px;
  font-family: var(--font-serif);
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.01em;
  border-radius: 0;
  transition: transform .35s cubic-bezier(.2,.8,.2,1),
              background .35s ease,
              color .35s ease,
              border-color .35s ease;
  overflow: hidden;
  isolation: isolate;
}
.cta::before {
  content: "";
  position: absolute; inset: 0;
  background: var(--color-espresso);
  transform: translateY(101%);
  transition: transform .5s cubic-bezier(.7,0,.2,1);
  z-index: -1;
}
.cta:active { transform: scale(.985); }
.cta:hover::before, .cta:focus-visible::before { transform: translateY(0); }
.cta:hover, .cta:focus-visible { color: var(--color-cream); border-color: var(--color-espresso); }

.cta__kicker {
  font-family: var(--font-ui);
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  display: block;
  opacity: 0.7;
  margin-bottom: 4px;
}
.cta__label { display: block; line-height: 1.1; }
.cta__arrow {
  font-family: var(--font-ui);
  font-size: 16px;
  transition: transform .35s cubic-bezier(.2,.8,.2,1);
}
.cta:hover .cta__arrow { transform: translateX(4px); }

/* Stack kicker+label on the left */
.cta--primary {
  background: var(--color-terracotta);
  color: var(--color-cream);
  flex-direction: row;
  align-items: flex-end;
  justify-content: space-between;
  padding: 16px;
  min-height: 64px;
}
.cta--primary > span:first-child + .cta__label,
.cta--primary .cta__label { font-size: 18px; }
.cta--primary .cta__kicker { color: var(--color-cream); opacity: .8; }
.cta--primary > .cta__arrow { align-self: flex-end; }
.cta--primary .cta__kicker + .cta__label { margin-top: 0; }

/* re-layout: kicker+label stacked, arrow at bottom-right */
.cta--primary {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto;
  align-items: end;
}
.cta--primary .cta__kicker { grid-column: 1; grid-row: 1; }
.cta--primary .cta__label  { grid-column: 1; grid-row: 2; }
.cta--primary .cta__arrow  { grid-column: 2; grid-row: 1 / span 2; align-self: end; font-size: 20px; }

.cta--primary::before { background: var(--color-espresso); }

.cta--ghost {
  background: transparent;
  color: var(--color-espresso);
  border: 1px solid var(--color-espresso);
}
.cta--ghost::before { background: var(--color-terracotta); }
.cta--ghost:hover, .cta--ghost:focus-visible { color: var(--color-cream); border-color: var(--color-terracotta); }

.cta--icon {
  background: transparent;
  color: var(--color-espresso);
  border: 1px solid rgba(40,24,15,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 12px;
  min-height: 64px;
  font-size: 14px;
}
.cta--icon svg { transition: transform .35s ease; }
.cta--icon:hover svg { transform: scale(1.1) rotate(-4deg); }
.cta--icon::before { background: var(--color-espresso); }

.cta--whatsapp { color: var(--color-espresso); }
.cta--whatsapp:hover { color: var(--color-cream); }

.cta--compact {
  padding: 12px 14px;
  min-height: auto;
  font-size: 13px;
}

/* Social rail */
.social {
  display: flex;
  flex-direction: column;
  margin-top: 6px;
}
.social li { border-bottom: 1px solid rgba(40,24,15,0.12); }
.social li:last-child { border-bottom: 0; }
.social a {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 12px 2px;
  transition: padding .35s cubic-bezier(.2,.8,.2,1), color .35s ease;
}
.social a:hover { padding-left: 10px; color: var(--color-terracotta); }
.social a > span:nth-child(2) {
  font-family: var(--font-serif);
  font-size: 14px;
  font-weight: 500;
}
.social__handle {
  font-family: var(--font-ui);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-terra-700);
  opacity: 0.85;
}

/* Scroll hint */
.scroll-hint {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-top: 36px;
  font-family: var(--font-ui);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-terra-700);
}
.scroll-hint__line {
  width: 1px;
  height: 22px;
  background: linear-gradient(to bottom, var(--color-terracotta), transparent);
  animation: scrollPulse 2.4s ease-in-out infinite;
  transform-origin: top;
}
@keyframes scrollPulse {
  0%, 100% { transform: scaleY(0.3); opacity: 0.4; }
  50%      { transform: scaleY(1);   opacity: 1; }
}

/* ============================================================
   PAGE 02 — BULK ORDER MENU
   ============================================================ */
.page--menu {
  background: var(--color-cream);
  padding: 0;
  min-height: calc(100lvh - var(--marquee-h, 32px));
}

.menu-head {
  position: relative;
  padding: 24px 22px 28px;
  background: var(--color-espresso);
  color: var(--color-cream);
  text-align: center;
}
.menu-head__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-ui);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-terra-300);
  margin-bottom: 44px;
}
.menu-head__back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--color-cream);
  padding: 6px 0;
  transition: color .3s ease, gap .3s ease;
}
.menu-head__back:hover { color: var(--color-terra-300); gap: 10px; }
.menu-head__num { color: var(--color-terra-500); }

.menu-head__eyebrow {
  color: var(--color-terra-300);
  margin-bottom: 22px;
}
.menu-head__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(42px, 13vw, 72px);
  line-height: 0.88;
  margin: 0 0 28px;
  letter-spacing: -0.005em;
  color: var(--color-cream);
}
.menu-head__title em {
  font-family: var(--font-display);
  font-style: normal;
  font-weight: 400;
  font-size: 1em;
  color: var(--color-terra-300);
  letter-spacing: 0;
}
.menu-head__sub {
  max-width: 32ch;
  margin: 0 auto 34px;
  font-family: var(--font-serif);
  font-size: 14px;
  line-height: 1.5;
  color: var(--color-terra-200);
  text-wrap: pretty;
}
.menu-head__cta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  max-width: 360px;
  margin: 0 auto;
}
.menu-head__cta .cta--primary {
  background: var(--color-terracotta);
  border: 1px solid var(--color-terracotta);
  /* The base .cta--primary uses a kicker+label+arrow grid; these
     compact buttons only have a label, so revert to flex centering. */
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.menu-head__cta .cta--primary::before { background: var(--color-cream); }
.menu-head__cta .cta--primary:hover, .menu-head__cta .cta--primary:focus-visible { color: var(--color-espresso); }
.menu-head__cta .cta--primary .cta__label { font-size: 14px; }

.menu-head__cta .cta--ghost {
  border-color: var(--color-cream);
  color: var(--color-cream);
}
.menu-head__cta .cta--ghost::before { background: var(--color-cream); }
.menu-head__cta .cta--ghost:hover, .menu-head__cta .cta--ghost:focus-visible { color: var(--color-espresso); border-color: var(--color-cream); }
.menu-head__cta .cta--ghost .cta__label { font-size: 14px; }

/* Sticky category indicator */
.cat-indicator {
  position: sticky;
  top: 0;
  z-index: 5;
  opacity: 0;
  pointer-events: none;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 22px;
  background: var(--color-cream);
  border-bottom: 1px solid rgba(40,24,15,0.1);
  font-family: var(--font-ui);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-espresso);
  backdrop-filter: blur(8px);
  transition: opacity .3s ease;
}
.cat-indicator__dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--color-terracotta);
  box-shadow: 0 0 0 4px rgba(175,86,42,0.15);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1);   box-shadow: 0 0 0 4px rgba(175,86,42,0.15); }
  50%      { transform: scale(1.2); box-shadow: 0 0 0 8px rgba(175,86,42,0); }
}
.cat-indicator__label {
  transition: opacity .3s ease, transform .3s ease;
}

/* Menu list */
.menu {
  padding: 24px 0 32px;
}
.menu__cat {
  padding: 28px 22px 32px;
  border-bottom: 1px solid rgba(40,24,15,0.1);
}
.menu__cat:last-of-type { border-bottom: 0; }
.menu__cat-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 28px;
}
.menu__cat-num {
  font-family: var(--font-ui);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-terra-700);
  white-space: nowrap;
}
.menu__cat-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(40px, 13vw, 68px);
  line-height: 0.9;
  margin: 0;
  color: var(--color-espresso);
  letter-spacing: -0.005em;
}
.menu__cat-title em {
  font-family: var(--font-display);
  font-style: normal;
  font-weight: 400;
  color: var(--color-terracotta);
}
.menu__rule {
  width: 64px; height: 8px;
  margin: -18px 0 24px;
  background:
    radial-gradient(ellipse 32px 4px at 50% 50%, var(--color-terracotta) 0%, var(--color-terracotta) 50%, transparent 60%),
    transparent;
  -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 8'><path d='M0 4 Q 16 0, 32 4 T 64 4' stroke='black' fill='none' stroke-width='2' stroke-linecap='round'/></svg>");
          mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 8'><path d='M0 4 Q 16 0, 32 4 T 64 4' stroke='black' fill='none' stroke-width='2' stroke-linecap='round'/></svg>");
}

.menu__items {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.menu__item {
  position: relative;
  padding-left: 0;
}
.menu__item-name {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 16px;
  line-height: 1.2;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-espresso);
  margin: 0 0 8px;
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.menu__item-name::before {
  content: "";
  display: inline-block;
  width: 18px; height: 1px;
  background: var(--color-terracotta);
  flex-shrink: 0;
  transform: translateY(-4px);
  transition: width .5s cubic-bezier(.2,.8,.2,1);
}
.menu__item:hover .menu__item-name::before { width: 32px; }
.menu__item-desc {
  font-family: var(--font-serif);
  font-size: 14px;
  line-height: 1.55;
  color: var(--color-espresso);
  opacity: 0.75;
  margin: 0;
  padding-left: 28px;
  text-wrap: pretty;
}

/* Footer */
.menu-foot {
  background: var(--color-espresso);
  color: var(--color-cream);
  padding: 64px 22px 48px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}
.menu-foot__mark {
  width: 180px;
  color: var(--color-cream);
  opacity: 0.95;
}
.menu-foot__quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 18px;
  line-height: 1.4;
  color: var(--color-terra-200);
  margin: 0;
  max-width: 24ch;
}
.menu-foot__hours {
  border-top: 1px solid rgba(251,244,233,0.12);
  border-bottom: 1px solid rgba(251,244,233,0.12);
  padding: 22px 0;
  width: 100%;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.menu-foot__hours-title {
  font-family: var(--font-ui);
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--color-terra-500);
  margin: 0;
  text-align: center;
}
.menu-foot__hours ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-family: var(--font-ui);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.menu-foot__hours li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
}
.menu-foot__hours li > span:first-child { color: var(--color-terra-300); }
.menu-foot__hours li > span:last-child { color: var(--color-cream); }
.menu-foot__links {
  display: flex; gap: 18px;
  font-family: var(--font-ui);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.menu-foot__links a { transition: color .3s ease; }
.menu-foot__links a:hover { color: var(--color-terra-300); }
.menu-foot__sig {
  font-family: var(--font-ui);
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--color-terra-500);
  margin: 0;
}

/* ── Floating back-to-top (visible only on page 2) ───────── */
.back-to-top {
  position: fixed;
  right: 18px;
  bottom: max(18px, env(safe-area-inset-bottom));
  z-index: 60;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-espresso);
  color: var(--color-cream);
  border: 1px solid var(--color-espresso);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transform: translateY(14px) scale(0.92);
  pointer-events: none;
  transition:
    opacity .35s ease,
    transform .4s cubic-bezier(.2,.8,.2,1),
    background .3s ease,
    border-color .3s ease;
  box-shadow: 0 8px 22px rgba(40,24,15,0.22);
}
.back-to-top.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.back-to-top:hover,
.back-to-top:focus-visible {
  background: var(--color-terracotta);
  border-color: var(--color-terracotta);
  outline: 0;
}
.back-to-top:active { transform: scale(0.94); }
.back-to-top svg { transition: transform .3s cubic-bezier(.2,.8,.2,1); }
.back-to-top:hover svg { transform: translateY(-3px); }

@media (min-width: 720px) {
  .back-to-top { right: 28px; bottom: max(28px, env(safe-area-inset-bottom)); width: 52px; height: 52px; }
}

/* ============================================================
   REVEAL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity .9s cubic-bezier(.2,.8,.2,1),
    transform .9s cubic-bezier(.2,.8,.2,1);
  transition-delay: var(--d, 0s);
  will-change: transform, opacity;
}
.reveal[data-reveal="scale"] {
  transform: scale(.94);
}
.reveal.is-in {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Menu category reveal */
.menu__cat {
  opacity: 0;
  transform: translateY(36px);
  transition:
    opacity 1s cubic-bezier(.2,.8,.2,1),
    transform 1s cubic-bezier(.2,.8,.2,1);
}
.menu__cat.is-in {
  opacity: 1;
  transform: translateY(0);
}

.menu__item {
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity .8s cubic-bezier(.2,.8,.2,1),
    transform .8s cubic-bezier(.2,.8,.2,1);
}
.menu__cat.is-in .menu__item {
  opacity: 1;
  transform: translateY(0);
  transition-delay: calc(var(--i, 0) * 60ms + 120ms);
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
  .reveal, .menu__cat, .menu__item { opacity: 1; transform: none; }
}

/* ============================================================
   DESKTOP TASTE (still mobile-first; enlarges on bigger screens)
   ============================================================ */
@media (min-width: 720px) {
  .pages { /* keep snap */ }

  .page--landing {
    padding: 28px 56px 36px;
    max-width: 720px;
    margin: 0 auto;
  }

  /* Hero gets more breathing room and bigger logos on desktop */
  .hero {
    padding: 28px 0 16px;
    gap: 32px;
  }
  .hero__logos { gap: 24px; }
  .hero__mark { width: clamp(150px, 18vw, 200px); }
  .hero__wordmark { width: clamp(340px, 40vw, 460px); }
  .hero__tag { font-size: 16px; }

  .menu-head { padding: 56px 56px 64px; }
  .menu-head__title { font-size: 76px; }
  .menu__cat { padding: 56px 56px 64px; max-width: 720px; margin: 0 auto; }
  .cat-indicator { padding: 12px 56px; }
  .menu-foot { padding: 80px 56px 56px; }
}

/* ============================================================
   SMALL-HEIGHT PHONES — progressively drop optional pieces so
   the hero, primary CTAs and scroll hint still fit in the
   viewport on shorter devices.
   ============================================================ */

/* ≤820px tall: hide the "Bulk Order Menu" ghost button so the
   Call/WhatsApp pair takes over its row. */
@media (max-width: 720px) and (max-height: 820px) {
  .actions__row--split { grid-template-columns: 1fr; }
  .actions__row--split > .cta--ghost { display: none; }
}

/* ≤720px tall: also hide the wordmark logo and the hero eyebrow. */
@media (max-width: 720px) and (max-height: 720px) {
  .hero__title,
  .hero > .eyebrow { display: none; }
}
