/* ──────────────────────────────────────────────────────────────
   Baya — page sections
   Product, home, journal, article, about, help and bag layouts.
   ────────────────────────────────────────────────────────────── */

/* ─── Round controls and dots ────────────────────────────────── */

.circ {
  width: 38px; height: 38px;
  border-radius: var(--r-pill);
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--ink);
  font-size: 15px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .2s var(--ease), border-color .2s var(--ease);
}
.circ:hover { background: var(--tint-hover); }

.circ--overlay {
  width: 36px; height: 36px;
  border: none;
  background: rgba(255, 255, 255, .85);
}
.circ--overlay:hover { background: #FFFFFF; }

.dot {
  width: 8px; height: 8px;
  padding: 0;
  border-radius: var(--r-pill);
  border: 1px solid rgba(42, 38, 34, .35);
  background: transparent;
  cursor: pointer;
  transition: background .2s var(--ease);
}
.dot[aria-current="true"] { background: var(--ink); }

/* ══════════════════════════════════════════════════════════════
   PRODUCT
   ══════════════════════════════════════════════════════════════ */

.shop { padding: clamp(20px, 3vw, 40px) var(--gutter) var(--section-bottom); }

.shop__crumb {
  font-size: 12px;
  letter-spacing: .06em;
  color: var(--muted-2);
  margin: 0 0 20px;
}

.shop__top { display: grid; gap: 24px; }

/* ─── Gallery ────────────────────────────────────────────────── */

.gallery {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--image-bg);
}
.gallery__slide[hidden] { display: none; }
.gallery__img { width: 100%; aspect-ratio: 4/5.5; object-fit: cover; }

.gallery__prev, .gallery__next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.gallery__prev { left: 10px; }
.gallery__next { right: 10px; }

.gallery__dots {
  position: absolute;
  left: 0; right: 0; bottom: 14px;
  display: flex;
  justify-content: center;
  gap: 8px;
}
.gallery__dots .dot { background: rgba(255, 255, 255, .65); }
.gallery__dots .dot[aria-current="true"] { background: var(--ink); }

/* ─── Buy column ─────────────────────────────────────────────── */

.shop__title {
  font-size: min(7.1vw, 27px);
  font-weight: var(--w-display);
  line-height: 1.1;
  letter-spacing: -.03em;
  margin: 0 auto 8px;
  text-align: center;
  white-space: nowrap;
}
.shop__spec {
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin: 0 0 16px;
  text-align: center;
}
.shop__desc {
  font-size: 15px;
  line-height: 1.68;
  color: var(--body-muted-2);
  margin: 0 0 18px;
  text-align: justify;
  text-wrap: pretty;
  hyphens: auto;
}
.shop__rating {
  justify-content: center;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--hairline);
  margin-bottom: 20px;
}

.buy-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.buy-actions .btn { flex: 1 1 auto; }
.buy-actions__note { font-size: 12.5px; color: var(--muted); }

@media (min-width: 900px) {
  .shop__crumb { margin-bottom: 26px; }
  .shop__top {
    grid-template-columns: 1fr 1fr;
    gap: clamp(36px, 4.5vw, 76px);
    align-items: stretch;
  }
  .gallery { border-radius: var(--r-2xl); min-height: 560px; }
  .gallery__slide, .gallery__img { height: 100%; }
  .gallery__img { aspect-ratio: auto; min-height: 560px; }
  .gallery .circ--overlay { width: 42px; height: 42px; background: rgba(255, 255, 255, .82); }
  .gallery__prev { left: 16px; }
  .gallery__next { right: 16px; }
  .gallery__dots { bottom: 18px; gap: 9px; }

  .shop__title {
    font-size: clamp(32px, 4vw, 58px);
    line-height: 1.02;
    text-align: left;
    white-space: normal;
    max-width: 16ch;
    margin: 0 0 12px;
  }
  .shop__spec {
    font-size: 14.5px;
    letter-spacing: normal;
    text-transform: none;
    color: var(--body-muted);
    text-align: left;
    margin-bottom: 20px;
  }
  .shop__desc {
    font-size: 16.5px;
    line-height: 1.75;
    max-width: 50ch;
    text-align: left;
    margin-bottom: 24px;
  }
  .shop__rating { justify-content: flex-start; padding-bottom: 22px; margin-bottom: 22px; }
  .buy-actions { gap: 18px; margin-bottom: 26px; }
  .buy-actions .btn { flex: 0 0 auto; }
  .buy-actions__note { font-size: 13px; }
}

/* ─── Our formula ────────────────────────────────────────────── */

.formula {
  margin: var(--section-bottom) calc(var(--gutter) * -1) 0;
}

.formula__head { margin-bottom: 22px; }
.formula__title {
  font-size: clamp(26px, 3.4vw, 44px);
  font-weight: var(--w-display);
  line-height: 1.06;
  letter-spacing: -.028em;
  margin: 0;
  max-width: 22ch;
}
.formula__intro {
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--body-muted-2);
  margin: 14px 0 0;
  max-width: 44ch;
}

.rail { gap: 12px; padding-bottom: 6px; }

.rail__tile {
  flex: 0 0 268px;
  scroll-snap-align: center;
  padding: 0;
  border: none;
  background: none;
  text-align: left;
  cursor: pointer;
}
.rail__media {
  display: block;
  position: relative;
  aspect-ratio: 3/4;
  border-radius: var(--r-xl);
  overflow: hidden;
  background: var(--tint-2);
  box-shadow: inset 0 0 0 1px var(--hairline);
  transition: box-shadow .25s var(--ease);
}
.rail__tile[aria-pressed="true"] .rail__media { box-shadow: inset 0 0 0 2px var(--accent); }
.rail__media picture, .rail__img { position: absolute; inset: 0; width: 100%; height: 100%; }
.rail__img { object-fit: cover; }

.rail__scrim {
  position: absolute;
  inset: auto 0 0 0;
  padding: 48px 18px 18px;
  background: linear-gradient(180deg, rgba(42, 38, 34, 0), var(--scrim-strong));
  pointer-events: none;
}
.rail__meta {
  display: block;
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(250, 248, 246, .82);
  margin-bottom: 6px;
}
.rail__name {
  display: block;
  font-size: 26px;
  font-weight: var(--w-display);
  letter-spacing: -.025em;
  color: var(--on-dark);
}

.rail__detail {
  border-top: 1px solid var(--hairline);
  margin-top: 20px;
  padding-top: 22px;
}
.rail__panel[hidden] { display: none; }
.rail__panel { display: grid; gap: 16px; }
.rail__inci { font-size: 12.5px; letter-spacing: .04em; color: var(--faint); margin: 0 0 10px; }
.rail__body { font-size: 15px; line-height: 1.75; color: var(--body); margin: 0; max-width: 52ch; }
.rail__note {
  font-size: 19px;
  font-weight: var(--w-body);
  line-height: 1.44;
  letter-spacing: var(--track-title);
  color: var(--accent);
  margin: 0;
  max-width: 34ch;
}

@media (min-width: 900px) {
  .formula__head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: clamp(24px, 3vw, 38px);
  }
  .formula__intro { font-size: 15.5px; margin-top: 0; }
  .rail { gap: 16px; }
  .rail__tile { flex: 0 0 300px; scroll-snap-align: start; }
  .rail__scrim { padding: 56px 22px 22px; }
  .rail__meta { font-size: 10.5px; margin-bottom: 7px; }
  .rail__name { font-size: 30px; }
  .rail__detail { margin-top: 24px; padding-top: 26px; }
  .rail__panel {
    grid-template-columns: 1fr 1fr;
    gap: clamp(28px, 4vw, 64px);
    align-items: start;
  }
  .rail__inci { margin-bottom: 12px; }
  .rail__body { font-size: 17px; line-height: 1.8; }
  .rail__note { font-size: clamp(19px, 2.1vw, 25px); }
}

