@font-face {
  font-family: "Montserrat";
  src: url("./assets/fonts/montserrat-regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("./assets/fonts/montserrat-bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --gold: #d9b351;
  --gold-deep: #7f6015;
  --ink: #121212;
  --charcoal: #2c2c2c;
  --soft-charcoal: #3c3c3c;
  --paper: #ffffff;
  --cream: #f5f2ea;
  --sand: #e9e2d3;
  --muted: #6f6b63;
  --line: rgba(18, 18, 18, 0.16);
  --line-light: rgba(255, 255, 255, 0.18);
  --shell: 1280px;
  --radius-control: 14px;
  --radius-card: 24px;
  --radius-media: 32px;
  --shadow: 0 18px 55px rgba(18, 18, 18, 0.11);
}

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

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

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--cream);
  color: var(--ink);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

img,
picture,
video,
iframe {
  display: block;
  max-width: 100%;
}

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

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

a {
  color: inherit;
}

h1,
h2,
h3,
p,
blockquote,
figure {
  margin-top: 0;
}

h1,
h2,
h3 {
  margin-bottom: 0;
  line-height: 1.02;
  letter-spacing: -0.045em;
}

h1,
h2 {
  text-wrap: balance;
}

p {
  text-wrap: pretty;
}

fieldset {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

legend {
  width: 100%;
}

[hidden] {
  display: none !important;
}

:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 3px;
  box-shadow: 0 0 0 5px var(--ink);
}

.skip-link {
  position: fixed;
  z-index: 200;
  top: 12px;
  left: 12px;
  padding: 12px 18px;
  transform: translateY(-150%);
  border-radius: 4px;
  background: var(--gold);
  color: var(--ink);
  font-weight: 700;
}

.skip-link:focus {
  transform: translateY(0);
}

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

.section-pad {
  padding-block: 108px;
}

.announcement {
  display: grid;
  min-height: 36px;
  place-items: center;
  padding: 7px 24px;
  background: var(--gold);
  color: var(--ink);
}

.announcement p {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0;
  font-size: 12px;
  letter-spacing: 0.035em;
  text-align: center;
}

.announcement strong {
  font-weight: 700;
  text-transform: uppercase;
}

.site-header {
  position: sticky;
  z-index: 60;
  top: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 72px;
  padding: 10px max(24px, calc((100vw - var(--shell)) / 2));
  border-bottom: 1px solid rgba(217, 179, 81, 0.35);
  background: rgba(18, 18, 18, 0.98);
  color: #fff;
}

.brand-link {
  display: inline-flex;
  width: fit-content;
  align-items: center;
}

.brand-link img {
  width: 184px;
  height: auto;
}

.site-header nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

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

.site-header nav a {
  position: relative;
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.site-header nav a::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 1px;
  transform: scaleX(0);
  transform-origin: right;
  background: var(--gold);
  content: "";
  transition: transform 180ms ease;
}

.site-header nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-cta {
  justify-self: end;
  padding: 12px 19px;
  border: 1px solid var(--gold);
  border-radius: 30px;
  background: var(--gold);
  color: var(--ink);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
}

.hero {
  padding-top: 48px;
  background: var(--cream);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(420px, 0.96fr);
  gap: clamp(40px, 5vw, 76px);
  align-items: start;
}

.product-gallery {
  position: sticky;
  top: 102px;
}

.product-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  max-height: min(660px, 73svh);
  border: 1px solid rgba(18, 18, 18, 0.1);
  background: #e9eeef;
  box-shadow: var(--shadow);
}

.product-frame::before,
.product-frame::after {
  position: absolute;
  z-index: 2;
  width: 76px;
  height: 76px;
  border-color: var(--gold);
  content: "";
  pointer-events: none;
}

.product-frame::before {
  top: 16px;
  left: 16px;
  border-top: 1px solid var(--gold);
  border-left: 1px solid var(--gold);
}

.product-frame::after {
  right: 16px;
  bottom: 16px;
  border-right: 1px solid var(--gold);
  border-bottom: 1px solid var(--gold);
}

.product-frame > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 160ms ease;
}

.frame-kicker {
  position: absolute;
  z-index: 3;
  top: 26px;
  left: 32px;
  padding: 8px 12px;
  background: var(--ink);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.frame-stamp {
  position: absolute;
  z-index: 3;
  right: 28px;
  bottom: 28px;
  display: flex;
  width: 104px;
  height: 104px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--ink);
  color: var(--gold);
  text-align: center;
}

.frame-stamp strong {
  padding-right: 7px;
  border-right: 1px solid rgba(217, 179, 81, 0.45);
  font-size: 28px;
  letter-spacing: -0.06em;
}

.frame-stamp span {
  padding-left: 7px;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.35;
}

.gallery-thumbs {
  display: flex;
  gap: 12px;
  margin-top: 14px;
}

.gallery-thumb {
  display: flex;
  min-width: 138px;
  align-items: center;
  gap: 10px;
  padding: 7px 14px 7px 7px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.58);
  color: var(--ink);
  cursor: pointer;
  font-size: 11px;
  font-weight: 700;
}

.gallery-thumb img {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  object-fit: cover;
}

.gallery-thumb.is-active {
  border-color: var(--ink);
  background: var(--ink);
  color: #fff;
}

.purchase-card {
  padding-top: 8px;
}

.rating-line {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--ink);
  font-size: 12px;
  text-decoration: none;
}

.stars {
  color: var(--gold-deep);
  letter-spacing: 0.08em;
}

.rating-line span:last-child {
  padding-left: 8px;
  border-left: 1px solid var(--line);
  color: var(--muted);
}

