.site-header {
  position: relative;
  z-index: 20;
  border-bottom: 1px solid var(--line);
  background: rgb(255 253 248 / 96%);
}

.header-row {
  display: flex;
  min-height: 4.75rem;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.wordmark {
  color: var(--deep-green);
  font: 400 1.35rem/1 var(--display);
  letter-spacing: -.045em;
  text-decoration: none;
}

.wordmark em { color: var(--citrus-orange); font-style: italic; }

.header-nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  color: var(--deep-green);
  font-size: .73rem;
  font-weight: 500;
}

.header-nav a { text-decoration: none; }
.header-nav > a:not(.header-cta):hover { text-decoration: underline; text-underline-offset: .3em; }

.header-cta {
  display: inline-flex;
  min-height: 2.55rem;
  align-items: center;
  padding: .6rem .85rem;
  background: var(--deep-green);
  color: var(--ivory);
  font-weight: 600;
  transition: background-color 180ms ease;
}

.header-cta:hover { background: var(--citrus-orange); }

.review-hero { background: var(--ivory); }

.review-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(20rem, .85fr);
  min-height: 39rem;
}

.review-hero__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(3.5rem, 7vw, 6.4rem) clamp(2rem, 6vw, 5.5rem) clamp(3.5rem, 7vw, 6.4rem) 0;
}

.review-label,
.section-label,
.section-index {
  margin: 0;
  color: var(--citrus-orange);
  font-size: .66rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.review-label { color: var(--deep-green); }
.review-label { display: flex; flex-wrap: wrap; gap: .3rem .65rem; }
.review-label span { white-space: nowrap; }
.review-label span + span::before { margin-right: .65rem; content: "·"; }

.review-hero h1 {
  max-width: 12ch;
  margin: 1rem 0 0;
  font: 400 clamp(3.3rem, 7vw, 6.3rem)/.92 var(--display);
  letter-spacing: -.055em;
  text-wrap: balance;
}

.review-hero h1 em { color: var(--citrus-orange); font-style: italic; }

.review-hero__intro {
  max-width: 35rem;
  margin: 1.25rem 0 0;
  color: #31463f;
  font-size: clamp(1rem, 1.5vw, 1.08rem);
  line-height: 1.65;
}

.quick-verdict {
  display: grid;
  grid-template-columns: 6.6rem minmax(0, 1fr);
  gap: 1.1rem;
  max-width: 39rem;
  margin-top: 1.65rem;
  padding: 1rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.quick-verdict span {
  color: var(--citrus-orange);
  font-size: .63rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.quick-verdict p {
  margin: 0;
  font: 400 1.02rem/1.45 var(--display);
}

.review-hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.1rem;
  margin-top: 1.45rem;
}

.text-link {
  font-size: .78rem;
  font-weight: 500;
  text-underline-offset: .28em;
}

.product-visual {
  position: relative;
  display: grid;
  min-height: 34rem;
  place-items: center;
  margin: 0;
  overflow: hidden;
  background: var(--warm-gold);
}

.product-visual::before,
.product-visual::after,
.product-visual__ring {
  position: absolute;
  border: 1px solid rgb(23 45 39 / 25%);
  border-radius: 50%;
  content: "";
}

.product-visual::before { width: 28rem; height: 28rem; }
.product-visual::after { width: 19rem; height: 19rem; }
.product-visual__ring { width: 34rem; height: 34rem; border-color: rgb(255 253 248 / 28%); }

.product-visual__seal {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  z-index: 3;
  display: grid;
  width: 4.6rem;
  height: 4.6rem;
  place-items: center;
  border: 1px solid var(--deep-green);
  border-radius: 50%;
  font-size: .56rem;
  font-weight: 600;
  letter-spacing: .09em;
  line-height: 1.35;
  text-align: center;
  text-transform: uppercase;
}

.product-visual__image {
  position: relative;
  z-index: 2;
  width: min(82%, 25rem);
  height: auto;
  max-height: 27rem;
  object-fit: contain;
  filter: drop-shadow(var(--shadow-product));
  transform: rotate(-2deg);
}

.product-visual figcaption {
  position: absolute;
  right: 1.2rem;
  bottom: 1rem;
  z-index: 3;
  max-width: 12rem;
  font-size: .58rem;
  line-height: 1.4;
  text-align: right;
}

.at-a-glance {
  display: grid;
  width: min(100%, var(--content));
  margin-inline: auto;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--ivory);
}

.at-a-glance__item {
  min-width: 0;
  padding: 1.25rem clamp(1rem, 3vw, 2rem);
  border-right: 1px solid var(--line);
}

.at-a-glance__item:last-child { border-right: 0; }
.at-a-glance span { display: block; color: #746f63; font-size: .61rem; font-weight: 600; letter-spacing: .13em; text-transform: uppercase; }
.at-a-glance strong { display: block; margin-top: .25rem; font: 400 1.05rem/1.25 var(--display); }

.editorial-section { padding: clamp(4.5rem, 9vw, 8rem) 0; }

.editorial-split {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: clamp(2.5rem, 7vw, 6.5rem);
  align-items: center;
}

.editorial-split--statement { align-items: end; }

.editorial-section h2,
.mid-offer h2 {
  margin: .8rem 0 0;
  font: 400 clamp(2.65rem, 5vw, 4.8rem)/.98 var(--display);
  letter-spacing: -.045em;
  text-wrap: balance;
}

.editorial-section p { color: var(--muted-olive); }
.editorial-copy p { margin: 0; font-size: clamp(1rem, 1.5vw, 1.1rem); line-height: 1.75; }
.editorial-copy p + p { margin-top: 1.15rem; }

.our-take { background: var(--editorial-green); color: var(--paper); }
.our-take .section-index { color: var(--warm-gold); }
.our-take p { color: #d8e1dc; }

.product-section { background: var(--paper); }
.product-section__grid { grid-template-columns: minmax(16rem, .75fr) minmax(0, 1.25fr); }
.product-section h2 { max-width: 12ch; }
.product-section p:not(.section-label) { max-width: 38rem; margin: 1.25rem 0 0; font-size: 1.02rem; line-height: 1.7; }

.product-detail-art {
  position: relative;
  display: grid;
  min-height: 28rem;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--ivory);
}

.product-detail-art::before {
  position: absolute;
  width: 21rem;
  height: 21rem;
  border: 1px solid var(--warm-gold);
  border-radius: 50%;
  box-shadow: 0 0 0 4rem rgb(229 183 80 / 10%);
  content: "";
}

.product-detail-art__number { position: absolute; top: 1.1rem; left: 1.1rem; color: var(--citrus-orange); font-size: .7rem; font-weight: 600; }
.product-detail-art__line { position: relative; z-index: 1; width: 68%; height: 1px; background: var(--deep-green); transform: rotate(-18deg); }
.product-detail-art__word { position: relative; z-index: 2; font: italic 400 clamp(3rem, 7vw, 5.2rem)/1 var(--display); }

.editor-note {
  display: grid;
  grid-template-columns: 6rem 1fr;
  gap: 1rem;
  max-width: 38rem;
  margin-top: 1.75rem;
  padding: 1rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-size: .8rem;
}

.editor-note strong { color: var(--citrus-orange); font-weight: 600; text-transform: uppercase; }
.editor-note span { color: var(--deep-green); }

.routine-section { border-top: 1px solid var(--line); background: var(--ivory); }
.routine-section h2 { max-width: 10ch; }
.routine-section > .page-width > div > p:not(.section-label) { max-width: 34rem; margin: 1.25rem 0 0; font-size: 1.02rem; line-height: 1.72; }

.routine-visual {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--paper);
}

.routine-visual img {
  width: 100%;
  height: clamp(18rem, 34vw, 30rem);
  object-fit: cover;
  object-position: center;
}

.routine-visual figcaption {
  padding: .75rem .9rem;
  color: var(--muted-olive);
  font-size: .65rem;
  line-height: 1.4;
}

.verify-section { background: var(--paper); }
.verify-grid { display: grid; grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr); gap: clamp(2.5rem, 7vw, 6.5rem); }
.verify-heading h2 { max-width: 10ch; }
.verify-list { margin: 0; padding: 0; border-top: 1px solid var(--line); list-style: none; }