/* ─── Reviews ────────────────────────────────────────────────── */

/* Inside the product column the gutter is already applied by .shop */
.shop .reviews { padding-left: 0; padding-right: 0; }

.reviews__head { margin-bottom: 20px; }
.reviews__title {
  font-size: clamp(23px, 3.2vw, 40px);
  font-weight: var(--w-display);
  line-height: 1.08;
  letter-spacing: -.028em;
  margin: 0;
  max-width: 24ch;
}

.reviews__track { gap: 12px; scroll-snap-type: x mandatory; }
.review {
  flex: 0 0 100%;
  scroll-snap-align: start;
  background: var(--page);
  border: 1px solid var(--hairline);
  border-radius: var(--r-lg);
  padding: 22px 20px;
  margin: 0;
}
.review__quote {
  font-size: 17px;
  font-weight: var(--w-body);
  line-height: 1.5;
  letter-spacing: -.01em;
  margin: 0 0 14px;
}
.review__who { font-size: 12.5px; letter-spacing: .06em; color: var(--muted-3); font-style: normal; }

.reviews__controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 18px;
}
.reviews__dots { display: flex; gap: 8px; align-items: center; }
.reviews__arrows { display: flex; gap: 8px; }

@media (min-width: 900px) {
  .reviews__head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: clamp(22px, 2.6vw, 34px);
  }
  .reviews__track { gap: 16px; }
  .review { flex: 0 0 calc((100% - 32px) / 3); padding: 28px 26px; }
  .review__quote { font-size: 19px; margin-bottom: 16px; }
}

/* ══════════════════════════════════════════════════════════════
   HOME
   ══════════════════════════════════════════════════════════════ */

/* ─── Hero ───────────────────────────────────────────────────── */

.hero { position: relative; display: grid; }

.hero__media { grid-row: 1; position: relative; height: 560px; }
.hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(42, 38, 34, .3) 0%, rgba(42, 38, 34, 0) 26%, rgba(42, 38, 34, 0) 62%, rgba(42, 38, 34, .72) 100%);
  pointer-events: none;
}
.hero__tile { position: absolute; inset: 0; background: var(--image-bg); }
.hero__tile ~ .hero__tile { display: none; }
.hero__tile picture, .hero__img { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero__img { object-fit: cover; }

.hero__copy {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 560px;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 var(--gutter) 10px;
  color: var(--on-dark);
}
.hero__eyebrow {
  font-size: 9px;
  letter-spacing: var(--track-eyebrow);
  text-transform: uppercase;
  margin: 0 0 8px;
  color: rgba(250, 248, 246, .78);
}
.hero__headline {
  font-size: 33px;
  font-weight: var(--w-display);
  line-height: 1.02;
  letter-spacing: var(--track-display-tight);
  margin: 0 0 8px;
  max-width: 16ch;
}
.hero__body {
  font-size: 13px;
  line-height: 1.42;
  margin: 0;
  max-width: 82%;
  color: rgba(250, 248, 246, .8);
  text-align: justify;
  text-wrap: pretty;
  hyphens: auto;
}

.hero__aside { grid-row: 2; padding: 24px var(--gutter) 0; }
.hero__body--secondary {
  color: var(--body-muted-2);
  font-size: 15px;
  line-height: 1.68;
  max-width: none;
  margin-bottom: 22px;
}
.hero__actions { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 22px; }
.hero__actions .btn { flex: 1 1 auto; }
.hero__rating { padding-top: 20px; border-top: 1px solid var(--hairline); }

@media (min-width: 900px) {
  .hero {
    grid-template-columns: .85fr 1.15fr;
    column-gap: clamp(36px, 4.5vw, 72px);
    padding: var(--section-top) var(--gutter) clamp(44px, 5.5vw, 76px);
    align-items: start;
  }
  .hero__copy {
    position: static;
    grid-column: 1;
    grid-row: 1;
    height: auto;
    padding: 0;
    color: var(--ink);
    display: block;
  }
  .hero__eyebrow {
    display: inline-block;
    background: var(--tint);
    color: var(--body-muted-2);
    font-size: 10.5px;
    padding: 8px 16px;
    border-radius: var(--r-pill);
    margin-bottom: 26px;
  }
  .hero__headline {
    font-size: clamp(42px, 5.6vw, 84px);
    line-height: 1.02;
    letter-spacing: var(--track-display);
    max-width: 17ch;
    margin-bottom: 24px;
  }
  .hero__body {
    font-size: 17px;
    line-height: 1.72;
    max-width: 50ch;
    color: var(--body-muted-2);
    text-align: left;
  }
  .hero__aside { grid-column: 1; grid-row: 2; padding: 0; }
  .hero__body--secondary { font-size: 17px; line-height: 1.72; max-width: 50ch; margin: 18px 0 30px; }
  .hero__actions { gap: 12px; margin-bottom: 30px; }
  .hero__actions .btn { flex: 0 0 auto; }
  .hero__rating { padding-top: 24px; }

  .hero__media {
    grid-column: 2;
    grid-row: 1 / span 2;
    height: auto;
    min-height: 520px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 14px;
  }
  .hero__media::after { display: none; }
  .hero__tile {
    position: relative;
    inset: auto;
    border-radius: var(--r-xl);
    overflow: hidden;
  }
  .hero__tile ~ .hero__tile { display: block; }
}

/* ─── Symptom check ──────────────────────────────────────────── */

.check { background: var(--surface); scroll-margin-top: var(--anchor-offset); }
.check__headline {
  font-size: 26px;
  font-weight: var(--w-display);
  line-height: 1.05;
  letter-spacing: -.028em;
  margin: 0 auto 6px;
  max-width: 20ch;
  text-align: center;
}
.check__sub {
  font-size: 13px;
  line-height: 1.6;
  margin: 0 0 16px;
  color: var(--muted-2);
  text-align: center;
}

.check__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--hairline);
  border: 1px solid var(--hairline);
  border-radius: var(--r-card);
  overflow: hidden;
}
.check__cell {
  background: var(--surface);
  border: none;
  padding: 14px 13px 15px;
  text-align: left;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  transition: background .22s var(--ease);
}
.check__cell[aria-pressed="true"] { background: var(--tint); }

.check__top { display: flex; align-items: center; justify-content: space-between; gap: 8px; margin-bottom: 8px; }
.check__num { font-size: 9.5px; letter-spacing: .14em; color: var(--faint-2); transition: color .2s var(--ease); }
.check__cell[aria-pressed="true"] .check__num { color: var(--accent); }
.check__box {
  width: 17px; height: 17px;
  border-radius: var(--r-pill);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color .22s var(--ease);
}
.check__cell[aria-pressed="true"] .check__box { border-color: var(--accent); }
.check__dot {
  width: 9px; height: 9px;
  border-radius: var(--r-pill);
  background: var(--accent);
  transform: scale(0);
  transition: transform .22s var(--spring);
}
.check__cell[aria-pressed="true"] .check__dot { transform: scale(1); }

.check__title {
  font-size: 15px;
  font-weight: var(--w-body);
  line-height: 1.2;
  letter-spacing: var(--track-title);
  margin-bottom: 5px;
}
.check__body { font-size: 11.5px; line-height: 1.5; color: var(--body-muted); }

