/* AURÉ — soft clinical luxury */
:root {
  --porcelain: #f6f1ea;
  --porcelain-deep: #ebe3d8;
  --ink: #1a1714;
  --ink-soft: #3d3732;
  --blush: #d4a5a5;
  --blush-deep: #c48f8f;
  --sage: #9aab9a;
  --sage-soft: #c5d0c4;
  --cream: #f0e8dc;
  --warm-stone: #e8ddd0;
  --card: #efe6db;
  --card-edge: rgba(26, 23, 20, 0.08);
  --serif: "Cormorant Garamond", "Times New Roman", serif;
  --sans: "Outfit", system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --header-h: 4.5rem;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--porcelain);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  cursor: pointer;
}

ul {
  list-style: none;
}

.container {
  width: min(1120px, calc(100% - 2.5rem));
  margin-inline: auto;
}

.grain {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 100;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}

/* Typography */
.eyebrow {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--blush-deep);
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.section-lede {
  margin-top: 1rem;
  max-width: 36rem;
  color: var(--ink-soft);
  font-weight: 300;
  font-size: 1.05rem;
}

.section-head {
  margin-bottom: 3rem;
}

.section-head--center {
  text-align: center;
}

.section-head--center .section-lede {
  margin-inline: auto;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 1.6rem;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  border-radius: 999px;
  transition: transform 0.35s var(--ease), background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.btn--primary {
  background: var(--ink);
  color: var(--porcelain);
  border: 1px solid var(--ink);
}

.btn--primary:hover {
  background: var(--ink-soft);
  transform: translateY(-1px);
}

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid rgba(26, 23, 20, 0.22);
}

.btn--ghost:hover {
  border-color: var(--ink);
  background: rgba(26, 23, 20, 0.03);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1rem;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: var(--ink);
  border-bottom: 1px solid rgba(26, 23, 20, 0.2);
  padding-bottom: 0.15rem;
  transition: border-color 0.25s ease, gap 0.25s var(--ease);
}

.text-link:hover {
  border-color: var(--ink);
  gap: 0.65rem;
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  padding: 0 1.5rem;
  background: rgba(246, 241, 234, 0.82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease, background 0.3s ease;
}

.site-header.is-scrolled {
  border-bottom-color: var(--card-edge);
  background: rgba(246, 241, 234, 0.94);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.brand__mark {
  color: var(--blush-deep);
}

.brand__word {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 500;
  letter-spacing: 0.18em;
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 2rem;
}

.nav-desktop a {
  font-size: 0.88rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: var(--ink-soft);
  transition: color 0.2s ease;
}

.nav-desktop a:hover {
  color: var(--ink);
}

.nav-cta {
  padding: 0.55rem 1.1rem !important;
  border-radius: 999px;
  background: var(--ink);
  color: var(--porcelain) !important;
  font-weight: 500 !important;
}

.nav-cta:hover {
  background: var(--ink-soft);
}

.nav-toggle {
  display: grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  color: var(--ink);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem;
  background: var(--porcelain);
}

.mobile-menu[hidden] {
  display: none;
}

.mobile-menu__close {
  position: absolute;
  top: 1.1rem;
  right: 1.25rem;
  width: 2.5rem;
  height: 2.5rem;
  display: grid;
  place-items: center;
}

.mobile-menu__nav {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.mobile-menu__nav a {
  font-family: var(--serif);
  font-size: 2.2rem;
  font-weight: 500;
}

.mobile-menu__tag {
  margin-top: 2.5rem;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blush-deep);
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: grid;
  align-items: end;
  padding: calc(var(--header-h) + 2rem) 1.5rem 3.5rem;
  overflow: hidden;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

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

.hero__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(246, 241, 234, 0.35) 0%, rgba(246, 241, 234, 0.15) 35%, rgba(246, 241, 234, 0.88) 78%, var(--porcelain) 100%),
    linear-gradient(90deg, rgba(246, 241, 234, 0.75) 0%, rgba(246, 241, 234, 0.25) 55%, transparent 100%);
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 36rem;
}

.hero__title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2.6rem, 7vw, 4.4rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.hero__title .line {
  display: block;
}

.hero__title em {
  font-style: italic;
  color: var(--blush-deep);
}

.hero__lede {
  margin-top: 1.25rem;
  max-width: 28rem;
  font-weight: 300;
  font-size: 1.08rem;
  color: var(--ink-soft);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.75rem;
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2.5rem;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(26, 23, 20, 0.12);
}

.hero__stats dt {
  font-family: var(--serif);
  font-size: 1.65rem;
  font-weight: 500;
  line-height: 1;
  color: var(--ink);
}

.hero__stats dd {
  margin-top: 0.35rem;
  font-size: 0.72rem;
  line-height: 1.4;
  color: var(--ink-soft);
  letter-spacing: 0.01em;
}

/* Ritual / products */
.ritual {
  padding: 5.5rem 0 4rem;
}

.product-grid {
  display: grid;
  gap: 1.5rem;
}

.product-card {
  background: var(--card);
  border: 1px solid var(--card-edge);
  border-radius: 1.25rem;
  overflow: hidden;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(26, 23, 20, 0.08);
}

.product-card__media {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--warm-stone);
}

