:root {
  --rose-50: #fff7f8;
  --rose-100: #f7e7ee;
  --rose-200: #efc4d2;
  --plum-950: #250b13;
  --plum-900: #35101c;
  --plum-800: #56192e;
  --berry: #9f275a;
  --paper: #fffdf9;
  --ink: #241217;
  --muted: #72535d;
  --taupe: #d8c7bc;
  --sand: #f0e2d3;
  --utopia-ink: #000000;
  --utopia-white: #ffffff;
  --utopia-yellow: #effb11;
  --line: rgba(53, 16, 28, 0.16);
  --shadow: 0 22px 70px rgba(53, 16, 28, 0.14);
  --radius: 8px;
  --radius-sm: 6px;
  --photo-ratio: 339 / 450;
  --max: 1240px;
  --sans: "Open Sauce One", "Open Sauce Sans", "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mono: "Roboto Mono", "SFMono-Regular", Consolas, monospace;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 116px;
}

body {
  margin: 0;
  background: var(--rose-50);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

body.audit-on { background: linear-gradient(180deg, var(--utopia-white), var(--rose-50) 360px); }
body.drawer-open { overflow: hidden; }

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

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

button,
input { font: inherit; }
button { cursor: pointer; }

:focus-visible {
  outline: 3px solid var(--utopia-yellow);
  outline-offset: 4px;
}

.skip-link {
  position: absolute;
  top: -80px;
  left: 16px;
  z-index: 1000;
  padding: 10px 14px;
  background: var(--utopia-ink);
  color: white;
  border-radius: 999px;
}

.skip-link:focus { top: 16px; }

.satire-strip {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  padding: 8px 16px;
  background: var(--plum-950);
  color: var(--rose-100);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0;
  text-align: center;
}

.satire-strip span + span::before {
  content: "-";
  margin-right: 18px;
  color: var(--rose-200);
}

.ticker {
  overflow: hidden;
  background: var(--rose-200);
  border-bottom: 1px solid var(--line);
}

.ticker-track {
  display: flex;
  width: max-content;
  animation: ticker 48s linear infinite;
}

.ticker span {
  padding: 10px 0;
  white-space: nowrap;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0;
  color: var(--plum-800);
}

@keyframes ticker {
  to { transform: translateX(-50%); }
}

.site-nav {
  position: sticky;
  top: 0;
  z-index: 80;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 24px;
  padding: 16px max(18px, calc((100vw - var(--max)) / 2 + 18px));
  background: rgba(255, 253, 249, 0.88);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(22px);
}

.brand {
  font-weight: 900;
  font-size: 21px;
  letter-spacing: 0;
  color: var(--plum-900);
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 28px;
  font-size: 13px;
  font-weight: 800;
  color: var(--muted);
}

.nav-links a:hover { color: var(--plum-900); }

.nav-actions {
  display: flex;
  gap: 10px;
  align-items: center;
}

.audit-toggle,
.nav-cart {
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--plum-900);
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.audit-toggle {
  color: var(--utopia-ink);
  border-color: rgba(0, 0, 0, 0.28);
  transition: box-shadow .25s ease, background .25s ease;
}

body.audit-on .audit-toggle {
  background: var(--utopia-yellow);
  border-color: var(--utopia-ink);
  color: var(--utopia-ink);
  box-shadow: 0 0 0 4px rgba(239, 251, 17, .32);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--paper);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--plum-900);
  margin: 5px auto;
}

.section-inset {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(68px, 9vw, 112px) clamp(18px, 4vw, 42px);
}

.eyebrow {
  margin: 0 0 12px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--berry);
}

.utopia-eyebrow { color: var(--utopia-yellow); }

.section-heading {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 46px;
}

.section-heading.align-left {
  text-align: left;
  margin-left: 0;
}

.section-heading h2,
.audit-copy h2,
.science-copy h2,
.reveal-card h2 {
  margin: 0;
  font-size: 4.25rem;
  line-height: 1;
  letter-spacing: 0;
  color: var(--plum-900);
}

