@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Playfair+Display:ital,wght@0,600;1,600&display=swap');

:root {
  --ink: #2e2529;
  --muted: #76666d;
  --paper: #fffaf7;
  --cream: #f8efe9;
  --pink: #edb8c1;
  --pink-soft: #f7dde1;
  --pink-hot: #d9758e;
  --cherry: #8c2f4c;
  --cherry-dark: #542032;
  --cacao: #5a342d;
  --line: rgba(88, 48, 61, .16);
  --white: #fff;
  --serif: 'Playfair Display', Georgia, serif;
  --sans: 'DM Sans', Arial, sans-serif;
  --shadow: 0 26px 80px rgba(84, 32, 50, .14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.55;
}
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -1;
  opacity: .18;
  pointer-events: none;
  background-image: radial-gradient(rgba(88, 32, 50, .18) .5px, transparent .5px);
  background-size: 8px 8px;
}
img { display: block; max-width: 100%; }
button, input { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; }
button { color: inherit; }
h1, h2, h3, p { margin-top: 0; }
h1, h2 {
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: -.05em;
  line-height: .95;
}
h1 em, h2 em {
  color: var(--cherry);
  font-weight: 600;
}
:focus-visible { outline: 3px solid #1969c7; outline-offset: 4px; }
.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  padding: 10px 14px;
  background: white;
  transform: translateY(-160%);
}
.skip-link:focus { transform: translateY(0); }

.top-ribbon {
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  padding: 8px 5vw;
  background: var(--cherry-dark);
  color: white;
  text-align: center;
  font-size: .72rem;
  letter-spacing: .11em;
}
.top-ribbon span { color: var(--pink); font-weight: 700; }
.top-ribbon strong { font-weight: 600; }
.top-ribbon a {
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.site-header {
  min-height: 76px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
  padding: 12px clamp(22px, 5vw, 78px);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 250, 247, .94);
  backdrop-filter: blur(16px);
  position: sticky;
  top: 0;
  z-index: 50;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  justify-self: start;
  text-decoration: none;
}
.brand img { width: 132px; height: auto; }
.brand span {
  padding-left: 12px;
  border-left: 1px solid var(--line);
  color: var(--cherry);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .18em;
}
.site-header nav { display: flex; gap: 28px; }
.site-header nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: .82rem;
  font-weight: 600;
}
.site-header nav a:hover { color: var(--cherry); }
.header-cta {
  justify-self: end;
  padding: 11px 20px;
  border-radius: 999px;
  background: var(--pink);
  text-decoration: none;
  font-size: .8rem;
  font-weight: 800;
}

