/* ============================================================
   Morning Breakfast Delight — brand stylesheet
   Colors: #fdb100 (sunny)  #30221d (cocoa)  #ffffff
   ============================================================ */

/* --- Brand fonts -------------------------------------------------
   Both faces are served from this repo, so the page carries its own
   type and renders the same on every device with nothing fetched from
   a third party.

   Google Sans Flex ships as a six-axis variable font (4.2 MB). Only
   weight varies here, so the other axes are pinned — optical size at
   the 24pt text grade — which takes the woff2 from 1.9 MB to 92 KB.
   Licensed under the OFL; see GoogleSansFlex-OFL.txt.

   Nexa Script is licensed from Fontfabric. Five cuts are in
   assets/fonts/ — thin, light, regular, semibold, heavy — and the
   design uses semibold, the closest of them to the stroke weight of
   the logo lockup. To try another, point the src below at that file;
   only the declared cut is ever downloaded.
------------------------------------------------------------------ */
@font-face {
  font-family: "Nexa Script";
  src: url("../fonts/nexa-script-semibold.woff2") format("woff2");
  font-display: swap;
}
@font-face {
  font-family: "Google Sans Flex";
  src: url("../fonts/google-sans-flex.woff2") format("woff2");
  font-weight: 1 1000;
  font-display: swap;
}

:root {
  --sunny:      #fdb100;
  --sunny-deep: #e29200;
  --sunny-soft: #ffe6a8;
  --cocoa:      #30221d;
  --cocoa-soft: #4a3730;
  --cream:      #fffaf1;
  --cream-deep: #f7ecdb;
  --white:      #ffffff;
  --ink-muted:  #7c6a62;

  --font-script: "Nexa Script", "Yellowtail", cursive;
  --font-sans:   "Google Sans Flex", "Outfit", system-ui, -apple-system, "Segoe UI", sans-serif;

  --r-sm: 12px;
  --r-md: 20px;
  --r-lg: 32px;
  --r-xl: 44px;

  --shadow-pop:  0 10px 0 var(--cocoa);
  --shadow-soft: 0 18px 40px rgba(48, 34, 29, .14);
  --shadow-card: 0 24px 60px rgba(48, 34, 29, .18);

  --wrap: 1200px;
  --gutter: clamp(1.15rem, 4vw, 3rem);
  --nav-h: 86px;
}

/* --- Reset ------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; }
html:focus-within { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  background: var(--cream);
  color: var(--cocoa);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; border: 0; background: none; cursor: pointer; }
ul { list-style: none; padding: 0; }

:focus-visible {
  outline: 3px solid var(--sunny);
  outline-offset: 3px;
  border-radius: 4px;
}

/* --- Type -------------------------------------------------------- */
h1, h2, h3, h4 { line-height: 1.05; font-weight: 800; letter-spacing: -.02em; text-wrap: balance; }
h1 { font-size: clamp(2.6rem, 7vw, 5.2rem); }
h2 { font-size: clamp(2rem, 5vw, 3.6rem); }
h3 { font-size: clamp(1.3rem, 2.6vw, 1.9rem); }
p  { text-wrap: pretty; }

.script {
  font-family: var(--font-script);
  font-weight: 400;
  letter-spacing: 0;
  color: var(--sunny);
  text-transform: none;
}
.eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .78rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
  color: var(--sunny-deep);
  background: var(--sunny-soft);
  border-radius: 999px;
  padding: .45rem 1rem;
  margin-bottom: 1.1rem;
}
.lead { font-size: clamp(1.02rem, 1.6vw, 1.2rem); color: var(--ink-muted); max-width: 62ch; }
.on-dark .lead { color: rgba(255,255,255,.72); }

/* --- Layout ------------------------------------------------------ */
.wrap { width: min(100% - var(--gutter) * 2, var(--wrap)); margin-inline: auto; }
.section { padding: clamp(3.5rem, 8vw, 7rem) 0; position: relative; }
.section--dark { background: var(--cocoa); color: var(--white); }
.section--sunny { background: var(--sunny); }
.section-head { max-width: 65ch; margin-bottom: clamp(2rem, 4vw, 3.2rem); }
.section-head--center { margin-inline: auto; text-align: center; }