.product-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.product-card:hover .product-card__media img {
  transform: scale(1.04);
}

.product-card__step {
  position: absolute;
  top: 1rem;
  left: 1rem;
  width: 2.4rem;
  height: 2.4rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(246, 241, 234, 0.92);
  font-family: var(--serif);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ink);
}

.product-card__body {
  padding: 1.4rem 1.35rem 1.5rem;
}

.product-card__type {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 0.45rem;
}

.product-card h3 {
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 500;
  line-height: 1.15;
  margin-bottom: 0.55rem;
}

.product-card p {
  font-size: 0.92rem;
  color: var(--ink-soft);
  font-weight: 300;
}

.product-card__meta {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--ink);
}

/* Ingredients */
.ingredients {
  padding: 4rem 0 5rem;
  background:
    linear-gradient(180deg, transparent 0%, rgba(154, 171, 154, 0.08) 40%, transparent 100%);
}

.ingredients__grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

.ingredient-list {
  margin-top: 2rem;
  display: grid;
  gap: 1rem;
}

.ingredient-list li {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
  padding: 1rem 1.1rem;
  background: var(--card);
  border: 1px solid var(--card-edge);
  border-radius: 0.9rem;
}

.ingredient-list svg {
  flex-shrink: 0;
  margin-top: 0.15rem;
  color: var(--blush-deep);
}

.ingredient-list strong {
  display: block;
  font-weight: 500;
  font-size: 0.98rem;
  margin-bottom: 0.15rem;
}

.ingredient-list span {
  font-size: 0.88rem;
  color: var(--ink-soft);
  font-weight: 300;
}

.ingredients__visual {
  position: relative;
  border-radius: 1.4rem;
  overflow: hidden;
  border: 1px solid var(--card-edge);
  background: var(--warm-stone);
}

.ingredients__visual img {
  width: 100%;
  aspect-ratio: 5 / 6;
  object-fit: cover;
}

.ingredients__visual figcaption {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.ingredients__visual figcaption span {
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  background: rgba(246, 241, 234, 0.92);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.04em;
}

/* Clinical proof */
.clinical {
  padding: 4.5rem 0 5rem;
  background: var(--ink);
  color: var(--porcelain);
}

.clinical .eyebrow {
  color: var(--blush);
}

.clinical .section-title {
  color: var(--porcelain);
}

.proof-strip {
  display: grid;
  gap: 1rem;
  margin-top: 0.5rem;
}

.proof-card {
  padding: 1.5rem 1.35rem;
  border-radius: 1rem;
  background: rgba(246, 241, 234, 0.05);
  border: 1px solid rgba(246, 241, 234, 0.1);
}

.proof-card__stat {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 2.6rem);
  font-weight: 500;
  line-height: 1;
  color: var(--blush);
}

.proof-card__label {
  margin-top: 0.65rem;
  font-size: 0.98rem;
  font-weight: 400;
  color: var(--porcelain);
}

.proof-card__note {
  margin-top: 0.45rem;
  font-size: 0.78rem;
  color: rgba(246, 241, 234, 0.55);
  letter-spacing: 0.02em;
}

.clinical__footnote {
  margin-top: 2rem;
  max-width: 40rem;
  margin-inline: auto;
  text-align: center;
  font-size: 0.78rem;
  line-height: 1.55;
  color: rgba(246, 241, 234, 0.45);
}

/* Shop CTA */
.shop {
  padding: 5rem 0;
}

.shop__panel {
  display: grid;
  gap: 2rem;
  padding: 1.25rem;
  border-radius: 1.6rem;
  background: linear-gradient(145deg, var(--card) 0%, var(--porcelain-deep) 100%);
  border: 1px solid var(--card-edge);
}

