:root {
  color-scheme: light;
  --ink: #11120f;
  --ink-2: #252720;
  --paper: #faf4ea;
  --paper-2: #f1eadf;
  --white: #ffffff;
  --muted: #616458;
  --muted-2: #8b8c82;
  --line: rgba(17, 18, 15, 0.14);
  --line-strong: rgba(17, 18, 15, 0.28);
  --jade: #165c4b;
  --mint: #c8f4df;
  --acid: #d7ff4f;
  --coral: #ff6f59;
  --cobalt: #315bd8;
  --lilac: #d9cbff;
  --amber: #d4942e;
  --rose: #f6d9d2;
  --sky: #dfe9ff;
  --shadow: 0 24px 72px rgba(17, 18, 15, 0.16);
  --radius: 8px;
  --max: 1180px;
}

/* Final QA accessibility overrides */
.consent-row {
  display: grid !important;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  padding: 12px;
  border: 1px solid rgba(244, 239, 230, 0.16);
  border-radius: var(--radius);
  background: rgba(244, 239, 230, 0.06);
  color: rgba(244, 239, 230, 0.72);
  font-size: 13px;
  font-weight: 650;
  line-height: 1.55;
}

.consent-row input {
  width: 18px !important;
  height: 18px !important;
  min-height: 0 !important;
  margin: 2px 0 0 !important;
  padding: 0 !important;
  accent-color: var(--lime);
}

.consent-row a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.header-cta,
.button,
.lead-form button,
.mobile-sticky-cta {
  min-height: 44px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 13px max(18px, calc((100vw - var(--max)) / 2));
  border-bottom: 1px solid rgba(17, 18, 15, 0.12);
  background: rgba(250, 244, 234, 0.88);
  backdrop-filter: blur(18px);
}

.brand,
.nav-links,
.hero-actions,
.button,
.contact-row {
  display: flex;
  align-items: center;
}

.brand {
  gap: 12px;
  min-width: 230px;
  font-weight: 950;
  line-height: 1.08;
}

.brand small {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 750;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--acid);
  font-size: 12px;
  font-weight: 950;
  box-shadow: inset 0 -3px 0 var(--jade);
}

.nav-links {
  gap: 26px;
  color: var(--ink-2);
  font-size: 14px;
  font-weight: 850;
}

.nav-links a,
.site-footer a {
  transition: color 160ms ease;
}

.nav-links a:hover,
.site-footer a:hover {
  color: var(--jade);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 9px 16px;
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--white);
  font-size: 14px;
  font-weight: 900;
}

.hero {
  position: relative;
  min-height: min(560px, calc(100svh - 132px));
  overflow: hidden;
  isolation: isolate;
  border-bottom: 1px solid var(--line);
  background: #ece6dc;
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-image {
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 48%;
  filter: saturate(1.18) contrast(1.05);
}

.hero-overlay {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(250, 244, 234, 0.98) 0%, rgba(250, 244, 234, 0.9) 42%, rgba(250, 244, 234, 0.56) 68%, rgba(250, 244, 234, 0.12) 100%),
    linear-gradient(180deg, rgba(250, 244, 234, 0.12) 0%, rgba(250, 244, 234, 0.58) 100%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 0.44fr);
  gap: 46px;
  align-items: center;
  width: min(100% - 36px, var(--max));
  margin: 0 auto;
  padding: 46px 0 38px;
}

.hero-content {
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 13px;
  color: var(--jade);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
  overflow-wrap: break-word;
}

h1 {
  max-width: 760px;
  margin-bottom: 20px;
  font-size: 62px;
  font-weight: 950;
  line-height: 1.02;
}

h2 {
  margin-bottom: 18px;
  font-size: 44px;
  font-weight: 950;
  line-height: 1.08;
}

h3 {
  margin-bottom: 10px;
  font-size: 21px;
  font-weight: 900;
  line-height: 1.22;
}

.hero-copy {
  max-width: 660px;
  margin-bottom: 0;
  color: var(--ink-2);
  font-size: 18px;
  font-weight: 520;
  line-height: 1.72;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 12px;
  margin: 24px 0 18px;
}