.section-heading p:not(.eyebrow),
.audit-copy p,
.science-copy p,
.reveal-card p {
  color: var(--muted);
  font-size: 18px;
  max-width: 680px;
}

.hero {
  position: relative;
  display: grid;
  align-items: end;
  min-height: max(540px, calc(100svh - 170px));
  overflow: hidden;
  color: white;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(27, 9, 14, .86) 0%, rgba(27, 9, 14, .62) 38%, rgba(27, 9, 14, .08) 78%),
    linear-gradient(0deg, rgba(27, 9, 14, .54) 0%, rgba(27, 9, 14, 0) 42%);
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  z-index: 0;
  margin: 0;
}

.hero-backdrop img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 54% 52%;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 250px;
  gap: 28px;
  align-items: end;
  padding-top: 48px;
  padding-bottom: 30px;
}

.hero .eyebrow { color: var(--rose-200); }

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

.hero-copy h1 {
  margin: 0;
  font-size: 6rem;
  line-height: .86;
  letter-spacing: 0;
  color: white;
}

.hero-subhead {
  margin: 22px 0 0;
  max-width: 660px;
  font-size: 1.8rem;
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: 0;
  color: var(--rose-100);
}

.hero-body {
  max-width: 560px;
  color: rgba(255,255,255,.78);
  font-size: 17px;
}

.hero-ctas,
.reveal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.btn {
  border: 0;
  border-radius: 999px;
  padding: 15px 22px;
  font-weight: 900;
  font-size: 13px;
  letter-spacing: 0;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
}

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

.btn.primary {
  background: var(--plum-900);
  color: white;
  box-shadow: 0 14px 30px rgba(27, 9, 14, .24);
}

.btn.ghost {
  background: var(--paper);
  color: var(--plum-900);
  border: 1px solid var(--line);
}

.btn.glow {
  background: var(--utopia-yellow);
  color: var(--utopia-ink);
  box-shadow: 0 0 0 4px rgba(239, 251, 17, .22);
}

.btn.ghost-light {
  background: rgba(255,255,255,.1);
  color: white;
  border: 1px solid rgba(255,255,255,.34);
}

.btn.quiet {
  background: transparent;
  color: var(--muted);
  border: 1px solid var(--line);
}

.btn.full { width: 100%; }

.micro-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.hero .micro-proof,
.hero .fineprint {
  display: none;
}

.micro-proof span {
  padding: 8px 11px;
  border: 1px solid rgba(255,255,255,.32);
  border-radius: 999px;
  background: rgba(255,255,255,.12);
  font-family: var(--mono);
  font-size: 11px;
  color: white;
}

.fineprint {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--muted);
}

.hero .fineprint { color: rgba(255,255,255,.64); }
.centered { text-align: center; }

.hero-receipt {
  margin: 0;
  padding: 18px;
  border-radius: var(--radius);
  background: rgba(255,253,249,.9);
  border: 1px solid rgba(255,255,255,.32);
  box-shadow: 0 18px 60px rgba(0,0,0,.18);
  backdrop-filter: blur(18px);
}

.receipt-label {
  margin: 0 0 12px;
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0;
  color: var(--berry);
}

.hero-receipt div {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.hero-receipt strong { color: var(--plum-900); }

.press-strip {
  padding: 28px 18px;
  background: var(--paper);
  border-block: 1px solid var(--line);
  text-align: center;
}

.press-strip p {
  margin: 0 0 14px;
  font-family: var(--mono);
  color: var(--berry);
  font-size: 11px;
  text-transform: uppercase;
}

.press-strip div {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px 42px;
  font-weight: 800;
  color: var(--plum-800);
}

.press-strip small {
  display: block;
  margin-top: 14px;
  color: var(--muted);
  font-family: var(--mono);
}

.product-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(360px, .88fr);
  gap: clamp(28px, 5vw, 68px);
  align-items: start;
}

.gallery {
  position: sticky;
  top: 96px;
}