/* --- Buttons ----------------------------------------------------- */
.btn {
  --btn-bg: var(--sunny);
  --btn-fg: var(--cocoa);
  --btn-edge: var(--cocoa);
  display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
  padding: 1rem 1.9rem;
  font-weight: 800; font-size: 1rem; letter-spacing: .01em;
  background: var(--btn-bg); color: var(--btn-fg);
  border: 3px solid var(--btn-edge);
  border-radius: 999px;
  box-shadow: 0 6px 0 var(--btn-edge);
  transition: transform .16s cubic-bezier(.34,1.56,.64,1), box-shadow .16s, background .2s;
  cursor: pointer;
}
.btn:hover  { transform: translateY(-3px); box-shadow: 0 9px 0 var(--btn-edge); }
.btn:active { transform: translateY(3px);  box-shadow: 0 2px 0 var(--btn-edge); }
.btn--ghost { --btn-bg: transparent; --btn-fg: var(--white); --btn-edge: var(--white); }
.btn--ghost:hover { --btn-bg: var(--white); --btn-fg: var(--cocoa); }
.btn--ink   { --btn-bg: var(--cocoa); --btn-fg: var(--white); --btn-edge: var(--cocoa); }
.btn--lg    { padding: 1.15rem 2.4rem; font-size: 1.08rem; }
.btn--sm    { padding: .6rem 1.15rem; font-size: .88rem; border-width: 2px; box-shadow: 0 4px 0 var(--btn-edge); }
.btn[aria-disabled="true"] {
  --btn-bg: var(--cream-deep); --btn-fg: var(--ink-muted); --btn-edge: #d9c9b6;
  cursor: not-allowed; pointer-events: none;
}

/* --- Marquee ticker ---------------------------------------------- */
.ticker {
  background: var(--cocoa); color: var(--sunny);
  font-weight: 700; font-size: .82rem; letter-spacing: .12em; text-transform: uppercase;
  padding: .6rem 0; overflow: hidden; white-space: nowrap;
}
.ticker__track { display: inline-flex; gap: 2.5rem; padding-right: 2.5rem; animation: slide 32s linear infinite; }
.ticker__track span { display: inline-flex; align-items: center; gap: .6rem; }
@keyframes slide { to { transform: translateX(-100%); } }

