:root {
  --ink: #262626;
  --ink-deep: #1a1a1a;
  --ink-soft: #6d7175;
  --amber: #7e282e;
  --amber-deep: #641f24;
  --amber-soft: #ddd8c7;
  --rose: #e9d9d3;
  --paper: #faf8f5;
  --paper-deep: #f0ece6;
  --white: #ffffff;
  --green: #2e7d4f;
  --red: #c0392b;
  --line: #e9e4dc;
  --radius: 14px;
  --shadow: 0 8px 28px rgba(38, 38, 38, .09);
  --shadow-lg: 0 18px 50px rgba(38, 38, 38, .16);
}

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

html {
  scroll-behavior: smooth;
}

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

body,
button,
a {
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--ink);
}

h1,
h2,
h3 {
  font-family: "Playfair Display", Georgia, serif;
}

.skip-link {
  background: var(--white);
  border: 2px solid var(--amber);
  left: 12px;
  padding: 10px 14px;
  position: fixed;
  top: 12px;
  transform: translateY(-160%);
  z-index: 1000;
}

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

:focus-visible {
  outline: 3px solid rgba(126, 40, 46, .45);
  outline-offset: 3px;
}

.topbar {
  background: var(--ink-deep);
  color: #cfcac2;
  font-size: 12px;
  letter-spacing: .1em;
  line-height: 1.5;
  padding: 9px 14px;
  text-align: center;
  text-transform: uppercase;
}

.topbar b {
  color: var(--white);
}

.topbar span {
  color: #817c75;
  margin: 0 8px;
}

.masthead {
  align-items: center;
  backdrop-filter: saturate(170%) blur(14px);
  background: rgba(250, 248, 245, .88);
  border-bottom: 1px solid rgba(38, 38, 38, .08);
  display: flex;
  justify-content: space-between;
  padding: 13px 20px;
  position: sticky;
  top: 0;
  z-index: 50;
}

.logo {
  align-items: center;
  display: flex;
  min-height: 34px;
}

.logo img {
  height: 22px;
  object-fit: contain;
  width: auto;
}

.btn {
  background: var(--ink);
  border: 0;
  border-radius: 0;
  box-shadow: 0 4px 14px rgba(38, 38, 38, .2);
  color: var(--white);
  cursor: pointer;
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .14em;
  line-height: 1.3;
  padding: 17px 34px;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: background .15s ease, transform .15s ease;
}

.btn:hover {
  background: #000;
  transform: translateY(-1px);
}

.btn-amber {
  background: var(--amber);
  box-shadow: 0 6px 18px rgba(126, 40, 46, .32);
}

.btn-amber:hover {
  background: var(--amber-deep);
}

.btn-sm {
  font-size: 11px;
  padding: 11px 20px;
}

.btn-block {
  display: block;
  margin: 0 auto;
  max-width: 480px;
  width: 100%;
}

.btn-sub {
  color: var(--ink-soft);
  display: block;
  font-size: 13px;
  line-height: 1.5;
  margin-top: 10px;
  text-align: center;
}

.btn-sub--dark {
  color: #a59f96;
}

.wrap {
  margin: 0 auto;
  max-width: 760px;
  padding: 0 20px;
}

.wrap-wide {
  margin: 0 auto;
  max-width: 1080px;
  padding: 0 20px;
}

.hero {
  background: linear-gradient(180deg, var(--white) 0%, var(--paper) 100%);
  border-bottom: 1px solid #eae6df;
  padding: 34px 0 40px;
}

.hero-grid {
  align-items: center;
  display: grid;
  gap: 46px;
  grid-template-columns: 1fr .78fr;
  margin: 0 auto;
  max-width: 1080px;
  padding: 0 20px;
}

.kicker,
.eyebrow {
  color: var(--amber);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .17em;
  margin-bottom: 14px;
  text-transform: uppercase;
}

h1 {
  color: var(--ink);
  font-size: clamp(35px, 4vw, 50px);
  font-weight: 500;
  letter-spacing: -.01em;
  line-height: 1.12;
  margin-bottom: 18px;
}

h1 em,
.section-title em {
  color: var(--amber);
  font-style: italic;
  font-weight: 400;
}

.dek {
  color: var(--ink-soft);
  font-size: 19px;
  margin-bottom: 20px;
}