.check__close {
  font-size: 26px;
  font-weight: var(--w-display);
  line-height: 1.05;
  letter-spacing: -.028em;
  margin: 24px auto 0;
  max-width: 24ch;
  text-wrap: pretty;
}
.check__close span { color: var(--accent); }

@media (min-width: 900px) {
  .check__headline { font-size: clamp(26px, 2.8vw, 38px); max-width: 24ch; text-align: left; margin-left: 0; }
  .check__sub { text-align: left; margin-bottom: clamp(20px, 2.4vw, 30px); }
  .check__grid { grid-template-columns: repeat(4, 1fr); }
  .check__cell { padding: 20px 22px; }
  .check__title { font-size: 19px; line-height: 1.24; letter-spacing: -.018em; margin-bottom: 6px; }
  .check__body { font-size: 13.5px; line-height: 1.62; }
  .check__close {
    font-size: clamp(19px, 2vw, 26px);
    font-weight: var(--w-body);
    line-height: 1.5;
    letter-spacing: var(--track-title);
    text-align: center;
    max-width: 44ch;
    margin-top: clamp(40px, 5vw, 72px);
  }
}

/* ─── Home shop block ────────────────────────────────────────── */

.shop--home { padding-top: var(--section-top); scroll-margin-top: var(--anchor-offset); }
.shop--home .flanked { margin-bottom: 20px; }

.why {
  background: var(--tint);
  border-radius: var(--r-md);
  padding: 18px 16px;
  margin: 0 0 20px;
}
.why__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px 14px; }
.why__item { border-top: 1px solid var(--rule-tint); padding-top: 10px; }
.why__title {
  font-size: 15px;
  font-weight: var(--w-body);
  line-height: 1.2;
  letter-spacing: var(--track-title);
  margin: 0 0 5px;
}
.why__body { font-size: 11.5px; line-height: 1.5; margin: 0; color: var(--body-muted-2); }

@media (min-width: 900px) {
  .why { padding: 22px 24px; margin-bottom: 22px; }
  .why__title { font-size: 16px; }
  .why__body { font-size: 12.5px; line-height: 1.6; }
}

/* ─── Ritual ─────────────────────────────────────────────────── */

.ritual { background: var(--surface); padding-bottom: 26px; }
.ritual__media {
  aspect-ratio: 1/1;
  overflow: hidden;
  background: var(--image-bg);
  border-radius: var(--r-lg);
  margin: 0 16px;
}
.ritual__img { width: 100%; height: 100%; object-fit: cover; }

.ritual__panel {
  position: relative;
  margin: -56px 16px 0;
  background: var(--tint);
  border-radius: 0 0 var(--r-xl) var(--r-xl);
  padding: 22px 18px 20px;
}
.ritual__headline {
  font-size: 28px;
  font-weight: var(--w-display);
  line-height: 1.03;
  letter-spacing: -.028em;
  margin: 0 0 6px;
}
.ritual__sub { font-size: 14px; line-height: 1.6; margin: 0 0 12px; color: var(--body-muted); }

.ritual__step {
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 12px;
  padding: 13px 0;
  border-top: 1px solid var(--rule-tint-2);
  align-items: baseline;
}
.ritual__num { font-size: 10.5px; letter-spacing: .14em; color: var(--accent); margin: 0; }
.ritual__title { font-size: 17px; font-weight: var(--w-body); line-height: 1.22; margin: 0 0 4px; }
.ritual__body { font-size: 13px; line-height: 1.6; margin: 0; color: var(--body-muted); }

@media (min-width: 900px) {
  .ritual {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: clamp(36px, 5vw, 72px);
    padding: var(--section-top) var(--gutter) var(--section-bottom);
  }
  .ritual__media { margin: 0; border-radius: var(--r-lg); }
  .ritual__panel { margin: 0; border-radius: var(--r-xl); padding: clamp(28px, 3vw, 40px); }
  .ritual__headline { font-size: clamp(28px, 3.2vw, 42px); }
  .ritual__title { font-size: 18px; }
}

/* ─── Journal teaser and cards ───────────────────────────────── */

.teaser__headline {
  font-size: 24px;
  font-weight: var(--w-display);
  line-height: 1.06;
  letter-spacing: -.028em;
  margin: 0 0 18px;
}

.cards { display: grid; gap: 22px; }
.card { display: block; }
.card__media {
  border-radius: var(--r-card);
  overflow: hidden;
  background: var(--image-bg);
  margin-bottom: 14px;
}
.card__img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.card__kicker {
  font-size: 9.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 8px;
}
.card__title {
  font-size: 20px;
  font-weight: var(--w-body);
  line-height: 1.24;
  letter-spacing: var(--track-title);
  margin: 0 0 8px;
}
.card__dek { font-size: 13px; line-height: 1.65; margin: 0; color: var(--body-muted); }

.teaser__cta { margin-top: 18px; width: 100%; }

@media (min-width: 900px) {
  .teaser__headline { font-size: clamp(28px, 3.2vw, 44px); margin-bottom: 28px; }
  .cards { grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .card__media { border-radius: var(--r-xl); margin-bottom: 18px; }
  .card__kicker { font-size: 10.5px; letter-spacing: var(--track-eyebrow); margin-bottom: 10px; }
  .card__title { font-size: 22px; line-height: 1.22; margin-bottom: 10px; }
  .card__dek { font-size: 14px; line-height: 1.7; }
  .teaser__cta { width: auto; margin-top: 28px; }
}

/* Reviews sit on the tint on mobile, the page ground on desktop */
@media (max-width: 899px) {
  .review { background: var(--tint); border-color: transparent; border-radius: var(--r-card); }
}

/* ══════════════════════════════════════════════════════════════
   JOURNAL INDEX
   ══════════════════════════════════════════════════════════════ */

.journal { padding: clamp(22px, 3vw, 40px) var(--gutter) var(--section-bottom); }

.journal__title {
  font-size: clamp(30px, 4.8vw, 68px);
  font-weight: var(--w-display);
  line-height: 1.03;
  letter-spacing: var(--track-display);
  margin: 0 0 14px;
  max-width: 20ch;
}
.journal__intro {
  font-size: 14.5px;
  line-height: 1.68;
  color: var(--body-muted-2);
  margin: 0 0 24px;
  max-width: 52ch;
}

.journal__grid { border-top: 1px solid var(--hairline); padding-top: 24px; }

.pager {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 36px;
  padding-top: 20px;
  border-top: 1px solid var(--hairline);
  font-size: 12.5px;
  letter-spacing: .06em;
}
.pager__link { color: var(--body-muted); }
.pager__link.is-disabled { color: var(--faint); }
.pager__info { color: var(--muted-2); }

@media (min-width: 900px) {
  .journal__title { margin-bottom: 18px; }
  .journal__intro { font-size: 17px; line-height: 1.75; margin-bottom: clamp(32px, 4vw, 52px); }
  .journal__grid { padding-top: 32px; }
}
@media (max-width: 599px) {
  .pager__info { display: none; }
}

/* ══════════════════════════════════════════════════════════════
   ARTICLE
   ══════════════════════════════════════════════════════════════ */

.post { padding-bottom: 60px; }

.post__back { padding: 22px var(--gutter) 0; font-size: 12px; }
.post__back a { color: var(--muted); }

.post__hero { background: var(--image-bg); margin-top: 16px; }
.post__hero-img { width: 100%; aspect-ratio: 4/3.2; object-fit: cover; }

.post__intro { padding: 22px var(--gutter) 0; }
.post__kicker {
  font-size: 9.5px;
  letter-spacing: var(--track-eyebrow);
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 10px;
}
.post__title {
  font-size: 30px;
  font-weight: var(--w-display);
  line-height: 1.05;
  letter-spacing: var(--track-display);
  margin: 0 0 14px;
}
.post__dek {
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--body-muted);
  margin: 0 0 18px;
}

