/* =========================================================
   EZ Delights — Design System
   Brand: white + fresh green (Montreal meal prep)
   To change brand green: update --brand and --brand-dark below
   ========================================================= */

:root {
  --brand:        #4FB81C;          /* EZ Delights kelly green (matches logo) */
  --brand-dark:   #3E9015;          /* hover / pressed */
  --brand-soft:   #E8F6DD;          /* tint backgrounds */
  --brand-tint:   #F4FBEC;          /* very faint section bg */
  --ink:          #0F1F14;          /* primary text */
  --ink-2:        #2A3B30;          /* secondary headings */
  --muted:        #5C6B61;          /* body muted */
  --line:         #E5EDE7;          /* borders */
  --bg:           #FFFFFF;
  --bg-soft:      #F8FAF7;
  --warn:         #B45309;
  --shadow-sm:    0 1px 2px rgba(15, 31, 20, 0.05);
  --shadow:       0 8px 24px rgba(15, 31, 20, 0.08);
  --shadow-lg:    0 24px 60px rgba(15, 31, 20, 0.12);
  --radius:       14px;
  --radius-lg:    22px;
  --radius-pill:  999px;
  --container:    1200px;
  --pad:          clamp(20px, 4vw, 48px);
  --t:            cubic-bezier(.2,.8,.2,1);
}

/* Base ---------------------------------------------------- */
*,*::before,*::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--brand-dark); text-decoration: none; transition: color .2s var(--t); }
a:hover { color: var(--brand); }

h1,h2,h3,h4 {
  font-family: 'Outfit', 'Inter', sans-serif;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0 0 .5em;
}
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 3.4vw, 2.4rem); }
h3 { font-size: 1.25rem; }
p  { margin: 0 0 1rem; color: var(--ink-2); }
.lead { font-size: 1.125rem; color: var(--muted); max-width: 60ch; }

/* Layout -------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
}
section { padding: clamp(56px, 8vw, 96px) 0; }
.section-tint { background: var(--brand-tint); }
.section-soft { background: var(--bg-soft); }

.eyebrow {
  display: inline-block;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--brand-dark);
  background: var(--brand-soft);
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  margin-bottom: 14px;
}
.section-head { max-width: 720px; margin: 0 auto 48px; text-align: center; }
.section-head .lead { margin: 0 auto; }

/* Buttons ------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  font: 600 .95rem/1 'Inter', sans-serif;
  border-radius: var(--radius-pill);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .15s var(--t), background .2s var(--t), color .2s var(--t), box-shadow .2s var(--t);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--brand); color: #fff; box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--brand-dark); color: #fff; box-shadow: var(--shadow); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--brand); color: var(--brand-dark); }
.btn-lg { padding: 16px 28px; font-size: 1rem; }
.btn-sm { padding: 10px 18px; font-size: .85rem; }
.btn-arrow::after { content: "→"; transition: transform .2s var(--t); }
.btn-arrow:hover::after { transform: translateX(3px); }

/* Announcement bar (site-wide promo) -------------------- */
.announce-bar {
  background: linear-gradient(90deg, var(--brand) 0%, var(--brand-dark) 100%);
  color: #fff;
  text-align: center;
  font: 500 .9rem/1.4 'Inter', sans-serif;
  letter-spacing: .01em;
  padding: 10px var(--pad);
  position: relative;
}
.announce-bar strong { font-weight: 700; }
.announce-bar a { color: #fff; text-decoration: underline; text-underline-offset: 3px; }
.announce-bar a:hover { color: rgba(255,255,255,.85); }
@media (max-width: 600px) {
  .announce-bar { font-size: .82rem; padding: 8px 14px; }
}

/* First-week promo callout on plan cards ---------------- */
.first-week {
  background: var(--brand-soft);
  color: var(--brand-dark);
  font: 600 .88rem/1.4 'Inter', sans-serif;
  padding: 10px 12px;
  border-radius: 10px;
  margin: 0 0 18px;
  text-align: center;
  border: 1px dashed var(--brand);
}
.first-week .strike { color: var(--muted); text-decoration: line-through; font-weight: 400; margin-right: 6px; }
.first-week .new-price { color: var(--brand-dark); font-weight: 800; }

/* Header / Nav ------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.logo {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Outfit', sans-serif; font-weight: 800;
  text-decoration: none; line-height: 1;
}
.logo:hover { color: inherit; }
.lw {
  display: inline-flex; align-items: baseline; letter-spacing: 0.02em;
  font-size: 1.4rem;
}
.lw-ez  { color: var(--brand); }
.lw-del { color: var(--ink); }
/* Logo file swap helper — uncomment in HTML when you drop a real logo file in /assets */
.logo img { height: 38px; width: auto; display: block; }
/* Old gradient mark kept for backward compat (not used by current markup) */
.logo-mark {
  width: 36px; height: 36px; border-radius: 10px;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
  display: grid; place-items: center; color: #fff; font-weight: 800;
  box-shadow: var(--shadow-sm);
}
.logo-mark svg { width: 22px; height: 22px; }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a {
  color: var(--ink-2); font-weight: 500; font-size: .95rem;
  position: relative;
}
.nav-links a:hover, .nav-links a.active { color: var(--brand-dark); }
.nav-links a.active::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -22px;
  height: 2px; background: var(--brand); border-radius: 2px;
}
.nav-cta { display: flex; gap: 10px; align-items: center; }