.rating-row {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}

.stars {
  color: var(--amber);
  font-size: 18px;
  letter-spacing: 2px;
}

.rating-copy {
  color: var(--ink-soft);
  font-size: 14px;
}

.rating-copy b {
  color: var(--ink);
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.hero-pills span {
  background: var(--white);
  border: 1px solid #e6e0d7;
  border-radius: 999px;
  color: var(--ink);
  font-size: 12.5px;
  font-weight: 600;
  padding: 7px 14px;
}

.hero-pills span::before {
  color: var(--green);
  content: "✓ ";
  font-weight: 800;
}

.hero-media {
  align-items: center;
  display: flex;
  justify-content: center;
}

.product-frame {
  aspect-ratio: 4 / 5;
  background: #f3f1ed;
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
  max-height: 61svh;
  max-width: 380px;
  overflow: hidden;
  position: relative;
  width: 100%;
}

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

.frame-badge {
  align-items: center;
  backdrop-filter: blur(6px);
  background: rgba(0, 0, 0, .58);
  border-radius: 999px;
  color: var(--white);
  display: flex;
  font-size: 11px;
  font-weight: 700;
  gap: 7px;
  left: 14px;
  letter-spacing: .08em;
  padding: 6px 12px;
  position: absolute;
  text-transform: uppercase;
  top: 14px;
}

.frame-badge i {
  background: var(--amber);
  border-radius: 50%;
  height: 7px;
  width: 7px;
}

.trustband {
  background: var(--ink-deep);
  color: #d8d3cb;
  padding: 15px 0;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  font-size: 13.5px;
  font-weight: 600;
  gap: 8px 30px;
  justify-content: center;
}

.trust-row span::before {
  color: var(--amber);
  content: "✓ ";
}

.statband {
  background: var(--white);
  border-bottom: 1px solid #eae6df;
  padding: 26px 0;
}

.stat-row {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
}

.stat-number {
  color: var(--amber);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 30px;
  font-weight: 600;
  line-height: 1;
}

.stat-label {
  color: var(--ink-soft);
  font-size: 12px;
  letter-spacing: .05em;
  line-height: 1.35;
  margin-top: 7px;
  text-transform: uppercase;
}

.standards {
  align-items: center;
  background: var(--paper-deep);
  color: var(--ink-soft);
  display: flex;
  flex-wrap: wrap;
  font-size: 11px;
  gap: 8px 28px;
  justify-content: center;
  letter-spacing: .15em;
  padding: 22px 20px;
  text-align: center;
  text-transform: uppercase;
}

.standards span + span::before {
  color: #b9b1a6;
  content: "·";
  margin-right: 28px;
}

article {
  padding: 46px 0 10px;
}

.wrap > p,
.section > p {
  margin-bottom: 22px;
}

.lead:first-letter {
  color: var(--amber);
  float: left;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 64px;
  font-weight: 600;
  line-height: .8;
  padding: 8px 10px 0 0;
}

.highlight {
  background: linear-gradient(transparent 58%, var(--amber-soft) 0);
  font-weight: 700;
}

.section {
  margin: 58px 0 0;
  scroll-margin-top: 90px;
}

.section-title {
  color: var(--ink);
  font-size: clamp(28px, 4vw, 38px);
  font-weight: 500;
  letter-spacing: -.005em;
  line-height: 1.18;
  margin-bottom: 18px;
}

.section-title--center,
.eyebrow--center {
  text-align: center;
}

.video-showcase {
  margin-left: 50%;
  transform: translateX(-50%);
  width: min(1180px, calc(100vw - 40px));
}

.video-showcase-head {
  align-items: flex-end;
  display: flex;
  gap: 28px;
  justify-content: space-between;
  margin-bottom: 22px;
}

.video-showcase-head > div:first-child {
  max-width: 650px;
}

.video-showcase-head .section-title {
  margin-bottom: 10px;
}

.video-showcase-copy {
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.5;
}

.video-rail-controls {
  display: flex;
  flex: 0 0 auto;
  gap: 8px;
}

.rail-arrow {
  align-items: center;
  appearance: none;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ink);
  cursor: pointer;
  display: inline-flex;
  font: inherit;
  font-size: 21px;
  height: 44px;
  justify-content: center;
  line-height: 1;
  transition: background .18s ease, border-color .18s ease, color .18s ease;
  width: 44px;
}

