/* =========================================================
   SCULPTPILLOW+  ·  Recovery Pillow Collection
   Editorial · aesthetic-clinic · warm champagne / blush
   ========================================================= */

:root {
  /* warm, refined palette */
  --paper:   #f7f0e6;   /* warm bone */
  --paper-2: #efe6d8;   /* soft champagne */
  --blush:   #e8d3c4;   /* nude blush */
  --blush-2: #d9bca8;
  --taupe:   #b8a08c;
  --ink:     #2a1f18;   /* warm near-black, not pure */
  --ink-2:   #3a2c22;
  --ink-3:   #6b5848;
  --silver:  #a8967f;
  --rule:    rgba(42,31,24,.12);
  --rule-d:  rgba(247,240,230,.18);
  --gold:    #b89866;   /* sparing accent */
  --plum:    #6e3a36;

  --shadow-1: 0 1px 0 rgba(42,31,24,.06);
  --shadow-2: 0 30px 70px -32px rgba(42,31,24,.28);
  --shadow-card: 0 18px 40px -28px rgba(42,31,24,.25);
  --ease: cubic-bezier(.2,.7,.2,1);

  /* fonts: editorial serif lead, refined sans support */
  --f-display: 'Cormorant Garamond', 'Times New Roman', serif;
  --f-body:    'Manrope', 'Helvetica Neue', sans-serif;
  --f-edit:    'EB Garamond', 'Cormorant Garamond', serif;
  --f-brand:   'Archivo', 'Helvetica Neue', sans-serif; /* only for SCULPTPILLOW+ wordmark */
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--f-body);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
a { color: inherit; text-decoration: none; }

::selection { background: var(--blush); color: var(--ink); }

/* ---------- TYPOGRAPHY HELPERS ---------- */
.eyebrow {
  font-family: var(--f-body);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--ink-3);
}

/* Editorial display — serif italic forward */
.h-display {
  font-family: var(--f-display);
  font-size: clamp(2.6rem, 5.4vw, 5rem);
  line-height: 1;
  letter-spacing: -.015em;
  font-weight: 300;
  color: var(--ink);
}
.h-display em {
  font-style: italic;
  font-weight: 400;
  color: var(--plum);
}
.h-display .lc { text-transform: none; }

.display {
  font-family: var(--f-display);
  font-size: clamp(3rem, 8vw, 7.4rem);
  line-height: 1;
  letter-spacing: -.025em;
  font-weight: 300;
  color: var(--paper);
}
.display em {
  font-style: italic;
  font-weight: 400;
  color: var(--blush);
  padding: 0 .04em;
}
.display .lc { text-transform: none; display: block; }

/* ---------- BRAND WORDMARK (kept distinctive) ---------- */
.brand {
  font-family: var(--f-brand);
  display: inline-flex;
  align-items: baseline;
  line-height: 1;
}
.brand__thin { font-weight: 200; letter-spacing: -.005em; }
.brand__bold { font-weight: 900; letter-spacing: -.02em; }
.brand__plus { font-weight: 900; margin-left: .04em; }
.brand--inline { font-size: 17px; letter-spacing: 0; }
.brand--xl { font-size: clamp(2.6rem, 7vw, 5.6rem); display: block; }

/* small-cap helpers from old code */
.t-thin { font-family: var(--f-brand); font-weight: 200; letter-spacing: -.005em; }
.t-bold { font-family: var(--f-brand); font-weight: 900; letter-spacing: -.02em; }
.t-plus { font-family: var(--f-brand); font-weight: 900; }

/* ---------- ANNOUNCE BAR ---------- */
.announce {
  background: var(--ink);
  color: var(--paper);
  font-family: var(--f-body);
  font-size: 11px;
  letter-spacing: .26em;
  font-weight: 400;
  overflow: hidden;
  height: 38px;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 50;
}
.announce__track {
  display: inline-flex;
  gap: 30px;
  white-space: nowrap;
  animation: marquee 42s linear infinite;
  padding-left: 30px;
  text-transform: uppercase;
}
.announce__track .dot { color: var(--blush-2); }
@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ---------- NAV ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(247,240,230,.78);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border-bottom: 1px solid var(--rule);
}
.nav__inner {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  gap: 32px;
  align-items: center;
  padding: 20px clamp(20px, 4vw, 56px);
  max-width: 1640px;
  margin: 0 auto;
}
.nav__menu {
  display: inline-flex; flex-direction: column; gap: 5px;
  width: 26px;
}
.nav__menu span {
  height: 1px; background: var(--ink); width: 100%;
}
.nav__menu span:last-child { width: 60%; margin-left: auto; }
.nav__brand { justify-self: start; }
.nav__links {
  display: flex; gap: 32px; justify-self: center;
  font-family: var(--f-body); font-weight: 400;
  font-size: 12px; letter-spacing: .22em; text-transform: uppercase;
  color: var(--ink-2);
}
.nav__links a {
  position: relative; padding: 6px 0;
  transition: color .25s var(--ease);
}
.nav__links a::after {
  content: '';
  position: absolute; left: 0; bottom: 0;
  height: 1px; width: 0; background: currentColor;
  transition: width .35s var(--ease);
}
.nav__links a:hover { color: var(--plum); }
.nav__links a:hover::after { width: 100%; }
.nav__util { display: flex; gap: 8px; align-items: center; }
.nav__util button {
  width: 36px; height: 36px; display: inline-grid; place-items: center;
  border-radius: 999px;
  color: var(--ink-2);
  transition: all .25s var(--ease);
}
.nav__util button:hover { background: var(--blush); color: var(--ink); }
.bag {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: auto !important;
  padding: 0 18px;
  height: 36px;
  border: 1px solid var(--ink) !important;
  border-radius: 999px !important;
  font-family: var(--f-body);
  font-size: 11px;
  letter-spacing: .22em;
  font-weight: 500;
  color: var(--ink) !important;
  text-transform: uppercase;
  cursor: pointer;
  transition: all .25s var(--ease);
}
.bag:hover { background: var(--ink) !important; color: var(--paper) !important; }

@media (max-width: 900px) {
  .nav__links { display: none; }
  .nav__inner { grid-template-columns: auto 1fr auto; }
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 92vh;
  background: var(--ink);
  color: var(--paper);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  isolation: isolate;
}
.hero__media {
  position: absolute; inset: 0; z-index: -1;
}
.hero__media img {
  width: 100%; height: 100%; object-fit: cover;
  filter: contrast(1.02) brightness(.85) saturate(.95) sepia(.18);
  transform: scale(1.04);
  animation: heroDrift 22s var(--ease) both;
}
@keyframes heroDrift {
  from { transform: scale(1.12); }
  to   { transform: scale(1.04); }
}
.hero__veil {
  position: absolute; inset: 0;
  background:
    radial-gradient(110% 70% at 75% 25%, rgba(232,211,196,.18) 0%, transparent 55%),
    linear-gradient(180deg, rgba(42,31,24,.32) 0%, rgba(42,31,24,.78) 100%);
}
.hero__grain {
  position: absolute; inset: 0; pointer-events: none;
  opacity: .08; mix-blend-mode: overlay;
  background-image: radial-gradient(rgba(255,255,255,.4) 1px, transparent 1px);
  background-size: 3px 3px;
}

