/** Shopify CDN: Minification failed

Line 989:0 Unexpected "\x1a"

**/
/* =========================================================================
   INTIMMACY — Chrome, commerce components, storytelling sections
   ========================================================================= */

/* ---------- ANNOUNCEMENT ---------- */
.announce {
  background: var(--night-900);
  color: rgba(252, 250, 247, 0.9);
  font-size: var(--fs-xs);
  letter-spacing: 0.04em;
  text-align: center;
  padding: 9px var(--gutter);
  position: relative;
  z-index: 60;
}
.announce a { margin-left: 6px; color: var(--dawn-400); font-weight: 600; border-bottom: 1px solid rgba(239, 187, 131, 0.4); }
.announce a:hover { color: var(--dawn-300); }

/* ---------- HEADER ---------- */
.hdr {
  position: sticky; top: 0; z-index: 50;
  background: rgba(252, 250, 247, 0.86);
  backdrop-filter: saturate(1.4) blur(16px);
  -webkit-backdrop-filter: saturate(1.4) blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.4s var(--ease), background-color 0.4s var(--ease), transform 0.45s var(--ease);
}
.hdr.is-stuck { border-bottom-color: var(--line); }
.hdr.is-hidden { transform: translateY(-101%); }
.hdr__inner {
  max-width: 1560px; margin-inline: auto;
  padding: 0 var(--gutter);
  height: var(--header-h);
  display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: var(--sp-5);
}
.hdr__logo { display: inline-flex; align-items: center; gap: 10px; }
.hdr__logo-img { width: 175px; height: auto; object-fit: contain; transition: width 0.3s ease; }
@media (min-width: 760px) {
  .hdr__logo-img { width: 225px; }
}
.wordmark {
  font-family: var(--font-display); font-size: 1.35rem; letter-spacing: -0.03em;
  line-height: 1; display: flex; flex-direction: column;
}
.wordmark small {
  font-family: var(--font-body); font-size: 9px; letter-spacing: 0.28em;
  text-transform: uppercase; color: var(--clr-text-muted); margin-top: 3px;
}
.logo-glyph { width: 30px; height: 30px; flex: none; }

.nav { display: none; justify-self: center; }
@media (min-width: 1080px) { .nav { display: flex; align-items: center; gap: var(--sp-5); } }
.nav__link {
  position: relative; font-size: var(--fs-base); font-weight: 500;
  padding: 6px 2px; color: var(--clr-text);
  display: inline-flex; align-items: center; gap: 5px;
}
.nav__link::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 1px; width: 100%;
  background: currentColor; transform: scaleX(0); transform-origin: right;
  transition: transform 0.4s var(--ease);
}
.nav__link:hover::after, .nav__link[aria-current="page"]::after { transform: scaleX(1); transform-origin: left; }
.nav__link[aria-current="page"] { color: var(--clr-accent); }
.nav__item { position: relative; }
.nav__caret { width: 12px; height: 12px; transition: transform 0.3s var(--ease); }
.nav__item:hover .nav__caret { transform: rotate(180deg); }
.nav__panel {
  position: absolute; top: calc(100% + 14px); left: 50%; transform: translate(-50%, 8px); z-index: 100;
  min-width: 230px; background: var(--clr-surface); border: 1px solid var(--line);
  border-radius: var(--r-lg); box-shadow: var(--shadow-lg); padding: var(--sp-3);
  opacity: 0; visibility: hidden; transition: all 0.32s var(--ease);
}
.nav__panel::before {
  content: ""; position: absolute; height: 16px; top: -16px; left: 0; width: 100%;
}
.nav__item:hover .nav__panel, .nav__item:focus-within .nav__panel {
  opacity: 1; visibility: visible; transform: translate(-50%, 0);
}
.nav__panel a {
  display: block; padding: 10px 14px; border-radius: var(--r-sm); font-size: var(--fs-base);
  transition: background-color 0.2s, color 0.2s; color: var(--clr-text);
}
.nav__panel a:hover { background: var(--linen); color: var(--clr-accent); }

.hdr__actions { display: flex; align-items: center; gap: 2px; justify-self: end; }
.icon-btn {
  position: relative; width: 42px; height: 42px; border-radius: var(--r-pill);
  display: grid; place-items: center; color: var(--clr-text);
  transition: background-color 0.25s var(--ease), color 0.25s var(--ease);
}
.icon-btn:hover { background: var(--linen); color: var(--clr-accent); }
.icon-btn svg { width: 21px; height: 21px; }
.cart-count {
  position: absolute; top: 4px; right: 3px; min-width: 18px; height: 18px; padding: 0 5px;
  background: var(--clr-accent); color: #fff; border-radius: var(--r-pill);
  font-size: 10px; font-weight: 700; display: grid; place-items: center; line-height: 1;
  transform: scale(0); transition: transform 0.35s var(--ease);
}
.cart-count.is-on { transform: scale(1); }
.cart-count.is-bump { animation: bump 0.5s var(--ease); }
@keyframes bump { 0%, 100% { transform: scale(1); } 40% { transform: scale(1.45); } }
.burger { display: grid; }
@media (min-width: 1080px) { .burger { display: none; } }
.burger span {
  display: block; width: 20px; height: 1.5px; background: currentColor; border-radius: 2px;
  transition: transform 0.35s var(--ease), opacity 0.25s var(--ease);
}
.burger span + span { margin-top: 5px; }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ---------- OVERLAY + DRAWERS ---------- */
.scrim {
  position: fixed; inset: 0; z-index: 70; background: rgba(14, 17, 32, 0.5);
  backdrop-filter: blur(3px); opacity: 0; visibility: hidden;
  transition: opacity 0.45s var(--ease), visibility 0.45s;
}
.scrim.is-open { opacity: 1; visibility: visible; }
body.is-locked { overflow: hidden; }

.drawer {
  position: fixed; top: 0; right: 0; z-index: 80;
  width: min(440px, 100%); height: 100dvh;
  background: var(--clr-bg); display: flex; flex-direction: column;
  transform: translateX(101%); transition: transform 0.55s var(--ease);
  box-shadow: var(--shadow-lg);
}
.drawer.is-open { transform: none; }
.drawer--left { right: auto; left: 0; transform: translateX(-101%); width: min(400px, 100%); }
.drawer--top {
  right: 0; left: 0; width: 100%; height: auto; max-height: 88dvh;
  transform: translateY(-101%); border-radius: 0 0 var(--r-xl) var(--r-xl);
}
.drawer__head {
  display: flex; align-items: center; justify-content: space-between;
  padding: var(--sp-5) var(--sp-5) var(--sp-4);
  border-bottom: 1px solid var(--line); flex: none;
}
.drawer__head h2, .drawer__head h3 { font-size: var(--fs-xl); }
.drawer__body { flex: 1; overflow-y: auto; padding: var(--sp-5); overscroll-behavior: contain; }
.drawer__foot { flex: none; padding: var(--sp-5); border-top: 1px solid var(--line); background: var(--clr-surface); }

/* Mobile nav */
.mnav__link {
  display: flex; align-items: center; justify-content: space-between;
  font-family: var(--font-display); font-size: 1.6rem; padding: 13px 0;
  border-bottom: 1px solid var(--line);
}
.mnav__sub { padding: 4px 0 12px 14px; }
.mnav__sub a { display: block; padding: 8px 0; color: var(--clr-text-muted); font-size: var(--fs-base); }
.mnav__sub a:hover { color: var(--clr-accent); }
.mnav__meta { margin-top: var(--sp-6); padding-top: var(--sp-5); border-top: 1px solid var(--line); font-size: var(--fs-sm); color: var(--clr-text-muted); }
.mnav__meta a { display: block; padding: 6px 0; }