.rail-arrow:hover:not(:disabled) {
  background: var(--ink-deep);
  border-color: var(--ink-deep);
  color: var(--white);
}

.rail-arrow:disabled {
  cursor: default;
  opacity: .35;
}

.video-rail {
  -ms-overflow-style: none;
  display: flex;
  gap: 14px;
  margin: 0 -6px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  padding: 6px 6px 14px;
  scroll-behavior: smooth;
  scroll-padding-inline: 6px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.video-rail::-webkit-scrollbar {
  display: none;
  height: 0;
  width: 0;
}

.video-rail-hint {
  color: var(--ink-soft);
  font-size: 12px;
  letter-spacing: .04em;
  margin: 8px 0 0;
  text-align: center;
}

.video-card {
  appearance: none;
  aspect-ratio: 9 / 16;
  background: #d9d5cf;
  border: 0;
  border-radius: 18px;
  box-shadow: var(--shadow);
  color: var(--white);
  cursor: pointer;
  flex: 0 0 auto;
  font: inherit;
  height: min(61svh, 500px);
  overflow: hidden;
  padding: 0;
  position: relative;
  scroll-snap-align: start;
  text-align: left;
}

.video-card::after {
  background: linear-gradient(180deg, transparent 52%, rgba(12, 12, 12, .68) 100%);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
  z-index: 1;
}

.video-card video {
  background: #d9d5cf;
  height: 100%;
  inset: 0;
  object-fit: cover;
  position: absolute;
  width: 100%;
}

.video-play-disc {
  align-items: center;
  backdrop-filter: blur(8px);
  background: rgba(20, 20, 20, .38);
  border: 1px solid rgba(255, 255, 255, .72);
  border-radius: 50%;
  display: flex;
  height: 68px;
  justify-content: center;
  left: 50%;
  opacity: 1;
  pointer-events: none;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: opacity .2s ease, transform .2s ease;
  width: 68px;
  z-index: 2;
}

.video-play-disc span {
  border-bottom: 9px solid transparent;
  border-left: 15px solid var(--white);
  border-top: 9px solid transparent;
  display: block;
  margin-left: 4px;
}

.video-card.is-playing .video-play-disc {
  opacity: 0;
  transform: translate(-50%, -50%) scale(.9);
}

.video-card-label {
  bottom: 18px;
  font-size: 11px;
  font-weight: 700;
  left: 18px;
  letter-spacing: .11em;
  line-height: 1.3;
  position: absolute;
  right: 18px;
  text-transform: uppercase;
  z-index: 2;
}

.need-list {
  list-style: none;
  margin: 8px 0 28px;
}

.need-list li {
  font-size: 16.5px;
  margin-bottom: 14px;
  padding-left: 34px;
  position: relative;
}

.need-list li::before {
  color: var(--amber);
  content: "—";
  font-weight: 800;
  left: 0;
  position: absolute;
  top: 0;
}

.editorial-figure {
  margin: 30px auto 24px;
  max-width: 620px;
}

.editorial-figure img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  height: min(60svh, 580px);
  object-fit: cover;
  width: 100%;
}

.editorial-figure--wide img {
  object-position: center 44%;
}

figcaption {
  color: #a59e93;
  font-size: 13px;
  font-style: italic;
  margin-top: 8px;
  text-align: center;
}

.ingredients {
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr 1fr;
  margin: 24px 0;
}

.ingredient-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
}

.ingredient-card h3 {
  color: var(--amber);
  font-size: 17px;
  font-weight: 500;
  line-height: 1.3;
  margin-bottom: 7px;
}

.ingredient-card p {
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.55;
}

.cta-band {
  background: var(--ink-deep);
  border-radius: var(--radius);
  color: #d8d3cb;
  margin: 56px 0;
  padding: 38px 26px;
  text-align: center;
}

.cta-band h2 {
  color: var(--white);
  font-size: 27px;
  font-weight: 500;
  line-height: 1.25;
  margin-bottom: 8px;
}

.cta-band p {
  color: #a59f96;
  font-size: 15px;
  margin-bottom: 22px;
}

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

.ritual-step {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
}