.shop__copy {
  padding: 1rem 0.5rem 0.5rem;
}

.shop__perks {
  margin-top: 1.5rem;
  display: grid;
  gap: 0.65rem;
}

.shop__perks li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.92rem;
  color: var(--ink-soft);
}

.shop__perks svg {
  color: var(--sage);
  flex-shrink: 0;
}

.shop__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.75rem;
}

.shop__visual {
  border-radius: 1.15rem;
  overflow: hidden;
  background: var(--warm-stone);
  min-height: 280px;
}

.shop__visual img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
}

/* Footer */
.site-footer {
  padding: 2.5rem 0 3rem;
  border-top: 1px solid var(--card-edge);
}

.footer__inner {
  display: grid;
  gap: 1.5rem;
}

.footer__brand p {
  margin-top: 0.5rem;
  max-width: 18rem;
  font-size: 0.88rem;
  color: var(--ink-soft);
  font-weight: 300;
}

.footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  font-size: 0.88rem;
  color: var(--ink-soft);
}

.footer__nav a:hover {
  color: var(--ink);
}

.footer__copy {
  font-size: 0.78rem;
  color: rgba(26, 23, 20, 0.45);
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* Responsive */
@media (min-width: 720px) {
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .shop__panel {
    grid-template-columns: 1.05fr 0.95fr;
    padding: 1.5rem;
    align-items: stretch;
  }

  .shop__copy {
    padding: 1.5rem 1rem 1.5rem 1.25rem;
  }
}

@media (min-width: 900px) {
  .nav-desktop {
    display: flex;
  }

  .nav-toggle {
    display: none;
  }

  .hero {
    align-items: center;
    padding-left: max(1.5rem, calc((100% - 1120px) / 2));
  }

  .hero__content {
    max-width: 38rem;
  }

  .ingredients__grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 3.5rem;
  }

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

  .footer__inner {
    grid-template-columns: 1.4fr 1fr auto;
    align-items: end;
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .product-card,
  .product-card__media img,
  .btn {
    transition: none;
  }
}
/* ===== SIGNATURE: Beauty counter ===== */
.hero--counter {
  min-height: auto;
  padding: 0;
  display: block;
  position: relative;
}
.hero--counter .hero__media,
.hero--counter .hero__veil,
.hero--counter .hero__content,
.hero--counter .hero__stats { display: none; }
.counter-hero {
  position: relative;
  min-height: min(92vh, 900px);
}
.counter-hero__still {
  margin: 0;
  height: min(92vh, 900px);
}
.counter-hero__still img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}
.counter-hero__overlay {
  position: absolute;
  inset: auto 0 0 0;
  padding: 3.5rem clamp(1.25rem, 5vw, 3.5rem) 3rem;
  background: linear-gradient(180deg, transparent 0%, rgba(246, 241, 234, 0.15) 20%, rgba(246, 241, 234, 0.94) 70%);
  max-width: 40rem;
}
.counter-hero__overlay .hero__title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2.4rem, 5.5vw, 3.8rem);
  line-height: 1.1;
  margin-bottom: 1rem;
}
.counter-hero__overlay .hero__title em { font-style: italic; color: var(--blush-deep); }
.counter-hero__overlay .hero__lede {
  color: var(--ink-soft);
  margin-bottom: 1.5rem;
  font-weight: 300;
  max-width: 32rem;
}
.counter-hero__overlay .hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.counter-hero__overlay .btn--ghost {
  background: rgba(246, 241, 234, 0.55);
  backdrop-filter: blur(6px);
}