.button {
  justify-content: center;
  min-height: 54px;
  padding: 14px 22px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  font-size: 15px;
  font-weight: 950;
  line-height: 1.1;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease, color 160ms ease, box-shadow 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--ink);
  color: var(--white);
  box-shadow: 0 16px 36px rgba(17, 18, 15, 0.22);
}

.button-primary:hover {
  background: #000000;
}

.button-secondary {
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.74);
  color: var(--ink);
}

.button-secondary:hover {
  border-color: var(--ink);
  background: var(--white);
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 690px;
  margin: 0;
}

.hero-facts div {
  min-height: 88px;
  padding: 14px 15px;
  border: 1px solid rgba(17, 18, 15, 0.15);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 12px 28px rgba(17, 18, 15, 0.06);
}

.hero-facts div:nth-child(2) {
  background: rgba(200, 244, 223, 0.82);
}

.hero-facts div:nth-child(3) {
  background: rgba(217, 203, 255, 0.78);
}

.hero-facts dt {
  color: var(--ink);
  font-size: 25px;
  font-weight: 950;
  line-height: 1;
}

.hero-facts dd {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.hero-spec {
  align-self: end;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  background: rgba(17, 18, 15, 0.9);
  color: var(--white);
  box-shadow: var(--shadow);
}

.spec-kicker {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 7px 9px;
  border-radius: var(--radius);
  background: var(--acid);
  color: var(--ink);
  font-size: 11px;
  font-weight: 950;
}

.hero-spec h2 {
  margin-bottom: 22px;
  font-size: 30px;
  line-height: 1.08;
}

.hero-spec dl {
  display: grid;
  gap: 14px;
  margin: 0;
}

.hero-spec div {
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.hero-spec dt {
  margin-bottom: 4px;
  color: var(--mint);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.hero-spec dd {
  margin: 0;
  color: #eee7da;
  font-size: 14px;
  font-weight: 650;
}

.proof-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  width: min(100% - 36px, var(--max));
  margin: 0 auto;
  padding: 18px 0 10px;
}

.proof-strip span {
  flex: 0 1 auto;
  padding: 9px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--ink-2);
  font-size: 13px;
  font-weight: 850;
}

.proof-strip span:nth-child(2n) {
  background: var(--mint);
}

.proof-strip span:nth-child(3n) {
  background: var(--rose);
}

.proof-strip span:nth-child(5n) {
  background: var(--lilac);
}

.desk-section {
  padding-top: 82px;
}

.desk-intro {
  max-width: 960px;
  margin-bottom: 34px;
}

.desk-intro h2 {
  max-width: 940px;
}

.desk-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 14px;
}

.desk-card {
  min-height: 320px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 18px 40px rgba(17, 18, 15, 0.06);
}

.desk-card span {
  display: inline-flex;
  margin-bottom: 54px;
  padding: 7px 9px;
  border-radius: var(--radius);
  background: var(--mint);
  color: var(--jade);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.desk-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 15px;
}

.desk-card-dark {
  background: var(--ink);
  color: var(--white);
}

.desk-card-dark span {
  background: var(--acid);
  color: var(--ink);
}

.desk-card-dark p {
  color: #d1cabf;
}

.desk-card-accent {
  background: var(--rose);
}

.desk-card-accent span {
  background: var(--ink);
  color: var(--white);
}

.deliverable-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 14px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.deliverable-strip div {
  display: grid;
  gap: 8px;
  min-height: 116px;
  padding: 22px;
  background: var(--white);
}

.deliverable-strip div:nth-child(2) {
  background: var(--mint);
}

.deliverable-strip div:nth-child(3) {
  background: var(--lilac);
}

.deliverable-strip div:nth-child(4) {
  background: var(--ink);
  color: var(--white);
}

.deliverable-strip strong {
  color: var(--coral);
  font-size: 13px;
  font-weight: 950;
}

.deliverable-strip span {
  font-size: 18px;
  font-weight: 950;
}