.eyebrow {
  margin-bottom: 13px;
  color: var(--gold-deep);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.purchase-card h1 {
  max-width: 720px;
  font-size: clamp(47px, 5.4vw, 74px);
}

.hero-copy {
  max-width: 620px;
  margin: 22px 0 20px;
  color: #4e4b45;
  font-size: 17px;
  line-height: 1.6;
}

.quick-wins {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
  font-size: 12px;
  font-weight: 700;
}

.quick-wins span {
  margin-right: 5px;
  color: var(--gold-deep);
}

.purchase-controls {
  padding: 22px;
  border: 1px solid rgba(18, 18, 18, 0.14);
  background: #fff;
  box-shadow: 0 14px 40px rgba(18, 18, 18, 0.08);
}

.purchase-controls legend,
.frequency-wrap label {
  margin-bottom: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.choice-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.choice-card,
.quantity-card {
  position: relative;
  cursor: pointer;
}

.choice-card > input,
.quantity-card > input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.choice-card > span {
  display: flex;
  min-height: 70px;
  flex-direction: column;
  justify-content: center;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #fafafa;
}

.choice-card.is-selected > span {
  border-color: var(--ink);
  box-shadow: inset 0 0 0 1px var(--ink);
}

.choice-card:focus-within > span,
.quantity-card:focus-within {
  outline: 3px solid var(--gold-deep);
  outline-offset: 3px;
}

.choice-card strong,
.quantity-card strong {
  font-size: 13px;
}

.choice-card small,
.quantity-card small {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.25;
}

.choice-card > em,
.quantity-card > em {
  position: absolute;
  top: -8px;
  right: 8px;
  padding: 3px 7px;
  border-radius: 20px;
  background: var(--gold);
  color: var(--ink);
  font-size: 8px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.07em;
}

.price-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  margin: 20px 0;
  padding: 16px 0;
  border-block: 1px solid var(--line);
}

.price-row > div {
  display: flex;
  align-items: baseline;
  gap: 9px;
}

.was-price {
  color: var(--muted);
  font-size: 14px;
  text-decoration: line-through;
}

.current-price {
  font-size: 34px;
  letter-spacing: -0.05em;
  line-height: 1;
}

.price-row p {
  margin: 0;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.35;
  text-align: right;
}

.price-row p strong {
  color: var(--ink);
  font-size: 13px;
}

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

.quantity-card {
  display: grid;
  min-height: 82px;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 7px;
  padding: 12px 9px;
  border: 1px solid var(--line);
  background: #fafafa;
}

.quantity-card img {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.quantity-card.is-selected {
  border-color: var(--ink);
  background: var(--cream);
  box-shadow: inset 0 0 0 1px var(--ink);
}

.frequency-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 14px;
  margin-top: 14px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  background: var(--cream);
}

.frequency-wrap label {
  margin: 0;
}

.frequency-wrap select {
  width: 100%;
  padding: 10px 34px 10px 11px;
  border: 1px solid rgba(18, 18, 18, 0.3);
  border-radius: 3px;
  background: #fff;
  color: var(--ink);
  font-weight: 700;
}

.selection-note,
.purchase-fineprint {
  color: var(--muted);
  line-height: 1.5;
}

.selection-note {
  margin: 13px 0 7px;
  font-size: 10px;
}

.primary-cta,
.secondary-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-radius: 32px;
  font-weight: 700;
  letter-spacing: 0.065em;
  text-decoration: none;
  text-transform: uppercase;
}

.primary-cta {
  width: 100%;
  min-height: 58px;
  padding: 15px 22px;
  border: 1px solid var(--ink);
  background: var(--gold);
  color: var(--ink);
  font-size: 13px;
  transition:
    transform 160ms ease,
    background 160ms ease;
}

.primary-cta:hover,
.header-cta:hover,
.secondary-cta:hover {
  background: #e6c468;
}

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

.purchase-fineprint {
  margin: 0 0 13px;
  font-size: 12px;
  text-align: left;
}

.micro-proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 14px;
}

.micro-proof > span {
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding-top: 10px;
  border-top: 1px solid var(--line);
}

.micro-proof a {
  display: flex;
  flex-direction: column;
  color: inherit;
  text-decoration: none;
}

.micro-proof a:hover strong {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.micro-proof strong {
  font-size: 10px;
}

.micro-proof small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 9px;
}

.proof-band {
  padding-block: 28px;
  background: var(--ink);
  color: #fff;
}

.proof-band-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.proof-band p {
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 4px 28px;
  border-right: 1px solid var(--line-light);
  text-align: center;
}

.proof-band p:first-child {
  padding-left: 0;
}

.proof-band p:last-child {
  padding-right: 0;
  border-right: 0;
}

.proof-band strong {
  color: var(--gold);
  font-size: 22px;
  letter-spacing: -0.04em;
}