.hero__content {
  position: relative;
  padding: clamp(50px, 9vh, 130px) clamp(20px, 4vw, 56px) clamp(60px, 9vh, 130px);
  max-width: 1640px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  gap: 30px;
}
.hero__content .eyebrow {
  color: var(--blush-2);
  border-top: 1px solid rgba(247,240,230,.4);
  padding-top: 16px;
  width: fit-content;
}

.hero__lede {
  font-family: var(--f-edit);
  font-style: italic;
  font-size: clamp(1.05rem, 1.4vw, 1.4rem);
  line-height: 1.5;
  max-width: 560px;
  color: var(--paper-2);
  font-weight: 400;
}

.hero__cta { display: flex; gap: 22px; align-items: center; flex-wrap: wrap; margin-top: 6px; }

.hero__badges {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 0;
  margin-top: 32px;
  border-top: 1px solid rgba(247,240,230,.18);
  padding-top: 24px;
  max-width: 720px;
}
.hero__badges li {
  display: flex; flex-direction: column; gap: 6px;
  padding-right: 16px;
  border-right: 1px solid rgba(247,240,230,.12);
}
.hero__badges li:last-child { border-right: 0; }
.hero__badges strong {
  font-family: var(--f-display); font-weight: 300;
  font-size: clamp(1.6rem, 2.2vw, 2.2rem);
  letter-spacing: -.01em;
  font-style: italic;
}
.hero__badges span {
  font-family: var(--f-body);
  font-size: 10px; letter-spacing: .22em; text-transform: uppercase;
  color: var(--blush-2);
  font-weight: 500;
}

.hero__scroll {
  position: absolute;
  right: clamp(20px, 4vw, 56px);
  bottom: clamp(60px, 9vh, 130px);
  font-family: var(--f-body);
  font-size: 10px; letter-spacing: .35em;
  color: var(--blush-2);
  display: flex; flex-direction: column; align-items: center; gap: 16px;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-weight: 500;
}
.hero__scroll .line {
  width: 1px; height: 60px; background: var(--blush-2);
  position: relative; overflow: hidden; opacity: .5;
}
.hero__scroll .line::after {
  content: '';
  position: absolute; left: 0; top: 0;
  width: 1px; height: 30%; background: var(--paper);
  animation: scrollLine 2.6s var(--ease) infinite;
}
@keyframes scrollLine {
  0% { transform: translateY(-100%); }
  100% { transform: translateY(330%); }
}

@media (max-width: 720px) {
  .hero__badges { grid-template-columns: repeat(2,1fr); row-gap: 18px; }
  .hero__badges li:nth-child(2) { border-right: 0; }
  .hero__scroll { display: none; }
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--f-body);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: .25em;
  padding: 17px 30px;
  text-transform: uppercase;
  transition: all .35s var(--ease);
  cursor: pointer;
  border: 1px solid currentColor;
  background: transparent;
  border-radius: 999px;
}
.btn--ghost { color: var(--paper); border-color: var(--paper); }
.btn--ghost:hover { background: var(--paper); color: var(--ink); }
.btn--solid {
  background: var(--ink); color: var(--paper); border-color: var(--ink);
}
.btn--solid:hover { background: var(--plum); border-color: var(--plum); }
.btn--text {
  border: 0; padding: 14px 0; color: var(--blush-2);
  letter-spacing: .12em;
  font-size: 13px;
  text-transform: none;
}
.btn--text em { font-family: var(--f-edit); font-style: italic; font-weight: 400; }
.btn--text:hover { color: var(--paper); }
.btn--text svg { transition: transform .3s var(--ease); }
.btn--text:hover svg { transform: translateX(6px); }
.btn--mini {
  padding: 12px 18px; font-size: 10px;
  border: 1px solid var(--ink); color: var(--ink);
  border-radius: 999px;
  font-weight: 500;
}
.btn--mini:hover { background: var(--ink); color: var(--paper); }
.btn--mini strong {
  font-weight: 400; font-family: var(--f-edit); font-style: italic;
  font-size: 1.15em; letter-spacing: 0;
}

/* ---------- PROMO STRIP ---------- */
.promo {
  background: var(--blush);
  color: var(--ink);
  padding: 56px clamp(20px,4vw,56px);
  border-top: 1px solid var(--rule);
}
.promo__inner { max-width: 1100px; margin: 0 auto; text-align: center; }
.promo__kicker {
  font-family: var(--f-body);
  font-size: 11px; letter-spacing: .26em;
  color: var(--ink-3); margin-bottom: 16px; font-weight: 500;
  text-transform: uppercase;
}
.promo__head {
  font-family: var(--f-display);
  font-weight: 300;
  font-size: clamp(1.5rem, 2.6vw, 2.4rem);
  line-height: 1.2;
  letter-spacing: -.005em;
}
.promo__head em {
  font-family: var(--f-display); font-style: italic;
  color: var(--plum); font-weight: 500;
}
.promo__sub {
  font-family: var(--f-edit); font-style: italic; color: var(--ink-3);
  margin-top: 14px;
  font-size: 1.05rem;
}

/* ---------- INTRO ---------- */
.intro { padding: clamp(70px,10vw,150px) clamp(20px,4vw,56px); }
.intro__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
  max-width: 1500px;
  margin: 0 auto;
}
@media (max-width: 900px) { .intro__grid { grid-template-columns: 1fr; } }
.intro__copy .eyebrow { margin-bottom: 24px; display: block; }
.intro__copy .h-display { max-width: 14ch; }
.prose {
  font-family: var(--f-edit);
  font-size: clamp(1.05rem, 1.25vw, 1.2rem);
  line-height: 1.6;
  margin-top: 24px;
  color: var(--ink-2);
  max-width: 56ch;
  font-weight: 400;
}
.prose em { font-style: italic; color: var(--plum); }
.ticks {
  list-style: none; margin-top: 32px;
}
.ticks li {
  padding: 18px 0;
  border-top: 1px solid var(--rule);
  font-family: var(--f-display);
  font-weight: 400;
  font-size: 1.15rem;
  letter-spacing: 0;
  position: relative; padding-left: 36px;
}
.ticks li:last-child { border-bottom: 1px solid var(--rule); }
.ticks li::before {
  content: '✦';
  position: absolute; left: 0; top: 18px;
  font-size: 14px;
  color: var(--gold);
}
.intro__media {
  position: relative;
}
.intro__media img {
  width: 100%; aspect-ratio: 4/5; object-fit: cover;
  border-radius: 4px;
  filter: contrast(1.02) saturate(.95) sepia(.1);
  box-shadow: var(--shadow-2);
}
.intro__media figcaption {
  font-family: var(--f-edit); font-style: italic;
  font-size: 13px; color: var(--ink-3);
  margin-top: 16px; padding-left: 18px;
  border-left: 1px solid var(--rule);
  max-width: 38ch;
}