.ritual-step > span {
  align-items: center;
  background: var(--amber);
  border-radius: 50%;
  color: var(--white);
  display: flex;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 17px;
  font-weight: 600;
  height: 34px;
  justify-content: center;
  margin-bottom: 12px;
  width: 34px;
}

.ritual-step h3 {
  color: var(--amber);
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 6px;
}

.ritual-step p {
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.55;
}

.testing-card {
  align-items: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: grid;
  gap: 28px;
  grid-template-columns: .76fr 1fr;
  padding: 14px;
}

.testing-card img {
  border-radius: 10px;
  height: 350px;
  object-fit: cover;
  width: 100%;
}

.testing-card p {
  color: var(--ink-soft);
  font-size: 15px;
  margin-bottom: 14px;
}

.testing-card strong {
  color: var(--amber);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.review-summary {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  justify-content: center;
  margin-bottom: 26px;
  text-align: left;
}

.review-score {
  color: var(--amber);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 54px;
  line-height: 1;
}

.review-summary p {
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.45;
}

.community-proof {
  margin: 0 0 28px;
}

.community-proof-label {
  color: var(--ink-soft);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .11em;
  margin-bottom: 12px;
  text-align: center;
  text-transform: uppercase;
}

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

.community-shot {
  aspect-ratio: 4 / 5;
  background: var(--paper-deep);
  border-radius: 12px;
  overflow: hidden;
  position: relative;
}

.community-shot::after {
  background: linear-gradient(180deg, transparent 58%, rgba(10, 10, 10, .72) 100%);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.community-shot img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.community-shot figcaption {
  bottom: 10px;
  color: var(--white);
  font-size: 11px;
  font-style: normal;
  left: 11px;
  line-height: 1.35;
  margin: 0;
  position: absolute;
  right: 11px;
  text-align: left;
  z-index: 1;
}

.community-shot figcaption span {
  display: block;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .09em;
  margin-bottom: 1px;
  text-transform: uppercase;
}

.verified {
  color: var(--green);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  white-space: nowrap;
}

.review-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: 1fr 1fr;
}

.review-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
}

.review-top {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}

.review-top .stars {
  font-size: 14px;
  letter-spacing: 1px;
}

.review-card > p {
  color: #43464a;
  font-size: 15px;
  line-height: 1.55;
  margin-bottom: 12px;
}

.review-card footer {
  color: var(--ink-soft);
  font-size: 12.5px;
  font-style: normal;
}

.review-note {
  color: var(--ink-soft);
  font-size: 12.5px;
  margin: 14px 0 0 !important;
  text-align: center;
}

.product-picker {
  background: var(--white);
  border: 2px solid var(--amber);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin: 28px auto 0;
  max-width: 390px;
  overflow: hidden;
}

.picker-ribbon {
  background: var(--amber);
  color: var(--white);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  padding: 7px;
  text-align: center;
  text-transform: uppercase;
}

.picker-image {
  align-items: center;
  background: #f5f2ed;
  display: flex;
  height: 300px;
  justify-content: center;
  overflow: hidden;
}

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

.picker-body {
  padding: 18px 20px 22px;
  text-align: center;
}

.picker-tag {
  color: var(--amber);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  margin-bottom: 3px;
  text-transform: uppercase;
}

.picker-body h3 {
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 3px;
}

.picker-price {
  font-size: 21px;
  font-weight: 800;
  margin-bottom: 8px;
}

.picker-description {
  color: var(--ink-soft);
  font-size: 13.5px;
  line-height: 1.5;
  margin: 0 auto 16px;
}

.faq h2 {
  color: var(--ink);
  font-size: 30px;
  font-weight: 500;
  margin-bottom: 18px;
}

.faq details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  margin-bottom: 10px;
  padding: 0 20px;
}

.faq summary {
  color: var(--ink);
  cursor: pointer;
  font-size: 16px;
  font-weight: 700;
  list-style: none;
  padding: 17px 28px 17px 0;
  position: relative;
}

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

.faq summary::after {
  color: var(--amber);
  content: "+";
  font-size: 22px;
  position: absolute;
  right: 0;
  top: 13px;
}

.faq details[open] summary::after {
  content: "–";
}

.faq details p {
  color: var(--ink-soft);
  font-size: 15px;
  margin: 0;
  padding-bottom: 18px;
}