.proof-band span {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-heading h2,
.mid-cta h2,
.ritual-copy h2,
.story-copy h2,
.final-copy h2,
.faq-intro h2 {
  font-size: clamp(42px, 5.5vw, 76px);
}

.section-heading > p:last-child,
.split-heading > p,
.centre-heading > p:last-child,
.ugc-copy > p,
.faq-intro > p {
  color: var(--muted);
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: 56px;
  align-items: end;
  margin-bottom: 44px;
}

.split-heading > p {
  max-width: 460px;
  margin: 0;
  justify-self: end;
  font-size: 14px;
}

.centre-heading {
  max-width: 820px;
  margin: 0 auto 54px;
  text-align: center;
}

.centre-heading > p:last-child {
  max-width: 690px;
  margin: 18px auto 0;
}

.video-section {
  overflow: hidden;
  background: #fff;
}

.video-rail,
.review-rail {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  padding: 4px 2px 22px;
  scroll-snap-type: x mandatory;
  scrollbar-color: var(--gold) rgba(18, 18, 18, 0.12);
  scrollbar-width: thin;
}

.video-shell {
  position: relative;
  overflow: hidden;
  flex: 0 0 auto;
  background: var(--ink);
  scroll-snap-align: start;
}

.video-shell.vertical {
  width: min(290px, 25vw);
  aspect-ratio: 9 / 16;
  max-height: 540px;
}

.video-trigger {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  overflow: hidden;
  border: 0;
  background: var(--charcoal);
  color: #fff;
  cursor: pointer;
  text-align: left;
}

.video-trigger > img {
  width: 100%;
  height: 100%;
  opacity: 0.88;
  object-fit: cover;
  transition:
    transform 260ms ease,
    opacity 260ms ease;
}

.video-trigger:hover > img {
  transform: scale(1.025);
  opacity: 1;
}

.video-shell iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.video-shell.is-loaded iframe {
  height: calc(100% - 42px);
}

.video-fallback {
  display: grid;
  height: 42px;
  place-items: center;
  border-top: 1px solid var(--line-light);
  background: var(--ink);
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
}

.video-fallback:hover {
  color: var(--gold);
}

.play-icon {
  position: absolute;
  z-index: 2;
  top: 22px;
  right: 20px;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  padding-left: 3px;
  border: 1px solid var(--ink);
  border-radius: 50%;
  background: var(--gold);
  color: var(--ink);
  font-size: 15px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.2);
}

.video-caption {
  position: absolute;
  right: 14px;
  bottom: 14px;
  left: 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 14px;
  background: rgba(18, 18, 18, 0.9);
}

.video-caption small {
  color: var(--gold);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.video-caption strong {
  font-size: 14px;
  line-height: 1.25;
}

.ugc-section {
  padding-block: 104px;
  background: var(--ink);
  color: #fff;
}

.ugc-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(42px, 7vw, 100px);
  align-items: start;
}

.ugc-copy {
  position: sticky;
  top: 116px;
}

.ugc-copy h2 {
  margin-bottom: 24px;
  font-size: clamp(46px, 6vw, 78px);
}

.ugc-copy > p {
  max-width: 430px;
  color: rgba(255, 255, 255, 0.68);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 5px;
  border-bottom: 1px solid currentColor;
  color: currentColor;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
}

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

.ugc-grid figure {
  position: relative;
  min-height: 230px;
  margin: 0;
  overflow: hidden;
}

.ugc-grid .ugc-tall {
  grid-row: span 2;
}

.ugc-grid .ugc-wide {
  grid-column: span 2;
}

.ugc-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease;
}

.ugc-grid figure:hover img {
  transform: scale(1.025);
}

.ugc-grid figcaption {
  position: absolute;
  right: 10px;
  bottom: 10px;
  padding: 6px 8px;
  background: rgba(18, 18, 18, 0.82);
  color: #fff;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.why-section {
  background: var(--cream);
}

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

.benefit-grid article {
  min-height: 300px;
  padding: 28px;
  border: 1px solid rgba(18, 18, 18, 0.13);
  background: #fff;
}

.benefit-number {
  display: block;
  margin-bottom: 70px;
  color: var(--gold-deep);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.benefit-grid h3 {
  margin-bottom: 16px;
  font-size: 28px;
}

.benefit-grid p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
}

.product-proof-image {
  background: var(--ink);
}

.product-proof-image img {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
}

.ingredients-section {
  background: #fff;
}

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

.ingredient-grid article {
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--cream);
}

.ingredient-grid img {
  width: 100%;
  aspect-ratio: 1.55 / 1;
  object-fit: cover;
}

.ingredient-grid article > div {
  min-height: 210px;
  padding: 24px;
}

.ingredient-grid span {
  color: var(--gold-deep);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.ingredient-grid h3 {
  margin: 10px 0 12px;
  font-size: 23px;
}

.ingredient-grid p,
.ingredient-note {
  color: var(--muted);
  font-size: 13px;
}

.ingredient-grid p {
  margin-bottom: 0;
}

.ingredient-note {
  margin: 24px 0 0;
  text-align: center;
}

.mid-cta {
  padding-block: 58px;
  background: var(--gold);
}

.mid-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.mid-cta h2 {
  max-width: 760px;
  font-size: clamp(38px, 4.5vw, 62px);
}

.mid-cta .eyebrow {
  color: #3e3213;
}

.secondary-cta {
  flex: 0 0 auto;
  min-width: 250px;
  padding: 16px 22px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: #fff;
  font-size: 12px;
}

.ritual-section {
  background: var(--cream);
}

.ritual-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(400px, 0.95fr);
  gap: clamp(44px, 7vw, 94px);
  align-items: center;
}

.ritual-image {
  overflow: hidden;
  max-height: 660px;
}

.ritual-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ritual-copy ol {
  margin: 40px 0 30px;
  padding: 0;
  list-style: none;
}

.ritual-copy li {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 16px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

.ritual-copy li:last-child {
  border-bottom: 1px solid var(--line);
}

.ritual-copy li > span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: var(--gold);
  font-size: 12px;
  font-weight: 700;
}

.ritual-copy li strong {
  font-size: 15px;
}

.ritual-copy li p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.taste-callout {
  padding: 18px;
  border-left: 3px solid var(--gold);
  background: #fff;
  color: var(--muted);
  font-size: 13px;
}

.taste-callout strong {
  color: var(--ink);
}

.reviews-section {
  overflow: hidden;
  background: var(--ink);
  color: #fff;
}

.reviews-section .eyebrow {
  color: var(--gold);
}

.reviews-head {
  display: grid;
  grid-template-columns: 0.55fr 1.35fr 0.55fr;
  gap: 40px;
  align-items: end;
  margin-bottom: 50px;
}

.review-score > strong,
.recommend-score > strong {
  display: block;
  color: var(--gold);
  font-size: clamp(54px, 6vw, 86px);
  letter-spacing: -0.07em;
  line-height: 0.9;
}