.section {
  width: min(100% - 36px, var(--max));
  margin: 0 auto;
  padding: 92px 0;
}

.section-heading {
  max-width: 850px;
  margin-bottom: 34px;
}

.section-heading p,
.split-heading > p,
.process-copy p,
.kit-copy p,
.rfq-copy p {
  color: var(--muted);
  font-size: 17px;
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.72fr);
  gap: 34px;
  align-items: end;
  max-width: none;
}

.formula-section {
  padding-top: 82px;
}

.formula-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.formula-grid article {
  min-height: 290px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 18px 40px rgba(17, 18, 15, 0.06);
}

.formula-grid article:nth-child(1) {
  border-top: 6px solid var(--coral);
}

.formula-grid article:nth-child(2) {
  border-top: 6px solid var(--cobalt);
}

.formula-grid article:nth-child(3) {
  border-top: 6px solid var(--jade);
}

.formula-grid span {
  display: inline-flex;
  margin-bottom: 26px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.formula-grid p,
.product-card p,
.compliance-grid p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 15px;
}

.ingredient-board {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.ingredient-board div {
  min-height: 172px;
  padding: 24px;
  background: var(--ink);
  color: var(--white);
}

.ingredient-board div:nth-child(2) {
  background: var(--jade);
}

.ingredient-board div:nth-child(3) {
  background: #2a3270;
}

.ingredient-board b {
  display: block;
  margin-bottom: 18px;
  color: var(--acid);
  font-size: 19px;
  font-weight: 950;
}

.ingredient-board span {
  display: block;
  margin-top: 8px;
  color: #efe9dc;
  font-size: 14px;
  font-weight: 750;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.product-card {
  display: grid;
  grid-template-rows: 216px 1fr;
  min-height: 470px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 18px 40px rgba(17, 18, 15, 0.06);
}

.product-card img {
  width: 100%;
  height: 216px;
  object-fit: cover;
}

.product-card > div:not(.product-visual) {
  padding: 23px;
}

.product-card span {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 6px 9px;
  border-radius: var(--radius);
  background: var(--mint);
  color: var(--jade);
  font-size: 12px;
  font-weight: 950;
}

.accent-coral span {
  background: var(--rose);
  color: #b43e2c;
}

.accent-blue span {
  background: var(--sky);
  color: var(--cobalt);
}

.accent-amber span {
  background: #f6e0b5;
  color: #8a5a08;
}

.product-visual {
  display: grid;
  place-items: center;
  height: 216px;
  text-align: center;
}

.product-visual strong {
  display: block;
  font-size: 58px;
  font-weight: 950;
  line-height: 1;
}

.product-visual small {
  display: block;
  margin-top: 8px;
  font-size: 14px;
  font-weight: 950;
}

.product-visual-blue {
  background:
    linear-gradient(135deg, #dfe9ff 0%, #ffffff 54%, #c8f4df 100%);
  color: #17376e;
}

.product-visual-amber {
  background:
    linear-gradient(135deg, #f9dd9d 0%, #ffffff 58%, #f6d9d2 100%);
  color: #6f4810;
}

.engagement-section {
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.engagement-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(420px, 1fr);
  gap: 42px;
  align-items: start;
}

.engagement-copy {
  position: sticky;
  top: 92px;
}

.engagement-copy p {
  color: var(--muted);
  font-size: 17px;
}

.engagement-grid {
  display: grid;
  gap: 14px;
}

.engagement-grid article {
  display: grid;
  grid-template-columns: 112px minmax(0, 0.48fr) minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  min-height: 134px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.engagement-grid article:nth-child(2) {
  background: var(--mint);
}

.engagement-grid article:nth-child(3) {
  background: var(--lilac);
}

.engagement-grid span {
  display: inline-flex;
  justify-content: center;
  padding: 8px 10px;
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--white);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.engagement-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.process-band {
  background: var(--ink);
  color: var(--white);
}

.process-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(430px, 1fr);
  gap: 48px;
  align-items: start;
}

.process-band .eyebrow {
  color: var(--acid);
}

.process-copy p {
  color: #d1cabf;
}

.process-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  list-style: none;
}

.process-list li {
  display: grid;
  grid-template-columns: 56px minmax(0, 0.42fr) minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  min-height: 108px;
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.process-list span {
  color: var(--mint);
  font-size: 13px;
  font-weight: 950;
}

.process-list strong {
  font-size: 18px;
  font-weight: 950;
}

.process-list p {
  margin: 0;
  color: #d1cabf;
  font-size: 15px;
}

.compliance-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.compliance-grid article {
  min-height: 260px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 18px 40px rgba(17, 18, 15, 0.05);
}

.compliance-grid article:nth-child(1) {
  background: var(--mint);
}

.compliance-grid article:nth-child(2) {
  background: var(--rose);
}

.compliance-grid article:nth-child(3) {
  background: var(--sky);
}

.compliance-grid article:nth-child(4) {
  background: var(--lilac);
}

.sample-kit {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.8fr);
  gap: 42px;
  align-items: center;
  padding-top: 36px;
}

.kit-media {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.kit-media img {
  width: 100%;
  aspect-ratio: 1.18 / 1;
  object-fit: cover;
}

.check-list {
  display: grid;
  gap: 11px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding: 13px 13px 13px 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink-2);
  font-weight: 800;
}

.check-list li::before {
  position: absolute;
  left: 14px;
  top: 15px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--coral);
  content: "";
}

.check-list li:nth-child(2)::before {
  background: var(--cobalt);
}

.check-list li:nth-child(3)::before {
  background: var(--jade);
}

.check-list li:nth-child(4)::before {
  background: var(--amber);
}

.rfq-section {
  background: var(--paper-2);
}

.rfq-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(420px, 0.92fr);
  gap: 46px;
  align-items: start;
}

.contact-row {
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.contact-row span {
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink-2);
  font-size: 13px;
  font-weight: 900;
}

.lead-form {
  display: grid;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 18px 52px rgba(17, 18, 15, 0.12);
}

.lead-form label {
  margin-bottom: 7px;
  color: var(--ink-2);
  font-size: 13px;
  font-weight: 950;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  min-height: 48px;
  margin: 0;
  padding: 12px 13px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: #fffdf8;
  color: var(--ink);
  outline: none;
}

.lead-form textarea {
  min-height: 124px;
  resize: vertical;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  border-color: var(--jade);
  box-shadow: 0 0 0 3px rgba(22, 92, 75, 0.14);
}

.lead-form [aria-invalid="true"] {
  border-color: var(--coral);
}

.error-message {
  min-height: 20px;
  margin: 5px 0 10px;
  color: #b43e2c;
  font-size: 13px;
  font-weight: 800;
}

.form-button {
  width: 100%;
  margin-top: 4px;
  background: var(--ink);
  color: var(--white);
}

.form-button:hover {
  background: #000000;
}

.form-note {
  margin: 12px 0 0;
  color: var(--muted-2);
  font-size: 13px;
}

.success-message {
  min-height: 22px;
  margin: 13px 0 0;
  color: var(--jade);
  font-size: 14px;
  font-weight: 900;
}

.mobile-sticky-cta {
  position: fixed;
  left: 14px;
  right: 14px;
  bottom: 14px;
  z-index: 60;
  display: none;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--white);
  font-weight: 950;
  box-shadow: var(--shadow);
}