.hero {
  min-height: 760px;
  display: grid;
  grid-template-columns: minmax(520px, .9fr) minmax(560px, 1.1fr);
  overflow: hidden;
  background: var(--pink);
}
.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(70px, 8vw, 126px) clamp(42px, 6vw, 104px);
  position: relative;
  z-index: 3;
}
.hero-copy::before {
  content: '';
  width: 160px;
  height: 160px;
  position: absolute;
  left: 4%;
  bottom: 4%;
  border: 1px solid rgba(46, 37, 41, .18);
  border-radius: 50%;
  pointer-events: none;
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  color: var(--cherry);
  font-size: .67rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.eyebrow > span {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: .56rem;
}
.hero h1 {
  max-width: 680px;
  margin-bottom: 28px;
  font-size: clamp(4.3rem, 7vw, 8rem);
}
.hero h1 em { color: var(--ink); }
.hero-lede {
  max-width: 620px;
  margin-bottom: 30px;
  color: rgba(46, 37, 41, .76);
  font-size: clamp(1.03rem, 1.35vw, 1.25rem);
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-bottom: 42px;
}
.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  padding: 14px 22px;
  border: 0;
  border-radius: 4px;
  text-decoration: none;
  font-size: .82rem;
  font-weight: 800;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-dark {
  background: var(--ink);
  color: white;
  box-shadow: 0 16px 35px rgba(46, 37, 41, .2);
}
.button-dark:hover { background: #171416; }
.button-pink {
  background: var(--pink);
  color: var(--ink);
  box-shadow: 0 16px 35px rgba(46, 37, 41, .11);
}
.text-link {
  font-size: .8rem;
  font-weight: 800;
  text-underline-offset: 5px;
}
.proof-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}
.proof-strip span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 11px;
  border: 1px solid rgba(46, 37, 41, .16);
  border-radius: 999px;
  background: rgba(255, 255, 255, .2);
  color: rgba(46, 37, 41, .7);
  font-size: .68rem;
}
.proof-strip b { color: var(--ink); }
.hero-visual {
  min-height: 760px;
  position: relative;
  overflow: hidden;
  background: var(--cream);
}
.hero-person {
  width: 100%;
  height: 100%;
  min-height: 760px;
  object-fit: cover;
  object-position: 58% center;
}
.hero-gradient {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, var(--pink) 0%, rgba(237, 184, 193, .38) 9%, transparent 26%),
    linear-gradient(0deg, rgba(84, 32, 50, .28), transparent 30%);
  pointer-events: none;
}
.hero-product {
  width: clamp(150px, 14vw, 235px);
  position: absolute;
  left: 5%;
  bottom: 4%;
  border: 7px solid rgba(255, 255, 255, .86);
  border-radius: 3px;
  box-shadow: 0 28px 42px rgba(64, 34, 31, .28);
  transform: rotate(-3deg);
}
.hero-stamp {
  width: 142px;
  aspect-ratio: 1;
  position: absolute;
  right: 5%;
  bottom: 5%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(255, 255, 255, .82);
  border-radius: 50%;
  background: rgba(237, 184, 193, .92);
  color: var(--ink);
  text-align: center;
  transform: rotate(7deg);
  box-shadow: var(--shadow);
}
.hero-stamp span {
  font-size: .55rem;
  font-weight: 800;
  letter-spacing: .12em;
}
.hero-stamp b {
  margin: 3px 0;
  font: 600 1.25rem/1 var(--serif);
}

.section-pad { padding: clamp(82px, 9vw, 144px) clamp(22px, 7vw, 116px); }
.section-heading {
  max-width: 960px;
  margin: 0 auto 56px;
  text-align: center;
}
.section-heading .eyebrow { justify-content: center; }
.section-heading h2 {
  margin-bottom: 22px;
  font-size: clamp(3rem, 5.6vw, 6.2rem);
}
.section-heading > p:last-child {
  max-width: 700px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 1rem;
}

.desire-manifesto {
  color: white;
  background: var(--cherry-dark);
}
.desire-manifesto .kicker {
  margin-bottom: 24px;
  color: var(--pink);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.desire-manifesto h2 {
  max-width: 1120px;
  margin-bottom: 55px;
  font-size: clamp(3.5rem, 6.3vw, 7rem);
}
.desire-manifesto h2 em { color: var(--pink); }
.manifesto-grid {
  max-width: 1160px;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(42px, 8vw, 120px);
  align-items: start;
}
.manifesto-lede {
  font: 600 clamp(1.65rem, 3vw, 3.1rem)/1.15 var(--serif);
  letter-spacing: -.025em;
}
.manifesto-copy {
  color: rgba(255, 255, 255, .72);
  font-size: 1rem;
}
.manifesto-copy strong { color: white; }
.truth-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 70px;
}
.truth-cards article {
  min-height: 260px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, .14);
  background: rgba(255, 255, 255, .055);
}
.truth-cards span {
  color: var(--pink);
  font-size: .64rem;
  letter-spacing: .16em;
}
.truth-cards h3 {
  margin: 52px 0 14px;
  font: 600 clamp(1.7rem, 2.4vw, 2.6rem)/1.02 var(--serif);
}
.truth-cards p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, .66);
  font-size: .84rem;
}