.review-score p,
.recommend-score p {
  max-width: 210px;
  margin: 9px 0 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 11px;
}

.recommend-score {
  text-align: right;
}

.recommend-score p {
  margin-left: auto;
}

.reviews-head .section-heading h2 {
  font-size: clamp(40px, 5vw, 70px);
}

.review-rail {
  gap: 14px;
  scrollbar-color: var(--gold) rgba(255, 255, 255, 0.15);
}

.review-card {
  display: flex;
  width: min(400px, 78vw);
  min-height: 340px;
  flex: 0 0 auto;
  flex-direction: column;
  justify-content: space-between;
  padding: 26px;
  border: 1px solid var(--line-light);
  background: var(--charcoal);
  scroll-snap-align: start;
}

.featured-review {
  background: var(--gold);
  color: var(--ink);
}

.featured-review .stars {
  color: var(--ink);
}

.review-card blockquote {
  margin: 34px 0;
  font-size: 18px;
  line-height: 1.55;
}

.review-card footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 14px;
  padding-top: 14px;
  border-top: 1px solid currentColor;
}

.review-card footer strong {
  font-size: 12px;
}

.review-card footer span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 9px;
  text-align: right;
}

.featured-review footer span {
  color: rgba(18, 18, 18, 0.68);
}

.review-disclaimer {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: 9px;
}

.story-section {
  background: #ede7da;
}

.story-grid {
  display: grid;
  grid-template-columns: minmax(380px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(44px, 7vw, 96px);
  align-items: center;
}

.story-copy > p:not(.eyebrow):not(.founder-signoff) {
  max-width: 650px;
  color: #68645d;
}

.story-copy h2 {
  margin-bottom: 26px;
  font-size: clamp(42px, 5vw, 68px);
}

.story-copy blockquote {
  margin: 32px 0 10px;
  padding: 20px 0 20px 22px;
  border-left: 3px solid var(--gold);
  font-size: 20px;
  font-weight: 700;
}

.founder-signoff {
  color: var(--gold-deep);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.founder-video {
  aspect-ratio: 16 / 9;
  box-shadow: var(--shadow);
}

.founder-video .video-caption {
  right: 20px;
  bottom: 20px;
  left: 20px;
}

.standards-section {
  padding-block: 52px;
  border-block: 1px solid var(--line);
  background: #fff;
}

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

.standards-grid article {
  padding: 0 36px;
  border-right: 1px solid var(--line);
}

.standards-grid article:first-child {
  padding-left: 0;
}

.standards-grid article:last-child {
  padding-right: 0;
  border-right: 0;
}

.standards-grid article > span {
  display: block;
  margin-bottom: 22px;
  color: var(--gold-deep);
  font-size: 28px;
}

.standards-grid h3 {
  margin-bottom: 10px;
  font-size: 20px;
}

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

.faq-section {
  background: var(--cream);
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.68fr) minmax(0, 1.32fr);
  gap: clamp(50px, 8vw, 120px);
  align-items: start;
}

.faq-intro {
  position: sticky;
  top: 116px;
}

.faq-intro h2 {
  margin-bottom: 22px;
}

.faq-intro .text-link {
  margin-top: 16px;
}

.faq-list details {
  border-top: 1px solid var(--line);
}

.faq-list details:last-child {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 700;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span {
  color: var(--gold-deep);
  font-size: 25px;
  font-weight: 400;
  transition: transform 160ms ease;
}

.faq-list details[open] summary span {
  transform: rotate(45deg);
}

.faq-list details p {
  max-width: 760px;
  margin: -4px 54px 24px 0;
  color: var(--muted);
  font-size: 13px;
}

.final-offer {
  background: var(--ink);
  color: #fff;
}

.final-offer-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(420px, 1.06fr);
  gap: clamp(44px, 8vw, 112px);
  align-items: center;
}

.final-product {
  overflow: hidden;
  max-height: 620px;
}

.final-product img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.final-copy .eyebrow {
  color: var(--gold);
}

.final-copy > p:not(.eyebrow):not(.purchase-fineprint) {
  margin: 20px 0 24px;
  color: rgba(255, 255, 255, 0.68);
}

.final-copy ul {
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
}

.final-copy li {
  padding: 9px 0;
  border-bottom: 1px solid var(--line-light);
  font-size: 12px;
}

.final-copy li span {
  margin-right: 9px;
  color: var(--gold);
}

.final-copy .purchase-fineprint {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.48);
}

.site-footer {
  padding: 68px 0 26px;
  background: var(--charcoal);
  color: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 0.7fr);
  gap: 44px;
}

.footer-grid img {
  width: 200px;
  height: auto;
}

.footer-grid > div:first-child p {
  max-width: 320px;
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 12px;
}