/* --- Header ------------------------------------------------------ */
.nav {
  position: sticky; top: 0; z-index: 60;
  background: rgba(48, 34, 29, .92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(253, 177, 0, .22);
  transition: background .3s;
}
.nav__inner { display: flex; align-items: center; gap: 1.5rem; min-height: var(--nav-h); }
.nav__logo { flex: none; }
.nav__logo img { height: clamp(44px, 5.4vw, 58px); width: auto; }
.nav__links { display: flex; align-items: center; gap: .35rem; margin-left: auto; }
.nav__links a {
  color: rgba(255,255,255,.82); font-weight: 600; font-size: .95rem;
  padding: .5rem .85rem; border-radius: 999px; transition: color .2s, background .2s;
}
.nav__links a:hover, .nav__links a[aria-current="page"] { color: var(--cocoa); background: var(--sunny); }
.nav__cta { margin-left: .5rem; }
.nav__burger { display: none; margin-left: auto; padding: .55rem; color: var(--white); }
.nav__burger svg { width: 28px; height: 28px; }

@media (max-width: 940px) {
  .nav__burger { display: block; }
  .nav__links {
    position: fixed; inset: var(--nav-h) 0 auto 0;
    flex-direction: column; align-items: stretch; gap: .2rem;
    background: var(--cocoa); padding: 1.2rem var(--gutter) 2rem;
    border-bottom: 4px solid var(--sunny);
    transform: translateY(-130%); transition: transform .34s cubic-bezier(.4,0,.2,1);
    max-height: calc(100dvh - var(--nav-h)); overflow-y: auto;
  }
  .nav[data-open="true"] .nav__links { transform: translateY(0); }
  .nav__links a { padding: .85rem 1rem; font-size: 1.05rem; }
  .nav__cta { margin: .8rem 0 0; }
}

/* --- Hero -------------------------------------------------------- */
.hero { position: relative; background: var(--cocoa); overflow: hidden; isolation: isolate; }
.hero__media {
  position: absolute; inset: 0; z-index: -2;
  /* Horizontal crop is intentional: the video always fills the frame. */
}
.hero__media video, .hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero__media::after {
  content: ""; position: absolute; inset: 0;
  /* Dark enough on the left to carry the headline, open on the right
     so the food in the banner actually reads. */
  background:
    linear-gradient(to top, rgba(48,34,29,.92) 2%, rgba(48,34,29,.34) 44%, rgba(48,34,29,.48) 100%),
    linear-gradient(to right, rgba(48,34,29,.88) 0%, rgba(48,34,29,.52) 36%, rgba(48,34,29,.06) 74%);
}
.hero__inner {
  position: relative;
  min-height: clamp(560px, 82vh, 860px);
  display: flex; flex-direction: column; justify-content: center;
  padding: clamp(4rem, 10vw, 7rem) 0 clamp(5rem, 9vw, 8rem);
  color: var(--white);
}
.hero h1 { max-width: 15ch; }
.hero h1 .script { display: block; font-size: 1.16em; line-height: .95; margin-bottom: -.06em; }
.hero__sub { margin-top: 1.4rem; font-size: clamp(1.03rem, 1.9vw, 1.28rem); color: rgba(255,255,255,.82); max-width: 46ch; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.3rem; }
.hero__badges { display: flex; flex-wrap: wrap; gap: 1.6rem; margin-top: 2.8rem; font-size: .92rem; }
.hero__badges li { display: flex; align-items: center; gap: .55rem; color: rgba(255,255,255,.86); font-weight: 600; }
.hero__badges svg { width: 20px; height: 20px; color: var(--sunny); flex: none; }
.hero__scroll {
  position: absolute; bottom: 1.6rem; left: 50%; translate: -50% 0;
  color: rgba(255,255,255,.6); font-size: .72rem; letter-spacing: .2em; text-transform: uppercase;
  display: flex; flex-direction: column; align-items: center; gap: .5rem;
  animation: bob 2.4s ease-in-out infinite;
}
@keyframes bob { 0%,100% { transform: translate(-50%, 0); } 50% { transform: translate(-50%, 8px); } }

/* Wavy edge under the hero */
.wave { display: block; width: 100%; height: clamp(40px, 5vw, 72px); }
.wave--cream { color: var(--cream); }

/* --- Info strip -------------------------------------------------- */
.strip { background: var(--sunny); border-block: 3px solid var(--cocoa); }
.strip__grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 1px; background: rgba(48,34,29,.16);
}
.strip__item {
  background: var(--sunny); padding: 1.5rem 1.2rem; text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: .3rem;
}
.strip__item strong { font-size: 1.15rem; font-weight: 800; }
.strip__item span { font-size: .82rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; opacity: .68; }

/* --- Order platforms: small logo tiles --------------------------- */
.orders {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: clamp(.8rem, 2vw, 1.4rem);
}
.order-tile {
  display: flex; flex-direction: column; align-items: center; gap: .55rem;
  width: clamp(104px, 13vw, 132px);
  transition: transform .18s cubic-bezier(.34,1.56,.64,1);
}
.order-tile:hover { transform: translateY(-5px); }
.order-tile__face {
  width: 100%; aspect-ratio: 1;
  display: grid; place-items: center; padding: .55rem;
  background: var(--brand); color: var(--brand-fg);
  border: 3px solid var(--cocoa); border-radius: var(--r-md);
  box-shadow: 0 5px 0 var(--cocoa);
  transition: box-shadow .18s;
}
.order-tile:hover .order-tile__face { box-shadow: 0 9px 0 var(--cocoa); }
.order-tile:active .order-tile__face { box-shadow: 0 2px 0 var(--cocoa); }
.order-tile__wordmark {
  font-weight: 800; font-size: clamp(.82rem, 1.5vw, .98rem);
  letter-spacing: -.02em; line-height: 1.05; text-align: center; text-wrap: balance;
}
.order-tile__face img { width: 100%; height: 100%; object-fit: contain; }
.order-tile__note {
  font-size: .74rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  color: var(--ink-muted); text-align: center; text-wrap: balance;
}