/* ---------- COLLECTION ---------- */
.collection {
  padding: clamp(70px,9vw,140px) clamp(20px,4vw,56px) clamp(80px,10vw,160px);
  background: var(--paper-2);
  border-top: 1px solid var(--rule);
}
.collection__head {
  max-width: 1640px; margin: 0 auto 56px;
  display: grid; gap: 18px;
  text-align: center;
  justify-items: center;
}
.collection__head .eyebrow { color: var(--ink-3); }
.collection__lede {
  font-family: var(--f-edit);
  font-style: italic;
  font-size: clamp(1.05rem, 1.3vw, 1.25rem);
  max-width: 60ch;
  color: var(--ink-2);
  margin-top: 4px;
  font-weight: 400;
}
.filter {
  display: flex; gap: 8px; flex-wrap: wrap; margin-top: 24px;
  justify-content: center;
}
.chip {
  font-family: var(--f-body); font-size: 11px; font-weight: 500;
  letter-spacing: .22em; text-transform: uppercase;
  padding: 11px 20px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  color: var(--ink);
  background: transparent;
  transition: all .25s var(--ease);
}
.chip:hover { background: var(--blush); }
.chip.is-active { background: var(--ink); color: var(--paper); border-color: var(--ink); }

/* swipe rail */
.rail {
  position: relative;
  max-width: 1640px;
  margin: 0 auto;
}
.grid {
  display: flex;
  flex-wrap: nowrap;
  gap: 22px;
  overflow-x: auto;
  overflow-y: visible;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 24px clamp(20px, 4vw, 56px) 40px;
  margin: 0 calc(-1 * clamp(20px, 4vw, 56px));
  scroll-padding-left: clamp(20px, 4vw, 56px);
}
.grid::-webkit-scrollbar { display: none; }

.card {
  flex: 0 0 clamp(280px, 30vw, 360px);
  scroll-snap-align: start;
}
@media (max-width: 700px) { .card { flex: 0 0 82%; } }

/* navigation arrows */
.rail__nav {
  position: absolute;
  top: 38%;
  transform: translateY(-50%);
  z-index: 5;
  width: 56px; height: 56px;
  display: grid; place-items: center;
  background: var(--ink);
  color: var(--paper);
  border-radius: 999px;
  box-shadow: 0 18px 36px -18px rgba(42,31,24,.5);
  transition: all .25s var(--ease);
  cursor: pointer;
}
.rail__nav:hover {
  background: var(--plum);
  transform: translateY(-50%) scale(1.06);
}
.rail__nav:disabled {
  opacity: 0;
  pointer-events: none;
  transform: translateY(-50%) scale(.9);
}
.rail__nav--prev { left: -8px; }
.rail__nav--next { right: -8px; }
@media (max-width: 700px) {
  .rail__nav { display: none; }
}

/* progress bar + counter */
.rail__progress {
  max-width: 1640px;
  margin: 6px auto 0;
  height: 1px;
  background: var(--rule);
  border-radius: 999px;
  overflow: hidden;
  position: relative;
}
.rail__bar {
  height: 100%;
  width: 25%;
  background: var(--ink);
  border-radius: 999px;
  transition: width .35s var(--ease), transform .35s var(--ease);
}
.rail__hint {
  max-width: 1640px;
  margin: 14px auto 0;
  text-align: center;
  font-family: var(--f-body);
  font-size: 11px;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--ink-3);
  font-weight: 500;
}
.rail__hint span {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0;
  text-transform: none;
  color: var(--ink);
  padding: 0 4px;
}

.card {
  background: var(--paper);
  display: flex;
  flex-direction: column;
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
  animation: cardIn .9s var(--ease) both;
  animation-delay: calc(var(--i) * 60ms + 100ms);
}
@keyframes cardIn {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px -28px rgba(42,31,24,.35);
}
.card.is-hidden { display: none; }

.card__media {
  position: relative;
  background: #4a4946;            /* matches the cushion render's grey backdrop */
  aspect-ratio: 1 / 1;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.card__chip { display: none; }
.card__ml { display: none; }

/* product render — clean cushion image, uniform on every card */
.card__viz {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  display: grid; place-items: center;
  transition: opacity .4s var(--ease), transform .5s var(--ease);
}
.card__viz--layers {
  opacity: 0;
  transform: scale(.94);
  pointer-events: none;
  flex-direction: column;
  display: flex;
  justify-content: center;
  gap: 16px;
  padding: 18px 26px 22px;
}
.card.show-layers .card__viz--photo {
  opacity: 0;
  transform: scale(1.04);
  pointer-events: none;
}
.card.show-layers .card__viz--layers {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}

/* Hover-to-reveal on devices with a real cursor — no click needed */
@media (hover: hover) and (pointer: fine) {
  .card:hover .card__viz--photo {
    opacity: 0;
    transform: scale(1.04);
    pointer-events: none;
  }
  .card:hover .card__viz--layers {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
  }
  /* the toggle pill is redundant when hover handles it */
  .card__toggle { display: none; }
}

/* — view toggle pill (hidden — hover handles desktop, tap handles touch) — */
.card__toggle {
  display: none;
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 4;
  background: rgba(247,240,230,.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 999px;
  padding: 3px;
  font-family: var(--f-body);
  font-size: 9px;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 600;
  border: 1px solid rgba(42,31,24,.08);
}
.card__toggle button {
  padding: 6px 11px;
  border-radius: 999px;
  background: transparent;
  border: 0;
  cursor: pointer;
  color: var(--ink-3);
  transition: all .25s var(--ease);
  letter-spacing: inherit;
}
.card__toggle button.is-active {
  background: var(--ink);
  color: var(--paper);
}
.card--featured .card__toggle,
.card--apex .card__toggle {
  background: rgba(42,31,24,.85);
  border-color: rgba(247,240,230,.18);
}
.card--featured .card__toggle button,
.card--apex .card__toggle button {
  color: var(--blush-2);
}
.card--featured .card__toggle button.is-active,
.card--apex .card__toggle button.is-active {
  background: var(--paper);
  color: var(--ink);
}

/* — Technical layered cross-section diagram — */
.card__viz--layers {
  background:
    radial-gradient(120% 100% at 50% 0%, rgba(247,240,230,.04) 0%, transparent 70%),
    linear-gradient(180deg, #1f1812 0%, #14100c 100%);
  color: var(--paper);
  padding: 18px 16px 16px !important;
}
.card--featured .card__viz--layers,
.card--apex    .card__viz--layers { /* keep dark plate even on light cards */
  background:
    radial-gradient(120% 100% at 50% 0%, rgba(247,240,230,.04) 0%, transparent 70%),
    linear-gradient(180deg, #1f1812 0%, #14100c 100%);
  color: var(--paper);
}

.layers__head,
.layers__total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  width: 100%;
  font-family: var(--f-body);
  font-size: 9px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--blush-2);
  font-weight: 500;
  border-top: 1px dashed rgba(247,240,230,.18);
  padding: 9px 2px 0;
}
.layers__head { border-top: 0; padding-top: 0; padding-bottom: 4px; }
.layers__head-l, .layers__total-l { color: var(--blush-2); }
.layers__head-r, .layers__total-r {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 400;
  font-size: 13px;
  letter-spacing: 0;
  text-transform: none;
  color: var(--paper);
}
.layers__head-r em {
  font-style: italic;
  color: var(--blush);
}
.layers__total {
  margin-top: 4px;
}
.layers__total-r { font-size: 14px; color: var(--paper); }

.layers {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 6px 0;
}

.layer-row {
  display: grid;
  grid-template-columns: 22px 1fr 14px auto;
  align-items: center;
  gap: 8px;
  font-family: var(--f-body);
  animation: layerIn .55s var(--ease) both;
  animation-delay: calc(var(--li, 0) * 70ms + 80ms);
  position: relative;
}
.card.show-layers .layer-row { animation: layerIn .55s var(--ease) both; animation-delay: calc(var(--li, 0) * 70ms); }
@keyframes layerIn {
  from { opacity: 0; transform: translateX(-8px); }
  to   { opacity: 1; transform: translateX(0); }
}

.layer-row__num {
  font-family: var(--f-body);
  font-size: 9px;
  letter-spacing: .14em;
  font-weight: 600;
  color: var(--blush-2);
}
.layer-row__bar {
  display: block;
  width: 100%;
  height: var(--h, 14px);
  border-radius: 3px;
  background: var(--layer-bg);
  position: relative;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.18),
    inset 0 -1px 0 rgba(0,0,0,.35),
    0 4px 8px -2px rgba(0,0,0,.5);
  overflow: hidden;
}
.layer-row__bar::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    90deg,
    transparent 0 5px,
    rgba(255,255,255,.06) 5px 6px
  );
}
.layer-row__bar::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  top: 50%;
  height: 1px;
  background: rgba(255,255,255,.14);
  transform: translateY(-.5px);
}