.footer-grid h2 {
  margin-bottom: 18px;
  color: var(--gold);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-grid a {
  display: block;
  width: fit-content;
  margin: 10px 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
}

.footer-grid a:hover {
  color: var(--gold);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 52px;
  padding-top: 20px;
  border-top: 1px solid var(--line-light);
}

.footer-bottom p,
.footer-bottom a {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 9px;
  text-decoration: none;
}

.mobile-sticky {
  display: none;
}

@media (max-width: 1080px) {
  .site-header nav {
    gap: 18px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 0.95fr) minmax(390px, 1.05fr);
    gap: 34px;
  }

  .purchase-card h1 {
    font-size: clamp(44px, 5.5vw, 62px);
  }

  .quantity-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .quantity-card img {
    margin-inline: auto;
  }

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

  .reviews-head {
    grid-template-columns: 0.52fr 1.25fr 0.52fr;
    gap: 24px;
  }
}

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

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

  .section-pad {
    padding-block: 78px;
  }

  .site-header {
    grid-template-columns: 1fr auto;
    min-height: 64px;
    padding-inline: 18px;
  }

  .brand-link img {
    width: 164px;
  }

  .site-header nav {
    display: none;
  }

  .header-cta {
    padding: 10px 15px;
    font-size: 10px;
  }

  .hero-grid,
  .ritual-grid,
  .story-grid,
  .final-offer-grid {
    grid-template-columns: 1fr;
  }

  .product-gallery {
    position: static;
    max-width: 680px;
    margin-inline: auto;
  }

  .product-frame {
    max-height: 68svh;
  }

  .purchase-card {
    max-width: 680px;
    margin-inline: auto;
  }

  .quantity-card {
    grid-template-columns: auto 1fr;
    text-align: left;
  }

  .quantity-card img {
    margin: 0;
  }

  .proof-band-grid {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 24px;
  }

  .proof-band p:nth-child(2) {
    border-right: 0;
  }

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

  .split-heading > p {
    max-width: 640px;
    justify-self: start;
  }

  .video-shell.vertical {
    width: min(290px, 42vw);
  }

  .ugc-layout,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .ugc-copy,
  .faq-intro {
    position: static;
  }

  .benefit-grid {
    grid-template-columns: 1fr;
  }

  .benefit-grid article {
    min-height: 220px;
  }

  .benefit-number {
    margin-bottom: 36px;
  }

  .mid-cta-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .ritual-image,
  .final-product {
    max-height: 620px;
  }

  .reviews-head {
    grid-template-columns: 1fr 1fr;
  }

  .reviews-head .section-heading {
    grid-column: 1 / -1;
    grid-row: 1;
  }

  .review-score,
  .recommend-score {
    text-align: left;
  }

  .recommend-score p {
    margin-left: 0;
  }

  .standards-grid {
    grid-template-columns: 1fr;
  }

  .standards-grid article,
  .standards-grid article:first-child,
  .standards-grid article:last-child {
    padding: 24px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .standards-grid article:last-child {
    border-bottom: 0;
  }

  .footer-grid {
    grid-template-columns: 1.3fr 1fr 1fr;
  }

  .footer-grid > div:first-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  body {
    padding-bottom: calc(76px + env(safe-area-inset-bottom));
  }

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

  .section-pad {
    padding-block: 64px;
  }

  .announcement {
    min-height: 32px;
    padding: 6px 12px;
  }

  .announcement p {
    gap: 7px;
    font-size: 9px;
  }

  .site-header {
    min-height: 58px;
    padding: 9px 14px;
  }

  .brand-link img {
    width: 142px;
  }

  .header-cta {
    padding: 9px 12px;
    letter-spacing: 0.04em;
  }

  .hero {
    padding-top: 18px;
  }

  .hero-grid {
    gap: 28px;
  }

  .product-frame {
    width: min(100%, 430px);
    max-height: 48svh;
    margin-inline: auto;
  }

  .frame-kicker {
    top: 18px;
    left: 22px;
    font-size: 8px;
  }

  .frame-stamp {
    right: 20px;
    bottom: 20px;
    width: 82px;
    height: 82px;
  }

  .frame-stamp strong {
    font-size: 22px;
  }

  .frame-stamp span {
    font-size: 6px;
  }

  .gallery-thumbs {
    justify-content: center;
  }

  .gallery-thumb {
    min-width: 118px;
    font-size: 10px;
  }

  .rating-line {
    margin-bottom: 13px;
  }

  .purchase-card h1 {
    font-size: clamp(38px, 12vw, 52px);
  }

  .hero-copy {
    margin-top: 17px;
    font-size: 14px;
  }

  .quick-wins {
    margin-bottom: 20px;
    gap: 8px 15px;
    font-size: 10px;
  }

  .purchase-controls {
    padding: 14px;
  }

  .choice-card > span {
    min-height: 66px;
    padding: 11px 10px;
  }

  .choice-card strong {
    font-size: 11px;
  }

  .choice-card small {
    font-size: 9px;
  }

  .price-row {
    margin: 16px 0;
  }

  .current-price {
    font-size: 30px;
  }

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

  .quantity-card {
    min-height: 104px;
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 11px 5px 8px;
    text-align: center;
  }

  .quantity-card img {
    width: 34px;
    height: 34px;
    margin-inline: auto;
  }

  .quantity-card strong {
    font-size: 10px;
  }

  .quantity-card small {
    font-size: 8px;
  }

  .quantity-card > em {
    right: 3px;
    font-size: 6px;
  }

  .frequency-wrap {
    grid-template-columns: 0.8fr 1.2fr;
    padding: 10px;
  }

  .primary-cta {
    min-height: 54px;
    padding: 13px 18px;
    font-size: 11px;
  }

  .micro-proof {
    gap: 7px;
  }

  .micro-proof strong {
    font-size: 9px;
  }

  .micro-proof small {
    font-size: 8px;
  }

  .proof-band {
    padding-block: 22px;
  }

  .proof-band p {
    padding-inline: 10px;
  }

  .proof-band strong {
    font-size: 18px;
  }

  .proof-band span {
    font-size: 8px;
  }

  .section-heading h2,
  .mid-cta h2,
  .ritual-copy h2,
  .story-copy h2,
  .final-copy h2,
  .faq-intro h2 {
    font-size: clamp(38px, 12vw, 52px);
  }

  .split-heading {
    margin-bottom: 30px;
  }

  .video-rail,
  .review-rail {
    margin-right: -14px;
  }

  .video-shell.vertical {
    width: 75vw;
    max-width: 294px;
  }

  .ugc-section {
    padding-block: 64px;
  }

  .ugc-copy h2 {
    font-size: clamp(44px, 13vw, 60px);
  }

  .ugc-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 7px;
  }

  .ugc-grid figure {
    min-height: 175px;
  }

  .ugc-grid .ugc-tall {
    grid-row: span 1;
  }

  .ugc-grid .ugc-wide {
    grid-column: span 2;
  }

  .benefit-grid article {
    min-height: 210px;
    padding: 23px;
  }

  .benefit-grid h3 {
    font-size: 26px;
  }

  .product-proof-image img {
    max-height: none;
  }

  .ingredient-grid {
    display: grid;
    grid-auto-columns: 82vw;
    grid-auto-flow: column;
    grid-template-columns: none;
    gap: 10px;
    overflow-x: auto;
    margin-right: -14px;
    padding: 2px 14px 16px 0;
    scroll-snap-type: x mandatory;
  }

  .ingredient-grid article {
    scroll-snap-align: start;
  }

  .ingredient-grid article > div {
    min-height: 190px;
    padding: 20px;
  }

  .ingredient-grid h3 {
    font-size: 21px;
  }

  .ingredient-note {
    text-align: left;
  }

  .mid-cta {
    padding-block: 46px;
  }

  .secondary-cta {
    width: 100%;
  }

  .ritual-image,
  .final-product {
    max-height: 430px;
  }

  .ritual-copy ol {
    margin-top: 30px;
  }

  .reviews-head {
    gap: 26px 16px;
  }

  .review-score > strong,
  .recommend-score > strong {
    font-size: 54px;
  }

  .review-card {
    width: 82vw;
    min-height: 330px;
    padding: 22px;
  }

  .review-card blockquote {
    font-size: 16px;
  }

  .story-copy blockquote {
    font-size: 17px;
  }

  .founder-video {
    width: calc(100% + 28px);
    margin-left: -14px;
  }

  .standards-section {
    padding-block: 34px;
  }

  .faq-list summary {
    min-height: 70px;
    font-size: 13px;
  }

  .faq-list details p {
    margin-right: 28px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 34px 18px;
  }

  .footer-grid > div:first-child {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .mobile-sticky {
    position: fixed;
    z-index: 80;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    grid-template-columns: 48px 1fr auto;
    align-items: center;
    gap: 9px;
    min-height: 70px;
    padding: 8px 10px calc(8px + env(safe-area-inset-bottom));
    border-top: 1px solid rgba(217, 179, 81, 0.45);
    background: var(--ink);
    color: #fff;
    transform: translateY(0);
    transition: transform 180ms ease;
  }

  .mobile-sticky.is-hidden {
    transform: translateY(115%);
  }

  .mobile-sticky > img {
    width: 48px;
    height: 48px;
    object-fit: cover;
  }

  .mobile-sticky > div {
    display: flex;
    min-width: 0;
    flex-direction: column;
  }

  .mobile-sticky strong {
    overflow: hidden;
    font-size: 9px;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .mobile-sticky span {
    color: rgba(255, 255, 255, 0.58);
    font-size: 8px;
  }

  .mobile-sticky > a {
    padding: 11px 14px;
    border-radius: 28px;
    background: var(--gold);
    color: var(--ink);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-decoration: none;
    text-transform: uppercase;
  }
}

/* Softer conversion system and campaign-specific modules */
.product-frame,
.ritual-image,
.final-product {
  border-radius: var(--radius-media);
}

.product-frame::before,
.product-frame::after {
  display: none;
}

.frame-kicker,
.video-caption {
  border-radius: var(--radius-control);
}

.purchase-controls {
  border-radius: var(--radius-card);
}

.choice-card > span,
.quantity-card,
.frequency-wrap {
  border-radius: var(--radius-control);
}

.frequency-wrap select {
  border-radius: 10px;
}

.offer-recap {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-top: 14px;
}

.offer-recap > span {
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: 12px;
  border-radius: 12px;
  background: var(--cream);
}

.offer-recap strong {
  font-size: 9px;
  line-height: 1.25;
}

.offer-recap small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 8px;
  line-height: 1.35;
}

