/* ==========================================================================
   Star Cafe — built on the "Steep" design system (serif analytics on warm
   paper), adapted for a brunch, bakery and halal restaurant.

   The one rule that governs everything here: the dish photography sits on a
   flat neutral backdrop measured at #f1f1f1–#f3f3f3. Card surfaces are held
   at Mist (#f2f2f3) so the photo edge disappears and the plate appears to
   float directly on the card. Do not warm the card or thumbnail surfaces —
   warmth comes from the serif and the Blush accent, never from the greys.
   ========================================================================== */

:root {
  /* Steep palette */
  --ink:    #17191c;   /* primary text, filled buttons */
  --paper:  #ffffff;   /* page canvas */
  --mist:   #f2f2f3;   /* card surface — matches the photo backdrop */
  --fog:    #fafafb;   /* alternating section band */
  /* Steep publishes these three as #777b86 / #979799 / #a3a6af, which measure
     4.23, 2.92 and 2.43 against white — all below the 4.5 WCAG AA needs for
     normal text. Darkened to the nearest hue-preserving values that pass on
     paper, mist and fog alike. */
  --slate:  #61656f;   /* body / muted        — 5.83 on paper, 4.81 on #eaeaea */
  --ash:    #707073;   /* tertiary labels     — 4.94 on paper, 4.73 on fog  */
  --smoke:  #6f727b;   /* placeholder, muted  — 4.77 on paper               */
  --peach:  #fbe1d1;   /* the only chromatic surface — once per page */
  --sienna: #5d2a1a;   /* type and strokes on peach */
  --hair:   #ececec;   /* hairline borders */

  /* Radius */
  --r-pill:  9999px;
  --r-card:  24px;
  --r-float: 20px;
  --r-input: 16px;
  --r-sm:    16px;
  --r-img:   12px;

  /* Spacing — 4px base */
  --gap-section: 80px;
  --max: 1200px;

  /* Only floating artifacts earn elevation */
  /* Steep's dropdown/popover elevation, reused for the floating status pill. */
  --shadow-pop: 0 0 0 1px oklab(0 0 0 / .05), 0 4px 24px rgba(0, 0, 0, .08);

  --open:   #2f7d4f;
  --closed: #9a5a3c;

  --shadow-float:
    0 0 0 1px rgba(4, 23, 43, .05),
    0 20px 25px -5px rgba(0, 0, 0, .1),
    0 8px 10px -6px rgba(0, 0, 0, .1);

  /* Steep runs everything on one short curve; matching it is most of why a
     page reads as "considered" rather than "animated". */
  --ease: cubic-bezier(.4, 0, .2, 1);
  --ease-out: cubic-bezier(.22, 1, .36, 1);
  --t-fast: .15s;
  --t-mid: .25s;

  /* Film grain, lifted from steep.app: fractal noise, desaturated, hard alpha.
     Laid over section backgrounds at overlay/0.55 it stops flat white from
     reading as a blank div and starts it reading as paper. */
  --grain: url("data:image/svg+xml,<svg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.91' numOctaves='2' seed='10' stitchTiles='stitch'/><feColorMatrix type='saturate' values='0'/><feComponentTransfer><feFuncA type='discrete' tableValues='0 1'/></feComponentTransfer></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");

  --serif: "Source Serif 4", "Signifier", "GT Sectra", "Tiempos Headline", ui-serif, Georgia, serif;
  --sans:  "Inter", "Sohne", ui-sans-serif, system-ui, -apple-system, sans-serif;
}

/* ---------- reset ---------- */

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

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  /* Anything that starts hidden and is revealed by motion must be shown
     outright, or reducing motion would hide half the page. */
  .js [data-reveal], .js .display .w { opacity: 1 !important; transform: none !important; }
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.35;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }

.wrap { width: 100%; max-width: var(--max); margin-inline: auto; padding-inline: 24px; }

.band     { padding-block: var(--gap-section); position: relative; }

/* Steep never paints a flat band: every tinted section is a soft vertical
   wash into white. */
