:root {
  --peach: #ffbe91;
  --apricot: #ffddb0;
  --paper: #fff8f2;
  --paper-deep: #fff2e8;
  --ink: #2b211d;
  --muted: #6f625b;
  --line: #ebc8ae;
  --white: #ffffff;
  --font-heading: "Manrope", sans-serif;
  --font-body: "Manrope", sans-serif;
  --shadow-soft: 0 18px 60px rgba(82, 48, 29, 0.08);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: #fffdfb;
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
}
::selection { background: var(--apricot); color: var(--ink); }
.font-heading, h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  letter-spacing: -0.035em;
}
h1, h2, h3, p { text-wrap: pretty; }
a, button, input, textarea { outline: none; }
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible {
  box-shadow: 0 0 0 4px rgba(255, 190, 145, 0.48);
}
img { display: block; }

header {
  border-color: rgba(235, 200, 174, 0.75) !important;
  background: rgba(255, 253, 251, 0.9) !important;
  box-shadow: 0 8px 30px rgba(43, 33, 29, 0.035);
}
header > div:first-child { min-height: 76px; }
header > div:first-child > a > span:first-child {
  width: 42px !important;
  height: 42px !important;
  border-radius: 12px !important;
  background: var(--peach) !important;
  color: var(--ink) !important;
  transform: rotate(-4deg);
}
.brand-subtitle {
  display: block;
  margin-top: 2px;
  color: #8b5b43;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.nav-link {
  position: relative;
  color: #64564e;
  font-size: 0.82rem;
  font-weight: 700;
  transition: color 0.2s ease;
}
.nav-link:hover, .nav-link.is-active { color: var(--ink); }
.nav-link.is-active::after {
  position: absolute;
  right: 0;
  bottom: -0.65rem;
  left: 0;
  height: 3px;
  background: var(--peach);
  content: "";
}