.gallery-main {
  aspect-ratio: var(--photo-ratio);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.gallery-main img {
  height: 100%;
  object-fit: contain;
  width: 100%;
}

.gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
  margin-top: 12px;
}

.gallery-thumbs button {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  overflow: hidden;
  padding: 0;
  background: var(--paper);
  opacity: .62;
}

.gallery-thumbs button.active {
  opacity: 1;
  border-color: var(--berry);
  box-shadow: 0 0 0 2px rgba(159, 39, 90, .14);
}

.gallery-thumbs img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.pdp-card {
  padding: clamp(24px, 4vw, 42px);
  border-radius: var(--radius);
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.pdp-card h3 {
  margin: 0;
  font-size: 4rem;
  line-height: 1;
  letter-spacing: 0;
  color: var(--plum-900);
}

.price {
  font-size: 30px;
  font-weight: 900;
  margin: 12px 0;
}

.rating {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  padding: 12px 0 22px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 12px;
}

.rating span,
.rating b { color: var(--plum-900); }
.rating em { font-style: normal; }

.pdp-lede {
  font-size: 22px;
  font-weight: 900;
  color: var(--plum-900);
}

.pdp-card p { color: var(--muted); }
.inline { border-bottom: 1px dashed currentColor; }

.ingredient-cards {
  display: grid;
  gap: 0;
  margin: 28px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.ingredient-cards div {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 4px 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.ingredient-cards div:last-child { border-bottom: 0; }

.ingredient-cards small {
  grid-row: span 2;
  font-family: var(--mono);
  color: var(--berry);
  font-size: 10px;
  text-transform: uppercase;
}

.ingredient-cards strong {
  display: block;
  color: var(--plum-900);
}

.ingredient-cards span {
  color: var(--muted);
  font-size: 12px;
}

.visual-strip {
  display: grid;
  grid-template-columns: 1.08fr .92fr 1fr;
  gap: 14px;
  padding-top: 24px;
}

.visual-strip figure {
  margin: 0;
  aspect-ratio: var(--photo-ratio);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--paper);
  box-shadow: 0 16px 42px rgba(53, 16, 28, .08);
}

.visual-strip figure:nth-child(2) { margin-top: 54px; }
.visual-strip figure:nth-child(3) { margin-top: 24px; }

.visual-strip img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  background: var(--paper);
}

.audit-section { padding-top: 44px; }

.audit-panel {
  display: grid;
  grid-template-columns: 1fr .92fr;
  gap: 28px;
  align-items: stretch;
  padding: clamp(24px, 4vw, 46px);
  border-radius: var(--radius);
  background: var(--utopia-ink);
  color: white;
  border: 1px solid var(--utopia-ink);
  box-shadow: 0 28px 70px rgba(0,0,0,.18);
}

.utopia-lockup {
  display: flex;
  align-items: flex-end;
  gap: 14px;
  margin-bottom: 34px;
}

.utopia-lockup span {
  max-width: 420px;
  color: var(--utopia-white);
  font-size: clamp(42px, 6vw, 74px);
  font-weight: 900;
  line-height: .86;
  text-transform: uppercase;
}

.utopia-lockup i {
  width: clamp(20px, 3vw, 36px);
  aspect-ratio: 1;
  background: var(--utopia-yellow);
  display: block;
  flex: 0 0 auto;
  margin-bottom: .1em;
}

.audit-copy h2 {
  color: white;
  text-transform: uppercase;
}

.audit-copy p { color: rgba(255,255,255,.76); }

.scanner-card {
  border-radius: var(--radius);
  padding: 20px;
  background: var(--utopia-white);
  border: 1px solid var(--utopia-white);
  color: var(--utopia-ink);
}

.scanner-brand {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 18px;
  padding: 0 0 18px;
  border-bottom: 2px solid var(--utopia-ink);
}

.scanner-brand strong {
  max-width: 260px;
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 900;
  line-height: .86;
  text-transform: uppercase;
  color: var(--utopia-ink);
}

.scanner-brand span {
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  color: var(--utopia-ink);
  background: var(--utopia-yellow);
  padding: 5px 7px;
}

.scan-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(0,0,0,.18);
}