.band--fog{ background: linear-gradient(to bottom, #f7f7f8, var(--paper)); }

/* Grain sits on the section background, beneath the content.

   `isolation: isolate` confines the negative z-index to this element, so the
   layer lands above the section's own background but below everything in it.
   Doing it this way means children need no positioning of their own — an
   earlier version set `position: relative` on every child and only avoided
   breaking the sticky menu bar by accident of source order. */
.grain { position: relative; isolation: isolate; }
.grain::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image: var(--grain);
  background-size: 160px 160px;
  opacity: .13;
  mix-blend-mode: multiply;
}

/* ---------- type ---------- */

/* Signifier stands in as Source Serif 4. Weight never exceeds 400 — the
   letterforms carry the authority, not boldness. */
.display, .h-lg, .h, .h-sm {
  font-family: var(--serif);
  font-weight: 400;
  margin: 0;
}
.display { font-size: clamp(44px, 7.4vw, 90px); line-height: 1.08; letter-spacing: -2.25px; }
.h-lg    { font-size: clamp(34px, 4.6vw, 64px); line-height: 1.16; letter-spacing: -.96px; }
.h       { font-size: clamp(28px, 3.2vw, 44px); line-height: 1.3;  letter-spacing: -.66px; }
.h-sm    { font-size: 26px; line-height: 1.18; letter-spacing: -.23px; }

.display em, .h-lg em, .h em { font-style: italic; }

/* Half-step Inter weights give hierarchy before ever reaching bold. */
.lede    { font-size: 20px; font-weight: 450; line-height: 1.45; color: var(--slate); margin: 0; }
.body    { font-size: 17px; line-height: 1.5; color: var(--slate); margin: 0; }
.caption { font-size: 15px; line-height: 1.5; color: var(--slate); margin: 0; }

/* Typographic tags, not badges. */
.tag {
  font-size: 13px;
  font-weight: 480;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ash);
  margin: 0;
}

/* ---------- buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid transparent;
  border-radius: var(--r-pill);
  padding: 12px 20px;
  font: inherit;
  font-size: 16px;
  font-weight: 450;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  transition: background-color var(--t-fast) var(--ease), color var(--t-fast) var(--ease),
              border-color var(--t-fast) var(--ease), transform var(--t-fast) var(--ease);
}
.btn--fill  { background: var(--ink); color: var(--paper); }
.btn--fill:hover  { background: #2b2e33; }
.btn:active { transform: translateY(1px); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: var(--paper); }
.btn__meta  { font-size: 13px; opacity: .62; }

/* Arrow suffix carries the affordance; underline only on hover. */
.link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 16px;
  font-weight: 450;
  color: var(--ink);
  text-decoration: none;
}
.link:hover { text-decoration: underline; text-underline-offset: 3px; }


:where(a, button, input, summary):focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---------- header ---------- */

/* Transparent bar: no background, border or shadow at rest. */
.hdr {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, .82);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease;
}
.hdr[data-scrolled="true"] { border-bottom-color: var(--hair); }

.hdr__in { display: flex; align-items: center; gap: 24px; height: 72px; }

.mark { display: flex; align-items: baseline; gap: 10px; text-decoration: none; margin-right: auto; }
.mark__name { font-family: var(--serif); font-size: 27px; letter-spacing: -.4px; }
.mark__sub  { font-size: 11px; font-weight: 500; letter-spacing: .14em; text-transform: uppercase; color: var(--ash); }

.nav { display: flex; gap: 28px; }
.nav a { font-size: 16px; font-weight: 450; color: var(--ink); text-decoration: none; }
.nav a:hover { text-decoration: underline; text-underline-offset: 3px; }

@media (max-width: 860px) { .nav { display: none; } }

/* ---------- motion ----------

   Three moves, all borrowed from steep.app and all kept short:

   1. The headline arrives a word at a time, each word rising and fading in
      on a stagger. On steep.app the words travel ~1.3em; here they travel
      0.5em, because a menu headline should settle faster than a SaaS pitch.
   2. Sections and cards enter with a 12px rise (their `fade-in-y`).
   3. Arrows in links slide out to the right and wrap back in from the left.

   All of it is opt-in via the `js` class, so with JavaScript off or motion
   reduced the page renders complete and still. */

@keyframes word-rise {
  from { opacity: 0; transform: translateY(.5em); }
  to   { opacity: 1; transform: none; }
}