/* ---------- SEARCH ---------- */
.search-panel { padding: var(--sp-6) var(--gutter) var(--sp-7); }
.search-form { position: relative; max-width: 720px; margin-inline: auto; }
.search-form input {
  padding: 18px 54px 18px 20px; font-size: var(--fs-md); border-radius: var(--r-pill);
}
.search-form button[type="submit"] {
  position: absolute; right: 8px; top: 50%; transform: translateY(-50%);
  width: 42px; height: 42px; border-radius: var(--r-pill); display: grid; place-items: center;
  background: var(--clr-deep); color: var(--porcelain);
}
.search-results { max-width: 720px; margin: var(--sp-5) auto 0; }
.search-suggestion {
  display: flex; gap: var(--sp-4); align-items: center; padding: 10px;
  border-radius: var(--r-md); transition: background-color 0.2s;
}
.search-suggestion:hover { background: var(--linen); }
.search-suggestion img { width: 54px; height: 54px; object-fit: cover; border-radius: var(--r-sm); flex: none; }
.search-suggestion .t { font-weight: 600; }
.search-suggestion .p { font-size: var(--fs-sm); color: var(--clr-text-muted); }
.search-hint { text-align: center; color: var(--clr-text-muted); font-size: var(--fs-sm); padding: var(--sp-5) 0; }

/* ---------- CART DRAWER ---------- */
.cart-line { display: grid; grid-template-columns: 82px 1fr; gap: var(--sp-4); padding: var(--sp-4) 0; border-bottom: 1px solid var(--line); }
.cart-line:first-child { padding-top: 0; }
.cart-line__img { width: 82px; height: 96px; object-fit: cover; border-radius: var(--r-md); background: var(--linen); }
.cart-line__title { font-weight: 600; font-size: var(--fs-base); line-height: 1.35; }
.cart-line__variant { font-size: var(--fs-sm); color: var(--clr-text-muted); margin-top: 2px; }
.cart-line__row { display: flex; align-items: center; justify-content: space-between; gap: var(--sp-3); margin-top: var(--sp-3); }
.cart-line__price { font-weight: 700; font-variant-numeric: tabular-nums; }
.cart-line .stepper button { width: 32px; height: 34px; font-size: 15px; }
.cart-line .stepper input { width: 34px; height: 34px; font-size: var(--fs-sm); }
.cart-remove { font-size: var(--fs-sm); color: var(--clr-text-muted); text-decoration: underline; text-underline-offset: 3px; }
.cart-remove:hover { color: var(--clr-accent); }
.cart-empty { text-align: center; padding: var(--sp-8) 0; }
.cart-empty svg { width: 46px; height: 46px; margin: 0 auto var(--sp-4); color: var(--stone); }

.cart-progress { margin-bottom: var(--sp-5); }
.cart-progress__track { height: 5px; background: var(--sand); border-radius: var(--r-pill); overflow: hidden; }
.cart-progress__bar { height: 100%; background: var(--grad-accent); border-radius: var(--r-pill); transition: width 0.6s var(--ease); }
.cart-progress p { font-size: var(--fs-sm); margin-bottom: var(--sp-2); color: var(--clr-text-muted); }

.upsell { border-top: 1px solid var(--line); padding-top: var(--sp-4); margin-top: var(--sp-4); }
.upsell__title { font-size: var(--fs-xs); letter-spacing: 0.14em; text-transform: uppercase; color: var(--clr-text-muted); margin-bottom: var(--sp-3); font-weight: 600; }
.upsell__item { display: grid; grid-template-columns: 56px 1fr auto; gap: var(--sp-3); align-items: center; padding: var(--sp-2) 0; }
.upsell__item img { width: 56px; height: 56px; object-fit: cover; border-radius: var(--r-sm); background: var(--linen); }
.upsell__item .n { font-size: var(--fs-sm); font-weight: 600; line-height: 1.3; }
.upsell__item .p { font-size: var(--fs-sm); color: var(--clr-text-muted); }
.cart-summary-row { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: var(--sp-3); }
.cart-summary-row .total { font-size: var(--fs-xl); font-family: var(--font-display); }
.cart-note { font-size: var(--fs-xs); color: var(--clr-text-muted); text-align: center; margin-top: var(--sp-3); }

/* ---------- TRUST STRIP ---------- */
.trust-strip { padding-block: clamp(32px, 5vw, 64px); background: var(--linen); border-block: 1px solid var(--line); }
.trust-strip__grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-5); background: transparent;
}
@media (min-width: 760px) { .trust-strip__grid { grid-template-columns: repeat(4, 1fr); gap: clamp(20px, 4vw, 40px); } }
.trust-cell {
  background: transparent; padding: var(--sp-3);
  display: flex; flex-direction: column; align-items: center; gap: var(--sp-3); text-align: center;
}
.trust-cell svg { width: 32px; height: 32px; color: var(--clr-accent); flex: none; }
.trust-cell b { display: block; font-family: var(--font-display); font-size: var(--fs-xl); line-height: 1.2; font-weight: 400; color: var(--night-900); }
.trust-cell span { font-size: var(--fs-sm); color: var(--clr-text-muted); }

/* ---------- OPENING / HERO ---------- */
.opening { position: relative; min-height: clamp(560px, 88svh, 900px); display: grid; align-items: end; overflow: hidden; color: var(--porcelain); }

.opening--d-small { min-height: clamp(400px, 60svh, 600px); }
.opening--d-medium { min-height: clamp(560px, 75svh, 800px); }
.opening--d-large { min-height: clamp(600px, 90svh, 1000px); }
.opening--d-full { min-height: 100svh; }
.opening--d-adapt { min-height: 0; }
.opening--d-adapt .opening__bg { position: relative; inset: auto; }
.opening--d-adapt .opening__inner { position: absolute; inset: 0; display: grid; align-items: end; }

@media (max-width: 899px) {
  .opening--m-small { min-height: 400px; }
  .opening--m-medium { min-height: 560px; }
  .opening--m-large { min-height: 700px; }
  .opening--m-full { min-height: 100svh; }
  .opening--m-adapt { min-height: 0; }
  .opening--m-adapt .opening__bg { position: relative; inset: auto; }
  .opening--m-adapt .opening__inner { position: absolute; inset: 0; display: grid; align-items: end; }
}