/* --- Specials ---------------------------------------------------- */
.specials { display: grid; gap: 1.5rem; grid-template-columns: repeat(2, 1fr); }
.special {
  position: relative; overflow: hidden;
  border-radius: var(--r-xl); border: 3px solid rgba(253, 177, 0, .28);
  background: #241a16; color: var(--white);
  box-shadow: var(--shadow-card);
  display: flex; align-items: flex-end;
  min-height: clamp(420px, 34vw, 480px);
  transition: transform .3s cubic-bezier(.34,1.4,.64,1);
}
.special--hero { grid-column: 1 / -1; min-height: clamp(420px, 46vw, 560px); }
.special--hero::after {
  background:
    linear-gradient(to top, rgba(36,26,22,.94) 0%, rgba(36,26,22,.6) 30%, rgba(36,26,22,0) 62%),
    linear-gradient(to right, rgba(36,26,22,.88) 0%, rgba(36,26,22,.45) 42%, rgba(36,26,22,0) 68%);
}
.special:hover { transform: translateY(-6px); }
.special__img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; transition: transform .6s cubic-bezier(.2,.8,.2,1);
}
.special:hover .special__img { transform: scale(1.06); }
.special::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(36,26,22,.96) 0%, rgba(36,26,22,.88) 20%, rgba(36,26,22,.42) 46%, rgba(36,26,22,0) 68%);
}
.special__body { position: relative; z-index: 1; padding: clamp(1.5rem, 3vw, 2.4rem); width: 100%; }
.special__day {
  display: inline-block; background: var(--sunny); color: var(--cocoa);
  font-size: .7rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase;
  padding: .32rem .8rem; border-radius: 999px; margin-bottom: .9rem;
}
.special__name { font-size: clamp(1.4rem, 3vw, 2.3rem); font-weight: 800; }
.special--hero .special__name { font-size: clamp(1.9rem, 4.4vw, 3.1rem); }
.special__desc { margin-top: .55rem; color: rgba(255,255,255,.78); font-size: .96rem; max-width: 48ch; }
.special__price {
  display: inline-block; margin-top: 1.1rem;
  font-family: var(--font-sans); font-size: 1.5rem; font-weight: 800; color: var(--sunny);
}
@media (max-width: 720px) { .specials { grid-template-columns: 1fr; } }