.layer-row__lead {
  display: block;
  height: 1px;
  background: linear-gradient(to right, rgba(247,240,230,.4) 50%, transparent 50%);
  background-size: 4px 1px;
  background-repeat: repeat-x;
}

.layer-row__name {
  font-family: var(--f-body);
  font-size: 9px;
  letter-spacing: .12em;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--paper-2);
  white-space: nowrap;
}
.layer-row__dim {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 400;
  font-size: 13px;
  color: var(--paper);
  letter-spacing: 0;
  margin-left: 2px;
  min-width: 42px;
  text-align: right;
}

/* Layer kinds — refined material gradients on dark backdrop */
.layer--surface    { --layer-bg: linear-gradient(180deg, #f1e3cf 0%, #d4b696 100%); }
.layer--reinforced { --layer-bg: linear-gradient(180deg, #d8b785 0%, #a87d3f 100%); }
.layer--cooling    { --layer-bg: linear-gradient(180deg, #a6acb0 0%, #5e6a72 100%); }
.layer--core       { --layer-bg: linear-gradient(180deg, #6b5a48 0%, #3e2f23 100%); }
.layer--base       { --layer-bg: linear-gradient(180deg, #3a2e25 0%, #1a130d 100%); box-shadow:
    inset 0 1px 0 rgba(255,255,255,.08),
    inset 0 -1px 0 rgba(0,0,0,.4),
    0 4px 8px -2px rgba(0,0,0,.5); }

@media (max-width: 360px) {
  .layer-row { grid-template-columns: 20px 1fr 10px auto; gap: 6px; }
  .layer-row__name { display: none; }
}
.cushion {
  width: 86%;
  aspect-ratio: 1 / 1;
  background-image: url('assets/cushion-square.png');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  transition: transform .8s var(--ease);
  position: relative;
  z-index: 1;
}
.cushion::before, .cushion::after { content: none; }
.card:hover .cushion {
  transform: translateY(-4px) scale(1.02);
}

.card__body {
  padding: 28px 26px 26px;
  display: flex; flex-direction: column; gap: 14px;
  flex: 1;
}
.card__name {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(1.5rem, 1.9vw, 1.85rem);
  letter-spacing: -.01em;
  line-height: 1;
  font-style: italic;
}
.card__name .wordmark {
  font-family: var(--f-brand);
  font-style: normal;
  font-size: .58em;
  letter-spacing: 0;
  display: inline-flex; align-items: baseline;
  margin-right: 6px;
  vertical-align: 2px;
}
.card__name .wordmark .t-thin { font-weight: 200; }
.card__name .wordmark .t-bold { font-weight: 900; letter-spacing: -.02em; }
.card__name em {
  font-style: italic; color: var(--plum); margin-left: 4px;
}
.card__tag {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 500;
  font-size: 1rem;
  color: var(--ink);
  line-height: 1.25;
  letter-spacing: -.005em;
  margin-top: -2px;
}
.card__desc {
  font-family: var(--f-edit);
  font-style: italic;
  font-size: 14px;
  color: var(--ink-3);
  line-height: 1.5;
  font-weight: 400;
}
.card__specs {
  list-style: none;
  display: grid; grid-template-columns: repeat(3,1fr);
  margin-top: 4px;
  border-top: 1px solid var(--rule);
  padding-top: 16px;
}
.card__specs li {
  display: flex; flex-direction: column; gap: 5px;
  font-size: 11px;
  border-left: 1px solid var(--rule);
  padding-left: 12px;
}
.card__specs li:first-child { border-left: 0; padding-left: 0; }
.card__specs span {
  font-family: var(--f-body); font-size: 9px; letter-spacing: .22em;
  text-transform: uppercase; color: var(--ink-3); font-weight: 500;
}
.card__specs b {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0;
  color: var(--ink);
}

.card__foot {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 16px; margin-top: auto;
  border-top: 1px solid var(--rule);
}
.card__price {
  font-family: var(--f-display);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(1.7rem, 2vw, 2rem);
  letter-spacing: -.01em;
  display: flex; align-items: baseline; gap: 1px;
  color: var(--ink);
}
.card__price .ccy {
  font-size: .55em; color: var(--ink-3); padding-right: 2px;
  font-style: normal; font-family: var(--f-body); font-weight: 400;
}

/* featured card — softer, blush-toned card body */
.card--featured {
  background: var(--blush);
}
.card--featured .card__chip {
  background: var(--ink); color: var(--paper);
  border-color: var(--ink);
}

/* apex — quiet champagne shimmer card body */
.card--apex {
  background:
    linear-gradient(160deg, var(--paper) 0%, var(--paper-2) 60%, var(--blush) 100%);
  position: relative;
}
.card--apex .card__body::after {
  content: '';
  position: absolute; right: 0; top: 0; width: 50%; height: 60%;
  background: radial-gradient(60% 60% at 100% 0%, rgba(184,152,102,.18), transparent 70%);
  pointer-events: none;
}
.card--apex .card__chip {
  background: var(--gold); color: var(--paper); border-color: var(--gold);
  font-weight: 600;
}

/* ---------- COMPARE ---------- */
.compare {
  padding: clamp(70px,9vw,140px) clamp(20px,4vw,56px);
  background: var(--paper);
  border-top: 1px solid var(--rule);
}
.compare__head {
  max-width: 1640px; margin: 0 auto 40px;
  display: grid; gap: 14px;
  text-align: center;
  justify-items: center;
}
.compare__scroll {
  max-width: 1640px; margin: 0 auto;
  overflow-x: auto;
  border: 1px solid var(--rule);
  background: var(--paper);
  border-radius: 6px;
}
.compare__table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--f-body);
  font-size: 13px;
  font-weight: 400;
  min-width: 920px;
}
.compare__table th,
.compare__table td {
  padding: 18px 16px;
  text-align: left;
  border-bottom: 1px solid var(--rule);
  border-right: 1px solid var(--rule);
}
.compare__table th:last-child,
.compare__table td:last-child { border-right: 0; }
.compare__table thead th {
  background: var(--ink); color: var(--paper);
  vertical-align: bottom;
  letter-spacing: .12em;
  font-weight: 500;
  font-size: 11px;
  border-color: rgba(247,240,230,.1);
  padding: 24px 16px;
  text-transform: uppercase;
}
.compare__table .th-ml {
  display: block;
  font-family: var(--f-display);
  font-weight: 300;
  font-style: italic;
  font-size: 30px;
  letter-spacing: -.02em; line-height: 1;
  text-transform: none;
}
.compare__table .th-ml small {
  font-size: 11px; letter-spacing: .12em; padding-left: 2px;
  text-transform: lowercase; font-weight: 500;
  font-style: normal; font-family: var(--f-body);
}
.compare__table .th-price {
  display: block;
  margin-top: 8px;
  color: var(--blush-2);
  font-family: var(--f-edit); font-style: italic;
  font-size: 14px;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
}
.compare__table tbody th {
  background: var(--paper-2);
  font-weight: 500; text-transform: uppercase; letter-spacing: .14em;
  font-size: 11px;
  width: 140px;
  color: var(--ink-3);
}
.compare__table tbody td {
  background: var(--paper);
  color: var(--ink-2);
  font-family: var(--f-display);
  font-size: 15px;
}
.dots {
  display: inline-block;
  width: 60px; height: 6px;
  background: linear-gradient(to right, var(--ink) var(--p, 40%), var(--rule) var(--p, 40%));
  border-radius: 999px;
}
.dots-2 { --p: 30%; }
.dots-3 { --p: 55%; }
.dots-4 { --p: 75%; }
.dots-5 { --p: 95%; }

/* ---------- TECH ---------- */
.tech {
  background: var(--ink);
  color: var(--paper);
  padding: clamp(80px,10vw,150px) clamp(20px,4vw,56px);
  position: relative;
  overflow: hidden;
}
.tech::before {
  content: '';
  position: absolute; inset: -20%;
  background:
    radial-gradient(45% 35% at 80% 15%, rgba(232,211,196,.10), transparent 60%),
    radial-gradient(35% 35% at 10% 80%, rgba(184,152,102,.07), transparent 60%);
  pointer-events: none;
}
.tech__inner { max-width: 1500px; margin: 0 auto; position: relative; }
.tech .eyebrow { color: var(--blush-2); }
.tech .h-display { color: var(--paper); }
.tech .h-display em { color: var(--blush); }
.tech__grid {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 1px;
  background: rgba(247,240,230,.10);
  border: 1px solid rgba(247,240,230,.10);
  border-radius: 4px;
  overflow: hidden;
}
@media (max-width: 900px) { .tech__grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 540px) { .tech__grid { grid-template-columns: 1fr; } }
.tech__cell {
  background: var(--ink);
  padding: 38px 30px 34px;
  display: flex; flex-direction: column; gap: 14px;
  min-height: 280px;
  transition: background .35s var(--ease);
}
.tech__cell:hover { background: var(--ink-2); }
.tech__num {
  font-family: var(--f-display); font-weight: 300; font-style: italic;
  font-size: 56px; line-height: 1;
  color: var(--blush-2);
  letter-spacing: -.02em;
}
.tech__cell h3 {
  font-family: var(--f-display); font-weight: 500; font-style: italic;
  letter-spacing: -.005em;
  font-size: 1.5rem;
  color: var(--paper);
}
.tech__cell p {
  font-family: var(--f-edit);
  color: var(--paper-2);
  font-size: 15px;
  line-height: 1.55;
  font-style: italic;
  font-weight: 400;
}

/* ---------- PROTOCOL TIMELINE ---------- */
.protocol {
  padding: clamp(80px,10vw,150px) clamp(20px,4vw,56px);
  background: var(--paper);
}
.protocol__inner { max-width: 1500px; margin: 0 auto; }
.protocol .eyebrow { display: block; margin-bottom: 22px; color: var(--ink-3); }
.timeline {
  list-style: none;
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(4,1fr);
  position: relative;
  border-top: 1px solid var(--ink);
  padding-top: 24px;
}
@media (max-width: 900px) { .timeline { grid-template-columns: 1fr; } }
.timeline li {
  padding: 22px 28px 0 0;
  border-right: 1px solid var(--rule);
  position: relative;
}
.timeline li:last-child { border-right: 0; }
.timeline li::before {
  content: '';
  position: absolute; top: -29px; left: 0;
  width: 11px; height: 11px;
  background: var(--gold);
  border-radius: 50%;
}
.tl__day {
  font-family: var(--f-body);
  font-size: 11px; letter-spacing: .26em;
  text-transform: uppercase; font-weight: 500;
  color: var(--ink-3);
  display: block; margin-bottom: 14px;
}
.timeline h4 {
  font-family: var(--f-display);
  font-style: italic;
  font-size: clamp(1.25rem, 1.55vw, 1.55rem);
  font-weight: 500;
  letter-spacing: -.005em; line-height: 1.2;
  margin-bottom: 12px;
  color: var(--ink);
}
.timeline p {
  font-family: var(--f-edit);
  color: var(--ink-2);
  font-size: 15px;
  line-height: 1.55;
  max-width: 28ch;
  font-weight: 400;
}

/* ---------- TESTIMONY ---------- */
.testify {
  background: var(--blush);
  padding: clamp(80px,10vw,150px) clamp(20px,4vw,56px);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  position: relative;
  overflow: hidden;
}
.testify::before {
  content: '"';
  position: absolute;
  font-family: var(--f-display); font-style: italic;
  font-size: 30rem;
  color: rgba(42,31,24,.05);
  top: -8rem; left: -2rem;
  line-height: 1;
}
.testify__inner { max-width: 1100px; margin: 0 auto; text-align: center; position: relative; }
.testify .eyebrow { color: var(--ink-3); display: block; margin-bottom: 28px; }
.testify blockquote p {
  font-family: var(--f-display);
  font-style: italic;
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  line-height: 1.3;
  color: var(--ink);
  font-weight: 400;
  letter-spacing: -.005em;
}
.testify cite {
  font-family: var(--f-body);
  font-style: normal;
  font-size: 11px;
  letter-spacing: .26em;
  color: var(--ink-3);
  text-transform: uppercase;
  display: inline-block;
  margin-top: 28px;
  font-weight: 500;
}

/* ---------- VISIT (try-before-you-buy studio) ---------- */
.visit {
  padding: clamp(80px, 10vw, 150px) clamp(20px, 4vw, 56px);
  background:
    radial-gradient(70% 50% at 50% 0%, rgba(184,152,102,.10), transparent 60%),
    linear-gradient(180deg, #1a1410 0%, #0a0806 100%);
  color: var(--paper);
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(247,240,230,.06);
  border-bottom: 1px solid rgba(247,240,230,.06);
}
.visit::before {
  content: '';
  position: absolute;
  inset: -10%;
  background:
    radial-gradient(35% 30% at 90% 95%, rgba(232,211,196,.05), transparent 65%),
    radial-gradient(30% 25% at 5% 5%, rgba(184,152,102,.06), transparent 65%);
  pointer-events: none;
}
.visit__inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  display: grid;
  gap: 18px;
  justify-items: center;
}
.visit .eyebrow { color: var(--blush-2); }
.visit .h-display { color: var(--paper); }
.visit .h-display em { color: var(--blush); }
.visit__lede {
  font-family: var(--f-edit);
  font-style: italic;
  font-size: clamp(1rem, 1.3vw, 1.2rem);
  line-height: 1.55;
  color: var(--paper-2);
  max-width: 56ch;
  font-weight: 400;
  margin-top: 4px;
}

.visit__card {
  margin-top: 36px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1px 1fr 1px 1fr;
  gap: 0;
  align-items: stretch;
  background:
    linear-gradient(180deg, rgba(247,240,230,.04) 0%, rgba(247,240,230,.015) 100%);
  border: 1px solid rgba(247,240,230,.12);
  border-radius: 6px;
  padding: 36px 0;
}
.visit__col {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  padding: 0 28px;
  text-align: center;
}
.visit__divider {
  width: 1px;
  background: linear-gradient(180deg, transparent 0%, rgba(247,240,230,.18) 25%, rgba(247,240,230,.18) 75%, transparent 100%);
}
.visit__label {
  font-family: var(--f-body);
  font-size: 10px;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--blush-2);
  font-weight: 500;
}
.visit__value {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 400;
  font-size: 1.1rem;
  line-height: 1.55;
  color: var(--paper);
  letter-spacing: -.005em;
}
.visit__value em {
  font-family: var(--f-display);
  font-style: italic;
  color: var(--blush);
}
.btn--visit {
  margin-top: 8px;
  background: var(--paper);
  color: var(--ink);
  border-color: var(--paper);
  padding: 13px 22px;
  font-size: 10px;
}
.btn--visit:hover {
  background: var(--blush);
  color: var(--ink);
  border-color: var(--blush);
}

.visit__foot {
  margin-top: 30px;
  font-family: var(--f-body);
  font-size: 10px;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--blush-2);
  font-weight: 500;
}

@media (max-width: 760px) {
  .visit__card {
    grid-template-columns: 1fr;
    padding: 28px 0;
  }
  .visit__col { padding: 22px 26px; }
  .visit__divider {
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(247,240,230,.18) 25%, rgba(247,240,230,.18) 75%, transparent 100%);
    justify-self: center;
  }
}

/* ---------- FAQ ---------- */
.faq {
  padding: clamp(80px,10vw,150px) clamp(20px,4vw,56px);
  background: var(--paper);
}
.faq__head {
  max-width: 1500px; margin: 0 auto 40px;
  display: grid; gap: 14px;
  text-align: center;
  justify-items: center;
}
.faq__head .eyebrow { color: var(--ink-3); }
.faq__list {
  max-width: 1000px; margin: 0 auto;
  border-top: 1px solid var(--ink);
}
.faq__list details {
  border-bottom: 1px solid var(--rule);
}
.faq__list summary {
  list-style: none;
  cursor: pointer;
  padding: 28px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.15rem, 1.4vw, 1.35rem);
  letter-spacing: -.005em;
  color: var(--ink);
  transition: color .25s var(--ease);
}
.faq__list summary:hover { color: var(--plum); }
.faq__list summary::-webkit-details-marker { display: none; }
.qmark {
  font-family: var(--f-display); font-weight: 300;
  font-size: 32px; color: var(--ink-3);
  transition: transform .35s var(--ease);
  font-style: normal;
}
details[open] .qmark { transform: rotate(45deg); color: var(--plum); }
.faq__body {
  padding-bottom: 26px;
  font-family: var(--f-edit);
  color: var(--ink-2);
  max-width: 70ch;
  line-height: 1.6;
  font-size: 1.1rem;
  font-weight: 400;
}

/* ---------- NEWSLETTER ---------- */
.news {
  padding: clamp(70px,9vw,140px) clamp(20px,4vw,56px);
  background: var(--ink);
  color: var(--paper);
}
.news__inner {
  max-width: 1500px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 900px) { .news__inner { grid-template-columns: 1fr; } }
.news .eyebrow { color: var(--blush-2); display: block; margin-bottom: 18px; }
.news__head {
  font-family: var(--f-display);
  font-size: clamp(2rem, 3.6vw, 3.2rem);
  letter-spacing: -.015em;
  line-height: 1;
  font-weight: 300;
  color: var(--paper);
}
.news__head em { font-style: italic; color: var(--blush); font-weight: 400; }
.news__sub {
  font-family: var(--f-edit);
  color: var(--paper-2);
  margin-top: 18px;
  font-size: 1.1rem;
  font-style: italic;
  font-weight: 400;
}
.news__form {
  display: flex; align-items: center; gap: 0;
  border-bottom: 1px solid var(--blush-2);
  padding-bottom: 4px;
}
.news__form input {
  flex: 1;
  background: transparent;
  border: 0; outline: 0;
  color: var(--paper);
  padding: 14px 0;
  font-family: var(--f-edit);
  font-size: 1.15rem;
  font-style: italic;
  font-weight: 400;
}
.news__form input::placeholder { color: var(--blush-2); opacity: .8; }
.news__form button {
  font-family: var(--f-body);
  font-size: 12px; letter-spacing: .26em;
  font-weight: 500;
  padding: 14px 24px;
  border: 0;
  color: var(--paper);
  cursor: pointer;
  transition: color .25s var(--ease);
}
.news__form button:hover { color: var(--blush); }

/* ---------- FOOTER ---------- */
.foot {
  background: var(--ink);
  color: var(--paper);
  padding: 70px clamp(20px,4vw,56px) 30px;
  border-top: 1px solid rgba(247,240,230,.08);
}
.foot__top {
  max-width: 1640px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 2fr;
  gap: 60px;
}
@media (max-width: 900px) { .foot__top { grid-template-columns: 1fr; } }
.foot__brand p {
  font-family: var(--f-edit);
  color: var(--blush-2);
  margin-top: 22px;
  font-size: 14px;
  line-height: 1.55;
  font-style: italic;
  font-weight: 400;
}
.foot__cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-self: start;
}
@media (max-width: 700px) { .foot__cols { grid-template-columns: 1fr; gap: 30px; } }
.foot__cols h5 {
  font-family: var(--f-body);
  font-size: 11px; letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--blush-2);
  margin-bottom: 20px;
  font-weight: 500;
}
.foot__cols a {
  display: block;
  font-family: var(--f-display);
  font-size: 15px;
  margin-bottom: 12px;
  color: var(--paper-2);
  transition: color .25s var(--ease);
  font-weight: 400;
}
.foot__cols a:hover { color: var(--blush); }

.foot__bot {
  max-width: 1640px; margin: 80px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(247,240,230,.12);
  display: flex; justify-content: space-between;
  font-family: var(--f-body); font-size: 11px;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--blush-2);
  font-weight: 400;
}