.comparison { background: var(--paper); }
.comparison-table {
  max-width: 1180px;
  margin: auto;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: white;
  box-shadow: var(--shadow);
}
.comparison-row {
  display: grid;
  grid-template-columns: 180px 1fr 1fr;
}
.comparison-row + .comparison-row { border-top: 1px solid var(--line); }
.comparison-row > div {
  min-width: 0;
  padding: 22px 24px;
  color: var(--muted);
  font-size: .86rem;
}
.comparison-row > div + div { border-left: 1px solid var(--line); }
.comparison-row > [role="rowheader"] {
  color: var(--ink);
  font: 600 1.05rem/1.25 var(--serif);
}
.comparison-row > div:last-child { background: rgba(237, 184, 193, .22); }
.comparison-row strong { color: var(--ink); }
.comparison-head { background: var(--pink); }
.comparison-head > div {
  color: var(--ink);
  font-size: .66rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.comparison-head > div:last-child { background: rgba(255, 255, 255, .16); }

.inside {
  display: grid;
  grid-template-columns: minmax(420px, .92fr) minmax(480px, 1.08fr);
  gap: clamp(50px, 8vw, 120px);
  align-items: center;
  background: var(--cream);
}
.inside-image {
  min-height: 680px;
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  box-shadow: var(--shadow);
}
.inside-image > img {
  width: 100%;
  height: 100%;
  min-height: 680px;
  object-fit: cover;
}
.inside-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(84, 32, 50, .5), transparent 45%);
}
.inside-image-tag {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 26px;
  z-index: 2;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, .5);
  background: rgba(255, 255, 255, .82);
  backdrop-filter: blur(12px);
}
.inside-image-tag span {
  color: var(--cherry);
  font-size: .6rem;
  font-weight: 800;
  letter-spacing: .14em;
}
.inside-image-tag b {
  display: block;
  margin-top: 6px;
  font: 600 1.6rem/1.05 var(--serif);
}
.inside-copy h2 {
  margin-bottom: 25px;
  font-size: clamp(3.1rem, 5vw, 5.7rem);
}
.inside-lede { color: var(--muted); }
.ingredient-list { margin-top: 34px; }
.ingredient-list article {
  display: grid;
  grid-template-columns: 124px 1fr;
  column-gap: 22px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}
.ingredient-list span {
  grid-row: 1 / span 2;
  color: var(--cherry);
  font-size: .59rem;
  font-weight: 800;
  letter-spacing: .1em;
}
.ingredient-list h3 {
  margin-bottom: 5px;
  font: 600 1.35rem/1.1 var(--serif);
}
.ingredient-list p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: .82rem;
}

.spark-tool { background: var(--pink); }
.spark-options {
  max-width: 1180px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin: 0 auto 18px;
}
.spark-option {
  min-height: 170px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 22px;
  border: 1px solid rgba(46, 37, 41, .16);
  border-radius: 7px;
  background: rgba(255, 255, 255, .2);
  text-align: left;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease;
}
.spark-option:hover { transform: translateY(-2px); }
.spark-option.active {
  background: var(--ink);
  color: white;
  box-shadow: 0 14px 35px rgba(46, 37, 41, .16);
}
.spark-option > span {
  color: var(--cherry);
  font-size: .6rem;
  letter-spacing: .15em;
}
.spark-option.active > span { color: var(--pink); }
.spark-option b {
  margin-top: auto;
  font: 600 1.4rem/1.1 var(--serif);
}
.spark-option small {
  margin-top: 6px;
  color: rgba(46, 37, 41, .65);
}
.spark-option.active small { color: rgba(255, 255, 255, .65); }
.spark-result {
  max-width: 1180px;
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 50px;
  align-items: center;
  margin: auto;
  padding: clamp(30px, 4vw, 54px);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--shadow);
}
.spark-result-copy > span {
  color: var(--cherry);
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .13em;
}
.spark-result h3 {
  margin: 10px 0 12px;
  font: 600 clamp(2.1rem, 4vw, 4.2rem)/1 var(--serif);
  letter-spacing: -.035em;
}
.spark-result-copy p {
  margin-bottom: 0;
  color: var(--muted);
}
.spark-result ol {
  list-style: none;
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
}
.spark-result li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: white;
}
.spark-result li span {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--pink);
  font-size: .68rem;
}
.spark-result li b { font-size: .82rem; }