/* --- Chef -------------------------------------------------------- */
.chef { display: grid; grid-template-columns: minmax(0, .82fr) minmax(0, 1fr); gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.chef__figure { position: relative; }
.chef__figure img {
  width: 100%; aspect-ratio: 4 / 5; object-fit: cover;
  border-radius: var(--r-xl); border: 4px solid var(--sunny);
  box-shadow: var(--shadow-card);
}
.chef__stamp {
  position: absolute; right: -18px; bottom: -18px;
  width: clamp(110px, 15vw, 150px); aspect-ratio: 1;
  background: var(--sunny); color: var(--cocoa);
  border: 4px solid var(--cocoa); border-radius: 50%;
  display: grid; place-content: center; text-align: center; gap: .1rem;
  font-weight: 800; line-height: 1.1; padding: .5rem;
  animation: spin-slow 22s linear infinite;
}
.chef__stamp b { font-size: 1.5rem; display: block; }
.chef__stamp small { font-size: .62rem; letter-spacing: .1em; text-transform: uppercase; }
@keyframes spin-slow { to { transform: rotate(360deg); } }
.chef__quote {
  margin: 1.6rem 0; padding-left: 1.3rem; border-left: 4px solid var(--sunny);
  font-size: clamp(1.1rem, 2vw, 1.35rem); font-style: italic; color: rgba(255,255,255,.9);
}
.chef__facts { display: flex; flex-wrap: wrap; gap: 2rem; margin-top: 2rem; }
.chef__facts div b { display: block; font-size: 1.8rem; color: var(--sunny); }
.chef__facts div span { font-size: .8rem; letter-spacing: .1em; text-transform: uppercase; opacity: .7; }
@media (max-width: 860px) { .chef { grid-template-columns: 1fr; } .chef__stamp { right: 8px; } }

/* --- Reviews ----------------------------------------------------- */
.rating-hero { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 1rem 1.6rem; margin-bottom: 2.5rem; }
.rating-hero__score { font-size: clamp(3rem, 7vw, 4.6rem); font-weight: 800; line-height: 1; }
.stars { display: inline-flex; gap: .18rem; color: var(--sunny); }
.stars svg { width: 24px; height: 24px; }
.reviews { position: relative; max-width: 860px; margin-inline: auto; }
.reviews__viewport { overflow: hidden; border-radius: var(--r-lg); }
.reviews__track { display: flex; transition: transform .55s cubic-bezier(.4,0,.2,1); }
.review {
  flex: 0 0 100%; padding: clamp(1.8rem, 4vw, 3rem);
  background: var(--white); border: 3px solid var(--cocoa); border-radius: var(--r-lg);
  text-align: center; display: flex; flex-direction: column; align-items: center; gap: 1rem;
}
.review__text { font-size: clamp(1.05rem, 2vw, 1.3rem); font-weight: 500; }
.review__author { font-weight: 800; }
.review__meta { font-size: .8rem; color: var(--ink-muted); letter-spacing: .08em; text-transform: uppercase; }
.reviews__nav { display: flex; align-items: center; justify-content: center; gap: 1rem; margin-top: 1.6rem; }
.reviews__arrow {
  width: 46px; height: 46px; display: grid; place-items: center;
  border: 3px solid var(--cocoa); border-radius: 50%; background: var(--white);
  box-shadow: 0 4px 0 var(--cocoa); transition: .18s;
}
.reviews__arrow:hover { background: var(--sunny); transform: translateY(-2px); box-shadow: 0 6px 0 var(--cocoa); }
.reviews__arrow svg { width: 20px; height: 20px; }
.reviews__dots { display: flex; gap: .5rem; }
.reviews__dots button { width: 10px; height: 10px; border-radius: 50%; background: rgba(48,34,29,.24); transition: .2s; }
.reviews__dots button[aria-current="true"] { background: var(--cocoa); width: 28px; border-radius: 999px; }

/* --- Visit / map ------------------------------------------------- */
.visit {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: clamp(2rem, 5vw, 4rem); align-items: start;
}
.visit__side { display: flex; flex-direction: column; gap: 1.5rem; }

.map-frame { border: 3px solid var(--cocoa); border-radius: var(--r-lg); overflow: hidden; box-shadow: 0 10px 0 var(--cocoa); }
.map-frame iframe { width: 100%; height: clamp(260px, 30vw, 340px); border: 0; display: block; }

/* Hours sit under the map so the two columns balance, and the days run
   in two vertical runs (Mon–Thu, Fri–Sun) instead of one tall list. */
.hours {
  border: 3px solid var(--cocoa); border-radius: var(--r-lg);
  overflow: hidden; background: var(--white);
  box-shadow: 0 10px 0 var(--cocoa);
}
.hours__head {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; flex-wrap: wrap;
  padding: .9rem 1.3rem;
  background: var(--cocoa); color: var(--white);
}
.hours__head h3 { font-size: 1.05rem; letter-spacing: .02em; }
.hours__status {
  font-size: .72rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase;
  padding: .3rem .75rem; border-radius: 999px;
  background: rgba(255, 255, 255, .14); color: rgba(255, 255, 255, .8);
}
.hours__status[data-open="true"] { background: var(--sunny); color: var(--cocoa); }

.hours__list {
  display: grid;
  grid-auto-flow: column;
  grid-template-rows: repeat(4, auto);
  grid-template-columns: 1fr 1fr;
}
.hours__list li {
  display: flex; align-items: baseline; justify-content: space-between; gap: .6rem;
  padding: .62rem 1.2rem;
  font-size: .88rem;
  border-top: 2px dashed var(--cream-deep);
}
.hours__list li:first-child, .hours__list li:nth-child(5) { border-top: 0; }
.hours__list li:nth-child(n + 5) { border-left: 2px dashed var(--cream-deep); }
.hours__day { font-weight: 700; display: flex; align-items: baseline; gap: .45rem; }
.hours__day em {
  font-style: normal; font-size: .6rem; font-weight: 800;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--sunny-deep);
}
.hours__time { font-variant-numeric: tabular-nums; white-space: nowrap; opacity: .8; }
.hours__list li[data-today="true"] { background: var(--sunny-soft); }
.hours__list li[data-today="true"] .hours__time { opacity: 1; font-weight: 700; }

