/* =========================================================
   Asliya Foods — premium heritage Iraqi food brand
   Palette from BRAND_BRIEF §4  ·  Fraunces + Inter + Amiri
   ========================================================= */

:root {
  /* Brand palette */
  --sandstone:   #EAD8B7;
  --sandstone-2: #F4E9D4;   /* airy light tint */
  --olive:       #7A8A5E;
  --teal:        #4F8A8E;
  --gold:        #C49A56;
  --chestnut:    #6B4B2E;
  --espresso:    #3B2A1D;

  /* Derived */
  --cream:       #FBF5E9;
  --gold-deep:   #A97F3E;
  --olive-deep:  #61714A;
  --espresso-90: rgba(59, 42, 29, 0.9);
  --line:        rgba(107, 75, 46, 0.16);

  /* Type */
  --serif: "Fraunces", Georgia, "Times New Roman", serif;
  --sans:  "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --arabic: "Amiri", "Fraunces", serif;

  /* Layout */
  --maxw: 1200px;
  --pad: clamp(1.25rem, 4vw, 3rem);
  --radius: 16px;
  --radius-lg: 24px;

  --shadow-sm: 0 1px 2px rgba(59,42,29,.06), 0 6px 20px rgba(59,42,29,.06);
  --shadow-md: 0 10px 40px rgba(59,42,29,.12);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
}
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--espresso);
  background: var(--sandstone-2);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--teal); text-decoration: none; }
h1, h2, h3 { margin: 0; font-family: var(--serif); font-weight: 600; line-height: 1.08; letter-spacing: -0.01em; color: var(--espresso); }
p { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
button { font-family: inherit; cursor: pointer; }

/* ---------- Accessibility helpers ---------- */
.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;
}
.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 200;
  background: var(--espresso); color: var(--cream); padding: 10px 18px;
  border-radius: 0 0 10px 10px; transition: top .2s ease; font-weight: 600;
}
.skip-link:focus { top: 0; }

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

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--pad); }
.eyebrow {
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .72rem;
  font-weight: 700;
  color: #8A6224; /* darkened gold for AA contrast on sandstone */
  margin-bottom: 1rem;
}
.eyebrow--light { color: var(--gold); }
.section-head { max-width: 640px; margin: 0 auto clamp(2.5rem, 5vw, 4rem); text-align: center; }
.section-head h2 { font-size: clamp(2rem, 4.2vw, 3.1rem); }
.section-sub { margin-top: 1rem; color: var(--chestnut); font-size: 1.05rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font-family: var(--sans); font-weight: 600; font-size: .98rem;
  padding: .85rem 1.6rem; border-radius: 999px; border: 1.5px solid transparent;
  min-height: 48px; transition: transform .18s ease, background .2s ease, color .2s ease, box-shadow .2s ease, border-color .2s ease;
  text-align: center;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn-primary { background: var(--gold); color: var(--espresso); box-shadow: 0 8px 22px rgba(196,154,86,.32); }
.btn-primary:hover { background: var(--gold-deep); color: var(--cream); }
.btn-ghost { background: transparent; color: var(--espresso); border-color: rgba(107,75,46,.35); }
.btn-ghost:hover { background: rgba(107,75,46,.06); border-color: var(--chestnut); }

/* ---------- Announcement ---------- */
.announce {
  background: var(--espresso); color: var(--sandstone);
  text-align: center; font-size: .82rem; letter-spacing: .02em;
}
.announce p { margin: 0; padding: .55rem var(--pad); font-weight: 500; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(244,233,212,.82);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 74px; }
.brand { display: flex; align-items: center; gap: .7rem; color: var(--espresso); }
.brand img { width: 52px; height: 52px; }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-ar { font-family: var(--arabic); font-size: 1.35rem; color: var(--teal); }
.brand-en { font-family: var(--serif); font-weight: 600; font-size: 1.15rem; letter-spacing: .01em; }

.main-nav ul { display: flex; gap: 2rem; }
.main-nav a {
  color: var(--espresso); font-weight: 500; font-size: .98rem; position: relative;
  padding: .4rem 0;
}
.main-nav a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; width: 0; height: 2px;
  background: var(--gold); transition: width .25s ease;
}
.main-nav a:hover::after, .main-nav a:focus-visible::after { width: 100%; }

