/* =========================================================
   Arnie's Fine Foods — modern & fresh
   Palette: crisp white + vibrant fresh green + sunny citrus
   Font: Figtree (one clean humanist sans; hierarchy via weight + size)
   ========================================================= */

:root {
  /* "Deli Craft" palette — deepen green→sage, white→warm cream, charcoal text,
     a terracotta appetite accent for the primary Order CTA + prices, mustard garnish.
     Token names keep their old semantics (--green = brand, --citrus = warm accent,
     --ink = text, --bg = page) so the whole system remaps from these values. */
  --green: #3F6B47;          /* deep sage-forest — fresh/trust cue */
  --green-600: #365e3d;
  --green-700: #2c4f34;      /* darkest sage — small text on light */
  --green-050: #eef3ee;      /* faint sage wash */
  --green-100: #dde8dd;
  --lime: #7c9a5e;           /* muted olive-lime */
  --citrus: #D9A441;         /* warm mustard garnish (was bright yellow) */
  --citrus-soft: #f0dcae;
  --coral: #C8552E;          /* terracotta — appetite accent alias */
  --terracotta: #C8552E;     /* primary CTA / price / order action */
  --terracotta-700: #b04524; /* darker terracotta for small text AA */
  --ink: #2B2A26;            /* warm charcoal text */
  --slate: #55524b;          /* warm secondary text */
  --muted: #6b665d;          /* WCAG AA ≥4.5:1 on cream — warm muted */
  --line: #e6e0d5;           /* warm hairline */
  --bg: #FAF7F0;             /* warm cream page */
  --bg-soft: #f3eee3;        /* deeper cream panel */
  --bg-mint: #eef3ea;        /* soft sage panel */
  --white: #ffffff;
  --surface: #FDFBF6;        /* card surface — off-cream */

  --shadow-xs: 0 1px 2px rgba(43, 42, 38, 0.07);
  --shadow-sm: 0 4px 14px rgba(43, 42, 38, 0.08);
  --shadow-md: 0 12px 30px rgba(43, 42, 38, 0.11);
  --shadow-lg: 0 28px 60px rgba(43, 42, 38, 0.16);
  --shadow-green: 0 12px 26px rgba(200, 85, 46, 0.28); /* CTA shadow now terracotta */

  --radius: 16px;
  --radius-lg: 26px;
  --radius-xl: 34px;
  --maxw: 1180px;

  /* Figtree — one clean, warm-neutral humanist sans for the whole shop.
     Hierarchy comes from weight + size, not a second family. */
  --font-display: "Figtree", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-text: "Figtree", system-ui, -apple-system, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 88px; }
body {
  margin: 0;
  font-family: var(--font-text);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.08;
  color: var(--ink);
  margin: 0 0 0.5em;
  letter-spacing: -0.025em; /* Figtree tightens nicely at display sizes */
}
p { margin: 0 0 1em; }
a { color: var(--green-700); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; display: block; }

/* Screen-reader-only content (visually hidden, still announced). */
.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* Keyboard focus visibility — was absent site-wide. */
:focus-visible { outline: 2px solid var(--green); outline-offset: 2px; border-radius: 4px; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-text);
  font-weight: 700;
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green-700);
  background: var(--green-050);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
}

.section { padding: 96px 0; }
.section--tight { padding: 68px 0; }
.section-head { max-width: 660px; margin: 0 auto 52px; text-align: center; }
.section-head h2 { font-size: clamp(2rem, 4.4vw, 3rem); }
.section-head p { color: var(--slate); font-size: 1.12rem; margin: 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--font-display);
  font-weight: 700; font-size: 1rem;
  padding: 14px 28px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.14s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  text-decoration: none; white-space: nowrap;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