.offer-sentinel {
  display: block;
  width: 1px;
  height: 1px;
}

.video-shell,
.benefit-grid article,
.ingredient-grid article,
.review-card,
.founder-video,
.taste-callout {
  border-radius: var(--radius-card);
}

.founder-video {
  border-radius: var(--radius-media);
}

.ugc-video-rail {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  padding: 4px 2px 22px;
  scroll-padding-inline: 2px;
  scroll-snap-type: x mandatory;
  scrollbar-color: var(--gold) rgba(18, 18, 18, 0.12);
  scrollbar-width: thin;
}

.ugc-video-card {
  width: min(292px, 24vw);
  min-width: 252px;
  flex: 0 0 auto;
  overflow: hidden;
  border: 1px solid rgba(18, 18, 18, 0.12);
  border-radius: 28px;
  background: var(--cream);
  scroll-snap-align: start;
}

.ugc-video-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 9 / 16;
  border-radius: 26px 26px 18px 18px;
  background: var(--charcoal);
}

.ugc-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.ugc-video-actions {
  position: absolute;
  z-index: 3;
  inset: 0;
  pointer-events: none;
}

.ugc-video-actions button {
  position: absolute;
  display: grid;
  width: 44px;
  height: 44px;
  min-height: 44px;
  place-items: center;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #fff;
  cursor: pointer;
  font-size: 0;
  pointer-events: auto;
  text-indent: -999px;
  white-space: nowrap;
}

.ugc-video-actions button:focus-visible {
  outline: 0;
  box-shadow: none;
}

.ugc-video-actions button::before {
  position: absolute;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 50%;
  background: rgba(18, 18, 18, 0.78);
  content: "";
  transition:
    border-color 160ms ease,
    background-color 160ms ease;
  backdrop-filter: blur(10px);
}

.ugc-video-actions button:focus-visible::before {
  outline: 2px solid var(--gold) !important;
  outline-offset: 2px;
}