.header-actions { display: flex; align-items: center; gap: .75rem; }
.btn-cart {
  background: transparent; color: var(--espresso); border-color: rgba(107,75,46,.25);
  padding: .6rem 1.05rem; min-height: 44px; font-size: .92rem;
}
.btn-cart:hover { background: var(--espresso); color: var(--cream); border-color: var(--espresso); }
.btn-cart svg { flex: none; }
.cart-count {
  background: var(--gold); color: var(--espresso); font-size: .72rem; font-weight: 700;
  min-width: 20px; height: 20px; padding: 0 5px; border-radius: 999px;
  display: inline-flex; align-items: center; justify-content: center;
}
.btn-cart:hover .cart-count { background: var(--cream); }

.nav-toggle {
  display: none; flex-direction: column; gap: 5px; width: 46px; height: 46px;
  align-items: center; justify-content: center; background: transparent;
  border: 1.5px solid rgba(107,75,46,.25); border-radius: 12px;
}
.nav-toggle span { width: 20px; height: 2px; background: var(--espresso); border-radius: 2px; transition: transform .25s ease, opacity .2s ease; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  border-top: 1px solid var(--line); background: var(--sandstone-2);
}
.mobile-menu ul { padding: .5rem var(--pad) 1.25rem; }
.mobile-menu a {
  display: block; padding: .95rem .25rem; font-family: var(--serif); font-size: 1.4rem;
  color: var(--espresso); border-bottom: 1px solid var(--line); font-weight: 500;
}
.mobile-menu li:last-child a { border-bottom: none; }

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(120% 80% at 85% 10%, rgba(122,138,94,.16), transparent 55%),
    radial-gradient(90% 70% at 5% 100%, rgba(79,138,142,.14), transparent 55%),
    linear-gradient(180deg, var(--sandstone-2) 0%, var(--sandstone) 100%);
}
.hero-pattern {
  position: absolute; inset: 0; pointer-events: none; opacity: .5;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(107,75,46,.10) 1.4px, transparent 1.6px);
  background-size: 26px 26px;
  -webkit-mask-image: linear-gradient(180deg, transparent, #000 40%, transparent);
          mask-image: linear-gradient(180deg, transparent, #000 40%, transparent);
}
.hero-inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: clamp(2rem, 5vw, 4rem);
  padding-top: clamp(3rem, 7vw, 6rem); padding-bottom: clamp(3rem, 7vw, 6rem);
}
.hero h1 { font-size: clamp(2.7rem, 6.4vw, 5rem); letter-spacing: -0.025em; }
.hero h1 { font-weight: 600; }
.hero-lede { margin-top: 1.5rem; font-size: clamp(1.05rem, 1.6vw, 1.22rem); color: var(--chestnut); max-width: 46ch; }
.hero-cta { display: flex; flex-wrap: wrap; gap: .85rem; margin-top: 2rem; }
.hero-trust {
  display: flex; flex-wrap: wrap; gap: 1.5rem 2rem; margin-top: 2.6rem;
  padding-top: 1.6rem; border-top: 1px solid var(--line);
}
.hero-trust li {
  font-size: .9rem; font-weight: 600; color: var(--chestnut); position: relative; padding-left: 1.4rem;
}
.hero-trust li::before {
  content: ""; position: absolute; left: 0; top: .45em; width: .7rem; height: .7rem;
  background: var(--olive); border-radius: 50%; box-shadow: 0 0 0 4px rgba(122,138,94,.18);
}

.hero-mark { display: flex; justify-content: center; }
.mark-frame {
  position: relative; width: min(420px, 88%); aspect-ratio: 1; display: grid; place-items: center;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 40%, var(--cream), var(--sandstone) 78%);
  box-shadow: inset 0 0 0 1px rgba(196,154,86,.5), 0 30px 60px rgba(59,42,29,.18);
}
.mark-frame::before {
  content: ""; position: absolute; inset: 14px; border-radius: 50%;
  border: 1.5px dashed rgba(196,154,86,.55);
}
.mark-frame img { width: 74%; height: auto; filter: drop-shadow(0 12px 24px rgba(59,42,29,.18)); }