.mobile-sticky-cta.is-visible {
  display: none;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: min(100% - 36px, var(--max));
  margin: 0 auto;
  padding: 28px 0 44px;
  color: var(--muted);
  font-size: 14px;
}

.site-footer p {
  margin: 0;
  color: var(--ink);
  font-weight: 950;
}

@media (max-width: 1040px) {
  .nav-links {
    display: none;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .hero-spec {
    max-width: 620px;
  }

  h1 {
    font-size: 52px;
  }

  h2 {
    font-size: 38px;
  }

  .formula-grid,
  .ingredient-board,
  .desk-grid,
  .deliverable-strip,
  .engagement-inner,
  .process-inner,
  .rfq-inner {
    grid-template-columns: 1fr;
  }

  .product-grid,
  .compliance-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sample-kit {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  body {
    font-size: 15px;
  }

  .site-header {
    padding: 11px 15px;
  }

  .brand {
    min-width: 0;
    font-size: 14px;
  }

  .brand small {
    display: none;
  }

  .brand-mark {
    width: 36px;
    height: 36px;
    font-size: 11px;
  }

  .header-cta {
    min-height: 38px;
    padding: 8px 12px;
    font-size: 13px;
  }

  .hero {
    min-height: auto;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(250, 244, 234, 0.98) 0%, rgba(250, 244, 234, 0.93) 58%, rgba(250, 244, 234, 0.72) 100%),
      linear-gradient(90deg, rgba(250, 244, 234, 0.96), rgba(250, 244, 234, 0.5));
  }

  .hero-inner {
    width: min(100% - 30px, var(--max));
    padding: 38px 0 32px;
  }

  .eyebrow {
    font-size: 12px;
  }

  h1 {
    max-width: 520px;
    font-size: 38px;
    line-height: 1.04;
  }

  h2 {
    font-size: 31px;
    line-height: 1.12;
  }

  h3 {
    font-size: 20px;
  }

  .hero-copy {
    font-size: 16px;
  }

  .button {
    width: 100%;
    min-height: 52px;
  }

  .hero-facts {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 7px;
  }

  .hero-facts div {
    min-height: 78px;
    padding: 10px;
  }

  .hero-facts dt {
    font-size: 19px;
  }

  .hero-facts dd {
    font-size: 11px;
    line-height: 1.2;
  }

  .hero-spec {
    display: none;
    padding: 18px;
  }

  .hero-spec h2 {
    font-size: 25px;
  }

  .proof-strip {
    width: min(100% - 30px, var(--max));
    padding-top: 14px;
  }

  .section {
    width: min(100% - 30px, var(--max));
    padding: 68px 0;
  }

  .split-heading {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .section-heading {
    margin-bottom: 26px;
  }

  .formula-grid,
  .ingredient-board,
  .desk-grid,
  .deliverable-strip,
  .product-grid,
  .compliance-grid {
    grid-template-columns: 1fr;
  }

  .formula-grid article,
  .ingredient-board div,
  .desk-card,
  .compliance-grid article {
    min-height: auto;
  }

  .desk-card span {
    margin-bottom: 26px;
  }

  .deliverable-strip div {
    min-height: auto;
  }

  .engagement-copy {
    position: static;
  }

  .engagement-grid article {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .engagement-grid span {
    width: fit-content;
  }

  .product-card {
    grid-template-rows: 190px 1fr;
    min-height: auto;
  }

  .product-card img,
  .product-visual {
    height: 190px;
  }

  .process-list li {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 10px 14px;
  }

  .process-list p {
    grid-column: 2;
  }

  .lead-form {
    padding: 20px;
  }

  .mobile-sticky-cta.is-visible {
    display: flex;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
    padding-bottom: 88px;
  }
}

@media (max-width: 420px) {
  .site-header {
    gap: 10px;
  }

  .brand {
    font-size: 13px;
  }

  h1 {
    font-size: 34px;
  }

  h2 {
    font-size: 28px;
  }

  .hero-actions {
    margin-top: 22px;
  }

  .contact-row span {
    width: 100%;
  }
}

/* Final QA accessibility overrides - terminal priority */
.consent-row {
  display: grid !important;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  padding: 12px;
  border: 1px solid rgba(244, 239, 230, 0.16);
  border-radius: var(--radius);
  background: rgba(244, 239, 230, 0.06);
  color: rgba(244, 239, 230, 0.72);
  font-size: 13px;
  font-weight: 650;
  line-height: 1.55;
}

.consent-row input {
  width: 18px !important;
  height: 18px !important;
  min-height: 0 !important;
  margin: 2px 0 0 !important;
  padding: 0 !important;
  accent-color: var(--lime);
}

.consent-row a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.header-cta,
.button,
.lead-form button,
.mobile-sticky-cta {
  min-height: 44px;
}
