/* ==========================================================================
   DOON DELIGHT — Design system & styles
   Mobile-first. Warm, food-led, premium-casual. No external dependencies.
   ========================================================================== */

/* ---- Design tokens ------------------------------------------------------ */
:root {
  /* Colour */
  --cream:      #fbf6ec;
  --cream-2:    #f3ead9;
  --card:       #fffdf9;
  --ink:        #211a14;
  --ink-soft:   #5e5349;
  --ink-faint:  #6f6458;
  --brick:      #a23b22;   /* primary — deep tandoor terracotta */
  --brick-dark: #7e2c18;
  --brick-tint: #f6e7df;
  --turmeric:   #cf962f;   /* secondary — warm gold (stars, highlights) */
  --herb:       #2e5840;   /* tertiary — deep herb green */
  --line:       rgba(33, 26, 20, 0.12);
  --line-soft:  rgba(33, 26, 20, 0.07);

  /* Type */
  --font-head: "Iowan Old Style", "Palatino Linotype", Palatino, "Book Antiqua", Georgia, "Times New Roman", serif;
  --font-body: system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  /* Spacing / shape */
  --container: 1140px;
  --radius:   14px;
  --radius-lg: 22px;
  --shadow-sm: 0 1px 2px rgba(33,26,20,.06), 0 2px 8px rgba(33,26,20,.05);
  --shadow-md: 0 6px 20px rgba(33,26,20,.10);
  --shadow-lg: 0 18px 50px rgba(33,26,20,.16);

  --header-h: 68px;
}