.takeaways {
  border: 1px solid var(--hairline);
  border-radius: var(--r-md);
  padding: 16px 18px;
  margin: 0 0 4px;
}
.takeaways__label {
  font-size: 9.5px;
  letter-spacing: var(--track-eyebrow);
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 12px;
}
.takeaways__grid { display: flex; flex-direction: column; gap: 10px; }
.takeaways__grid p { font-size: 13.5px; line-height: 1.5; margin: 0; color: var(--body); }

.post__shell { padding: 20px var(--gutter) 0; }

.post__body p,
.post__body li {
  font-size: 15.5px;
  line-height: 1.78;
  color: var(--body);
  text-align: justify;
  text-wrap: pretty;
  hyphens: auto;
}
.post__body p { margin: 0 0 16px; }
.post__body > p:first-of-type::first-letter {
  float: left;
  font-size: 44px;
  line-height: .82;
  font-weight: var(--w-display);
  padding: 4px 10px 0 0;
  color: var(--accent);
}
.post__body h2 {
  border-top: 1px solid var(--hairline);
  margin: 26px 0 14px;
  padding-top: 22px;
  font-size: 23px;
  font-weight: var(--w-display);
  line-height: 1.14;
  letter-spacing: -.022em;
  scroll-margin-top: var(--anchor-offset);
}
.post__body h3 {
  font-size: 18px;
  font-weight: var(--w-medium);
  letter-spacing: var(--track-title);
  line-height: 1.3;
  margin: 24px 0 10px;
}
.post__body ul, .post__body ol { margin: 0 0 16px; padding-left: 20px; }
.post__body li { margin-bottom: 8px; }
.post__body strong { font-weight: var(--w-medium); color: var(--ink); }
.post__body em { font-style: italic; }
.post__body a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }
.post__body a:hover { color: var(--accent-hover); }
.post__body hr { height: 1px; background: var(--hairline); border: 0; margin: 26px 0; }

/* ─── In-body buy card ───────────────────────────────────────── */

.buycard {
  margin-top: 30px;
  border: 1px solid var(--hairline);
  border-radius: var(--r-lg);
  background: var(--surface);
  padding: 16px;
  display: grid;
  grid-template-columns: 118px 1fr;
  gap: 16px;
  align-items: center;
}
.buycard__media { border-radius: var(--r-sm); overflow: hidden; background: var(--image-bg); }
.buycard__img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.buycard__title {
  font-size: 18px;
  font-weight: var(--w-body);
  letter-spacing: -.02em;
  line-height: 1.18;
  margin: 0 0 8px;
}
.buycard__desc { font-size: 12.5px; line-height: 1.55; margin: 0 0 12px; color: var(--body-muted); }
.buycard__actions { display: flex; gap: 8px; flex-wrap: wrap; }
.buycard__actions .btn { flex: 1 1 auto; padding: 13px 18px; font-size: 12.5px; }

/* ─── FAQ, outro, related ────────────────────────────────────── */

.post__faq { margin-top: 30px; border-top: 1px solid var(--hairline); padding-top: 20px; }
.post__faq h2 {
  border: 0;
  margin: 0 0 6px;
  padding: 0;
  font-size: 23px;
  font-weight: var(--w-display);
  line-height: 1.14;
  letter-spacing: -.022em;
}

.post__outro { margin-top: 30px; background: var(--tint); border-radius: var(--r-md); padding: 20px 18px; }
.post__outro-body { font-size: 14px; line-height: 1.7; margin: 0; color: var(--body); }
.post__outro-body a { color: var(--accent); }

.related { margin-top: 28px; border-top: 1px solid var(--hairline); padding-top: 18px; }
.related__item {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--hairline);
  align-items: center;
}
.related__img {
  width: 74px;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: var(--r-thumb);
  background: var(--image-bg);
}
.related__img--blank { display: block; }
.related__title {
  display: block;
  font-size: 15px;
  font-weight: var(--w-body);
  line-height: 1.3;
  letter-spacing: var(--track-title);
}
.related__dek { display: none; }

.post__side { display: none; }

@media (min-width: 900px) {
  .post__back { padding: clamp(24px, 3vw, 40px) var(--gutter) 0; font-size: 12.5px; margin-bottom: 22px; }

  .post__opener {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: clamp(32px, 4vw, 56px);
    align-items: stretch;
  }
  .post__hero {
    margin-top: 0;
    border-radius: 0 var(--r-2xl) var(--r-2xl) 0;
    overflow: hidden;
  }
  .post__hero-img { height: 100%; min-height: 520px; aspect-ratio: auto; }

  .post__intro {
    padding: 6px var(--gutter) 0 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* Keep the dek and takeaways from stretching on ultra-wide screens. */
    max-width: 58ch;
  }
  .post__kicker { font-size: 10.5px; margin-bottom: 16px; }
  .post__title { font-size: clamp(32px, 3.6vw, 46px); line-height: 1.04; margin-bottom: 18px; }
  .post__dek {
    font-size: clamp(17px, 1.9vw, 20px);
    line-height: 1.55;
    margin-bottom: 26px;
  }

  .takeaways {
    border: 0;
    border-top: 1px solid var(--hairline);
    border-radius: 0;
    padding: 20px 0 0;
  }
  .takeaways__label { display: none; }
  .takeaways__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 28px;
  }
  .takeaways__grid p { font-size: 15px; line-height: 1.55; }

  .post__shell {
    padding: clamp(34px, 4vw, 58px) var(--gutter) 0;
    display: grid;
    /* Column one IS the measure, so it can never grow past the text and
       strand the sidebar. justify-content centres the pair and lets both
       tracks shrink together on narrow desktops. */
    grid-template-columns: minmax(0, 64ch) 260px;
    justify-content: center;
    gap: clamp(32px, 4vw, 56px);
    align-items: start;
  }
  .post__body { max-width: 64ch; }
  .post__body p, .post__body li { font-size: 17px; line-height: 1.82; }
  .post__body p { margin-bottom: 20px; }
  .post__body > p:first-of-type::first-letter {
    font-size: 58px;
    padding: 6px 14px 0 0;
  }
  .post__body h2 {
    font-size: clamp(25px, 2.8vw, 34px);
    line-height: 1.12;
    margin: 36px 0 18px;
    padding-top: 30px;
    scroll-margin-top: var(--anchor-offset);
  }
  .post__body h3 { font-size: 21px; }

  .buycard {
    margin-top: 44px;
    border-radius: var(--r-2xl);
    padding: 26px;
    grid-template-columns: 132px 1fr;
    gap: 26px;
  }
  .buycard__media { border-radius: var(--r-md); }
  .buycard__title { font-size: 26px; margin-bottom: 10px; }
  .buycard__desc { font-size: 14.5px; line-height: 1.7; margin-bottom: 16px; }
  .buycard__actions .btn { flex: 0 0 auto; padding: 14px 26px; font-size: 13.5px; }

  .post__faq { margin-top: 46px; padding-top: 30px; }
  .post__faq h2 { font-size: clamp(25px, 2.8vw, 34px); line-height: 1.12; }
  .post__outro { margin-top: 40px; padding: 24px 26px; }
  .post__outro-body { font-size: 15px; }

  .related { margin-top: 46px; padding-top: 28px; }
  .related__item { grid-template-columns: 120px 1fr; gap: 22px; padding: 18px 0; }
  .related__img { width: 120px; border-radius: var(--r-sm); }
  .related__title { font-size: 20px; line-height: 1.28; margin-bottom: 6px; }
  .related__dek { display: block; font-size: 14px; line-height: 1.65; color: var(--body-muted); }

  /* ─── Sidebar ─── */
  .post__side { display: block; position: sticky; top: calc(var(--sticky-h) + 24px); }
  .post__side-label { padding-bottom: 12px; border-bottom: 1px solid var(--hairline); margin-bottom: 14px; }
  .post__toc ul { list-style: none; display: grid; gap: 10px; margin: 0 0 26px; padding: 0; }
  .post__toc a {
    display: block;
    font-size: 13.5px;
    line-height: 1.5;
    color: var(--body-muted);
    border-left: 1px solid var(--hairline);
    padding-left: 12px;
    transition: color .2s var(--ease), border-color .2s var(--ease);
  }
  .post__toc a:hover { color: var(--ink); border-color: var(--accent); }

  .sidecta { border-top: 1px solid var(--accent); padding-top: 18px; }
  .sidecta__media { border-radius: var(--r-md); overflow: hidden; background: var(--image-bg); margin-bottom: 16px; }
  .sidecta__img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }
  .sidecta__title {
    font-size: 19px;
    font-weight: var(--w-body);
    line-height: 1.32;
    letter-spacing: var(--track-title);
    margin: 0 0 10px;
  }
  .sidecta__body { font-size: 13.5px; line-height: 1.65; margin: 0 0 14px; color: var(--body-muted); }
  .sidecta .btn { padding: 13px 20px; font-size: 13px; }
}