.ugc-video-actions button[aria-pressed="true"].ugc-sound-toggle::before {
  border-color: var(--gold);
}

.ugc-sound-toggle {
  top: 5px;
  right: 5px;
}

.ugc-sound-toggle::after {
  position: relative;
  z-index: 1;
  width: 17px;
  height: 17px;
  background: currentColor;
  content: "";
  text-indent: 0;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolygon points='11 5 6 9 2 9 2 15 6 15 11 19 11 5'/%3E%3Cline x1='22' y1='9' x2='16' y2='15'/%3E%3Cline x1='16' y1='9' x2='22' y2='15'/%3E%3C/svg%3E")
    center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolygon points='11 5 6 9 2 9 2 15 6 15 11 19 11 5'/%3E%3Cline x1='22' y1='9' x2='16' y2='15'/%3E%3Cline x1='16' y1='9' x2='22' y2='15'/%3E%3C/svg%3E")
    center / contain no-repeat;
}

.ugc-sound-toggle[aria-pressed="true"]::after {
  background: var(--gold);
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolygon points='11 5 6 9 2 9 2 15 6 15 11 19 11 5'/%3E%3Cpath d='M15.5 8.5a5 5 0 0 1 0 7'/%3E%3Cpath d='M18 5.5a9 9 0 0 1 0 13'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolygon points='11 5 6 9 2 9 2 15 6 15 11 19 11 5'/%3E%3Cpath d='M15.5 8.5a5 5 0 0 1 0 7'/%3E%3Cpath d='M18 5.5a9 9 0 0 1 0 13'/%3E%3C/svg%3E");
}

.ugc-play-toggle {
  right: 5px;
  bottom: 5px;
}

.ugc-play-toggle::after {
  position: relative;
  z-index: 1;
  color: #fff;
  content: "Ⅱ";
  font-size: 11px;
  text-indent: 0;
}

.ugc-play-toggle[aria-pressed="false"]::after {
  padding-left: 2px;
  content: "▶";
  font-size: 9px;
}

.tap-sound {
  position: absolute;
  z-index: 2;
  bottom: 14px;
  left: 14px;
  margin: 0;
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 999px;
  background: rgba(18, 18, 18, 0.72);
  color: #fff;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: opacity 160ms ease;
  backdrop-filter: blur(10px);
}

.ugc-video-frame.is-audible .tap-sound {
  opacity: 0;
}

.ugc-video-trigger {
  position: absolute;
  z-index: 3;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  border-radius: inherit;
  background: transparent;
  cursor: pointer;
}

.ugc-video-trigger:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: -5px;
  box-shadow: none;
}

.ugc-video-trigger::before,
.ugc-video-trigger::after {
  position: absolute;
  top: 50%;
  left: 50%;
  content: "";
  opacity: 1;
  transition: opacity 200ms ease;
}

.ugc-video-trigger::before {
  width: 54px;
  height: 54px;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 50%;
  background: rgba(18, 18, 18, 0.76);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(8px);
}

.ugc-video-trigger::after {
  width: 0;
  height: 0;
  transform: translate(-38%, -50%);
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 11px solid #fff;
}

.ugc-video-frame.is-playing .ugc-video-trigger::before,
.ugc-video-frame.is-playing .ugc-video-trigger::after {
  opacity: 0;
}

.ugc-video-frame.is-playing .ugc-video-trigger::after {
  width: 13px;
  height: 16px;
  transform: translate(-50%, -50%);
  border: 0;
  background: linear-gradient(
    90deg,
    #fff 0 4px,
    transparent 4px 9px,
    #fff 9px 13px
  );
}

.ugc-video-copy {
  min-height: 154px;
  padding: 20px;
}

.ugc-video-copy small {
  display: block;
  margin-bottom: 11px;
  color: var(--gold-deep);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.ugc-video-copy h3 {
  font-size: 22px;
  letter-spacing: -0.035em;
}

.ugc-video-copy p,
.ugc-video-note {
  color: var(--muted);
  font-size: 11px;
}

.ugc-video-copy p {
  margin: 10px 0 0;
}

.ugc-video-note {
  max-width: 820px;
  margin: 16px 0 0;
}

.ugc-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(12px, 1.5vw, 20px);
}

.ugc-grid figure,
.ugc-grid .ugc-tall,
.ugc-grid .ugc-wide {
  min-height: 0;
  grid-column: auto;
  grid-row: auto;
  aspect-ratio: 1;
  border-radius: var(--radius-card);
}

.ugc-grid figcaption {
  border-radius: 999px;
}

.product-proof-image {
  padding-block: 48px;
}

.product-proof-frame {
  overflow: hidden;
  padding: clamp(14px, 2vw, 26px);
  border-radius: var(--radius-media);
  background: #fff;
}

.product-proof-image picture {
  display: block;
}

.product-proof-image img {
  width: 100%;
  height: auto;
  max-height: none;
  object-fit: contain;
}

.product-proof-frame > p {
  margin: 14px 10px 0;
  color: var(--muted);
  font-size: 9px;
  text-align: center;
}

.ingredient-grid img {
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
}

.comparison-section {
  overflow: hidden;
  background: #fff;
}

.comparison-heading {
  align-items: end;
}

.comparison-swipe {
  display: none;
}

.comparison-scroll {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius-media);
  background: var(--cream);
  box-shadow: var(--shadow);
  scrollbar-color: var(--gold) rgba(18, 18, 18, 0.12);
  scrollbar-width: thin;
}

.comparison-table {
  width: 100%;
  min-width: 850px;
  border-spacing: 0;
  table-layout: fixed;
  text-align: left;
}

