: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; }
}


/* Accessibility and interaction hardening without changing page structure. */
.hidden{display:none!important}.sr-only{position:absolute!important;width:1px!important;height:1px!important;padding:0!important;margin:-1px!important;overflow:hidden!important;clip:rect(0,0,0,0)!important;white-space:nowrap!important;border:0!important}
body{overflow-x:hidden}a,button,input,textarea{outline:none}a:focus-visible,button:focus-visible,input:focus-visible,textarea:focus-visible{outline:3px solid var(--focus)!important;outline-offset:3px!important;box-shadow:none!important}.form-status.is-success{background:#E9F5ED!important;color:#185C31!important}.form-status.is-error{background:#FFF0EF!important;color:#92231C!important}.form-input[aria-invalid="true"]{border-color:#92231C!important}.brand-mark img{width:100%;height:100%;object-fit:contain}.brand-mark{background:transparent!important;transform:none!important;padding:.15rem!important}.cookie-panel,.modal-card{color:var(--ink)}
/* Local fallback for the original Tailwind utility-based header, footer, breadcrumb, modal and cookie layout. */
body>header{position:sticky;top:0;z-index:40}body>header>div:first-child{width:min(1280px,calc(100% - 2.5rem));margin-inline:auto;display:flex;align-items:center;justify-content:space-between;gap:1.25rem;padding:1rem 0}body>header>div:first-child>a{display:flex;align-items:center;gap:.75rem;color:var(--ink);text-decoration:none}body>header>div:first-child>a>span:last-child>span{display:block}body>header>div:first-child>a .font-heading{font-size:1.25rem;font-weight:700;line-height:1.2}body>header>div:first-child>nav{align-items:center;gap:1.25rem}body>header>div:first-child>div>a{white-space:nowrap}body>header>div:first-child>button{display:inline-flex;align-items:center;justify-content:center;width:44px;height:44px;border:1px solid var(--line);border-radius:.75rem;background:transparent;color:var(--ink)}#mobile-menu{border-top:1px solid var(--line);padding:1rem 1.25rem;background:var(--white)}#mobile-menu nav{display:grid;gap:.35rem}#mobile-menu a{display:block;padding:.8rem 1rem;border-radius:.7rem;color:var(--ink);text-decoration:none}#mobile-menu a:hover{background:var(--paper)}
body>header+div{border-bottom:1px solid var(--line);background:var(--paper)}body>header+div>div{width:min(1280px,calc(100% - 2.5rem));margin:auto;padding:1rem 0;color:var(--muted);font-size:.875rem}body>header+div a{color:var(--ink);font-weight:700;text-decoration:none}
body>footer{color:#fff}body>footer>div:first-child{width:min(1280px,calc(100% - 2.5rem));margin:auto;display:grid;grid-template-columns:2fr 1fr 1fr;gap:3rem;padding:4rem 0}body>footer>div:first-child>div:first-child{grid-column:span 1}body>footer>div:first-child>div:first-child>div:first-child{display:flex;align-items:center;gap:.75rem}body>footer>div:first-child h2{font-size:1.1rem;margin:0 0 1rem;color:#fff}body>footer>div:first-child p,body>footer address,body>footer>div:first-child>div:last-child>div{color:rgba(255,255,255,.82)}body>footer address{font-style:normal}body>footer address p{margin:.65rem 0}body>footer a{color:inherit;text-decoration:none}body>footer>div:first-child>div:last-child>div{display:grid;gap:.65rem}body>footer>div:last-child{border-top:1px solid rgba(255,255,255,.18)}body>footer>div:last-child>div{width:min(1280px,calc(100% - 2.5rem));margin:auto;display:flex;justify-content:space-between;gap:1rem;padding:1.25rem 0;color:rgba(255,255,255,.74);font-size:.875rem}
[data-modal]{position:fixed;inset:0;z-index:60;align-items:center;justify-content:center;padding:1rem}[data-modal]>div:first-child{position:absolute;inset:0;background:rgba(25,22,20,.74)}[data-modal]>div:nth-child(2){position:relative;width:min(576px,100%);max-height:90vh;overflow:auto;border-radius:1.5rem;background:#fff;padding:2rem;box-shadow:0 28px 80px rgba(0,0,0,.28)}[data-modal]>div:nth-child(2)>button:first-child{position:absolute;right:1rem;top:1rem;display:flex;width:40px;height:40px;align-items:center;justify-content:center;border:0;border-radius:50%;background:var(--paper);color:var(--ink);font-size:1.3rem}[data-modal] h2{margin:.75rem 0 0;color:var(--ink);font-size:2rem}[data-modal] ol{display:grid;gap:.7rem;margin:1.5rem 0 0;padding:0;list-style:none}[data-modal]>div:nth-child(2)>div:last-child{display:flex;flex-wrap:wrap;gap:.75rem;margin-top:1.5rem}
.cookie-panel{position:fixed;z-index:50;left:50%;bottom:1rem;transform:translateX(-50%);width:min(920px,calc(100% - 2rem));border-radius:1rem;padding:1.25rem;box-shadow:0 22px 65px rgba(0,0,0,.2)}.cookie-panel>div{display:grid;grid-template-columns:1fr auto;gap:1rem;align-items:center}.cookie-panel h2{margin:0;color:var(--ink);font-size:1.05rem}.cookie-panel p{margin:.35rem 0 0;color:var(--muted);font-size:.875rem}.cookie-panel button{min-height:44px;border:0;border-radius:.6rem;padding:.75rem 1rem;background:var(--ink);color:#fff;font-weight:700}
@media(min-width:1024px){body>header>div:first-child>nav.hidden{display:flex!important}body>header>div:first-child>div.hidden{display:block!important}body>header>div:first-child>button{display:none!important}}
@media(max-width:1023px){body>header>div:first-child>nav,body>header>div:first-child>div{display:none!important}body>footer>div:first-child{grid-template-columns:1fr 1fr}body>footer>div:first-child>div:first-child{grid-column:1/-1}}
@media(max-width:700px){body>footer>div:first-child{grid-template-columns:1fr;gap:1.5rem;padding:3rem 0}body>footer>div:first-child>div:first-child{grid-column:auto}body>footer>div:last-child>div{flex-direction:column}.cookie-panel>div{grid-template-columns:1fr}}
@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(max-width:420px){html,body{max-width:100%;overflow-x:hidden}.site-shell{width:calc(100% - 1.5rem);min-width:0}.inner-hero-grid,.contact-layout,.split-feature,.product-hero-grid,.statement-panel{min-width:0}.inner-hero-grid>* ,.contact-layout>* ,.split-feature>* ,.product-hero-grid>* ,.statement-panel>*{min-width:0}.legal-section,.legal-section *,.contact-form-panel,.contact-form-panel *{max-width:100%;overflow-wrap:anywhere}.error-card{width:100%;min-width:0;overflow-wrap:anywhere}}


:root{--peach:#D4B06A;--apricot:#EFE1C4;--paper:#FBF8F1;--paper-deep:#F1E9DA;--ink:#101A28;--muted:#4D5968;--line:#D8CFBE;--white:#FFFFFF;--font-heading:"Playfair Display",serif;--font-body:"IBM Plex Sans",sans-serif;--shadow-soft:0 24px 70px rgba(16,26,40,.16);--focus:#F2C66D}
body.variant-02{background:#FBF8F1;color:var(--ink)}
body.variant-02 header{background:#13243A!important;border-color:#34465B!important;box-shadow:0 12px 35px rgba(8,18,30,.22)}body.variant-02 header .font-heading,body.variant-02 header .nav-link,body.variant-02 header button{color:#fff!important}body.variant-02 header .brand-subtitle{color:#E7D6B1}body.variant-02 header .nav-link{font-size:.78rem;text-transform:uppercase;letter-spacing:.06em}body.variant-02 header .nav-link.is-active::after{background:#D4B06A}
body.variant-02 header .btn-primary{background:#D4B06A;color:#13243A;box-shadow:none;border-radius:0}body.variant-02 header .btn-primary:hover{background:#E4C17B;transform:none}
body.variant-02 #mobile-menu{background:#13243A!important;border-color:#34465B!important}body.variant-02 #mobile-menu a{color:#fff!important}body.variant-02 #mobile-menu a:hover{background:#243B57!important}
body.variant-02 .btn-primary{border-radius:0;background:#13243A;color:#fff;box-shadow:none}body.variant-02 .btn-primary:hover{background:#243B57;transform:none}body.variant-02 .btn-secondary{border-radius:0;border-color:#13243A;color:#13243A}
body.variant-02 .product-hero{background:#13243A;color:#fff}body.variant-02 .product-hero::before{border-color:#D4B06A;opacity:.16}body.variant-02 .product-hero h1,body.variant-02 .product-hero .product-lead,body.variant-02 .product-hero .text-link,body.variant-02 .product-hero dt{color:#fff}body.variant-02 .product-hero .product-lead,body.variant-02 .product-hero dd,body.variant-02 .product-hero .compliance-note{color:#D8E0E8}body.variant-02 .product-hero .product-kicker{color:#E4C17B}body.variant-02 .product-hero .btn-primary{background:#D4B06A;color:#13243A}
body.variant-02 .product-packshot{background:transparent;border:1px solid #846B3E;box-shadow:none}body.variant-02 .product-packshot::after{background:#D4B06A}body.variant-02 .packshot-label,body.variant-02 .product-packshot figcaption{color:#E7D6B1}
body.variant-02 .section-heading{text-align:center;margin-left:auto;margin-right:auto}.formula-grid{gap:0}.variant-02 .formula-card{border-radius:0;border-color:#D8CFBE;min-height:285px}.variant-02 .formula-card-peach{background:#EFE1C4}.variant-02 .formula-card-light{background:#F6F0E5}.variant-02 .formula-card-dark{background:#13243A;color:#fff}.variant-02 .formula-card-dark p{color:#D8E0E8}.variant-02 .formula-index,.variant-02 .product-kicker,.variant-02 .eyebrow,.variant-02 .editorial-cards span,.variant-02 .contact-card span{color:#77521A}
body.variant-02 .minimal-image{background:#fff;box-shadow:24px 24px 0 #D4B06A}.variant-02 .bg-apricot{background:#D4B06A}.variant-02 .bg-apricot .product-kicker,.variant-02 .bg-apricot h2,.variant-02 .bg-apricot h3,.variant-02 .bg-apricot p{color:#13243A}.variant-02 .step-line li{border-color:#715B32}.variant-02 .step-line li>span{background:#13243A;color:#fff}.variant-02 .faq-plus{border-radius:0;background:#EFE1C4;color:#13243A}
body.variant-02 .product-cta{background:#D4B06A;color:#13243A}body.variant-02 .product-cta h2,body.variant-02 .product-cta .product-kicker,body.variant-02 .product-cta .text-link{color:#13243A}
body.variant-02 footer{background:#0D1827!important}body.variant-02 footer .text-white\/80,body.variant-02 footer .text-white\/70{color:#D4DCE5!important}
body.variant-02 .inner-hero{background:linear-gradient(90deg,#13243A 0 58%,#EFE1C4 58%)}body.variant-02 .inner-hero h1,body.variant-02 .inner-hero .product-kicker,body.variant-02 .inner-hero .product-lead{color:#fff}body.variant-02 .inner-hero .product-lead{color:#D8E0E8}body.variant-02 .hero-note{background:#fff;color:#13243A;border-radius:0}.variant-02 .statement-panel{background:#13243A;color:#fff}.variant-02 .statement-panel h2,.variant-02 .statement-panel p{color:#fff}.variant-02 .contact-form-panel,.variant-02 .routine-card{border-radius:0}
body.variant-02 .legal-hero{background:linear-gradient(135deg,#13243A,#243B57);color:#fff}body.variant-02 .legal-hero h1,body.variant-02 .legal-hero p,body.variant-02 .legal-hero .eyebrow{color:#fff}body.variant-02 .formula-card.formula-card-dark .formula-index{color:#E8C989!important}body.variant-02 .formula-card.formula-card-dark p{color:#D8E0E8!important}body.variant-02 .statement-panel p,body.variant-02 .statement-panel h2,body.variant-02 .statement-panel .text-link,body.variant-02 .statement-panel .text-link span{color:#FFFFFF!important}body.variant-02 .bg-apricot .split-feature p,body.variant-02 .bg-apricot .split-feature h2,body.variant-02 .bg-apricot .split-feature .product-kicker{color:#13243A!important}