.scan-line:last-child { border-bottom: 0; }
.scan-line span { color: var(--utopia-ink); font-weight: 900; }

.scan-line em {
  font-style: normal;
  color: var(--utopia-ink);
  background: var(--utopia-yellow);
  font-family: var(--mono);
  font-size: 12px;
  text-align: right;
  padding: 4px 7px;
}

.claims-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 22px;
}

.claim-card {
  min-height: 250px;
  padding: 22px;
  border-radius: var(--radius);
  background: var(--paper);
  border: 1px solid var(--line);
  transition: transform .2s ease;
}

.claim-card:hover { transform: translateY(-5px); }

.claim-card span {
  font-family: var(--mono);
  color: var(--berry);
  font-size: 12px;
}

.claim-card h3 {
  margin: 38px 0 10px;
  font-size: 26px;
  line-height: 1;
  letter-spacing: 0;
  color: var(--plum-900);
}

.claim-card p {
  color: var(--muted);
  font-size: 14px;
}

body.audit-on .claim-check {
  position: relative;
  outline: 2px solid var(--utopia-yellow);
  box-shadow: 0 0 0 5px rgba(239, 251, 17, .26);
  border-radius: var(--radius-sm);
}

body.audit-on .claim-check::after {
  content: attr(data-status);
  position: absolute;
  left: 8px;
  top: calc(100% + 6px);
  z-index: 30;
  white-space: nowrap;
  max-width: min(320px, 80vw);
  overflow: hidden;
  text-overflow: ellipsis;
  background: var(--utopia-ink);
  color: var(--utopia-yellow);
  padding: 6px 9px;
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 10px;
  box-shadow: 0 8px 24px rgba(0,0,0,.18);
}

.audit-dock {
  position: fixed;
  left: 20px;
  bottom: 20px;
  z-index: 70;
  width: min(340px, calc(100vw - 40px));
  padding: 16px;
  border-radius: var(--radius);
  background: rgba(0,0,0,.94);
  color: white;
  border: 1px solid var(--utopia-yellow);
  box-shadow: 0 18px 54px rgba(0,0,0,.32);
  transform: translateY(30px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease, transform .25s ease;
  backdrop-filter: blur(18px);
}

body.audit-on .audit-dock {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.audit-dock div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--mono);
  color: var(--utopia-yellow);
  font-size: 12px;
  text-transform: uppercase;
}

.audit-dock button {
  border: 0;
  background: transparent;
  color: white;
  font-size: 24px;
  line-height: 1;
}

.audit-dock p {
  margin: 10px 0 0;
  color: rgba(255,255,255,.76);
  font-size: 13px;
}

.science-section {
  display: grid;
  grid-template-columns: minmax(0, .96fr) minmax(320px, 470px);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}

.science-copy {
  position: sticky;
  top: 112px;
}

.science-copy h2 { font-size: 5.25rem; }

.science-grid {
  display: grid;
  gap: 20px;
  width: 100%;
  max-width: 470px;
  justify-self: end;
}

.science-grid figure {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.science-grid img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: var(--photo-ratio);
  object-fit: contain;
  object-position: center;
  background: var(--paper);
}

.science-grid figcaption {
  padding: 14px 18px;
  font-family: var(--mono);
  color: var(--muted);
  font-size: 11px;
}