.comparison-table th,
.comparison-table td {
  padding: 22px 24px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

.comparison-table th:last-child,
.comparison-table td:last-child {
  border-right: 0;
}

.comparison-table tbody tr:last-child > * {
  border-bottom: 0;
}

.comparison-table thead th {
  height: 112px;
  background: var(--ink);
  color: #fff;
  font-size: 12px;
  letter-spacing: 0.04em;
  line-height: 1.35;
  text-transform: uppercase;
}

.comparison-table thead th:first-child {
  color: rgba(255, 255, 255, 0.64);
}

.comparison-table thead .is-highlighted {
  background: var(--gold);
  color: var(--ink);
}

.comparison-table thead small {
  display: block;
  margin-top: 6px;
  font-size: 9px;
  letter-spacing: 0.12em;
}

.compare-product {
  display: block;
  font-weight: 700;
}

.comparison-table tbody th {
  background: #fff;
  font-size: 12px;
}

.comparison-table tbody td {
  background: #faf9f6;
}

.comparison-table tbody .is-highlighted {
  background: rgba(217, 179, 81, 0.16);
}

.comparison-table td strong,
.comparison-table td span {
  display: block;
}

.comparison-table td strong {
  font-size: 12px;
  line-height: 1.35;
}

.comparison-table td span {
  margin-top: 7px;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.45;
}

.comparison-table td.is-highlighted span {
  color: #58544c;
}

.comparison-note {
  max-width: 850px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 9px;
}

.comparison-cta {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  gap: 18px;
  margin-top: 22px;
  padding: 13px 20px;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-decoration: none;
  text-transform: uppercase;
}

.faq-list details {
  margin-bottom: 10px;
  padding-inline: 20px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.62);
}

.faq-list details:last-child {
  border-bottom: 1px solid var(--line);
}

.offer-dock {
  position: fixed;
  z-index: 80;
  bottom: 16px;
  left: 50%;
  display: grid;
  width: min(1180px, calc(100% - 32px));
  grid-template-columns: 64px minmax(220px, 1fr) auto auto;
  align-items: center;
  gap: 16px;
  min-height: 84px;
  padding: 10px 12px;
  border: 1px solid rgba(217, 179, 81, 0.48);
  border-radius: 24px;
  background: rgba(18, 18, 18, 0.96);
  color: #fff;
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.32);
  transform: translate(-50%, 0);
  transition:
    transform 200ms ease,
    opacity 160ms ease,
    visibility 160ms ease;
  backdrop-filter: blur(14px);
}

.offer-dock.is-hidden {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, calc(100% + 40px));
}

.offer-dock > img {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  object-fit: cover;
}

.offer-dock-copy {
  display: grid;
  min-width: 0;
}

.offer-dock-copy small {
  margin-bottom: 3px;
  color: var(--gold);
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.offer-dock-copy strong {
  overflow: hidden;
  font-size: 12px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.offer-dock-copy span {
  color: rgba(255, 255, 255, 0.6);
  font-size: 9px;
}

.offer-dock-change {
  min-height: 44px;
  padding: 13px 8px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 9px;
  font-weight: 700;
  text-underline-offset: 4px;
  text-transform: uppercase;
}

.offer-dock-cta {
  display: flex;
  min-width: 230px;
  min-height: 52px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 18px;
  border-radius: 999px;
  background: var(--gold);
  color: var(--ink);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-decoration: none;
  text-transform: uppercase;
}

@media (max-width: 860px) {
  .ugc-video-card {
    width: min(292px, 42vw);
  }

  .comparison-scroll {
    margin-right: -18px;
    border-radius: 24px 0 0 24px;
  }

  .offer-dock {
    grid-template-columns: 56px minmax(160px, 1fr) auto;
  }

  .offer-dock > img {
    width: 56px;
    height: 56px;
  }

  .offer-dock-change {
    display: none;
  }

  .offer-dock-cta {
    min-width: 190px;
  }
}

@media (max-width: 640px) {
  body {
    padding-bottom: 0;
  }

  .offer-recap {
    grid-template-columns: 1fr;
  }

  .offer-recap > span {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .ugc-video-rail {
    margin-right: -14px;
  }

  .ugc-video-card {
    width: 78vw;
    min-width: 250px;
  }

  .ugc-video-copy {
    min-height: 142px;
  }

  .ugc-grid {
    gap: 9px;
  }

  .ugc-grid figure,
  .ugc-grid .ugc-wide,
  .ugc-grid .ugc-tall {
    min-height: 0;
    grid-column: auto;
    grid-row: auto;
    aspect-ratio: 1;
  }

  .product-proof-image {
    padding-block: 28px;
  }

  .product-proof-frame {
    padding: 10px;
    border-radius: 24px;
  }

  .product-proof-frame > p {
    margin: 12px 6px 2px;
    text-align: left;
  }

  .comparison-table th,
  .comparison-table td {
    padding: 18px;
  }

  .comparison-swipe {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: -12px 0 12px;
    color: var(--gold-deep);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .offer-dock {
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    grid-template-columns: 48px minmax(0, 1fr) auto;
    gap: 9px;
    min-height: 76px;
    padding: 8px 10px calc(8px + env(safe-area-inset-bottom));
    border-right: 0;
    border-bottom: 0;
    border-left: 0;
    border-radius: 22px 22px 0 0;
    transform: translateY(0);
  }

  .offer-dock.is-hidden {
    transform: translateY(120%);
  }

  .offer-dock > img {
    width: 48px;
    height: 48px;
    border-radius: 14px;
  }

  .offer-dock-copy small {
    display: none;
  }

  .offer-dock-copy strong {
    font-size: 9px;
  }

  .offer-dock-copy span {
    font-size: 8px;
  }

  .offer-dock-cta {
    min-width: 0;
    min-height: 48px;
    padding: 12px 14px;
    font-size: 9px;
  }

  .offer-dock-cta span:last-child {
    display: none;
  }
}

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

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