.opening__bg--mobile-only { display: block; }
.opening__bg--desktop-only { display: none; }
@media (min-width: 900px) {
  .opening__bg--mobile-only { display: none; }
  .opening__bg--desktop-only { display: block; }
}
.opening__bg { position: absolute; inset: 0; z-index: 0; }
.opening__bg img, .opening__bg video { width: 100%; height: 100%; object-fit: cover; animation: kenburns 20s alternate ease-in-out infinite; transform-origin: center; }
@keyframes kenburns { 0% { transform: scale(1); } 100% { transform: scale(1.06); } }
@media (prefers-reduced-motion: reduce) { .opening__bg img, .opening__bg video { animation: none !important; } }
.opening__bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(14,17,32,0.62) 0%, rgba(14,17,32,0.22) 38%, rgba(14,17,32,0.82) 100%);
}
.opening__sky { position: absolute; inset: 0; background: var(--grad-dusk); }
.opening__link-overlay { position: absolute; inset: 0; z-index: 2; display: block; cursor: pointer; }
.opening__inner { position: relative; z-index: 3; width: 100%; padding-block: clamp(48px, 9vw, 110px); pointer-events: none; }
.opening__cta { display: flex; flex-wrap: wrap; gap: var(--sp-3); margin-top: var(--sp-6); pointer-events: auto; }
.opening__title { font-family: 'Playball', cursive; font-size: clamp(3rem, 7vw, 5.5rem); line-height: 1.1; margin-bottom: var(--sp-4); letter-spacing: 0.02em; font-weight: 400; font-style: normal; }
.opening__title em { font-style: italic; font-variation-settings: "WONK" 1, "SOFT" 10; color: var(--dawn-300); display: inline-block; animation: breathe 4s ease-in-out infinite alternate; }
@keyframes breathe { 0% { transform: translateY(0); } 100% { transform: translateY(-4px); } }
@media (prefers-reduced-motion: reduce) { .opening__title em { animation: none !important; transform: none !important; } }
.opening__lede { max-width: 40ch; margin-top: var(--sp-5); color: rgba(252, 250, 247, 0.78); font-size: var(--fs-md); }
.opening__scroll {
  position: absolute; bottom: 20px; right: var(--gutter); z-index: 3;
  display: none; align-items: center; gap: 10px; font-size: var(--fs-xs);
  letter-spacing: 0.18em; text-transform: uppercase; color: rgba(252, 250, 247, 0.6);
}
@media (min-width: 900px) { .opening__scroll { display: flex; } }
.opening__scroll i {
  display: block; width: 1px; height: 42px; background: currentColor; position: relative; overflow: hidden;
}
.opening__scroll i::after {
  content: ""; position: absolute; inset: 0; background: var(--dawn-400);
  animation: scrollhint 2.2s var(--ease-in-out) infinite;
}
@keyframes scrollhint { 0% { transform: translateY(-100%); } 60%, 100% { transform: translateY(100%); } }