.experience {
  min-height: 760px;
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: clamp(50px, 8vw, 120px);
  align-items: center;
  background: var(--paper);
}
.experience-copy h2 {
  margin-bottom: 28px;
  font-size: clamp(3.2rem, 5vw, 5.8rem);
}
.experience-copy > p:not(.eyebrow) {
  max-width: 580px;
  color: var(--muted);
}
.experience-copy .button { margin-top: 14px; }
.experience-image {
  min-height: 600px;
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  background: var(--cream);
  box-shadow: var(--shadow);
}
.experience-image img {
  width: 100%;
  height: 100%;
  min-height: 600px;
  object-fit: cover;
  object-position: 62% center;
}
.experience-image p {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  margin: 0;
  padding: 14px 18px;
  background: rgba(255, 250, 247, .88);
  backdrop-filter: blur(12px);
  font-size: .78rem;
}
.experience-image b {
  margin-right: 8px;
  color: var(--cherry);
  font-size: .58rem;
  letter-spacing: .11em;
}

.value-stack {
  color: white;
  background: var(--cherry-dark);
}
.value-stack .section-heading .eyebrow { color: var(--pink); }
.value-stack .section-heading h2 em { color: var(--pink); }
.value-stack .section-heading > p:last-child { color: rgba(255, 255, 255, .68); }
.value-grid {
  max-width: 1180px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin: auto;
}
.value-grid article {
  min-height: 390px;
  display: flex;
  flex-direction: column;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, .14);
  background: rgba(255, 255, 255, .055);
}
.value-grid article.value-product {
  background: var(--pink);
  color: var(--ink);
}
.value-grid article > span {
  color: var(--pink);
  font-size: .58rem;
  font-weight: 800;
  letter-spacing: .12em;
}
.value-grid .value-product > span { color: var(--cherry); }
.value-grid img {
  width: 170px;
  height: 210px;
  object-fit: contain;
  margin: 10px auto 0;
}
.value-grid .value-product img {
  width: 100%;
  height: 205px;
  border: 5px solid rgba(255, 255, 255, .52);
  object-fit: cover;
}
.value-number {
  margin: 50px 0 auto;
  color: var(--pink);
  font: 600 4.8rem/1 var(--serif);
}
.value-grid h3 {
  margin: auto 0 13px;
  font: 600 1.7rem/1.05 var(--serif);
}
.value-grid p {
  margin: 0;
  color: rgba(255, 255, 255, .64);
  font-size: .82rem;
}
.value-grid .value-product p { color: rgba(46, 37, 41, .68); }