.contact-list { display: grid; gap: 1rem; margin-top: 1.8rem; }
.contact-list a, .contact-list p { display: flex; gap: .8rem; align-items: flex-start; font-weight: 600; }
.contact-list svg { width: 22px; height: 22px; color: var(--sunny-deep); flex: none; margin-top: .15rem; }

@media (max-width: 960px) {
  .visit { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .hours__list { grid-auto-flow: row; grid-template-columns: 1fr; grid-template-rows: none; }
  .hours__list li:nth-child(5) { border-top: 2px dashed var(--cream-deep); }
  .hours__list li:nth-child(n + 5) { border-left: 0; }
}

/* --- Socials ----------------------------------------------------- */
.socials { display: flex; flex-wrap: wrap; gap: .9rem; }
.social {
  width: 54px; height: 54px; display: grid; place-items: center;
  border: 3px solid currentColor; border-radius: 50%;
  transition: transform .2s cubic-bezier(.34,1.56,.64,1), background .2s, color .2s;
}
.social svg { width: 24px; height: 24px; }
.social:hover { transform: translateY(-4px) rotate(-6deg); background: var(--sunny); color: var(--cocoa); border-color: var(--sunny); }
.social[aria-disabled="true"] { opacity: .4; pointer-events: none; }

/* --- Footer ------------------------------------------------------ */
.footer { background: var(--cocoa); color: rgba(255,255,255,.72); padding: clamp(3rem, 6vw, 4.5rem) 0 2rem; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2.5rem; }
.footer h4 { font-size: .82rem; letter-spacing: .16em; text-transform: uppercase; color: var(--sunny); margin-bottom: 1rem; }
.footer a:hover { color: var(--sunny); }
.footer__links li + li { margin-top: .55rem; }
.footer__logo { width: 190px; margin-bottom: 1.2rem; }
.footer__bottom {
  margin-top: 3rem; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,.14);
  display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between;
  font-size: .84rem;
}
.footer__note { font-size: .78rem; opacity: .55; max-width: 60ch; margin-top: .8rem; }
@media (max-width: 760px) {
  /* One column reads better centred: the logo, the blurb, the socials and
     both link lists line up on a single axis instead of hugging the left
     edge under a centred mark. */
  .footer { text-align: center; }
  .footer__grid { grid-template-columns: 1fr; justify-items: center; gap: 2.2rem; }
  .footer__logo { margin-inline: auto; }
  .footer .socials { justify-content: center; }
  .footer__bottom { justify-content: center; text-align: center; gap: .5rem; }
  .footer__note { margin-inline: auto; }
}

/* --- Menu page --------------------------------------------------- */
.page-head { background: var(--cocoa); color: var(--white); padding: clamp(3rem, 7vw, 5rem) 0 clamp(3.5rem, 7vw, 5rem); text-align: center; position: relative; overflow: hidden; }
.page-head::before {
  content: ""; position: absolute; inset: -40% -10% auto; height: 140%;
  background: radial-gradient(ellipse at 50% 0%, rgba(253,177,0,.22), transparent 62%);
}
.page-head > * { position: relative; }
.page-head h1 .script { display: block; font-size: 1.2em; }

.menu-nav {
  position: sticky; top: var(--nav-h); z-index: 40;
  background: var(--cream); border-bottom: 3px solid var(--cocoa);
  overflow-x: auto; scrollbar-width: none;
}
.menu-nav::-webkit-scrollbar { display: none; }
.menu-nav ul { display: flex; gap: .4rem; padding: .8rem 0; width: max-content; min-width: 100%; }
.menu-nav a {
  white-space: nowrap; font-weight: 700; font-size: .9rem;
  padding: .5rem 1rem; border-radius: 999px; border: 2px solid transparent; transition: .2s;
}
.menu-nav a:hover { border-color: var(--cocoa); }
.menu-nav a[aria-current="true"] { background: var(--sunny); border-color: var(--cocoa); }