/* ---------- Marquee ---------- */
.marquee {
  background: var(--espresso); color: var(--sandstone); overflow: hidden; white-space: nowrap;
  border-block: 1px solid rgba(196,154,86,.25);
}
.marquee-track {
  display: inline-flex; align-items: center; gap: 2.2rem; padding: .95rem 1.1rem;
  animation: marquee 28s linear infinite; will-change: transform;
}
.marquee-track span {
  font-family: var(--serif); font-size: 1.35rem; font-style: italic; font-weight: 400;
  letter-spacing: .01em; color: var(--sandstone);
}
.marquee-track span[aria-hidden="true"] { color: var(--gold); font-style: normal; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- Story ---------- */
.story { background: var(--cream); padding-block: clamp(4rem, 9vw, 7rem); }
.story-inner { display: grid; grid-template-columns: .8fr 1.1fr; gap: clamp(2rem, 6vw, 5rem); align-items: center; }
.story-copy h2 { font-size: clamp(1.9rem, 4vw, 2.9rem); margin-bottom: 1.4rem; }
.story-copy p { color: var(--chestnut); margin-bottom: 1.1rem; font-size: 1.08rem; }
.link-arrow {
  display: inline-flex; align-items: center; gap: .5rem; margin-top: .6rem;
  color: var(--teal); font-weight: 600;
}
.link-arrow span { transition: transform .2s ease; }
.link-arrow:hover span { transform: translateX(4px); }

.story-art { display: flex; justify-content: center; }
.story-art-card {
  position: relative; width: 100%; max-width: 340px; aspect-ratio: 4/5; border-radius: var(--radius-lg);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1.4rem;
  padding: 2rem;
  background:
    linear-gradient(140deg, rgba(122,138,94,.14), transparent 60%),
    repeating-linear-gradient(45deg, rgba(196,154,86,.08) 0 12px, transparent 12px 24px),
    var(--sandstone);
  border: 1px solid rgba(196,154,86,.35);
  box-shadow: var(--shadow-md);
}
.story-art-card::before {
  content: ""; position: absolute; inset: 14px; border-radius: 18px;
  border: 1px solid rgba(107,75,46,.18); pointer-events: none;
}
.story-art-card img { width: 62%; opacity: .92; }
.story-art-year {
  font-family: var(--sans); font-size: .74rem; letter-spacing: .14em; text-transform: uppercase;
  font-weight: 600; color: var(--chestnut); text-align: center;
}

/* ---------- Menu / products ---------- */
.menu { padding-block: clamp(4rem, 9vw, 7rem); }
.product-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1rem, 2vw, 1.6rem);
}
.product-card {
  background: var(--cream); border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--line); box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
  transition: transform .22s ease, box-shadow .22s ease;
}
.product-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }

.product-img {
  aspect-ratio: 4/3; position: relative; overflow: hidden;
}
.product-img::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(120% 100% at 50% 0%, rgba(255,255,255,.14), transparent 60%);
}
/* Botanical/pattern placeholders — each dish a distinct warm treatment */
.img-dolma {
  background:
    radial-gradient(circle at 30% 30%, rgba(255,255,255,.22), transparent 40%),
    repeating-linear-gradient(125deg, var(--olive) 0 16px, var(--olive-deep) 16px 32px);
}
.img-kubba {
  background:
    radial-gradient(circle at 70% 35%, rgba(255,255,255,.25), transparent 45%),
    linear-gradient(135deg, var(--gold) 0%, var(--gold-deep) 100%);
}
.img-tashreeb {
  background:
    radial-gradient(circle at 30% 70%, rgba(255,255,255,.2), transparent 40%),
    repeating-radial-gradient(circle at 20% 20%, rgba(59,42,29,.12) 0 10px, transparent 10px 22px),
    linear-gradient(135deg, var(--chestnut), #543a24);
}
.img-qeema {
  background:
    radial-gradient(circle at 65% 30%, rgba(255,255,255,.2), transparent 45%),
    linear-gradient(135deg, #8a5a3a 0%, var(--chestnut) 100%);
}
.img-bamia {
  background:
    radial-gradient(circle at 40% 40%, rgba(255,255,255,.2), transparent 45%),
    repeating-linear-gradient(60deg, var(--olive-deep) 0 14px, var(--olive) 14px 28px);
}
.img-timman {
  background:
    radial-gradient(circle at 55% 35%, rgba(255,255,255,.28), transparent 50%),
    repeating-linear-gradient(90deg, var(--sandstone) 0 6px, #e0cba4 6px 12px);
}
.img-kleicha {
  background:
    radial-gradient(circle at 50% 40%, rgba(255,255,255,.22), transparent 50%),
    conic-gradient(from 20deg at 50% 55%, var(--gold), var(--chestnut), var(--gold-deep), var(--gold));
}
.img-soon {
  background:
    repeating-linear-gradient(45deg, rgba(79,138,142,.16) 0 14px, transparent 14px 28px),
    linear-gradient(135deg, #dfeceb, #cfe0df);
}
/* Palm motif watermark on each tile — refined SVG date-palm silhouette */
.product-img::before {
  content: "";
  position: absolute; right: 12px; bottom: 10px; width: 40px; height: 46px;
  opacity: .3;
  background: no-repeat center / contain
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 40 46' fill='none' stroke='%23FBF5E9' stroke-width='1.6' stroke-linecap='round'><path d='M20 44V17'/><path d='M20 17c-4-5-10-7-16-6 5 1 9 4 12 8'/><path d='M20 17c4-5 10-7 16-6-5 1-9 4-12 8'/><path d='M20 15c-3-6-8-9-14-10 5 3 8 7 10 12'/><path d='M20 15c3-6 8-9 14-10-5 3-8 7-10 12'/><path d='M20 14c-1-6-4-10-8-13 3 4 5 9 5 14'/><path d='M20 14c1-6 4-10 8-13-3 4-5 9-5 14'/></svg>");
}
.img-timman::before, .img-soon::before { opacity: .26; }

.product-body { padding: 1.15rem 1.15rem 1.25rem; display: flex; flex-direction: column; flex: 1; }
.product-top { display: flex; align-items: baseline; justify-content: space-between; gap: .6rem; }
.product-body h3 { font-size: 1.28rem; }
.tag {
  font-family: var(--sans); font-size: .64rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .1em; color: var(--olive-deep); background: rgba(122,138,94,.16);
  padding: .28rem .55rem; border-radius: 999px; white-space: nowrap;
}
.tag--muted { color: var(--teal); background: rgba(79,138,142,.16); }
.product-body p { color: var(--chestnut); font-size: .92rem; margin: .55rem 0 1.1rem; flex: 1; line-height: 1.55; }
.product-foot { display: flex; align-items: center; justify-content: space-between; gap: .6rem; }
.price { font-family: var(--serif); font-weight: 600; color: var(--espresso); font-size: 1.02rem; }
.price--muted { color: var(--chestnut); font-style: italic; font-weight: 500; }
.btn-add {
  background: var(--espresso); color: var(--cream); padding: .55rem 1.05rem; min-height: 44px;
  font-size: .88rem; border-radius: 999px;
}
.btn-add:hover { background: var(--gold-deep); color: var(--cream); }
.btn-add--ghost { background: transparent; color: var(--espresso); border-color: rgba(107,75,46,.3); }
.btn-add--ghost:hover { background: var(--espresso); color: var(--cream); }
.product-card--soon { background: linear-gradient(180deg, #eef4f3, var(--cream)); }

.menu-note { margin-top: 2rem; text-align: center; font-size: .85rem; color: var(--chestnut); font-style: italic; }

/* ---------- Catering ---------- */
.catering {
  background:
    radial-gradient(100% 120% at 100% 0%, rgba(79,138,142,.22), transparent 55%),
    var(--espresso);
  color: var(--sandstone); padding-block: clamp(4rem, 9vw, 7rem);
}
.catering-inner { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 6vw, 4.5rem); align-items: center; }
.catering h2 { color: var(--cream); font-size: clamp(1.9rem, 4vw, 2.9rem); margin-bottom: 1.3rem; }
.catering-copy > p { color: rgba(234,216,183,.85); font-size: 1.08rem; margin-bottom: 1.6rem; max-width: 48ch; }
.catering-list { display: grid; grid-template-columns: 1fr 1fr; gap: .7rem 1.5rem; margin-bottom: 2rem; }
.catering-list li {
  position: relative; padding-left: 1.6rem; font-weight: 500; color: var(--sandstone);
}
.catering-list li::before {
  content: ""; position: absolute; left: 0; top: .5em; width: .6rem; height: .6rem;
  border: 2px solid var(--gold); border-radius: 50%;
}
.catering-art {
  display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 1fr 1fr; gap: 1rem;
  aspect-ratio: 1; max-width: 460px; margin-inline: auto; width: 100%;
}
.catering-tile { border-radius: var(--radius); position: relative; overflow: hidden; box-shadow: 0 14px 34px rgba(0,0,0,.28); }
.catering-tile::after { content: ""; position: absolute; inset: 0; background: radial-gradient(120% 120% at 30% 20%, rgba(255,255,255,.16), transparent 55%); }
.tile-a { background: repeating-linear-gradient(45deg, var(--gold) 0 18px, var(--gold-deep) 18px 36px); }
.tile-b { background: linear-gradient(135deg, var(--olive) 0%, var(--olive-deep) 100%); }
.tile-c { background: linear-gradient(135deg, var(--teal) 0%, #3c6d70 100%); }
.tile-d { background: repeating-radial-gradient(circle at 30% 30%, var(--sandstone) 0 10px, #dcc79f 10px 20px); }

/* ---------- How it works ---------- */
.how { background: var(--sandstone); padding-block: clamp(4rem, 9vw, 7rem); }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1rem, 2.4vw, 2rem); }
.step {
  background: var(--cream); border-radius: var(--radius); padding: 1.8rem 1.5rem;
  border: 1px solid var(--line); position: relative; box-shadow: var(--shadow-sm);
}
.step-num {
  display: inline-block; font-family: var(--serif); font-size: 1.6rem; font-weight: 600;
  color: var(--gold-deep); background: rgba(196,154,86,.14); width: 3rem; height: 3rem;
  border-radius: 50%; display: grid; place-items: center; margin-bottom: 1rem;
}
.step h3 { font-size: 1.2rem; margin-bottom: .5rem; }
.step p { color: var(--chestnut); font-size: .95rem; }

/* ---------- Signup / contact ---------- */
.signup {
  background:
    radial-gradient(90% 120% at 0% 0%, rgba(122,138,94,.2), transparent 55%),
    linear-gradient(160deg, var(--olive-deep), #4a5738);
  color: var(--cream); padding-block: clamp(4rem, 9vw, 6.5rem);
}
.signup-inner { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 6vw, 4rem); align-items: center; }
.signup h2 { color: var(--cream); font-size: clamp(1.9rem, 4vw, 2.9rem); }
.signup-copy p { color: rgba(251,245,233,.85); margin-top: 1rem; font-size: 1.08rem; }
.signup-form { width: 100%; }
.field-row { display: flex; gap: .7rem; flex-wrap: wrap; }
.field-row input {
  flex: 1; min-width: 0; min-height: 52px; padding: .9rem 1.2rem; border-radius: 999px;
  border: 1.5px solid rgba(251,245,233,.4); background: rgba(251,245,233,.12); color: var(--cream);
  font-family: var(--sans); font-size: 1rem;
}
.field-row input::placeholder { color: rgba(251,245,233,.6); }
.field-row input:focus-visible { outline-color: var(--gold); background: rgba(251,245,233,.2); }
.field-row .btn { flex: none; }
.form-note { margin-top: .9rem; font-size: .82rem; color: rgba(251,245,233,.72); }
.form-note.is-success { color: #dff0d8; font-weight: 600; }
.form-note.is-error { color: #ffdcd0; font-weight: 600; }
.signup-contact { margin-top: 1.2rem; font-size: .92rem; color: rgba(251,245,233,.85); }
.signup-contact a { color: var(--sandstone); text-decoration: underline; text-underline-offset: 3px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--espresso); color: var(--sandstone); }
.footer-inner {
  display: grid; grid-template-columns: 1.3fr 2fr; gap: clamp(2rem, 6vw, 4rem);
  padding-block: clamp(3rem, 6vw, 4.5rem);
}
.footer-brand img { width: 76px; height: 76px; margin-bottom: 1.2rem; }
.footer-tag { color: rgba(234,216,183,.8); max-width: 34ch; font-size: .98rem; }
.footer-nav { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.footer-col h3 {
  font-family: var(--sans); font-size: .74rem; text-transform: uppercase; letter-spacing: .14em;
  color: var(--gold); margin-bottom: 1rem; font-weight: 700;
}
.footer-col li { margin-bottom: .6rem; }
.footer-col a, .footer-col li { color: rgba(234,216,183,.85); font-size: .95rem; }
.footer-col a:hover { color: var(--cream); text-decoration: underline; text-underline-offset: 3px; }
.footer-bottom { border-top: 1px solid rgba(234,216,183,.16); }
.footer-bottom-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
  padding-block: 1.3rem; font-size: .82rem; color: rgba(234,216,183,.7);
}
.footer-bottom-inner p { margin: 0; }

/* ---------- Toast ---------- */
.toast {
  position: fixed; left: 50%; bottom: 24px; transform: translateX(-50%) translateY(20px);
  background: var(--espresso); color: var(--cream); padding: .85rem 1.4rem; border-radius: 999px;
  box-shadow: var(--shadow-md); font-weight: 600; font-size: .92rem; z-index: 300;
  opacity: 0; transition: opacity .25s ease, transform .25s ease; border: 1px solid rgba(196,154,86,.4);
}
.toast.is-visible { opacity: 1; transform: translateX(-50%) translateY(0); }

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 1024px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
  .main-nav { display: none; }
  .nav-toggle { display: flex; }
  .btn-cart span:not(.cart-count) { display: none; }
  .btn-cart { padding: .6rem .8rem; }

  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-copy { order: 2; }
  .hero-mark { order: 1; }
  .hero-lede { margin-inline: auto; }
  .hero-cta { justify-content: center; }
  .hero-trust { justify-content: center; }
  .mark-frame { width: min(320px, 78%); }

  .story-inner { grid-template-columns: 1fr; }
  .story-art { order: 2; }
  .story-copy { order: 1; }
  .story-art-card { max-width: 300px; aspect-ratio: 3/4; }

  .catering-inner { grid-template-columns: 1fr; }
  .catering-art { order: -1; max-width: 380px; }

  .signup-inner { grid-template-columns: 1fr; }

  .footer-inner { grid-template-columns: 1fr; }
}

@media (max-width: 860px) {
  /* Larger tap targets for text links on touch layouts */
  .footer-col li a { display: inline-flex; align-items: center; min-height: 44px; }
  .footer-col li { margin-bottom: .2rem; }
  .link-arrow { min-height: 44px; }
  .signup-contact a { display: inline-flex; align-items: center; min-height: 44px; }
}

@media (max-width: 560px) {
  body { font-size: 16px; }
  .product-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .catering-list { grid-template-columns: 1fr; }
  .hero-trust { gap: 1rem 1.5rem; }
  .footer-nav { grid-template-columns: 1fr; gap: 1.6rem; }
  .field-row { flex-direction: column; }
  .field-row .btn { width: 100%; }
  .footer-bottom-inner { flex-direction: column; align-items: flex-start; gap: .4rem; }
  .announce p { font-size: .74rem; }
}

/* =========================================================
   Multi-page shell additions — appended for the 5-page split.
   Active nav state · page-hero (subpage header) · section CTA.
   Do not restyle components above this line.
   ========================================================= */

/* Active nav — the current page's link gets class="is-active" AND
   aria-current="page" (desktop .main-nav + .mobile-menu). Understated
   Desert Gold accent, same idiom as the existing hover underline. */
.main-nav a.is-active { font-weight: 600; }
.main-nav a.is-active::after { width: 100%; }

.mobile-menu a.is-active {
  color: var(--gold-deep);
  border-bottom-color: rgba(196,154,86,.55);
}

/* Page hero — compact header band for subpages (menu / story / catering /
   contact). Cream→sandstone band, centered eyebrow + Fraunces h1 +
   optional lede. Markup:
     <section class="page-hero" aria-labelledby="page-title">
       <div class="container page-hero-inner">
         <p class="eyebrow">Eyebrow</p>
         <h1 id="page-title">Title</h1>
         <p class="page-hero-lede">Optional lede.</p>
       </div>
     </section> */
.page-hero {
  background:
    radial-gradient(110% 90% at 85% 0%, rgba(122,138,94,.14), transparent 55%),
    radial-gradient(90% 80% at 8% 100%, rgba(79,138,142,.10), transparent 55%),
    linear-gradient(180deg, var(--cream) 0%, var(--sandstone) 100%);
  border-bottom: 1px solid var(--line);
}
.page-hero-inner {
  max-width: 780px;
  text-align: center;
  padding-top: clamp(2.75rem, 6vw, 4.25rem);
  padding-bottom: clamp(2.75rem, 6vw, 4.25rem);
}
.page-hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  letter-spacing: -0.02em;
  overflow-wrap: break-word;
}
.page-hero-lede {
  margin: 1.1rem auto 0;
  max-width: 56ch;
  color: var(--chestnut);
  font-size: clamp(1rem, 1.5vw, 1.15rem);
}

/* Centered CTA row under a grid or teaser (e.g. "See the full menu"). */
.section-cta { margin-top: clamp(2rem, 4vw, 2.75rem); text-align: center; }