.display .w { display: inline-block; white-space: pre; }
.js .display .w {
  animation: word-rise .85s var(--ease-out) backwards;
  animation-delay: calc(var(--i) * 65ms);
}

.js [data-reveal] {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
  transition-delay: calc(var(--i, 0) * 70ms);
}
.js [data-reveal].in { opacity: 1; transform: none; }

@keyframes arrow-slide {
  0%   { transform: translateX(0); }
  49%  { transform: translateX(180%); }
  50%  { transform: translateX(-180%); }
  100% { transform: translateX(0); }
}
.arrow { display: inline-block; overflow: hidden; width: .8em; vertical-align: baseline; }
.arrow i { display: inline-block; font-style: normal; }
.link:hover .arrow i,
.btn:hover .arrow i { animation: arrow-slide .5s var(--ease); }

/* ---------- hero ---------- */

.hero { padding-block: 72px 88px; position: relative; isolation: isolate; }

/* The single biggest thing separating steep.app from a plain white page is
   that the hero is never plain white. Theirs is a full-bleed gradient
   photograph; this is the same atmosphere mixed from Blush and Sienna so it
   reads as warm light rather than as SaaS candy. */
.hero::before {
  content: "";
  position: absolute;
  inset: -10% 0 0;
  z-index: -2;
  pointer-events: none;
  background:
    radial-gradient(48% 46% at 76% 14%, rgba(251, 225, 209, .95), transparent 68%),
    radial-gradient(42% 44% at 16% 6%,  rgba(248, 234, 220, .85), transparent 70%),
    radial-gradient(58% 50% at 46% 96%, rgba(253, 240, 232, .9),  transparent 72%),
    radial-gradient(34% 34% at 92% 66%, rgba(246, 226, 216, .7),  transparent 70%);
}
.hero::after {
  content: "";
  position: absolute;
  inset: -10% 0 0;
  z-index: -1;
  pointer-events: none;
  background-image: var(--grain);
  background-size: 160px 160px;
  opacity: .16;
  mix-blend-mode: multiply;
}
.hero__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.hero__copy > * + * { margin-top: 24px; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }

/* The one place a shadow is allowed: a floating artifact. */
.hero__shot {
  margin: 0;
  border-radius: var(--r-float);
  overflow: hidden;
  background: var(--mist);
  box-shadow: var(--shadow-float);
}
.hero__shot img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }

/* A small pill floating over the hero photograph. Steep gets its sense of
   depth from product cards laid over the hero; a cafe has no such artefact,
   but whether the room is open right now is real information and earns the
   same overlap. */
.status {
  position: absolute;
  left: 16px;
  bottom: 16px;
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 15px;
  border-radius: var(--r-pill);
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow-pop);
  font-size: 14px;
  font-weight: 450;
  color: var(--ink);
  white-space: nowrap;
}
.status::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--closed);
}
.status[data-open="true"]::before { background: var(--open); }
.status span { color: var(--slate); }

@media (max-width: 520px) { .status { left: 10px; bottom: 10px; font-size: 13px; } }

.rating { display: flex; flex-wrap: wrap; gap: 6px 20px; padding: 0; margin: 0; list-style: none; }
.rating li { display: flex; align-items: baseline; gap: 4px; font-size: 15px; color: var(--slate); }
.rating b { font-family: var(--serif); font-size: 21px; font-weight: 400; color: var(--ink); }
.rating__of { font-size: 13px; color: var(--ash); }
.rating__note { margin: 8px 0 0; font-size: 14px; color: var(--ash); }

@media (max-width: 900px) {
  .hero { padding-block: 40px 56px; }
  .hero__grid { grid-template-columns: 1fr; gap: 36px; }
}

/* ---------- order band ---------- */

.order__head { display: flex; flex-wrap: wrap; gap: 16px 32px; align-items: flex-end; justify-content: space-between; margin-bottom: 32px; }
.order__row  { display: flex; flex-wrap: wrap; gap: 12px; }

/* ---------- section heads ---------- */

.sec__head { max-width: 640px; margin-bottom: 40px; }
.sec__head .tag { margin-bottom: 14px; }
.sec__head .body { margin-top: 16px; }

/* ---------- signature cards ---------- */