.menu-section { padding: clamp(2.5rem, 5vw, 4rem) 0; scroll-margin-top: calc(var(--nav-h) + 70px); }
.menu-section + .menu-section { border-top: 3px dashed var(--cream-deep); }
.menu-section__head { display: flex; flex-wrap: wrap; align-items: baseline; gap: 1rem; margin-bottom: 2rem; }
.menu-section__head h2 { font-size: clamp(1.7rem, 4vw, 2.6rem); }
.menu-section__head p { color: var(--ink-muted); font-size: .95rem; }
.menu-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 1.2rem; }
.dish {
  background: var(--white); border: 3px solid var(--cocoa); border-radius: var(--r-md);
  padding: 1.3rem 1.4rem; display: flex; flex-direction: column; gap: .45rem;
  transition: transform .2s cubic-bezier(.34,1.56,.64,1), box-shadow .2s;
}
.dish:hover { transform: translateY(-4px); box-shadow: 0 8px 0 var(--cocoa); }
.dish__top { display: flex; justify-content: space-between; align-items: baseline; gap: 1rem; }
.dish__name { font-weight: 800; font-size: 1.06rem; }
.dish__price { font-weight: 800; color: var(--sunny-deep); white-space: nowrap; }
.dish__desc { font-size: .9rem; color: var(--ink-muted); }
.dish__tags { display: flex; flex-wrap: wrap; gap: .4rem; margin-top: .3rem; }
.tag {
  display: inline-flex; align-items: center; gap: .3rem;
  font-size: .66rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase;
  padding: .28rem .62rem; border-radius: 999px; background: var(--sunny-soft); color: var(--sunny-deep);
}
.tag svg { width: 13px; height: 13px; flex: none; }
.tag--veg { background: #dff0d8; color: #3d6b32; }
.tag--hot { background: #ffdcd2; color: #b23a1c; }
.tag--fav { background: var(--cocoa); color: var(--sunny); }

/* --- Catering ---------------------------------------------------- */
.cater-hero { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.2rem; margin-top: 2.5rem; }
.cater-fact {
  background: var(--white); border: 3px solid var(--cocoa); border-radius: var(--r-md);
  padding: 1.5rem; box-shadow: 0 6px 0 var(--cocoa);
}
.cater-fact b { display: block; font-size: 1.6rem; color: var(--sunny-deep); }
.cater-fact span { font-size: .86rem; color: var(--ink-muted); }
.cater-cta {
  background: var(--sunny); border: 4px solid var(--cocoa); border-radius: var(--r-xl);
  padding: clamp(2rem, 5vw, 3.4rem); text-align: center;
  box-shadow: 0 12px 0 var(--cocoa);
  display: flex; flex-direction: column; align-items: center; gap: 1.1rem;
}
.cater-steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.5rem; counter-reset: step; }
.cater-step { position: relative; padding-top: 3.4rem; }
.cater-step::before {
  counter-increment: step; content: counter(step);
  position: absolute; top: 0; left: 0;
  width: 52px; height: 52px; display: grid; place-items: center;
  background: var(--sunny); color: var(--cocoa); border: 3px solid var(--cocoa);
  border-radius: 50%; font-weight: 800; font-size: 1.3rem;
}
.cater-step h3 { font-size: 1.15rem; margin-bottom: .4rem; }
.cater-step p { font-size: .93rem; color: var(--ink-muted); }
.section--dark .cater-step p { color: rgba(255,255,255,.72); }

/* --- Utility / motion -------------------------------------------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.8,.2,1); }
.reveal.is-in { opacity: 1; transform: none; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.center { text-align: center; }
.mt-lg { margin-top: clamp(2rem, 4vw, 3rem); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important; animation-iteration-count: 1 !important;
    transition-duration: .001ms !important; scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* --- "Photo pending" chip ----------------------------------------
   Shown only while a tile still points at a placeholder image.
   Delete `photoPending: true` in assets/data/content.js to remove it. */
.photo-chip {
  position: absolute; top: 1rem; right: 1rem; z-index: 2;
  font-size: .66rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase;
  padding: .32rem .75rem; border-radius: 999px;
  background: rgba(253, 177, 0, .16); color: var(--sunny);
  border: 1px solid rgba(253, 177, 0, .38);
  backdrop-filter: blur(4px);
}
.chef__figure { position: relative; }

/* Script accents pick up contrast from their surface. */
.section--sunny .script,
.cater-cta .script,
.strip .script { color: var(--cocoa); }

/* --- Admin (assets/js/admin.js, admin.html) ---------------------- */
.admin { min-height: 100dvh; display: flex; flex-direction: column; background: var(--cream); }
.admin__bar {
  display: flex; align-items: center; gap: 1rem; flex-wrap: wrap;
  padding: .9rem var(--gutter);
  background: var(--cocoa); color: var(--white);
}
.admin__bar img { height: 38px; width: auto; }
.admin__who { margin-left: auto; font-size: .86rem; color: rgba(255,255,255,.7); }
.admin__main { flex: 1; width: min(100% - var(--gutter) * 2, 820px); margin-inline: auto; padding: clamp(1.5rem, 4vw, 3rem) 0; }

.admin__card {
  background: var(--white); border: 3px solid var(--cocoa); border-radius: var(--r-lg);
  padding: clamp(1.4rem, 4vw, 2.2rem); box-shadow: 0 10px 0 var(--cocoa);
}
.admin__card h1 { font-size: clamp(1.6rem, 4vw, 2.2rem); margin-bottom: .5rem; }
.admin__card p { color: var(--ink-muted); }

.field { display: grid; gap: .4rem; margin-top: 1.1rem; }
.field label { font-size: .78rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-muted); }
.field input {
  font: inherit; padding: .8rem 1rem;
  border: 3px solid var(--cocoa); border-radius: var(--r-sm); background: var(--white); color: var(--cocoa);
}
.field input:focus-visible { outline: 3px solid var(--sunny); outline-offset: 2px; }

