:root {
  --ink: #211a20;
  --muted: #6d6268;
  --brand: #c73861;
  --brand-dark: #9f2149;
  --brand-soft: #fff0f4;
  --paper: #fffdfa;
  --soft: #fff7f9;
  --line: #eedde2;
  --white: #fff;
  --shadow: 0 14px 42px rgba(73, 40, 54, 0.08);
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 28px;
  --shell: 1220px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.58;
}

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

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.shell {
  width: min(calc(100% - 36px), var(--shell));
  margin-inline: auto;
}

/* HERO — full blended background, mobile first */
.hero {
  position: relative;
  min-height: 0;
  overflow: hidden;
  background: #fff8fa;
}

.hero__background {
  position: absolute;
  z-index: 0;
  top: 0;
  right: 0;
  left: 0;
  display: block;
  height: 330px;
  overflow: hidden;
}

.hero__background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}

.hero__veil {
  position: absolute;
  z-index: 1;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(
      180deg,
      rgba(255, 248, 250, 0) 0,
      rgba(255, 248, 250, 0.05) 230px,
      rgba(255, 248, 250, 0.88) 315px,
      #fff8fa 390px
    );
}

.hero__content {
  position: relative;
  z-index: 2;
  padding-top: 352px;
  padding-bottom: 46px;
}

.hero__copy {
  max-width: 650px;
}


.hero__replace-label {
  z-index: 4;
}

.publications {
  border-block: 1px solid #f0dfe4;
  background: #fff;
}

.publications__inner {
  padding-block: 34px 38px;
}

.publications__heading {
  margin-bottom: 24px;
  text-align: center;
}

.publications h2 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: 1.15rem;
  font-weight: 850;
  letter-spacing: -0.018em;
  line-height: 1.2;
  white-space: nowrap;
}

.publications__stars {
  color: #e4a42d;
  font-size: 20px;
  letter-spacing: 3px;
  line-height: 1;
}

/* Mobile: 4 logos on the first row, 3 centered on the second row. */
.publications__logos {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 22px 12px;
  align-items: center;
}

.publication-logo {
  position: relative;
  display: grid;
  grid-column: span 2;
  min-width: 0;
  height: 36px;
  place-items: center;
}

.publication-logo:nth-child(5) { grid-column: 2 / span 2; }
.publication-logo:nth-child(6) { grid-column: 4 / span 2; }
.publication-logo:nth-child(7) { grid-column: 6 / span 2; }

.publication-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.82;
}

.hero__copy {
  align-self: center;
}

.eyebrow {
  margin: 0 0 13px;
  color: var(--brand);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.075em;
  line-height: 1.35;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 600;
  letter-spacing: -0.028em;
}

h1 {
  max-width: 650px;
}

.hero-title__intro,
.hero-title__main {
  display: block;
}

.hero-title__intro {
  font-size: clamp(1.05rem, 5.5vw, 1.4rem);
  line-height: 1;
  letter-spacing: -0.028em;
}

.hero-title__main {
  margin-top: 10px;
  color: var(--brand);
  font-size: clamp(2.42rem, 10.7vw, 2.98rem);
  line-height: 0.92;
  letter-spacing: -0.038em;
}

.hero-title__intro--mobile {
  display: block;
  white-space: nowrap;
}

.hero-title__intro--desktop {
  display: none;
}


h2 {
  font-size: clamp(2rem, 8vw, 3.25rem);
  line-height: 1.07;
}

h3,
p {
  margin-top: 0;
}

.hero__lead {
  max-width: 625px;
  margin: 23px 0 25px;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.48;
  text-wrap: balance;
}