.verify-list li {
  display: grid;
  grid-template-columns: 3rem minmax(0, 1fr);
  gap: 1.15rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--line);
}

.verify-list li > span { color: var(--citrus-orange); font-size: .72rem; font-weight: 600; }
.verify-list strong { display: block; font: 400 1.28rem/1.2 var(--display); }
.verify-list p { max-width: 34rem; margin: .35rem 0 0; font-size: .86rem; line-height: 1.55; }

.mid-offer { padding: clamp(3.5rem, 7vw, 6rem) 0; background: var(--citrus-orange); color: #fff; }
.mid-offer__grid { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr); gap: clamp(2rem, 7vw, 6rem); align-items: end; }
.mid-offer .section-label { color: #fff2d0; }
.mid-offer h2 { max-width: 11ch; }
.mid-offer p { max-width: 31rem; margin: 0 0 1.15rem; color: #fff6ed; }

.final-verdict { background: var(--editorial-green); color: var(--paper); }
.final-verdict__grid { display: grid; grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr); gap: clamp(2.5rem, 7vw, 6.5rem); }
.final-verdict .section-index { color: var(--warm-gold); }
.final-verdict h2 { max-width: 11ch; }
.final-verdict__copy > p { margin: 0; color: #d8e1dc; font-size: 1.02rem; line-height: 1.72; }

.verdict-points { margin: 1.65rem 0; border-top: 1px solid rgb(255 253 248 / 24%); }
.verdict-points p { display: grid; grid-template-columns: 9rem 1fr; gap: 1rem; margin: 0; padding: 1rem 0; border-bottom: 1px solid rgb(255 253 248 / 24%); }
.verdict-points strong { color: var(--warm-gold); font-size: .68rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; }
.verdict-points span { color: #d8e1dc; font-size: .82rem; line-height: 1.5; }

.faq-section { background: var(--ivory); }
.faq-grid { display: grid; grid-template-columns: minmax(0, .65fr) minmax(0, 1.35fr); gap: clamp(2.5rem, 7vw, 7rem); }
.faq-section h2 { max-width: 8ch; }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { position: relative; padding: 1.2rem 2.4rem 1.2rem 0; cursor: pointer; font: 400 1.15rem/1.35 var(--display); list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { position: absolute; top: 1rem; right: 0; color: var(--citrus-orange); content: "+"; font: 400 1.5rem/1 var(--sans); }
.faq-list details[open] summary::after { content: "−"; }
.faq-list p { max-width: 38rem; margin: 0 0 1.25rem; font-size: .88rem; line-height: 1.65; }

.site-footer { padding: 3.25rem 0; border-top: 1px solid rgb(255 253 248 / 15%); background: #10251f; color: var(--paper); }
.footer-grid { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 2rem 4rem; }
.wordmark--footer { color: var(--paper); }
.wordmark--footer em { color: #f3bd62; }
.affiliate-disclosure { max-width: 43rem; margin: 1rem 0 0; color: #b9c7c1; font-size: .74rem; line-height: 1.55; }
.footer-links { display: flex; gap: 1.25rem; align-items: flex-start; font-size: .76rem; }
.footer-links a { color: var(--paper); text-underline-offset: .25em; }

.legal-header-link {
  font-size: .75rem;
  font-weight: 600;
  text-underline-offset: .28em;
}

.legal-page { padding: clamp(4rem, 9vw, 7.5rem) 0; background: var(--paper); }
.legal-page > .page-width { max-width: 54rem; }
.legal-page__title {
  max-width: 15ch;
  margin: .85rem 0 2rem;
  font: 400 clamp(3rem, 7vw, 5.5rem)/.96 var(--display);
  letter-spacing: -.05em;
}
.legal-page__content { max-width: var(--reading); color: var(--muted-olive); }
.legal-page__content h2 { margin: 2.4rem 0 .6rem; color: var(--deep-green); font: 400 1.65rem/1.15 var(--display); }
.legal-page__content p { margin: .75rem 0 0; line-height: 1.7; }
.legal-page__notice { padding: 1.15rem 1.25rem; border-left: .3rem solid var(--citrus-orange); background: var(--ivory); color: var(--deep-green); }
.legal-page__back { margin-top: 2.4rem !important; }
.legal-page__back .button { width: auto; }

@media (max-width: 63.99rem) {
  .review-hero__grid { grid-template-columns: minmax(0, 1fr) minmax(19rem, .8fr); }
  .review-hero__copy { padding-right: 2.5rem; }
  .review-hero h1 { font-size: clamp(3.2rem, 7vw, 4.9rem); }
}

@media (max-width: 47.99rem) {
  .header-row { min-height: 4.2rem; }
  .header-nav > a:not(.header-cta) { display: none; }
  .review-hero__grid,
  .editorial-split,
  .verify-grid,
  .mid-offer__grid,
  .final-verdict__grid,
  .faq-grid { grid-template-columns: 1fr; }
  .review-hero__copy { padding: 3rem 0 2.6rem; }
  .review-label { flex-direction: column; gap: .15rem; }
  .review-label span + span::before { display: none; }
  .review-hero h1 { font-size: clamp(3.2rem, 15vw, 4.8rem); }
  .quick-verdict { grid-template-columns: 1fr; gap: .45rem; }
  .product-visual { min-height: 24rem; }
  .product-visual__image { width: min(82%, 19rem); max-height: 20rem; }
  .product-visual__seal { width: 4rem; height: 4rem; }
  .at-a-glance { grid-template-columns: 1fr; }
  .at-a-glance__item { border-right: 0; border-bottom: 1px solid var(--line); }
  .at-a-glance__item:last-child { border-bottom: 0; }
  .editorial-section { padding: 4.5rem 0; }
  .product-section__grid { grid-template-columns: 1fr; }
  .product-detail-art { min-height: 20rem; }
  .routine-section .editorial-split { gap: 2rem; }
  .routine-visual img { height: 19rem; }
  .mid-offer__grid { align-items: start; }
  .mid-offer p { margin-top: 0; }
  .verdict-points p { grid-template-columns: 1fr; gap: .35rem; }
  .review-hero__actions { align-items: stretch; flex-direction: column; }
  .button { width: 100%; }
  .text-link { align-self: flex-start; }
}

@media (max-width: 25rem) {
  .header-cta { padding-inline: .65rem; font-size: .67rem; }
  .wordmark { font-size: 1.15rem; }
  .review-hero h1 { font-size: clamp(2.85rem, 14vw, 3.45rem); }
}

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