.sig { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.card {
  /* Each card is handed its own photo's backdrop as --surface, so the plate
     has no visible edge. Mist is the fallback when no sample exists. */
  background: var(--surface, var(--mist));
  border-radius: var(--r-card);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-decoration: none;
}
.card__img {
  aspect-ratio: 16 / 9;
  width: 100%;
  object-fit: cover;
  background: var(--mist);
  transition: transform .6s var(--ease);
}
.card:hover .card__img { transform: scale(1.03); }
.card__body { padding: 20px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.card__top { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; }
.card__name { font-family: var(--serif); font-size: 22px; font-weight: 400; margin: 0; }
.card__price { font-size: 17px; font-weight: 500; white-space: nowrap; }
.card__desc { font-size: 15px; line-height: 1.5; color: var(--slate); margin: 0; }

@media (max-width: 900px) { .sig { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .sig { grid-template-columns: 1fr; } }

/* ---------- the room: the business's own editorial photography ----------

   These are framed photographs, not melted tiles. They come from textured
   stone tables and terrace light, so they carry a visible edge on purpose —
   the opposite treatment to the catalogue thumbnails in the menu, and the
   contrast between the two is deliberate. */

.room__wide {
  border-radius: var(--r-img);
  overflow: hidden;
  background: var(--mist);
  margin: 0 0 24px;
}
.room__wide img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transition: transform .8s var(--ease);
}
.room__wide:hover img { transform: scale(1.02); }

.room__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.shot { margin: 0; }
.shot { overflow: hidden; }
.shot > a, .shot picture, .shot span.frame {
  display: block;
  overflow: hidden;
  border-radius: var(--r-img);
}
.shot img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--r-img);
  background: var(--mist);
  transition: transform .7s var(--ease);
}
.shot:hover img { transform: scale(1.035); }
.shot figcaption {
  margin-top: 12px;
  font-size: 15px;
  line-height: 1.45;
  color: var(--slate);
}

@media (max-width: 900px) { .room__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .room__grid { grid-template-columns: 1fr; } }

/* ---------- peach accent — used exactly once ---------- */

/* Steep describes its Blush card as a "kraft-paper effect"; grain is what
   actually does that. Carried a little heavier here than on white, because
   the colour underneath can take it. */
.accent { position: relative; isolation: isolate; }
.accent::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  pointer-events: none;
  background-image: var(--grain);
  background-size: 160px 160px;
  opacity: .2;
  mix-blend-mode: multiply;
}