.study-card {
  border-radius: var(--radius);
  background: var(--paper);
  border: 1px solid var(--line);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.study-header {
  padding: 18px 22px;
  background: var(--plum-900);
  color: white;
  font-family: var(--mono);
  text-transform: uppercase;
  font-size: 11px;
}

.study-card dl { margin: 0; }

.study-card dl div {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  padding: 16px 22px;
  border-bottom: 1px solid var(--line);
}

.study-card dt {
  font-family: var(--mono);
  color: var(--muted);
  font-size: 12px;
}

.study-card dd {
  margin: 0;
  font-weight: 800;
  color: var(--plum-900);
  text-align: right;
}

.study-card .result { background: var(--rose-100); }
.study-card .result dd { color: var(--berry); }

.study-card p {
  margin: 0;
  padding: 18px 22px 24px;
  color: var(--muted);
  font-size: 14px;
}

.cost-section { padding-top: 40px; }

.cost-stack {
  display: grid;
  gap: 14px;
  max-width: 900px;
  margin: 0 auto;
}

.cost-stack div {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  padding: 18px 20px;
  display: grid;
  grid-template-columns: 150px 90px 1fr;
  gap: 18px;
  align-items: center;
}

.cost-stack div::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--w);
  background: linear-gradient(90deg, rgba(159,39,90,.22), rgba(10,106,90,.16));
  z-index: 0;
}

.cost-stack span,
.cost-stack strong,
.cost-stack em {
  position: relative;
  z-index: 1;
}

.cost-stack span {
  font-weight: 900;
  color: var(--plum-900);
}

.cost-stack strong {
  color: var(--berry);
  font-size: 24px;
}

.cost-stack em {
  font-style: normal;
  color: var(--muted);
}

.clean-section {
  background: var(--paper);
  max-width: none;
  padding-left: max(18px, calc((100vw - var(--max)) / 2 + 42px));
  padding-right: max(18px, calc((100vw - var(--max)) / 2 + 42px));
}

.clean-layout {
  display: grid;
  grid-template-columns: .85fr 1fr;
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  max-width: var(--max);
  margin: 0 auto;
}

.clean-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--rose-50);
}

.clean-grid span {
  padding: 26px 18px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-family: var(--mono);
  color: var(--plum-900);
  text-align: center;
}

.clean-grid span::before {
  content: "\00d7  ";
  color: var(--berry);
}

.clean-grid span:nth-child(3n) { border-right: 0; }
.clean-grid span:nth-last-child(-n+3) { border-bottom: 0; }

.awards-section {
  background: linear-gradient(180deg, var(--rose-50), var(--sand));
  max-width: none;
  padding-left: max(18px, calc((100vw - var(--max)) / 2 + 42px));
  padding-right: max(18px, calc((100vw - var(--max)) / 2 + 42px));
}

.award-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  max-width: var(--max);
  margin: 0 auto;
}

.award-grid article {
  padding: 24px;
  min-height: 260px;
  border-radius: var(--radius);
  background: rgba(255,253,249,.78);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.award-grid span {
  font-family: var(--mono);
  color: var(--berry);
  text-transform: uppercase;
  font-size: 11px;
}

.award-grid h3 {
  margin: 60px 0 10px;
  font-size: 27px;
  line-height: 1;
  letter-spacing: 0;
  color: var(--plum-900);
}

.award-grid p {
  margin: 0;
  color: var(--muted);
}

.social-proof { padding-top: 70px; }

.quote-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.quote-row blockquote {
  margin: 0;
  padding: 28px;
  border-radius: var(--radius);
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: 0 12px 38px rgba(53,16,28,.08);
}

.quote-row p {
  margin: 0 0 24px;
  font-size: 18px;
  line-height: 1.45;
  color: var(--plum-900);
  font-weight: 700;
}

.quote-row cite {
  font-family: var(--mono);
  color: var(--muted);
  font-style: normal;
  font-size: 12px;
}

.faq-section {
  background: var(--paper);
  max-width: none;
  padding-left: max(18px, calc((100vw - 900px) / 2));
  padding-right: max(18px, calc((100vw - 900px) / 2));
}

.faq-list {
  max-width: 900px;
  margin: 0 auto;
  border-top: 1px solid var(--line);
}

details { border-bottom: 1px solid var(--line); }

summary {
  cursor: pointer;
  padding: 24px 0;
  font-weight: 900;
  font-size: 22px;
  list-style: none;
  color: var(--plum-900);
}

summary::-webkit-details-marker { display: none; }

details p {
  margin: 0;
  padding: 0 0 28px;
  color: var(--muted);
  max-width: 680px;
}

.utopia-reveal {
  max-width: none;
  padding-left: clamp(18px, 5vw, 64px);
  padding-right: clamp(18px, 5vw, 64px);
  background: var(--utopia-ink);
}

.reveal-card {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(34px, 6vw, 70px);
  border-radius: var(--radius);
  background: var(--utopia-ink);
  color: white;
  border: 1px solid rgba(255,255,255,.18);
  box-shadow: 0 40px 90px rgba(0,0,0,.25);
}

.utopia-logo {
  width: min(620px, 100%);
  height: auto;
  margin: 0 0 clamp(28px, 5vw, 54px);
}

.reveal-card h2 {
  color: white;
  max-width: 900px;
  text-transform: uppercase;
}

.reveal-card p { color: rgba(255,255,255,.78); }
.reveal-card .fineprint { color: rgba(255,255,255,.6); }

.cart-drawer {
  position: fixed;
  inset: 0;
  z-index: 200;
  pointer-events: none;
}

.cart-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(24,10,15,.45);
  opacity: 0;
  transition: opacity .25s ease;
}