.button {
  display: inline-flex;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border-radius: 13px;
  padding: 13px 17px;
  text-align: center;
  text-decoration: none;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.18;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:focus-visible {
  outline: 3px solid rgba(199, 56, 97, 0.25);
  outline-offset: 3px;
}

.button--primary {
  width: 100%;
  background: linear-gradient(180deg, #d74970 0%, var(--brand) 100%);
  color: var(--white);
  box-shadow: 0 13px 28px rgba(199, 56, 97, 0.22);
}

.button--light {
  width: 100%;
  background: var(--white);
  color: var(--brand-dark);
  box-shadow: 0 12px 34px rgba(86, 16, 48, 0.18);
}

.button__arrow {
  flex: 0 0 auto;
  font-size: 19px;
  line-height: 1;
}

.microcopy {
  margin: 13px 0 0;
  color: #7a6e74;
  font-size: 11px;
  line-height: 1.35;
  text-align: center;
}

/* Three larger trust seals under the primary CTA. */
.trust-badge-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: start;
  width: 100%;
  gap: 3px;
  margin: 18px 0 0;
  padding-top: 24px;
  border-top: 1px solid #e8d4da;
}

.trust-badge {
  display: grid;
  min-width: 0;
  margin: 0;
  place-items: center;
  text-align: center;
}

.trust-badge img {
  width: clamp(90px, 27vw, 104px);
  height: auto;
  aspect-ratio: 1;
  object-fit: contain;
  filter: drop-shadow(0 8px 13px rgba(60, 38, 25, 0.13));
}

.trust-badge--primary img {
  width: clamp(108px, 31vw, 122px);
  margin-top: -5px;
}

.trust-badge figcaption {
  display: grid;
  gap: 2px;
  width: 100%;
  margin-top: 7px;
  line-height: 1.22;
}

.trust-badge figcaption strong {
  color: #44383e;
  font-size: 10px;
  font-weight: 800;
}

.trust-badge figcaption span {
  color: #776a70;
  font-size: 8.7px;
  font-weight: 550;
}

.image-replace-label {
  display: none;
  position: absolute;
  right: 10px;
  bottom: 10px;
  max-width: calc(100% - 20px);
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 999px;
  background: rgba(35, 26, 30, 0.72);
  color: #fff;
  padding: 6px 10px;
  font-size: 10px;
  line-height: 1.2;
  backdrop-filter: blur(8px);
}

.section {
  padding: 46px 0;
}

.section--soft {
  border-block: 1px solid #f2e3e7;
  background: var(--soft);
}

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

.section-heading--center {
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}

.section-heading p:last-child {
  margin: 9px 0 0;
  color: var(--muted);
  font-size: 0.93rem;
}

.reason-grid,
.ingredient-grid {
  display: grid;
  gap: 12px;
}

.reason-card,
.review-card,
.result-card,
.ingredient-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: 0 10px 30px rgba(77, 42, 57, 0.045);
}

/* Compact horizontal cards on phones. */
.reason-card {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  column-gap: 14px;
  padding: 18px;
}

.reason-card__icon {
  display: grid;
  grid-row: 1 / span 2;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid #f0cad6;
  border-radius: 50%;
  background: var(--brand-soft);
  color: var(--brand);
  font-size: 12px;
  font-weight: 800;
}

.reason-card h3,
.ingredient-card h3 {
  margin-bottom: 4px;
  font-size: 1.04rem;
  line-height: 1.25;
}

.reason-card p,
.ingredient-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.46;
}

.product-story {
  display: grid;
  gap: 25px;
  align-items: center;
}

.image-frame {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fbf2f5;
  box-shadow: var(--shadow);
}

.product-story__media {
  height: 300px;
}

.product-story__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 14px;
}

.product-story__copy > p:not(.eyebrow):not(.microcopy) {
  margin: 14px 0 0;
  color: var(--muted);
}

.check-list {
  display: grid;
  gap: 10px;
  margin: 19px 0 23px;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 29px;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  top: 1px;
  left: 0;
  display: grid;
  width: 21px;
  height: 21px;
  place-items: center;
  border-radius: 50%;
  background: var(--brand-soft);
  color: var(--brand);
  font-size: 12px;
  font-weight: 800;
}

.proof-grid {
  display: grid;
  gap: 13px;
}

.result-card {
  display: flex;
  overflow: hidden;
}

.result-card__images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  height: 100%;
  flex: 1;
}

.result-card figure {
  position: relative;
  display: flex;
  min-width: 0;
  height: 100%;
  margin: 0;
  overflow: hidden;
}

.result-card figure + figure {
  border-left: 1px solid var(--line);
}

.result-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  height: 100%;
  object-fit: cover;
}

