/* ==========================================================================
   Dieta do Pote — Marmitas Fit Goiânia
   Direção: "Fresh & Clean Moderno" — DTC premium (Stripe/Linear/Notion vibe)
   Branco dominante · verdes da logo como acento · ar generoso · cantos macios
   Fonts: Bricolage Grotesque (display) + Hanken Grotesk (corpo)
   ========================================================================== */

:root {
  /* paleta — branco dominante + verdes da logo */
  --bg:          #ffffff;
  --bg-soft:     #f3f7ec;   /* creme esverdeado p/ seções alternadas */
  --bg-mint:     #eaf2dd;
  --ink:         #18200f;   /* texto principal (quase preto esverdeado) */
  --muted:       #5d6a4e;   /* texto secundário */
  --line:        #e8eed9;   /* bordas */
  --green:       #5f8b34;   /* verde primário — CTAs */
  --green-700:   #4c7129;
  --green-dark:  #2f4a23;   /* seções escuras / footer */
  --lime:        #8cbf3f;   /* verde vibrante — acento, destaques */
  --lime-bright: #a6d84a;   /* highlight pontual */
  --wa:          #25D366;
  --wa-700:      #1da851;

  --radius:      18px;
  --radius-lg:   28px;
  --radius-xl:   36px;
  --radius-pill: 999px;

  --shadow-sm:   0 2px 10px -4px rgba(47, 74, 35, .14);
  --shadow:      0 14px 40px -18px rgba(47, 74, 35, .28);
  --shadow-lg:   0 30px 70px -28px rgba(24, 32, 15, .34);
  --ring:        0 0 0 1px var(--line);

  --container:   1200px;
  --font-disp:   "Bricolage Grotesque", system-ui, sans-serif;
  --font-body:   "Hanken Grotesk", system-ui, -apple-system, sans-serif;
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

h1, h2, h3, h4 {
  font-family: var(--font-disp);
  color: var(--ink);
  line-height: 1.05;
  font-weight: 700;
  letter-spacing: -0.025em;
}
h1 { font-size: clamp(2.5rem, 6vw, 4.4rem); font-weight: 800; }
h2 { font-size: clamp(1.95rem, 4.2vw, 3.1rem); }
h3 { font-size: clamp(1.2rem, 2.2vw, 1.55rem); }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
section { padding: clamp(66px, 9vw, 124px) 0; }

/* ---------- helpers ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-body);
  font-size: .82rem; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--green-700);
  margin-bottom: 18px;
}
.eyebrow::before { content: ""; width: 26px; height: 8px; border-radius: 8px; background: var(--lime); }
.lead { font-size: clamp(1.06rem, 1.7vw, 1.3rem); color: var(--muted); max-width: 60ch; line-height: 1.55; }
.sec-head { max-width: 720px; margin: 0 auto clamp(44px, 6vw, 70px); text-align: center; }
.sec-head .eyebrow::before { display: none; }
.sec-head .eyebrow { gap: 0; }
.sec-head .lead { margin: 16px auto 0; }
.hl { color: var(--green-700); }

.bg-soft { background: var(--bg-soft); }
.bg-dark { background: var(--green-dark); color: #fff; }
.bg-dark h1, .bg-dark h2, .bg-dark h3 { color: #fff; }
.bg-dark .lead { color: rgba(255,255,255,.8); }
.bg-dark .eyebrow { color: var(--lime-bright); }

/* ---------- buttons ---------- */
.btn {
  --bw: 0;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-body); font-weight: 700; font-size: 1.02rem;
  padding: 15px 28px; border-radius: var(--radius-pill); border: 2px solid transparent;
  cursor: pointer; line-height: 1; white-space: nowrap;
  transition: transform .2s cubic-bezier(.2,.7,.3,1), box-shadow .2s ease, background .2s ease, color .2s ease;
}
.btn svg { width: 20px; height: 20px; }
.btn--wa { background: var(--wa); color: #fff; box-shadow: 0 14px 28px -12px rgba(37,211,102,.8); }
.btn--wa:hover { background: var(--wa-700); transform: translateY(-2px); }
.btn--primary { background: var(--green); color: #fff; box-shadow: 0 14px 30px -14px rgba(95,139,52,.9); }
.btn--primary:hover { background: var(--green-700); transform: translateY(-2px); }
.btn--dark { background: var(--ink); color: #fff; }
.btn--dark:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn--outline { background: #fff; color: var(--ink); border-color: var(--line); }
.btn--outline:hover { border-color: var(--green); color: var(--green-700); transform: translateY(-2px); }
.btn--ghost-light { background: rgba(255,255,255,.1); color: #fff; border-color: rgba(255,255,255,.45); }
.btn--ghost-light:hover { background: #fff; color: var(--green-dark); transform: translateY(-2px); }

/* ==========================================================================
   HEADER
   ========================================================================== */
.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.78);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s ease, box-shadow .25s ease;
}
.header.scrolled { border-color: var(--line); box-shadow: 0 8px 30px -22px rgba(24,32,15,.5); }
.nav { display: flex; align-items: center; justify-content: space-between; height: 78px; }
.nav__brand { display: flex; align-items: center; gap: 11px; }
.nav__brand img { height: 46px; width: auto; }
.nav__brand-txt { font-family: var(--font-disp); font-weight: 800; font-size: 1.2rem; color: var(--green-dark); letter-spacing: -.02em; }
.nav__links { display: flex; align-items: center; gap: 6px; }
.nav__links a { font-weight: 600; font-size: .98rem; color: var(--ink); padding: 9px 14px; border-radius: var(--radius-pill); transition: background .2s, color .2s; }
.nav__links a:hover { background: var(--bg-soft); color: var(--green-700); }
.nav__actions { display: flex; align-items: center; gap: 12px; }
.nav__gbp { display: inline-flex; align-items: center; justify-content: center; width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--line); background: #fff; transition: .2s; }
.nav__gbp:hover { border-color: var(--green); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.nav__gbp svg { width: 20px; height: 20px; }
.nav__cta { padding: 12px 22px; font-size: .96rem; }
.nav__toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 9px; }
.nav__toggle span { width: 25px; height: 2.5px; background: var(--green-dark); border-radius: 3px; transition: .28s; }
.nav__toggle.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav__toggle.open span:nth-child(2) { opacity: 0; }
.nav__toggle.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ==========================================================================
   HERO
   ========================================================================== */
.hero { position: relative; padding: clamp(54px, 8vw, 96px) 0 clamp(60px, 8vw, 104px); }
.hero::before {
  content: ""; position: absolute; z-index: -1; border-radius: 50%;
  width: 760px; height: 760px; top: -340px; right: -200px;
  background: radial-gradient(circle, rgba(140,191,63,.22), rgba(140,191,63,0) 64%);
}
.hero::after {
  content: ""; position: absolute; z-index: -1; border-radius: 50%;
  width: 520px; height: 520px; bottom: -260px; left: -200px;
  background: radial-gradient(circle, rgba(95,139,52,.14), rgba(95,139,52,0) 66%);
}
.hero__grid { display: grid; grid-template-columns: 1.04fr .96fr; gap: clamp(36px, 5vw, 76px); align-items: center; }
.hero__badge {
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--bg-mint); color: var(--green-dark);
  font-weight: 600; font-size: .88rem; padding: 8px 16px; border-radius: var(--radius-pill);
  margin-bottom: 24px; border: 1px solid var(--line);
}
.hero__badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 0 4px rgba(140,191,63,.25); }
.hero h1 { margin-bottom: 22px; }
.hero h1 em { font-style: normal; color: var(--green-700); position: relative; white-space: nowrap; }
.hero h1 em::after { content: ""; position: absolute; left: 0; right: 0; bottom: .04em; height: .26em; background: var(--lime); opacity: .42; border-radius: 4px; z-index: -1; }
.hero__sub { font-size: clamp(1.08rem, 1.7vw, 1.28rem); color: var(--muted); max-width: 46ch; margin-bottom: 32px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 36px; }
.hero__selos { display: flex; flex-wrap: wrap; gap: 12px; }
.selo { display: flex; align-items: center; gap: 10px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 11px 16px; box-shadow: var(--shadow-sm); }
.selo svg { width: 22px; height: 22px; color: var(--green); flex: none; }
.selo b { font-family: var(--font-disp); font-size: 1.02rem; color: var(--ink); display: block; line-height: 1.1; }
.selo span { font-size: .78rem; color: var(--muted); }

.hero__media { position: relative; }
.hero__media > img { width: 100%; aspect-ratio: 4/4.4; object-fit: cover; border-radius: var(--radius-xl); box-shadow: var(--shadow-lg); }
.hero__float {
  position: absolute; background: #fff; border-radius: var(--radius); padding: 13px 17px;
  box-shadow: var(--shadow); display: flex; align-items: center; gap: 12px; border: 1px solid var(--line);
}
.hero__float .ic { width: 42px; height: 42px; border-radius: 12px; background: var(--bg-mint); display: grid; place-items: center; flex: none; }
.hero__float .ic svg { width: 22px; height: 22px; color: var(--green-700); }
.hero__float b { font-family: var(--font-disp); font-size: 1.04rem; color: var(--ink); display: block; line-height: 1.15; }
.hero__float span { font-size: .8rem; color: var(--muted); }
.hero__float--1 { top: 26px; left: -22px; }
.hero__float--2 { bottom: 28px; right: -20px; }

/* ==========================================================================
   BENEFÍCIOS
   ========================================================================== */
.benef { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.benef__card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 32px 26px; transition: transform .25s ease, box-shadow .25s ease, border-color .25s;
}
.benef__card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.benef__ic { width: 56px; height: 56px; border-radius: 16px; background: var(--bg-mint); display: grid; place-items: center; margin-bottom: 20px; transition: background .25s; }
.benef__ic svg { width: 28px; height: 28px; color: var(--green-700); transition: color .25s; }
.benef__card:hover .benef__ic { background: var(--green); }
.benef__card:hover .benef__ic svg { color: #fff; }
.benef__card h3 { margin-bottom: 9px; font-size: 1.24rem; }
.benef__card p { color: var(--muted); font-size: 1rem; }

/* ==========================================================================
   COMO FUNCIONA
   ========================================================================== */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; position: relative; }
.step {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 36px 30px; position: relative; transition: transform .25s ease, box-shadow .25s ease;
}
.step:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.step__num {
  width: 52px; height: 52px; border-radius: 16px; display: grid; place-items: center;
  font-family: var(--font-disp); font-weight: 800; font-size: 1.4rem; color: #fff;
  background: linear-gradient(135deg, var(--green), var(--lime)); margin-bottom: 22px;
}
.step h3 { margin-bottom: 10px; }
.step p { color: var(--muted); font-size: 1rem; }

/* ==========================================================================
   CARDÁPIO — cards apetitosos
   ========================================================================== */
.dishes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.dish {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  overflow: hidden; transition: transform .25s ease, box-shadow .25s ease; display: flex; flex-direction: column;
}
.dish:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.dish__img { position: relative; aspect-ratio: 16/11; overflow: hidden; }
.dish__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.dish:hover .dish__img img { transform: scale(1.06); }
.dish__kcal {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  background: rgba(255,255,255,.94); backdrop-filter: blur(4px);
  font-family: var(--font-body); font-weight: 700; font-size: .78rem; color: var(--green-dark);
  padding: 6px 12px; border-radius: var(--radius-pill);
}
.dish__body { padding: 22px 22px 24px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.dish__body h3 { font-size: 1.18rem; }
.dish__body p { color: var(--muted); font-size: .95rem; flex: 1; }
.dish__foot { display: flex; align-items: center; justify-content: space-between; margin-top: 8px; }
.dish__price { font-family: var(--font-disp); font-weight: 800; color: var(--green-dark); font-size: 1.18rem; }
.dish__tag { font-size: .8rem; color: var(--muted); display: flex; align-items: center; gap: 6px; }
.dish__tag svg { width: 15px; height: 15px; color: var(--lime); }
.center-cta { text-align: center; margin-top: 48px; }

/* ==========================================================================
   SPLIT / DIFERENCIAL
   ========================================================================== */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 5vw, 72px); align-items: center; }
.split--reverse .split__media { order: 2; }
.split__media { position: relative; }
.split__media img { width: 100%; aspect-ratio: 5/4; object-fit: cover; border-radius: var(--radius-xl); box-shadow: var(--shadow); }
.split__media .badge-num {
  position: absolute; bottom: -22px; right: -16px; background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); padding: 16px 22px; box-shadow: var(--shadow); text-align: center;
}
.split--reverse .split__media .badge-num { right: auto; left: -16px; }
.badge-num b { font-family: var(--font-disp); font-weight: 800; font-size: 1.9rem; color: var(--green-700); display: block; line-height: 1; }
.badge-num span { font-size: .8rem; color: var(--muted); }
.split__text h2 { margin-bottom: 18px; }
.split__text > p { color: var(--muted); font-size: 1.08rem; }
.checks { display: grid; gap: 14px; margin-top: 26px; }
.checks li { display: flex; gap: 13px; align-items: flex-start; font-weight: 500; }
.checks .ck { flex: none; width: 26px; height: 26px; border-radius: 8px; background: var(--bg-mint); display: grid; place-items: center; margin-top: 1px; }
.checks .ck svg { width: 16px; height: 16px; color: var(--green-700); }