/* ══════════════════════════════════════════════════════════════
   ABOUT
   ══════════════════════════════════════════════════════════════ */

.about__hero { position: relative; }
.about__hero-media { background: var(--image-bg); }
.about__hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(28, 24, 22, .8) 0%, rgba(28, 24, 22, .5) 48%, rgba(28, 24, 22, 0) 100%);
  pointer-events: none;
}
.about__hero-img { width: 100%; aspect-ratio: 4/4.6; object-fit: cover; }

.about__hero-copy {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  z-index: 1;
  padding: 22px var(--gutter) 20px;
  color: var(--on-dark);
}
.about__eyebrow {
  font-size: 9.5px;
  letter-spacing: var(--track-eyebrow);
  text-transform: uppercase;
  margin: 0 0 8px;
}
.about__title {
  font-size: 30px;
  font-weight: var(--w-display);
  line-height: 1.04;
  letter-spacing: var(--track-display);
  margin: 0;
  max-width: 18ch;
}

.about__body { padding: 26px var(--gutter) var(--section-bottom); }
.about__body > p,
.about__section p {
  font-size: var(--fs-body);
  line-height: 1.8;
  color: var(--body);
  margin: 0 0 16px;
  max-width: 66ch;
  text-align: justify;
  text-wrap: pretty;
  hyphens: auto;
}
.about__body > .about__statement {
  color: var(--accent);
  font-size: 20px;
  line-height: 1.5;
  letter-spacing: var(--track-title);
  text-align: left;
  hyphens: manual;
  margin: 24px 0;
}
.about__section { border-top: 1px solid var(--hairline); margin-top: 26px; padding-top: 24px; max-width: 66ch; }
.about__section h2 {
  font-size: 23px;
  font-weight: var(--w-display);
  line-height: 1.14;
  letter-spacing: -.022em;
  margin: 0 0 14px;
}
.about__body .flanked { margin: 32px 0 20px; }

.principles { display: grid; gap: 12px; }
.principle {
  background: var(--tint);
  border-radius: var(--r-card);
  padding: 18px 18px 20px;
}
.principle__num {
  font-size: 10.5px;
  letter-spacing: .14em;
  color: var(--accent);
  margin: 0 0 10px;
  text-align: left;
}
.principle__body { font-size: 15px; line-height: 1.6; margin: 0; text-align: left; }

@media (min-width: 900px) {
  .about__hero {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: clamp(32px, 5vw, 72px);
    align-items: center;
    padding: var(--section-top) var(--gutter) clamp(36px, 4.5vw, 60px);
  }
  .about__hero-media::after { display: none; }
  .about__hero-media { border-radius: var(--r-2xl); overflow: hidden; }
  .about__hero-img { aspect-ratio: 4/4.4; }
  .about__hero-copy {
    position: static;
    padding: 0;
    color: var(--ink);
  }
  .about__eyebrow {
    display: inline-block;
    background: var(--tint);
    color: var(--body-muted-2);
    font-size: 10.5px;
    padding: 8px 16px;
    border-radius: var(--r-pill);
    margin-bottom: 24px;
  }
  .about__title { font-size: clamp(38px, 4.8vw, 68px); line-height: 1.03; }

  .about__body { padding: 0 var(--gutter) var(--section-bottom); max-width: var(--shell-max); margin-inline: auto; }
  .about__body > p, .about__section p { font-size: 17px; margin-bottom: 18px; }
  .about__body > .about__statement { font-size: clamp(21px, 2.3vw, 27px); margin: 28px 0; }
  .about__section { margin-top: 36px; padding-top: 30px; }
  .about__section h2 { font-size: clamp(25px, 2.8vw, 34px); line-height: 1.12; margin-bottom: 18px; }
  .principles { grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .principle { padding: 24px 24px 26px; }
  .principle__body { font-size: 16px; }
}

/* ══════════════════════════════════════════════════════════════
   HELP — shipping, returns & subscriptions
   ══════════════════════════════════════════════════════════════ */

.help { padding: clamp(22px, 3vw, 40px) var(--gutter) var(--section-bottom); }
.help__title {
  font-size: clamp(30px, 4.8vw, 68px);
  font-weight: var(--w-display);
  line-height: 1.03;
  letter-spacing: var(--track-display);
  margin: 0 0 14px;
  max-width: 18ch;
}
.help__intro {
  font-size: 14.5px;
  line-height: 1.68;
  color: var(--body-muted-2);
  margin: 0 0 24px;
  max-width: 52ch;
}

.help__group + .help__group { margin-top: 30px; }
.help__group-title {
  font-size: 11px;
  font-weight: var(--w-medium);
  letter-spacing: var(--track-eyebrow);
  text-transform: uppercase;
  color: var(--muted-2);
  margin: 0 0 4px;
}

.help__card {
  background: var(--tint);
  border-radius: var(--r-md);
  padding: 22px 20px;
  margin-top: 30px;
}
.help__card-title {
  font-size: 19px;
  font-weight: var(--w-body);
  line-height: 1.3;
  letter-spacing: var(--track-title);
  margin: 0 0 8px;
}
.help__card-body { font-size: 13.5px; line-height: 1.65; color: var(--body-muted); margin: 0 0 16px; }
.help__card .btn { background: var(--surface); }

@media (min-width: 900px) {
  .help__title { margin-bottom: 18px; }
  .help__intro { font-size: 17px; line-height: 1.75; margin-bottom: clamp(32px, 4vw, 52px); }
  .help__shell {
    display: grid;
    grid-template-columns: minmax(0, 72ch) 300px;
    justify-content: center;
    gap: clamp(36px, 4vw, 60px);
    align-items: start;
  }
  .help__side { position: sticky; top: calc(var(--sticky-h) + 24px); }
  .help__card { margin-top: 0; padding: 26px 24px; }
  .help__group + .help__group { margin-top: 40px; }
}

/* ══════════════════════════════════════════════════════════════
   TABLET TIER (640–899px)
   Phones get the single-column layout, desktop takes over at 900px.
   In between, the reading measure needs a cap and the card grids
   have room to pair up.
   ══════════════════════════════════════════════════════════════ */

@media (min-width: 640px) and (max-width: 899px) {
  /* ─── Reading measure ─── */
  .post__body { max-width: 64ch; }
  .post__body p, .post__body li { font-size: 16.5px; line-height: 1.8; }
  .post__dek { max-width: 60ch; }
  .post__title { font-size: 36px; }
  .takeaways__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 24px; }

  .about__body > p, .about__section p { font-size: 16.5px; }
  .journal__intro, .help__intro { font-size: 16px; }

  /* ─── Card grids ─── */
  .cards { grid-template-columns: 1fr 1fr; gap: 20px; }
  .card__media { border-radius: var(--r-md); }
  .card__title { font-size: 21px; }

  .review { flex: 0 0 calc((100% - 12px) / 2); }


  .principles { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 14px; }

  .related__item { grid-template-columns: 120px 1fr; gap: 20px; padding: 16px 0; }
  .related__img { width: 120px; border-radius: var(--r-sm); }
  .related__title { font-size: 18px; margin-bottom: 6px; }
  .related__dek { display: block; font-size: 13.5px; line-height: 1.6; color: var(--body-muted); }

  .buycard { grid-template-columns: 132px 1fr; gap: 22px; padding: 20px; }
  .buycard__title { font-size: 22px; }
  .buycard__actions .btn { flex: 0 0 auto; }

  .rail__tile { flex: 0 0 300px; }
}

