:root {
  --green: #39ff14;
  --green-soft: #b9ffab;
  --black: #0b0d0c;
  --black-2: #151816;
  --cream: #f5f4ed;
  --white: #ffffff;
  --red: #ff3b30;
  --muted: #6b716d;
  --border: rgba(11, 13, 12, 0.13);
  --shadow: 0 24px 70px rgba(11, 13, 12, 0.16);
  --radius: 28px;
  --shell: min(1180px, calc(100% - 40px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; max-width: 100%; overflow-x: hidden; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--black);
  font-family: Inter, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }
img, svg { max-width: 100%; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.section-shell { width: var(--shell); margin-inline: auto; }

.announcement {
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  background: var(--green);
  color: var(--black);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.announcement__dot { width: 7px; height: 7px; border-radius: 50%; background: var(--red); box-shadow: 0 0 0 5px rgba(255,59,48,.15); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  min-height: 76px;
  padding: 0 max(20px, calc((100% - 1180px)/2));
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(245, 244, 237, .88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(11,13,12,.08);
}
.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 900; letter-spacing: -.04em; }
.brand__mark { width: 34px; height: 34px; display: grid; place-items: center; background: var(--black); color: var(--green); border-radius: 10px 10px 10px 2px; font-size: 19px; }
.brand__word { font-size: 20px; }
.nav { display: flex; gap: 28px; align-items: center; font-size: 13px; font-weight: 800; }
.nav a { transition: opacity .2s ease; }
.nav a:hover { opacity: .52; }
.header-actions { display: flex; gap: 10px; align-items: center; }
.language-picker select {
  border: 1px solid var(--border);
  background: transparent;
  border-radius: 999px;
  padding: 10px 30px 10px 12px;
  font-weight: 900;
  appearance: none;
  background-image: linear-gradient(45deg,transparent 50%,var(--black) 50%),linear-gradient(135deg,var(--black) 50%,transparent 50%);
  background-position: calc(100% - 15px) 50%, calc(100% - 11px) 50%;
  background-size: 4px 4px,4px 4px;
  background-repeat: no-repeat;
}
.menu-button { display: none; width: 44px; height: 44px; background: var(--black); border: 0; border-radius: 14px; padding: 12px; }
.menu-button span { display: block; height: 2px; background: var(--green); margin: 4px 0; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 23px;
  border-radius: 15px;
  border: 1px solid transparent;
  font-weight: 900;
  font-size: 14px;
  letter-spacing: -.01em;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button--primary { background: var(--green); color: var(--black); box-shadow: 0 10px 30px rgba(57,255,20,.25); }
.button--primary:hover { box-shadow: 0 16px 40px rgba(57,255,20,.35); }
.button--dark { background: var(--black); color: var(--white); }
.button--ghost { border-color: var(--border); background: rgba(255,255,255,.5); }
.button--small { min-height: 42px; padding-inline: 17px; font-size: 12px; }
.button--full { width: 100%; }

.hero {
  min-height: 760px;
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  align-items: center;
  gap: 60px;
  padding-block: 72px 84px;
}
.eyebrow { margin: 0 0 16px; font-size: 12px; font-weight: 900; letter-spacing: .18em; text-transform: uppercase; }
.hero h1 { margin: 0; max-width: 690px; font-size: clamp(58px, 7.5vw, 112px); line-height: .86; letter-spacing: -.085em; font-weight: 900; }
.hero h1 span { display: block; }
.hero h1 .highlight { color: transparent; -webkit-text-stroke: 2px var(--black); position: relative; }
.hero h1 .highlight::after { content: ""; position: absolute; left: 3%; right: 5%; bottom: -12px; height: 17px; background: var(--green); z-index: -1; transform: rotate(-1.5deg); }
.hero__lead { max-width: 630px; margin: 36px 0 26px; color: #414642; font-family: Lato, Arial, sans-serif; font-size: 19px; line-height: 1.6; }
.hero__actions { display: flex; gap: 12px; flex-wrap: wrap; }
.trust-row { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 42px; padding-top: 28px; border-top: 1px solid var(--border); }
.trust-row span { padding-right: 20px; }
.trust-row b { display: block; font-size: 18px; }
.trust-row small { display: block; margin-top: 5px; color: var(--muted); font-size: 11px; line-height: 1.4; }

.hero__visual { position: relative; min-height: 580px; border-radius: 48px; background: var(--black); overflow: hidden; box-shadow: var(--shadow); isolation: isolate; }
.hero__visual::before { content: ""; position: absolute; inset: -20%; background: radial-gradient(circle at 30% 30%, rgba(57,255,20,.45), transparent 28%), radial-gradient(circle at 70% 65%, rgba(57,255,20,.18), transparent 30%); filter: blur(14px); z-index: -1; }
.hero__visual::after { content: ""; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(90deg,rgba(255,255,255,.035) 1px, transparent 1px); background-size: 38px 38px; mask-image: linear-gradient(to bottom, black, transparent 80%); z-index: -1; }
.visual-badge { position: absolute; z-index: 4; display: flex; flex-direction: column; gap: 3px; padding: 13px 16px; background: var(--cream); color: var(--black); border-radius: 15px; box-shadow: 0 12px 40px rgba(0,0,0,.22); }
.visual-badge strong { font-size: 12px; font-weight: 900; text-transform: uppercase; }
.visual-badge span { font-size: 11px; color: var(--muted); }
.visual-badge--top { top: 28px; right: 28px; transform: rotate(3deg); }
.visual-badge--bottom { left: 28px; bottom: 30px; transform: rotate(-2deg); }
.bowl-scene { position: absolute; inset: 0; display: grid; place-items: center; transform: translateY(-5px); }
.bowl-shadow { position: absolute; width: 78%; height: 24%; bottom: 14%; border-radius: 50%; background: rgba(0,0,0,.65); filter: blur(28px); }
.bowl { position: relative; width: min(430px, 78%); aspect-ratio: 1.18; border-radius: 18% 18% 45% 45% / 14% 14% 54% 54%; background: linear-gradient(155deg,#242824,#090a09 60%); box-shadow: inset 0 10px 22px rgba(255,255,255,.09), 0 40px 80px rgba(0,0,0,.5); overflow: hidden; transform: perspective(850px) rotateX(16deg) rotateZ(-5deg); }
.bowl::before { content: ""; position: absolute; inset: 4% 4% 23%; border-radius: 22% 22% 38% 38%; background: #e6d6a7; box-shadow: inset 0 0 40px rgba(82,51,17,.18); }
.food { position: absolute; z-index: 2; }
.food--rice { inset: 10% 8% 25% 8%; border-radius: 30%; background-image: radial-gradient(ellipse at center,#fff6cf 0 24%, transparent 26%); background-size: 12px 8px; opacity: .93; }
.food--chicken { left: 10%; top: 20%; width: 53%; height: 44%; transform: rotate(-6deg); }
.food--chicken i { position: absolute; width: 44%; height: 28%; border-radius: 45% 55% 46% 54%; background: linear-gradient(145deg,#8f3f1b,#d97a27 48%,#6c2c12); box-shadow: inset 0 2px 8px rgba(255,214,115,.35), 0 4px 9px rgba(73,24,4,.25); }
.food--chicken i:nth-child(1){left:2%;top:8%;transform:rotate(12deg)}
.food--chicken i:nth-child(2){left:31%;top:0;transform:rotate(-11deg)}
.food--chicken i:nth-child(3){left:54%;top:20%;transform:rotate(18deg)}
.food--chicken i:nth-child(4){left:4%;top:42%;transform:rotate(-8deg)}
.food--chicken i:nth-child(5){left:37%;top:38%;transform:rotate(9deg)}
.food--chicken i:nth-child(6){left:52%;top:61%;transform:rotate(-12deg)}
.glaze { position: absolute; z-index: 3; left: 8%; top: 18%; width: 55%; height: 48%; background: radial-gradient(ellipse at 50% 30%,rgba(255,235,118,.48),transparent 50%); filter: blur(4px); transform: rotate(-9deg); }
.food--veg { right: 8%; top: 22%; width: 36%; height: 42%; }
.food--veg i { position: absolute; width: 42%; aspect-ratio: 1; border-radius: 28%; background: linear-gradient(145deg,#d9203a,#8b0d21); box-shadow: 0 3px 7px rgba(0,0,0,.2); }
.food--veg i:nth-child(1){left:3%;top:6%;transform:rotate(18deg)}
.food--veg i:nth-child(2){right:5%;top:18%;background:linear-gradient(145deg,#7ccc23,#34750b);transform:rotate(-10deg)}
.food--veg i:nth-child(3){left:15%;bottom:8%;background:linear-gradient(145deg,#a83266,#651637);transform:rotate(7deg)}
.food--veg i:nth-child(4){right:2%;bottom:5%;background:linear-gradient(145deg,#f19823,#bd4b0e);transform:rotate(22deg)}
.food--lime { right: 20%; bottom: 26%; width: 17%; aspect-ratio: 1; border-radius: 50%; border: 6px solid #67c829; background: radial-gradient(circle,#d9ff71 0 18%,#9ce23e 20% 53%,#eefec9 54% 60%,transparent 62%); transform: rotate(12deg); }
.guac-cup { position: absolute; right: 7%; bottom: 11%; width: 112px; aspect-ratio: 1; border-radius: 26px; background: rgba(255,255,255,.9); box-shadow: 0 22px 45px rgba(0,0,0,.32); transform: rotate(7deg); padding: 8px; z-index: 5; }
.guac-cup span { display: block; width: 100%; height: 100%; border-radius: 20px; background: radial-gradient(circle at 25% 25%,#d3ff75 0 5%,transparent 6%), radial-gradient(circle at 70% 60%,#c74335 0 5%,transparent 6%), radial-gradient(circle at 40% 70%,#5f9b1d 0 4%,transparent 5%), linear-gradient(145deg,#a8d94a,#5f9d1d); }

.ticker { overflow: hidden; background: var(--black); color: var(--green); padding: 15px 0; transform: rotate(-1deg) scale(1.015); }
.ticker__track { width: max-content; display: flex; gap: 28px; align-items: center; animation: ticker 28s linear infinite; font-weight: 900; font-size: 13px; letter-spacing: .12em; }
.ticker__track i { font-style: normal; }
@keyframes ticker { to { transform: translateX(-50%); } }

.problem { padding-block: 130px; }
.section-heading { max-width: 760px; }
.section-heading h2, .recipes__intro h2, .signature__sticky h2, .order-card h2, .manifesto h2 { margin: 0; font-size: clamp(42px, 5.6vw, 78px); line-height: .97; letter-spacing: -.065em; }
.section-heading > p:last-child { margin-top: 24px; color: var(--muted); font-family: Lato,Arial,sans-serif; font-size: 18px; line-height: 1.7; }
.section-heading--center { margin-inline: auto; text-align: center; }
.problem-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; margin-top: 58px; }
.problem-card { min-height: 260px; padding: 28px; border: 1px solid var(--border); border-radius: var(--radius); background: rgba(255,255,255,.5); display: flex; flex-direction: column; }
.problem-card__number { font-weight: 900; color: var(--muted); }
.problem-card h3 { margin: auto 0 10px; font-size: 25px; letter-spacing: -.04em; }
.problem-card p { margin: 0; color: var(--muted); line-height: 1.6; }

.signature { background: var(--black); color: var(--white); padding-block: 130px; position: relative; overflow: hidden; }
.signature::after { content:""; position:absolute; width:520px; height:520px; border-radius:50%; right:-140px; bottom:-200px; background:var(--green); filter:blur(150px); opacity:.17; }
.signature__grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 100px; align-items: start; }
.signature__sticky { position: sticky; top: 130px; }
.signature__sticky h2 { font-size: clamp(50px,6.6vw,88px); }
.signature__sticky h2 span { color: var(--green); }
.signature__sticky > p:not(.eyebrow) { color: #aeb5b0; font-family: Lato,Arial,sans-serif; font-size: 18px; line-height: 1.7; }
.price-line { margin: 34px 0 24px; display: flex; align-items: baseline; gap: 12px; }
.price-line strong { font-size: 31px; }
.price-line span { color: #858b87; font-size: 12px; }
.ingredient-stack { display: grid; gap: 18px; }
.ingredient-card { min-height: 225px; padding: 30px; border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius); background: rgba(255,255,255,.055); display: grid; grid-template-columns: 58px 1fr; gap: 22px; backdrop-filter: blur(10px); }
.ingredient-card__icon { width: 58px; height: 58px; display:grid; place-items:center; border-radius:18px; background:#242824; color:var(--green); font-weight:900; }
.ingredient-card__label { margin: 3px 0 10px; color: var(--green); font-size: 10px; font-weight: 900; letter-spacing: .16em; }
.ingredient-card h3 { margin: 0 0 12px; font-size: 26px; letter-spacing: -.04em; }
.ingredient-card p:last-child { margin: 0; color: #aeb5b0; line-height: 1.7; }
.ingredient-card--accent { background: var(--green); color: var(--black); border-color: var(--green); }
.ingredient-card--accent .ingredient-card__icon { background: var(--black); }
.ingredient-card--accent .ingredient-card__label, .ingredient-card--accent p:last-child { color: var(--black); }

.macros { padding-block: 130px; }
.macro-grid { margin-top: 58px; display: grid; grid-template-columns: 1.2fr repeat(3,1fr); gap: 16px; }
.macro-card { min-height: 210px; padding: 24px; border-radius: 24px; background: var(--white); border: 1px solid var(--border); display: flex; flex-direction: column; justify-content: flex-end; }
.macro-card strong { font-size: clamp(34px,4vw,58px); line-height: 1; letter-spacing: -.06em; }
.macro-card span { margin-top: 8px; font-weight: 900; }
.macro-card small { margin-top: 8px; color: var(--muted); line-height: 1.4; }
.macro-card--main { background: var(--green); border-color: var(--green); }
.allergen-note { margin: 18px auto 0; max-width: 760px; color: var(--muted); font-size: 12px; text-align: center; line-height: 1.6; }

.recipes { padding-block: 130px; background: #e9e8df; }
.recipes__intro { display: grid; grid-template-columns: 1.1fr .9fr; gap: 80px; align-items: end; }
.recipes__intro p:last-child { color: var(--muted); font-family: Lato,Arial,sans-serif; font-size: 18px; line-height: 1.7; }
.recipe-grid { margin-top: 56px; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; }
.recipes__copy { display: grid; gap: 14px; }
.recipes__copy > p { margin: 0; }
.recipes__hint { display: inline-flex; align-items: center; gap: 8px; width: fit-content; padding: 9px 13px; border: 1px solid rgba(11,13,12,.14); border-radius: 999px; color: var(--black) !important; background: rgba(255,255,255,.5); font-family: Inter,Arial,sans-serif !important; font-size: 12px !important; font-weight: 800; line-height: 1.3 !important; }
.recipes__hint::before { content: "↗"; display: grid; place-items: center; width: 22px; height: 22px; border-radius: 50%; background: var(--green); color: var(--black); font-weight: 900; }
.recipe-card { position: relative; min-width: 0; padding: 0; border: 1px solid rgba(11,13,12,.12); border-radius: 30px; background: var(--white); color: var(--black); overflow: hidden; display: flex; flex-direction: column; text-align: left; box-shadow: 0 18px 45px rgba(11,13,12,.08); transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease; }
.recipe-card:hover { transform: translateY(-7px); box-shadow: 0 28px 65px rgba(11,13,12,.16); border-color: rgba(57,255,20,.85); }
.recipe-card:focus-visible { outline: 4px solid rgba(57,255,20,.5); outline-offset: 4px; }
.recipe-card__visual { position: relative; aspect-ratio: 1 / 1; overflow: hidden; background: var(--black); }
.recipe-card__visual::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.58), transparent 30%); pointer-events: none; }
.recipe-card__visual img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .55s cubic-bezier(.2,.7,.2,1); }
.recipe-card:hover .recipe-card__visual img { transform: scale(1.035); }
.recipe-card__number { position: absolute; top: 18px; left: 18px; z-index: 2; padding: 9px 12px; border-radius: 999px; background: rgba(11,13,12,.82); color: var(--white); backdrop-filter: blur(8px); font-size: 10px; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.recipe-card__open { position: absolute; z-index: 2; right: 18px; bottom: 18px; display: inline-flex; align-items: center; gap: 9px; padding: 11px 13px; border-radius: 999px; background: var(--green); color: var(--black); font-size: 11px; font-weight: 900; box-shadow: 0 10px 30px rgba(0,0,0,.22); }
.recipe-card__open::after { content: "↗"; font-size: 15px; }
.recipe-card__body { flex: 1; padding: 24px 26px 27px; display: flex; flex-direction: column; }
.recipe-card h3 { margin: 0; font-size: clamp(25px, 3vw, 34px); line-height: 1.03; letter-spacing: -.05em; }
.recipe-card__body > p { margin: 13px 0 20px; color: var(--muted); font-family: Lato,Arial,sans-serif; line-height: 1.6; }
.recipe-card__meta { margin-top: auto; display: flex; flex-wrap: wrap; gap: 8px; }
.recipe-card__meta span { padding: 8px 10px; border: 1px solid rgba(11,13,12,.18); border-radius: 999px; background: var(--cream); font-size: 11px; font-weight: 800; }
.recipes__footer { margin-top: 22px; padding: 24px 28px; border-radius: 22px; background: var(--white); display:flex; justify-content:space-between; align-items:center; gap:20px; }
.recipes__footer div { display:flex; flex-direction:column; gap:5px; }
.recipes__footer span { color: var(--muted); font-size: 13px; }

.how { padding-block: 130px; }
.steps { margin-top: 58px; display:grid; grid-template-columns:repeat(4,1fr); gap:18px; counter-reset:step; }
.step { padding: 24px; min-height: 260px; border-top: 3px solid var(--black); background: linear-gradient(to bottom,rgba(255,255,255,.5),transparent); }
.step > span { width: 44px; height: 44px; display:grid; place-items:center; border-radius:50%; background:var(--green); font-weight:900; }
.step h3 { margin: 80px 0 10px; font-size: 22px; letter-spacing: -.04em; }
.step p { margin:0; color:var(--muted); line-height:1.6; }

.manifesto { background: var(--green); padding-block: 120px; position:relative; overflow:hidden; }
.manifesto::before { content:"PROTIQO"; position:absolute; right:-30px; bottom:-70px; font-size:18vw; font-weight:900; letter-spacing:-.08em; color:rgba(11,13,12,.06); }
.manifesto__content { position:relative; }
.manifesto__content > p:first-child { font-weight:900; letter-spacing:.18em; font-size:12px; }
.manifesto h2 { max-width: 940px; font-size: clamp(54px,8vw,112px); }
.manifesto__content > p:last-child { max-width:680px; font-size:18px; line-height:1.7; }

.order { padding-block: 130px; }
.order-card { background: var(--black); color:var(--white); border-radius:40px; padding:54px; display:grid; grid-template-columns:.9fr 1.1fr; gap:70px; box-shadow:var(--shadow); }
.order-card__copy > p:not(.eyebrow) { color:#aeb5b0; line-height:1.7; font-size:17px; }
.order-points { margin-top:30px; display:grid; gap:13px; color:#dfe3e0; font-size:14px; }
.order-points > span::first-letter { color:var(--green); }
.order-form { background:var(--cream); color:var(--black); border-radius:28px; padding:28px; display:grid; gap:16px; }
.form-row { display:grid; grid-template-columns:1fr 1fr; gap:14px; }
.order-form label { display:grid; gap:8px; font-size:12px; font-weight:900; }
.order-form input, .order-form textarea, .order-form select { width:100%; border:1px solid var(--border); border-radius:13px; padding:13px 14px; background:var(--white); color:var(--black); outline:none; }
.order-form input:focus, .order-form textarea:focus, .order-form select:focus { border-color:var(--black); box-shadow:0 0 0 3px rgba(57,255,20,.45); }
.form-status { min-height:18px; margin:0; font-size:12px; font-weight:800; color:#28721d; }
.form-privacy { margin:0; color:var(--muted); font-size:10px; line-height:1.5; }

.faq { padding-block: 40px 130px; }
.faq-list { margin-top:50px; border-top:1px solid var(--border); }
.faq-item { border-bottom:1px solid var(--border); }
.faq-question { width:100%; padding:24px 0; display:flex; align-items:center; justify-content:space-between; gap:30px; border:0; background:transparent; text-align:left; font-size:18px; font-weight:900; }
.faq-question::after { content:"+"; width:30px; height:30px; display:grid; place-items:center; border-radius:50%; background:var(--white); font-size:20px; transition:transform .25s ease; }
.faq-item.open .faq-question::after { transform:rotate(45deg); }
.faq-answer { max-height:0; overflow:hidden; transition:max-height .35s ease; }
.faq-answer p { max-width:780px; margin:0 0 24px; color:var(--muted); line-height:1.7; }

.footer { background:var(--black); color:var(--white); padding:70px 0 25px; }
.footer__grid { display:grid; grid-template-columns:1.6fr .7fr .7fr; gap:60px; }
.brand--footer .brand__mark { background:var(--green); color:var(--black); }
.footer__grid > div { display:flex; flex-direction:column; align-items:flex-start; gap:10px; }
.footer__grid p, .footer__grid a, .footer__grid span { color:#999f9b; font-size:13px; line-height:1.6; }
.footer__grid a:hover { color:var(--green); }
.footer__bottom { margin-top:50px; padding-top:22px; border-top:1px solid rgba(255,255,255,.1); display:flex; justify-content:space-between; color:#717773; font-size:11px; }


.recipe-modal { position: fixed; inset: 0; z-index: 120; display: grid; place-items: center; padding: 24px; visibility: hidden; opacity: 0; transition: opacity .25s ease, visibility .25s ease; }
.recipe-modal.open { visibility: visible; opacity: 1; }
.recipe-modal__backdrop { position: absolute; inset: 0; background: rgba(4,6,5,.76); backdrop-filter: blur(12px); }
.recipe-modal__dialog { position: relative; z-index: 1; width: min(1120px, 100%); max-height: min(880px, calc(100vh - 48px)); overflow: auto; border-radius: 34px; background: var(--cream); box-shadow: 0 35px 100px rgba(0,0,0,.4); display: grid; grid-template-columns: minmax(340px,.9fr) minmax(440px,1.1fr); transform: translateY(22px) scale(.985); transition: transform .28s ease; }
.recipe-modal.open .recipe-modal__dialog { transform: none; }
.recipe-modal__close { position: absolute; z-index: 4; top: 16px; right: 16px; width: 44px; height: 44px; border: 0; border-radius: 50%; background: var(--green); color: var(--black); font-size: 30px; line-height: 1; box-shadow: 0 12px 28px rgba(0,0,0,.18); }
.recipe-modal__media { min-height: 100%; background: var(--black); }
.recipe-modal__media img { width: 100%; height: 100%; min-height: 620px; object-fit: cover; display: block; }
.recipe-modal__content { padding: 48px 48px 42px; }
.recipe-modal__content h2 { margin: 0; max-width: 620px; font-size: clamp(40px,5vw,68px); line-height: .95; letter-spacing: -.065em; }
.recipe-modal__description { max-width: 660px; margin: 22px 0 18px; color: var(--muted); font-family: Lato,Arial,sans-serif; font-size: 17px; line-height: 1.65; }
.recipe-modal__meta { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 30px; }
.recipe-modal__meta span { padding: 9px 11px; border-radius: 999px; background: var(--green); color: var(--black); font-size: 11px; font-weight: 900; }
.recipe-modal__columns { display: grid; grid-template-columns: .86fr 1.14fr; gap: 30px; padding-top: 28px; border-top: 1px solid var(--border); }
.recipe-modal__columns h3 { margin: 0 0 14px; font-size: 15px; text-transform: uppercase; letter-spacing: .1em; }
.recipe-modal__columns ul, .recipe-modal__columns ol { margin: 0; padding-left: 21px; display: grid; gap: 10px; color: #3e443f; font-family: Lato,Arial,sans-serif; line-height: 1.55; }
.recipe-modal__columns li::marker { color: #2e8c20; font-weight: 900; }
.recipe-modal__print { margin-top: 32px; }
body.modal-open { overflow: hidden; }


.print-sheet { display:none; }
.reveal { opacity:0; transform:translateY(22px); transition:opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity:1; transform:none; }

@media (max-width: 1000px) {
  .nav { position:fixed; inset:110px 20px auto; padding:28px; border-radius:24px; background:var(--black); color:var(--white); flex-direction:column; align-items:flex-start; transform:translateY(-130%); opacity:0; transition:.25s ease; box-shadow:var(--shadow); }
  .nav.open { transform:none; opacity:1; }
  .menu-button { display:block; }
  .header-actions > .button { display:none; }
  .hero { grid-template-columns:1fr; padding-top:55px; }
  .hero__visual { min-height:560px; }
  .signature__grid { grid-template-columns:1fr; gap:50px; }
  .signature__sticky { position:static; }
  .steps { grid-template-columns:repeat(2,1fr); }
  .order-card { grid-template-columns:1fr; }
}

@media (max-width: 720px) {
  :root { --shell: min(100% - 24px, 1180px); --radius:22px; }
  .announcement { font-size:9px; text-align:center; padding-inline:10px; }
  .site-header { min-height:68px; padding-inline:12px; }
  .brand__word { font-size:17px; }
  .language-picker select { padding:9px 28px 9px 10px; }
  .hero { min-height:auto; gap:38px; padding-block:45px 60px; }
  .hero h1 { font-size:clamp(54px,19vw,82px); }
  .hero h1 .highlight { -webkit-text-stroke:1.5px var(--black); }
  .hero__lead { font-size:17px; margin-top:30px; }
  .hero__actions .button { flex:1; }
  .trust-row { grid-template-columns:1fr; gap:16px; }
  .trust-row span { display:grid; grid-template-columns:120px 1fr; align-items:center; }
  .hero__visual { min-height:460px; border-radius:30px; }
  .bowl { width:84%; }
  .guac-cup { width:84px; }
  .visual-badge { max-width:160px; }
  .problem, .macros, .how, .order { padding-block:88px; }
  .problem-grid, .macro-grid, .recipe-grid, .steps { grid-template-columns:1fr; }
  .problem-card { min-height:220px; }
  .signature { padding-block:88px; }
  .signature__grid { gap:36px; }
  .ingredient-card { grid-template-columns:44px 1fr; padding:22px; min-height:unset; }
  .ingredient-card__icon { width:44px; height:44px; border-radius:14px; }
  .macros .section-heading { text-align:left; }
  .recipe-grid { gap:14px; }
  .recipes { padding-block:88px; }
  .recipes__intro { grid-template-columns:1fr; gap:18px; }
  .recipes__intro h2, .section-heading h2, .order-card h2 { font-size: clamp(36px, 11.5vw, 54px); letter-spacing: -.055em; overflow-wrap: anywhere; hyphens: auto; }
  .recipes__footer { align-items:stretch; flex-direction:column; }
  .step h3 { margin-top:48px; }
  .order-card { border-radius:28px; padding:22px; gap:36px; }
  .form-row { grid-template-columns:1fr; }
  .faq { padding-bottom:88px; }
  .footer__grid { grid-template-columns:1fr; gap:32px; }
  .footer__bottom { flex-direction:column; gap:8px; }
}


@media (max-width: 900px) {
  .recipe-modal__dialog { grid-template-columns: 1fr; }
  .recipe-modal__media { max-height: 390px; }
  .recipe-modal__media img { min-height: 0; height: 390px; object-position: center; }
}

@media (max-width: 720px) {
  .recipe-card { border-radius: 24px; }
  .recipe-card__body { padding: 21px 20px 23px; }
  .recipe-card__number { top: 12px; left: 12px; }
  .recipe-card__open { right: 12px; bottom: 12px; }
  .recipe-modal { padding: 10px; align-items: end; }
  .recipe-modal__dialog { max-height: calc(100vh - 20px); border-radius: 28px 28px 18px 18px; }
  .recipe-modal__media { max-height: 300px; }
  .recipe-modal__media img { height: 300px; object-position: center; }
  .recipe-modal__content { padding: 30px 22px 28px; }
  .recipe-modal__content h2 { padding-right: 30px; font-size: clamp(36px,12vw,52px); }
  .recipe-modal__columns { grid-template-columns: 1fr; gap: 24px; }
  .recipe-modal__close { top: 12px; right: 12px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}


@media print {
  body > *:not(.print-sheet) { display:none !important; }
  .print-sheet { display:block; font-family:Inter,Arial,sans-serif; color:#111; padding:18mm; }
  .print-sheet__header { border-bottom:4px solid #39ff14; padding-bottom:10mm; margin-bottom:10mm; display:flex; justify-content:space-between; align-items:end; }
  .print-sheet__header strong { font-size:28pt; letter-spacing:-1.5pt; }
  #printRecipeGrid { display:grid; grid-template-columns:1fr 1fr; gap:10mm; }
  .print-recipe { break-inside:avoid; border:1px solid #bbb; border-radius:5mm; padding:6mm; }
  .print-recipe h3 { margin:0 0 2mm; font-size:16pt; }
  .print-recipe h4 { margin:4mm 0 1.5mm; font-size:10pt; text-transform:uppercase; letter-spacing:.8pt; }
  .print-recipe p, .print-recipe li { font-size:9pt; line-height:1.45; }
  .print-recipe ul, .print-recipe ol { padding-left:5mm; }
  .print-sheet__note { margin-top:10mm; font-size:8pt; color:#555; }
}