/* Language toggle */
.lang-toggle {
  display: inline-flex; gap: 2px; padding: 4px;
  background: var(--brand-soft); border-radius: var(--radius-pill);
  font: 600 .78rem/1 'Inter', sans-serif; letter-spacing: .06em;
}
.lang-toggle a {
  padding: 7px 11px; border-radius: var(--radius-pill);
  color: var(--ink-2); text-decoration: none; transition: all .2s var(--t);
}
.lang-toggle a.is-active {
  background: #fff; color: var(--brand-dark); box-shadow: var(--shadow-sm);
}
.lang-toggle a:hover { color: var(--brand-dark); }
@media (max-width: 600px) { .lang-toggle { display: none; } }
.nav-open .lang-toggle { display: inline-flex; margin-top: 12px; }
.nav-toggle {
  display: none;
  background: transparent; border: 1px solid var(--line);
  width: 42px; height: 42px; border-radius: 12px; cursor: pointer;
}
.nav-toggle span {
  display: block; width: 18px; height: 2px; background: var(--ink);
  margin: 4px auto; border-radius: 2px; transition: .25s var(--t);
}

@media (max-width: 880px) {
  .nav-links, .nav-cta .btn-ghost { display: none; }
  .nav-toggle { display: block; }
  .nav-open .nav-links {
    display: flex; flex-direction: column; gap: 0;
    position: absolute; left: 0; right: 0; top: 72px;
    background: #fff; padding: 16px var(--pad); border-bottom: 1px solid var(--line);
  }
  .nav-open .nav-links a { padding: 14px 0; border-bottom: 1px solid var(--line); }
  .nav-open .nav-links a:last-child { border-bottom: 0; }
}

/* Hero ---------------------------------------------------- */
.hero {
  position: relative; overflow: hidden;
  padding: clamp(56px, 8vw, 96px) 0 clamp(40px, 6vw, 72px);
  background:
    radial-gradient(800px 400px at 90% -10%, var(--brand-soft) 0%, transparent 60%),
    radial-gradient(600px 300px at -10% 110%, var(--brand-soft) 0%, transparent 60%),
    var(--bg);
}
.hero-grid {
  display: grid; gap: 56px;
  grid-template-columns: 1.1fr .9fr;
  align-items: center;
}
@media (max-width: 880px) { .hero-grid { grid-template-columns: 1fr; } }
.hero h1 .accent { color: var(--brand-dark); }
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; }
.hero-trust {
  margin-top: 32px; display: flex; gap: 28px; flex-wrap: wrap;
  color: var(--muted); font-size: .9rem;
}
.hero-trust span { display: inline-flex; gap: 8px; align-items: center; }
.hero-trust .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--brand); }

.hero-visual {
  position: relative; aspect-ratio: 4/5; border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-lg);
}
.hero-visual img { width: 100%; height: 100%; object-fit: cover; }
.hero-badge {
  position: absolute; left: 18px; bottom: 18px;
  background: #fff; border-radius: var(--radius);
  padding: 12px 16px; box-shadow: var(--shadow);
  display: flex; gap: 12px; align-items: center;
}
.hero-badge .num {
  font-family: 'Outfit'; font-weight: 800; font-size: 1.6rem; color: var(--brand-dark);
  line-height: 1;
}
.hero-badge .label { font-size: .8rem; color: var(--muted); line-height: 1.2; }