.cart-panel {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: min(480px, 100vw);
  padding: 28px;
  background: var(--paper);
  box-shadow: -24px 0 70px rgba(0,0,0,.18);
  transform: translateX(100%);
  transition: transform .28s ease;
  overflow-y: auto;
}

body.drawer-open .cart-drawer { pointer-events: auto; }
body.drawer-open .cart-backdrop { opacity: 1; }
body.drawer-open .cart-panel { transform: translateX(0); }

.cart-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--rose-50);
  font-size: 26px;
  color: var(--plum-900);
}

.cart-panel h2 {
  margin: 0 0 20px;
  font-size: 42px;
  line-height: 1;
  letter-spacing: 0;
  color: var(--plum-900);
}

.cart-item {
  display: grid;
  grid-template-columns: 74px 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--rose-50);
}

.cart-item img {
  width: 74px;
  height: 74px;
  object-fit: cover;
  border-radius: var(--radius-sm);
}

.cart-item h3 {
  margin: 0;
  color: var(--plum-900);
  line-height: 1.1;
}

.cart-item p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.cart-item strong { color: var(--berry); }

.cart-totals {
  margin: 22px 0;
  border-top: 1px solid var(--line);
}

.cart-totals div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.cart-totals dt {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 12px;
}

.cart-totals dd {
  margin: 0;
  text-align: right;
  font-weight: 800;
  color: var(--plum-900);
}

.cart-warning {
  padding: 18px;
  border-radius: var(--radius);
  background: var(--plum-900);
  color: white;
  margin-bottom: 16px;
}

.cart-warning h3 {
  margin: 0 0 8px;
  font-size: 23px;
}

.cart-warning p {
  margin: 0;
  color: rgba(255,255,255,.72);
}

.cart-panel .btn + .btn { margin-top: 10px; }

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  padding: 34px max(18px, calc((100vw - var(--max)) / 2 + 18px));
  background: #1c0a10;
  color: rgba(255,255,255,.68);
}

.site-footer strong {
  display: block;
  color: white;
  font-size: 22px;
}

.site-footer span,
.site-footer p {
  font-family: var(--mono);
  font-size: 11px;
}

.site-footer p {
  margin: 0;
  max-width: 560px;
}

@media (min-width: 1200px) {
  .hero-copy h1 { font-size: 6.6rem; }
}

@media (max-width: 1120px) {
  .hero-copy h1 { font-size: 5.5rem; }
  .hero-subhead { font-size: 1.55rem; }
}