.note { margin-top: 1rem; padding: .85rem 1.1rem; border-radius: var(--r-sm); font-size: .92rem; font-weight: 600; }
.note--bad  { background: #ffdcd2; color: #8c2d12; }
.note--good { background: #dff0d8; color: #33612a; }
.note--warn { background: var(--sunny-soft); color: var(--sunny-deep); }
.note[hidden] { display: none; }

.admin__section { margin-top: clamp(1.6rem, 4vw, 2.4rem); }
.admin__section h2 { font-size: 1.15rem; margin-bottom: .7rem; }
.price-row {
  display: flex; align-items: center; gap: 1rem;
  padding: .7rem 1rem;
  background: var(--white); border: 2px solid var(--cream-deep); border-radius: var(--r-sm);
}
.price-row + .price-row { margin-top: .5rem; }
.price-row__name { font-weight: 700; flex: 1; min-width: 0; }
.price-row input {
  font: inherit; font-weight: 800; font-variant-numeric: tabular-nums;
  width: 7.5rem; padding: .5rem .7rem; text-align: right;
  border: 2px solid var(--cocoa); border-radius: 10px; background: var(--white); color: var(--cocoa);
}
.price-row[data-changed="true"] { border-color: var(--sunny); background: #fffdf5; }
.price-row__was { font-size: .74rem; font-weight: 700; color: var(--sunny-deep); white-space: nowrap; }

.admin__save {
  position: sticky; bottom: 0; z-index: 5;
  display: flex; align-items: center; gap: 1rem; flex-wrap: wrap;
  margin-top: 2rem; padding: 1rem;
  background: var(--cocoa); color: var(--white); border-radius: var(--r-lg);
}
.admin__save span { font-size: .92rem; color: rgba(255,255,255,.75); }
.admin__save .btn { margin-left: auto; }

/* Allergen and pricing notices, carried over from the printed menu. */
.menu-advisory {
  border-top: 3px dashed var(--cream-deep);
  padding-top: 1.6rem;
  display: grid; gap: .7rem;
  font-size: .82rem; line-height: 1.55; color: var(--ink-muted);
  max-width: 78ch;
}
.menu-advisory b { color: var(--cocoa); }