/* ══════════════════════════════════════════════════════════════
   MOBILE PARITY WITH THE 390px REFERENCE
   The two references differ in a handful of places — spec line,
   CTA wording, formula header, sticky bar. Desktop keeps its own.
   ══════════════════════════════════════════════════════════════ */

.shop__spec--full { display: none; }

@media (min-width: 900px) {
  .shop__spec--short { display: none; }
  .shop__spec--full { display: block; }
}

/* ─── Add to bag ─────────────────────────────────────────────── */

@media (max-width: 899px) {
  .buy-actions { display: block; margin-bottom: 22px; }
  .buy-actions .btn {
    width: 100%;
    padding: 16px;
    font-size: 13px;
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: 10px;
  }
  .buy-actions__note {
    display: block;
    font-size: 10px;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--muted-2);
    text-align: center;
  }
  .buy-actions__note--full { display: none; }

  .intervals { justify-content: center; }
  .intervals__label { width: 100%; text-align: center; font-size: 10px; }
}

@media (min-width: 900px) {
  .buy-actions__note--short { display: none; }
  .buy-actions .btn { width: auto; }
}

/* ─── Our formula ────────────────────────────────────────────── */

.formula__rule {
  width: 64px;
  height: 1px;
  background: var(--border-2);
  margin: 0 auto 22px;
}

@media (max-width: 899px) {
  /* Sits inline inside the shop section rather than as a bleeding band. */
  .formula {
    margin: 22px 0 0;
    padding: 0;
    background: none;
    border: 0;
  }
  .formula__title { display: none; }
  .formula__eyebrow {
    font-size: 12px;
    font-weight: var(--w-strong);
    letter-spacing: var(--track-eyebrow);
    text-align: center;
    margin-bottom: 8px;
  }
  .formula__intro {
    font-size: 13px;
    line-height: 1.6;
    max-width: 34ch;
    margin: 0 auto 14px;
    text-align: justify;
    text-wrap: pretty;
    hyphens: auto;
  }

  /* Rail bleeds the gutter so tiles scroll off both edges. */
  .rail {
    gap: 10px;
    margin: 0 calc(var(--gutter) * -1) 10px;
    padding: 0 var(--gutter) 4px;
  }
  .rail__media { border-radius: var(--r-lg); }
  .rail__scrim { padding: 44px 16px 16px; }
  .rail__meta { font-size: 9.5px; margin-bottom: 5px; }

  .rail__detail { margin-top: 0; padding-top: 16px; }
  .rail__inci { font-size: 11px; margin-bottom: 10px; }
  .rail__body {
    font-size: 14px;
    line-height: 1.72;
    margin-bottom: 10px;
    text-align: justify;
    text-wrap: pretty;
    hyphens: auto;
  }
  .rail__note { font-size: 14px; line-height: 1.55; }
}

@media (min-width: 900px) {
  .formula__rule { display: none; }
}

/* ─── Symptom check swatches ─────────────────────────────────── */