.shop { background: var(--cream); }
.shop-heading {
  max-width: 1180px;
  margin: 0 auto 48px;
}
.shop-heading h2 {
  margin-bottom: 0;
  font-size: clamp(3.4rem, 6vw, 6.7rem);
}
.purchase-panel {
  max-width: 1180px;
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  margin: auto;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: white;
  box-shadow: var(--shadow);
}
.purchase-visual {
  min-height: 790px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 50px;
  background: var(--pink);
}
.purchase-orbit {
  width: min(560px, 90%);
  aspect-ratio: 1;
  position: absolute;
  border: 1px solid rgba(46, 37, 41, .2);
  border-radius: 50%;
}
.purchase-orbit::before,
.purchase-orbit::after {
  content: '';
  position: absolute;
  inset: 11%;
  border: 1px solid rgba(46, 37, 41, .13);
  border-radius: 50%;
}
.purchase-orbit::after { inset: 23%; }
.purchase-visual img {
  width: min(88%, 470px);
  max-height: 610px;
  position: relative;
  border: 8px solid rgba(255, 255, 255, .68);
  border-radius: 4px;
  object-fit: cover;
  box-shadow: 0 38px 46px rgba(70, 34, 42, .2);
}
.purchase-visual > p {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  margin: 0;
  padding: 12px 14px;
  border: 1px solid rgba(46, 37, 41, .14);
  background: rgba(255, 255, 255, .3);
  text-align: center;
  font-size: .72rem;
  font-weight: 700;
}
.purchase-copy { padding: clamp(38px, 5vw, 68px); }
.purchase-copy h3 {
  margin: 0 0 12px;
  font: 600 clamp(2.8rem, 4.5vw, 5rem)/.96 var(--serif);
  letter-spacing: -.04em;
}
.purchase-lede { color: var(--muted); }
.macro-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 21px 0 10px;
}
.macro-pills span {
  padding: 7px 10px;
  border-radius: 999px;
  background: var(--pink-soft);
  color: var(--cherry);
  font-size: .65rem;
  font-weight: 800;
}
.serving-line {
  color: var(--muted);
  font-size: .7rem;
}
.label-disclosure {
  margin: 20px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.label-disclosure summary {
  display: flex;
  justify-content: space-between;
  padding: 15px 0;
  font-size: .76rem;
  font-weight: 800;
  cursor: pointer;
}
.label-disclosure p {
  color: var(--muted);
  font-size: .77rem;
}
.label-disclosure img {
  max-width: 340px;
  margin: 10px auto 24px;
  border: 1px solid var(--line);
}
.step-label {
  margin: 22px 0 10px;
  color: var(--muted);
  font-size: .68rem;
}
.step-label b {
  margin-right: 7px;
  color: var(--cherry);
  font-size: .58rem;
  letter-spacing: .11em;
}
.purchase-modes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 12px;
}
.purchase-modes button {
  min-height: 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: white;
  text-align: left;
  cursor: pointer;
}
.purchase-modes button.active {
  border-color: var(--cherry);
  background: var(--pink-soft);
  box-shadow: inset 0 0 0 1px var(--cherry);
}
.purchase-modes span { display: grid; gap: 4px; }
.purchase-modes b { font-size: .74rem; }
.purchase-modes small {
  color: var(--muted);
  font-size: .6rem;
}
.purchase-modes strong {
  color: var(--cherry);
  font-family: var(--serif);
  font-size: 1rem;
}
.cadence {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
}
.cadence[hidden] { display: none; }
.cadence > span {
  margin-right: auto;
  color: var(--muted);
  font-size: .68rem;
  font-weight: 700;
}
.cadence button {
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: white;
  font-size: .64rem;
  cursor: pointer;
}
.cadence button.active {
  border-color: var(--cherry);
  background: var(--pink);
}
.order-summary {
  display: grid;
  gap: 7px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
}
.order-summary div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: .75rem;
}
.order-summary .free {
  color: #48724f;
  font-size: .62rem;
  letter-spacing: .08em;
}
.checkout-button {
  width: 100%;
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 20px;
  border: 0;
  border-radius: 4px;
  background: var(--ink);
  color: white;
  font-weight: 800;
  cursor: pointer;
}
.checkout-button:hover { background: #171416; }
.checkout-button i { font-style: normal; }
.renewal-note,
.checkout-status {
  margin: 11px 0 0;
  color: var(--muted);
  font-size: .67rem;
}
.checkout-status { min-height: 1.1rem; color: #357043; font-weight: 700; }

.faq { background: var(--paper); }
.faq-list {
  max-width: 900px;
  margin: auto;
  border-top: 1px solid var(--line);
}
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 23px 0;
  font: 600 1.2rem/1.2 var(--serif);
  cursor: pointer;
  list-style: none;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span {
  color: var(--cherry);
  font: 400 1.4rem/1 var(--sans);
  transition: transform .2s ease;
}
.faq-list details[open] summary span { transform: rotate(45deg); }
.faq-list details p {
  max-width: 760px;
  padding: 0 0 24px;
  color: var(--muted);
}

.final-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 620px;
  padding: 90px 22px;
  position: relative;
  overflow: hidden;
  background: var(--pink);
  text-align: center;
}
.final-cta::before,
.final-cta::after {
  content: '';
  width: 460px;
  aspect-ratio: 1;
  position: absolute;
  border: 1px solid rgba(46, 37, 41, .14);
  border-radius: 50%;
}
.final-cta::before { left: -180px; top: -180px; }
.final-cta::after { right: -180px; bottom: -180px; }
.final-cta .eyebrow { position: relative; z-index: 2; }
.final-cta h2 {
  margin-bottom: 22px;
  position: relative;
  z-index: 2;
  font-size: clamp(4rem, 8vw, 8.5rem);
}
.final-cta h2 em { color: var(--ink); }
.final-cta > p:not(.eyebrow) {
  margin-bottom: 26px;
  position: relative;
  z-index: 2;
  color: rgba(46, 37, 41, .72);
}
.final-cta .button { position: relative; z-index: 2; }

footer {
  min-height: 170px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 35px clamp(22px, 6vw, 90px);
  color: rgba(255, 255, 255, .64);
  background: var(--ink);
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer-brand img {
  width: 128px;
  filter: brightness(0) invert(1);
}
.footer-brand span {
  padding-left: 12px;
  border-left: 1px solid rgba(255, 255, 255, .22);
  color: var(--pink);
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .16em;
}
footer > div:nth-child(2) {
  display: flex;
  gap: 20px;
}
footer a {
  font-size: .7rem;
  text-underline-offset: 3px;
}
footer > p {
  grid-column: 1 / -1;
  margin: 0;
  font-size: .65rem;
}

.mobile-sticky { display: none; }

@media (max-width: 1180px) {
  .hero { grid-template-columns: minmax(450px, .92fr) minmax(500px, 1.08fr); }
  .hero-copy { padding-left: 5vw; padding-right: 4vw; }
  .section-pad { padding-left: 5vw; padding-right: 5vw; }
  .value-grid { grid-template-columns: repeat(2, 1fr); }
  .value-grid article { min-height: 330px; }
}

@media (max-width: 1080px) {
  .site-header {
    grid-template-columns: 1fr auto;
    min-height: 68px;
  }
  .site-header nav { display: none; }
  .hero {
    min-height: 0;
    grid-template-columns: 1fr;
  }
  .hero-copy {
    min-height: 650px;
    padding: 80px 7vw 70px;
  }
  .hero h1 { font-size: clamp(4.6rem, 11vw, 7.2rem); }
  .hero-visual,
  .hero-person { min-height: 660px; }
  .hero-gradient {
    background:
      linear-gradient(180deg, var(--pink) 0%, rgba(237, 184, 193, .28) 10%, transparent 28%),
      linear-gradient(0deg, rgba(84, 32, 50, .28), transparent 30%);
  }
  .manifesto-grid,
  .inside,
  .experience,
  .purchase-panel { grid-template-columns: 1fr; }
  .truth-cards { grid-template-columns: 1fr; }
  .truth-cards article { min-height: 210px; }
  .truth-cards h3 { margin-top: 34px; }
  .inside-image { min-height: 520px; }
  .inside-image > img { min-height: 520px; }
  .inside-copy { max-width: 760px; }
  .spark-options { grid-template-columns: repeat(2, 1fr); }
  .experience-copy { max-width: 760px; }
  .experience-image { order: -1; }
  .purchase-visual { min-height: 650px; }
}

@media (max-width: 760px) {
  .top-ribbon {
    gap: 8px;
    min-height: 36px;
    font-size: .58rem;
    letter-spacing: .06em;
  }
  .top-ribbon span { display: none; }
  .site-header { padding: 10px 18px; }
  .brand img { width: 115px; }
  .brand span { font-size: .58rem; }
  .header-cta {
    padding: 10px 14px;
    font-size: .7rem;
  }
  .hero-copy {
    min-height: 610px;
    padding: 70px 22px 58px;
  }
  .hero-copy::before { display: none; }
  .hero h1 {
    margin-bottom: 22px;
    font-size: clamp(4rem, 19vw, 6rem);
  }
  .hero-lede { font-size: .98rem; }
  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 32px;
  }
  .hero-actions .button { width: 100%; }
  .hero-actions .text-link { align-self: center; }
  .proof-strip { gap: 6px; }
  .proof-strip span { padding: 7px 9px; font-size: .62rem; }
  .hero-visual,
  .hero-person { min-height: 520px; }
  .hero-person { object-position: 60% center; }
  .hero-product {
    width: 138px;
    left: 1%;
  }
  .hero-stamp {
    width: 110px;
    right: 3%;
    bottom: 3%;
  }
  .hero-stamp b { font-size: 1rem; }
  .section-pad { padding: 78px 20px; }
  .section-heading { margin-bottom: 38px; }
  .section-heading h2,
  .desire-manifesto h2,
  .inside-copy h2,
  .experience-copy h2,
  .shop-heading h2 {
    font-size: clamp(3rem, 14vw, 4.8rem);
  }
  .manifesto-grid { gap: 26px; }
  .manifesto-lede { font-size: 1.75rem; }
  .truth-cards { margin-top: 45px; }
  .comparison-table {
    overflow: visible;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }
  .comparison-row {
    grid-template-columns: 1fr;
    margin-bottom: 12px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 9px;
    background: white;
  }
  .comparison-row + .comparison-row { border-top: 1px solid var(--line); }
  .comparison-row > div { padding: 15px 17px; }
  .comparison-row > div + div { border-top: 1px solid var(--line); border-left: 0; }
  .comparison-head { display: none; }
  .comparison-row > [role="rowheader"] {
    background: var(--pink);
    font-size: 1.15rem;
  }
  .inside { gap: 42px; }
  .inside-image,
  .inside-image > img { min-height: 430px; }
  .inside-image-tag { left: 16px; right: 16px; bottom: 16px; }
  .ingredient-list article {
    grid-template-columns: 1fr;
    gap: 6px;
  }
  .ingredient-list span { grid-row: auto; }
  .spark-options { grid-template-columns: 1fr 1fr; }
  .spark-option {
    min-height: 145px;
    padding: 17px;
  }
  .spark-option b { font-size: 1.12rem; }
  .spark-option small { font-size: .67rem; }
  .spark-result {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 28px 20px;
  }
  .experience { gap: 42px; }
  .experience-image,
  .experience-image img { min-height: 430px; }
  .experience-image img { object-position: 58% center; }
  .value-grid { grid-template-columns: 1fr; }
  .value-grid article { min-height: 300px; }
  .value-grid .value-product { min-height: 420px; }
  .purchase-panel { border-radius: 8px; }
  .shop-heading { margin-bottom: 30px; }
  .purchase-visual { min-height: 370px; padding: 24px; }
  .purchase-visual img { width: min(82%, 290px); max-height: 310px; }
  .purchase-copy { padding: 34px 20px; }
  .purchase-copy h3 { font-size: 3.2rem; }
  .purchase-modes { grid-template-columns: 1fr; }
  .purchase-modes button { min-height: 88px; }
  .cadence {
    align-items: flex-start;
    flex-wrap: wrap;
  }
  .cadence > span { width: 100%; }
  .faq-list summary { font-size: 1.05rem; }
  .final-cta { min-height: 540px; }
  .final-cta h2 { font-size: clamp(4rem, 19vw, 6rem); }
  footer {
    grid-template-columns: 1fr;
    padding-bottom: 96px;
  }
  footer > div:nth-child(2) { flex-wrap: wrap; }
  footer > p { grid-column: auto; }
  .mobile-sticky {
    min-height: 60px;
    position: fixed;
    left: 10px;
    right: 10px;
    bottom: 10px;
    z-index: 90;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 13px 17px;
    border-radius: 5px;
    background: var(--ink);
    color: white;
    text-decoration: none;
    font-size: .76rem;
    font-weight: 800;
    box-shadow: 0 18px 48px rgba(46, 37, 41, .34);
    transform: translateY(150%);
    transition: transform .25s ease;
  }
  .mobile-sticky.visible { transform: translateY(0); }
  .mobile-sticky b { color: var(--pink); font-family: var(--serif); }
}

@media (max-width: 390px) {
  .brand span { display: none; }
  .hero h1 { font-size: 4.15rem; }
  .hero-visual,
  .hero-person { min-height: 470px; }
  .hero-product { width: 120px; }
  .hero-stamp { width: 96px; }
  .spark-options { grid-template-columns: 1fr; }
  .spark-option { min-height: 124px; }
  .inside-image,
  .inside-image > img,
  .experience-image,
  .experience-image img { min-height: 390px; }
  .cadence button { font-size: .6rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; }
}