.result-card figcaption {
  position: absolute;
  bottom: 8px;
  left: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.91);
  padding: 5px 9px;
  color: #40363b;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.review-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 25px 20px;
  text-align: center;
}

.review-card__avatar {
  width: 72px;
  height: 72px;
  border: 4px solid var(--white);
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 10px 28px rgba(67, 37, 49, 0.12);
}

.review-card__stars {
  margin: 12px 0 6px;
  color: #e39829;
  letter-spacing: 2px;
}

.review-card blockquote {
  margin: 0;
  color: #3a3035;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1rem;
  line-height: 1.48;
}

.review-card__name {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.results-note {
  margin: 11px 0 0;
  color: #80747a;
  font-size: 12px;
  text-align: center;
}

/* Ingredients are short horizontal rows on mobile to prevent a long page. */
.ingredient-card {
  display: grid;
  min-height: 112px;
  grid-template-columns: 112px minmax(0, 1fr);
  overflow: hidden;
}

.ingredient-card img {
  width: 112px;
  height: 100%;
  min-height: 112px;
  object-fit: cover;
}

.ingredient-card__body {
  align-self: center;
  padding: 15px 15px 15px 16px;
}

.section--cta {
  padding-bottom: 82px;
  background: linear-gradient(135deg, #c83360 0%, #a31f4a 100%);
  color: var(--white);
}

.final-cta {
  max-width: 840px;
  margin-inline: auto;
  text-align: center;
}

.final-cta .eyebrow {
  color: #ffd8e3;
}

.final-cta p:not(.eyebrow) {
  margin: 14px auto 21px;
  color: rgba(255, 255, 255, 0.84);
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #fff;
  color: #786c72;
  font-size: 12px;
}

.site-footer__inner {
  padding: 25px 0 92px;
  text-align: center;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-bottom: 10px;
}

.site-footer a {
  text-decoration: none;
}

.site-footer p {
  margin-bottom: 0;
}

.mobile-sticky {
  position: fixed;
  z-index: 20;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 9px max(12px, env(safe-area-inset-right)) calc(9px + env(safe-area-inset-bottom)) max(12px, env(safe-area-inset-left));
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 -10px 30px rgba(53, 25, 39, 0.1);
  opacity: 0;
  pointer-events: none;
  transform: translateY(110%);
  transition: opacity 180ms ease, transform 180ms ease;
  backdrop-filter: blur(14px);
}

.mobile-sticky.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.mobile-sticky__button {
  display: flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 12px;
  background: var(--brand);
  color: var(--white);
  text-align: center;
  text-decoration: none;
  font-size: 14px;
  font-weight: 800;
}


@media (max-width: 480px) {
  .publications h2 {
    gap: 7px;
    font-size: 1rem;
  }

  .publications__stars {
    font-size: 17px;
    letter-spacing: 2px;
  }
}

@media (max-width: 380px) {
  .shell {
    width: min(calc(100% - 28px), var(--shell));
  }

  .hero-title__intro {
    font-size: clamp(1rem, 5.25vw, 1.24rem);
  }

  .hero-title__main {
    font-size: 2.30rem;
  }

  .hero__background {
    height: 305px;
  }

  .hero__content {
    padding-top: 326px;
  }

  .button {
    font-size: 14px;
  }

  .ingredient-card {
    grid-template-columns: 96px minmax(0, 1fr);
  }

  .ingredient-card img {
    width: 102px;
  }
}


@media (max-width: 767px) {
  .hero__content {
    padding-bottom: 28px;
  }

  .trust-badge-row {
    margin-top: 22px;
    padding-top: 22px;
  }
}

@media (max-width: 380px) {
  .trust-badge img {
    width: 86px;
  }

  .trust-badge--primary img {
    width: 96px;
  }

  .trust-badge figcaption strong {
    font-size: 9.4px;
  }

  .trust-badge figcaption span {
    font-size: 8.1px;
  }
}

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

  .button--primary:hover {
    background: linear-gradient(180deg, #cc3b65 0%, var(--brand-dark) 100%);
  }
}

@media (min-width: 600px) {
  .shell {
    width: min(calc(100% - 48px), var(--shell));
  }

  .button--primary,
  .button--light {
    width: auto;
    min-width: 350px;
  }

  .microcopy {
    width: fit-content;
    max-width: 440px;
  }

  .reason-grid,
  .ingredient-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .reason-card {
    display: block;
    padding: 21px;
  }

  .reason-card__icon {
    margin-bottom: 14px;
  }

  .product-story__media {
    height: 430px;
  }

  .ingredient-card {
    display: block;
    min-height: 0;
  }

  .ingredient-card img {
    width: 100%;
    height: auto;
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .ingredient-card__body {
    padding: 18px;
  }
}

@media (min-width: 1024px) {
  .hero {
    min-height: 740px;
    display: flex;
    align-items: stretch;
  }

  .hero__background {
    inset: 0;
    height: 100%;
  }

  .hero__background img {
    object-position: center 35%;
  }

  .hero__veil {
    background: linear-gradient(
      90deg,
      rgba(255, 250, 251, 1) 0%,
      rgba(255, 250, 251, 0.99) 27%,
      rgba(255, 250, 251, 0.90) 36%,
      rgba(255, 250, 251, 0.58) 45%,
      rgba(255, 250, 251, 0.16) 55%,
      rgba(255, 250, 251, 0) 63%
    );
  }

  .hero__content {
    width: min(calc(100% - 64px), var(--shell));
    min-height: 740px;
    margin-inline: auto;
    display: flex;
    align-items: center;
    padding: 46px 0 52px;
  }

  .hero__copy {
    width: min(100%, 590px);
    max-width: 590px;
  }

  .hero__copy .eyebrow {
    margin-bottom: 8px;
  }

  .hero-title__intro--mobile {
    display: none;
  }

  .hero-title__intro--desktop {
    display: block;
  }

  .publications__inner {
    padding-block: 30px 34px;
  }

  .publications__heading {
    margin-bottom: 27px;
  }

  .publications h2 {
    font-size: 1.08rem;
  }

  .publications__stars {
    font-size: 19px;
  }

  .publications__logos {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 34px;
  }

  .publication-logo,
  .publication-logo:nth-child(5),
  .publication-logo:nth-child(6),
  .publication-logo:nth-child(7) {
    grid-column: auto;
    height: 38px;
  }

  .hero-title__intro {
    font-size: clamp(2.8rem, 3.45vw, 3.55rem);
    line-height: 0.96;
    letter-spacing: -0.034em;
  }

  .hero-title__main {
    margin-top: 10px;
    font-size: clamp(3.9rem, 4.45vw, 4.72rem);
    line-height: 0.91;
    letter-spacing: -0.048em;
  }

  .hero__lead {
    max-width: 540px;
    margin: 20px 0 22px;
    font-size: 1.05rem;
    line-height: 1.5;
    text-wrap: balance;
  }

  .button--primary {
    min-width: 380px;
    font-size: 16px;
    padding-inline: 25px;
  }

  .hero__copy .button--primary {
    width: 420px;
    min-width: 0;
    max-width: 100%;
  }

  .hero__copy .microcopy {
    width: 420px;
    max-width: 100%;
  }

  .trust-badge-row {
    width: 420px;
    max-width: 100%;
    gap: 4px;
    margin: 18px 0 0;
    padding-top: 18px;
  }

  .trust-badge img {
    width: 118px;
  }

  .trust-badge--primary img {
    width: 142px;
    margin-top: -6px;
  }

  .trust-badge figcaption {
    margin-top: 8px;
  }

  .trust-badge figcaption strong {
    font-size: 11.5px;
  }

  .trust-badge figcaption span {
    font-size: 9.5px;
  }

  .section {
    padding: 72px 0;
  }

  .product-story {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 56px;
  }

  .product-story__media {
    height: auto;
    aspect-ratio: 1 / 1;
  }

  .proof-grid {
    grid-template-columns: minmax(0, 1fr) minmax(260px, 0.72fr) minmax(0, 1fr);
    align-items: stretch;
  }

  .mobile-sticky {
    display: none;
  }

  .site-footer__inner {
    padding-bottom: 28px;
  }
}

@media (min-width: 1100px) {
  .hero__grid {
    grid-template-columns: minmax(0, 0.98fr) minmax(520px, 1.02fr);
    gap: 62px;
  }
}

@media (min-width: 1380px) {
  .hero-title__intro {
    font-size: 3.55rem;
  }

  .hero-title__main {
    font-size: 4.72rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* Add ?dev=1 to the URL to display image replacement labels. */
.dev-mode .image-replace-label {
  display: block;
}


/* =========================================================
   PREMIUM BLENDED PRODUCT SHOWCASE
   ========================================================= */

.product-section-premium {
  padding-top: clamp(54px, 7vw, 92px);
  padding-bottom: clamp(54px, 7vw, 92px);
  background:
    radial-gradient(circle at 18% 50%, rgba(248, 207, 220, 0.22), transparent 31%),
    linear-gradient(180deg, #fffdfd 0%, #fff9fb 100%);
}

.product-story--premium {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(0, 1.02fr);
  gap: 34px;
  width: min(100%, 1290px);
  min-height: 620px;
  padding: 28px;
  border: 1px solid rgba(210, 155, 173, 0.22);
  border-radius: 36px;
  background:
    radial-gradient(circle at 14% 14%, rgba(255,255,255,.88), transparent 32%),
    linear-gradient(135deg, #fff8fb 0%, #fff6fa 50%, #fffafb 100%);
  box-shadow:
    0 28px 70px rgba(92, 45, 62, 0.10),
    0 4px 16px rgba(92, 45, 62, 0.05);
}

.product-story--premium::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(112deg, rgba(255,255,255,.55) 0 14%, transparent 14% 100%),
    radial-gradient(ellipse at 18% 82%, rgba(224, 145, 169, 0.10), transparent 34%);
}

.product-story__media--premium {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 560px;
  height: 100%;
  padding: 10px 0;
  overflow: visible;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.product-story__media--premium::after {
  content: none;
}

.product-story__media--premium img {
  display: block;
  width: 100%;
  max-width: 712px;
  height: auto;
  object-fit: contain;
  object-position: center;
  transform: none;
  filter: none;
  border-radius: 28px;
}

.product-story--premium .image-replace-label {
  display: none !important;
}

.product-story--premium .product-story__copy {
  align-self: center;
  padding: 16px 24px 16px 0;
  position: relative;
  z-index: 2;
}

.product-story--premium .product-story__copy h2 {
  max-width: 610px;
  margin-top: 10px;
  font-size: clamp(2.45rem, 3.45vw, 4rem);
  line-height: .96;
  letter-spacing: -0.035em;
}

.product-story--premium .product-story__copy > p:not(.eyebrow):not(.microcopy) {
  max-width: 590px;
  margin-top: 20px;
  font-size: 16px;
  line-height: 1.6;
}

.product-story--premium .check-list {
  gap: 14px;
  margin: 26px 0 30px;
}

.product-story--premium .check-list li {
  min-height: 30px;
  padding-left: 39px;
  font-size: 15px;
  line-height: 1.45;
}

.product-story--premium .check-list li::before {
  top: -1px;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(205, 54, 101, .12);
  background: rgba(255, 232, 239, .88);
  box-shadow: 0 6px 14px rgba(205,54,101,.08);
}

.product-story--premium .button--primary {
  width: min(100%, 390px);
  min-height: 58px;
  border-radius: 13px;
  box-shadow: 0 14px 30px rgba(205,54,101,.20);
}

.product-story--premium .microcopy {
  width: min(100%, 390px);
  margin-top: 12px;
  text-align: left;
  font-size: 11.5px;
}

@media (max-width: 1023px) {
  .product-story--premium {
    grid-template-columns: 1fr;
    gap: 12px;
    min-height: 0;
    padding: 24px;
    border-radius: 28px;
  }

  .product-story__media--premium {
    min-height: 0;
    padding: 0;
  }

  .product-story__media--premium img {
    width: 100%;
    max-width: 760px;
  }

  .product-story--premium .product-story__copy {
    padding: 4px 12px 12px;
  }

  .product-story--premium .product-story__copy h2 {
    font-size: clamp(2.35rem, 7vw, 3.35rem);
  }
}

@media (max-width: 767px) {
  .product-section-premium {
    padding-top: 44px;
    padding-bottom: 52px;
  }

  .product-story--premium {
    gap: 10px;
    padding: 16px;
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(92,45,62,.09);
  }

  .product-story__media--premium img {
    border-radius: 22px;
  }

  .product-story--premium .product-story__copy {
    padding: 4px 8px 8px;
  }

  .product-story--premium .product-story__copy h2 {
    margin-top: 8px;
    font-size: clamp(2.05rem, 10vw, 2.65rem);
    line-height: .98;
  }

  .product-story--premium .product-story__copy > p:not(.eyebrow):not(.microcopy) {
    margin-top: 16px;
    font-size: 14.5px;
    line-height: 1.56;
  }

  .product-story--premium .check-list {
    gap: 12px;
    margin: 22px 0 26px;
  }

  .product-story--premium .check-list li {
    padding-left: 36px;
    font-size: 14px;
  }

  .product-story--premium .check-list li::before {
    width: 26px;
    height: 26px;
  }

  .product-story--premium .button--primary,
  .product-story--premium .microcopy {
    width: 100%;
  }

  .product-story--premium .microcopy {
    text-align: center;
  }
}



/* =========================================================
   COMPACT FORMULA TEASER
   ========================================================= */
.formula-teaser-section {
  background:
    radial-gradient(circle at 14% 12%, rgba(247, 206, 220, 0.22), transparent 31%),
    linear-gradient(180deg, #fffdfd 0%, #fff8fa 100%);
}

.formula-teaser {
  position: relative;
  overflow: hidden;
  padding: clamp(34px, 5vw, 58px);
  border: 1px solid rgba(207, 154, 172, 0.24);
  border-radius: 30px;
  background:
    radial-gradient(circle at 88% 12%, rgba(238, 177, 197, 0.20), transparent 28%),
    linear-gradient(135deg, rgba(255,255,255,.96), rgba(255,244,248,.96));
  box-shadow: 0 22px 60px rgba(83, 43, 58, 0.08);
}

.formula-teaser::before {
  content: "";
  position: absolute;
  width: 190px;
  height: 190px;
  right: -84px;
  bottom: -92px;
  border-radius: 50%;
  background: rgba(226, 122, 156, 0.08);
  pointer-events: none;
}

.formula-teaser__heading {
  max-width: 780px;
  margin-inline: auto;
}

.formula-teaser__grid {
  display: grid;
  gap: 14px;
  margin-top: clamp(26px, 4vw, 38px);
}

.formula-teaser__item {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  min-width: 0;
  padding: 18px;
  border: 1px solid rgba(210, 155, 173, 0.22);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 10px 24px rgba(77, 42, 57, 0.045);
}

.formula-teaser__icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(205, 54, 101, 0.18);
  border-radius: 50%;
  background: linear-gradient(145deg, #fff7fa, #ffe8f0);
  color: var(--brand);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .05em;
  box-shadow: 0 8px 18px rgba(205, 54, 101, 0.08);
}

.formula-teaser__item h3 {
  margin: 1px 0 5px;
  color: #2d2529;
  font-size: 1rem;
  line-height: 1.25;
}

.formula-teaser__item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.5;
}

.formula-teaser__action {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: clamp(24px, 4vw, 34px);
  text-align: center;
}

.formula-teaser__action .button--primary {
  width: min(100%, 390px);
}

.formula-teaser__action .microcopy {
  margin-top: 10px;
  text-align: center;
}

@media (min-width: 768px) {
  .formula-teaser__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .formula-teaser__item {
    grid-template-columns: 1fr;
    gap: 12px;
    min-height: 168px;
    padding: 22px;
    text-align: center;
  }

  .formula-teaser__icon {
    margin-inline: auto;
  }
}

@media (max-width: 767px) {
  .formula-teaser-section {
    padding-top: 48px;
    padding-bottom: 52px;
  }

  .formula-teaser {
    padding: 28px 18px;
    border-radius: 24px;
  }

  .formula-teaser__heading h2 {
    font-size: clamp(2rem, 9.5vw, 2.55rem);
    line-height: 1;
  }

  .formula-teaser__item {
    padding: 15px;
  }

  .formula-teaser__action .button--primary,
  .formula-teaser__action .microcopy {
    width: 100%;
  }
}