.check__num { color: #C0A79E; }
.check__box { border-color: var(--rule-tint-2); }

/* ─── Sticky buy bar ─────────────────────────────────────────── */

.chip--sm {
  flex: 1;
  padding: 8px 10px;
  font-size: 11.5px;
  color: var(--body);
  min-height: 34px;
}

.buybar__plans { display: flex; gap: 6px; margin-bottom: 9px; }
.buybar__row { display: flex; align-items: center; gap: 12px; }
.buybar__product { flex: 1; }
.buybar__cta { white-space: nowrap; }
.buybar__cta-full { display: none; }

@media (max-width: 899px) {
  .buybar {
    display: block;
    background: rgba(255, 255, 255, .96);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    padding: 10px 16px calc(14px + env(safe-area-inset-bottom, 0px));
  }
  .buybar__thumb { width: 38px; height: 38px; border-radius: 8px; }
  .buybar__product { gap: 10px; }
  .buybar__name { font-size: 12px; line-height: 1.35; color: var(--body-muted); }
  .buybar__note { font-size: 12px; color: var(--muted-2); }
  .buybar__price { display: none; }
  .buybar__cta { padding: 13px 22px; font-size: 12.5px; letter-spacing: .08em; text-transform: uppercase; }
}

@media (min-width: 900px) {
  .buybar__plans { display: none; }
  .buybar__row {
    width: 100%;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
  }
  .buybar__product { flex: 0 1 auto; }
  .buybar__actions { gap: 14px; }
  .buybar__cta-full { display: inline; }
  .buybar__cta-short { display: none; }
}

/* ─── Hero: mobile is image + headline only, per the 390px reference ── */

@media (max-width: 899px) {
  .hero__aside { display: none; }
}
@media (min-width: 900px) {
  .hero__copy .hero__body { display: none; }
}

/* ─── Mobile section rhythm matches the reference's 30px cadence ────── */

@media (max-width: 899px) {
  .check { padding-top: 30px; padding-bottom: 0; }
  .check__close { text-align: justify; }
  .shop--home { padding-top: 30px; }
  .reviews { padding-top: 30px; }
}

/* Sticky-bar plan chips follow the plan-card selection style (tinted +
   dark hairline), not the solid-dark interval chip style. */
.chip--sm[aria-pressed="true"] {
  background: var(--tint-hover);
  border-color: var(--ink);
  color: var(--body);
}

@media (max-width: 899px) {
  /* The 390px reference puts the rating in the reviews section, not the
     buy block — the description runs straight into "Why Baya". */
  .shop__rating { display: none; }
  .reviews__head { text-align: center; }
  .reviews__title { margin-inline: auto; }
  .reviews .rating { justify-content: center; margin-top: 12px; }
}

/* ─── Buy-section ordering ───────────────────────────────────────────
   DOM order is the mobile reference's: gallery → buy column → formula
   rail → accordions. On desktop the accordions belong back in the right
   column under the CTA, so .shop becomes the grid and .shop__top
   dissolves into it with display:contents.
   ─────────────────────────────────────────────────────────────────── */

@media (min-width: 900px) {
  .shop {
    display: grid;
    /* minmax(0,…) so a long word in either column can't blow the track out */
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    column-gap: clamp(36px, 4.5vw, 76px);
    align-items: start;
  }
  .shop__crumb,
  .shop--home > .flanked { grid-column: 1 / -1; grid-row: 1; }
  .shop__top { display: contents; }
  .gallery { grid-column: 1; grid-row: 2 / span 2; }
  .shop__buy { grid-column: 2; grid-row: 2; }
  .shop > .acc { grid-column: 2; grid-row: 3; }
  .shop > .formula { grid-column: 1 / -1; grid-row: 4; }
  .shop > .reviews { grid-column: 1 / -1; grid-row: 5; }
}

/* ══════════════════════════════════════════════════════════════
   390px REFERENCE PARITY
   Values below are the mobile reference's; the min-width:900px
   blocks above keep the desktop reference's.
   ══════════════════════════════════════════════════════════════ */

/* ─── Reviews ────────────────────────────────────────────────── */

.reviews { background: var(--surface); margin-top: 30px; padding: 26px 16px; }
.reviews__title {
  font-size: 24px;
  font-weight: var(--w-display);
  line-height: 1.06;
  letter-spacing: -.026em;
  margin: 0 auto 10px;
  max-width: 22ch;
  text-align: center;
}
.reviews__rating { justify-content: center; gap: 10px; margin-bottom: 18px; }
.reviews__rating .rating__score { font-size: 26px; letter-spacing: var(--track-display); }
.reviews__rating .rating__stars { font-size: 11px; letter-spacing: var(--track-eyebrow); }

.reviews__track { display: flex; flex-direction: column; gap: 10px; overflow: visible; }
.review {
  flex: none;
  background: var(--tint);
  border: 0;
  border-radius: var(--r-card);
  padding: 16px 15px;
  margin: 0;
}
.review__quote {
  font-size: 16px;
  font-weight: var(--w-body);
  line-height: 1.5;
  letter-spacing: -.01em;
  margin: 0 0 6px;
}
.review__who { font-size: 11px; letter-spacing: .06em; color: var(--muted-3); font-style: normal; }

.reviews__controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding-top: 16px;
  margin-top: 16px;
  border-top: 1px solid var(--hairline);
}
.reviews__dots .dot { border-color: #DED4C9; }
.reviews__dots .dot[aria-current="true"] { background: #C0A79E; }

.circ--tint {
  border-color: var(--border);
  background: var(--tint);
  color: #A8968B;
  font-size: 14px;
}
.circ--tint:hover { background: var(--border-2); }

/* ─── Certification panel inside the INCI accordion ──────────── */

.cert__inci {
  font-size: 12.5px;
  line-height: 1.75;
  margin: 0 0 16px;
  color: var(--body-muted);
  text-align: justify;
  hyphens: auto;
}
.cert__item {
  display: grid;
  grid-template-columns: 26px 1fr;
  gap: 12px;
  padding: 12px 0;
  border-top: 1px solid var(--hairline);
  align-items: baseline;
}
.cert__num { font-size: 10px; letter-spacing: .14em; color: var(--faint-2); margin: 0; }
.cert__title { font-size: 15.5px; font-weight: var(--w-body); line-height: 1.24; margin: 0 0 3px; }
.cert__body { font-size: 12.5px; line-height: 1.55; margin: 0; color: var(--body-muted-2); }
.cert__note { font-size: 11.5px; margin: 12px 0 18px; color: var(--muted-2); }

/* ─── Journal teaser ─────────────────────────────────────────── */

.teaser { padding: 30px var(--gutter) 0; }
.teaser .pill-eyebrow { font-size: 9.5px; letter-spacing: .14em; padding: 7px 13px; margin-bottom: 16px; }
.teaser__headline {
  font-size: 24px;
  font-weight: var(--w-display);
  line-height: 1.06;
  letter-spacing: -.028em;
  margin: 0 0 18px;
  white-space: nowrap;
}
.teaser .cards { gap: 0; }
.teaser .card { padding: 16px 0; border-top: 1px solid var(--hairline); }
.teaser .card__media { border-radius: var(--r-card); margin-bottom: 14px; }
.teaser .card__img { aspect-ratio: 1/1; }
.teaser .card__title { font-size: 19px; margin: 0; }
.teaser .card__dek { display: none; }
.teaser .card ~ .card { display: none; }
.teaser__cta {
  display: block;
  text-align: center;
  width: 100%;
  padding: 14px;
  font-size: 12.5px;
  letter-spacing: .08em;
  margin-top: 16px;
}

@media (min-width: 900px) {
  .teaser { padding: var(--section-top) var(--gutter) var(--section-bottom); }
  .teaser__headline { font-size: clamp(28px, 3.2vw, 44px); white-space: normal; margin-bottom: 28px; }
  .teaser .cards { gap: 20px; }
  .teaser .card { padding: 0; border-top: 0; }
  .teaser .card__img { aspect-ratio: 4/3; }
  .teaser .card__title { font-size: 22px; margin-bottom: 10px; }
  .teaser .card__dek { display: block; }
  .teaser .card ~ .card { display: block; }
  .teaser__cta { display: inline-flex; width: auto; margin-top: 28px; }
}

/* ─── Journal index ──────────────────────────────────────────── */

.journal { padding: 26px var(--gutter) 60px; }
.journal .pill-eyebrow { font-size: 9.5px; letter-spacing: .14em; padding: 7px 13px; margin-bottom: 16px; }
.journal__title { font-size: 24px; margin-bottom: 12px; white-space: nowrap; }
.journal__intro { font-size: 14.5px; margin-bottom: 8px; }
.journal__grid { border-top: 0; padding-top: 0; gap: 0; }
.journal__grid .card { padding: 18px 0; border-top: 1px solid var(--hairline); }
.journal__grid .card__media { border-radius: var(--r-card); margin-bottom: 14px; }
.journal__grid .card__img { aspect-ratio: 1/1; }
.journal__grid .card__title { font-size: 20px; }
.journal__grid .card__dek { font-size: 13px; }

@media (min-width: 900px) {
  .journal__title { font-size: clamp(38px, 4.8vw, 68px); white-space: normal; margin-bottom: 18px; }
  .journal__grid { border-top: 1px solid var(--hairline); padding-top: 32px; gap: 20px; }
  .journal__grid .card { padding: 0; border-top: 0; }
  .journal__grid .card__media { border-radius: var(--r-xl); margin-bottom: 18px; }
  .journal__grid .card__img { aspect-ratio: 4/3; }
}

/* ─── Article: the 390px reference has no dek and no outro ───── */

@media (max-width: 899px) {
  .post__dek, .post__outro { display: none; }
  .post__faq-word { display: none; }
}

/* ─── About ──────────────────────────────────────────────────── */

.about__title { font-size: 28px; line-height: 1.06; }
.about__eyebrow { color: #FFFFFF; }

.about__body { padding: 24px var(--gutter) 60px; }
.about__body > p, .about__section p {
  font-size: 15.5px;
  line-height: 1.78;
  margin-bottom: 14px;
  hyphens: auto;
}
.about__body > .about__turn {
  font-size: 20px;
  font-weight: var(--w-body);
  line-height: 1.4;
  letter-spacing: -.02em;
  color: var(--ink);
  text-align: left;
  hyphens: manual;
}
.about__body > .about__statement {
  font-size: 19px;
  font-weight: var(--w-body);
  line-height: 1.42;
  letter-spacing: -.018em;
  color: var(--accent);
  margin: 0 0 20px;
  text-align: left;
  hyphens: manual;
}

.about__sign { padding-top: 18px; border-top: 1px solid var(--hairline); }
.about__sign p { font-size: 14px; line-height: 1.6; margin: 0; color: var(--body-muted); text-align: left; }
.about__sign .about__signature { color: var(--accent); }

.about__ruled {
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  padding: 22px 0;
  margin: 26px 0 22px;
}
.about__ruled p {
  font-size: 24px;
  font-weight: var(--w-display);
  line-height: 1.24;
  letter-spacing: -.024em;
  margin: 0;
  color: var(--accent);
  text-align: center;
}

.principles { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.principle { background: var(--tint); border-radius: var(--r-card); padding: 16px 14px; }
.principle__num { font-size: 10.5px; letter-spacing: .14em; color: var(--accent); margin: 0 0 8px; text-align: left; }
.principle__title {
  font-size: 15px;
  font-weight: var(--w-body);
  line-height: 1.26;
  margin: 0 0 6px;
  text-align: left;
}
.principle__body { font-size: 12.5px; line-height: 1.6; margin: 0; color: var(--body-muted); text-align: left; }

.about__cta { margin-top: 22px; letter-spacing: .1em; text-transform: uppercase; }

@media (min-width: 900px) {
  .about__title { font-size: clamp(38px, 4.8vw, 68px); }
  .about__body > p, .about__section p { font-size: 17px; margin-bottom: 18px; }
  .about__body > .about__turn { font-size: 24px; }
  .about__body > .about__statement { font-size: clamp(21px, 2.3vw, 27px); margin: 24px 0; }
  .about__ruled { margin: 40px 0 28px; }
  .about__ruled p { font-size: clamp(26px, 3vw, 38px); }
  .principles { grid-template-columns: repeat(4, 1fr); gap: 16px; }
  .principle { padding: 22px 20px; }
  .principle__title { font-size: 17px; }
  .principle__body { font-size: 13.5px; }
  .about__cta { width: auto; display: inline-flex; }
}

/* ─── Help ───────────────────────────────────────────────────── */

.help { padding: 26px var(--gutter) 60px; }
.help .pill-eyebrow { font-size: 9.5px; letter-spacing: .14em; padding: 7px 13px; margin-bottom: 16px; }
.help__title { font-size: 32px; margin-bottom: 12px; }
.help__intro { font-size: 14.5px; margin-bottom: 22px; text-align: justify; hyphens: auto; }
.help__group { margin-bottom: 26px; }
.help__group + .help__group { margin-top: 0; }
.help__group-title {
  font-size: 9.5px;
  font-weight: var(--w-body);
  letter-spacing: var(--track-eyebrow);
  color: var(--accent);
  margin-bottom: 4px;
}
.help .acc__panel p { text-align: justify; hyphens: auto; }
.help__card { background: var(--tint); border-radius: var(--r-md); padding: 20px 18px; margin-top: 0; }
.help__card-title { font-size: 17px; font-weight: var(--w-body); line-height: 1.3; margin: 0 0 6px; }
.help__card-body { font-size: 13.5px; line-height: 1.65; color: var(--body-muted); margin: 0; }
.help__cta { margin-top: 22px; letter-spacing: .1em; text-transform: uppercase; }

@media (min-width: 900px) {
  .help__title { font-size: clamp(38px, 4.8vw, 68px); margin-bottom: 18px; }
  .help__intro { font-size: 17px; text-align: left; }
  .help__group-title { font-size: 11px; }
  .help__cta { width: auto; display: inline-flex; }
}

/* ─── Bag ────────────────────────────────────────────────────── */

.bag__heading { font-size: 20px; font-weight: var(--w-display); letter-spacing: var(--track-display); }
.bag__empty-title { font-size: 21px; font-weight: var(--w-body); margin: 0 0 8px; }
.bag__empty-note { font-size: 14px; line-height: 1.65; color: var(--body-muted); margin: 0 0 20px; }
.bag__empty-plans { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 12px; }
.plan--sm { border-radius: var(--r-sm); padding: 12px; display: block; }
.plan--sm .plan__name { font-size: 13px; }
.plan--sm .plan__note { font-size: 12px; margin-top: 3px; }

.bag__item { grid-template-columns: 84px 1fr; gap: 14px; }
.bag__item-img { border-radius: var(--r-sm); }
.bag__item-name { font-size: 17px; font-weight: var(--w-body); letter-spacing: -.018em; margin: 0 0 4px; }
.bag__item-vol { font-size: 12px; margin: 0 0 3px; color: var(--muted-2); }
.bag__item-plan { font-size: 12px; margin: 0 0 12px; color: var(--accent); }
.bag__item-total { font-size: 18px; font-weight: var(--w-body); }

.bag__row { display: flex; justify-content: space-between; font-size: 13.5px; padding: 16px 0 8px; }
.bag__summary { border-top: 1px solid var(--hairline); padding-top: 14px; }
.bag__total-label { font-size: 11.5px; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
.bag__total { font-size: 26px; font-weight: var(--w-display); }
.bag__foot .btn { margin-top: 18px; letter-spacing: .1em; text-transform: uppercase; }
.bag__trust { font-size: 11px; text-align: center; margin: 12px 0 0; color: var(--muted-2); }

/* ─── Footer ─────────────────────────────────────────────────── */

.site-footer { padding: 28px var(--gutter) 34px; }
.site-footer__statement { font-size: 26px; line-height: 1.08; margin-bottom: 22px; max-width: none; }
.site-footer__nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 20px;
  font-size: 13.5px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--hairline);
  margin-bottom: 0;
}
.site-footer__legal { border-top: 0; padding-top: 0; margin-top: 16px; font-size: 11px; line-height: 1.7; }
.site-footer__subscribe { margin: 22px 0 0; }
.site-footer__subscribe-title { font-size: 15px; margin-bottom: 10px; }

@media (min-width: 900px) {
  .site-footer { padding: clamp(36px, 5vw, 64px) var(--gutter) 28px; }
  .site-footer__statement { font-size: clamp(26px, 3.2vw, 44px); max-width: 20ch; margin-bottom: 28px; }
  .site-footer__nav {
    display: flex;
    flex-wrap: wrap;
    padding-bottom: 0;
    border-bottom: 0;
  }
  .site-footer__legal { border-top: 1px solid var(--hairline); padding-top: 18px; margin-top: 36px; font-size: 12.5px; }
  .site-footer__subscribe { margin: 0; }
  .site-footer__subscribe-title { font-size: 17px; }
}

/* Reviews page in place rather than scrolling, so the track is a plain
   stack on mobile and a three-up row on desktop. */
.review[hidden] { display: none; }

@media (max-width: 899px) {
  /* The reference runs the shop section straight into the reviews. */
  .shop--home { padding-bottom: 0; }
  .reviews { padding-left: 16px; padding-right: 16px; }
}

@media (min-width: 900px) {
  .reviews__track { flex-direction: row; gap: 16px; }
  .reviews .review { flex: 1 1 0; background: var(--page); border: 1px solid var(--hairline); }
  .reviews__title { text-align: left; margin-inline: 0; }
  .reviews__rating { justify-content: flex-start; }
}

/* Plan + delivery interval sit directly under the plan note, where someone
   reading "Subscription · every 4 weeks" expects to change it. */
.bag__item-plans { margin: 10px 0 14px; }
.bag__item-chips { display: flex; gap: 6px; margin-bottom: 8px; }
.bag__item-intervals { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.bag__item-every {
  flex: 0 0 100%;
  font-size: 10.5px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 2px;
}
.bag__item-intervals .chip--sm { flex: 0 0 auto; padding: 7px 14px; }