@media (max-width: 980px) {
  .site-nav {
    grid-template-columns: auto 1fr auto;
    gap: 12px;
  }

  .menu-toggle { display: block; }

  .nav-links {
    position: absolute;
    top: calc(100% + 8px);
    left: 12px;
    right: 12px;
    display: none;
    flex-direction: column;
    gap: 0;
    padding: 12px;
    border-radius: var(--radius);
    background: var(--paper);
    box-shadow: var(--shadow);
    border: 1px solid var(--line);
  }

  .nav-links.open { display: flex; }
  .nav-links a { padding: 14px; }
  .nav-actions { grid-column: 2; justify-content: end; }

  .hero {
    min-height: auto;
  }

  .hero::after {
    background:
      linear-gradient(180deg, rgba(27, 9, 14, .22) 0%, rgba(27, 9, 14, .84) 58%, rgba(27, 9, 14, .9) 100%);
  }

  .hero-backdrop img { object-position: 55% 22%; }

  .hero-content {
    grid-template-columns: 1fr;
    padding-top: 300px;
    padding-bottom: 42px;
  }

  .hero-receipt { max-width: 360px; }

  .hero,
  .product-layout,
  .audit-panel,
  .science-section,
  .clean-layout {
    grid-template-columns: 1fr;
  }

  .science-copy,
  .gallery {
    position: static;
  }

  .claims-grid,
  .award-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .quote-row,
  .visual-strip {
    grid-template-columns: 1fr;
  }

  .visual-strip figure,
  .visual-strip figure:nth-child(2),
  .visual-strip figure:nth-child(3) {
    margin-top: 0;
  }
}

@media (max-width: 640px) {
  html { scroll-padding-top: 86px; }

  .satire-strip {
    gap: 5px;
    padding: 7px 12px;
  }

  .satire-strip span { width: 100%; }
  .satire-strip span + span::before { display: none; }

  .ticker span {
    font-size: 11px;
    padding: 8px 0;
  }

  .site-nav {
    padding: 12px 14px;
    gap: 8px;
  }

  .brand { font-size: 18px; }
  .nav-actions { gap: 6px; }

  .audit-toggle,
  .nav-cart {
    padding: 9px 10px;
    font-size: 11px;
  }

  .hero-content {
    padding-top: 132px;
    padding-bottom: 28px;
  }

  .hero-copy h1 {
    font-size: 3.2rem;
    line-height: .9;
  }

  .hero-subhead {
    font-size: 1.25rem;
  }

  .hero-body,
  .section-heading p:not(.eyebrow),
  .audit-copy p,
  .science-copy p,
  .reveal-card p {
    font-size: 16px;
  }

  .section-heading h2,
  .audit-copy h2,
  .science-copy h2,
  .reveal-card h2 {
    font-size: 2.6rem;
  }

  .science-copy h2 { font-size: 3.1rem; }

  .pdp-card h3 {
    font-size: 3rem;
  }

  .hero-ctas,
  .reveal-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-receipt {
    display: none;
  }

  .hero-body {
    display: none;
  }

  .gallery-thumbs { grid-template-columns: repeat(3, 1fr); }

  .ingredient-cards div {
    grid-template-columns: 1fr;
  }

  .ingredient-cards small {
    grid-row: auto;
  }

  .claims-grid,
  .clean-grid,
  .award-grid {
    grid-template-columns: 1fr;
  }

  .clean-grid span {
    border-right: 0;
  }

  .clean-grid span:nth-last-child(-n+3) {
    border-bottom: 1px solid var(--line);
  }

  .clean-grid span:last-child {
    border-bottom: 0;
  }

  .cost-stack div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .science-grid img {
    height: auto;
    min-height: 0;
    aspect-ratio: var(--photo-ratio);
  }

  .scanner-brand,
  .scan-line {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
  }

  .scan-line em { text-align: left; }

  body.audit-on .claim-check::after {
    white-space: normal;
    border-radius: var(--radius-sm);
  }

  .cart-panel { padding: 22px; }

  .cart-panel h2 {
    font-size: 34px;
    padding-right: 46px;
  }

  .cart-item {
    grid-template-columns: 64px 1fr;
  }

  .cart-item strong {
    grid-column: 2;
  }
}

@media (max-width: 380px) {
  .hero-copy h1 { font-size: 2.85rem; }
  .section-heading h2,
  .audit-copy h2,
  .science-copy h2,
  .reveal-card h2 { font-size: 2.25rem; }
}

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