/* Primary = the appetite/order action → terracotta (drives conversion). */
.btn--primary { background: var(--terracotta); color: #fff; box-shadow: var(--shadow-green); }
.btn--primary:hover { background: var(--terracotta-700); }
.btn--dark { background: var(--ink); color: #fff; }
.btn--dark:hover { background: #1c1b18; }
.btn--ghost { background: #fff; color: var(--ink); border-color: var(--line); box-shadow: var(--shadow-xs); }
.btn--ghost:hover { border-color: var(--green); color: var(--green-700); background: var(--green-050); }
.btn--citrus { background: var(--citrus); color: #3a2a00; }
.btn--citrus:hover { background: #c99235; }
.btn--full { width: 100%; }
.btn--sm { padding: 10px 18px; font-size: 0.92rem; }
.btn--lg { padding: 17px 34px; font-size: 1.08rem; }
.btn:disabled { opacity: 0.55; cursor: not-allowed; transform: none; }

/* ---------- Header / nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.site-header.is-stuck { border-color: var(--line); box-shadow: var(--shadow-sm); }
.nav { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.brand:hover { text-decoration: none; }
.brand__mark { width: 44px; height: 44px; flex: none; }
.brand__text { display: flex; flex-direction: column; line-height: 1.05; }
.brand__name { font-family: var(--font-display); font-weight: 800; font-size: 1.24rem; color: var(--ink); letter-spacing: -0.02em; }
.brand__tag { font-size: 0.66rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--green); font-weight: 700; margin-top: 2px; }

.nav__links { display: flex; align-items: center; gap: 2px; }
.nav__links a {
  color: var(--slate); font-weight: 600; font-size: 0.96rem;
  padding: 9px 15px; border-radius: 999px;
  transition: background 0.15s ease, color 0.15s ease;
}
.nav__links a:hover { background: var(--bg-soft); color: var(--ink); text-decoration: none; }
.nav__actions { display: flex; align-items: center; gap: 12px; }

.order-pill { position: relative; }
.order-pill__count {
  position: absolute; top: -7px; right: -7px;
  min-width: 21px; height: 21px; padding: 0 5px;
  border-radius: 999px; background: var(--citrus); color: #3a2a00;
  font-size: 0.72rem; font-weight: 800;
  display: none; align-items: center; justify-content: center;
  border: 2px solid #fff;
}
.order-pill__count.is-visible { display: inline-flex; }

.nav__toggle {
  display: none; width: 46px; height: 46px;
  border: 1px solid var(--line); background: #fff; border-radius: 14px;
  cursor: pointer; align-items: center; justify-content: center;
}
.nav__toggle span, .nav__toggle span::before, .nav__toggle span::after {
  content: ""; display: block; width: 20px; height: 2px; background: var(--ink);
  position: relative; border-radius: 2px;
}
.nav__toggle span::before { position: absolute; top: -6px; }
.nav__toggle span::after { position: absolute; top: 6px; }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; background: var(--bg); padding-top: 40px; }
.hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(48% 42% at 88% 8%, rgba(255, 183, 3, 0.16), transparent 70%),
    radial-gradient(52% 46% at 8% 92%, rgba(22, 163, 74, 0.12), transparent 70%);
  pointer-events: none;
}
.hero__inner { position: relative; display: grid; grid-template-columns: 1.02fr 0.98fr; gap: 56px; align-items: center; padding: 60px 0 96px; }
.hero h1 { font-size: clamp(2.6rem, 5.6vw, 4.3rem); margin-bottom: 22px; }
.hero h1 .hl {
  color: var(--green-700);
  background: linear-gradient(transparent 62%, var(--citrus-soft) 62%);
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  padding: 0 2px;
}
.hero__lead { font-size: 1.2rem; color: var(--slate); max-width: 40ch; margin-bottom: 30px; }
.hero__cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero__trust { display: flex; align-items: center; gap: 18px; margin-top: 28px; flex-wrap: wrap; }
.hero__trust span { display: inline-flex; align-items: center; gap: 8px; font-size: 0.92rem; color: var(--slate); font-weight: 500; }
.hero__trust svg { color: var(--green); flex: none; }

.hero__art { position: relative; }
.hero__photo {
  position: relative; z-index: 2;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: linear-gradient(150deg, var(--green-050), #fff 55%, var(--bg-mint));
  aspect-ratio: 5 / 5.3;
}
.hero__photo svg { width: 100%; height: 100%; display: block; }
.hero__chip {
  position: absolute; z-index: 3;
  background: #fff; border-radius: 18px; padding: 13px 16px;
  box-shadow: var(--shadow-md);
  display: flex; align-items: center; gap: 11px;
  font-weight: 600; font-size: 0.9rem;
}
.hero__chip .dot { width: 34px; height: 34px; border-radius: 11px; display: grid; place-items: center; font-size: 1.1rem; }
.hero__chip small { display: block; color: var(--muted); font-weight: 500; font-size: 0.78rem; }
.hero__chip--tl { top: 22px; left: -20px; }
/* Keep the bottom-right chip clear of the fixed "Help me order" FAB corner. */
.hero__chip--br { bottom: 70px; right: -18px; }
.hero__blob { position: absolute; z-index: 1; inset: -6% -8% -8% -6%; background: var(--green-050); border-radius: 46% 54% 58% 42% / 52% 44% 56% 48%; }

/* ---------- Marquee / logos strip ---------- */
.strip { background: var(--bg-soft); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.strip__row { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 22px 0; flex-wrap: wrap; }
.strip__item { display: flex; align-items: center; gap: 10px; color: var(--slate); font-weight: 600; font-size: 0.94rem; }
.strip__item svg { color: var(--green); flex: none; }

/* ---------- Services ---------- */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card {
  position: relative; background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 32px;
  transition: transform 0.16s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  overflow: hidden;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.service-card__icon { width: 60px; height: 60px; border-radius: 18px; display: grid; place-items: center; font-size: 1.7rem; margin-bottom: 20px; background: var(--green-050); }
.service-card:nth-child(2) .service-card__icon { background: #fff3d6; }
.service-card:nth-child(3) .service-card__icon { background: #ffe9e2; }
.service-card h3 { font-size: 1.32rem; }
.service-card p { color: var(--slate); margin: 0; }

/* ---------- How it works ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.step { position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 30px 28px; }
.step__num { width: 44px; height: 44px; border-radius: 13px; background: var(--ink); color: #fff; font-family: var(--font-display); font-weight: 800; font-size: 1.25rem; display: grid; place-items: center; margin-bottom: 16px; }
.step:nth-child(2) .step__num { background: var(--green); }
.step:nth-child(3) .step__num { background: var(--citrus); color: #3a2a00; }
.step h3 { font-size: 1.22rem; margin-bottom: 6px; }
.step p { color: var(--slate); margin: 0; }

/* ---------- Menu ---------- */
.menu-section { background: var(--bg-soft); }
.menu-cat { margin-bottom: 40px; }
.menu-cat:last-of-type { margin-bottom: 0; }
.menu-cat__head { display: flex; align-items: center; gap: 14px; margin-bottom: 20px; }
.menu-cat__emoji { width: 46px; height: 46px; border-radius: 14px; background: #fff; border: 1px solid var(--line); display: grid; place-items: center; font-size: 1.4rem; flex: none; box-shadow: var(--shadow-xs); }
.menu-cat__head h3 { font-size: 1.5rem; margin: 0; }
.menu-cat__head p { color: var(--muted); font-size: 0.94rem; margin: 2px 0 0; }
.menu-items { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.menu-item {
  display: flex; justify-content: space-between; gap: 16px;
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); padding: 20px 22px;
  transition: border-color 0.15s ease, box-shadow 0.2s ease, transform 0.15s ease;
}
.menu-item:hover { border-color: var(--green); box-shadow: var(--shadow-sm); transform: translateY(-2px); }
.menu-item__body { min-width: 0; }
.menu-item__name { font-family: var(--font-display); font-weight: 700; font-size: 1.08rem; color: var(--ink); margin: 0 0 4px; }
.menu-item__desc { font-size: 0.92rem; color: var(--slate); margin: 0 0 8px; }
.menu-item__unit { font-size: 0.74rem; letter-spacing: 0.05em; text-transform: uppercase; color: var(--muted); font-weight: 600; }
.menu-item__side { display: flex; flex-direction: column; align-items: flex-end; gap: 12px; flex: none; }
.menu-item__price { font-family: var(--font-display); font-weight: 800; font-size: 1.16rem; color: var(--terracotta-700); white-space: nowrap; }
.add-btn {
  position: relative;
  border: none; background: var(--green-050); color: var(--green-700);
  border-radius: 12px; width: 38px; height: 38px;
  font-size: 1.4rem; line-height: 1; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.15s ease, color 0.15s ease, transform 0.1s ease;
}
/* Extend the touch target to ≥44px without enlarging the visual button. */
.add-btn::after { content: ""; position: absolute; top: 50%; left: 50%; width: 44px; height: 44px; transform: translate(-50%, -50%); }
.add-btn:hover { background: var(--green); color: #fff; }
.add-btn:active { transform: scale(0.9); }
.menu-note { text-align: center; color: var(--slate); font-size: 0.94rem; margin-top: 42px; }
.menu-note strong { color: var(--ink); }

/* ---------- About ---------- */
.about { background: var(--ink); color: #dfeee6; position: relative; overflow: hidden; }
.about::before { content: ""; position: absolute; top: -20%; right: -10%; width: 480px; height: 480px; background: radial-gradient(circle, rgba(22,163,74,0.35), transparent 70%); pointer-events: none; }
.about h2, .about h3 { color: #fff; }
.about__grid { position: relative; display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 60px; align-items: center; }
.about .eyebrow { background: rgba(255,255,255,0.08); color: var(--lime); }
.about__lead { font-size: 1.35rem; color: #fff; font-family: var(--font-display); font-weight: 700; letter-spacing: -0.01em; margin-bottom: 18px; }
.about p { color: #b9cabf; }
.about__signature { font-family: var(--font-display); font-weight: 700; font-size: 1.2rem; color: var(--citrus); margin-top: 22px; }
.about__portrait { border-radius: var(--radius-xl); aspect-ratio: 4/5; overflow: hidden; box-shadow: var(--shadow-lg); background: linear-gradient(160deg, var(--green-100), #cfe9d8); }
.about__portrait svg { width: 100%; height: 100%; }
.about__stats { display: flex; gap: 14px; margin-top: 30px; flex-wrap: wrap; }
.about__stat { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: 16px; padding: 16px 20px; }
.about__stat strong { display: block; font-family: var(--font-display); font-weight: 800; font-size: 1.5rem; color: #fff; line-height: 1; margin-bottom: 4px; }
.about__stat span { font-size: 0.84rem; color: #9fb3a7; }

/* ---------- Order / form ---------- */
.order-section { background: var(--bg-mint); }
.order-grid { display: grid; grid-template-columns: 1fr 0.85fr; gap: 36px; align-items: start; }
.card {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 34px; box-shadow: var(--shadow-sm);
}
.order-summary-wrap { position: sticky; top: 100px; }

.field { margin-bottom: 18px; }
.field label { display: block; font-family: var(--font-text); font-weight: 600; font-size: 0.9rem; color: var(--ink); margin-bottom: 7px; }
.field .req { color: var(--coral); }
.field input, .field textarea, .field select {
  width: 100%; font-family: var(--font-text); font-size: 1rem; color: var(--ink);
  padding: 13px 15px; border: 1.5px solid var(--line); border-radius: 13px; background: var(--bg-soft);
  transition: border-color 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--green); background: #fff;
  box-shadow: 0 0 0 4px rgba(22, 163, 74, 0.12);
}
.field textarea { resize: vertical; min-height: 92px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field-hint { font-size: 0.82rem; color: var(--muted); margin-top: 6px; }

.summary-title { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.summary-title h3 { margin: 0; font-size: 1.35rem; }
.summary-empty { color: var(--muted); text-align: center; padding: 34px 10px; }
.summary-empty svg { color: var(--line); margin-bottom: 12px; }

.summary-list { list-style: none; margin: 0 0 18px; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.summary-line { display: flex; align-items: center; gap: 12px; }
.summary-line__body { flex: 1; min-width: 0; }
.summary-line__name { font-family: var(--font-display); font-weight: 600; font-size: 0.95rem; color: var(--ink); overflow-wrap: anywhere; }
.summary-line__meta { font-size: 0.8rem; color: var(--muted); }
.qty { display: flex; align-items: center; gap: 8px; background: var(--bg-soft); border-radius: 10px; padding: 3px; }
.qty button { position: relative; width: 28px; height: 28px; border-radius: 8px; border: none; background: #fff; cursor: pointer; font-size: 1.05rem; line-height: 1; color: var(--green-700); display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-xs); }
.qty button::after { content: ""; position: absolute; top: 50%; left: 50%; width: 44px; height: 44px; transform: translate(-50%, -50%); }
.qty button:hover { background: var(--green); color: #fff; }
.qty span { min-width: 18px; text-align: center; font-weight: 700; font-size: 0.9rem; }
.summary-line__price { font-family: var(--font-display); font-weight: 700; font-size: 0.92rem; min-width: 58px; text-align: right; color: var(--ink); }

.summary-totals { border-top: 1px dashed var(--line); padding-top: 18px; margin-bottom: 20px; }
.summary-totals .row { display: flex; justify-content: space-between; font-size: 0.96rem; margin-bottom: 9px; color: var(--slate); }
.summary-totals .row.total { font-family: var(--font-display); font-weight: 800; font-size: 1.24rem; color: var(--ink); margin: 6px 0; }
.summary-totals .row.deposit { color: var(--green-700); font-weight: 700; }

.summary-actions { display: flex; flex-direction: column; gap: 10px; }
.pay-note { font-size: 0.8rem; color: var(--muted); text-align: center; margin: 4px 0 0; }
.pay-badges { display: flex; align-items: center; justify-content: center; gap: 7px; margin-top: 6px; color: var(--muted); font-size: 0.76rem; }
.pay-badges svg { color: var(--green); }

.form-status { padding: 15px 17px; border-radius: 14px; font-size: 0.94rem; margin-top: 16px; display: none; }
.form-status.is-success { display: block; background: var(--green-050); color: var(--green-700); border: 1px solid var(--green-100); }
.form-status.is-error { display: block; background: #ffeee9; color: #b23b1e; border: 1px solid #ffd3c6; }

/* ---------- CTA band ---------- */
.cta-band { padding: 40px 0; }
.cta-inner { background: var(--green); color: #fff; border-radius: var(--radius-xl); padding: 60px 40px; text-align: center; position: relative; overflow: hidden; }
.cta-inner::before { content: ""; position: absolute; top: -40%; left: -10%; width: 380px; height: 380px; background: radial-gradient(circle, rgba(255,255,255,0.18), transparent 70%); }
.cta-inner::after { content: ""; position: absolute; bottom: -50%; right: -8%; width: 420px; height: 420px; background: radial-gradient(circle, rgba(255,183,3,0.25), transparent 70%); }
.cta-inner h2 { color: #fff; font-size: clamp(1.9rem, 4vw, 2.7rem); position: relative; }
.cta-inner p { color: #dcf5e5; font-size: 1.12rem; max-width: 48ch; margin: 0 auto 26px; position: relative; }
.cta-inner .btn { position: relative; }

/* ---------- Footer ---------- */
.site-footer { background: #fff; border-top: 1px solid var(--line); padding: 64px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 44px; margin-bottom: 44px; }
.site-footer h4 { color: var(--ink); font-size: 0.82rem; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 16px; font-family: var(--font-text); }
.footer-brand__name { font-family: var(--font-display); font-weight: 800; font-size: 1.5rem; color: var(--ink); margin-bottom: 10px; letter-spacing: -0.02em; }
.site-footer p { color: var(--slate); }
.footer-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; font-size: 0.96rem; }
.footer-list a { color: var(--slate); }
.footer-list a:hover { color: var(--green-700); }
.footer-contact { display: flex; align-items: center; gap: 11px; font-size: 0.96rem; color: var(--slate); margin-bottom: 10px; }
.footer-contact svg { color: var(--green); flex: none; }
.footer-bottom { border-top: 1px solid var(--line); padding-top: 26px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 0.86rem; color: var(--muted); }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.is-in { opacity: 1; transform: none; }

/* ---------- Toast ---------- */
.toast {
  position: fixed; bottom: 26px; left: 50%;
  transform: translateX(-50%) translateY(140%);
  background: var(--ink); color: #fff; padding: 14px 24px;
  border-radius: 999px; box-shadow: var(--shadow-lg);
  font-family: var(--font-display); font-weight: 600; font-size: 0.94rem;
  z-index: 100; transition: transform 0.32s cubic-bezier(0.2, 0.9, 0.2, 1);
  pointer-events: none; display: flex; align-items: center; gap: 9px;
}
.toast .toast__check { color: var(--lime); }
.toast.is-visible { transform: translateX(-50%) translateY(0); }

/* ---------- Responsive ---------- */
@media (max-width: 920px) {
  .hero__inner { grid-template-columns: 1fr; gap: 48px; padding: 30px 0 80px; }
  .hero__art { max-width: 460px; margin: 0 auto; }
  .services-grid, .steps { grid-template-columns: 1fr; }
  .menu-items { grid-template-columns: 1fr; }
  .about__grid { grid-template-columns: 1fr; gap: 36px; }
  .about__portrait { max-width: 360px; order: -1; }
  .order-grid { grid-template-columns: 1fr; }
  .order-summary-wrap { position: static; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .nav__links, .nav__actions .btn--ghost { display: none; }
  .nav__toggle { display: flex; }
  .nav.is-open .nav__links {
    display: flex; position: absolute; top: 76px; left: 12px; right: 12px;
    flex-direction: column; align-items: stretch;
    background: #fff; border: 1px solid var(--line); border-radius: 20px;
    padding: 12px; gap: 4px; box-shadow: var(--shadow-md);
  }
  .nav.is-open .nav__links a { padding: 13px 16px; }
}
@media (max-width: 560px) {
  .section { padding: 64px 0; }
  .field-row { grid-template-columns: 1fr; }
  .card { padding: 24px; }
  .hero__chip--tl { left: 0; }
  .hero__chip--br { right: 0; }
  .cta-inner { padding: 44px 24px; }
}
@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ==========================================================
   Menu photo cards
   ========================================================== */
.menu-items--cards { grid-template-columns: repeat(3, 1fr); }
.menu-item--card {
  flex-direction: column; justify-content: flex-start; gap: 0;
  padding: 0; overflow: hidden;
}
.menu-item--card .menu-item__photo {
  position: relative;
  margin: 0; aspect-ratio: 4 / 3; background: var(--bg);
  overflow: hidden;
}
.menu-item--card .menu-item__photo img {
  width: 100%; height: 100%; object-fit: cover; object-position: center; display: block;
  transition: transform 0.4s ease;
  /* Mild shared grade on full-scene photos only — warmth comes from the cream
     surround, not a heavy filter. */
  filter: saturate(1.06) contrast(1.03) brightness(1.02);
}
/* Cutout / white-background product shots: float them centered on the cream
   surface instead of cropping like a scene photo. One card, two fit modes. */
.menu-item--card .menu-item__photo img.is-cutout {
  object-fit: contain; padding: 14px; background: #fff; filter: none;
}
.menu-item--card .menu-item__photo:has(img.is-cutout) { background: #fff; }
/* Consistent seam between photo and card. */
.menu-item--card .menu-item__photo::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  border-bottom: 1px solid rgba(43,42,38,0.06);
}
.menu-item--card:hover .menu-item__photo img:not(.is-cutout) { transform: scale(1.05); }
.menu-item--card .menu-item__body { padding: 18px 18px 0; flex: 1 1 auto; }
.menu-item--card .menu-item__side {
  flex-direction: row; align-items: center; justify-content: space-between;
  width: 100%; padding: 12px 18px 18px;
}
@media (max-width: 920px) { .menu-items--cards { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .menu-items--cards { grid-template-columns: 1fr; } }

/* ==========================================================
   Delivery status
   ========================================================== */
.delivery-status { font-size: 0.9rem; margin-top: 8px; padding: 10px 13px; border-radius: 11px; display: none; }
.delivery-status.is-checking { display: block; background: var(--bg-soft); color: var(--slate); border: 1px solid var(--line); }
.delivery-status.is-ok { display: block; background: var(--green-050); color: var(--green-700); border: 1px solid var(--green-100); }
.delivery-status.is-warn { display: block; background: #fff6e5; color: #a86a12; border: 1px solid #ffe6b8; }
.delivery-status.is-info { display: block; background: #eef4ff; color: #2f5cb0; border: 1px solid #d7e4ff; }

/* ==========================================================
   Chatbot
   ========================================================== */
.chat-fab {
  position: fixed; bottom: 22px; right: 22px; z-index: 60;
  display: inline-flex; align-items: center; gap: 9px;
  padding: 13px 18px; border: none; border-radius: 999px;
  background: var(--green); color: #fff; cursor: pointer;
  font-family: var(--font-display); font-weight: 700; font-size: 0.95rem;
  box-shadow: var(--shadow-green, 0 12px 30px rgba(22,163,74,0.35));
  transition: transform 0.15s ease, background 0.15s ease;
}
.chat-fab:hover { background: var(--green-700); transform: translateY(-2px); }
.chat-fab svg { flex: none; }
.chat-panel {
  position: fixed; bottom: 22px; right: 22px; z-index: 61;
  width: min(380px, calc(100vw - 32px)); height: min(560px, calc(100vh - 44px));
  background: #fff; border: 1px solid var(--line); border-radius: 22px;
  box-shadow: 0 24px 60px rgba(16,35,26,0.22);
  display: flex; flex-direction: column; overflow: hidden;
  opacity: 0; pointer-events: none; transform: translateY(14px) scale(0.98);
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.chat-panel.is-open { opacity: 1; pointer-events: auto; transform: none; }
.chat-panel__head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 15px 18px; background: var(--ink); color: #fff; flex: none;
}
.chat-panel__title { font-family: var(--font-display); font-weight: 700; font-size: 0.98rem; display: flex; align-items: center; gap: 8px; }
/* Status dot reflects real availability — green only when the assistant is live. */
.chat-panel__dot { width: 9px; height: 9px; border-radius: 50%; background: #94a3a0; box-shadow: 0 0 0 3px rgba(148,163,160,0.22); transition: background 0.25s ease, box-shadow 0.25s ease; }
.chat-panel__dot[data-state="live"] { background: #4ade80; box-shadow: 0 0 0 3px rgba(74,222,128,0.28); }
.chat-panel__dot[data-state="offline"] { background: #f59e0b; box-shadow: 0 0 0 3px rgba(245,158,11,0.22); }
.chat-panel__close { background: none; border: none; color: #fff; font-size: 1.7rem; line-height: 1; cursor: pointer; opacity: 0.8; width: 44px; height: 44px; display: grid; place-items: center; margin: -8px -8px -8px 0; }
.chat-panel__close:hover { opacity: 1; }
.chat-log { flex: 1 1 auto; overflow-y: auto; padding: 18px; display: flex; flex-direction: column; gap: 12px; background: var(--bg-soft); }
.chat-bubble { max-width: 84%; padding: 11px 15px; border-radius: 16px; font-size: 0.93rem; line-height: 1.45; white-space: pre-wrap; }
.chat-bubble--assistant { align-self: flex-start; background: #fff; border: 1px solid var(--line); color: var(--ink); border-bottom-left-radius: 5px; }
.chat-bubble--user { align-self: flex-end; background: var(--green-700); color: #fff; border-bottom-right-radius: 5px; }
.chat-bubble.is-typing { color: var(--muted); letter-spacing: 3px; }
.chat-input-row { display: flex; gap: 8px; padding: 12px; border-top: 1px solid var(--line); background: #fff; flex: none; }
.chat-input-row input { flex: 1 1 auto; border: 1px solid var(--line); border-radius: 12px; padding: 11px 14px; font: inherit; font-size: 0.94rem; }
.chat-input-row input:focus { outline: none; border-color: var(--green); box-shadow: 0 0 0 3px var(--green-050); }
.chat-send { flex: none; width: 44px; border: none; border-radius: 12px; background: var(--green); color: #fff; cursor: pointer; display: grid; place-items: center; }
.chat-send:hover { background: var(--green-700); }
@media (max-width: 560px) {
  .chat-fab span { display: none; }
  .chat-fab { padding: 15px; }
  .chat-panel { bottom: 12px; right: 12px; }
}