/* ---------- REVEAL ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s var(--ease), transform 1s var(--ease);
  transition-delay: var(--d, 0s);
}
[data-reveal].in {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================================
   MOBILE REFINEMENTS  ·  ≤ 720px
   ========================================================= */
@media (max-width: 720px) {

  /* Hero — slightly tighter, badges legible */
  .hero { min-height: 86vh; }
  .hero__content { gap: 22px; }
  .hero__badges { gap: 10px 14px; padding-top: 18px; margin-top: 24px; }
  .hero__badges li { padding-right: 10px; }
  .hero__badges strong { font-size: 1.45rem; }
  .hero__badges span { font-size: 9px; letter-spacing: .2em; }

  /* Promo */
  .promo { padding: 44px 22px; }
  .promo__head { font-size: 1.3rem; line-height: 1.3; }
  .promo__sub { font-size: 14px; }

  /* Intro — tighter prose, image edge breathing */
  .intro__copy .h-display { max-width: none; }
  .intro__media img { aspect-ratio: 4/4.4; }
  .intro__media figcaption { font-size: 12px; padding-left: 14px; }
  .ticks li { font-size: 1rem; padding: 14px 0 14px 30px; }
  .ticks li::before { top: 14px; font-size: 12px; }

  /* Collection / carousel — head left-aligned, looser top padding */
  .collection { padding: 60px 0 80px; }
  .collection__head {
    padding: 0 22px;
    text-align: left;
    justify-items: start;
    margin-bottom: 28px;
  }
  .collection__head .filter { justify-content: flex-start; }

  /* Compare table — labels stay sticky; smaller cells */
  .compare { padding: 60px 0 70px; }
  .compare__head { padding: 0 22px; }
  .compare__scroll { margin: 0 22px; }
  .compare__table { min-width: 720px; font-size: 12px; }
  .compare__table th,
  .compare__table td { padding: 13px 10px; }
  .compare__table thead th { padding: 16px 10px; }
  .compare__table .th-ml { font-size: 22px; }
  .compare__table .th-ml small { font-size: 9px; }
  .compare__table .th-price { font-size: 12px; margin-top: 5px; }
  .compare__table tbody td { font-size: 13px; }
  .compare__table tbody th {
    width: 96px;
    position: sticky;
    left: 0;
    z-index: 2;
    background: var(--paper-2);
    box-shadow: 1px 0 0 var(--rule);
    font-size: 10px;
    letter-spacing: .12em;
  }
  .compare__table thead th:first-child {
    position: sticky; left: 0; z-index: 3;
    background: var(--ink);
    width: 96px;
  }
  .dots { width: 44px; height: 5px; }

  /* Tech grid — smaller numerals so cells don't run long */
  .tech { padding: 72px 22px; }
  .tech__cell { padding: 28px 22px 26px; min-height: 0; }
  .tech__num { font-size: 40px; }
  .tech__cell h3 { font-size: 1.25rem; }
  .tech__cell p { font-size: 14px; }

  /* Protocol timeline — give each item its own row, lose hard right border */
  .protocol { padding: 70px 22px; }
  .timeline { padding-top: 18px; gap: 28px; }
  .timeline li { padding: 18px 0 6px 0; border-right: 0; border-top: 1px solid var(--rule); }
  .timeline li:first-child { border-top: 0; }
  .timeline li::before { top: -22px; left: 0; width: 9px; height: 9px; }
  .timeline p { max-width: none; font-size: 14px; }

  /* Testimony — shrink the giant quote pseudo so it doesn't overflow */
  .testify { padding: 70px 22px; }
  .testify::before { font-size: 14rem; top: -3rem; left: -1rem; }
  .testify blockquote p { font-size: 1.4rem; line-height: 1.32; }

  /* FAQ */
  .faq { padding: 70px 22px; }
  .faq__list summary { padding: 22px 0; font-size: 1.05rem; gap: 14px; }
  .qmark { font-size: 26px; }
  .faq__body { font-size: 1rem; padding-bottom: 20px; }

  /* Newsletter — stack heading & form, full-width form */
  .news { padding: 60px 22px; }
  .news__head { font-size: 1.85rem; }
  .news__form { width: 100%; }

  /* Footer — softer rhythm */
  .foot { padding: 56px 22px 28px; }
  .foot__top { gap: 40px; }
  .foot__brand .brand--xl { font-size: 2.6rem; }
  .foot__cols { gap: 26px 24px; }
  .foot__bot {
    margin-top: 50px;
    flex-direction: column; gap: 10px;
    text-align: center;
  }

  /* Enquiry modal — full-bleed feel on phones */
  .enq { padding: 12px; }
  .enq__panel { padding: 28px 22px 26px; max-height: calc(100vh - 24px); }
  .enq__title { font-size: 1.4rem; }
  .enq__product { padding: 14px 16px; }
  .enq__pml { font-size: 1.6rem; }
  .enq__pprice { font-size: 1.5rem; }
  .enq__cta { gap: 12px; }
  .enq__cta .btn { width: 100%; justify-content: center; }
}

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