/* ==========================================================================
   CTA BAND (escuro)
   ========================================================================== */
.cta { position: relative; overflow: hidden; }
.cta::before { content: ""; position: absolute; width: 600px; height: 600px; border-radius: 50%; top: -300px; right: -160px; background: radial-gradient(circle, rgba(166,216,74,.22), transparent 66%); }
.cta::after { content: ""; position: absolute; width: 480px; height: 480px; border-radius: 50%; bottom: -280px; left: -140px; background: radial-gradient(circle, rgba(140,191,63,.16), transparent 66%); }
.cta .inner { position: relative; z-index: 2; text-align: center; max-width: 720px; margin: 0 auto; }
.cta h2 { margin-bottom: 16px; }
.cta .lead { margin: 0 auto 32px; }
.cta__actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

/* ==========================================================================
   LOCALIZAÇÃO
   ========================================================================== */
.local { display: grid; grid-template-columns: .9fr 1.1fr; gap: 44px; align-items: stretch; }
.local__info { display: flex; flex-direction: column; }
.local__rows { display: grid; gap: 16px; margin: 8px 0 26px; }
.local__row { display: flex; gap: 15px; align-items: flex-start; }
.local__row .ic { flex: none; width: 48px; height: 48px; border-radius: 14px; background: var(--bg-mint); display: grid; place-items: center; }
.local__row .ic svg { width: 22px; height: 22px; color: var(--green-700); }
.local__row h4 { font-family: var(--font-disp); font-size: 1.05rem; color: var(--ink); margin-bottom: 3px; }
.local__row p, .local__row a { color: var(--muted); font-size: 1rem; }
.local__row a:hover { color: var(--green-700); }
.local__map iframe { width: 100%; height: 100%; min-height: 400px; border: 0; border-radius: var(--radius-xl); box-shadow: var(--shadow); }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer { background: var(--green-dark); color: rgba(255,255,255,.78); padding: 70px 0 30px; }
.footer__grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 44px; padding-bottom: 42px; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer__brand img { height: 58px; margin-bottom: 18px; }
.footer__brand p { color: rgba(255,255,255,.66); max-width: 34ch; }
.footer__social { display: flex; gap: 12px; margin-top: 20px; }
.footer__social a { width: 42px; height: 42px; border-radius: 50%; background: rgba(255,255,255,.09); display: grid; place-items: center; transition: .2s; }
.footer__social a:hover { background: var(--lime); transform: translateY(-2px); }
.footer__social svg { width: 19px; height: 19px; color: #fff; }
.footer h4 { color: #fff; font-family: var(--font-disp); font-size: 1.05rem; margin-bottom: 18px; }
.footer__col a { display: block; color: rgba(255,255,255,.72); padding: 6px 0; transition: color .2s; }
.footer__col a:hover { color: var(--lime-bright); }
.footer__bottom { padding-top: 26px; display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap; font-size: .88rem; color: rgba(255,255,255,.55); }
.footer__bottom a { color: var(--lime-bright); font-weight: 600; }

/* ==========================================================================
   WHATSAPP FLUTUANTE
   ========================================================================== */
.wa-float { position: fixed; right: 22px; bottom: 22px; z-index: 200; width: 60px; height: 60px; border-radius: 50%; background: var(--wa); display: grid; place-items: center; box-shadow: 0 14px 30px -8px rgba(37,211,102,.7); transition: transform .2s; animation: waPulse 2.8s infinite; }
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 31px; height: 31px; color: #fff; }
@keyframes waPulse { 0%{box-shadow:0 14px 30px -8px rgba(37,211,102,.7),0 0 0 0 rgba(37,211,102,.5);} 70%{box-shadow:0 14px 30px -8px rgba(37,211,102,.7),0 0 0 16px rgba(37,211,102,0);} 100%{box-shadow:0 14px 30px -8px rgba(37,211,102,.7),0 0 0 0 rgba(37,211,102,0);} }

/* ==========================================================================
   PÁGINAS INTERNAS — page-hero / prose / cardápio list
   ========================================================================== */
.page-hero { position: relative; padding: clamp(50px, 7vw, 92px) 0 clamp(40px, 6vw, 68px); background: var(--bg-soft); overflow: hidden; }
.page-hero::after { content: ""; position: absolute; width: 460px; height: 460px; border-radius: 50%; right: -160px; top: -200px; background: radial-gradient(circle, rgba(140,191,63,.2), transparent 68%); }
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { max-width: 18ch; margin-bottom: 16px; }
.page-hero .lead { max-width: 56ch; }
.crumb { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; font-size: .86rem; font-weight: 600; color: var(--muted); margin-bottom: 20px; }
.crumb a:hover { color: var(--green-700); }
.crumb span { opacity: .5; }

.prose { max-width: 760px; margin: 0 auto; }
.prose > p { margin-bottom: 18px; color: var(--ink); font-size: 1.08rem; }
.prose h2 { margin: 40px 0 16px; }
.prose a { color: var(--green-700); font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }
.prose strong { color: var(--ink); }
.prose ul.checks { margin: 10px 0 24px; }
.prose ul.checks li { color: var(--ink); }

/* cardápio completo */
.menu-block { margin-bottom: clamp(40px, 5vw, 60px); }
.menu-block__head { display: flex; align-items: center; gap: 14px; margin-bottom: 26px; }
.menu-block__head .eyebrow { margin: 0; }
.menu-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.mrow { display: flex; align-items: center; gap: 16px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 18px 22px; transition: transform .22s ease, box-shadow .22s ease, border-color .22s; }
.mrow:hover { transform: translateY(-3px); box-shadow: var(--shadow-sm); border-color: transparent; }
.mrow__body { flex: 1; }
.mrow__body h3 { font-size: 1.1rem; margin-bottom: 2px; }
.mrow__body p { color: var(--muted); font-size: .92rem; }
.mrow__meta { text-align: right; flex: none; }
.mrow__kcal { font-size: .76rem; font-weight: 700; color: var(--green-dark); background: var(--bg-mint); padding: 4px 10px; border-radius: var(--radius-pill); white-space: nowrap; }
.mrow__price { display: block; font-family: var(--font-disp); font-weight: 800; color: var(--green-dark); font-size: 1.05rem; margin-top: 7px; }

.svc-cta { background: var(--bg-soft); border: 1px solid var(--line); border-radius: var(--radius-xl); padding: clamp(32px, 4vw, 50px); text-align: center; margin-top: 50px; }
.svc-cta h3 { margin-bottom: 10px; font-size: 1.5rem; }
.svc-cta p { color: var(--muted); margin-bottom: 24px; }
.svc-cta .btn { margin: 0 auto; }

/* ==========================================================================
   REVEAL
   ========================================================================== */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s cubic-bezier(.2,.7,.3,1), transform .7s cubic-bezier(.2,.7,.3,1); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } .wa-float { animation: none; } }