/* Feature row -------------------------------------------- */
.features {
  display: grid; gap: 24px;
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 880px) { .features { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .features { grid-template-columns: 1fr; } }
.feature {
  padding: 24px; border: 1px solid var(--line); border-radius: var(--radius);
  background: #fff; transition: transform .25s var(--t), box-shadow .25s var(--t), border-color .2s;
}
.feature:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--brand-soft); }
.feature .ico {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--brand-soft); color: var(--brand-dark);
  display: grid; place-items: center; margin-bottom: 14px;
}
.feature h3 { margin-bottom: 6px; }
.feature p { margin: 0; font-size: .95rem; color: var(--muted); }

/* How it works ------------------------------------------- */
.steps {
  display: grid; gap: 24px;
  grid-template-columns: repeat(4, 1fr);
  counter-reset: step;
}
@media (max-width: 880px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .steps { grid-template-columns: 1fr; } }
.step {
  position: relative; padding: 28px 22px 22px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
}
.step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  position: absolute; top: -14px; left: 22px;
  font: 800 .85rem/1 'Outfit'; letter-spacing: .1em;
  background: var(--brand); color: #fff;
  padding: 6px 10px; border-radius: var(--radius-pill);
}
.step h3 { margin: 14px 0 6px; }
.step p { margin: 0; color: var(--muted); font-size: .95rem; }

/* Menu / cards ------------------------------------------- */
.menu-grid {
  display: grid; gap: 24px;
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 980px) { .menu-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .menu-grid { grid-template-columns: 1fr; } }
.meal-card {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); overflow: hidden;
  transition: transform .25s var(--t), box-shadow .25s var(--t);
  display: flex; flex-direction: column;
}
.meal-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.meal-card .img {
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
  background: #F4FBEC;
}
.meal-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Normalize photos that were shot in different lighting/styles so they
     look on-brand together: slightly punchier saturation, gentle warmth,
     subtle contrast bump. Toned to look "appetizing" without overcooking. */
  filter: saturate(1.08) contrast(1.04) brightness(1.02);
  transition: transform .4s var(--t), filter .4s var(--t);
}
.meal-card:hover img {
  transform: scale(1.04);
  filter: saturate(1.15) contrast(1.06) brightness(1.04);
}
/* Soft vignette at the bottom of every photo so the meal title chip below
   feels visually connected — gives all cards a unified bottom-edge look. */
.meal-card .img::after {
  content: '';
  position: absolute;
  inset: auto 0 0 0;
  height: 28%;
  background: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(15,31,20,0.10) 100%);
  pointer-events: none;
}
.meal-card .body { padding: 18px 20px 20px; flex: 1; display: flex; flex-direction: column; }
.meal-tag {
  font-size: .7rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  color: var(--brand-dark); margin-bottom: 6px;
}
.meal-card h3 { font-size: 1.15rem; margin-bottom: 4px; }
.meal-card p { font-size: .92rem; color: var(--muted); margin: 0 0 12px; flex: 1; }
.macros {
  display: flex; gap: 10px; flex-wrap: wrap;
  border-top: 1px dashed var(--line); padding-top: 12px; margin-top: auto;
}
.macros span {
  font-size: .78rem; color: var(--ink-2); font-weight: 500;
  background: var(--brand-tint); padding: 4px 10px; border-radius: var(--radius-pill);
}