/* Product shelf scroll */
.ritual--shelf {
  padding: 4rem 0 3rem;
  background: var(--cream);
  border-top: 1px solid var(--card-edge);
}
.ritual--shelf .product-grid { display: none; }
.shelf-scroll {
  overflow-x: auto;
  scrollbar-width: thin;
  padding: 0.5rem 0 1.5rem;
  -webkit-overflow-scrolling: touch;
}
.shelf-track {
  display: flex;
  gap: 1.25rem;
  width: max-content;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
  padding-bottom: 0.5rem;
  border-bottom: 2px solid rgba(26, 23, 20, 0.12);
  position: relative;
}
.shelf-track::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: clamp(1.25rem, 4vw, 2.5rem);
  right: clamp(1.25rem, 4vw, 2.5rem);
  height: 4px;
  background: repeating-linear-gradient(90deg, var(--warm-stone) 0 12px, transparent 12px 20px);
  opacity: 0.7;
}
.shelf-item {
  width: min(280px, 72vw);
  flex-shrink: 0;
}
.shelf-item__media {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: var(--porcelain-deep);
  margin-bottom: 0.9rem;
  border: 1px solid var(--card-edge);
}
.shelf-item__media img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
}
.shelf-item__step {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: rgba(246, 241, 234, 0.9);
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  color: var(--ink-soft);
  font-weight: 500;
}
.shelf-item h3 {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 500;
  margin-bottom: 0.35rem;
}
.shelf-item p {
  font-size: 0.92rem;
  color: var(--ink-soft);
  font-weight: 300;
  margin-bottom: 0.55rem;
}
.shelf-item__meta {
  display: flex;
  gap: 1rem;
  font-size: 0.85rem;
  color: var(--blush-deep);
  font-weight: 500;
}
.shelf-item--note .shelf-item__media--note {
  aspect-ratio: 3/4;
  display: grid;
  place-items: center;
  padding: 1.5rem;
  background: linear-gradient(160deg, var(--porcelain-deep), var(--warm-stone));
}
.shelf-item--note .shelf-item__media--note p {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-style: italic;
  text-align: center;
  color: var(--ink-soft);
  margin: 0;
}

/* Dictionary accordion */
.ingredients--dict {
  padding: 4.5rem 0;
  background: var(--porcelain);
}
.ingredients--dict .ingredients__grid,
.ingredients--dict .ingredient-list { display: none; }
.dict-grid {
  display: grid;
  gap: 2.5rem;
}
.dict-visual {
  margin-top: 1.5rem;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--card-edge);
}
.dict-visual img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}
.dict-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--card-edge);
}
.dict-item {
  border-bottom: 1px solid var(--card-edge);
  background: var(--card);
}
.dict-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.15rem 1.25rem;
  font-family: var(--serif);
  font-size: 1.25rem;
  gap: 1rem;
}
.dict-item summary::-webkit-details-marker { display: none; }
.dict-term { font-weight: 500; }
.dict-chev {
  width: 1.5rem;
  height: 1.5rem;
  display: grid;
  place-items: center;
  border: 1px solid var(--card-edge);
  border-radius: 50%;
  font-size: 1rem;
  color: var(--blush-deep);
  transition: transform 0.25s var(--ease);
}
.dict-item[open] .dict-chev { transform: rotate(45deg); }
.dict-item p {
  padding: 0 1.25rem 1.25rem;
  color: var(--ink-soft);
  font-weight: 300;
  max-width: 40rem;
}

/* Proof bar large % */
.clinical--bar {
  padding: 3.5rem 0;
  background: var(--ink);
  color: var(--porcelain);
}
.clinical--bar .section-title { color: var(--porcelain); }
.clinical--bar .eyebrow { color: var(--blush); }
.clinical--bar .proof-strip { display: none; }
.proof-bar {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin: 2rem 0 1.5rem;
  padding: 1.5rem 0;
  border-block: 1px solid rgba(246, 241, 234, 0.12);
}
.proof-bar__stat {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 7vw, 4.5rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--porcelain);
}
.proof-bar__label {
  margin-top: 0.4rem;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(246, 241, 234, 0.55);
  font-weight: 400;
}
.clinical--bar .clinical__footnote {
  color: rgba(246, 241, 234, 0.45);
  font-size: 0.82rem;
  text-align: center;
}

/* Minimal centered shop */
.shop--minimal {
  padding: 5rem 0;
  background: var(--porcelain-deep);
}
.shop--minimal .shop__panel { display: none; }
.shop-center {
  text-align: center;
  max-width: 32rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
}
.shop-center .section-lede {
  margin: 0.75rem 0 1.5rem;
  text-align: center;
}
.shop-note {
  margin-top: 1.25rem;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

@media (min-width: 860px) {
  .counter-hero__overlay {
    left: max(1.5rem, calc((100% - 1120px) / 2));
    right: auto;
    bottom: 2.5rem;
    max-width: 36rem;
    background: linear-gradient(180deg, transparent, rgba(246,241,234,0.92));
    border-radius: 18px;
    padding: 2rem 2.25rem;
    border: 1px solid var(--card-edge);
  }
  .dict-grid {
    grid-template-columns: 0.95fr 1.05fr;
    align-items: start;
    gap: 3.5rem;
  }
  .proof-bar {
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
  }
}