.faq details p a {
  color: var(--amber);
  font-weight: 700;
}

.site-footer {
  background: var(--ink-deep);
  color: #8f8a82;
  font-size: 12px;
  line-height: 1.8;
  margin-top: 60px;
  padding: 38px 20px 96px;
  text-align: center;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  justify-content: center;
  margin-bottom: 18px;
}

.site-footer a {
  color: #cfcac2;
}

.regulatory {
  margin: 0 auto 16px;
  max-width: 880px;
}

.sticky-cta {
  align-items: center;
  backdrop-filter: blur(10px);
  background: rgba(250, 248, 245, .95);
  border-top: 1px solid #e3ded5;
  bottom: 0;
  box-shadow: 0 -6px 20px rgba(38, 38, 38, .1);
  display: flex;
  gap: 18px;
  justify-content: center;
  left: 0;
  padding: 10px 16px;
  position: fixed;
  right: 0;
  transform: translateY(110%);
  transition: transform .3s ease;
  z-index: 100;
}

.sticky-cta.is-visible {
  transform: translateY(0);
}

.sticky-info {
  color: var(--ink-soft);
  font-size: 12px;
  line-height: 1.25;
  max-width: 250px;
}

.sticky-info b {
  color: var(--ink);
  display: block;
  font-size: 14px;
}

.sticky-info .stars {
  font-size: 12px;
}

@media (max-width: 880px) {
  .hero-grid {
    gap: 28px;
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-copy {
    margin: 0 auto;
    max-width: 690px;
  }

  .rating-row,
  .hero-pills {
    justify-content: center;
  }

  .product-frame {
    max-width: 340px;
  }

  .testing-card {
    grid-template-columns: .8fr 1fr;
  }

  .video-showcase {
    width: min(1000px, calc(100vw - 28px));
  }
}

@media (max-width: 650px) {
  .testing-card {
    grid-template-columns: 1fr;
  }

  .testing-card img {
    height: min(55svh, 430px);
  }

  .testing-card > div {
    padding: 2px 8px 10px;
  }
}

@media (max-width: 560px) {
  body {
    font-size: 17px;
  }

  .topbar {
    font-size: 10.5px;
    letter-spacing: .08em;
    padding: 8px 12px;
  }

  .topbar span {
    margin: 0 4px;
  }

  .masthead {
    padding: 12px 20px;
  }

  .logo img {
    height: 20px;
  }

  .btn-sm {
    padding: 11px 16px;
  }

  .hero {
    padding: 30px 0 34px;
  }

  .hero-grid {
    gap: 26px;
  }

  h1 {
    font-size: 33px;
  }

  .dek {
    font-size: 17.5px;
  }

  .product-frame {
    max-height: 58svh;
    max-width: 315px;
  }

  .stat-row {
    grid-template-columns: 1fr 1fr;
    row-gap: 28px;
  }

  .standards {
    gap: 9px 15px;
  }

  .standards span + span::before {
    display: none;
  }

  article {
    padding-top: 40px;
  }

  .section {
    margin-top: 48px;
  }

  .section-title {
    font-size: 30px;
  }

  .video-showcase {
    width: calc(100vw - 20px);
  }

  .video-showcase-head {
    align-items: flex-end;
    gap: 14px;
    padding: 0 6px;
  }

  .video-showcase-copy {
    font-size: 13px;
  }

  .video-card {
    border-radius: 15px;
    height: min(56svh, 460px);
  }

  .video-play-disc {
    height: 60px;
    width: 60px;
  }

  .rail-arrow {
    height: 40px;
    width: 40px;
  }

  .ingredients,
  .ritual-grid,
  .review-grid {
    grid-template-columns: 1fr;
  }

  .community-grid {
    gap: 8px;
    grid-template-columns: 1fr 1fr;
  }

  .editorial-figure {
    max-width: 100%;
  }

  .editorial-figure img {
    height: min(55svh, 460px);
  }

  .cta-band {
    margin: 48px 0;
    padding: 32px 20px;
  }

  .review-summary {
    text-align: left;
  }

  .review-top {
    align-items: flex-start;
    gap: 8px;
  }

  .sticky-info {
    display: none;
  }

  .sticky-cta .btn {
    max-width: 440px;
    width: 100%;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}