.menu-filter {
  display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; margin-bottom: 36px;
}
.chip {
  padding: 8px 16px; border-radius: var(--radius-pill);
  border: 1px solid var(--line); background: #fff; color: var(--ink-2);
  font-weight: 500; font-size: .9rem; cursor: pointer;
  transition: all .2s var(--t);
}
.chip:hover { border-color: var(--brand); color: var(--brand-dark); }
.chip.is-active { background: var(--brand); color: #fff; border-color: var(--brand); }

/* Plans / pricing ---------------------------------------- */
.plans {
  display: grid; gap: 24px;
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
}
@media (max-width: 980px) { .plans { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; } }
.plan {
  position: relative; background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 32px 28px;
  display: flex; flex-direction: column;
  transition: transform .25s var(--t), box-shadow .25s var(--t);
}
.plan:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.plan.is-popular {
  border-color: var(--brand); box-shadow: var(--shadow);
  background: linear-gradient(180deg, var(--brand-tint) 0%, #fff 30%);
}
.plan.is-popular::before {
  content: "Most popular"; position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--brand); color: #fff;
  font: 600 .75rem/1 'Inter'; letter-spacing: .08em; text-transform: uppercase;
  padding: 6px 14px; border-radius: var(--radius-pill);
}
.plan h3 { font-size: 1.4rem; margin-bottom: 4px; }
.plan .plan-blurb { color: var(--muted); font-size: .95rem; margin-bottom: 20px; }
.plan .price { display: flex; align-items: baseline; gap: 6px; margin-bottom: 4px; }
.plan .price .amt { font-family: 'Outfit'; font-weight: 800; font-size: 2.6rem; color: var(--ink); }
.plan .price .per { color: var(--muted); font-size: .95rem; }
.plan .price-note { font-size: .82rem; color: var(--muted); margin-bottom: 24px; }
.plan ul {
  list-style: none; padding: 0; margin: 0 0 28px;
  display: flex; flex-direction: column; gap: 10px;
}
.plan li {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: .95rem; color: var(--ink-2);
}
.plan li svg { flex: 0 0 18px; margin-top: 3px; color: var(--brand); }
.plan .btn { width: 100%; margin-top: auto; }

/* Bundle table (alternative pricing) --------------------- */
.bundles {
  display: grid; gap: 16px;
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 880px) { .bundles { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; } }
.bundle {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 22px; text-align: center; transition: all .2s var(--t);
}
.bundle:hover { border-color: var(--brand); transform: translateY(-2px); }
.bundle .qty { font-family: 'Outfit'; font-weight: 800; font-size: 2rem; color: var(--brand-dark); }
.bundle .label { color: var(--muted); font-size: .9rem; margin-bottom: 10px; }
.bundle .price { font-weight: 600; font-size: 1.1rem; }
.bundle .save { color: var(--brand-dark); font-size: .82rem; font-weight: 600; margin-top: 4px; }

/* Testimonials ------------------------------------------- */
.testimonials {
  display: grid; gap: 24px;
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 720px) { .testimonials { grid-template-columns: 1fr; } }
.tstm {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px; display: flex; flex-direction: column;
}
.tstm .stars { color: #FBBC04; margin-bottom: 12px; letter-spacing: 2px; font-size: 1.05rem; }
.tstm blockquote { margin: 0 0 18px; font-size: 1rem; color: var(--ink-2); line-height: 1.6; flex: 1; }
.tstm cite {
  display: flex; gap: 12px; align-items: center; font-style: normal;
}
.tstm .av {
  flex-shrink: 0;
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--brand-soft); color: var(--brand-dark);
  font-weight: 700; display: grid; place-items: center;
}
.tstm cite .name { font-weight: 600; color: var(--ink); display: block; font-size: .92rem; }
.tstm cite .meta { color: var(--muted); font-size: .82rem; display: block; }
.tstm .google-badge {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: .76rem; font-weight: 500; color: var(--muted);
  margin-top: 2px;
}
.tstm .google-badge svg { flex-shrink: 0; }
.reviews-cta { text-align: center; margin-top: 36px; }

/* FAQ ----------------------------------------------------- */
.faq { max-width: 820px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-q {
  width: 100%; background: transparent; border: 0; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 22px 0; font: 600 1.05rem/1.4 'Inter'; color: var(--ink);
  text-align: left;
}
.faq-q .plus {
  flex: 0 0 28px; width: 28px; height: 28px; border-radius: 50%;
  background: var(--brand-soft); color: var(--brand-dark);
  display: grid; place-items: center; font-size: 1.2rem; transition: transform .25s var(--t);
}
.faq-item[open] .faq-q .plus { transform: rotate(45deg); }
.faq-a {
  padding: 0 0 22px;
  color: var(--muted); line-height: 1.7;
}

/* CTA banner --------------------------------------------- */
.cta-banner {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
  color: #fff; border-radius: var(--radius-lg); padding: clamp(36px, 5vw, 56px);
  display: grid; gap: 24px; grid-template-columns: 1.4fr .6fr; align-items: center;
}
@media (max-width: 720px) { .cta-banner { grid-template-columns: 1fr; text-align: center; } }
.cta-banner h2 { color: #fff; margin: 0 0 8px; }
.cta-banner p { color: rgba(255,255,255,.9); margin: 0; }
.cta-banner .actions { display: flex; gap: 12px; justify-content: flex-end; flex-wrap: wrap; }
@media (max-width: 720px) { .cta-banner .actions { justify-content: center; } }
.cta-banner .btn-primary { background: #fff; color: var(--brand-dark); }
.cta-banner .btn-primary:hover { background: rgba(255,255,255,.92); color: var(--brand-dark); }
.cta-banner .btn-ghost { color: #fff; border-color: rgba(255,255,255,.5); }
.cta-banner .btn-ghost:hover { border-color: #fff; color: #fff; }

/* Forms --------------------------------------------------- */
.form-grid {
  display: grid; gap: 16px;
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 600px) { .form-grid { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: 6px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: .85rem; font-weight: 600; color: var(--ink-2); }
.field input, .field select, .field textarea {
  font: 400 .98rem/1.4 'Inter'; color: var(--ink);
  padding: 12px 14px; border: 1px solid var(--line); border-radius: 10px;
  background: #fff; transition: border-color .15s, box-shadow .15s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: 0; border-color: var(--brand);
  box-shadow: 0 0 0 4px var(--brand-soft);
}
.field textarea { min-height: 120px; resize: vertical; }
.field .hint { font-size: .78rem; color: var(--muted); }

/* About page --------------------------------------------- */
.about-hero {
  display: grid; gap: 48px; grid-template-columns: 1fr 1fr; align-items: center;
}
@media (max-width: 880px) { .about-hero { grid-template-columns: 1fr; } }
.about-hero img { border-radius: var(--radius-lg); aspect-ratio: 4/5; object-fit: cover; box-shadow: var(--shadow); }
.values { display: grid; gap: 24px; grid-template-columns: repeat(3, 1fr); }
@media (max-width: 880px) { .values { grid-template-columns: 1fr; } }
.value { padding: 28px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; }
.value h3 { margin-bottom: 6px; }
.value p { margin: 0; color: var(--muted); }

/* Contact split ------------------------------------------ */
.contact-split {
  display: grid; gap: 40px; grid-template-columns: 1fr 1fr; align-items: start;
}
@media (max-width: 880px) { .contact-split { grid-template-columns: 1fr; } }
.contact-info ul { list-style: none; padding: 0; margin: 24px 0 0; display: flex; flex-direction: column; gap: 18px; }
.contact-info li { display: flex; gap: 14px; align-items: flex-start; color: var(--ink-2); }
.contact-info li .ico {
  flex: 0 0 40px; width: 40px; height: 40px; border-radius: 10px;
  background: var(--brand-soft); color: var(--brand-dark);
  display: grid; place-items: center;
}
.contact-info li strong { display: block; color: var(--ink); margin-bottom: 2px; font-size: .95rem; }
.contact-info li span { font-size: .9rem; color: var(--muted); }
.contact-info li a { color: var(--ink-2); }
.contact-info li a:hover { color: var(--brand-dark); }

/* Footer -------------------------------------------------- */
.site-footer {
  background: #0F1F14; color: #BFC9C2; padding: 56px 0 28px; margin-top: 0;
}
.footer-grid {
  display: grid; gap: 36px;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  margin-bottom: 36px;
}
@media (max-width: 880px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }
.site-footer h4 { color: #fff; font-size: .95rem; letter-spacing: .04em; text-transform: uppercase; margin: 0 0 14px; }
.site-footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.site-footer a { color: #BFC9C2; font-size: .92rem; }
.site-footer a:hover { color: #fff; }
.site-footer .brand-block p { color: #8FA095; font-size: .92rem; max-width: 32ch; margin-top: 14px; }
.site-footer .logo { color: #fff; }
.site-footer .lw-del { color: #fff; }
.brand-tagline {
  display: block; margin-top: 10px;
  font-family: 'Inter', sans-serif; font-weight: 500; font-size: .82rem;
  color: var(--muted); letter-spacing: .02em;
}
.brand-tagline.fr { color: var(--brand-dark); }
.site-header .brand-tagline { display: none; }
@media (min-width: 980px) { .site-header .brand-tagline { display: block; } }
.socials { display: flex; gap: 10px; margin-top: 18px; }
.socials a {
  width: 38px; height: 38px; border-radius: 10px;
  background: rgba(255,255,255,.06); color: #fff;
  display: grid; place-items: center; transition: background .2s var(--t);
}
.socials a:hover { background: var(--brand); color: #fff; }
.foot-bottom {
  border-top: 1px solid rgba(255,255,255,.08); padding-top: 22px;
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  font-size: .82rem; color: #8FA095;
}

/* Order / Checkout summary -------------------------------- */
.order-summary {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 4vw, 36px);
  box-shadow: var(--shadow);
}
.order-summary .order-title { font-size: 1.6rem; margin-bottom: 4px; }
.order-summary .order-blurb { color: var(--muted); font-size: 1rem; margin: 0 0 24px; }
.order-pricing {
  background: var(--brand-tint);
  border-radius: var(--radius);
  padding: 18px 20px;
  margin-bottom: 24px;
}
.price-row {
  display: flex; justify-content: space-between; align-items: baseline;
  font-size: 1rem; color: var(--ink-2);
  padding: 10px 0;
}
.price-row + .price-row { border-top: 1px dashed var(--line); }
.price-row .price-amt { font-weight: 700; color: var(--ink); font-family: 'Outfit', sans-serif; font-size: 1.05rem; }
.price-row.is-highlight .price-amt { color: var(--brand-dark); font-size: 1.25rem; }
.price-row .price-label small { color: var(--muted); display: block; font-size: .78rem; margin-top: 2px; font-weight: 400; }
.discount-note {
  font-size: .88rem;
  color: var(--brand-dark);
  background: #fff;
  border: 1px dashed var(--brand);
  border-radius: 10px;
  padding: 10px 14px;
  margin-top: 14px;
  text-align: center;
  font-weight: 500;
}
.checkout-trust {
  font-size: .85rem; color: var(--muted);
  text-align: center; margin: 16px 0 0;
}
.reassurance {
  list-style: none; padding: 0; margin: 24px 0 0;
  display: flex; flex-direction: column; gap: 10px;
  font-size: .92rem; color: var(--ink-2);
  border-top: 1px solid var(--line); padding-top: 20px;
}
.reassurance li { display: flex; gap: 10px; align-items: flex-start; }
.reassurance li::before {
  content: '✓'; color: var(--brand); font-weight: 700;
  flex: 0 0 18px; margin-top: 1px;
}

/* Cart button + drawer ------------------------------------ */
.cart-btn {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  cursor: pointer;
  margin-right: 4px;
  transition: border-color 0.15s, background 0.15s;
}
.cart-btn:hover { border-color: var(--brand); background: var(--brand-soft); color: var(--brand-dark); }
.cart-btn .cart-count {
  position: absolute;
  top: -4px;
  right: -4px;
  min-width: 20px;
  height: 20px;
  padding: 0 5px;
  border-radius: 999px;
  background: var(--brand);
  color: #fff;
  font-size: .7rem;
  font-weight: 700;
  font-family: 'Outfit', sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 2px #fff;
}
.cart-btn .cart-count.is-empty { display: none; }

body.cart-locked { overflow: hidden; }

.cart-drawer {
  position: fixed;
  inset: 0;
  z-index: 999;
  pointer-events: none;
}
.cart-drawer.is-open { pointer-events: auto; }
.cart-drawer .cart-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 31, 20, 0.55);
  opacity: 0;
  transition: opacity 0.2s;
}
.cart-drawer.is-open .cart-backdrop { opacity: 1; }
.cart-drawer .cart-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 440px;
  height: 100%;
  background: #fff;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.25s var(--t);
  box-shadow: -8px 0 24px rgba(15, 31, 20, 0.15);
}
.cart-drawer.is-open .cart-panel { transform: translateX(0); }
.cart-drawer header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 22px;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, #FAFCF9, #fff);
}
.cart-drawer header h2 {
  margin: 0;
  font-size: 1.2rem;
  font-family: 'Outfit', sans-serif;
}
.cart-close {
  background: transparent;
  border: none;
  font-size: 1.6rem;
  cursor: pointer;
  color: var(--muted);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  transition: background 0.15s, color 0.15s;
}
.cart-close:hover { background: #F4FBEC; color: var(--ink); }

.cart-body {
  flex: 1;
  overflow-y: auto;
  padding: 16px 22px;
}
.cart-empty {
  text-align: center;
  color: var(--muted);
  padding: 40px 20px;
  font-style: italic;
}
.cart-item {
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}
.cart-item:last-child { border-bottom: none; }
.cart-item-name {
  font-weight: 600;
  color: var(--ink);
  font-size: .95rem;
  margin-bottom: 2px;
  line-height: 1.35;
}
.cart-item-price {
  color: var(--muted);
  font-size: .85rem;
}
.cart-item-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 10px;
  gap: 10px;
}
.qty-step {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  overflow: hidden;
  background: #fff;
}
.qty-step button {
  background: transparent;
  border: none;
  width: 32px;
  height: 32px;
  cursor: pointer;
  font-size: 1.1rem;
  color: var(--ink);
  transition: background 0.15s;
  font-weight: 700;
}
.qty-step button:hover { background: var(--brand-soft); color: var(--brand-dark); }
.qty-step span {
  display: inline-block;
  min-width: 28px;
  text-align: center;
  font-weight: 600;
  font-family: 'Outfit', sans-serif;
}
.cart-remove {
  background: transparent;
  border: none;
  color: var(--muted);
  font-size: .82rem;
  cursor: pointer;
  text-decoration: underline;
  padding: 4px 8px;
  font-family: inherit;
  border-radius: 6px;
}
.cart-remove:hover { color: #B00020; }

.cart-foot {
  padding: 16px 22px 22px;
  border-top: 1px solid var(--line);
  background: #FAFCF9;
}
.cart-warn {
  background: #FFF8E1;
  border: 1px solid #FBBC04;
  border-radius: 10px;
  padding: 10px 12px;
  font-size: .85rem;
  color: #7A5C00;
  margin-bottom: 12px;
  line-height: 1.4;
}
.cart-totals {
  margin-bottom: 14px;
}
.cart-totals .row {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  font-size: .9rem;
  color: var(--ink-2);
}
.cart-totals .row.total {
  border-top: 2px solid var(--line);
  padding-top: 10px;
  margin-top: 6px;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--ink);
  font-family: 'Outfit', sans-serif;
}
.cart-totals .tax-note {
  font-size: .76rem;
  color: var(--muted);
  margin-top: 4px;
  text-align: right;
  font-style: italic;
}
.cart-foot .btn { width: 100%; margin-top: 8px; display: block; text-align: center; box-sizing: border-box; }
.cart-foot .btn.is-disabled { opacity: 0.5; pointer-events: none; }
.cart-foot .cart-clear {
  margin-top: 10px;
  background: transparent;
  border: 1px solid var(--line);
}

/* À la carte cards on menu page */
.alc-section {
  background: linear-gradient(180deg, #fff, #FAFCF9);
  padding: 56px 0 24px;
  border-top: 1px solid var(--line);
}
.alc-section .section-head {
  text-align: center;
  margin-bottom: 28px;
}
.alc-section h2 { margin: 0 0 6px; }
.alc-section .alc-note {
  display: inline-block;
  background: var(--brand-soft);
  color: var(--brand-dark);
  padding: 4px 12px;
  border-radius: 999px;
  font-size: .82rem;
  font-weight: 600;
  margin-bottom: 8px;
}
.alc-section .lead {
  color: var(--muted);
  max-width: 640px;
  margin: 0 auto;
}
.meal-card .alc-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px dashed var(--line);
  gap: 12px;
}
.meal-card .alc-price {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--brand-dark);
  white-space: nowrap;
}
/* Softer, smaller add-to-cart on meal cards so the page isn't a sea of bold green pills */
.meal-card .alc-row .btn,
.meal-card .alc-row .btn.btn-primary {
  flex-shrink: 0;
  background: var(--brand-soft);
  color: var(--brand-dark);
  border: 1.5px solid #C9E6B4;
  padding: 8px 14px;
  font-size: .82rem;
  font-weight: 600;
  box-shadow: none;
}
.meal-card .alc-row .btn:hover,
.meal-card .alc-row .btn.btn-primary:hover {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
  box-shadow: var(--shadow-sm);
}

/* Premium meals divider — clean centered heading between weekly meals and AAA cuts */
.premium-divider {
  margin: 56px auto 28px;
  text-align: center;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.premium-divider h2 {
  margin: 0;
  font-size: clamp(1.6rem, 3vw, 2rem);
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--ink);
  text-align: center;
}
.premium-divider h2::before,
.premium-divider h2::after {
  content: '';
  display: inline-block;
  width: 28px;
  height: 2px;
  background: var(--brand);
  vertical-align: middle;
  margin: 0 14px;
  border-radius: 2px;
  opacity: 0.6;
}
.menu-grid-premium {
  position: relative;
}

@media (max-width: 720px) {
  .cart-drawer .cart-panel { max-width: 100%; }
  .cart-btn { width: 38px; height: 38px; }
}

/* Promo code input ---------------------------------------- */
.promo-field {
  margin-top: 6px;
}
.promo-toggle {
  background: none;
  border: none;
  color: var(--brand-dark);
  font-weight: 600;
  font-size: .92rem;
  text-decoration: none;
  cursor: pointer;
  padding: 4px 0;
  display: inline-block;
}
.promo-toggle:hover {
  text-decoration: underline;
}
.promo-row {
  display: flex;
  gap: 8px;
  margin-top: 6px;
  align-items: stretch;
}
.promo-row.hidden { display: none; }
.promo-row #promo-input {
  flex: 1;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-family: 'Outfit', 'Inter', sans-serif;
  font-weight: 600;
  margin: 0;
}
.promo-row #promo-apply {
  white-space: nowrap;
  margin: 0;
  padding: 10px 18px;
}
.promo-status {
  display: block;
  margin-top: 6px;
  font-size: .9rem;
  font-weight: 500;
  min-height: 1.2em;
}
.promo-status.is-valid {
  color: var(--brand-dark);
}
.promo-status.is-invalid {
  color: #B00020;
}

/* Postal code input + delivery zone status ---------------- */
#postal-code {
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-family: 'Outfit', 'Inter', sans-serif;
  font-weight: 600;
}
.postal-status {
  display: block;
  margin-top: 8px;
  font-size: .9rem;
  font-weight: 500;
  min-height: 1.2em;
}
.postal-status.is-valid {
  color: var(--brand-dark);
}
.postal-status.is-invalid {
  color: #B00020;
}
.postal-status.is-invalid a {
  color: inherit;
  text-decoration: underline;
}
#checkout-btn:disabled {
  opacity: .55;
  cursor: not-allowed;
}

/* Embedded Stripe Checkout wrapper ------------------------ */
.checkout-wrap {
  margin-top: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(20px, 3vw, 28px);
  box-shadow: var(--shadow);
}
.checkout-wrap.hidden { display: none; }
.checkout-header {
  margin-bottom: 18px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}
.checkout-header h2 {
  font-size: 1.35rem;
  margin: 0 0 6px;
  color: var(--ink);
}
.checkout-header p {
  color: var(--muted);
  font-size: .92rem;
  margin: 0;
}
#stripe-checkout-mount {
  min-height: 380px;
}

/* Big success/cancel hero icon */
.status-hero {
  text-align: center; padding: clamp(48px, 8vw, 96px) 0 clamp(36px, 5vw, 60px);
  background:
    radial-gradient(600px 280px at 50% 0%, var(--brand-soft) 0%, transparent 70%),
    var(--bg);
}
.status-hero .icon {
  width: 84px; height: 84px; margin: 0 auto 20px;
  border-radius: 50%; display: grid; place-items: center;
  background: var(--brand-soft); color: var(--brand-dark);
}
.status-hero.is-cancel .icon { background: #FFF4E6; color: #B45309; }

/* Page hero (inner pages) -------------------------------- */
.page-hero {
  padding: clamp(56px, 8vw, 84px) 0 clamp(40px, 5vw, 56px);
  background:
    radial-gradient(600px 280px at 100% 0%, var(--brand-soft) 0%, transparent 60%),
    var(--bg-soft);
  border-bottom: 1px solid var(--line);
}
.page-hero h1 { margin-bottom: 12px; }
.page-hero .lead { margin: 0 auto; }
.page-hero.text-center { text-align: center; }

/* Utility ------------------------------------------------- */
.center { text-align: center; }
.mt-0 { margin-top: 0; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.hidden { display: none !important; }

/* Reveal on scroll --------------------------------------- */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity .5s var(--t), transform .5s var(--t); }
.reveal.is-visible { opacity: 1; transform: none; }

/* Reduce motion ------------------------------------------ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; animation: none !important; }
  html { scroll-behavior: auto; }
}