/* ---------- ENQUIRY MODAL ---------- */
.enq {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.enq.is-open { display: flex; animation: enqFade .35s var(--ease) both; }
@keyframes enqFade {
  from { opacity: 0; }
  to { opacity: 1; }
}
.enq__veil {
  position: absolute; inset: 0;
  background: rgba(42,31,24,.55);
  backdrop-filter: blur(6px);
}
.enq__panel {
  position: relative;
  width: min(620px, 100%);
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  background: var(--paper);
  border-radius: 6px;
  padding: 40px clamp(24px, 4vw, 48px) 36px;
  box-shadow: 0 60px 120px -40px rgba(42,31,24,.6);
  animation: enqIn .45s var(--ease) both;
}
@keyframes enqIn {
  from { opacity: 0; transform: translateY(24px) scale(.98); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.enq__close {
  position: absolute; top: 16px; right: 16px;
  width: 38px; height: 38px;
  display: grid; place-items: center;
  border-radius: 999px;
  color: var(--ink-2);
  transition: background .25s var(--ease);
}
.enq__close:hover { background: var(--blush); color: var(--ink); }

.enq__head { display: grid; gap: 10px; margin-bottom: 20px; }
.enq__head .eyebrow { color: var(--ink-3); }
.enq__title {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(1.6rem, 2.4vw, 2.1rem);
  letter-spacing: -.01em;
  line-height: 1.15;
  color: var(--ink);
}
.enq__title em {
  font-family: var(--f-display);
  font-style: italic;
  color: var(--plum);
  font-weight: 500;
}
.enq__sub {
  font-family: var(--f-edit);
  font-style: italic;
  color: var(--ink-2);
  font-size: 1rem;
  line-height: 1.5;
}
.enq__sub strong {
  font-family: var(--f-body);
  font-style: normal;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: .01em;
}

.enq__product {
  background: var(--blush);
  padding: 18px 22px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}
.enq__pml {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 400;
  font-size: 2rem;
  letter-spacing: -.02em;
  line-height: 1;
  color: var(--ink);
}
.enq__pml small {
  font-style: normal;
  font-family: var(--f-body);
  font-size: .35em;
  letter-spacing: .12em;
  font-weight: 500;
  padding-left: 3px;
}
.enq__ptier {
  font-family: var(--f-body);
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--ink-3);
  font-weight: 500;
  margin-top: 6px;
}
.enq__pprice {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--ink);
  letter-spacing: -.01em;
}

.enq__form { display: grid; gap: 16px; }
.enq__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
@media (max-width: 520px) { .enq__row { grid-template-columns: 1fr; } }
.enq__form label {
  display: grid; gap: 6px;
}
.enq__form label > span {
  font-family: var(--f-body);
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--ink-3);
  font-weight: 500;
}
.enq__form label > span small {
  text-transform: none;
  letter-spacing: 0;
  font-style: italic;
  font-family: var(--f-edit);
  color: var(--ink-3);
  font-size: 12px;
  margin-left: 4px;
}
.enq__form input[type="text"],
.enq__form input[type="email"],
.enq__form input[type="tel"],
.enq__form textarea {
  width: 100%;
  padding: 12px 14px;
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: 4px;
  font-family: var(--f-edit);
  font-size: 1rem;
  color: var(--ink);
  outline: 0;
  transition: border-color .25s var(--ease), background .25s var(--ease);
}
.enq__form input:focus,
.enq__form textarea:focus {
  border-color: var(--ink);
  background: #fff;
}
.enq__form textarea {
  resize: vertical;
  min-height: 70px;
  font-family: var(--f-body);
  font-style: normal;
}
.enq__check {
  display: flex !important;
  align-items: flex-start;
  gap: 10px;
  margin-top: 4px;
}
.enq__check input { margin-top: 4px; accent-color: var(--ink); }
.enq__check span {
  font-family: var(--f-edit);
  font-style: italic;
  font-size: 14px;
  color: var(--ink-2);
  letter-spacing: 0 !important;
  text-transform: none !important;
  font-weight: 400 !important;
}
.enq__cta {
  display: flex;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 8px;
}