.accent {
  background: var(--peach);
  color: var(--sienna);
  border-radius: var(--r-card);
  padding: 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.accent .h { color: var(--sienna); }
.accent p  { color: var(--sienna); opacity: .86; margin: 16px 0 0; font-size: 17px; line-height: 1.5; }
.accent__list { margin: 0; padding: 0; list-style: none; display: grid; gap: 12px; }
.accent__list li { display: flex; gap: 12px; align-items: baseline; font-size: 16px; }
.accent__list li::before { content: "—"; opacity: .5; }

@media (max-width: 780px) { .accent { grid-template-columns: 1fr; padding: 32px; } }

/* ---------- menu ---------- */

.menu__bar {
  position: sticky;
  top: 73px;   /* 72px header + its always-reserved 1px border */
  z-index: 30;
  background: rgba(255, 255, 255, .9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--hair);
  margin-bottom: 40px;
}
.menu__bar-in { display: flex; align-items: center; gap: 16px; padding-block: 12px; }

.chips {
  display: flex;
  gap: 6px;
  overflow-x: auto;
  scrollbar-width: none;
  flex: 1;
  -webkit-mask-image: linear-gradient(to right, transparent 0, #000 20px, #000 calc(100% - 20px), transparent 100%);
          mask-image: linear-gradient(to right, transparent 0, #000 20px, #000 calc(100% - 20px), transparent 100%);
}
.chips::-webkit-scrollbar { display: none; }
.chip {
  flex: 0 0 auto;
  border: 1px solid transparent;
  background: transparent;
  border-radius: var(--r-pill);
  padding: 8px 14px;
  font: inherit;
  font-size: 14px;
  font-weight: 480;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--ash);
  cursor: pointer;
  white-space: nowrap;
  transition: color .16s ease, background-color .16s ease;
}
.chip:hover { color: var(--ink); }
.chip[aria-current="true"] { background: var(--ink); color: var(--paper); }

.search {
  flex: 0 0 220px;
  border: 1px solid var(--hair);
  border-radius: var(--r-input);
  padding: 10px 14px;
  font: inherit;
  font-size: 15px;
  color: var(--ink);
  background: var(--paper);
}
.search::placeholder { color: var(--smoke); }
@media (max-width: 720px) { .search { display: none; } }

.mgroup + .mgroup { margin-top: 64px; }
.mgroup__head { display: flex; align-items: baseline; justify-content: space-between; gap: 24px; padding-bottom: 16px; border-bottom: 1px solid var(--hair); margin-bottom: 8px; }
.mgroup__blurb { max-width: 520px; margin: 12px 0 20px; font-size: 15px; line-height: 1.5; color: var(--slate); }

.mlist { list-style: none; margin: 0; padding: 0; }

.mrow {
  display: grid;
  grid-template-columns: 92px 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid var(--hair);
}
.mrow:last-child { border-bottom: 0; }
.mrow { transition: background-color var(--t-mid) var(--ease); }
.mrow:hover { background: var(--fog); }
.mrow__img {
  width: 92px;
  aspect-ratio: 16 / 11;
  object-fit: cover;
  border-radius: var(--r-img);
  background: var(--mist);   /* photo backdrop and tile surface are the same grey */
}
.mrow__img--none { background: var(--mist); }
.mrow__name { font-size: 17px; font-weight: 500; margin: 0; display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.mrow__desc { font-size: 15px; line-height: 1.45; color: var(--slate); margin: 4px 0 0; max-width: 62ch; }
.mrow__price { font-size: 17px; font-weight: 500; white-space: nowrap; }

/* Typographic tag, not a badge — and it keeps Blush to a single use on the
   page, which the system asks for. */
.pop { font-size: 11px; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; color: var(--sienna); }

.mrow[hidden] { display: none; }

@media (max-width: 640px) {
  .mrow { grid-template-columns: 64px 1fr auto; gap: 14px; }
  .mrow__img { width: 64px; }
  .mrow__desc { font-size: 14px; }
}

.empty { padding: 48px 0; color: var(--slate); font-size: 17px; }

/* ---------- visit ---------- */

.visit { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; }
.visit dl { margin: 0; display: grid; gap: 24px; }
.visit dt { font-size: 13px; font-weight: 480; letter-spacing: .08em; text-transform: uppercase; color: var(--ash); margin-bottom: 6px; }
.visit dd { margin: 0; font-size: 17px; line-height: 1.5; }
.visit dd a { text-decoration: none; }
.visit dd a:hover { text-decoration: underline; text-underline-offset: 3px; }

.hours { list-style: none; margin: 0; padding: 0; display: grid; gap: 6px; }
.hours li { display: flex; justify-content: space-between; gap: 24px; max-width: 320px; font-size: 17px; }
.hours span:last-child { color: var(--slate); }

.chipset { display: flex; flex-wrap: wrap; gap: 8px; margin: 0; padding: 0; list-style: none; }
.chipset li { border: 1px solid var(--hair); border-radius: var(--r-pill); padding: 7px 14px; font-size: 14px; color: var(--slate); }

.map {
  border-radius: var(--r-card);
  overflow: hidden;
  background: var(--mist);
  min-height: 340px;
  display: block;
  border: 0;
  width: 100%;
}

@media (max-width: 860px) { .visit { grid-template-columns: 1fr; gap: 40px; } }

/* ---------- footer ---------- */

.ftr { border-top: 1px solid var(--hair); padding-block: 48px; }
.ftr__in { display: flex; flex-wrap: wrap; gap: 32px; justify-content: space-between; align-items: flex-start; }
.ftr__links { display: flex; flex-wrap: wrap; gap: 20px; }
.ftr__links a { font-size: 15px; color: var(--slate); text-decoration: none; }
.ftr__links a:hover { color: var(--ink); text-decoration: underline; text-underline-offset: 3px; }
.ftr__fine { font-size: 14px; color: var(--smoke); margin: 0; }

.skip {
  position: absolute;
  left: -9999px;
}
.skip:focus {
  left: 24px; top: 12px;
  z-index: 100;
  background: var(--ink); color: var(--paper);
  padding: 10px 16px; border-radius: var(--r-pill);
}

/* Pitch refinement — preserves the original tokens and component system. */
html { scroll-padding-top: 92px; }
[hidden] { display: none !important; }
body { overflow-x: clip; }
.band { padding-block: 88px; }
.grain::before { opacity: .045; }
.hero::after { opacity: .055; }
.hero { padding-block: 70px 94px; }
.hero__grid { grid-template-columns: .92fr 1.08fr; gap: 64px; min-height: 490px; }
.hero__copy { position: relative; z-index: 2; }
.hero .display { max-width: 520px; font-size: clamp(54px,6.4vw,82px); line-height: 1.04; letter-spacing: -.045em; }
.hero .lede { max-width: 39ch; font-size: 18px; line-height: 1.6; font-weight: 400; }
.hero__copy > * + * { margin-top: 26px; }
.hero__eyebrow { display: flex; align-items: center; gap: 10px; font-size: 12px; letter-spacing: .12em; }
.sun-mark { display: inline-block; font-size: 26px; color: var(--sienna); }
.hero__visual { position: relative; padding: 25px 0 95px; min-width: 0; }
.hero__shot { transform: rotate(-2deg); border-radius: 20px; transition: transform .8s var(--ease-out); }
.hero__visual:hover .hero__shot { transform: rotate(0); }
.hero__shot img { aspect-ratio: 1.44; object-position: 52% center; }
.hero__shot figcaption { display: flex; justify-content: space-between; gap: 12px; background: white; padding: 16px 20px; font-size: 12px; color: var(--slate); }
.hero__shot figcaption span:first-child { color: var(--ink); }
.hero__detail { position: absolute; width: 235px; right: -12px; bottom: 4px; background: white; border: 6px solid white; border-radius: 16px; box-shadow: var(--shadow-float); display: grid; grid-template-columns: 105px 1fr; gap: 12px; align-items: center; text-decoration: none; transform: rotate(5deg); transition: transform .6s var(--ease-out); }
.hero__detail:hover { transform: rotate(1deg) translateY(-5px); }
.hero__detail img { width: 105px; height: 130px; object-fit: cover; border-radius: 11px; }
.hero__detail > span { font-family: var(--serif); font-size: 25px; line-height: 1.12; }
.detail-arrow { display: block; font: 22px var(--sans); margin-top: 12px; }
.hero__note { position: absolute; bottom: 32px; left: 8px; font: italic 18px var(--serif); color: var(--slate); max-width: 19ch; }
.hero__proof { padding-top: 4px; }
.rating { gap: 8px 20px; }
.rating li { font-size: 13px; }
.rating__note { display: inline-block; margin-top: 12px; font-size: 12px; color: var(--slate); text-underline-offset: 4px; }
.hero::before { background: radial-gradient(ellipse at 80% 42%, #fbe1d188, transparent 65%), radial-gradient(ellipse at 5% 15%, #f8eadc88, transparent 52%); }
.js .hero__visual.in { transition-duration: 1.1s; }
.js [data-reveal] { transform: translateY(28px); transition: opacity .85s var(--ease-out), transform .85s var(--ease-out); transition-delay: calc(min(var(--i,0),3) * 95ms); }
.js [data-reveal].in { transform: none; }
.js .display .w { animation-duration: 1s; }
.sec__head { max-width: 730px; }
.sec__head .h { font-size: clamp(34px,4vw,52px); line-height: 1.12; }
.signature-filters { display: flex; gap: 8px; flex-wrap: wrap; margin: -8px 0 32px; }
.signature-filters button { font: 14px var(--sans); padding: 12px 18px; border: 1px solid var(--hair); border-radius: 99px; background: transparent; color: var(--slate); cursor: pointer; transition: background .25s, color .25s; }
.signature-filters button[aria-pressed="true"] { color: white; background: var(--ink); border-color: var(--ink); }
.card { position: relative; transition: transform .35s var(--ease-out); }
.card:hover { transform: translateY(-5px); }
.card__img { aspect-ratio: 1.65; }
.card__body { padding: 22px 24px 26px; }
.card__name { font-size: 23px; }
.card__name a { text-decoration: none; }
.card__name a::after { content: ''; position: absolute; inset: 0; }
.card__name a:focus-visible::after { outline: 2px solid var(--ink); outline-offset: -4px; border-radius: var(--r-card); }
.card__desc { line-height: 1.55; }
.card__price { font-size: 15px; }
.accent { padding: 0; overflow: hidden; grid-template-columns: 1.15fr .85fr; gap: 0; }
.accent > div { padding: 56px; }
.accent .h { font-size: clamp(36px,4vw,54px); line-height: 1.1; }
.accent p { max-width: 35ch; line-height: 1.6; }
.kitchen-photo { margin: 0; position: relative; height: 420px; }
.kitchen-photo img { height: 100%; width: 100%; object-fit: cover; object-position: center 45%; }
.kitchen-photo figcaption { position: absolute; bottom: 18px; left: 18px; background: white; color: var(--ink); padding: 10px 16px; border-radius: 99px; font-size: 13px; }
.room__grid { gap: 24px; align-items: start; }
.room__grid .shot:nth-child(2) { margin-top: 60px; }
.room__grid .shot:nth-child(3) { margin-top: 20px; }
.shot img { aspect-ratio: 4 / 4.5; }
.shot figcaption { font-size: 14px; max-width: 30ch; }
.order__head .h { font-size: clamp(34px,4vw,52px); }
#order { padding-block: 64px; }
.hours-note { max-width: 36ch; margin-top: 14px; }
.menu-feedback { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 24px; }
#menu-status { color: var(--slate); font-size: 14px; margin: 0; }
#menu-reset { border: 0; background: transparent; color: var(--ink); cursor: pointer; font: 14px var(--sans); padding: 10px 0 10px 14px; }
.chips { mask-image: none; -webkit-mask-image: none; scrollbar-width: thin; padding-block: 2px 6px; }
.chips::-webkit-scrollbar { display: block; height: 3px; }
.chips::-webkit-scrollbar-thumb { background: #c8c6c3; border-radius: 4px; }
.chip { min-height: 44px; font-size: 13px; }
.search { min-height: 44px; }
.mrow { scroll-margin-top: 160px; }
.mrow.dish-highlight { background: var(--peach); border-radius: 12px; }
.mgroup__head .tag { font-size: 12px; }
.mobile-menu-link, .mobile-dock { display: none; }
.btn { min-height: 44px; }
.btn__meta { opacity: .85; }
@media (max-width: 1000px) {
  .hero__grid { gap: 32px; }
  .hero__detail { right: 0; width: 205px; grid-template-columns: 86px 1fr; }
  .hero__detail img { width: 86px; height: 112px; }
  .hero__note { font-size: 15px; max-width: 14ch; }
  .nav { gap: 18px; }
}
@media (max-width: 900px) {
  .hero__grid { grid-template-columns: 1fr 1fr; }
  .hero .display { font-size: 60px; }
  .hero__shot figcaption span:last-child { display: none; }
  .hero .lede { font-size: 17px; }
}
@media (max-width: 860px) {
  .mobile-menu-link { display: inline-flex; padding: 12px 0; font-size: 15px; text-decoration: none; }
  .mobile-dock { display: flex; position: fixed; bottom: 12px; bottom: max(12px, env(safe-area-inset-bottom)); left: 16px; right: 16px; z-index: 60; border: 1px solid #deddd9; border-radius: 99px; background: rgba(255,255,255,.97); box-shadow: 0 8px 32px #17191c1a; padding: 6px; justify-content: space-between; }
  .mobile-dock a { text-align: center; padding: 13px 12px; font-size: 14px; text-decoration: none; flex: 1; border-radius: 99px; }
  .mobile-dock a:last-child { background: var(--ink); color: white; }
  .ftr { padding-bottom: 110px; }
}
@media (max-width: 720px) {
  .hero { padding-block: 34px 48px; }
  .hero__grid { grid-template-columns: 1fr; gap: 24px; }
  .hero .display { font-size: clamp(52px,12vw,74px); max-width: 550px; }
  .hero__copy > * + * { margin-top: 20px; }
  .hero .lede { max-width: 38ch; }
  .hero__visual { max-width: 540px; width: 100%; margin: auto; padding: 12px 0 100px; }
  .hero__shot img { aspect-ratio: 1.55; }
  .hero__detail { bottom: 5px; right: 5px; }
  .hero__note { left: 0; max-width: 17ch; bottom: 30px; }
  .band { padding-block: 56px; }
  .accent { grid-template-columns: 1fr; }
  .accent > div { padding: 32px; }
  .kitchen-photo { height: 290px; }
  .menu__bar-in { flex-wrap: wrap; gap: 8px; padding-block: 8px; }
  .chips { flex-basis: 100%; }
  .search { display: block; flex: 1 1 100%; width: 100%; min-width: 0; }
  .menu__bar { margin-bottom: 24px; }
  .mgroup__head { flex-wrap: wrap; gap: 8px; }
  .mrow { grid-template-columns: 64px minmax(0,1fr) auto; gap: 12px; }
  .mrow__name { font-size: 16px; }
  .mrow__price { font-size: 15px; }
  .menu-feedback { align-items: start; }
  .room__grid { grid-template-columns: repeat(3,minmax(0,1fr)); gap: 12px; }
  .room__grid .shot:nth-child(2) { margin-top: 30px; }
  .room__grid .shot:nth-child(3) { margin-top: 10px; }
  .shot figcaption { font-size: 12px; }
}
@media (max-width: 440px) {
  .wrap { padding-inline: 20px; }
  .hdr__in { gap: 16px; height: 64px; }
  .mark { gap: 6px; }
  .mark__sub { font-size: 9px; letter-spacing: .08em; }
  .mark__name { font-size: 25px; }
  .hdr .btn { padding-inline: 16px; font-size: 14px; }
  .menu__bar { top: 65px; }
  .hero__eyebrow { font-size: 11px; }
  .hero .display { font-size: 58px; }
  .hero__detail { width: 195px; }
  .hero__note { max-width: 13ch; }
  .rating { gap: 8px 14px; }
  .rating li { font-size: 12px; }
  .signature-filters { gap: 6px; }
  .signature-filters button { padding: 11px 13px; font-size: 13px; }
  .card__body { padding: 20px; }
  .room__grid { grid-template-columns: 1fr 1fr; }
  .room__grid .shot:last-child { display: none; }
  .shot figcaption { font-size: 13px; }
  .hours li { gap: 14px; font-size: 16px; }
}
@media (prefers-reduced-motion: reduce) {
  .hero__shot, .hero__detail, .hero__visual:hover .hero__shot, .hero__detail:hover, .card:hover { transform: none; }
  .js [data-reveal] { opacity: 1 !important; transform: none !important; }
}

/* Slow depth in the hero; all movement stops with reduced motion. */
@media (prefers-reduced-motion: no-preference) {
  .hero__shot { transform: translateY(var(--photo-offset,0px)) rotate(-2deg); }
  .hero__detail { animation: pastry-float 7s ease-in-out 1.2s infinite; }
  .hero__detail:hover { animation-play-state: paused; }
  .accent.in .kitchen-photo img { animation: photo-settle 1.6s var(--ease-out) both; }
}
@keyframes pastry-float {
  0%,100% { transform: translateY(0) rotate(5deg); }
  50% { transform: translateY(-8px) rotate(3deg); }
}
@keyframes photo-settle {
  from { transform: scale(1.08); }
  to { transform: scale(1); }
}
.kitchen-photo { overflow: hidden; }
/* Keep the pastry-card caption inside its grid at narrow widths. */
.hero__detail { grid-template-columns: 96px minmax(0,1fr); gap: 10px; }
.hero__detail img { width: 96px; }
.hero__detail > span { min-width: 0; font-size: 22px; }
@media (max-width: 1000px) {
  .hero__detail { width: 218px; grid-template-columns: 80px minmax(0,1fr); }
  .hero__detail img { width: 80px; }
  .hero__detail > span { font-size: 21px; }
}
@media (max-width: 360px) {
  .hero__note { max-width: 9ch; font-size: 13px; }
  .hero__detail { width: 190px; grid-template-columns: 68px minmax(0,1fr); }
  .hero__detail img { width: 68px; }
  .hero__detail > span { font-size: 19px; }
}