/* ==========================================================================
   RESPONSIVO
   ========================================================================== */
@media (max-width: 1000px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__media { max-width: 480px; margin: 0 auto; order: -1; }
  .benef { grid-template-columns: repeat(2, 1fr); }
  .dishes { grid-template-columns: repeat(2, 1fr); }
  .local { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}
@media (max-width: 760px) {
  .nav__links { position: fixed; inset: 78px 0 auto 0; flex-direction: column; align-items: stretch; gap: 0; background: #fff; padding: 12px 24px 24px; box-shadow: var(--shadow-lg); transform: translateY(-135%); transition: transform .32s cubic-bezier(.2,.7,.3,1); }
  .nav__links.open { transform: none; }
  .nav__links a { padding: 14px 6px; border-bottom: 1px solid var(--line); border-radius: 0; font-size: 1.06rem; }
  .nav__toggle { display: flex; }
  .nav__cta { display: none; }
  .steps, .benef, .dishes, .menu-list { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; }
  .split--reverse .split__media { order: 0; }
  .split__media .badge-num, .split--reverse .split__media .badge-num { right: 14px; left: auto; bottom: -20px; }
  .footer__grid { grid-template-columns: 1fr; }
  .hero__float--1 { left: 8px; }
  .hero__float--2 { right: 8px; }
}