.enq__success {
  text-align: center;
  padding: 30px 8px 12px;
  display: grid;
  gap: 12px;
  justify-items: center;
}
.enq__tick {
  display: grid; place-items: center;
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--blush);
  color: var(--ink);
  font-size: 28px;
  margin-bottom: 6px;
}
.enq__success h4 {
  font-family: var(--f-display);
  font-style: italic;
  font-size: clamp(1.6rem, 2.4vw, 2rem);
  font-weight: 400;
  color: var(--ink);
}
.enq__success p {
  font-family: var(--f-edit);
  font-style: italic;
  color: var(--ink-2);
  max-width: 38ch;
  line-height: 1.5;
}
.enq__success strong {
  font-family: var(--f-body);
  font-style: normal;
  font-weight: 500;
  color: var(--ink);
}
.enq__success .btn--mini { margin-top: 10px; }

body.enq-open { overflow: hidden; }

/* ---------- ENQUIRE CHOOSER ---------- */
.enq__panel--chooser { width: min(560px, 100%); }
.chooser {
  display: grid;
  gap: 12px;
  margin-top: 10px;
}
.chooser__opt {
  display: grid;
  grid-template-columns: 44px 1fr 18px;
  align-items: center;
  gap: 16px;
  padding: 22px 22px;
  border: 1px solid var(--rule);
  border-radius: 6px;
  background: var(--paper);
  text-align: left;
  cursor: pointer;
  transition: all .25s var(--ease);
  position: relative;
}
.chooser__opt:hover {
  background: var(--blush);
  border-color: var(--ink);
  transform: translateY(-1px);
  box-shadow: 0 14px 28px -16px rgba(42,31,24,.28);
}
.chooser__icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: var(--paper-2);
  color: var(--ink-2);
  transition: background .25s var(--ease), color .25s var(--ease);
}
.chooser__opt:hover .chooser__icon {
  background: var(--ink);
  color: var(--paper);
}
.chooser__name {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 500;
  font-size: 1.25rem;
  color: var(--ink);
  letter-spacing: -.005em;
  line-height: 1.1;
  grid-column: 2;
  grid-row: 1;
}
.chooser__desc {
  font-family: var(--f-edit);
  font-style: italic;
  font-weight: 400;
  font-size: 14px;
  color: var(--ink-3);
  line-height: 1.5;
  margin-top: 4px;
  grid-column: 2;
  grid-row: 2;
}
.chooser__arrow {
  grid-column: 3;
  grid-row: 1 / span 2;
  display: grid;
  place-items: center;
  color: var(--ink-3);
  transition: transform .3s var(--ease), color .3s var(--ease);
}
.chooser__opt:hover .chooser__arrow {
  transform: translateX(4px);
  color: var(--ink);
}
.chooser__or {
  margin-top: 18px;
  text-align: center;
  font-family: var(--f-edit);
  font-style: italic;
  font-size: 14px;
  color: var(--ink-3);
}
.chooser__or a {
  font-family: var(--f-body);
  font-style: normal;
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--ink);
  border-bottom: 1px solid var(--rule);
  padding-bottom: 1px;
  margin-left: 4px;
}
.chooser__or a:hover { border-bottom-color: var(--ink); }