.btn-primary, .btn-secondary, .btn-light {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 0.78rem 1.25rem;
  font-size: 0.83rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.btn-primary { background: var(--ink); color: var(--white); box-shadow: 8px 8px 0 var(--peach); }
.btn-primary:hover { transform: translate(-2px, -2px); box-shadow: 11px 11px 0 var(--peach); }
.btn-secondary { border: 1px solid var(--ink); background: transparent; color: var(--ink); }
.btn-secondary:hover { background: var(--apricot); transform: translateY(-2px); }
.btn-light { background: var(--white); color: var(--ink); box-shadow: 8px 8px 0 rgba(255,255,255,0.2); }
.text-link { display: inline-flex; align-items: center; gap: 0.4rem; color: var(--ink); font-size: 0.88rem; font-weight: 800; }
.text-link span { transition: transform 0.2s ease; }
.text-link:hover span { transform: translate(3px, -3px); }
.text-link.light { color: var(--white); }

.site-shell { width: min(1180px, calc(100% - 2.5rem)); margin-inline: auto; }
.section-space { padding: 7rem 0; }
.bg-paper { background: var(--paper); }
.bg-apricot { background: var(--apricot); }
.section-heading { max-width: 760px; margin-bottom: 3.4rem; }
.section-heading.compact { margin-bottom: 2.5rem; }
.section-heading h2, .split-feature h2, .faq-layout h2, .statement-panel h2 {
  margin: 0.75rem 0 0;
  color: var(--ink);
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 800;
  line-height: 1.05;
}
.section-heading > p:last-child { max-width: 660px; margin-top: 1.2rem; color: var(--muted); }
.product-kicker, .eyebrow {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: #9a4c28;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.product-kicker span { width: 30px; height: 2px; background: currentColor; }
.product-kicker.light { color: var(--apricot); }

.product-hero { position: relative; overflow: hidden; background: var(--paper); }
.product-hero::before {
  position: absolute;
  top: -180px;
  right: -120px;
  width: 520px;
  height: 520px;
  border: 110px solid var(--apricot);
  border-radius: 50%;
  content: "";
  opacity: 0.55;
}
.product-hero-grid { position: relative; display: grid; min-height: 720px; grid-template-columns: 1.05fr 0.95fr; gap: 5rem; align-items: center; padding: 6rem 0; }
.product-hero-copy h1, .inner-hero h1 {
  margin: 1rem 0 0;
  color: var(--ink);
  font-size: clamp(3.1rem, 6.5vw, 6.2rem);
  font-weight: 800;
  line-height: 0.94;
  letter-spacing: -0.065em;
}
.product-lead { max-width: 680px; margin-top: 1.7rem; color: var(--muted); font-size: 1.08rem; line-height: 1.8; }
.product-actions { display: flex; flex-wrap: wrap; gap: 1.35rem; align-items: center; margin-top: 2rem; }
.hero-facts { display: grid; grid-template-columns: repeat(3, 1fr); margin: 3.3rem 0 0; border-top: 1px solid var(--line); }
.hero-facts div { padding: 1.3rem 1rem 0 0; }
.hero-facts div + div { border-left: 1px solid var(--line); padding-left: 1rem; }
.hero-facts dt { font-size: 1.75rem; font-weight: 800; line-height: 1; }
.hero-facts dd { margin: 0.45rem 0 0; color: var(--muted); font-size: 0.72rem; line-height: 1.4; }
.product-packshot { position: relative; margin: 0; padding: 3.5rem 2.2rem 1.5rem; background: var(--peach); box-shadow: 28px 28px 0 var(--apricot); }
.product-packshot::after { position: absolute; top: 18px; right: 18px; width: 14px; height: 14px; background: var(--ink); content: ""; }
.packshot-label { position: absolute; top: 24px; left: -34px; color: rgba(43, 33, 29, 0.56); font-size: 0.68rem; font-weight: 800; letter-spacing: 0.25em; transform: rotate(-90deg); }
.product-packshot img { width: 100%; height: 400px; object-fit: contain; }
.product-packshot figcaption { margin-top: 1rem; color: rgba(43, 33, 29, 0.74); font-size: 0.72rem; line-height: 1.55; }

.inner-hero { background: linear-gradient(110deg, var(--paper) 0 62%, var(--apricot) 62%); }
.inner-hero-grid { display: grid; min-height: 510px; grid-template-columns: 1.2fr 0.8fr; gap: 6rem; align-items: center; padding: 5.5rem 0; }
.inner-hero h1 { max-width: 780px; font-size: clamp(2.8rem, 5.4vw, 5.2rem); }
.hero-note { position: relative; max-width: 400px; padding: 2.2rem; border: 1px solid rgba(43,33,29,.4); background: rgba(255,255,255,.5); backdrop-filter: blur(5px); }
.hero-note::before { position: absolute; top: -9px; left: -9px; width: 18px; height: 18px; background: var(--peach); content: ""; }
.hero-note > span { display: block; color: #8a4d2e; font-size: .7rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.hero-note strong { display: block; margin-top: .8rem; font-size: clamp(1.4rem, 3vw, 2.35rem); line-height: 1.1; }
.hero-note p { margin-top: 1rem; color: #5c4a40; font-size: .9rem; }

.formula-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.formula-card { min-height: 255px; padding: 2rem; border: 1px solid var(--line); background: var(--white); }
.formula-card-wide { grid-column: span 2; }
.formula-card-peach { background: var(--peach); border-color: var(--peach); }
.formula-card-light { background: var(--apricot); border-color: var(--apricot); }
.formula-card-dark { background: var(--ink); border-color: var(--ink); color: var(--white); }
.formula-index { color: #a4522d; font-size: .72rem; font-weight: 800; letter-spacing: .15em; }
.formula-card-dark .formula-index { color: var(--peach); }
.formula-card h3 { margin: 2.4rem 0 0; font-size: 1.55rem; font-weight: 800; }
.formula-card p { max-width: 620px; margin-top: .8rem; color: var(--muted); font-size: .9rem; line-height: 1.7; }
.formula-card-dark p { color: rgba(255,255,255,.72); }
.formula-card a { display: inline-block; margin-top: 1.1rem; color: var(--ink); font-size: .8rem; font-weight: 800; text-decoration: underline; text-underline-offset: 4px; }

.split-feature { display: grid; grid-template-columns: .9fr 1.1fr; gap: 7rem; align-items: center; }
.split-feature > div:first-child > p:not(.product-kicker) { margin-top: 1.25rem; color: var(--muted); line-height: 1.85; }
.split-feature .btn-secondary { margin-top: 1.8rem; }
.fact-stack { border-top: 1px solid var(--ink); }
.fact-stack > div { display: grid; grid-template-columns: 48px 180px 1fr; gap: 1.2rem; padding: 1.55rem 0; border-bottom: 1px solid var(--line); align-items: baseline; }
.fact-stack span { color: #a4522d; font-size: .72rem; font-weight: 800; }
.fact-stack strong { font-size: .98rem; }
.fact-stack p { margin: 0; color: var(--muted); font-size: .85rem; }
.minimal-image { width: 100%; height: 430px; object-fit: contain; background: var(--white); box-shadow: 24px 24px 0 var(--peach); }
.compliance-note { margin-top: 1.4rem; padding-left: 1rem; border-left: 3px solid var(--peach); color: var(--muted); font-size: .76rem; line-height: 1.65; }

.step-line { display: grid; grid-template-columns: repeat(4, 1fr); margin: 0; padding: 0; list-style: none; }
.step-line li { position: relative; min-height: 210px; padding: 0 1.5rem; border-left: 1px solid rgba(43,33,29,.35); }
.step-line li:last-child { border-right: 1px solid rgba(43,33,29,.35); }
.step-line li > span { display: flex; width: 42px; height: 42px; align-items: center; justify-content: center; background: var(--ink); color: var(--white); font-size: .8rem; font-weight: 800; }
.step-line h3 { margin: 2.4rem 0 0; font-size: 1.15rem; font-weight: 800; }
.step-line p { margin-top: .7rem; color: #6a5447; font-size: .84rem; }
.step-line.vertical { grid-template-columns: repeat(2, 1fr); gap: 0; border-top: 1px solid var(--line); }
.step-line.vertical li { min-height: 180px; padding: 2rem; border-bottom: 1px solid var(--line); }
.center-action { margin-top: 3rem; text-align: center; }

.faq-layout { display: grid; grid-template-columns: .7fr 1.3fr; gap: 6rem; }
.faq-list { display: grid; gap: .75rem; }
.faq-item { overflow: hidden; border: 0; border-bottom: 1px solid var(--line); border-radius: 0; background: transparent; }
.faq-button { display: flex; width: 100%; align-items: center; justify-content: space-between; gap: 1rem; padding: 1.2rem 0; color: var(--ink); text-align: left; font-size: 1.05rem; font-weight: 800; }
.faq-plus { display: flex; min-width: 32px; height: 32px; align-items: center; justify-content: center; border-radius: 0; background: var(--apricot); color: var(--ink); }
.faq-answer { padding: 0 2.8rem 1.3rem 0; border: 0; }
.faq-answer p { color: var(--muted); font-size: .92rem; line-height: 1.75; }

.product-cta { padding: 5rem 0; background: var(--ink); color: var(--white); }
.product-cta-inner { display: grid; grid-template-columns: 1.25fr .75fr; gap: 4rem; align-items: end; }
.product-cta h2 { max-width: 760px; margin: .8rem 0 0; font-size: clamp(2rem, 4.5vw, 4rem); font-weight: 800; line-height: 1.04; }
.product-cta .product-actions { justify-content: flex-end; }

.editorial-cards { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--ink); border-bottom: 1px solid var(--ink); }
.editorial-cards.three { grid-template-columns: repeat(3, 1fr); }
.editorial-cards article { min-height: 245px; padding: 2rem 1.5rem; border-right: 1px solid var(--line); }
.editorial-cards article:last-child { border-right: 0; }
.editorial-cards span { color: #a4522d; font-size: .72rem; font-weight: 800; }
.editorial-cards h3 { margin: 2.5rem 0 0; font-size: 1.25rem; font-weight: 800; }
.editorial-cards p { margin-top: .8rem; color: var(--muted); font-size: .88rem; }
.statement-panel { display: grid; grid-template-columns: .7fr 1.3fr; gap: 6rem; align-items: center; padding: 4.5rem; background: var(--paper-deep); }
.statement-panel > div:first-child { text-align: center; }
.statement-number { display: block; font-size: clamp(6rem, 15vw, 11rem); font-weight: 800; line-height: .8; letter-spacing: -.1em; }
.statement-panel > div:first-child p { margin-top: 1.4rem; color: var(--muted); font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; }
.statement-panel > div:last-child > p { margin-top: 1.2rem; color: var(--muted); line-height: 1.85; }

.plain-checks { display: grid; gap: .8rem; margin: 1.7rem 0 0; padding: 0; list-style: none; }
.plain-checks li { position: relative; padding: .85rem 0 .85rem 2.1rem; border-bottom: 1px solid rgba(43,33,29,.22); font-size: .9rem; }
.plain-checks li::before { position: absolute; left: 0; color: #9a4c28; content: "✓"; font-weight: 800; }
.routine-card { align-self: stretch; padding: 3rem; background: var(--white); box-shadow: 16px 16px 0 var(--peach); }
.routine-card > span { color: #9a4c28; font-size: .7rem; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.routine-card h3 { margin-top: 3.5rem; font-size: 2rem; font-weight: 800; }
.routine-card p { margin-top: 1rem; color: var(--muted); }
.routine-card a { display: inline-block; margin-top: 2rem; color: var(--ink); font-size: .85rem; font-weight: 800; }

.guide-list { display: grid; gap: 0; }
.article-card { overflow: visible; border: 0; border-radius: 0; background: transparent; box-shadow: none; }
.article-card + .article-card { border-top: 1px solid var(--line); }
.article-summary { display: grid; grid-template-columns: 1fr auto; gap: 2rem; align-items: center; padding: 2.2rem 0; }
.article-category { color: #9a4c28; font-size: .7rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.article-summary h2 { margin: .55rem 0 0; color: var(--ink); font-size: clamp(1.4rem, 3vw, 2.25rem); font-weight: 800; }
.article-summary p { max-width: 720px; margin-top: .7rem; color: var(--muted); font-size: .9rem; }
.article-content { margin-bottom: 1.5rem; padding: 2rem; border: 0; border-left: 4px solid var(--peach); background: var(--paper); }
.article-content p { color: #51453f; line-height: 1.85; }
.article-content p + p { margin-top: 1rem; }

.contact-layout { display: grid; grid-template-columns: .72fr 1.28fr; gap: 5rem; }
.contact-list { display: grid; align-content: start; }
.contact-card { padding: 1.35rem 0 1.35rem 1.3rem; border: 0; border-left: 4px solid var(--peach); border-radius: 0; background: transparent; box-shadow: none; }
.contact-card + .contact-card { border-top: 1px solid var(--line); }
.contact-card span { display: block; color: #9a4c28; font-size: .68rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.contact-card strong { display: block; margin-top: .5rem; color: var(--ink); font-size: .95rem; line-height: 1.65; }
.contact-form-panel { padding: 3rem; background: var(--paper); box-shadow: 20px 20px 0 var(--apricot); }
.contact-form-panel h2 { margin: .7rem 0 0; font-size: 2.5rem; font-weight: 800; }
.contact-form { display: grid; gap: 1.2rem; margin-top: 2rem; }
.field-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.2rem; }
.form-label { display: grid; gap: .5rem; color: var(--ink); font-size: .78rem; font-weight: 800; }
.form-input { width: 100%; border: 0; border-bottom: 1px solid #c99c7d; border-radius: 0; background: rgba(255,255,255,.7); padding: .9rem 1rem; color: var(--ink); font: inherit; }
textarea.form-input { min-height: 160px; resize: vertical; }
.form-input:focus { border-color: var(--ink); box-shadow: 0 3px 0 var(--peach); }
.form-footer { display: flex; gap: 1.5rem; align-items: center; justify-content: space-between; }
.form-footer p { max-width: 470px; color: var(--muted); font-size: .78rem; }
.form-footer a { color: var(--ink); font-weight: 800; text-decoration: underline; }

/* Existing content uses distinct card treatments instead of a repeated tile style. */
.challenge-card { padding: 1.5rem; border: 0; border-top: 4px solid var(--peach); border-radius: 0; background: var(--white); box-shadow: none; }
.pillar-card { padding: 1.5rem; border: 0; border-left: 1px solid var(--ink); border-radius: 0; background: transparent; box-shadow: none; }
.feature-card { display: flex; flex-direction: column; gap: .5rem; padding: 1.3rem 0; border: 0; border-bottom: 1px solid var(--line); border-radius: 0; background: transparent; box-shadow: none; }
.prose-panel { padding: 1.8rem; border: 1px solid var(--line); border-radius: 28px 4px 28px 4px; background: var(--white); box-shadow: none; }
.category-card { padding: 1.8rem; border: 0; border-radius: 4px 32px 4px 32px; background: var(--apricot); box-shadow: none; }
.challenge-card > span, .pillar-card > span, .category-card > span { color: #9a4c28; font-size: .7rem; font-weight: 800; letter-spacing: .16em; }
.challenge-card h3, .pillar-card h3, .prose-panel h2, .prose-panel h3, .category-card h2 { margin-top: .75rem; color: var(--ink); font-size: 1.25rem; font-weight: 800; }
.challenge-card p, .pillar-card p, .prose-panel p, .category-card p { margin-top: .75rem; color: var(--muted); font-size: .92rem; line-height: 1.75; }
.mini-stat { padding: 1rem; border: 1px solid var(--line); border-radius: 0; background: rgba(255,255,255,.7); text-align: center; }
.mini-stat strong { display: block; color: var(--ink); font-size: 1.65rem; font-weight: 800; }
.mini-stat span { display: block; margin-top: .2rem; color: var(--muted); font-size: .72rem; }
.proof-item { display: flex; flex-direction: column; justify-content: center; padding-left: 1.25rem; border-left: 3px solid var(--peach); }
.proof-item strong { color: var(--ink); }
.proof-item span { margin-top: .4rem; color: var(--muted); font-size: .85rem; }
.philosophy-row, .process-card { display: grid; grid-template-columns: auto 1fr; gap: 1rem; align-items: start; }
.philosophy-row > span, .process-card > span { display: flex; width: 42px; height: 42px; align-items: center; justify-content: center; border-radius: 8px; background: var(--peach); color: var(--ink); font-weight: 800; }
.philosophy-row h3, .process-card h3, .process-card h4 { color: var(--ink); font-size: 1.15rem; font-weight: 800; }
.philosophy-row p, .process-card p { margin-top: .4rem; color: var(--muted); font-size: .9rem; }
.process-card { padding: 1.3rem; border-left: 3px solid var(--peach); border-radius: 0; background: var(--paper); box-shadow: none; }
.ingredient-mini { padding: 1.25rem; border: 0; border-bottom: 1px solid var(--line); border-radius: 0; background: transparent; }
.ingredient-mini h3 { color: var(--ink); font-size: 1.15rem; font-weight: 800; }
.ingredient-mini p { margin-top: .5rem; color: var(--muted); font-size: .88rem; }
.routine-quote { padding: 1.5rem; border: 0; border-left: 5px solid var(--peach); border-radius: 0; background: var(--paper); }
.routine-quote p { color: var(--ink); font-size: 1.05rem; font-weight: 700; }
.routine-quote footer { margin-top: 1rem; color: #8b5b43; font-size: .72rem; font-weight: 800; text-transform: uppercase; }
.check-row { position: relative; padding: 1rem 1rem 1rem 3.2rem; border-radius: 0; background: transparent; color: var(--muted); box-shadow: none; }
.check-row::before { position: absolute; top: 1rem; left: 1rem; display: flex; width: 22px; height: 22px; align-items: center; justify-content: center; background: var(--peach); color: var(--ink); content: "✓"; font-size: .7rem; font-weight: 800; }
.ingredient-detail { display: grid; grid-template-columns: auto 1fr; gap: 1.3rem; padding: 1.75rem; border: 0; border-top: 1px solid var(--ink); border-radius: 0; background: var(--paper); }
.ingredient-number { display: flex; width: 48px; height: 48px; align-items: center; justify-content: center; border-radius: 0; background: var(--peach); color: var(--ink); font-weight: 800; }
.ingredient-detail h2 { color: var(--ink); font-size: 1.65rem; font-weight: 800; }
.ingredient-detail p { margin-top: .8rem; color: var(--muted); font-size: .92rem; line-height: 1.8; }

.legal-document { display: grid; gap: 2rem; }
.legal-section { padding-bottom: 2rem; border-bottom: 1px solid var(--line); }
.legal-section:last-child { border-bottom: 0; }
.legal-section h2 { color: var(--ink); font-size: 1.6rem; font-weight: 800; }
.legal-section p { margin-top: 1rem; color: #51453f; line-height: 1.85; }
.legal-section ul { display: grid; gap: .65rem; margin-top: 1rem; }
.legal-section li { position: relative; padding-left: 1.5rem; color: #51453f; line-height: 1.75; }
.legal-section li::before { position: absolute; left: .35rem; color: #9a4c28; content: "•"; font-weight: 800; }

.footer-chip { padding: .55rem .85rem; border: 1px solid rgba(255,255,255,.24); border-radius: 6px; color: rgba(255,255,255,.88); font-size: .72rem; font-weight: 700; }
.cookie-panel { border: 1px solid var(--line); background: var(--white); }
.cookie-link { color: #8f4524; font-weight: 800; }
.cookie-btn { padding: .7rem 1rem; border-radius: 6px; font-size: .76rem; font-weight: 800; white-space: nowrap; }
.cookie-btn-ghost { border: 1px solid var(--ink); background: var(--white); color: var(--ink); }
.cookie-btn-soft { background: var(--apricot); color: var(--ink); }
.cookie-btn-primary { background: var(--ink); color: var(--white); }
.modal-list-item { position: relative; padding: 1rem 1rem 1rem 3rem; border-radius: 0; background: var(--paper); }
.modal-list-item::before { position: absolute; left: 1rem; color: #9a4c28; content: "✓"; font-weight: 800; }

@media (max-width: 1024px) {
  .product-hero-grid, .inner-hero-grid, .split-feature, .faq-layout, .statement-panel, .contact-layout, .product-cta-inner { grid-template-columns: 1fr; gap: 3.5rem; }
  .product-hero-grid { min-height: auto; }
  .product-packshot { max-width: 640px; }
  .product-cta .product-actions { justify-content: flex-start; }
  .inner-hero { background: linear-gradient(180deg, var(--paper) 0 70%, var(--apricot) 70%); }
  .inner-hero-grid { min-height: auto; }
  .hero-note { max-width: 620px; }
  .formula-grid { grid-template-columns: repeat(2, 1fr); }
  .step-line { grid-template-columns: repeat(2, 1fr); }
  .editorial-cards { grid-template-columns: repeat(2, 1fr); }
  .editorial-cards article:nth-child(2) { border-right: 0; }
  .editorial-cards article:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
}

@media (max-width: 700px) {
  .site-shell { width: min(100% - 2rem, 1180px); }
  .section-space { padding: 4.5rem 0; }
  .product-hero-grid, .inner-hero-grid { padding: 4.2rem 0; }
  .product-hero-copy h1, .inner-hero h1 { font-size: clamp(2.7rem, 15vw, 4.4rem); }
  .product-lead { font-size: 1rem; }
  .hero-facts { grid-template-columns: 1fr; }
  .hero-facts div + div { border-left: 0; }
  .hero-facts div { display: grid; grid-template-columns: 60px 1fr; gap: 1rem; align-items: center; border-bottom: 1px solid var(--line); padding: 1rem 0; }
  .hero-facts dd { margin: 0; }
  .product-packshot { padding: 2.5rem 1.2rem 1.2rem; box-shadow: 12px 12px 0 var(--apricot); }
  .product-packshot img { height: 300px; }
  .formula-grid, .step-line, .step-line.vertical, .editorial-cards, .editorial-cards.three, .field-row { grid-template-columns: 1fr; }
  .formula-card-wide { grid-column: auto; }
  .step-line li, .step-line.vertical li { min-height: auto; padding: 1.4rem; border-right: 0 !important; border-bottom: 1px solid rgba(43,33,29,.3); }
  .step-line h3 { margin-top: 1.4rem; }
  .fact-stack > div { grid-template-columns: 38px 1fr; }
  .fact-stack p { grid-column: 2; }
  .editorial-cards article { min-height: auto; border-right: 0; border-bottom: 1px solid var(--line); }
  .editorial-cards article:last-child { border-bottom: 0; }
  .statement-panel, .contact-form-panel { padding: 2rem 1.35rem; }
  .statement-number { font-size: 7rem; }
  .article-summary { grid-template-columns: 1fr; }
  .article-summary .btn-secondary { justify-self: start; }
  .form-footer { align-items: stretch; flex-direction: column; }
  .minimal-image { height: 310px; box-shadow: 12px 12px 0 var(--peach); }
  .ingredient-detail { grid-template-columns: 1fr; }
}