/* ---- Reset / base ------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  font-size: 1.0625rem;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, picture, svg, video { display: block; max-width: 100%; height: auto; }
a { color: var(--brick); text-decoration-thickness: 1px; text-underline-offset: 2px; }
a:hover { color: var(--brick-dark); }
ul, ol { padding-left: 1.2em; }

h1, h2, h3, h4 { font-family: var(--font-head); font-weight: 600; line-height: 1.12; color: var(--ink); letter-spacing: -.01em; }
h1 { font-size: clamp(2.1rem, 6vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 4.2vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 2.6vw, 1.5rem); }
p { color: var(--ink); }

/* Accessibility helpers */
.visually-hidden {
  position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
:focus-visible { outline: 3px solid var(--turmeric); outline-offset: 2px; border-radius: 4px; }
.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 200;
  background: var(--ink); color: #fff; padding: 10px 16px; border-radius: 8px;
  transition: top .2s;
}
.skip-link:focus { top: 12px; color: #fff; }

/* ---- Layout ------------------------------------------------------------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 20px; }
.section { padding-block: clamp(48px, 8vw, 88px); }
.section--tight { padding-block: clamp(32px, 5vw, 56px); }
.section--cream2 { background: var(--cream-2); }
.section--ink { background: var(--ink); color: var(--cream); }
.section--ink h2, .section--ink h3 { color: #fff; }

.eyebrow {
  display: inline-block; font-family: var(--font-body); font-weight: 700;
  text-transform: uppercase; letter-spacing: .14em; font-size: .76rem;
  color: var(--brick); margin-bottom: .6rem;
}
.section--ink .eyebrow { color: var(--turmeric); }
.section-head { max-width: 640px; margin-bottom: clamp(24px, 4vw, 40px); }
.section-head--center { margin-inline: auto; text-align: center; }
.lead { font-size: 1.12rem; color: var(--ink-soft); }
.muted { color: var(--ink-soft); }
.small { font-size: .9rem; }

/* ---- Buttons ------------------------------------------------------------ */
.btn {
  --btn-bg: var(--brick); --btn-fg: #fff; --btn-bd: var(--brick);
  display: inline-flex; align-items: center; justify-content: center; gap: .5em;
  font: inherit; font-weight: 600; line-height: 1; text-decoration: none;
  padding: .9em 1.35em; border-radius: 999px; cursor: pointer;
  background: var(--btn-bg); color: var(--btn-fg); border: 1.5px solid var(--btn-bd);
  transition: transform .12s ease, background .15s ease, box-shadow .15s ease;
  min-height: 46px;
}
.btn:hover { background: var(--brick-dark); border-color: var(--brick-dark); color: #fff; transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn:active { transform: translateY(0); }
.btn--lg { padding: 1.05em 1.7em; font-size: 1.05rem; }
.btn--block { width: 100%; }
.btn--ghost { --btn-bg: transparent; --btn-fg: var(--ink); --btn-bd: var(--line); }
.btn--ghost:hover { background: var(--ink); border-color: var(--ink); color: #fff; }
.btn--gold { --btn-bg: var(--turmeric); --btn-fg: #2b1d00; --btn-bd: var(--turmeric); }
.btn--gold:hover { background: #b9831f; border-color: #b9831f; color: #2b1d00; }
.btn--light { --btn-bg: #fff; --btn-fg: var(--ink); --btn-bd: #fff; }
.btn--light:hover { background: var(--cream-2); border-color: var(--cream-2); color: var(--ink); }
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; }
/* Thumb-friendly full-width CTAs on small phones (hero, CTA band, page heros). */
@media (max-width: 480px) {
  .btn-row { flex-direction: column; align-items: stretch; }
  .btn-row .btn { width: 100%; }
}

/* ---- Header ------------------------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(251, 246, 236, .92);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--line-soft);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; min-height: var(--header-h); }
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--ink); }
.brand:hover { color: var(--ink); }
.brand__mark {
  width: 38px; height: 38px; border-radius: 10px; flex: none;
  background: var(--brick); color: #fff; display: grid; place-items: center;
  font-family: var(--font-head); font-weight: 700; font-size: 1.25rem;
}
.brand__logo { width: 42px; height: 42px; flex: none; display: block; }
.brand__name { font-family: var(--font-head); font-weight: 600; font-size: 1.25rem; letter-spacing: -.01em; line-height: 1; }
.brand__sub { display: block; font-family: var(--font-body); font-size: .66rem; letter-spacing: .16em; text-transform: uppercase; color: var(--ink-faint); margin-top: 3px; }

.nav { display: flex; align-items: center; gap: 6px; }
.nav a { color: var(--ink); text-decoration: none; font-weight: 500; padding: .5em .7em; border-radius: 8px; font-size: .98rem; }
.nav a:hover { background: var(--brick-tint); color: var(--brick-dark); }
.nav a[aria-current="page"] { color: var(--brick); font-weight: 600; }
.header-cta { display: flex; align-items: center; gap: 8px; }

.nav-toggle {
  display: none; align-items: center; justify-content: center;
  width: 44px; height: 44px; border: 1.5px solid var(--line); border-radius: 10px;
  background: transparent; cursor: pointer;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: ""; display: block; width: 20px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .2s, opacity .2s;
}
.nav-toggle span::before { transform: translateY(-6px); }
.nav-toggle span::after  { transform: translateY(4px); }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after  { transform: rotate(-45deg); }

@media (max-width: 900px) {
  .nav-toggle { display: inline-flex; }
  /* Anchor the panel to the header (not the viewport) so it opens in the right
     place even when the non-sticky announcement banner is showing at scroll-0. */
  .nav {
    position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; align-items: stretch;
    gap: 2px; background: var(--cream); padding: 14px 20px 22px;
    border-bottom: 1px solid var(--line); box-shadow: var(--shadow-md);
    transform: translateY(-130%); visibility: hidden;
    transition: transform .25s ease, visibility 0s linear .25s;
    max-height: calc(100dvh - var(--header-h)); overflow: auto;
  }
  /* visibility:hidden keeps the closed menu out of the keyboard tab order */
  .nav[data-open="true"] { transform: translateY(0); visibility: visible; transition: transform .25s ease, visibility 0s; }
  .nav a { padding: .85em .6em; font-size: 1.05rem; border-bottom: 1px solid var(--line-soft); border-radius: 0; }
  .nav .nav__cta { margin-top: 12px; }
  .nav .btn { width: 100%; }
  .header-cta .btn--header-order { display: none; } /* shown inside menu on mobile */
}
@media (min-width: 901px) {
  .nav__cta { display: none; }
}
/* Compact brand on small phones so the logo + name never crowd the toggle */
@media (max-width: 480px) {
  .brand__sub { display: none; }
  .brand__name { white-space: nowrap; }
}

/* ---- Announcement banner ----------------------------------------------- */
.banner {
  background: var(--herb); color: #fff; font-size: .92rem; text-align: center;
}
.banner a { color: #fff; font-weight: 700; }
.banner .container { padding-block: 9px; display: flex; gap: 10px; justify-content: center; align-items: center; flex-wrap: wrap; }

/* ---- Status pill -------------------------------------------------------- */
.status { display: inline-flex; align-items: center; gap: .5em; font-weight: 600; font-size: .9rem; }
.status::before { content: ""; width: 9px; height: 9px; border-radius: 50%; background: var(--ink-faint); }
.status--open::before { background: #2e8b57; box-shadow: 0 0 0 4px rgba(46,139,87,.18); }
.status--closed::before { background: #b23b3b; }

/* ---- Hero --------------------------------------------------------------- */
.hero { position: relative; background: var(--ink); color: var(--cream); overflow: hidden; }
.hero__media { position: absolute; inset: 0; z-index: 0; display: grid; }
.hero__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 70% 64%; opacity: .95; }
.hero__media .placeholder { opacity: .5; }
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(100deg, rgba(15,11,8,.85) 0%, rgba(15,11,8,.5) 52%, rgba(15,11,8,.12) 100%),
    linear-gradient(180deg, rgba(15,11,8,0) 55%, rgba(15,11,8,.6) 100%);
}
.hero__inner { position: relative; z-index: 2; padding-block: clamp(56px, 12vw, 120px); max-width: 760px; }
.hero h1 { color: #fff; }
.hero p.lead { color: rgba(255,255,255,.9); margin-top: 1rem; font-size: 1.2rem; }
.hero .btn-row { margin-top: 1.6rem; }
.hero__meta { margin-top: 1.4rem; display: flex; flex-wrap: wrap; gap: 16px 22px; align-items: center; color: rgba(255,255,255,.92); font-size: .95rem; }
.hero__meta .status { color: #fff; }
/* On phones the headline spans full width, so swap the desktop side-gradient for
   a top-down scrim that keeps the headline, lead and CTAs legible over the photo. */
@media (max-width: 700px) {
  .hero::after {
    background: linear-gradient(180deg, rgba(15,11,8,.58) 0%, rgba(15,11,8,.4) 42%, rgba(15,11,8,.8) 100%);
  }
  .hero p.lead { font-size: 1.1rem; }
}

/* ---- Trust strip -------------------------------------------------------- */
.trust { background: var(--card); border-block: 1px solid var(--line-soft); }
.trust__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px 12px; padding-block: 26px; text-align: center; }
.trust__item .num { font-family: var(--font-head); font-size: 1.7rem; font-weight: 700; color: var(--brick); display: block; line-height: 1; }
.trust__item .num .stars { color: var(--turmeric); }
.trust__item .lbl { font-size: .82rem; color: var(--ink-soft); display: block; margin-top: 5px; letter-spacing: .02em; }
a.trust__item--link { text-decoration: none; border-radius: 12px; padding: 8px 4px; transition: background .15s ease, transform .12s ease; }
a.trust__item--link:hover { background: var(--brick-tint); transform: translateY(-1px); }
a.trust__item--link:hover .lbl { color: var(--brick-dark); }
a.trust__item--link:focus-visible { outline: 2px solid var(--brick); outline-offset: 2px; }
@media (min-width: 720px) { .trust__grid { grid-template-columns: repeat(5, 1fr); } }

/* ---- Generic grids & cards --------------------------------------------- */
.grid { display: grid; gap: 22px; }
.grid--2 { grid-template-columns: 1fr; }
.grid--3 { grid-template-columns: 1fr; }
@media (min-width: 640px) { .grid--3 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 880px) {
  .grid--2 { grid-template-columns: 1fr 1fr; }
  .grid--3 { grid-template-columns: repeat(3, 1fr); }
}

.card { background: var(--card); border: 1px solid var(--line-soft); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); overflow: hidden; }
.card__body { padding: 22px; }
.card__media { aspect-ratio: 4 / 3; background: var(--cream-2); position: relative; display: grid; }
.card__media img { width: 100%; height: 100%; object-fit: cover; }

/* Feature card with icon */
.feature { padding: 26px; background: var(--card); border: 1px solid var(--line-soft); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); height: 100%; }
.feature__icon { width: 46px; height: 46px; border-radius: 12px; background: var(--brick-tint); color: var(--brick); display: grid; place-items: center; margin-bottom: 14px; font-size: 1.3rem; }
.feature h3 { margin-bottom: 8px; }
.feature p { color: var(--ink-soft); }

/* ---- Split (image + text) ---------------------------------------------- */
.split { display: grid; gap: 28px; align-items: center; }
@media (min-width: 880px) { .split { grid-template-columns: 1fr 1fr; gap: 48px; } .split--reverse .split__media { order: 2; } }
.split__media img, .split__media .placeholder { border-radius: var(--radius-lg); box-shadow: var(--shadow-md); width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.split__media img.media-portrait { aspect-ratio: 4/5; object-position: center 18%; }

/* ---- Image placeholder (until real photos arrive) ---------------------- */
.placeholder {
  width: 100%; height: 100%; min-height: 130px;
  display: grid; place-items: center; text-align: center;
  background:
    radial-gradient(120% 120% at 30% 20%, rgba(207,150,47,.18), transparent 55%),
    linear-gradient(135deg, var(--brick-tint), var(--cream-2));
  color: var(--brick-dark); font-family: var(--font-head); padding: 16px;
}
.placeholder span { font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; color: var(--brick); opacity: .8; }
.placeholder .ph-title { font-size: 1.1rem; opacity: .85; }

/* ---- Menu preview / menu page ------------------------------------------ */
.dish { display: flex; gap: 14px; justify-content: space-between; align-items: baseline; padding: 16px 0; border-bottom: 1px dashed var(--line); }
.dish:last-child { border-bottom: 0; }
.dish__main { min-width: 0; }
.dish__name { font-family: var(--font-head); font-size: 1.12rem; font-weight: 600; }
.dish__desc { color: var(--ink-soft); font-size: .95rem; margin-top: 2px; }
.dish__price { font-weight: 700; color: var(--brick); white-space: nowrap; font-variant-numeric: tabular-nums; }
.price-variant { white-space: nowrap; display: inline-block; }
.price-variant__lbl { font-weight: 600; color: var(--ink-soft); font-size: .8em; }
.price-sep { color: var(--ink-faint); font-weight: 400; }
/* Multi-variant prices (e.g. Half/Full, Chicken/Lamb/Prawn) stack cleanly under
   each other on narrow phones instead of forcing horizontal overflow. */
@media (max-width: 560px) {
  .dish__price { white-space: normal; text-align: right; }
  .dish__price .price-variant { display: block; }
  .dish__price .price-sep { display: none; }
}
.dish__dots { flex: 1; border-bottom: 1px dotted var(--line); align-self: flex-end; margin-bottom: 5px; min-width: 12px; }

.tags { display: inline-flex; gap: 5px; flex-wrap: wrap; margin-left: 6px; vertical-align: middle; }
.tag {
  display: inline-flex; align-items: center; justify-content: center;
  font-size: .68rem; font-weight: 700; line-height: 1; padding: 3px 6px; border-radius: 6px;
  background: var(--cream-2); color: var(--ink-soft); border: 1px solid var(--line-soft);
}
.tag--v { background: #e8f1e8; color: #2e5840; border-color: #cfe2cf; }
.tag--vg { background: #e2f0e2; color: #25613a; border-color: #c4e0c4; }
.tag--spicy { background: #fbe6df; color: var(--brick); border-color: #f1cdc1; }
.tag--chef, .tag--popular { background: #fbefd6; color: #936413; border-color: #f0dcae; }

.menu-cat { margin-bottom: 40px; scroll-margin-top: calc(var(--header-h) + 70px); }
.menu-cat__head { border-bottom: 2px solid var(--brick); padding-bottom: 8px; margin-bottom: 6px; display: flex; align-items: baseline; justify-content: space-between; gap: 12px; }
.menu-cat__intro { color: var(--ink-soft); font-size: .95rem; margin: 6px 0 4px; }

/* sticky category nav (menu page) */
.cat-nav { position: sticky; top: var(--header-h); z-index: 40; background: rgba(251,246,236,.95); backdrop-filter: blur(8px); border-bottom: 1px solid var(--line-soft); }
.cat-nav__scroll { display: flex; gap: 8px; overflow-x: auto; padding: 12px 0; scrollbar-width: thin; }
.cat-nav a { white-space: nowrap; text-decoration: none; font-weight: 600; font-size: .9rem; color: var(--ink-soft); padding: .45em .85em; border-radius: 999px; border: 1px solid var(--line); background: var(--card); }
.cat-nav a:hover { color: var(--brick); border-color: var(--brick); }
@media (max-width: 900px) { .cat-nav a { padding: .6em 1em; } }   /* taller pills to tap */

.notice { background: var(--brick-tint); border: 1px solid #eccbbf; border-left: 4px solid var(--brick); border-radius: 10px; padding: 14px 16px; color: var(--brick-dark); font-size: .95rem; }
.notice--info { background: #eaf1ec; border-color: #cfe0d4; border-left-color: var(--herb); color: #234e39; }
.legend { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 10px; font-size: .85rem; color: var(--ink-soft); }
.legend span { display: inline-flex; gap: 6px; align-items: center; }

/* ---- Order options ------------------------------------------------------ */
.order-card { display: flex; flex-direction: column; gap: 6px; }
.order-card .badge { align-self: flex-start; font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; padding: 4px 10px; border-radius: 999px; }
.badge--best { background: var(--herb); color: #fff; }
.badge--app  { background: var(--cream-2); color: var(--ink-soft); }
.app-list { display: grid; gap: 10px; margin-top: 4px; }
.app-row { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 14px 16px; border: 1px solid var(--line); border-radius: 12px; background: var(--card); text-decoration: none; color: var(--ink); }
.app-row:hover { border-color: var(--brick); color: var(--ink); box-shadow: var(--shadow-sm); }
.app-row__name { font-weight: 600; }
.app-row__note { font-size: .82rem; color: var(--ink-soft); }

/* ---- In-house collection ordering -------------------------------------- */
.order-app { display: grid; gap: 26px; align-items: start; }
@media (min-width: 900px) { .order-app { grid-template-columns: 1fr minmax(320px, 380px); gap: 40px; } }

.order-cat { margin-bottom: 30px; }
.order-cat__title { font-size: 1.4rem; border-bottom: 2px solid var(--brick); padding-bottom: 7px; margin-bottom: 6px; }
.order-cat__intro { color: var(--ink-soft); font-size: .92rem; margin-bottom: 8px; }
.order-item { display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 12px 0; border-bottom: 1px dashed var(--line); }
.order-item:last-child { border-bottom: 0; }
.order-item__info { min-width: 0; display: flex; flex-direction: column; gap: 2px; }
.order-item__name { font-family: var(--font-head); font-weight: 600; font-size: 1.06rem; }
.order-item__price { color: var(--brick); font-weight: 700; font-variant-numeric: tabular-nums; font-size: .95rem; }
.order-item__add { flex: none; padding: .55em 1.15em; min-height: 44px; min-width: 82px; }

/* Cart / summary */
.order-cart { position: static; }
@media (min-width: 900px) {
  .order-cart { position: sticky; top: calc(var(--header-h) + 16px); }
  /* Keep the whole summary — including "Notes for the kitchen" and the pay
     button — reachable even when the browser window is short (not maximised /
     full-screen). Cap the card to the visible height and let it scroll inside
     itself, instead of its lower half hiding below the fold until the footer. */
  .order-cart__card { max-height: calc(100vh - var(--header-h) - 32px); overflow-y: auto; overscroll-behavior: contain; }
}
.order-cart__card { background: var(--card); border: 1px solid var(--line-soft); border-radius: var(--radius-lg); box-shadow: var(--shadow-md); padding: clamp(18px, 3vw, 26px); }
.order-cart__title { font-size: 1.3rem; margin-bottom: 12px; }
.order-lines { display: grid; gap: 2px; margin-bottom: 6px; }
.order-empty { color: var(--ink-soft); font-size: .95rem; padding: 8px 0 14px; }
.order-line { display: grid; grid-template-columns: 1fr auto auto; align-items: center; gap: 10px; padding: 10px 0; border-bottom: 1px solid var(--line-soft); }
.order-line__info { min-width: 0; }
.order-line__name { display: block; font-weight: 600; font-size: .96rem; }
.order-line__each { display: block; font-size: .8rem; color: var(--ink-soft); }
.order-line__qty { display: inline-flex; align-items: center; gap: 8px; }
.qty-btn { width: 32px; height: 32px; border-radius: 8px; border: 1.5px solid var(--line); background: #fff; color: var(--ink); font-size: 1.15rem; line-height: 1; cursor: pointer; display: grid; place-items: center; }
.qty-btn:hover { border-color: var(--brick); color: var(--brick); }
@media (max-width: 900px) { .qty-btn { width: 40px; height: 40px; } }   /* bigger tap target on touch */
.qty-n { min-width: 1.4ch; text-align: center; font-weight: 700; font-variant-numeric: tabular-nums; }
.order-line__total { font-weight: 700; color: var(--brick); font-variant-numeric: tabular-nums; white-space: nowrap; }

.order-totals { margin: 12px 0 4px; padding-top: 12px; border-top: 1px solid var(--line); display: grid; gap: 6px; }
.order-totals__row { display: flex; justify-content: space-between; gap: 12px; font-size: .96rem; }
.order-totals__row dt, .order-totals__row dd { margin: 0; }
.order-totals__row dd { font-variant-numeric: tabular-nums; font-weight: 600; }
.order-totals__row--disc { color: var(--herb); }
.order-totals__row--total { border-top: 1px dashed var(--line); padding-top: 8px; margin-top: 2px; font-family: var(--font-head); }
.order-totals__row--total dt { font-weight: 700; }
.order-totals__row--total dd { font-size: 1.3rem; font-weight: 700; color: var(--ink); }
.order-form { margin-top: 16px; }
.order-form .field { margin-bottom: 14px; }

/* Floating "review order" button (mobile) */
.order-fab {
  position: fixed; left: 50%; transform: translateX(-50%); bottom: calc(16px + env(safe-area-inset-bottom));
  z-index: 95; display: inline-flex; align-items: center; gap: 10px;
  background: var(--brick); color: #fff; border: 0; border-radius: 999px;
  padding: .8em 1.2em; font: inherit; font-weight: 700; cursor: pointer;
  box-shadow: var(--shadow-lg);
}
.order-fab:hover { background: var(--brick-dark); }
.order-fab__count { background: #fff; color: var(--brick); min-width: 24px; height: 24px; border-radius: 999px; display: inline-grid; place-items: center; font-size: .85rem; padding: 0 6px; }
.order-fab__total { font-variant-numeric: tabular-nums; }
.order-fab[hidden] { display: none; }
@media (min-width: 900px) { .order-fab { display: none !important; } }

/* ---- Reviews ------------------------------------------------------------ */
.review { background: var(--card); border: 1px solid var(--line-soft); border-radius: var(--radius-lg); padding: 24px; box-shadow: var(--shadow-sm); height: 100%; display: flex; flex-direction: column; }
.review__stars { color: var(--turmeric); letter-spacing: 2px; margin-bottom: 10px; }
.review__text { font-family: var(--font-head); font-size: 1.1rem; line-height: 1.5; }
.review__who { margin-top: auto; padding-top: 14px; font-size: .9rem; color: var(--ink-soft); font-weight: 600; }
.rating-hero { text-align: center; max-width: 520px; margin: 0 auto; background: var(--card); border: 1px solid var(--line-soft); border-radius: var(--radius-lg); padding: 34px 28px; box-shadow: var(--shadow-sm); }
.rating-hero .review__stars { color: var(--turmeric); letter-spacing: 3px; margin-bottom: 8px; }
.rating-hero__score { font-family: var(--font-head); margin-top: 4px; }
.rating-hero__score strong { font-size: 2.4rem; color: var(--ink); }
.rating-hero__link { display: block; text-decoration: none; color: inherit; border-radius: var(--radius); padding: 6px; transition: background .15s ease; }
.rating-hero__link:hover { background: var(--brick-tint); color: inherit; }
.rating-hero__link:focus-visible { outline: 2px solid var(--brick); outline-offset: 2px; }

/* ---- Forms -------------------------------------------------------------- */
.form { background: var(--card); border: 1px solid var(--line-soft); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); padding: clamp(20px, 4vw, 34px); }
.field { margin-bottom: 18px; }
.field > label { display: block; font-weight: 600; margin-bottom: 6px; font-size: .95rem; }
.field .req { color: var(--brick); }
.field .hint { font-size: .82rem; color: var(--ink-soft); margin-top: 4px; }
.input, .select, .textarea {
  width: 100%; font: inherit; color: var(--ink); background: #fff;
  border: 1.5px solid var(--line); border-radius: 10px; padding: .72em .85em; min-height: 46px;
}
.input:focus, .select:focus, .textarea:focus { border-color: var(--brick); outline: none; box-shadow: 0 0 0 3px var(--brick-tint); }
.textarea { min-height: 110px; resize: vertical; }
.field--error .input, .field--error .select, .field--error .textarea { border-color: #c0392b; }
.field__err { color: #c0392b; font-size: .85rem; margin-top: 5px; display: none; }
.field--error .field__err { display: block; }
/* Marketing opt-in — a checkbox row, so it must not inherit .field > label's
   block display. Whole label is the hit area; 44px min keeps it thumb-friendly. */
.field--check { margin-top: -2px; }
.field--check > .check {
  display: flex; align-items: flex-start; gap: 10px;
  font-weight: 400; font-size: .88rem; line-height: 1.45; color: var(--ink-soft);
  margin-bottom: 0; cursor: pointer; padding: 6px 0; min-height: 44px;
}
.check__box {
  flex: none; width: 20px; height: 20px; margin: 1px 0 0; cursor: pointer;
  accent-color: var(--brick);
}
.check__box:focus-visible { outline: 2px solid var(--brick); outline-offset: 2px; }
.check__text { padding-top: 1px; }

.grid-2 { display: grid; gap: 0 18px; }
@media (min-width: 600px) { .grid-2 { grid-template-columns: 1fr 1fr; } }
.honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form__status { padding: 14px 16px; border-radius: 10px; margin-bottom: 18px; font-weight: 600; }
.form__status--ok { background: #e7f3ea; color: #1f6b3a; border: 1px solid #bfe0c8; }
.form__status--err { background: #fbe7e4; color: #99281a; border: 1px solid #f0c4bc; }

/* ---- Info / contact list ------------------------------------------------ */
.info-list { list-style: none; padding: 0; display: grid; gap: 16px; }
.info-list li { display: flex; gap: 12px; align-items: flex-start; }
.info-list .ic { flex: none; width: 38px; height: 38px; border-radius: 10px; background: var(--brick-tint); color: var(--brick); display: grid; place-items: center; }
.hours-table { width: 100%; border-collapse: collapse; }
.hours-table th, .hours-table td { text-align: left; padding: 9px 0; border-bottom: 1px solid var(--line-soft); font-size: .96rem; }
.hours-table td:last-child { text-align: right; font-variant-numeric: tabular-nums; }
.hours-table tr.is-today { font-weight: 700; color: var(--brick); }

.map-embed { border: 0; width: 100%; height: 340px; border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); }

/* ---- Gallery ------------------------------------------------------------ */
.gallery-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
@media (min-width: 720px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }
.gallery-grid .tile { aspect-ratio: 1; border-radius: var(--radius); overflow: hidden; display: grid; }
.gallery-grid .tile img { width: 100%; height: 100%; object-fit: cover; }

/* ---- CTA band ----------------------------------------------------------- */
.cta-band { background: var(--brick); color: #fff; border-radius: var(--radius-lg); padding: clamp(28px, 5vw, 52px); text-align: center; }
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,.92); max-width: 540px; margin: 10px auto 0; }
.cta-band .btn-row { justify-content: center; margin-top: 22px; }

/* ---- Page hero (interior pages) ---------------------------------------- */
.page-hero { background: var(--cream-2); border-bottom: 1px solid var(--line-soft); }
.page-hero .container { padding-block: clamp(34px, 6vw, 64px); }
.page-hero p.lead { margin-top: .6rem; max-width: 620px; }
.breadcrumb { font-size: .85rem; color: var(--ink-faint); margin-bottom: .5rem; }
.breadcrumb a { color: var(--ink-soft); text-decoration: none; }

/* ---- Prose (legal pages) ------------------------------------------------ */
.prose { max-width: 760px; }
.prose h2 { margin-top: 1.8em; font-size: 1.5rem; }
.prose h3 { margin-top: 1.4em; }
.prose p, .prose li { color: var(--ink-soft); }
.prose ul { margin-top: .5em; }
.prose a { font-weight: 600; }

/* ---- Footer ------------------------------------------------------------- */
.site-footer { background: var(--ink); color: rgba(255,255,255,.78); padding-block: 52px 28px; margin-top: 0; }
.site-footer a { color: rgba(255,255,255,.85); text-decoration: none; }
.site-footer a:hover { color: #fff; text-decoration: underline; }
.footer-grid { display: grid; gap: 30px; grid-template-columns: 1fr; }
@media (min-width: 720px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; } }
.footer-brand .brand__name { color: #fff; }
.footer h4 { color: #fff; font-family: var(--font-body); font-size: .82rem; text-transform: uppercase; letter-spacing: .12em; margin-bottom: 14px; }
.footer-links { list-style: none; padding: 0; display: grid; gap: 9px; font-size: .95rem; }
.social-row { display: flex; gap: 10px; margin-top: 14px; }
.social-row a { width: 40px; height: 40px; border: 1px solid rgba(255,255,255,.22); border-radius: 10px; display: grid; place-items: center; font-weight: 700; }
.social-row a:hover { background: rgba(255,255,255,.1); }
.social-row a .brand-ico { width: 20px; height: 20px; }
.btn .brand-ico { width: 18px; height: 18px; margin-right: 2px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.14); margin-top: 36px; padding-top: 20px; font-size: .85rem; color: rgba(255,255,255,.6); display: flex; flex-wrap: wrap; gap: 8px 18px; justify-content: space-between; }

/* ---- Mobile sticky action bar ------------------------------------------ */
/* Shown across the whole mobile-nav range (≤900px) so large phones/tablets keep
   a persistent Call/Book/Order CTA — the header buttons are hidden at this size. */
.action-bar { display: none; }
@media (max-width: 900px) {
  .action-bar {
    display: grid; grid-auto-flow: column; grid-auto-columns: 1fr; gap: 8px;
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
    background: var(--cream); border-top: 1px solid var(--line);
    padding: 8px 12px calc(8px + env(safe-area-inset-bottom)); box-shadow: 0 -4px 16px rgba(33,26,20,.1);
  }
  .action-bar .btn { padding: .7em .5em; font-size: .9rem; min-height: 48px; }
  body { padding-bottom: 72px; }
  /* On the collection-order page the cart FAB is the action, so drop the bar
     to avoid two stacked bottom bars. */
  body.has-order-app .action-bar { display: none; }
}

/* ---- Cookie consent banner ---------------------------------------------- */
.consent {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 200;
  background: var(--ink); color: #fff;
  box-shadow: 0 -6px 24px rgba(33,26,20,.22);
  padding: 14px 0 calc(14px + env(safe-area-inset-bottom));
}
.consent__inner { display: flex; align-items: center; justify-content: space-between; gap: 12px 22px; flex-wrap: wrap; }
.consent__text { margin: 0; font-size: .92rem; line-height: 1.5; color: rgba(255,255,255,.88); max-width: 68ch; }
.consent__text a { color: #fff; text-decoration: underline; }
.consent__actions { display: flex; gap: 10px; flex: none; }
.consent__btn { min-height: 44px; }
.consent .btn--ghost { --btn-fg: #fff; --btn-bd: rgba(255,255,255,.4); }
.consent .btn--ghost:hover { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.65); color: #fff; }
@media (max-width: 900px) {
  .consent { bottom: 72px; }            /* sit above the mobile sticky action bar */
  .consent__inner { justify-content: center; text-align: center; }
  .consent__actions { width: 100%; }
  .consent__actions .consent__btn { flex: 1; }
}

/* ---- Utilities ---------------------------------------------------------- */
.text-center { text-align: center; }
.mt-1 { margin-top: .5rem; } .mt-2 { margin-top: 1rem; } .mt-3 { margin-top: 1.5rem; } .mt-4 { margin-top: 2rem; }
.mb-0 { margin-bottom: 0; }
.flow > * + * { margin-top: 1rem; }
.divider { height: 1px; background: var(--line); border: 0; margin-block: 28px; }
.pill { display:inline-flex; align-items:center; gap:.4em; background: var(--brick-tint); color: var(--brick-dark); font-weight:600; font-size:.82rem; padding:.35em .8em; border-radius:999px; }