/* Marquee */
.marquee { overflow: hidden; border-block: 1px solid var(--line-inverse); padding-block: 14px; }
.marquee__track { display: flex; width: max-content; animation: marquee 38s linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__item {
  display: inline-flex; align-items: center; gap: 12px; padding-inline: 26px;
  font-size: var(--fs-sm); letter-spacing: 0.1em; text-transform: uppercase; white-space: nowrap;
}
.marquee__item::after { content: "\2022"; opacity: 0.4; }

/* ---------- SCROLL STORY (couple narrative) ---------- */
.story { position: relative; background: var(--night-900); color: var(--porcelain); }
/* Mobile-first story layout */
.show-mobile { display: block; }
.hide-mobile { display: none; }
@media (min-width: 1000px) {
  .show-mobile { display: none; }
  .hide-mobile { display: block; }
}

.story__layout {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.story__layout::-webkit-scrollbar { display: none; }

@media (min-width: 1000px) {
  .story__layout { display: grid; grid-template-columns: 1fr 1fr; overflow-x: visible; scroll-snap-type: none; }
}

.story__stage {
  position: sticky; top: var(--header-h); height: 56svh; z-index: 1;
}
@media (min-width: 1000px) {
  .story__stage { top: 0; height: 100svh; }
}
.story__scene { position: absolute; inset: 0; opacity: 0; transition: opacity 1s var(--ease); }
.story__scene.is-active { opacity: 1; }
.story__scene img, .story__scene svg, .story__scene video { width: 100%; height: 100%; object-fit: cover; }
.story__scene::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(120deg, rgba(14,17,32,0.55), rgba(14,17,32,0.05));
}
.story__chapters { 
  display: contents; /* Let chapters flow as flex items on mobile */
}
@media (min-width: 1000px) {
  .story__chapters { display: block; padding-inline: var(--gutter); }
}

.story__chapter {
  flex: 0 0 100vw;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  display: flex; flex-direction: column;
  padding-block: 0;
  margin-inline: 0;
  max-width: none;
}
@media (min-width: 1000px) { 
  .story__chapter { 
    min-height: 84svh; max-width: 34rem; margin-inline: auto; 
    padding-block: clamp(48px, 9vw, 90px); 
    justify-content: center;
  }
}

.story__mobile-image {
  height: 50svh;
  width: 100%;
}
.story__mobile-image img {
  width: 100%; height: 100%; object-fit: cover;
}
.story__chapter-content {
  padding: var(--sp-5) var(--gutter) var(--sp-6);
  flex-grow: 1;
}
@media (min-width: 1000px) {
  .story__chapter-content { padding: 0; }
}

.story__index {
  font-size: var(--fs-xs); letter-spacing: 0.2em; color: var(--dawn-400);
  display: flex; align-items: center; gap: 12px; margin-bottom: var(--sp-5);
}
.story__index i { display: block; width: 40px; height: 1px; background: currentColor; opacity: 0.5; }
.story__chapter h3 { font-size: var(--fs-3xl); margin-bottom: var(--sp-4); }
.story__chapter h3 em { font-style: italic; font-variation-settings: "WONK" 1; color: var(--dawn-300); }
.story__chapter p { color: rgba(252, 250, 247, 0.68); font-size: var(--fs-md); }
.story__chapter p + p { margin-top: var(--sp-4); }
.story__pull {
  border-left: 2px solid var(--dawn-500); padding-left: var(--sp-4); margin-top: var(--sp-5);
  font-family: var(--font-display); font-size: var(--fs-lg); font-style: italic;
  font-variation-settings: "WONK" 1; color: var(--dawn-300);
}
.story__cta { margin-top: var(--sp-6); display: flex; flex-wrap: wrap; gap: var(--sp-3); }
.story__rail {
  position: fixed; left: 20px; top: 50%; transform: translateY(-50%); z-index: 5;
  display: none; flex-direction: column; gap: 10px;
}
@media (min-width: 1200px) { .story.is-engaged .story__rail { display: flex; } }
.story__rail button { width: 7px; height: 7px; border-radius: 50%; background: rgba(252,250,247,0.25); transition: all 0.35s var(--ease); }
.story__rail button.is-active { background: var(--dawn-400); transform: scale(1.5); }

/* Solution card inside story */
.story__solution {
  margin-top: var(--sp-6); padding: var(--sp-5);
  border: 1px solid var(--line-inverse); border-radius: var(--r-lg);
  background: rgba(252, 250, 247, 0.04); backdrop-filter: blur(6px);
  display: grid; grid-template-columns: 90px 1fr; gap: var(--sp-4); align-items: center;
}
.story__solution img { width: 90px; height: 100px; object-fit: cover; border-radius: var(--r-md); }
.story__solution .k { font-size: var(--fs-xs); letter-spacing: 0.14em; text-transform: uppercase; color: var(--dawn-400); }
.story__solution .n { font-family: var(--font-display); font-size: var(--fs-lg); margin-block: 3px 6px; }
.story__solution .p { font-size: var(--fs-sm); color: rgba(252,250,247,0.62); }

/* ---------- PRODUCT STORY SECTIONS ---------- */
.pstory { position: relative; padding-block: clamp(64px, 8vw, 112px); overflow: hidden; }
.pstory--editorial { background: var(--clr-surface); color: var(--clr-text); }
.pstory--technical { --bg: #1B2A4A; --text: #F5F0E8; --accent: #C9A96E; background: var(--bg); color: var(--text); }
.pstory--technical .lede { color: rgba(245, 240, 232, 0.7); }
.pstory--calm { background: #F7F5F0; color: #4A4A4A; }
.pstory__grid {
  display: grid; gap: clamp(40px, 8vw, 96px); align-items: center;
}
@media (min-width: 980px) {
  .pstory__grid { grid-template-columns: minmax(0, 50fr) minmax(0, 42fr); justify-content: space-between; }
  .pstory--flip .pstory__grid { grid-template-columns: minmax(0, 42fr) minmax(0, 50fr); direction: rtl; }
  .pstory--flip .pstory__copy { direction: ltr; }
}
@media (min-width: 980px) { .pstory--flip .pstory__media { order: 2; } }
.pstory__media { position: relative; border-radius: var(--r-xl); overflow: hidden; aspect-ratio: 4 / 5; }
.pstory__media img, .pstory__media svg { width: 100%; height: 100%; object-fit: cover; }
.pstory__badge {
  position: absolute; top: var(--sp-4); left: var(--sp-4); z-index: 3;
  background: rgba(252, 250, 247, 0.92); color: var(--night-900);
  padding: 7px 14px; border-radius: var(--r-pill);
  font-size: var(--fs-xs); font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
}
.pstory__name { font-size: var(--fs-3xl); margin-block: var(--sp-3) var(--sp-4); }
.pstory__for {
  display: inline-flex; align-items: center; gap: 8px; font-size: var(--fs-sm);
  padding: 6px 14px; border-radius: var(--r-pill); border: 1px solid currentColor;
  color: var(--clr-accent); margin-bottom: var(--sp-4);
}
.pstory__points { margin-top: var(--sp-5); display: grid; gap: var(--sp-4); }
.pstory__point { display: grid; grid-template-columns: 34px 1fr; gap: var(--sp-3); align-items: start; }
.pstory__point svg { width: 20px; height: 20px; color: var(--clr-accent); margin-top: 3px; }
.pstory--technical .pstory__point svg { color: var(--dawn-400); }
.pstory__point b { display: block; font-size: var(--fs-base); font-weight: 700; }
.pstory__point span { font-size: var(--fs-sm); color: var(--clr-text-muted); }
.pstory--technical .pstory__point span { color: rgba(252, 250, 247, 0.6); }
.pstory__foot { margin-top: var(--sp-6); display: flex; align-items: center; flex-wrap: wrap; gap: var(--sp-4); }
.pstory__price { font-family: var(--font-display); font-size: var(--fs-xl); }
.pstory__price s { color: var(--clr-text-muted); font-size: 0.7em; margin-left: 8px; }

/* Feel scale */
.feel { margin-top: var(--sp-5); }
.feel__row + .feel__row { margin-top: var(--sp-4); }
.feel__label { display: flex; justify-content: space-between; font-size: var(--fs-xs); letter-spacing: 0.1em; text-transform: uppercase; color: var(--clr-text-muted); margin-bottom: 7px; }
.pstory--technical .feel__label { color: rgba(252, 250, 247, 0.55); }
.feel__track { height: 4px; border-radius: var(--r-pill); background: var(--sand); position: relative; }
.pstory--technical .feel__track, .surface-deep .feel__track { background: rgba(252, 250, 247, 0.14); }
.feel__fill {
  position: absolute; inset: 0 auto 0 0; border-radius: var(--r-pill);
  background: var(--grad-accent); width: 0; transition: width 1.2s var(--ease);
}
.is-in .feel__fill { width: var(--v, 50%); }
.feel__pip {
  position: absolute; top: 50%; width: 12px; height: 12px; border-radius: 50%;
  background: var(--clr-accent); border: 2px solid var(--clr-bg);
  transform: translate(-50%, -50%) scale(0); left: var(--v, 50%);
  transition: transform 0.5s var(--ease) 0.9s;
}
.is-in .feel__pip { transform: translate(-50%, -50%) scale(1); }

/* ---------- RANGE GUIDE ---------- */
.range__grid {
  display: grid; grid-auto-flow: column; gap: var(--sp-5);
  overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none;
  margin-inline: calc(var(--gutter) * -1); padding-inline: var(--gutter);
  padding-bottom: var(--sp-4);
}
.range__grid::-webkit-scrollbar { display: none; }
@media (min-width: 700px) { 
  .range__grid { 
    display: grid; margin-inline: 0; padding-inline: 0; padding-bottom: 0;
    grid-template-columns: repeat(2, 1fr); overflow: visible; scroll-snap-type: none; gap: var(--sp-5); 
  } 
}
@media (min-width: 1100px) { .range__grid { grid-template-columns: repeat(3, 1fr); } }
.range-card {
  flex: 0 0 85vw; scroll-snap-align: center; width: 85vw;
  position: relative; display: flex; flex-direction: column;
  background: var(--clr-surface); border: 1px solid var(--line);
  border-radius: var(--r-xl); overflow: hidden;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease), border-color 0.5s var(--ease);
}
@media (min-width: 700px) { .range-card { flex: auto; scroll-snap-align: none; width: auto; } }
.range-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.range-card__media { position: relative; aspect-ratio: 4 / 3; overflow: hidden; background: var(--linen); }
.range-card__media img, .range-card__media svg { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease); }
.range-card:hover .range-card__media img { transform: scale(1.05); }
.range-card__flag {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  background: var(--night-900); color: var(--porcelain); padding: 6px 12px;
  border-radius: var(--r-pill); font-size: 10px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
}
.range-card__flag--accent { background: var(--clr-accent); }
.range-card__body { padding: var(--sp-6) var(--sp-5); display: flex; flex-direction: column; flex: 1; }

.range-card--intimmacy { background: var(--linen); color: var(--night-900); }
.range-card--intimmacy .range-card__for { color: var(--dawn-700); }

.range-card--ortho-advance { background: #1B2A4A; color: #F5F0E8; border-color: #2A3F6C; }
.range-card--ortho-advance .range-card__for { color: #C9A96E; }
.range-card--ortho-advance .range-card__name a, .range-card--ortho-advance .range-card__price, .range-card--ortho-advance .range-card__line { color: #F5F0E8; }
.range-card--ortho-advance .opt__btn { border-color: #2A3F6C; color: #E0D9CC; }
.range-card--ortho-advance .opt__btn:hover, .range-card--ortho-advance .opt__btn.is-selected { background: #C9A96E; color: #1B2A4A; border-color: #C9A96E; }
.range-card--ortho-advance .btn { background: #F5F0E8; color: #1B2A4A; }

.range-card--soulmate-copy { background: #F7F5F0; color: #4A4A4A; border-color: #EAE6DF; }
.range-card--soulmate-copy .range-card__for { color: #9B8C7A; }
.range-card--soulmate-copy .range-card__name a { color: #2D2D2D; }

.range-card__for { font-size: var(--fs-xs); letter-spacing: 0.12em; text-transform: uppercase; color: var(--clr-accent); font-weight: 600; margin-bottom: 8px; }
.range-card__name { font-family: var(--font-display); font-size: var(--fs-2xl); margin-block: 0 8px; }
.range-card__line { font-size: var(--fs-sm); color: var(--clr-text-muted); margin-bottom: var(--sp-3); }
.range-card__price { font-family: var(--font-display); font-size: var(--fs-xl); line-height: 1.2; }
.range-card__price s { color: var(--clr-text-muted); font-size: 0.65em; margin-left: 8px; }
.range-card__meta { display: flex; flex-wrap: wrap; gap: 6px; margin-top: var(--sp-4); }
.chip {
  font-size: var(--fs-xs); padding: 5px 11px; border-radius: var(--r-pill);
  background: var(--linen); color: var(--ink-soft); white-space: nowrap;
}
.range-card__foot { margin-top: auto; padding-top: var(--sp-5); display: flex; align-items: end; justify-content: space-between; gap: var(--sp-3); }
.range-card__price { font-family: var(--font-display); font-size: var(--fs-lg); line-height: 1.2; }
.range-card__price small { display: block; font-family: var(--font-body); font-size: var(--fs-xs); color: var(--clr-text-muted); letter-spacing: 0.04em; }
.range-card__price s { color: var(--clr-text-muted); font-size: 0.72em; }
.range-card__actions { display: flex; gap: 8px; padding: 0 var(--sp-5) var(--sp-5); }
.range-card__actions .btn { flex: 1; }

/* ---------- PRODUCT CARD (collection) ---------- */
.pcard {
  position: relative; display: flex; flex-direction: column; height: 100%;
  background: var(--clr-surface); border: 1px solid var(--line);
  border-radius: var(--r-xl); overflow: hidden;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.pcard:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.pcard__media { position: relative; display: block; aspect-ratio: 1 / 1; overflow: hidden; background: var(--linen); }
.pcard__media img, .pcard__media svg { width: 100%; height: 100%; object-fit: cover; transition: opacity 0.5s var(--ease), transform 0.8s var(--ease); }
.pcard__media img.alt { position: absolute; inset: 0; opacity: 0; }
.pcard:hover .pcard__media img.alt { opacity: 1; }
.pcard:hover .pcard__media img.main { transform: scale(1.04); }
.pcard__badges { position: absolute; top: 12px; left: 12px; z-index: 2; display: flex; flex-direction: column; gap: 6px; align-items: start; }
.badge {
  font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 5px 11px; border-radius: var(--r-pill); background: var(--night-900); color: var(--porcelain);
}
.badge--sale { background: var(--clr-accent); }
.badge--out { background: var(--muted); }
.pcard__quick {
  position: absolute; left: 12px; right: 12px; bottom: 12px; z-index: 2;
  opacity: 0; transform: translateY(10px); transition: all 0.4s var(--ease);
}
@media (hover: hover) { .pcard:hover .pcard__quick { opacity: 1; transform: none; } }
@media (hover: none) { .pcard__quick { opacity: 1; transform: none; } }
.pcard__quick .btn { width: 100%; background: rgba(252, 250, 247, 0.94); color: var(--night-900); backdrop-filter: blur(8px); }
.pcard__body { padding: var(--sp-4) var(--sp-5) var(--sp-5); display: flex; flex-direction: column; flex: 1; }
.pcard__for { font-size: 10px; letter-spacing: 0.13em; text-transform: uppercase; color: var(--clr-accent); font-weight: 700; }
.pcard__title { font-size: var(--fs-lg); margin-block: 7px 5px; }
.pcard__desc { font-size: var(--fs-sm); color: var(--clr-text-muted); }
.pcard__price { margin-top: var(--sp-4); display: flex; align-items: baseline; gap: 9px; flex-wrap: wrap; }
.pcard__price .now { font-weight: 700; font-size: var(--fs-md); font-variant-numeric: tabular-nums; }
.pcard__price s { color: var(--faint); font-size: var(--fs-sm); }
.pcard__price .off { font-size: var(--fs-xs); font-weight: 700; color: var(--clr-accent); }

.stars { display: inline-flex; align-items: center; gap: 3px; }
.stars svg { width: 13px; height: 13px; color: var(--dawn-600); }
.rating { display: inline-flex; align-items: center; gap: 7px; font-size: var(--fs-sm); color: var(--clr-text-muted); }

/* ---------- MATTRESS FINDER ---------- */
.finder { position: relative; }
.finder__shell {
  max-width: 960px; margin-inline: auto;
  background: var(--clr-surface); border: 1px solid var(--line);
  border-radius: var(--r-xl); box-shadow: var(--shadow-lg); overflow: hidden;
}
.surface-deep .finder__shell, .surface-dusk .finder__shell {
  background: rgba(252, 250, 247, 0.05); border-color: var(--line-inverse); backdrop-filter: blur(10px);
}
.finder__bar { height: 3px; background: var(--sand); position: relative; }
.surface-deep .finder__bar { background: rgba(252,250,247,0.12); }
.finder__bar i { position: absolute; inset: 0 auto 0 0; background: var(--grad-accent); width: 0; transition: width 0.7s var(--ease); }
.finder__head {
  display: flex; align-items: center; justify-content: space-between; gap: var(--sp-4);
  padding: var(--sp-6) clamp(24px, 5vw, 56px) 0;
  font-size: var(--fs-xs); letter-spacing: 0.14em; text-transform: uppercase; color: var(--clr-text-muted);
}
.finder__steps { position: relative; }
.finder__step {
  padding: var(--sp-5) clamp(24px, 5vw, 56px) clamp(32px, 5vw, 56px);
  display: none; animation: stepIn 0.55s var(--ease);
}
.finder__step.is-active { display: block; }
@keyframes stepIn { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }
.finder__q { font-family: var(--font-display); font-size: var(--fs-2xl); margin-bottom: var(--sp-3); }
.finder__hint { font-size: var(--fs-sm); color: var(--clr-text-muted); margin-bottom: var(--sp-5); }
.finder__opts { display: grid; gap: var(--sp-4); grid-template-columns: repeat(2, 1fr); }
@media (min-width: 760px) { .finder__opts--4 { grid-template-columns: repeat(4, 1fr); } .finder__opts--3 { grid-template-columns: repeat(3, 1fr); } }
.finder__opt {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px;
  text-align: center; padding: var(--sp-5) var(--sp-3); min-height: 140px;
  border: 1px solid var(--line-strong); border-radius: var(--r-lg);
  background: transparent; font-size: var(--fs-sm); font-weight: 600;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.surface-deep .finder__opt { background: rgba(252,250,247,0.03); border-color: var(--line-inverse); color: var(--porcelain); }
.finder__opt svg { width: 32px; height: 32px; color: var(--clr-accent); transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1); }
.finder__opt small { font-weight: 500; font-size: var(--fs-xs); color: var(--clr-text-muted); }
.finder__opt:hover { border-color: var(--clr-accent); transform: translateY(-4px); background: var(--linen); box-shadow: 0 4px 20px rgba(0,0,0,0.04); }
.finder__opt:hover svg { transform: scale(1.12); }
.finder__opt.is-picked { border-color: var(--clr-accent); background: rgba(200, 118, 63, 0.08); box-shadow: 0 0 0 1px var(--clr-accent) inset; }
.finder__nav { display: flex; justify-content: space-between; align-items: center; margin-top: var(--sp-6); }
.finder__back { font-size: var(--fs-sm); color: var(--clr-text-muted); display: inline-flex; align-items: center; gap: 6px; transition: color 0.3s; }
.finder__back:hover { color: var(--clr-accent); }
.finder__back svg { width: 15px; height: 15px; }

.finder__result { padding: clamp(32px, 5vw, 64px); display: none; }
.finder__result.is-active { display: block; animation: stepIn 0.6s var(--ease); }
.finder__match { display: grid; gap: var(--sp-5); }
@media (min-width: 760px) { .finder__match { grid-template-columns: 240px 1fr; } }
.finder__match img, .finder__match .art { width: 100%; aspect-ratio: 4/5; object-fit: cover; border-radius: var(--r-lg); background: var(--linen); }
.finder__why { margin-top: var(--sp-4); display: grid; gap: 9px; }
.finder__why li { display: flex; gap: 10px; align-items: start; font-size: var(--fs-sm); color: var(--clr-text-muted); }
.finder__why svg { width: 17px; height: 17px; color: var(--clr-accent); flex: none; margin-top: 2px; }
.finder__alt {
  margin-top: var(--sp-6); padding-top: var(--sp-5); border-top: 1px solid var(--line);
  display: grid; grid-template-columns: 68px 1fr auto; gap: var(--sp-4); align-items: center;
}
.surface-deep .finder__alt { border-color: var(--line-inverse); }
.finder__alt img { width: 68px; height: 78px; object-fit: cover; border-radius: var(--r-md); }
.finder__loading { text-align: center; padding: var(--sp-8) 0; }
.finder__loading i {
  display: block; width: 34px; height: 34px; margin: 0 auto var(--sp-4);
  border: 2px solid var(--sand); border-top-color: var(--clr-accent);
  border-radius: 50%; animation: spin 0.9s linear infinite;
}

/* ---------- LAYER REVEAL ---------- */
.layers__wrap { display: grid; gap: var(--sp-6); align-items: center; }
@media (min-width: 980px) { .layers__wrap { grid-template-columns: minmax(0, 52fr) minmax(0, 48fr); gap: clamp(40px, 8vw, 96px); justify-content: space-between; } }
.layers__tabs { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-bottom: clamp(32px, 5vw, 48px); }
.layers__stage { position: relative; }
@media (min-width: 980px) { .layers__stage { position: sticky; top: calc(var(--header-h) + 40px); } }
.layers__diagram { width: 100%; height: auto; }
.layer-slab {
  transition: transform 0.7s var(--ease), opacity 0.6s var(--ease), filter 0.6s var(--ease);
  cursor: pointer;
}
.layer-slab.is-dim { opacity: 0.34; }
.layer-slab.is-lifted { transform: translateX(26px); }
.layers__list { display: grid; gap: 2px; }
.layers__item {
  display: grid; grid-template-columns: 46px 1fr; gap: var(--sp-4);
  padding: var(--sp-4); border-radius: var(--r-lg); text-align: left; width: 100%;
  border: 1px solid transparent; transition: all 0.35s var(--ease);
}
.layers__item:hover { background: var(--linen); }
.surface-deep .layers__item:hover, .surface-dusk .layers__item:hover { background: rgba(252,250,247,0.05); }
.layers__item.is-active { background: var(--clr-surface); border-color: var(--line); box-shadow: var(--shadow-sm); }
.surface-deep .layers__item.is-active { background: rgba(252,250,247,0.07); border-color: var(--line-inverse); }
.layers__num {
  width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center;
  font-size: var(--fs-sm); font-weight: 700; border: 1px solid var(--line-strong); color: var(--clr-text-muted);
  transition: all 0.35s var(--ease);
}
.surface-deep .layers__num { border-color: var(--line-inverse); }
.layers__item.is-active .layers__num { background: var(--clr-accent); border-color: transparent; color: #fff; }
.layers__copy { display: block; }
.layers__ttl { display: block; font-family: var(--font-body); font-weight: 700; font-size: var(--fs-base); line-height: 1.35; }
.layers__thick { font-weight: 500; color: var(--clr-text-muted); margin-left: 7px; font-size: var(--fs-sm); }
.layers__txt { display: block; font-size: var(--fs-sm); font-weight: 400; color: var(--clr-text-muted); padding-top: 5px; }
.surface-deep .layers__txt { color: rgba(252, 250, 247, 0.62); }
.layers__item .body { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 0.45s var(--ease); }
.layers__item.is-active .body { grid-template-rows: 1fr; }
.layers__item .body > * { overflow: hidden; min-height: 0; }

/* ---------- PROOF ---------- */
.stat-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--line-inverse); }
@media (min-width: 760px) { .stat-row { grid-template-columns: repeat(4, 1fr); } }
.stat { background: var(--clr-deep); padding: var(--sp-6) var(--sp-4); text-align: center; }
.surface-dusk .stat { background: rgba(14, 17, 32, 0.28); }
.stat__n { font-family: var(--font-display); font-size: clamp(2.2rem, 4vw, 3.4rem); line-height: 1; color: var(--dawn-400); }
.stat__l { font-size: var(--fs-xs); letter-spacing: 0.14em; text-transform: uppercase; color: rgba(252,250,247,0.55); margin-top: 10px; }

.reviews {
  display: flex; gap: var(--sp-4);
  overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none;
  margin-inline: calc(var(--gutter) * -1); padding-inline: var(--gutter);
  padding-bottom: var(--sp-4);
}
.reviews::-webkit-scrollbar { display: none; }
@media (min-width: 760px) { 
  .reviews { 
    display: grid; margin-inline: 0; padding-inline: 0; padding-bottom: 0;
    grid-template-columns: repeat(2, 1fr); overflow: visible; scroll-snap-type: none; gap: var(--sp-4); 
  } 
}
@media (min-width: 1100px) { .reviews { grid-template-columns: repeat(3, 1fr); } }
.review {
  flex: 0 0 85vw; scroll-snap-align: center; width: 85vw;
  background: var(--clr-surface); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: var(--sp-5); display: flex; flex-direction: column;
}
@media (min-width: 760px) { .review { flex: auto; scroll-snap-align: none; width: auto; } }
.surface-deep .review, .surface-dusk .review { background: rgba(252,250,247,0.05); border-color: var(--line-inverse); }
.review__text { font-family: var(--font-display); font-size: var(--fs-lg); line-height: 1.45; margin-block: var(--sp-3) var(--sp-4); flex: 1; }
.review__who { display: flex; align-items: center; gap: 11px; }
.review__av {
  width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center;
  background: var(--grad-accent); color: #fff; font-weight: 700; font-size: var(--fs-sm); flex: none;
}
.review__n { font-weight: 700; font-size: var(--fs-sm); }
.review__m { font-size: var(--fs-xs); color: var(--clr-text-muted); }
.verified { display: inline-flex; align-items: center; gap: 4px; color: var(--dawn-600); }
.verified svg { width: 12px; height: 12px; }

.certs { 
  display: flex; gap: var(--sp-3); 
  overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none;
  margin-inline: calc(var(--gutter) * -1); padding-inline: var(--gutter);
  padding-bottom: var(--sp-4);
}
.certs::-webkit-scrollbar { display: none; }
@media (min-width: 760px) {
  .certs { flex-wrap: wrap; justify-content: center; overflow: visible; scroll-snap-type: none; margin-inline: 0; padding-inline: 0; padding-bottom: 0; }
}

.cert {
  flex: 0 0 max-content; scroll-snap-align: center;
  display: inline-flex; align-items: center; gap: 10px; padding: 12px 20px;
  border: 1px solid var(--line); border-radius: var(--r-pill); font-size: var(--fs-sm); font-weight: 600;
}
@media (min-width: 760px) { .cert { flex: none; scroll-snap-align: none; } }
.surface-deep .cert, .surface-dusk .cert { border-color: var(--line-inverse); }
.cert svg { width: 19px; height: 19px; color: var(--clr-accent); }
.surface-deep .cert svg { color: var(--dawn-400); }

/* ---------- COMPARE ---------- */
.compare__scroller { overflow-x: auto; overscroll-behavior-x: contain; scroll-snap-type: x mandatory; padding-bottom: var(--sp-4); -webkit-overflow-scrolling: touch; scroll-padding-inline: var(--gutter); }
.compare__grid { display: flex; gap: var(--sp-4); padding-inline: var(--gutter); }
@media (min-width: 1000px) { .compare__grid { padding-inline: 0; } }

.compare__col {
  flex: 0 0 min(82vw, 320px); scroll-snap-align: center;
  background: transparent; border: 1px solid var(--line); border-radius: var(--r-xl);
  overflow: hidden; display: flex; flex-direction: column;
}
.compare__col.is-highlight { border-color: var(--clr-accent); box-shadow: 0 4px 24px rgba(0,0,0,0.04); background: var(--linen); }
.compare__flag { background: var(--clr-accent); color: #fff; text-align: center; font-size: 10px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; padding: 6px; }
.compare__media { aspect-ratio: 4/3; overflow: hidden; background: var(--linen); }
.compare__media img, .compare__media svg { width: 100%; height: 100%; object-fit: cover; }
.compare__name { font-family: var(--font-display); font-size: var(--fs-2xl); padding: var(--sp-4) var(--sp-5) 0; line-height: 1.1; margin-bottom: 8px; }
.compare__for { font-size: var(--fs-xs); letter-spacing: 0.12em; text-transform: uppercase; color: var(--clr-accent); padding: var(--sp-5) var(--sp-5) 0; font-weight: 600; margin-bottom: -6px; }
.compare__rows { padding: var(--sp-5); display: grid; gap: 0; flex: 1; }
.compare__row { padding: 14px 0; border-top: 1px solid var(--line); }
.compare__row:first-child { border-top: 0; padding-top: 0; }
.compare__k { font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--clr-text-muted); margin-bottom: 4px; }
.compare__v { font-size: var(--fs-base); font-weight: 400; line-height: 1.4; color: var(--night-900); }
.compare__foot { padding: 0 var(--sp-5) var(--sp-5); margin-top: auto; }
.compare__legend { display: flex; align-items: center; gap: var(--sp-4); justify-content: center; font-size: var(--fs-sm); color: var(--clr-text-muted); margin-top: var(--sp-4); }
.swipe-hint { display: inline-flex; align-items: center; gap: 7px; }
.swipe-hint svg { width: 16px; height: 16px; animation: nudge 1.8s var(--ease-in-out) infinite; }
@keyframes nudge { 0%, 100% { transform: translateX(0); } 50% { transform: translateX(5px); } }
@media (min-width: 1000px) { .swipe-hint { display: none; } }

/* Desktop comparison table view */
@media (min-width: 1000px) {
  .compare__scroller { overflow: visible; padding: 0; }
  .compare__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(24px, 4vw, 64px); }
  .compare__col { flex: auto; border: none; border-radius: 0; border-right: 1px solid var(--line); padding-right: clamp(24px, 4vw, 64px); background: transparent; }
  .compare__col:last-child { border-right: none; padding-right: 0; }
  .compare__col.is-highlight { border: none; border-right: 1px solid var(--line); box-shadow: none; background: transparent; position: relative; }
  .compare__col.is-highlight::before { content: ""; position: absolute; inset: -24px; background: var(--linen); z-index: -1; border-radius: var(--r-xl); }
  .compare__name, .compare__for, .compare__rows, .compare__foot { padding-inline: 0; }
  .compare__flag { position: absolute; top: 24px; right: 24px; display: inline-block; padding: 4px 12px; border-radius: var(--r-pill); margin: 0; }
}

/* ---------- REELS ---------- */
.reels { overflow: hidden; }
.reels__track {
  display: flex; gap: var(--sp-4); overflow-x: auto; scroll-snap-type: x mandatory;
  padding-inline: var(--gutter); padding-bottom: var(--sp-4);
  scrollbar-width: none;
}
.reels__track::-webkit-scrollbar { display: none; }
.reel {
  position: relative; flex: none; width: min(68vw, 280px); aspect-ratio: 9 / 16;
  border-radius: var(--r-lg); overflow: hidden; scroll-snap-align: center;
  background: var(--night-800); display: block;
}
.reel video { width: 100%; height: 100%; object-fit: cover; }
.reel__veil { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 45%, rgba(14,17,32,0.85) 100%); }
.reel__meta { position: absolute; left: 14px; right: 14px; bottom: 14px; color: var(--porcelain); }
.reel__meta .t { font-weight: 700; font-size: var(--fs-sm); }
.reel__meta .s { font-size: var(--fs-xs); opacity: 0.72; }
.reel__mute {
  position: absolute; top: 12px; right: 12px; z-index: 3; width: 34px; height: 34px;
  border-radius: 50%; background: rgba(14,17,32,0.55); color: #fff; display: grid; place-items: center;
  backdrop-filter: blur(4px);
}
.reel__mute svg { width: 16px; height: 16px; }
.reels__nav { display: flex; gap: 8px; justify-content: end; padding-inline: var(--gutter); }
.reels__nav button {
  width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--line-strong);
  display: grid; place-items: center; transition: all 0.3s var(--ease);
}
.surface-deep .reels__nav button { border-color: var(--line-inverse); }
.reels__nav button:hover { background: var(--clr-deep); color: var(--porcelain); border-color: transparent; }
.reels__nav svg { width: 17px; height: 17px; }

/* ---------- ACCORDION / FAQ ---------- */
.acc { border-top: 1px solid var(--line); }
.surface-deep .acc { border-color: var(--line-inverse); }
.acc__item { border-bottom: 1px solid var(--line); }
.surface-deep .acc__item { border-color: var(--line-inverse); }
.acc__q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: var(--sp-4);
  padding: var(--sp-5) 0; text-align: left;
  font-family: var(--font-display); font-size: var(--fs-lg); line-height: 1.3;
  transition: color 0.3s var(--ease);
}
.acc__q:hover { color: var(--clr-accent); }
.acc__icon { position: relative; width: 20px; height: 20px; flex: none; }
.acc__icon::before, .acc__icon::after {
  content: ""; position: absolute; background: currentColor; border-radius: 2px;
  transition: transform 0.4s var(--ease), opacity 0.3s var(--ease);
}
.acc__icon::before { left: 0; right: 0; top: 9.25px; height: 1.5px; }
.acc__icon::after { top: 0; bottom: 0; left: 9.25px; width: 1.5px; }
.acc__item.is-open .acc__icon::after { transform: rotate(90deg); opacity: 0; }
.acc__a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 0.45s var(--ease); }
.acc__item.is-open .acc__a { grid-template-rows: 1fr; }
.acc__a > div { overflow: hidden; }
.acc__a p { padding-bottom: var(--sp-5); color: var(--clr-text-muted); max-width: 62ch; }
.acc__a p + p { padding-top: 0; }

/* ---------- CTA / CLOSER ---------- */
.closer { position: relative; overflow: hidden; text-align: center; }
.closer__bg { position: absolute; inset: 0; background: var(--grad-dawn); }
.closer__bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.4; }
.closer__inner { position: relative; z-index: 2; }
.closer h2 { font-size: var(--fs-4xl); max-width: 16ch; margin-inline: auto; }
.closer h2 em { font-style: italic; font-variation-settings: "WONK" 1; color: var(--dawn-300); }
.closer__points {
  display: flex; flex-wrap: wrap; justify-content: center; gap: var(--sp-4);
  margin-top: var(--sp-5); font-size: var(--fs-sm); color: rgba(252,250,247,0.75);
}
.closer__points span { display: inline-flex; align-items: center; gap: 7px; }
.closer__points svg { width: 16px; height: 16px; color: var(--dawn-300); }

/* ---------- FOOTER ---------- */
.ftr { background: var(--night-900); color: rgba(252, 250, 247, 0.7); padding-top: clamp(48px, 7vw, 96px); }
.ftr__top { display: grid; gap: var(--sp-7); padding-bottom: var(--sp-7); }
@media (min-width: 860px) { 
  .ftr__top { display: flex; justify-content: space-between; gap: var(--sp-8); } 
  .ftr__brand { flex: 0 0 25%; max-width: 300px; }
  .ftr__menus { flex: 1; display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--sp-5); }
}
.ftr__brand .wordmark { color: var(--porcelain); }
.ftr__brand p { margin-top: var(--sp-4); max-width: 34ch; font-size: var(--fs-sm); }
.ftr__logo-img { width: 155px; height: auto; object-fit: contain; transition: width 0.3s ease; }
@media (min-width: 760px) {
  .ftr__logo-img { width: 195px; }
}
.ftr__contact { margin-top: var(--sp-5); display: grid; gap: 11px; font-size: var(--fs-sm); }
.ftr__contact div { display: grid; grid-template-columns: 20px 1fr; gap: 11px; align-items: start; }
.ftr__contact svg { width: 16px; height: 16px; color: var(--dawn-500); margin-top: 3px; }
.ftr__contact a:hover { color: var(--dawn-400); }

/* Footer Menus (Accordions on Mobile) */
.ftr__menus { display: grid; gap: var(--sp-4); }

.ftr__group summary {
  display: flex; justify-content: space-between; align-items: center;
  cursor: pointer; list-style: none;
  padding-block: var(--sp-3); border-bottom: 1px solid var(--line-inverse);
}
.ftr__group summary::-webkit-details-marker { display: none; }
.ftr__group h4 { margin-bottom: 0; }
.ftr__plus { position: relative; width: 12px; height: 12px; }
.ftr__plus::before, .ftr__plus::after { content: ""; position: absolute; background: currentColor; top: 50%; left: 50%; transform: translate(-50%, -50%); transition: transform 0.3s; }
.ftr__plus::before { width: 100%; height: 1px; }
.ftr__plus::after { width: 1px; height: 100%; }
.ftr__group[open] .ftr__plus::after { transform: translate(-50%, -50%) rotate(90deg); }

.ftr__group ul { padding-top: var(--sp-3); padding-bottom: var(--sp-2); }

@media (min-width: 860px) {
  .ftr__group summary { cursor: default; padding-block: 0; border-bottom: none; margin-bottom: var(--sp-4); pointer-events: none; }
  .ftr__plus { display: none; }
  .ftr__group ul { padding-top: 0; padding-bottom: 0; }
}

.ftr h4 { font-family: var(--font-body); font-size: var(--fs-xs); letter-spacing: 0.16em; text-transform: uppercase; color: var(--porcelain); font-weight: 700; }
.ftr li { margin-bottom: 9px; font-size: var(--fs-sm); }
.ftr li a { transition: color 0.25s, padding-left 0.25s; }
.ftr li a:hover { color: var(--dawn-400); padding-left: 4px; }
.ftr__news { margin-top: var(--sp-5); }
.ftr__news form { display: flex; gap: 8px; margin-top: var(--sp-3); }
.ftr__news input {
  background: rgba(252,250,247,0.06); border-color: var(--line-inverse); color: var(--porcelain);
  border-radius: var(--r-pill); padding: 12px 18px;
}
.ftr__news input::placeholder { color: rgba(252,250,247,0.4); }
.ftr__social { display: flex; gap: 10px; margin-top: var(--sp-5); }
.ftr__social a {
  width: 38px; height: 38px; border-radius: 50%; border: 1px solid var(--line-inverse);
  display: grid; place-items: center; transition: all 0.3s var(--ease);
}
.ftr__social a:hover { background: var(--dawn-600); border-color: transparent; color: #fff; }
.ftr__social svg { width: 17px; height: 17px; }
.ftr__bottom {
  border-top: 1px solid var(--line-inverse); padding-block: var(--sp-5);
  display: flex; flex-wrap: wrap; gap: var(--sp-4); justify-content: space-between;
  font-size: var(--fs-xs);
}
.ftr__bottom nav { display: flex; flex-wrap: wrap; gap: var(--sp-4); }
.ftr__bottom a:hover { color: var(--dawn-400); }

/* ---------- TOASTS ---------- */
.toasts { position: fixed; bottom: 20px; left: 50%; transform: translateX(-50%); z-index: 120; display: grid; gap: 8px; width: min(420px, calc(100vw - 32px)); }
.toast {
  background: var(--night-900); color: var(--porcelain); padding: 13px 18px;
  border-radius: var(--r-md); box-shadow: var(--shadow-lg); font-size: var(--fs-sm);
  display: flex; align-items: center; gap: 11px;
  animation: toastIn 0.45s var(--ease);
}
.toast svg { width: 18px; height: 18px; color: var(--dawn-400); flex: none; }
.toast.is-out { animation: toastOut 0.35s var(--ease) forwards; }
@keyframes toastIn { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
@keyframes toastOut { to { opacity: 0; transform: translateY(10px); } }

/* ---------- PAGE HEADERS / BREADCRUMBS ---------- */
.crumbs { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; font-size: var(--fs-sm); color: var(--clr-text-muted); }
.crumbs a:hover { color: var(--clr-accent); }
.crumbs .sep { opacity: 0.45; }
.page-hero { padding-block: clamp(38px, 6vw, 82px) clamp(28px, 4vw, 52px); border-bottom: 1px solid var(--line); }
.page-hero h1 { margin-block: var(--sp-4) var(--sp-3); }
.page-hero .lede { max-width: 54ch; }

/* ---------- RICH TEXT ---------- */
.rte { max-width: 70ch; }
.rte > * + * { margin-top: 1.1em; }
.rte h2 { font-size: var(--fs-2xl); margin-top: 1.6em; }
.rte h3 { font-size: var(--fs-xl); margin-top: 1.4em; }
.rte p, .rte li { color: var(--clr-text-muted); line-height: 1.8; }
.rte ul { list-style: disc; padding-left: 1.3em; }
.rte ol { list-style: decimal; padding-left: 1.3em; }
.rte li { margin-top: 0.5em; }
.rte a { color: var(--clr-accent); text-decoration: underline; text-underline-offset: 3px; }
.rte img { border-radius: var(--r-lg); }
.rte blockquote {
  border-left: 2px solid var(--clr-accent); padding-left: var(--sp-5);
  font-family: var(--font-display); font-size: var(--fs-lg); font-style: italic;
}
.rte table { font-size: var(--fs-sm); }
.rte th, .rte td { border: 1px solid var(--line); padding: 10px 12px; text-align: left; }

/* ---------- MODAL ---------- */
.modal {
  position: fixed; inset: 0; z-index: 90; display: grid; place-items: center;
  padding: var(--gutter); opacity: 0; visibility: hidden; transition: opacity 0.4s var(--ease), visibility 0.4s;
}
.modal.is-open { opacity: 1; visibility: visible; }
.modal__panel {
  position: relative; z-index: 2; width: min(940px, 100%); max-height: 88dvh; overflow-y: auto;
  background: var(--clr-bg); border-radius: var(--r-xl); box-shadow: var(--shadow-lg);
  transform: translateY(20px) scale(0.98); transition: transform 0.45s var(--ease);
}
.modal.is-open .modal__panel { transform: none; }
.modal__close {
  position: absolute; top: 14px; right: 14px; z-index: 4; width: 38px; height: 38px;
  border-radius: 50%; background: rgba(252,250,247,0.9); display: grid; place-items: center;
  box-shadow: var(--shadow-sm);
}
.modal__close svg { width: 17px; height: 17px; }

/* ---------- SKELETON ---------- */
.skel {
  background: linear-gradient(90deg, var(--linen) 25%, var(--sand) 50%, var(--linen) 75%);
  background-size: 200% 100%; animation: shimmer 1.4s linear infinite; border-radius: var(--r-md);
}

