/* =============================================================================
   DAMARIS NUTRITION ? Premium Design System (Phase 1 foundation)
   Clinical luxury wellness: white + pale blue + navy/charcoal.
   Tokens + shared primitives only ? section storytelling comes in later phases.
   ============================================================================= */

:root {
  /* ?? Brand color ?? */
  --ink: #0b1016;
  --ink-soft: #5a6572;
  --ink-muted: #7d8794;
  --navy: #243f55;
  --steel: #6b8fad;
  --steel-deep: #3a5872;
  --steel-soft: rgba(107, 143, 173, 0.12);
  --sky: #b7cce0;
  --mist: #e4eef6;
  --paper: #f5f8fb;
  --foam: #fafcfd;
  --white: #ffffff;
  --line: rgba(11, 16, 22, 0.08);
  --line-strong: rgba(11, 16, 22, 0.14);
  --focus-ring: rgba(58, 88, 114, 0.4);

  /* ?? Typography scale ?? */
  --font-display: "Syne", system-ui, sans-serif;
  --font-body: "DM Sans", system-ui, sans-serif;
  --text-xs: 0.8125rem;
  --text-sm: 0.9375rem;
  --text-md: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: clamp(1.5rem, 2.2vw, 1.875rem);
  --text-3xl: clamp(1.9rem, 3.2vw, 2.65rem);
  --text-4xl: clamp(2.35rem, 4.5vw, 3.5rem);
  --text-5xl: clamp(2.6rem, 5.8vw, 4.5rem);
  --leading-tight: 1.08;
  --leading-snug: 1.28;
  --leading-body: 1.65;
  --tracking-display: -0.028em;
  --tracking-tight: -0.018em;
  --tracking-label: 0.14em;
  --measure: 38rem;
  --measure-narrow: 34rem;

  /* ?? Spacing scale ?? */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-7: 2rem;
  --space-8: 2.5rem;
  --space-9: 3rem;
  --space-10: 4rem;
  --space-11: 5rem;
  --space-12: 6rem;
  --page-x: clamp(1.25rem, 4vw, 3rem);
  --section-y: clamp(4.25rem, 10vh, 7rem);
  --section-y-sm: clamp(2.75rem, 6.5vh, 4.25rem);
  --stack-gap: clamp(1.35rem, 2.8vw, 2rem);
  --card-pad: clamp(1.15rem, 2vw, 1.45rem);

  /* ?? Radius (restrained) ?? */
  --radius-control: 0.5625rem;
  --radius-sm: 0.625rem;
  --radius-btn: 0.75rem;
  --radius-md: 1rem;
  --radius-card: 1.25rem;
  --radius-panel: 1.75rem;
  --radius-pill: 999px;
  --radius-xs: var(--radius-control);
  --radius-lg: var(--radius-card);
  --radius-xl: var(--radius-panel);
  --radius-2xl: var(--radius-panel);

  /* ?? Shadows (soft, realistic) ?? */
  --shadow-xs: 0 1px 2px rgba(16, 30, 48, 0.04);
  --shadow-sm: 0 6px 18px rgba(16, 30, 48, 0.05);
  --shadow-md: 0 14px 36px rgba(16, 30, 48, 0.07);
  --shadow-lg: 0 24px 56px rgba(16, 30, 48, 0.1);
  --shadow-hover: 0 18px 42px rgba(16, 30, 48, 0.1);
  --shadow: var(--shadow-md);
  --shadow-soft: var(--shadow-sm);

  /* ?? Motion ?? */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --duration-fast: 160ms;
  --duration: 300ms;
  --duration-slow: 520ms;
  --lift: -3px;
  --reveal-distance: 16px;

  /* ?? Layout ?? */
  --header-h: 5rem;
  --btn-h: 3rem;
  --btn-h-lg: 3.25rem;
  --content-max: 1240px;
  --content-wide: 1320px;

  /* ?? Surfaces ?? */
  --surface: var(--white);
  --surface-muted: rgba(255, 255, 255, 0.78);
  --surface-card: #ffffff;
  --grad-soft:
    radial-gradient(920px 580px at 90% -6%, rgba(107, 143, 173, 0.11), transparent 58%),
    radial-gradient(760px 480px at -8% 24%, rgba(183, 204, 224, 0.14), transparent 54%),
    linear-gradient(180deg, #f0f4f8 0%, var(--foam) 36%, var(--paper) 100%);
  --grad-media:
    radial-gradient(circle at 50% 28%, rgba(255, 255, 255, 0.98), transparent 58%),
    linear-gradient(165deg, #e8eef4 0%, #f7fafc 62%);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-rendering: optimizeLegibility;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: var(--text-md);
  font-weight: 400;
  line-height: var(--leading-body);
  letter-spacing: 0.005em;
  background: var(--grad-soft);
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--duration-fast) var(--ease);
}

button,
input,
textarea,
select {
  font: inherit;
}

:focus-visible {
  outline: 2px solid var(--focus-ring);
  outline-offset: 3px;
}

hr,
.divider {
  border: 0;
  height: 1px;
  margin: var(--space-8) 0;
  background: var(--line);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

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

.orb {
  pointer-events: none;
  position: fixed;
  z-index: -1;
  width: 42vw;
  height: 42vw;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.35;
  animation: orbFloat 18s var(--ease) infinite alternate;
}

.orb-a {
  top: -10vw;
  right: -8vw;
  background: radial-gradient(circle, rgba(106, 139, 171, 0.55), transparent 70%);
}

.orb-b {
  bottom: 10vh;
  left: -12vw;
  background: radial-gradient(circle, rgba(168, 192, 212, 0.5), transparent 70%);
  animation-delay: -6s;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 60;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0 var(--page-x);
  background: var(--white);
  border-bottom: 1px solid var(--line);
  transition:
    background var(--duration) var(--ease),
    border-color var(--duration) var(--ease),
    box-shadow var(--duration) var(--ease),
    transform var(--duration) var(--ease),
    opacity var(--duration) var(--ease);
}

.site-header.is-scrolled {
  background: var(--white);
  border-bottom-color: var(--line);
  box-shadow: var(--shadow-xs);
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  z-index: 2;
  line-height: 0;
  padding: 0.2rem 0;
  text-decoration: none;
  color: inherit;
}

.brand-logo {
  display: block;
  height: 46px;
  width: auto;
  max-width: 52px;
  object-fit: contain;
  object-position: left center;
  flex-shrink: 0;
}

.brand-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1.1;
  gap: 0.12rem;
}

.brand-name {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 0.72rem;
  color: var(--ink);
}

.brand-sub {
  font-size: 0.55rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--steel);
}

.brand-icon {
  /* Legacy fallback mark ? prefer .brand-logo image */
  width: 1.45rem;
  height: 1.45rem;
  clip-path: polygon(50% 4%, 100% 100%, 0% 100%);
  background: linear-gradient(145deg, #9bb8d0 0%, #4f7394 55%, #243f55 100%);
  flex-shrink: 0;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1.1rem, 2vw, 1.85rem);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.nav a,
.mobile-nav a {
  position: relative;
  color: var(--ink);
  transition: color 0.25s var(--ease), opacity 0.25s var(--ease);
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 100%;
  height: 1px;
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}

.nav a:hover,
.nav a:focus-visible,
.mobile-nav a:hover,
.mobile-nav a:focus-visible {
  color: var(--ink);
  opacity: 0.7;
}

.nav a:hover::after,
.nav a:focus-visible::after,
.nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.nav a[aria-current="page"] {
  opacity: 1;
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.55rem;
}

.header-cta {
  display: none;
}

.icon-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.15rem;
  height: 2.15rem;
  padding: 0;
  border: 0;
  background: transparent;
  color: #111;
  border-radius: 0;
  cursor: pointer;
  text-decoration: none;
  transition: opacity 0.2s var(--ease);
}

.icon-btn svg {
  display: block;
  width: 1.4rem;
  height: 1.4rem;
  overflow: visible;
}

.icon-btn:hover,
.icon-btn:focus-visible {
  background: transparent;
  color: #111;
  opacity: 0.55;
}

.cart-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.15rem;
  height: 2.15rem;
  color: #111;
  border-radius: 0;
  transition: opacity 0.2s var(--ease);
}

.cart-link svg {
  display: block;
  width: 1.4rem;
  height: 1.4rem;
  overflow: visible;
}

.cart-link:hover,
.cart-link:focus-visible {
  background: transparent;
  opacity: 0.55;
}

.cart-badge {
  position: absolute;
  top: -0.12rem;
  right: -0.28rem;
  z-index: 1;
  min-width: 0.95rem;
  height: 0.95rem;
  padding: 0 0.18rem;
  border-radius: 999px;
  background: #2a3948;
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
  display: inline-grid;
  place-items: center;
  box-shadow: none;
  pointer-events: none;
}

.cart-badge[hidden] {
  display: none !important;
}

/* Header search overlay */
.site-search {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  align-content: start;
}

.site-search[hidden] {
  display: none;
}

.site-search-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(11, 16, 22, 0.42);
  border: 0;
  cursor: pointer;
}

.site-search-dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 42rem);
  margin: calc(var(--header-h) + 1rem) auto 0;
  padding: 0 var(--page-x);
}

.site-search-bar {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.65rem;
  align-items: start;
  padding: 1rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
}

.site-search-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.55rem;
  min-width: 0;
}

.site-search-form input[type="search"] {
  width: 100%;
  min-height: 2.85rem;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-control);
  padding: 0.7rem 0.9rem;
  font: inherit;
  color: var(--ink);
  background: var(--foam);
}

.site-search-form input[type="search"]:focus {
  outline: 2px solid var(--focus-ring);
  outline-offset: 1px;
}

.site-search-form .btn {
  min-height: 2.85rem;
  padding-inline: 1.1rem;
}

.site-search-close {
  width: 2.85rem;
  height: 2.85rem;
  border: 0;
  border-radius: var(--radius-control);
  background: transparent;
  color: var(--ink-soft);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
}

.site-search-close:hover,
.site-search-close:focus-visible {
  background: var(--mist);
  color: var(--ink);
}

.site-search-results {
  margin-top: 0.65rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.site-search-results:empty {
  display: none;
}

.site-search-hit {
  display: grid;
  grid-template-columns: 3.25rem 1fr auto;
  gap: 0.85rem;
  align-items: center;
  padding: 0.75rem 0.9rem;
  text-decoration: none;
  color: inherit;
  border-bottom: 1px solid var(--line);
}

.site-search-hit:last-child {
  border-bottom: 0;
}

.site-search-hit:hover,
.site-search-hit:focus-visible {
  background: var(--paper);
}

.site-search-hit img {
  width: 3.25rem;
  height: 3.25rem;
  object-fit: contain;
  background: var(--grad-media);
  border-radius: 0.4rem;
}

.site-search-hit strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: -0.01em;
}

.site-search-hit span {
  display: block;
  color: var(--ink-soft);
  font-size: 0.8rem;
  margin-top: 0.15rem;
}

.site-search-hit em {
  font-style: normal;
  font-weight: 700;
  font-family: var(--font-display);
  font-size: 0.92rem;
}

.site-search-empty {
  padding: 1rem 0.95rem;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

body.search-open {
  overflow: hidden;
}

.spotlight-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 0.2rem;
}

.shop-item-link {
  display: block;
}

.shop-item h3 a {
  color: inherit;
}

.shop-actions,
.story-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
}

.shop-price {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
}

.btn-add {
  appearance: none;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--white);
  border-radius: var(--radius-pill);
  padding: 0.55rem 1rem;
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    background var(--duration) var(--ease),
    border-color var(--duration) var(--ease),
    transform var(--duration) var(--ease),
    box-shadow var(--duration) var(--ease);
}

.btn-add:hover,
.btn-add:focus-visible {
  background: var(--white);
  color: var(--ink);
  border-color: var(--ink);
  transform: translateY(var(--lift));
  box-shadow: none;
}

.cart-toast {
  position: fixed;
  left: 50%;
  bottom: 1.4rem;
  z-index: 120;
  transform: translate(-50%, 120%);
  background: var(--ink);
  color: #fff;
  padding: 0.85rem 1.2rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 500;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.22);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.35s var(--ease), opacity 0.35s var(--ease);
  max-width: calc(100vw - 2rem);
  text-align: center;
}

.cart-toast.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

/* Slide-out mini cart (Neova-style) */
body.cart-drawer-open {
  overflow: hidden;
  position: fixed;
  left: 0;
  right: 0;
  width: 100%;
}

.cart-drawer {
  position: fixed;
  inset: 0;
  z-index: 140;
  pointer-events: none;
}

.cart-drawer.is-open {
  pointer-events: auto;
}

.cart-drawer-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(11, 16, 22, 0.42);
  opacity: 0;
  transition: opacity 0.3s var(--ease);
}

.cart-drawer.is-open .cart-drawer-backdrop {
  opacity: 1;
}

.cart-drawer-panel {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  width: min(100vw, 26.5rem);
  height: 100%;
  height: 100dvh;
  max-height: 100dvh;
  background: #fff;
  color: var(--ink);
  box-shadow: -16px 0 48px rgba(11, 16, 22, 0.18);
  transform: translateX(104%);
  transition: transform 0.34s var(--ease);
  outline: none;
}

.cart-drawer.is-open .cart-drawer-panel {
  transform: translateX(0);
}

.cart-drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 1.25rem 0.85rem;
}

.cart-drawer-head h2 {
  margin: 0;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.cart-drawer-close {
  appearance: none;
  width: 2.25rem;
  height: 2.25rem;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: var(--ink);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
}

.cart-drawer-close:hover,
.cart-drawer-close:focus-visible {
  background: var(--paper);
}

.cart-drawer-note {
  margin: 0 1.25rem 0.85rem;
  padding: 0.55rem 0.7rem;
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink-soft);
  font-size: 0.78rem;
  line-height: 1.4;
}

.cart-drawer-body {
  flex: 1;
  overflow: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  padding: 0.25rem 1.25rem 1.25rem;
}

.cart-drawer-empty {
  display: grid;
  gap: 1rem;
  padding: 2rem 0.25rem;
  text-align: center;
  color: var(--ink-soft);
}

.cart-drawer-empty .btn {
  justify-self: center;
}

.cart-drawer-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.15rem;
}

.cart-drawer-item {
  display: grid;
  grid-template-columns: 4.75rem minmax(0, 1fr);
  gap: 0.85rem;
  align-items: start;
  padding-bottom: 1.15rem;
  border-bottom: 1px solid var(--line);
}

.cart-drawer-thumb {
  display: grid;
  place-items: center;
  aspect-ratio: 1;
  background: var(--grad-media);
  border: 1px solid var(--line);
  overflow: hidden;
}

.cart-drawer-thumb img {
  width: 86%;
  height: 86%;
  object-fit: contain;
}

.cart-drawer-meta {
  display: grid;
  gap: 0.2rem;
  min-width: 0;
}

.cart-drawer-name {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  line-height: 1.35;
}

.cart-drawer-name:hover,
.cart-drawer-name:focus-visible {
  color: var(--steel-deep);
}

.cart-drawer-price {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}

.cart-drawer-format {
  margin: 0;
  color: var(--ink-muted);
  font-size: 0.75rem;
}

.cart-drawer-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: 0.55rem;
}

.cart-drawer-qty {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line-strong);
  min-height: 2rem;
}

.cart-drawer-qty button {
  appearance: none;
  width: 2rem;
  height: 2rem;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  font-size: 1rem;
  line-height: 1;
  cursor: pointer;
}

.cart-drawer-qty button:hover,
.cart-drawer-qty button:focus-visible {
  background: var(--paper);
}

.cart-drawer-qty span {
  min-width: 1.5rem;
  text-align: center;
  font-size: 0.85rem;
  font-variant-numeric: tabular-nums;
}

.cart-drawer-remove {
  appearance: none;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--ink-muted);
  font-size: 0.75rem;
  text-decoration: underline;
  text-underline-offset: 0.15em;
  cursor: pointer;
}

.cart-drawer-remove:hover,
.cart-drawer-remove:focus-visible {
  color: var(--ink);
}

.cart-drawer-upsell {
  margin-top: 1.35rem;
  padding-top: 0.35rem;
}

.cart-drawer-upsell-label {
  margin: 0 0 0.75rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
}

.cart-drawer-upsell-card {
  display: grid;
  grid-template-columns: 3.5rem minmax(0, 1fr);
  gap: 0.65rem 0.75rem;
  align-items: center;
  padding: 0.75rem;
  border: 1px solid var(--line);
  background: var(--paper);
}

.cart-drawer-upsell-card img {
  width: 3.5rem;
  height: 3.5rem;
  object-fit: contain;
  background: #fff;
  border: 1px solid var(--line);
}

.cart-drawer-upsell-card div {
  display: grid;
  gap: 0.15rem;
  min-width: 0;
}

.cart-drawer-upsell-card strong {
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  line-height: 1.3;
}

.cart-drawer-upsell-card span {
  font-size: 0.82rem;
  color: var(--ink-soft);
  font-variant-numeric: tabular-nums;
}

.cart-drawer-upsell-card .btn {
  grid-column: 1 / -1;
  width: 100%;
  min-height: 2.45rem;
  border-radius: 0.15rem;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.cart-drawer-foot {
  display: grid;
  gap: 0.55rem;
  padding: 1rem 1.25rem 1.25rem;
  border-top: 1px solid var(--line);
  background: #fff;
}

.cart-drawer-disclaimer {
  margin: 0 0 0.15rem;
  color: var(--ink-muted);
  font-size: 0.72rem;
  text-align: center;
}

.cart-drawer-view,
.cart-drawer-checkout {
  width: 100%;
  justify-content: center;
  min-height: 2.85rem;
  border-radius: 0.15rem;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.cart-drawer-view {
  background: #fff;
}

@media (max-width: 520px) {
  .cart-drawer-panel {
    width: 100vw;
    height: 100dvh;
    padding-top: env(safe-area-inset-top);
  }

  .cart-drawer-foot {
    padding-bottom: calc(1rem + env(safe-area-inset-bottom));
  }

  .cart-drawer-qty button {
    width: 2.5rem;
    height: 2.5rem;
  }

  .cart-drawer-upsell-card .btn,
  .cart-drawer-view,
  .cart-drawer-checkout {
    min-height: 3rem;
  }
}

/* Cart page */
.page-cart {
  background: #f3f5f7;
}

.page-cart .site-header {
  background: rgba(255, 255, 255, 0.94);
  border-bottom-color: var(--line);
}

.cart-page {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: calc(var(--header-h) + 2rem) var(--page-x) 4rem;
}

.continue-shopping {
  display: inline-block;
  margin-bottom: 0.85rem;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--ink-soft);
  text-decoration: none;
}

.continue-shopping:hover,
.continue-shopping:focus-visible {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.cart-page h1 {
  margin: 0 0 1.5rem;
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 4.2vw, 2.85rem);
  letter-spacing: var(--tracking-display);
  font-weight: 650;
}

.cart-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(16rem, 0.85fr);
  gap: 1.35rem;
  align-items: start;
}

.cart-items-panel,
.cart-summary-panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 0.35rem 1.25rem 1.25rem;
  box-shadow: 0 10px 32px rgba(16, 30, 48, 0.04);
}

.cart-summary-panel {
  padding: 1.35rem 1.35rem 1.4rem;
  position: sticky;
  top: calc(var(--header-h) + 1rem);
}

.cart-empty {
  text-align: center;
  padding: 2.75rem 1rem;
}

.cart-empty p {
  margin: 0 0 1.1rem;
  color: var(--ink-soft);
}

.cart-line {
  display: grid;
  grid-template-columns: 4.75rem minmax(0, 1fr) auto 5.75rem 2rem;
  gap: 0.85rem 1.1rem;
  align-items: center;
  padding: 1.15rem 0;
  border-bottom: 1px solid var(--line);
}

.cart-line:last-child {
  border-bottom: 0;
  padding-bottom: 0.35rem;
}

.cart-line:first-child {
  padding-top: 1rem;
}

.cart-line-media {
  display: block;
  width: 4.75rem;
  border-radius: 0.55rem;
  overflow: hidden;
  background: linear-gradient(160deg, #d5e3ef, #f7fafc);
}

.cart-line-media img {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.cart-line-info {
  min-width: 0;
}

.cart-line-info h2 {
  margin: 0 0 0.28rem;
  font-family: var(--font-body);
  font-size: 0.98rem;
  font-weight: 650;
  letter-spacing: -0.015em;
  line-height: 1.3;
}

.cart-line-info h2 a {
  color: inherit;
  text-decoration: none;
}

.cart-line-info h2 a:hover,
.cart-line-info h2 a:focus-visible {
  text-decoration: underline;
  text-underline-offset: 0.14em;
}

.cart-line-price {
  margin: 0;
  display: flex;
  align-items: baseline;
  gap: 0.35rem;
  color: var(--ink-muted);
  font-size: 0.82rem;
  line-height: 1.3;
}

.cart-line-unit {
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.01em;
}

.cart-line-each {
  color: var(--ink-muted);
  font-size: 0.76rem;
  letter-spacing: 0.02em;
}

.qty-control {
  display: inline-flex;
  align-items: center;
  gap: 0.15rem;
  padding: 0.22rem;
  border-radius: 0.4rem;
  border: 1px solid var(--line-strong);
  background: var(--foam);
}

.qty-control button {
  width: 1.85rem;
  height: 1.85rem;
  border: 0;
  border-radius: 0.28rem;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font-size: 1.05rem;
  line-height: 1;
  transition: background var(--duration-fast) var(--ease);
}

.qty-control button:hover,
.qty-control button:focus-visible {
  background: #fff;
}

.qty-control span {
  min-width: 1.35rem;
  text-align: center;
  font-weight: 650;
  font-size: 0.9rem;
  font-variant-numeric: tabular-nums;
}

.cart-line-total {
  margin: 0;
  justify-self: end;
  text-align: right;
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
  color: var(--ink);
  white-space: nowrap;
}

.cart-remove {
  justify-self: end;
  display: inline-grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  border: 0;
  border-radius: 0.35rem;
  background: transparent;
  color: var(--ink-muted);
  cursor: pointer;
  padding: 0;
  transition: color var(--duration-fast) var(--ease), background var(--duration-fast) var(--ease);
}

.cart-remove:hover,
.cart-remove:focus-visible {
  color: var(--ink);
  background: var(--foam);
}

.cart-summary-panel h2 {
  margin: 0 0 1.15rem;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 650;
  letter-spacing: var(--tracking-tight);
}

.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 0.7rem;
  color: var(--ink-soft);
  font-size: 0.9rem;
  line-height: 1.4;
}

.summary-row > span:last-child {
  text-align: right;
  font-variant-numeric: tabular-nums;
  color: var(--ink);
  font-weight: 550;
}

.summary-row > .summary-note {
  font-weight: 500;
  color: var(--ink-muted);
  font-size: 0.84rem;
  font-variant-numeric: normal;
}

.summary-total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  margin: 1rem 0 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.summary-total > span:last-child {
  font-variant-numeric: tabular-nums;
  font-size: 1.35rem;
}

.checkout-btn {
  width: 100%;
}

.checkout-note {
  margin: 0.85rem 0 0;
  text-align: center;
  font-size: 0.78rem;
  color: var(--ink-muted);
}

.checkout-success {
  margin: 0.9rem 0 0;
  padding: 0.75rem 0.85rem;
  border-radius: 0.55rem;
  background: rgba(106, 139, 171, 0.12);
  color: var(--steel-deep);
  font-size: 0.88rem;
}

@media (max-width: 960px) {
  .cart-layout {
    grid-template-columns: minmax(0, 1.35fr) minmax(15rem, 0.9fr);
    gap: 1.1rem;
  }

  .cart-line {
    grid-template-columns: 4.25rem minmax(0, 1fr) auto 5.25rem 1.85rem;
    gap: 0.75rem 0.85rem;
  }
}

@media (max-width: 840px) {
  .cart-layout {
    grid-template-columns: 1fr;
  }

  .cart-summary-panel {
    position: static;
  }
}

@media (max-width: 760px) {
  .header-actions .header-cta {
    display: none;
  }

  .header-actions {
    margin-left: auto;
    margin-right: 0.35rem;
  }
}

@media (max-width: 640px) {
  .cart-items-panel {
    padding: 0.15rem 0.95rem 1rem;
  }

  .cart-line {
    grid-template-columns: 4rem minmax(0, 1fr) auto;
    grid-template-areas:
      "media info remove"
      "media qty total";
    gap: 0.35rem 0.85rem;
    align-items: start;
  }

  .cart-line-media {
    grid-area: media;
    width: 4rem;
  }

  .cart-line-info {
    grid-area: info;
    padding-top: 0.1rem;
  }

  .qty-control {
    grid-area: qty;
    align-self: end;
    margin-top: 0.55rem;
  }

  .cart-line-total {
    grid-area: total;
    align-self: end;
    margin-top: 0.55rem;
  }

  .cart-remove {
    grid-area: remove;
    align-self: start;
  }

  .site-search-bar {
    grid-template-columns: 1fr auto;
  }

  .site-search-form {
    grid-template-columns: 1fr;
  }

  .site-search-form .btn {
    width: 100%;
  }

  .collection-grid {
    grid-template-columns: 1fr;
  }
}

.header-cta {
  display: none !important;
}

.menu-toggle {
  display: none;
  width: 2.4rem;
  height: 2.4rem;
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  gap: 0.4rem;
}

.menu-toggle span {
  display: block;
  height: 1.5px;
  width: 1.3rem;
  background: var(--ink);
  transition: transform 0.3s var(--ease);
}

.mobile-nav {
  position: fixed;
  inset: var(--header-h) 0 auto 0;
  z-index: 55;
  display: grid;
  gap: 0.2rem;
  padding: 1rem var(--page-x) 1.4rem;
  background: rgba(248, 250, 252, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.mobile-nav-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.35rem 0 1rem;
  margin-bottom: 0.25rem;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  color: inherit;
  line-height: 0;
}

.mobile-nav-brand .brand-logo {
  height: 36px;
  max-width: 42px;
}

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

.mobile-nav a:not(.mobile-nav-brand) {
  padding: 0.85rem 0;
  font-size: 1.15rem;
  font-family: var(--font-display);
  font-weight: 600;
  border-bottom: 1px solid var(--line);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  align-items: center;
  isolation: isolate;
  overflow: hidden;
  background: var(--foam);
  padding:
    calc(var(--header-h) + clamp(1.25rem, 3.5vh, 2.5rem))
    0
    clamp(2rem, 5vh, 3.5rem);
  gap: clamp(0.5rem, 2vw, 1.5rem);
}

.hero-atmosphere {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(1200px 780px at 78% 45%, rgba(107, 143, 173, 0.28), transparent 62%),
    radial-gradient(760px 520px at 12% 70%, rgba(183, 204, 224, 0.22), transparent 58%),
    radial-gradient(640px 420px at 55% 8%, rgba(255, 255, 255, 0.7), transparent 55%),
    linear-gradient(155deg, #e6eef5 0%, #f4f8fb 38%, #e9f0f6 100%);
}

.hero-atmosphere::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(250, 252, 253, 0.72) 0%, rgba(250, 252, 253, 0.35) 34%, transparent 58%),
    linear-gradient(180deg, rgba(250, 252, 253, 0.35) 0%, transparent 18%, transparent 78%, rgba(236, 243, 248, 0.55) 100%);
  pointer-events: none;
}

.hero-mist {
  position: absolute;
  border-radius: 50%;
  filter: blur(42px);
  opacity: 0.55;
  pointer-events: none;
  animation: heroMist 12s var(--ease) infinite alternate;
}

.hero-mist--a {
  width: min(48vw, 28rem);
  height: min(48vw, 28rem);
  right: 8%;
  top: 18%;
  background: rgba(150, 190, 220, 0.45);
}

.hero-mist--b {
  width: min(36vw, 20rem);
  height: min(36vw, 20rem);
  right: 28%;
  bottom: 14%;
  background: rgba(200, 220, 180, 0.28);
  animation-delay: -4s;
}

.hero-mist--c {
  width: min(30vw, 16rem);
  height: min(30vw, 16rem);
  left: 42%;
  top: 30%;
  background: rgba(255, 255, 255, 0.55);
  animation-delay: -7s;
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: min(100%, 34rem);
  display: grid;
  gap: 0;
  padding: clamp(1.5rem, 6vh, 4rem) 0 clamp(1rem, 3vh, 2rem) var(--page-x);
  align-content: center;
  justify-self: start;
}

.hero-copy > * {
  opacity: 0;
  transform: translateY(18px);
  animation: heroRise 0.95s var(--ease-out) forwards;
}

.hero-copy h1 { animation-delay: 0.08s; }
.hero-copy .lede { animation-delay: 0.22s; }
.hero-copy .cta-row { animation-delay: 0.36s; }

.brand-hero {
  display: block;
  margin: 0 0 clamp(1.25rem, 2.8vh, 1.85rem);
  line-height: 0;
}

.brand-hero-logo {
  display: block;
  height: clamp(5.25rem, 12vw, 8rem);
  width: auto;
  max-width: min(100%, 10.5rem);
  object-fit: contain;
  object-position: left center;
  filter: drop-shadow(0 16px 36px rgba(36, 63, 85, 0.18));
}

.brand-hero-mark {
  width: 1.45rem;
  height: 1.45rem;
  clip-path: polygon(50% 4%, 100% 100%, 0% 100%);
  background: linear-gradient(145deg, #9bb8d0 0%, #4f7394 55%, #243f55 100%);
  flex-shrink: 0;
  box-shadow: 0 8px 20px rgba(58, 88, 114, 0.22);
}

.hero h1 {
  margin: 0 0 clamp(1.15rem, 2.4vh, 1.6rem);
  font-family: var(--font-display);
  font-size: clamp(2.55rem, 6vw, 4.5rem);
  font-weight: 650;
  line-height: 1.04;
  letter-spacing: var(--tracking-display);
  max-width: 10ch;
  color: var(--ink);
  text-wrap: balance;
}

.hero .lede {
  margin: 0 0 clamp(1.5rem, 3.2vh, 2.15rem);
  max-width: 32ch;
  color: var(--ink-soft);
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  font-weight: 400;
  line-height: 1.6;
}

.hero .cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 0;
}

.hero .btn {
  min-height: 3.15rem;
  padding: 0.9rem 1.65rem;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: 999px;
}

.hero .btn-primary {
  box-shadow: 0 10px 28px rgba(11, 16, 22, 0.16);
}

.hero .btn-primary:hover,
.hero .btn-primary:focus-visible {
  background: var(--white);
  color: var(--ink);
  border-color: var(--ink);
  box-shadow: 0 10px 28px rgba(11, 16, 22, 0.1);
}

.hero .btn-ghost {
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(11, 16, 22, 0.14);
  backdrop-filter: blur(10px);
}

.hero .btn-ghost:hover,
.hero .btn-ghost:focus-visible {
  background: #fff;
  border-color: rgba(11, 16, 22, 0.28);
}

.hero-trust {
  list-style: none;
  margin: 0;
  padding: var(--space-5) 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 0;
  max-width: 36rem;
  border-top: 1px solid var(--line);
}

.hero-trust li {
  position: relative;
  color: var(--ink-soft);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding-right: 0.95rem;
  margin-right: 0.95rem;
}

.hero-trust li:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 1px;
  height: 0.85em;
  transform: translateY(-50%);
  background: var(--line-strong);
}

.hero-visual {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  min-height: min(78vh, 42rem);
  align-self: stretch;
  padding-right: clamp(0.5rem, 2vw, 1.5rem);
  opacity: 0;
  transform: translate3d(18px, 0, 0) scale(0.98);
  animation: heroVisualIn 1.15s 0.2s var(--ease-out) forwards;
}

.hero-glow {
  position: absolute;
  left: 50%;
  top: 46%;
  width: min(98%, 40rem);
  height: min(98%, 40rem);
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.98) 0%, rgba(183, 204, 224, 0.45) 28%, rgba(107, 143, 173, 0.16) 52%, transparent 70%);
  filter: blur(4px);
  opacity: 0.98;
  animation: heroGlow 8s var(--ease) infinite alternate;
  pointer-events: none;
}

.hero-ring {
  position: absolute;
  left: 50%;
  top: 46%;
  width: min(72%, 26rem);
  height: min(72%, 26rem);
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow:
    inset 0 0 40px rgba(255, 255, 255, 0.35),
    0 0 0 1px rgba(107, 143, 173, 0.08);
  pointer-events: none;
  opacity: 0.65;
  animation: heroRing 10s var(--ease) infinite alternate;
}

.hero-pedestal {
  position: absolute;
  left: 50%;
  bottom: 10%;
  width: min(68%, 24rem);
  height: 3.25rem;
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(36, 63, 85, 0.18) 0%, transparent 72%);
  filter: blur(10px);
  pointer-events: none;
}

.hero-stage {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  padding: 1.25rem 0 2.5rem;
}

.hero-img {
  grid-area: 1 / 1;
  width: min(100%, 34rem);
  height: auto;
  max-height: min(72vh, 40rem);
  object-fit: contain;
  object-position: center;
  opacity: 0;
  transform: translate3d(14px, 12px, 0) scale(0.96);
  filter: drop-shadow(0 32px 56px rgba(16, 30, 48, 0.2));
  transition:
    opacity 1.15s var(--ease-out),
    transform 1.25s var(--ease-out),
    filter 1.25s var(--ease);
  will-change: opacity, transform;
}

.hero-img.is-active {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  filter: drop-shadow(0 40px 68px rgba(16, 30, 48, 0.24));
  animation: heroFloat 9s var(--ease) infinite alternate;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.hero-wash {
  display: none;
}

@keyframes heroRise {
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes heroVisualIn {
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes heroGlow {
  from {
    opacity: 0.78;
    transform: translate(-50%, -50%) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.05);
  }
}

@keyframes heroRing {
  from {
    opacity: 0.4;
    transform: translate(-50%, -50%) scale(0.97);
  }
  to {
    opacity: 0.72;
    transform: translate(-50%, -50%) scale(1.03);
  }
}

@keyframes heroMist {
  from {
    transform: translate3d(0, 0, 0) scale(1);
  }
  to {
    transform: translate3d(12px, -16px, 0) scale(1.08);
  }
}

@keyframes heroFloat {
  from {
    transform: translate3d(0, 0, 0) scale(1);
  }
  to {
    transform: translate3d(0, -12px, 0) scale(1.02);
  }
}

.lede {
  margin: 0 0 var(--space-7);
  max-width: var(--measure-narrow);
  color: var(--ink-soft);
  font-size: var(--text-lg);
  font-weight: 400;
  line-height: var(--leading-body);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: var(--btn-h);
  padding: 0.85rem 1.55rem;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  cursor: pointer;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: var(--text-sm);
  letter-spacing: 0.02em;
  line-height: 1.2;
  text-decoration: none;
  transition:
    transform var(--duration) var(--ease),
    background var(--duration) var(--ease),
    color var(--duration) var(--ease),
    border-color var(--duration) var(--ease),
    box-shadow var(--duration) var(--ease),
    opacity var(--duration) var(--ease);
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(var(--lift));
}

.btn:active {
  transform: translateY(0);
}

.btn:disabled,
.btn[aria-disabled="true"] {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
  pointer-events: none;
}

.btn-primary {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--white);
  color: var(--ink);
  border-color: var(--ink);
  box-shadow: none;
}

.btn-ghost {
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.6);
  color: var(--ink);
  box-shadow: none;
}

.btn-ghost:hover,
.btn-ghost:focus-visible {
  border-color: var(--steel);
  background: var(--white);
  color: var(--ink);
  box-shadow: var(--shadow-xs);
}

.btn-link {
  min-height: auto;
  padding: 0.2rem 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  box-shadow: none;
  font-weight: 600;
  letter-spacing: 0.01em;
  gap: 0.4rem;
}

.btn-link::after {
  content: "?";
  display: inline-block;
  transition: transform var(--duration) var(--ease);
}

.btn-link:hover,
.btn-link:focus-visible {
  transform: none;
  color: var(--steel-deep);
}

.btn-link:hover::after,
.btn-link:focus-visible::after {
  transform: translateX(3px);
}

.container {
  width: min(var(--content-max), calc(100% - 2 * var(--page-x)));
  margin-inline: auto;
}

.container-wide {
  width: min(var(--content-wide), calc(100% - 2 * var(--page-x)));
  margin-inline: auto;
}

.marquee {
  border-block: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.35);
  overflow: hidden;
  padding: 0.95rem 0;
}

.marquee-track {
  display: flex;
  width: max-content;
  gap: 2.5rem;
  animation: marquee 32s linear infinite;
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--steel-deep);
}

.marquee-track span::after {
  content: "?";
  margin-left: 2.5rem;
  opacity: 0.45;
}

.eyebrow {
  margin: 0 0 var(--space-3);
  color: var(--steel-deep);
  font-size: var(--text-xs);
  letter-spacing: var(--tracking-label);
  text-transform: uppercase;
  font-weight: 600;
  line-height: 1.3;
}

.section-head,
.science-intro,
.spotlight-head {
  padding: 0 var(--page-x);
  max-width: calc(var(--measure) + 2 * var(--page-x));
}

.section-head {
  margin-bottom: var(--space-8);
}

.section-head h2,
.science-intro h2,
.spotlight-head h2,
.story-copy h2,
.about h2,
.contact h2 {
  margin: 0 0 var(--space-4);
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 700;
  letter-spacing: var(--tracking-tight);
  line-height: var(--leading-tight);
  color: var(--ink);
  text-wrap: balance;
}

.section-head p,
.science-intro p,
.story-copy > p,
.about p,
.contact p {
  margin: 0;
  color: var(--ink-soft);
  font-size: var(--text-lg);
  font-weight: 400;
  line-height: var(--leading-body);
  max-width: var(--measure-narrow);
  text-wrap: pretty;
}

.spotlight {
  padding: var(--section-y) 0;
}

.spotlight-stage {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
  padding: 0 var(--page-x);
}

.spotlight-visual {
  margin: 0;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-panel);
  aspect-ratio: 1;
  background: var(--grad-media);
  box-shadow: var(--shadow-md);
}

.spotlight-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    opacity var(--duration) var(--ease),
    transform var(--duration-slow) var(--ease);
}

.spotlight-visual.is-swap img {
  opacity: 0.35;
  transform: scale(1.04);
}

.spotlight-panel .product-kicker {
  margin-bottom: 0.5rem;
}

.spotlight-panel h3 {
  margin: 0 0 0.8rem;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  letter-spacing: -0.02em;
}

.spotlight-panel > p {
  margin: 0 0 1.2rem;
  color: var(--ink-soft);
  max-width: 36ch;
}

.spotlight-thumbs {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.55rem;
  margin-top: 1.8rem;
}

.thumb {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.55);
  border-radius: 0.9rem;
  padding: 0.45rem;
  cursor: pointer;
  text-align: center;
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease), background 0.3s var(--ease);
}

.thumb img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 0.55rem;
  margin-bottom: 0.35rem;
}

.thumb span {
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.thumb:hover,
.thumb:focus-visible {
  transform: translateY(-2px);
  border-color: var(--steel);
}

.thumb.is-active {
  border-color: var(--ink);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.product-kicker {
  margin: 0;
  color: var(--steel);
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
}

.facts {
  margin: 1.3rem 0 1.5rem;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.5rem;
}

.facts li {
  position: relative;
  padding-left: 1.05rem;
  font-weight: 500;
  font-size: 0.96rem;
}

.facts li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.38rem;
  height: 0.38rem;
  border-radius: 50%;
  background: var(--steel);
}

.collection {
  padding: var(--section-y-sm) 0 var(--section-y);
}

.collection-browse {
  margin: 1.1rem 0 0;
}

.collection-browse a {
  color: var(--ink);
  font-weight: 600;
  font-size: 0.95rem;
  border-bottom: 1px solid rgba(13, 18, 24, 0.25);
}

.collection-browse a:hover,
.collection-browse a:focus-visible {
  color: var(--steel-deep);
  border-bottom-color: var(--steel-deep);
}

.collection-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  width: min(var(--content-max), calc(100% - 2 * var(--page-x)));
  margin: 0 auto;
  padding: 0;
  align-items: stretch;
}

.product-card,
.shop-item {
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: var(--radius-card);
  overflow: hidden;
  background: var(--surface-card);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  transition:
    transform var(--duration) var(--ease),
    box-shadow var(--duration) var(--ease),
    border-color var(--duration) var(--ease);
}

.product-card:hover,
.shop-item:hover {
  transform: translateY(var(--lift));
  border-color: var(--line-strong);
  box-shadow: var(--shadow-hover);
}

.product-card-media,
.shop-item-link {
  display: grid;
  place-items: center;
  padding: var(--card-pad);
  background: var(--grad-media);
}

.product-card-media img,
.shop-item-link img,
.shop-item figure img {
  width: 100%;
  height: 100%;
  max-height: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  object-position: center;
  display: block;
  transition: transform var(--duration-slow) var(--ease);
}

.product-card:hover .product-card-media img,
.shop-item:hover img {
  transform: scale(1.035);
}

.product-card-body,
.shop-meta {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: var(--card-pad) var(--card-pad) calc(var(--card-pad) + 0.1rem);
  text-align: left;
  gap: 0;
}

.product-card-label {
  margin: 0 0 var(--space-2);
  color: var(--steel-deep);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: var(--tracking-label);
  text-transform: uppercase;
}

.product-card-title,
.shop-meta h3 {
  margin: 0 0 var(--space-2);
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 650;
  letter-spacing: var(--tracking-tight);
  line-height: var(--leading-snug);
}

.product-card-title a,
.shop-meta h3 a {
  color: inherit;
}

.product-card-benefit {
  margin: 0 0 var(--space-3);
  color: var(--steel-deep);
  font-size: var(--text-sm);
  font-weight: 500;
}

.product-card-desc,
.shop-meta > p {
  margin: 0 0 var(--space-5);
  color: var(--ink-soft);
  font-size: var(--text-sm);
  line-height: var(--leading-body);
  flex: 1;
}

.product-card-price,
.shop-actions {
  display: flex;
  align-items: baseline;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
}

.product-card-price strong,
.shop-price {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 700;
  letter-spacing: var(--tracking-tight);
}

.product-card-price s {
  color: var(--ink-muted);
  font-size: var(--text-sm);
}

.product-card-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  margin-top: auto;
}

.product-card-link {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.01em;
}

.product-card-link:hover,
.product-card-link:focus-visible {
  color: var(--steel-deep);
}

/* Thorne-style quick add on shop cards */
.product-card--shop {
  overflow: hidden;
  border: 0;
  box-shadow: none;
  background: #fff;
}

.product-card--shop:hover {
  transform: none;
  box-shadow: none;
  border-color: transparent;
}

.product-card--shop .product-card-visual {
  position: relative;
  background:
    radial-gradient(ellipse 70% 55% at 50% 40%, rgba(180, 210, 230, 0.28), transparent 70%),
    linear-gradient(180deg, #f6f8fa 0%, #eef2f5 100%);
}

.product-card--shop .product-card-media {
  display: grid;
  place-items: center;
  padding: 1.6rem 1.25rem 3.5rem;
  background: transparent;
}

.product-card--shop:hover .product-card-media img {
  transform: scale(1.02);
}

.product-card--shop .product-card-quick {
  position: absolute;
  left: 0.9rem;
  right: 0.9rem;
  bottom: 0.9rem;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  pointer-events: none;
}

.product-card--shop .product-card-quick > * {
  pointer-events: auto;
}

.product-card-price-badge {
  display: inline-flex;
  align-items: center;
  min-height: 2.4rem;
  padding: 0.42rem 0.85rem;
  border: 1px solid rgba(20, 28, 38, 0.1);
  border-radius: 0.4rem;
  background: #fff;
  color: #1a1f26;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1;
  text-decoration: none;
  box-shadow: 0 1px 2px rgba(15, 23, 32, 0.04);
  transition:
    border-color var(--duration) var(--ease),
    transform var(--duration) var(--ease);
}

.product-card-price-badge:hover,
.product-card-price-badge:focus-visible {
  border-color: rgba(20, 28, 38, 0.22);
  transform: translateY(-1px);
}

.btn-cart-icon {
  appearance: none;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 2.6rem;
  height: 2.6rem;
  margin: 0;
  padding: 0;
  border: 1px solid #0a0a0a;
  border-radius: 0.6rem;
  background: #0a0a0a;
  color: #fff;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(10, 10, 10, 0.16);
  transition:
    background var(--duration) var(--ease),
    color var(--duration) var(--ease),
    border-color var(--duration) var(--ease),
    transform var(--duration) var(--ease),
    box-shadow var(--duration) var(--ease);
}

.btn-cart-icon:hover,
.btn-cart-icon:focus-visible {
  background: #fff;
  color: #0a0a0a;
  border-color: #0a0a0a;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(10, 10, 10, 0.12);
}

.btn-cart-icon:active {
  transform: translateY(0);
}

.btn-cart-icon__svg {
  display: block;
}

.product-card--shop .product-card-body {
  padding-top: 1rem;
}

.product-card--shop .product-card-desc {
  margin-bottom: 0;
}

.shop-item-wide {
  grid-column: auto;
  display: flex;
  flex-direction: column;
}

.shop-item figure {
  margin: 0;
  aspect-ratio: 1;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 20%, rgba(255, 255, 255, 0.9), transparent 55%),
    linear-gradient(160deg, #d2e0ec, #f7fafc 60%);
}

.shop-item-wide figure {
  aspect-ratio: 1;
}

.shop-page-grid {
  padding-top: 0.5rem;
  padding-bottom: 2rem;
}

.science {
  padding: var(--section-y) 0;
  background:
    radial-gradient(900px 480px at 85% 0%, rgba(107, 143, 173, 0.28), transparent 58%),
    linear-gradient(165deg, #121c26 0%, #1a2c3d 48%, #152433 100%);
  color: var(--foam);
}

.science-intro {
  width: min(40rem, calc(100% - 2 * var(--page-x)));
  max-width: none;
  margin: 0 auto 2.75rem;
  padding: 0;
  box-sizing: border-box;
}

.science .eyebrow {
  color: var(--sky);
  margin: 0 0 0.75rem;
}

.science .science-intro h2 {
  margin: 0 0 0.9rem;
  color: #f7fafc;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.85rem);
  font-weight: 650;
  letter-spacing: var(--tracking-display);
  line-height: 1.08;
}

.science-intro p {
  margin: 0;
  color: rgba(242, 245, 248, 0.82);
  font-size: 1.05rem;
  line-height: 1.65;
  max-width: 42ch;
}

.science-rail {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  width: min(1120px, calc(100% - 2 * var(--page-x)));
  margin: 0 auto;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.science-panel {
  padding: 1.85rem 1.35rem 2.1rem;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
  transition: background 0.35s var(--ease);
}

.science-panel:last-child {
  border-right: 0;
}

.science-panel:hover {
  background: rgba(255, 255, 255, 0.05);
}

.science-num {
  display: block;
  margin-bottom: 1.15rem;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 650;
  letter-spacing: 0.14em;
  color: #c5d8e8;
}

.science-panel h3 {
  margin: 0 0 0.7rem;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 650;
  letter-spacing: -0.015em;
  color: #ffffff;
}

.science-panel p {
  margin: 0;
  color: rgba(242, 245, 248, 0.78);
  font-size: 0.95rem;
  line-height: 1.6;
  max-width: 28ch;
}

.pathways {
  padding: var(--section-y) 0;
  background:
    radial-gradient(700px 320px at 10% 0%, rgba(106, 139, 171, 0.16), transparent 60%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.25), transparent);
}

.pathway-list {
  margin-top: 1.5rem;
  border-top: 1px solid var(--line-strong);
}

.pathway {
  display: grid;
  grid-template-columns: 1fr 1.4fr auto;
  gap: 1rem;
  align-items: center;
  padding: 1.35rem var(--page-x);
  border-bottom: 1px solid var(--line);
  transition: background 0.35s var(--ease), padding-left 0.35s var(--ease);
}

.pathway:hover,
.pathway:focus-visible {
  background: rgba(255, 255, 255, 0.55);
  padding-left: calc(var(--page-x) + 0.4rem);
}

.pathway-label {
  color: var(--steel);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.pathway strong {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.4vw, 1.7rem);
  font-weight: 650;
  letter-spacing: -0.015em;
}

.pathway-go {
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--steel-deep);
  font-weight: 600;
}

.stories {
  padding: clamp(2rem, 5vh, 3rem) 0;
}

.story {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(1.4rem, 4vw, 3.2rem);
  align-items: center;
  max-width: var(--content-max);
  margin: 0 auto;
  padding: clamp(2.5rem, 7vh, 4.5rem) var(--page-x);
}

.story.reverse {
  direction: rtl;
}

.story.reverse > * {
  direction: ltr;
}

.story figure {
  margin: 0;
  overflow: hidden;
  border-radius: 1.6rem;
  background: linear-gradient(160deg, #cfddea, #f7fafc);
  box-shadow: var(--shadow);
  cursor: pointer;
  transform-origin: center center;
  transition:
    transform 0.55s var(--ease),
    box-shadow 0.55s var(--ease);
  will-change: transform;
}

.story figure img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  transform: scale(1);
  transition: transform 0.7s var(--ease);
  will-change: transform;
}

.story figure:hover,
.story figure:focus-visible {
  transform: translateY(-10px) scale(1.045);
  box-shadow:
    0 36px 70px rgba(20, 40, 60, 0.22),
    0 12px 28px rgba(20, 40, 60, 0.12);
}

.story figure:hover img,
.story figure:focus-visible img {
  transform: scale(1.08);
}

.story figure:active {
  transform: translateY(-4px) scale(1.06);
  box-shadow:
    0 28px 50px rgba(20, 40, 60, 0.2),
    0 8px 18px rgba(20, 40, 60, 0.1);
}

.story figure:active img {
  transform: scale(1.1);
}

.story-copy h2 {
  margin-bottom: 0.9rem;
}

.about {
  padding: var(--section-y) var(--page-x);
  text-align: center;
  background:
    radial-gradient(560px 260px at 50% 0%, rgba(106, 139, 171, 0.18), transparent 70%);
}

.about-inner {
  max-width: 38rem;
  margin: 0 auto;
}

.about-inner p:last-child {
  margin: 0 auto;
}

.contact {
  padding: 0 var(--page-x) var(--section-y);
}

.contact-panel {
  max-width: 980px;
  margin: 0 auto;
  padding: clamp(2rem, 5vw, 3rem);
  border-radius: var(--radius-panel);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.5)),
    linear-gradient(160deg, #dce8f2, #f3f7fa);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow-md);
  display: grid;
  gap: var(--space-6);
}

.subscribe {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  align-items: center;
}

.subscribe input {
  flex: 1 1 16rem;
  min-width: 0;
  padding: 0.95rem 1.1rem;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.8);
  outline: none;
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.subscribe input:focus {
  border-color: var(--steel);
  box-shadow: 0 0 0 4px rgba(106, 139, 171, 0.18);
}

.form-note {
  width: 100%;
  margin: 0.2rem 0 0 !important;
  color: var(--steel-deep) !important;
  font-weight: 500 !important;
}

.contact-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  align-items: baseline;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.contact-meta a {
  color: var(--ink);
  font-weight: 500;
  border-bottom: 1px solid rgba(13, 18, 24, 0.2);
}

.site-footer {
  margin-top: 2rem;
  border-top: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(248, 250, 252, 0.95)),
    radial-gradient(700px 280px at 10% 0%, rgba(106, 139, 171, 0.1), transparent 60%);
}

.footer-shell {
  width: min(var(--content-max), calc(100% - 2 * var(--page-x)));
  margin: 0 auto;
  padding: clamp(2.8rem, 6vh, 4rem) 0 2.2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1.25fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: start;
  padding-bottom: 2.2rem;
  border-bottom: 1px solid var(--line);
}

.footer-col h3 {
  margin: 0 0 1.1rem;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
}

.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.7rem;
}

.footer-col a {
  color: var(--ink-soft);
  font-size: 0.95rem;
  transition: color 0.25s var(--ease);
}

.footer-col a:hover,
.footer-col a:focus-visible {
  color: var(--ink);
}

.footer-about p {
  margin: 0 0 1.3rem;
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.6;
  max-width: 38ch;
}

.footer-brand-link {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--ink) !important;
  line-height: 0;
}

.footer-brand-logo {
  display: block;
  height: 52px;
  width: auto;
  max-width: 58px;
  object-fit: contain;
  object-position: left center;
  flex-shrink: 0;
}

.footer-brand-text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  line-height: 1.05;
}

.footer-brand-text strong {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer-brand-text span {
  font-size: 0.58rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--steel);
  font-weight: 600;
}

.footer-social {
  display: flex;
  gap: 0.55rem;
  margin-top: 1.5rem;
}

.footer-social a {
  display: inline-grid;
  place-items: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 999px;
  border: 1px solid rgba(13, 18, 24, 0.12);
  background: rgba(255, 255, 255, 0.7);
  color: var(--ink-soft);
  transition: background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease), transform 0.25s var(--ease);
}

.footer-social a:hover,
.footer-social a:focus-visible {
  color: var(--ink);
  border-color: var(--steel);
  background: #fff;
  transform: translateY(-2px);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.8rem 1.5rem;
  align-items: center;
  padding: 1.3rem 0 1rem;
}

.footer-bottom p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.88rem;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem 1.2rem;
}

.footer-legal a {
  color: var(--ink-soft);
  font-size: 0.86rem;
}

.footer-legal a:hover,
.footer-legal a:focus-visible {
  color: var(--ink);
}

.disclaimer {
  margin: 0;
  max-width: 78ch;
  font-size: 0.75rem;
  line-height: 1.5;
  color: var(--ink-soft);
  opacity: 0.88;
}

@media (max-width: 840px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-about {
    grid-column: 1 / -1;
  }
}

@media (max-width: 560px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-about {
    grid-column: auto;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(var(--reveal-distance));
  transition:
    opacity var(--duration-slow) var(--ease-out),
    transform var(--duration-slow) var(--ease-out);
  will-change: opacity, transform;
}

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

.reveal-delay-1 { transition-delay: 60ms; }
.reveal-delay-2 { transition-delay: 120ms; }
.reveal-delay-3 { transition-delay: 180ms; }
.reveal-delay-4 { transition-delay: 240ms; }

.reveal-soft {
  opacity: 0;
  transform: translateY(10px);
  transition:
    opacity var(--duration-slow) var(--ease-out),
    transform var(--duration-slow) var(--ease-out);
}

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

@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

/* ?? Responsive token scale ?? */
@media (max-width: 980px) {
  :root {
    --section-y: clamp(3.5rem, 8.5vh, 5.75rem);
    --section-y-sm: clamp(2.5rem, 6vh, 3.75rem);
    --content-max: 960px;
    --content-wide: 1040px;
  }
}

@media (max-width: 760px) {
  :root {
    --page-x: clamp(1.15rem, 5vw, 1.5rem);
    --section-y: clamp(3rem, 7.5vh, 4.5rem);
    --section-y-sm: clamp(2.25rem, 5.5vh, 3.25rem);
    --header-h: 4.65rem;
    --card-pad: 1.1rem;
    --lift: -2px;
    --btn-h: 2.9rem;
    --reveal-distance: 12px;
  }
}

@media (max-width: 520px) {
  :root {
    --section-y: clamp(2.75rem, 7vh, 3.85rem);
    --text-lg: 1.0625rem;
    --text-xs: 0.8125rem;
  }
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes orbFloat {
  from {
    transform: translate3d(0, 0, 0) scale(1);
  }
  to {
    transform: translate3d(4%, 6%, 0) scale(1.08);
  }
}

@media (max-width: 980px) {
  .spotlight-stage,
  .science-rail,
  .story,
  .story.reverse {
    grid-template-columns: 1fr;
    direction: ltr;
  }

  .science-rail {
    border-top: 0;
  }

  .science-panel {
    border-right: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    padding-inline: 0.15rem;
  }

  .science-panel:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.14);
  }

  .science-intro {
    margin-bottom: 1.75rem;
  }

  .science-intro h2 {
    color: #f7fafc;
  }

  .collection-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pathway {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }

  .pathway-go {
    justify-self: start;
  }

  .hero-stage {
    padding: 0;
  }

  .hero-img {
    width: min(100%, 420px);
    max-height: min(58vh, 520px);
  }
}

@media (max-width: 760px) {
  .nav,
  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .spotlight-thumbs {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .thumb span {
    font-size: 0.58rem;
  }

  .science-rail {
    margin: 0;
    border-top: 0;
  }

  .science-panel {
    border-right: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }

  .hero {
    grid-template-columns: 1fr;
    align-items: start;
    min-height: auto;
    padding:
      calc(var(--header-h) + 0.85rem)
      0
      2.25rem;
    gap: 0.35rem;
  }

  .hero-visual {
    order: -1;
    min-height: 48vh;
    padding-right: 0;
    animation-delay: 0.08s;
  }

  .hero-stage {
    padding: 0.35rem 0 1.25rem;
    place-items: center;
    height: auto;
    opacity: 1;
  }

  .hero-img {
    width: min(72vw, 320px);
    max-height: 42vh;
  }

  .hero-img.is-active {
    animation: none;
  }

  .hero-glow {
    left: 50%;
    top: 48%;
    width: min(92vw, 420px);
    height: min(92vw, 420px);
    transform: translate(-50%, -50%);
    animation: none;
  }

  .hero-ring {
    width: min(68vw, 280px);
    height: min(68vw, 280px);
    animation: none;
  }

  .hero-mist {
    animation: none;
  }

  .hero-wash {
    display: none;
  }

  .hero-copy {
    padding: 0 var(--page-x);
    margin-top: 0.15rem;
    width: 100%;
  }

  .brand-logo {
    height: 36px;
    max-width: 42px;
  }

  .brand-hero {
    margin-bottom: var(--space-4);
  }

  .brand-hero-logo {
    height: clamp(4.25rem, 20vw, 5.75rem);
    max-width: 7.75rem;
  }

  .footer-brand-logo {
    height: 44px;
    max-width: 50px;
  }

  .hero h1 {
    max-width: 11ch;
    font-size: clamp(2.15rem, 8.5vw, 2.85rem);
  }

  .hero .lede {
    max-width: 34ch;
  }

  .hero .cta-row {
    width: 100%;
  }

  .hero .cta-row .btn {
    flex: 1 1 auto;
  }

  .hero-trust li {
    letter-spacing: 0.08em;
    margin-right: 0.7rem;
    padding-right: 0.7rem;
  }
}

@media (max-width: 520px) {
  .collection-grid {
    grid-template-columns: 1fr;
  }

  .product-card-actions {
    flex-wrap: wrap;
  }

  .cta-row {
    width: 100%;
  }

  .cta-row .btn {
    flex: 1;
  }
}

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

  .hero-img,
  .hero-glow,
  .hero-ring,
  .hero-mist,
  .hero-visual,
  .hero-copy > *,
  .marquee-track,
  .orb,
  .reveal,
  .reveal-soft,
  .hero-copy,
  .shop-item img,
  .product-card-media img,
  .story figure,
  .story figure img,
  .btn,
  .welcome-dialog {
    animation: none !important;
    transition: none !important;
  }

  .hero-copy > *,
  .hero-visual,
  .reveal,
  .reveal-soft,
  .story figure:hover,
  .story figure:focus-visible,
  .story figure:active {
    opacity: 1;
    transform: none;
  }

  .hero-img,
  .hero-img.is-active {
    opacity: 0;
    transform: none;
    filter: drop-shadow(0 24px 40px rgba(16, 30, 48, 0.16));
  }

  .hero-img.is-active {
    opacity: 1;
  }

  .story figure:hover img,
  .story figure:focus-visible img,
  .story figure:active img {
    transform: none;
  }
}

/* ?? Welcome discount popup ?? */
.welcome-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 1.25rem;
}

.welcome-modal[hidden] {
  display: none;
}

.welcome-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 14, 18, 0.58);
  backdrop-filter: blur(4px);
}

.welcome-dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 28rem);
  border-radius: 1.1rem;
  overflow: visible;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
  animation: welcomeIn 0.45s var(--ease) both;
}

.welcome-close {
  position: absolute;
  top: -0.65rem;
  right: -0.65rem;
  z-index: 2;
  width: 2rem;
  height: 2rem;
  border: 0;
  border-radius: 999px;
  background: #111;
  color: #fff;
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}

.welcome-body {
  padding: 2rem 1.6rem 1.5rem;
  background: linear-gradient(165deg, #1c2833 0%, #243544 55%, #1a242e 100%);
  color: #f4f7fa;
  text-align: center;
  border-radius: 1.1rem 1.1rem 0 0;
}

.welcome-logo {
  display: block;
  height: 46px;
  width: auto;
  margin: 0 auto 1rem;
  object-fit: contain;
}

.welcome-eyebrow {
  margin: 0 0 0.85rem;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(244, 247, 250, 0.7);
  font-weight: 500;
}

.welcome-body h2 {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 4vw, 2.15rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  font-weight: 700;
}

.welcome-code {
  margin: 0 0 0.85rem;
  font-size: 1rem;
  color: rgba(244, 247, 250, 0.92);
}

.welcome-code strong {
  letter-spacing: 0.04em;
}

.welcome-support {
  margin: 0 0 1.4rem;
  font-size: 0.88rem;
  color: rgba(244, 247, 250, 0.72);
  line-height: 1.45;
}

.welcome-support a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.welcome-cta {
  background: #eef2f6;
  color: var(--ink);
  min-width: 11rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.86rem;
}

.welcome-cta:hover,
.welcome-cta:focus-visible {
  background: #fff;
}

.welcome-footer {
  background: #fff;
  padding: 0.85rem 1.2rem;
  border-radius: 0 0 1.1rem 1.1rem;
  text-align: center;
}

.welcome-footer p {
  margin: 0;
  font-size: 0.78rem;
  color: #5a6570;
}

@keyframes welcomeIn {
  from {
    opacity: 0;
    transform: translateY(16px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

/* ?? Wholesale page ?? */
.page-wholesale {
  background: var(--paper);
}

.page-wholesale .site-header {
  background: rgba(247, 250, 252, 0.92);
  border-bottom-color: var(--line);
}

.wholesale-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding:
    calc(var(--header-h) + clamp(2rem, 5vh, 3.25rem))
    0
    clamp(2.75rem, 6vh, 4.25rem);
}

.wholesale-hero-atmosphere {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(920px 560px at 88% 28%, rgba(107, 143, 173, 0.28), transparent 58%),
    radial-gradient(640px 420px at 8% 78%, rgba(183, 204, 224, 0.2), transparent 58%),
    linear-gradient(155deg, #e6eef5 0%, #f4f8fb 40%, #e9f0f6 100%);
}

.wholesale-hero-grid {
  position: relative;
  z-index: 1;
  width: min(1120px, calc(100% - 2 * var(--page-x)));
  margin: 0 auto 2.75rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.95fr);
  gap: clamp(1.5rem, 4vw, 3.25rem);
  align-items: center;
}

.wholesale-hero-copy .eyebrow {
  margin: 0 0 0.75rem;
  color: var(--steel-deep);
}

.wholesale-hero-copy h1 {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(2.35rem, 5vw, 3.55rem);
  font-weight: 700;
  letter-spacing: var(--tracking-display);
  line-height: 1.02;
  color: var(--ink);
  max-width: 11ch;
}

.wholesale-lede {
  margin: 0 0 1.5rem;
  max-width: 38ch;
  color: var(--ink-soft);
  font-size: 1.05rem;
  line-height: 1.6;
}

.wholesale-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 1.5rem;
}

.wholesale-audience {
  margin: 0;
  color: var(--ink-muted);
  font-size: 0.84rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 550;
}

.wholesale-hero-visual {
  position: relative;
  min-height: clamp(18rem, 42vw, 26rem);
}

.wholesale-hero-glow {
  position: absolute;
  inset: 12% 8%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.75), transparent 68%);
  filter: blur(8px);
}

.wholesale-hero-stage {
  position: relative;
  z-index: 1;
  height: 100%;
  display: grid;
  place-items: center;
}

.wholesale-hero-stage > img:first-child {
  width: min(72%, 22rem);
  height: auto;
  filter: drop-shadow(0 28px 48px rgba(16, 30, 48, 0.18));
  animation: wholesale-float 7s ease-in-out infinite;
}

.wholesale-hero-float {
  position: absolute;
  width: clamp(5.5rem, 14vw, 8rem);
  height: auto;
  filter: drop-shadow(0 16px 28px rgba(16, 30, 48, 0.16));
}

.wholesale-hero-float--a {
  left: 4%;
  bottom: 12%;
  animation: wholesale-float 8s ease-in-out infinite 0.6s;
}

.wholesale-hero-float--b {
  right: 6%;
  top: 10%;
  width: clamp(4.75rem, 12vw, 7rem);
  animation: wholesale-float 6.5s ease-in-out infinite 1.1s;
}

@keyframes wholesale-float {
  0%,
  100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.wholesale-pillars {
  position: relative;
  z-index: 1;
  list-style: none;
  width: min(1120px, calc(100% - 2 * var(--page-x)));
  margin: 0 auto;
  padding: clamp(1.5rem, 3vh, 2rem) 0 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid rgba(36, 63, 85, 0.14);
}

.wholesale-pillars li {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.75rem;
  padding: 1.35rem 1.15rem 0.25rem 0;
  border-right: 1px solid rgba(36, 63, 85, 0.1);
}

.wholesale-pillars li:last-child {
  border-right: 0;
  padding-right: 0;
}

.wholesale-pillar-index {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 650;
  letter-spacing: 0.08em;
  color: var(--steel-deep);
  padding-top: 0.15rem;
}

.wholesale-pillars strong {
  display: block;
  margin: 0 0 0.4rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 650;
  letter-spacing: -0.015em;
  color: var(--ink);
}

.wholesale-pillars p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.88rem;
  line-height: 1.5;
}

.wholesale-pillars li:hover .wholesale-pillar-index {
  color: var(--ink);
}

@media (prefers-reduced-motion: reduce) {
  .wholesale-hero-stage > img:first-child,
  .wholesale-hero-float {
    animation: none;
  }
}

.wholesale-apply {
  background: linear-gradient(165deg, #18232e 0%, #1f2d3a 50%, #162029 100%);
  color: #f2f5f8;
  padding: clamp(3rem, 8vh, 5rem) var(--page-x);
}

.wholesale-apply-grid {
  max-width: var(--content-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: start;
}

.wholesale-apply .eyebrow {
  color: var(--sky);
}

.wholesale-apply-copy h2 {
  margin: 0 0 0.9rem;
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.5vw, 2.6rem);
  letter-spacing: -0.02em;
}

.wholesale-apply-copy > p {
  margin: 0 0 1.2rem;
  color: rgba(242, 245, 248, 0.72);
  max-width: 38ch;
}

.wholesale-notes {
  margin: 0 0 1.6rem;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.55rem;
}

.wholesale-notes li {
  position: relative;
  padding-left: 1.05rem;
  color: rgba(242, 245, 248, 0.78);
  font-size: 0.94rem;
}

.wholesale-notes li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.35rem;
  height: 0.35rem;
  border-radius: 50%;
  background: var(--sky);
}

.wholesale-support-card {
  padding: 1.1rem 1.15rem;
  border-radius: 0.9rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.support-label {
  margin: 0 0 0.45rem;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sky);
}

.wholesale-support-card a {
  display: inline-block;
  margin-bottom: 0.35rem;
  color: #fff;
  font-weight: 500;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
}

.wholesale-support-card p:last-child {
  margin: 0;
  color: rgba(242, 245, 248, 0.65);
  font-size: 0.9rem;
}

.wholesale-form {
  display: grid;
  gap: 1.4rem;
}

.wholesale-form fieldset {
  margin: 0;
  padding: 0;
  border: 0;
  display: grid;
  gap: 0.85rem;
}

.wholesale-form legend {
  margin-bottom: 0.35rem;
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sky);
}

.wholesale-form label {
  display: grid;
  gap: 0.4rem;
  font-size: 0.86rem;
  color: rgba(242, 245, 248, 0.78);
}

.wholesale-form input,
.wholesale-form select,
.wholesale-form textarea {
  width: 100%;
  padding: 0.8rem 0.9rem;
  border-radius: 0.55rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(8, 12, 16, 0.35);
  color: #fff;
  outline: none;
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.wholesale-form input::placeholder,
.wholesale-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.wholesale-form select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, #9bb6cc 50%),
    linear-gradient(135deg, #9bb6cc 50%, transparent 50%);
  background-position: calc(100% - 18px) calc(50% - 3px), calc(100% - 12px) calc(50% - 3px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

.wholesale-form input:focus,
.wholesale-form select:focus,
.wholesale-form textarea:focus {
  border-color: var(--sky);
  box-shadow: 0 0 0 3px rgba(168, 192, 212, 0.18);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}

.form-row-3 {
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
}

.chip-label {
  margin: 0;
  font-size: 0.86rem;
  color: rgba(242, 245, 248, 0.78);
}

.product-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.chip {
  display: inline-flex !important;
  align-items: center;
  gap: 0;
  cursor: pointer;
}

.chip input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  width: 1px;
  height: 1px;
}

.chip span {
  display: inline-flex;
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(242, 245, 248, 0.85);
  font-size: 0.82rem;
  transition: background 0.25s var(--ease), border-color 0.25s var(--ease), color 0.25s var(--ease);
}

.chip input:checked + span,
.chip:hover span {
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.chip input:focus-visible + span {
  box-shadow: 0 0 0 3px rgba(168, 192, 212, 0.25);
}

.confirm-check {
  display: flex !important;
  align-items: flex-start;
  gap: 0.7rem;
  grid-template-columns: none !important;
}

.confirm-check input {
  width: auto;
  margin-top: 0.2rem;
  accent-color: var(--sky);
}

.confirm-check span {
  font-size: 0.88rem;
  color: rgba(242, 245, 248, 0.78);
  line-height: 1.45;
}

.btn-wholesale {
  width: 100%;
  background: #fff;
  color: var(--ink);
  border: 1px solid #fff;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.88rem;
  padding: 1rem 1.2rem;
  border-radius: 999px;
}

.btn-wholesale:hover,
.btn-wholesale:focus-visible {
  background: transparent;
  color: #fff;
  border-color: #fff;
  box-shadow: none;
}

.form-success {
  margin: 0;
  padding: 0.85rem 1rem;
  border-radius: 0.7rem;
  background: rgba(168, 192, 212, 0.16);
  color: #dce7f0;
  font-size: 0.92rem;
}

.form-help {
  margin: 0;
  text-align: center;
  font-size: 0.86rem;
  color: rgba(242, 245, 248, 0.6);
}

.form-help a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.wholesale-retail {
  text-align: center;
  padding: clamp(3.5rem, 9vh, 5.5rem) var(--page-x);
  background:
    radial-gradient(700px 360px at 50% 0%, rgba(183, 204, 224, 0.22), transparent 60%),
    var(--foam);
}

.wholesale-retail h2 {
  margin: 0 0 0.7rem;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  letter-spacing: -0.02em;
}

.wholesale-retail p {
  margin: 0 auto 1.4rem;
  max-width: 40ch;
  color: var(--ink-soft);
}

@media (max-width: 980px) {
  .wholesale-hero-grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
    margin-bottom: 2rem;
  }

  .wholesale-hero-copy h1 {
    max-width: none;
  }

  .wholesale-hero-visual {
    min-height: 16rem;
    order: -1;
  }

  .wholesale-hero-float {
    display: none;
  }

  .wholesale-pillars {
    grid-template-columns: 1fr 1fr;
  }

  .wholesale-pillars li:nth-child(2) {
    border-right: 0;
    padding-right: 0;
  }

  .wholesale-pillars li:nth-child(1),
  .wholesale-pillars li:nth-child(2) {
    border-bottom: 1px solid rgba(36, 63, 85, 0.1);
    padding-bottom: 1.25rem;
  }

  .wholesale-apply-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .wholesale-pillars {
    grid-template-columns: 1fr;
  }

  .wholesale-pillars li {
    border-right: 0;
    border-bottom: 1px solid rgba(36, 63, 85, 0.1);
    padding: 1.15rem 0;
  }

  .wholesale-pillars li:last-child {
    border-bottom: 0;
  }

  .form-row,
  .form-row-3 {
    grid-template-columns: 1fr;
  }

  .welcome-close {
    top: 0.55rem;
    right: 0.55rem;
  }
}

.nav a[aria-current="page"] {
  color: var(--ink);
}

.nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.page-inner {
  background: #f5f7f9;
}

.page-inner .site-header {
  background: #fff;
  border-bottom-color: rgba(13, 18, 24, 0.08);
}

.inner-hero {
  padding: calc(var(--header-h) + 3.2rem) var(--page-x) 2rem;
  width: min(var(--content-max), calc(100% - 2 * var(--page-x)));
  max-width: var(--content-max);
  margin: 0 auto;
  box-sizing: border-box;
}

.inner-hero h1 {
  margin: 0 0 0.9rem;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  letter-spacing: -0.03em;
  line-height: 1.05;
}

.inner-lede {
  margin: 0;
  max-width: 48ch;
  color: var(--ink-soft);
  font-size: 1.08rem;
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  width: min(var(--content-max), calc(100% - 2 * var(--page-x)));
  max-width: var(--content-max);
  margin: 0 auto 2.5rem;
  padding: 0;
}

.support-grid article {
  background: #fff;
  border-radius: 1rem;
  padding: 1.4rem 1.25rem;
  border: 1px solid rgba(13, 18, 24, 0.06);
  box-shadow: 0 12px 36px rgba(20, 40, 60, 0.05);
}

.support-grid h3 {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
}

.support-grid p {
  margin: 0 0 0.9rem;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.support-grid a {
  font-weight: 600;
  color: var(--steel-deep);
  border-bottom: 1px solid rgba(61, 92, 120, 0.35);
}

.contact-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
  gap: clamp(2rem, 4vw, 3rem);
  width: min(var(--content-max), calc(100% - 2 * var(--page-x)));
  max-width: var(--content-max);
  margin: 0 auto 2.5rem;
  padding: clamp(2rem, 4vw, 2.75rem);
  background: linear-gradient(165deg, #18232e 0%, #1f2d3a 50%, #162029 100%);
  color: #f2f5f8;
  border-radius: 1.5rem;
  box-sizing: border-box;
}

.page-inner .contact-split {
  margin-left: auto;
  margin-right: auto;
}

.contact-split-copy {
  display: flex;
  flex-direction: column;
  gap: 0;
  min-width: 0;
}

.contact-split .eyebrow {
  color: var(--sky);
}

.contact-split-copy h2 {
  margin: 0 0 0.9rem;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.2vw, 2.5rem);
  letter-spacing: -0.02em;
}

.contact-split-copy > p {
  margin: 0 0 1.2rem;
  color: rgba(242, 245, 248, 0.72);
  max-width: 38ch;
}

.contact-split-copy .wholesale-notes {
  margin: 0 0 1.4rem;
  padding: 0;
}

.contact-split-copy .wholesale-support-card {
  margin-top: auto;
  width: 100%;
  box-sizing: border-box;
}

.contact-form {
  display: grid;
  gap: 0.9rem;
  min-width: 0;
  align-content: start;
}

.contact-form label {
  display: grid;
  gap: 0.4rem;
  font-size: 0.86rem;
  color: rgba(242, 245, 248, 0.78);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 0.8rem 0.9rem;
  border-radius: 0.55rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(8, 12, 16, 0.35);
  color: #fff;
  outline: none;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--sky);
  box-shadow: 0 0 0 3px rgba(168, 192, 212, 0.18);
}

.contact-form .btn-primary {
  background: #fff;
  color: var(--ink);
  border-color: #fff;
}

.contact-form .btn-primary:hover,
.contact-form .btn-primary:focus-visible {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}

.contact-form .form-help {
  color: rgba(242, 245, 248, 0.6);
}

.contact-form .form-help a {
  color: #fff;
}

.about-mission {
  padding: 0;
  background: var(--white);
}

.about-mission-inner {
  max-width: 720px;
  margin: 0 auto;
  background: #fff;
  border-radius: 1.25rem;
  padding: clamp(1.6rem, 4vw, 2.4rem);
  border: 1px solid rgba(13, 18, 24, 0.06);
}

.about-mission-inner h2 {
  margin: 0 0 0.9rem;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.1rem);
}

.about-mission-inner p {
  margin: 0 0 0.9rem;
  color: var(--ink-soft);
}

.about-mission-inner p:last-child {
  margin-bottom: 0;
}

/* About page ? editorial story + mission */
.about-story {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding:
    calc(var(--header-h) + clamp(2rem, 5vh, 3.25rem))
    0
    clamp(2.5rem, 6vh, 4rem);
  background: var(--paper);
}

.about-story-atmosphere {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(900px 560px at 82% 40%, rgba(107, 143, 173, 0.24), transparent 60%),
    radial-gradient(640px 420px at 12% 75%, rgba(183, 204, 224, 0.18), transparent 58%),
    linear-gradient(160deg, #e7eef5 0%, #f5f8fb 42%, #eaf0f5 100%);
}

.about-story-grid {
  position: relative;
  z-index: 1;
  width: min(1120px, calc(100% - 2 * var(--page-x)));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: center;
}

.about-story-copy .eyebrow {
  margin: 0 0 0.85rem;
}

.about-story-copy h1 {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5.4vw, 4rem);
  font-weight: 650;
  letter-spacing: var(--tracking-display);
  line-height: 1.05;
  max-width: 10ch;
  color: var(--ink);
  text-wrap: balance;
}

.about-story-lede {
  margin: 0 0 1.75rem;
  max-width: 34ch;
  color: var(--ink-soft);
  font-size: clamp(1.05rem, 1.5vw, 1.18rem);
  line-height: 1.6;
}

.about-story-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.about-story-visual {
  position: relative;
  min-height: min(58vh, 28rem);
  display: grid;
  place-items: center;
}

.about-story-glow {
  position: absolute;
  left: 50%;
  top: 48%;
  width: min(92%, 28rem);
  height: min(92%, 28rem);
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.95) 0%, rgba(183, 204, 224, 0.4) 34%, transparent 70%);
  filter: blur(4px);
  pointer-events: none;
}

.about-story-stage {
  position: relative;
  z-index: 1;
  margin: 0;
  width: min(100%, 26rem);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
}

.about-story-stage > img:first-child {
  width: 78%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 28px 48px rgba(16, 30, 48, 0.18));
}

.about-story-float {
  position: absolute;
  width: 38%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 16px 28px rgba(16, 30, 48, 0.16));
  opacity: 0.96;
}

.about-story-float--a {
  left: -4%;
  bottom: 10%;
  transform: rotate(-8deg);
}

.about-story-float--b {
  right: -2%;
  top: 8%;
  width: 34%;
  transform: rotate(7deg);
}

.about-mission-shell {
  width: min(1120px, calc(100% - 2 * var(--page-x)));
  margin: 0 auto;
  padding: clamp(3rem, 8vh, 5rem) 0;
}

.about-mission-shell > .eyebrow {
  margin: 0 0 1.25rem;
  color: var(--steel-deep);
}

.about-mission-split {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: start;
  padding-bottom: clamp(2rem, 4vh, 2.75rem);
  border-bottom: 1px solid var(--line);
}

.about-mission-split h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 3.2vw, 2.45rem);
  font-weight: 650;
  letter-spacing: var(--tracking-tight);
  line-height: 1.18;
  color: var(--ink);
  max-width: 16ch;
  text-wrap: balance;
}

.about-mission-copy {
  display: grid;
  gap: 1rem;
  padding-top: 0.15rem;
}

.about-mission-copy p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 1.02rem;
  line-height: 1.65;
  max-width: 42ch;
}

.about-mission-copy .btn-link {
  justify-self: start;
  margin-top: 0.35rem;
  color: var(--ink);
}

.about-mission-pillars {
  list-style: none;
  margin: clamp(1.75rem, 3.5vh, 2.5rem) 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.25rem, 3vw, 2rem);
}

.about-mission-pillars li {
  display: grid;
  gap: 0.45rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line-strong);
}

.about-mission-pillars strong {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 650;
  letter-spacing: -0.015em;
  color: var(--ink);
}

.about-mission-pillars span {
  color: var(--ink-soft);
  font-size: 0.92rem;
  line-height: 1.55;
}

@media (max-width: 900px) {
  .about-story-grid,
  .about-mission-split {
    grid-template-columns: 1fr;
  }

  .about-story-visual {
    order: -1;
    min-height: 18rem;
  }

  .about-story-stage {
    width: min(100%, 20rem);
  }

  .about-story-copy h1 {
    max-width: 12ch;
  }

  .about-mission-split h2 {
    max-width: none;
  }

  .about-mission-pillars {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  max-width: var(--content-max);
  margin: 0 auto;
  padding: clamp(2.5rem, 7vh, 4rem) var(--page-x);
}

.values-grid article {
  background: #fff;
  border-radius: 1rem;
  padding: 1.3rem 1.15rem;
  border: 1px solid rgba(13, 18, 24, 0.06);
}

.values-grid h3 {
  margin: 0 0 0.45rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
}

.values-grid p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.about-contact-card {
  max-width: 900px;
  margin: 0 auto 2rem;
  padding: clamp(1.6rem, 4vw, 2.2rem);
  border-radius: 1.25rem;
  background: linear-gradient(165deg, #18232e, #243544);
  color: #f2f5f8;
}

.about-contact-card h2 {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: 1.8rem;
}

.about-contact-card > div > p {
  margin: 0 0 1.2rem;
  color: rgba(242, 245, 248, 0.7);
}

.about-contact-list {
  display: grid;
  gap: 0.85rem;
  margin: 0 0 1.3rem;
}

.about-contact-list dt {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sky);
}

.about-contact-list dd {
  margin: 0.2rem 0 0;
}

.about-contact-list a {
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
}

.btn-ghost.light {
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.btn-ghost.light:hover,
.btn-ghost.light:focus-visible {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.5);
}

.shop-page-grid {
  padding-top: 0.25rem;
  padding-bottom: 3rem;
}

.collection-intro {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  margin: 0 0 0.5rem;
  padding: calc(var(--header-h) + 2.75rem) clamp(1.15rem, 4vw, 3rem) 3.25rem;
  text-align: center;
  background:
    radial-gradient(720px 280px at 50% 0%, rgba(183, 204, 224, 0.28), transparent 70%),
    radial-gradient(520px 240px at 12% 80%, rgba(228, 224, 240, 0.22), transparent 65%),
    radial-gradient(480px 220px at 88% 70%, rgba(240, 232, 239, 0.2), transparent 60%),
    linear-gradient(180deg, #eef2f6 0%, #f5f7f9 55%, #f5f7f9 100%);
  border-bottom: 1px solid rgba(13, 18, 24, 0.05);
}

.collection-intro-glow {
  position: absolute;
  inset: auto 50% -20% auto;
  width: min(70vw, 520px);
  height: min(70vw, 520px);
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.7), transparent 68%);
  filter: blur(10px);
  pointer-events: none;
  z-index: 0;
}

.collection-intro-inner {
  position: relative;
  z-index: 1;
  width: min(720px, 100%);
  margin: 0 auto;
}

.collection-intro .page-breadcrumb {
  position: relative;
  z-index: 1;
  width: min(1100px, 100%);
  margin: 0 auto 2.25rem;
  justify-content: flex-start;
  text-align: left;
}

.collection-eyebrow {
  margin: 0 0 0.85rem;
  color: var(--steel-deep);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.collection-intro h1 {
  margin: 0 0 1.15rem;
  font-family: var(--font-display);
  font-size: clamp(2rem, 5.5vw, 3.35rem);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.08;
  color: var(--ink);
  text-wrap: balance;
}

.collection-rule {
  display: block;
  width: 3rem;
  height: 1px;
  margin: 0 auto 1.35rem;
  background: linear-gradient(90deg, transparent, rgba(61, 92, 120, 0.55), transparent);
}

.collection-intro-copy {
  margin: 0 auto;
  max-width: 44ch;
  color: var(--ink-soft);
  font-size: clamp(0.98rem, 1.5vw, 1.08rem);
  line-height: 1.7;
  font-weight: 400;
  text-wrap: pretty;
}

.page-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  color: rgba(90, 101, 116, 0.9);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.page-breadcrumb a {
  color: rgba(90, 101, 116, 0.9);
  transition: color 0.25s var(--ease);
}

.page-breadcrumb a:hover,
.page-breadcrumb a:focus-visible {
  color: var(--ink);
}

.page-breadcrumb span:last-child {
  color: var(--steel-deep);
}

.shop-empty {
  grid-column: 1 / -1;
  margin: 0;
  padding: 2rem 1rem;
  text-align: center;
  color: var(--ink-soft);
}

.product-card.is-filtered-out {
  display: none;
}

@media (max-width: 1100px) {
  .nav {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }
}

@media (max-width: 980px) {
  .support-grid,
  .values-grid,
  .contact-split {
    grid-template-columns: 1fr;
  }
}

.policy-content {
  width: min(760px, calc(100% - 2 * var(--page-x)));
  margin: 0 auto 3rem;
  display: grid;
  gap: 1rem;
}

.policy-block {
  background: #fff;
  border: 1px solid rgba(13, 18, 24, 0.06);
  border-radius: 1rem;
  padding: 1.25rem 1.3rem;
}

.policy-block h2 {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: -0.01em;
}

.policy-block p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.98rem;
}

.policy-block a {
  color: var(--steel-deep);
  border-bottom: 1px solid rgba(61, 92, 120, 0.35);
}

/* ?? Product detail pages (Neova-inspired structure, Damaris branding) ?? */
.page-product .pdp {
  width: min(1180px, calc(100% - 2 * clamp(1.15rem, 4vw, 3rem)));
  margin: 0 auto;
  padding: calc(var(--header-h) + 1.25rem) 0 2.5rem;
}

.pdp-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 1.35rem;
  color: var(--ink-soft);
  font-size: 0.88rem;
}

.pdp-breadcrumb a {
  color: var(--steel-deep);
}

.pdp-breadcrumb a:hover,
.pdp-breadcrumb a:focus-visible {
  text-decoration: underline;
  text-underline-offset: 0.12em;
}

.pdp-top {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: start;
}

.pdp-gallery {
  position: sticky;
  top: calc(var(--header-h) + 1rem);
}

.pdp-stage {
  position: relative;
  border-radius: 0.2rem;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(13, 18, 24, 0.08);
  aspect-ratio: 1;
  cursor: pointer;
}

.pdp-track {
  display: flex;
  width: 100%;
  height: 100%;
  transform: translate3d(0, 0, 0);
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.pdp-slide {
  position: relative;
  flex: 0 0 100%;
  width: 100%;
  min-width: 100%;
  max-width: 100%;
  height: 100%;
  margin: 0;
  display: grid;
  place-items: center;
  padding: clamp(1rem, 3.5vw, 2rem);
  box-sizing: border-box;
}

.pdp-slide img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  display: block;
  object-fit: contain;
  object-position: center;
  user-select: none;
  -webkit-user-drag: none;
}

.pdp-howto-media img,
.pdp-regimen-media img {
  display: block;
  object-fit: contain;
  object-position: center;
}

.pdp-thumbs {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 0.55rem;
  margin-top: 0.75rem;
}

.pdp-thumb {
  width: 4.75rem;
  height: 4.75rem;
  border: 1px solid transparent;
  border-radius: 0.15rem;
  overflow: hidden;
  padding: 0.3rem;
  background: #fff;
  cursor: pointer;
  transition: border-color 0.2s var(--ease);
}

.pdp-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}

.pdp-thumb.is-active,
.pdp-thumb:hover,
.pdp-thumb:focus-visible {
  border-color: #1a1a1a;
  transform: none;
  box-shadow: none;
}

.pdp-gallery {
  position: sticky;
  top: calc(var(--header-h) + 1rem);
}

.pdp-zoom-hint {
  display: none !important;
}

.pdp-lightbox {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-items: center;
  padding: 1.25rem;
}

.pdp-lightbox[hidden] {
  display: none !important;
}

.pdp-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 14, 20, 0.78);
  backdrop-filter: blur(8px);
}

.pdp-lightbox-panel {
  position: relative;
  z-index: 1;
  width: min(920px, 100%);
  display: grid;
  gap: 1rem;
  justify-items: center;
}

.pdp-lightbox-viewport {
  width: 100%;
  max-width: min(94vw, 900px);
  height: min(82vh, 860px);
  border-radius: 0.2rem;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
  cursor: default;
}

.pdp-lightbox-track {
  display: flex;
  width: 100%;
  height: 100%;
  transform: translate3d(0, 0, 0);
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.pdp-lightbox-slide {
  flex: 0 0 100%;
  width: 100%;
  min-width: 100%;
  max-width: 100%;
  height: 100%;
  margin: 0;
  display: grid;
  place-items: center;
  padding: clamp(0.75rem, 3vw, 1.75rem);
  box-sizing: border-box;
}

.pdp-lightbox-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  user-select: none;
  -webkit-user-drag: none;
}

.pdp-lightbox-close,
.pdp-lightbox-nav {
  border: 0;
  cursor: pointer;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  transition: background 0.25s var(--ease), transform 0.25s var(--ease);
}

.pdp-lightbox-close {
  position: absolute;
  top: -0.25rem;
  right: 0;
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 999px;
  font-size: 1.5rem;
  line-height: 1;
}

.pdp-lightbox-nav {
  position: absolute;
  top: 42%;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 999px;
  font-size: 1.6rem;
  line-height: 1;
  z-index: 2;
}

.pdp-lightbox-nav.is-prev {
  left: -0.35rem;
}

.pdp-lightbox-nav.is-next {
  right: -0.35rem;
}

.pdp-lightbox-close:hover,
.pdp-lightbox-close:focus-visible,
.pdp-lightbox-nav:hover,
.pdp-lightbox-nav:focus-visible {
  background: rgba(255, 255, 255, 0.22);
  transform: translateY(-1px);
}

.pdp-lightbox-thumbs,
.pdp-lightbox-thumb {
  display: none !important;
}

body.has-lightbox {
  overflow: hidden;
}

@media (max-width: 760px) {
  .pdp-thumb {
    width: 4.5rem;
    height: 4.5rem;
  }

  .pdp-lightbox-nav.is-prev {
    left: 0.35rem;
  }

  .pdp-lightbox-nav.is-next {
    right: 0.35rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .pdp-track,
  .pdp-lightbox-track,
  .pdp-zoom-hint,
  .pdp-slide img,
  .pdp-lightbox-slide img {
    transition: none !important;
  }
}

.pdp-buybox .eyebrow {
  margin-bottom: 0.55rem;
}

.pdp-buybox h1 {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.6vw, 3.35rem);
  letter-spacing: -0.03em;
  line-height: 1.05;
}

.pdp-price {
  display: flex;
  align-items: baseline;
  gap: 0.65rem;
  margin-bottom: 0.75rem;
}

.pdp-price strong {
  font-family: var(--font-display);
  font-size: 1.7rem;
  letter-spacing: -0.02em;
}

.pdp-price s {
  color: var(--ink-soft);
  font-size: 1rem;
}

.pdp-subtitle {
  margin: 0 0 1.25rem;
  color: var(--ink-soft);
  font-size: 0.98rem;
  line-height: 1.5;
  max-width: 38ch;
}

.pdp-qty-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.15rem;
}

.pdp-qty {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(13, 18, 24, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  overflow: hidden;
  min-height: 3rem;
}

.pdp-qty button {
  width: 2.75rem;
  height: 3rem;
  border: 0;
  background: transparent;
  cursor: pointer;
  color: var(--ink);
  font-size: 1.15rem;
  line-height: 1;
}

.pdp-qty input {
  width: 2.75rem;
  border: 0;
  background: transparent;
  text-align: center;
  font-weight: 600;
  -moz-appearance: textfield;
}

.pdp-qty input::-webkit-outer-spin-button,
.pdp-qty input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.pdp-add {
  flex: 1 1 12rem;
  min-height: 3rem;
}

.pdp-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  list-style: none;
  margin: 0 0 1.25rem;
  padding: 0;
}

.pdp-tags li {
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(13, 18, 24, 0.1);
  background: rgba(255, 255, 255, 0.72);
  color: var(--steel-deep);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pdp-lead {
  margin: 0 0 1.5rem;
  color: var(--ink-soft);
  line-height: 1.7;
  max-width: 42ch;
}

.pdp-block {
  padding: 1.15rem 0;
  border-top: 1px solid rgba(13, 18, 24, 0.08);
}

.pdp-block h2 {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: -0.01em;
}

.pdp-block > p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.6;
}

.pdp-bullets {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--ink-soft);
  line-height: 1.55;
}

.pdp-bullets li + li {
  margin-top: 0.45rem;
}

.pdp-ingredients {
  display: grid;
  gap: 0.9rem;
}

.pdp-ingredient h3 {
  margin: 0 0 0.3rem;
  font-size: 0.95rem;
}

.pdp-ingredient p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.94rem;
  line-height: 1.55;
}

.pdp-howto {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.85rem;
}

.pdp-howto li {
  display: grid;
  grid-template-columns: 2rem 1fr;
  gap: 0.75rem;
  align-items: start;
}

.pdp-howto li span {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--ink);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 600;
}

.pdp-howto li p {
  margin: 0.2rem 0 0;
  color: var(--ink-soft);
  line-height: 1.55;
}

.pdp-howto.compact li span {
  width: 1.6rem;
  height: 1.6rem;
  font-size: 0.75rem;
}

.pdp-band,
.pdp-howto-section,
.pdp-regimen,
.pdp-faq-section {
  padding: 0 0 3.5rem;
}

.pdp-band-inner,
.pdp-howto-grid,
.pdp-regimen-head,
.pdp-regimen-grid,
.pdp-faq-inner,
.pdp-assurance {
  width: min(1180px, calc(100% - 2 * clamp(1.15rem, 4vw, 3rem)));
  margin: 0 auto;
}

.pdp-band-inner {
  padding: clamp(1.75rem, 4vw, 2.5rem);
  border-radius: 1.4rem;
  background:
    radial-gradient(500px 240px at 10% 0%, rgba(183, 204, 224, 0.28), transparent 70%),
    rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(13, 18, 24, 0.06);
}

.pdp-band-inner h2,
.pdp-howto-grid h2,
.pdp-regimen-head h2,
.pdp-faq-inner h2 {
  margin: 0 0 1.25rem;
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.5vw, 2.5rem);
  letter-spacing: -0.03em;
  max-width: 18ch;
}

.pdp-benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.pdp-benefit-card {
  padding: 1.1rem 1rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(13, 18, 24, 0.06);
}

.pdp-benefit-card h3 {
  margin: 0 0 0.4rem;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.pdp-benefit-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.92rem;
  line-height: 1.5;
}

.pdp-howto-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(1.4rem, 4vw, 3rem);
  align-items: center;
}

.pdp-howto-media {
  margin: 0;
  border-radius: 1.35rem;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  background:
    radial-gradient(circle at 50% 35%, rgba(255, 255, 255, 0.98), transparent 55%),
    linear-gradient(165deg, #e8eef4 0%, #f7fafc 48%, #eef3f7 100%);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  padding: clamp(1.5rem, 5vw, 2.75rem);
}

.pdp-howto-media img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
}

.pdp-regimen-head {
  margin-bottom: 1.25rem;
}

.pdp-regimen-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.pdp-regimen-card {
  border-radius: 1.15rem;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(13, 18, 24, 0.06);
  box-shadow: 0 10px 30px rgba(20, 40, 60, 0.04);
  display: flex;
  flex-direction: column;
}

.pdp-regimen-step {
  margin: 0;
  padding: 0.75rem 1rem 0;
  color: var(--steel);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.pdp-regimen-media {
  display: grid;
  place-items: center;
  aspect-ratio: 1;
  padding: 1rem;
  background:
    radial-gradient(circle at 50% 30%, rgba(255, 255, 255, 0.95), transparent 60%),
    linear-gradient(160deg, #e8eef4, #f7fafc);
}

.pdp-regimen-media img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
}

.pdp-regimen-body {
  padding: 0.9rem 1rem 1.1rem;
  display: grid;
  gap: 0.45rem;
}

.pdp-regimen-body h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.15rem;
}

.pdp-regimen-body > p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.pdp-regimen-price {
  display: flex;
  gap: 0.5rem;
  align-items: baseline;
}

.pdp-regimen-price s {
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.pdp-regimen-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  margin-top: 0.35rem;
}

.pdp-faq-inner {
  padding: clamp(1.5rem, 4vw, 2.25rem);
  border-radius: 1.4rem;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(13, 18, 24, 0.06);
}

.pdp-faq-list {
  display: grid;
  gap: 0.65rem;
}

.pdp-faq {
  border: 1px solid rgba(13, 18, 24, 0.08);
  border-radius: 0.9rem;
  background: rgba(255, 255, 255, 0.75);
  padding: 0.15rem 1rem;
}

.pdp-faq summary {
  cursor: pointer;
  list-style: none;
  padding: 0.95rem 0;
  font-weight: 600;
}

.pdp-faq summary::-webkit-details-marker {
  display: none;
}

.pdp-faq summary::after {
  content: "+";
  float: right;
  color: var(--steel-deep);
  font-weight: 500;
}

.pdp-faq[open] summary::after {
  content: "?";
}

.pdp-faq p {
  margin: 0 0 1rem;
  color: var(--ink-soft);
  line-height: 1.6;
  max-width: 62ch;
}

.pdp-assurance {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  padding-bottom: 4rem;
}

.pdp-assurance article {
  padding: 1.2rem 1.15rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(13, 18, 24, 0.06);
}

.pdp-assurance h3 {
  margin: 0 0 0.4rem;
  font-size: 0.95rem;
}

.pdp-assurance p {
  margin: 0 0 0.65rem;
  color: var(--ink-soft);
  font-size: 0.92rem;
  line-height: 1.5;
}

.pdp-assurance a {
  color: var(--steel-deep);
  font-size: 0.9rem;
  text-decoration: underline;
  text-underline-offset: 0.12em;
}

@media (max-width: 980px) {
  .pdp-gallery {
    position: static;
  }

  .pdp-top,
  .pdp-howto-grid,
  .pdp-benefit-grid,
  .pdp-regimen-grid,
  .pdp-assurance {
    grid-template-columns: 1fr;
  }

  .pdp-benefit-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .pdp-benefit-grid {
    grid-template-columns: 1fr;
  }

  .pdp-qty-row {
    flex-direction: column;
  }

  .pdp-add {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .pdp-slide,
  .pdp-thumb {
    transition: none;
  }
}

/* Sticky ATC bar ? Neova-style quick purchase strip */
.pdp-sticky-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 70;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(13, 18, 24, 0.08);
  box-shadow: 0 10px 28px rgba(13, 18, 24, 0.06);
  backdrop-filter: blur(14px) saturate(1.15);
  transform: translateY(-110%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.35s var(--ease), opacity 0.35s var(--ease);
}

.pdp-sticky-bar.is-visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.pdp-sticky-inner {
  width: min(1180px, calc(100% - 2 * clamp(1rem, 4vw, 3rem)));
  margin: 0 auto;
  min-height: 4.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.65rem 0;
}

.pdp-sticky-product {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  min-width: 0;
}

.pdp-sticky-product img {
  width: 3.25rem;
  height: 3.25rem;
  object-fit: contain;
  object-position: center;
  border-radius: 0.55rem;
  padding: 0.2rem;
  background: linear-gradient(160deg, #e8eef4, #f7fafc);
  flex-shrink: 0;
}

.pdp-sticky-copy {
  min-width: 0;
}

.pdp-sticky-name {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(0.82rem, 2.2vw, 0.95rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: min(48vw, 28rem);
}

.pdp-sticky-price {
  margin: 0.15rem 0 0;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.pdp-sticky-add {
  flex-shrink: 0;
  min-height: 2.75rem;
  padding: 0.75rem 1.35rem;
  border-radius: 0.35rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.82rem;
  font-weight: 600;
}

.has-pdp-sticky .site-header {
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.35s var(--ease), opacity 0.35s var(--ease);
}

@media (max-width: 640px) {
  .pdp-sticky-inner {
    gap: 0.65rem;
  }

  .pdp-sticky-product img {
    width: 2.6rem;
    height: 2.6rem;
  }

  .pdp-sticky-name {
    max-width: 42vw;
    letter-spacing: 0.04em;
  }

  .pdp-sticky-add {
    padding: 0.7rem 0.9rem;
    font-size: 0.72rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .pdp-sticky-bar,
  .has-pdp-sticky .site-header {
    transition: none;
  }
}

/* =============================================================================
   HOMEPAGE JOURNEY ? trust strip, bestsellers, goals, formula, lifestyle,
   quiz, collection, standard, reviews, journal
   ============================================================================= */

.page-home .home-section {
  padding-block: var(--section-y);
  position: relative;
}

.page-home .section-head.light .eyebrow,
.page-home .section-head.light h2,
.page-home .section-head.light p {
  color: var(--foam);
}

.page-home .section-head.light p {
  color: rgba(250, 252, 253, 0.72);
}

.page-home .spotlight-visual img {
  object-fit: contain;
  padding: 8%;
  background: transparent;
}

.page-home .spotlight-price {
  margin: 0 0 1.25rem;
  font-size: var(--text-xl);
}

.page-home .spotlight-price strong {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: var(--tracking-tight);
}

/* ?? Trust strip ?? */
.trust-strip {
  overflow: hidden;
  border-block: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(245, 248, 251, 0.96), rgba(228, 238, 246, 0.55), rgba(245, 248, 251, 0.96));
  padding-block: 1.05rem;
}

.trust-strip-track {
  display: flex;
  width: max-content;
  gap: clamp(2.5rem, 5vw, 4.5rem);
  padding-inline: var(--page-x);
  animation: trust-marquee 42s linear infinite;
}

.trust-strip-track span {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--navy);
  white-space: nowrap;
  opacity: 0.88;
}

@keyframes trust-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .trust-strip-track {
    animation: none;
    flex-wrap: wrap;
    width: min(100%, var(--content-max));
    margin-inline: auto;
    justify-content: center;
    row-gap: 0.65rem;
  }

  .trust-strip-track span[aria-hidden="true"] {
    display: none;
  }
}

/* ?? Home product cards ?? */
.home-card {
  flex: 0 0 min(78vw, 280px);
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-xs);
  transition: transform var(--duration) var(--ease), box-shadow var(--duration) var(--ease), border-color var(--duration) var(--ease);
}

.home-card:hover,
.home-card:focus-within {
  transform: translateY(var(--lift));
  box-shadow: var(--shadow-hover);
  border-color: var(--line-strong);
}

.home-card-media {
  position: relative;
  display: block;
  aspect-ratio: 1;
  background: var(--grad-media);
  overflow: hidden;
}

.home-card-media-wrap {
  position: relative;
}

.product-quick-add {
  appearance: none;
  position: absolute;
  left: 50%;
  bottom: 0.85rem;
  z-index: 3;
  transform: translate(-50%, 0.4rem);
  width: calc(100% - 1.5rem);
  max-width: 12.5rem;
  min-height: 2.55rem;
  margin: 0;
  padding: 0.7rem 1rem;
  border: 1px solid #0a0a0a;
  border-radius: 0.2rem;
  background: #0a0a0a;
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 650;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  box-shadow: 0 8px 24px rgba(10, 10, 10, 0.22);
  transition:
    opacity 0.28s var(--ease),
    visibility 0.28s var(--ease),
    transform 0.28s var(--ease),
    background 0.2s var(--ease),
    color 0.2s var(--ease),
    border-color 0.2s var(--ease),
    box-shadow 0.2s var(--ease);
}

.home-card:hover .product-quick-add,
.home-card:focus-within .product-quick-add,
.line-item:hover .product-quick-add,
.line-item:focus-within .product-quick-add {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.product-quick-add:hover,
.product-quick-add:focus-visible {
  background: #fff;
  color: #0a0a0a;
  border-color: #0a0a0a;
  box-shadow: 0 8px 22px rgba(10, 10, 10, 0.12);
}

@media (hover: none), (pointer: coarse) {
  .product-quick-add {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate(-50%, 0);
  }

  .home-card:hover .home-card-img.is-primary,
  .home-card:focus-within .home-card-img.is-primary {
    opacity: 1;
  }

  .home-card:hover .home-card-img.is-hover,
  .home-card:focus-within .home-card-img.is-hover {
    opacity: 0;
  }
}

.home-card-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  padding: 8%;
  transition: opacity var(--duration-slow) var(--ease), transform var(--duration-slow) var(--ease);
}

.home-card-img.is-hover {
  opacity: 0;
  transform: scale(1.04);
}

.home-card:hover .home-card-img.is-primary,
.home-card:focus-within .home-card-img.is-primary {
  opacity: 0;
}

.home-card:hover .home-card-img.is-hover,
.home-card:focus-within .home-card-img.is-hover {
  opacity: 1;
  transform: scale(1);
}

.home-card-body {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  padding: 1.15rem 1.2rem 1.3rem;
  flex: 1;
}

.home-card-kicker {
  margin: 0;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--steel);
  font-weight: 600;
}

.home-card-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: var(--tracking-tight);
  line-height: var(--leading-snug);
}

.home-card-title a {
  color: inherit;
  text-decoration: none;
}

.home-card-title a:hover,
.home-card-title a:focus-visible {
  color: var(--steel-deep);
}

.home-card-benefit {
  margin: 0;
  color: var(--ink-soft);
  font-size: var(--text-sm);
  line-height: var(--leading-body);
}

.home-card-price {
  display: flex;
  align-items: baseline;
  gap: 0.45rem;
  margin-top: 0.35rem;
  font-variant-numeric: tabular-nums;
}

.home-card-price strong {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.2;
  font-variant-numeric: tabular-nums;
  min-width: 4.75ch;
}

.home-card-price s {
  color: var(--ink-muted);
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 400;
  line-height: 1.2;
  font-variant-numeric: tabular-nums;
  text-decoration: line-through;
  text-decoration-thickness: 1px;
}

.home-card-actions {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-top: auto;
  padding-top: 0.85rem;
}

.home-card-actions .btn {
  min-height: 2.6rem;
  padding-inline: 1rem;
  font-size: 0.82rem;
}

/* ?? Bestsellers ?? */
.bestsellers {
  background:
    radial-gradient(700px 360px at 8% 0%, rgba(183, 204, 224, 0.22), transparent 60%),
    linear-gradient(180deg, var(--foam), var(--paper));
}

.bestsellers-shell {
  position: relative;
  margin-top: var(--stack-gap);
}

.bestsellers-viewport {
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  margin-inline: calc(var(--page-x) * -0.15);
  padding-inline: calc(var(--page-x) * 0.15);
}

.bestsellers-viewport::-webkit-scrollbar {
  display: none;
}

.bestsellers-track {
  display: flex;
  gap: 1.15rem;
  width: max-content;
  padding-bottom: 0.35rem;
}

/* ?? Concerns (Neova-style full photo grid) ?? */
.concerns {
  background: var(--white);
  padding-block: clamp(3rem, 7vh, 5rem);
}

.concerns-head {
  width: min(var(--content-max), calc(100% - 2 * var(--page-x)));
  margin: 0 auto 2.25rem;
  text-align: center;
}

.concerns-head .eyebrow {
  margin: 0 0 0.55rem;
  color: var(--ink);
  font-size: 0.7rem;
  font-weight: 650;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.concerns-head h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 3.2vw, 2.15rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
  line-height: 1.15;
}

.concerns-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  column-gap: 0.2rem;
  row-gap: 0;
  width: min(1200px, calc(100% - 2 * var(--page-x)));
  margin: 0 auto;
}

.concern-tile {
  display: grid;
  grid-template-rows: auto auto;
  align-content: start;
  text-decoration: none;
  color: inherit;
  min-width: 0;
}

.concern-tile-media {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  background: #e8eef4;
  border-radius: 0;
}

.concern-tile-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  padding: 0;
  display: block;
  transition: transform 0.65s var(--ease);
}

.concern-tile:hover .concern-tile-media img,
.concern-tile:focus-visible .concern-tile-media img {
  transform: scale(1.04);
}

.concern-tile-label {
  display: block;
  padding: 0.85rem 0.5rem 1.35rem;
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 650;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-align: center;
  color: var(--ink);
  line-height: 1.35;
  transition: color var(--duration) var(--ease);
}

.concern-tile:hover .concern-tile-label,
.concern-tile:focus-visible .concern-tile-label {
  color: var(--steel-deep);
}

@media (max-width: 720px) {
  .concerns-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 0.15rem;
    width: calc(100% - 1.25rem);
  }

  .concern-tile-label {
    font-size: 0.6rem;
    letter-spacing: 0.12em;
    padding: 0.7rem 0.35rem 1.1rem;
  }
}

@media (max-width: 420px) {
  .concerns-grid {
    width: calc(100% - 0.75rem);
  }

  .concern-tile-label {
    font-size: 0.56rem;
    letter-spacing: 0.08em;
  }
}

/* ?? Goals (legacy) ?? */
.goals {
  background: var(--white);
}

.goals-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.1rem;
  margin-top: var(--stack-gap);
}

.goal-card {
  position: relative;
  display: grid;
  grid-template-rows: 1fr auto;
  min-height: 15.5rem;
  padding: 1.35rem;
  border-radius: var(--radius-card);
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  border: 1px solid var(--line);
  transition: transform var(--duration) var(--ease), box-shadow var(--duration) var(--ease);
}

.goal-card:hover,
.goal-card:focus-visible {
  transform: translateY(var(--lift));
  box-shadow: var(--shadow-md);
}

.goal-visual {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.goal-card.tone-sky {
  background:
    radial-gradient(420px 220px at 88% 12%, rgba(255, 255, 255, 0.7), transparent 55%),
    linear-gradient(155deg, #d7e6f2 0%, #eef4f9 55%, #f7fafc 100%);
}

.goal-card.tone-mist {
  background:
    radial-gradient(380px 200px at 10% 80%, rgba(107, 143, 173, 0.18), transparent 55%),
    linear-gradient(160deg, #e8eef4 0%, #f4f8fb 100%);
}

.goal-card.tone-paper {
  background:
    radial-gradient(circle at 80% 20%, rgba(183, 204, 224, 0.35), transparent 45%),
    linear-gradient(165deg, #f0f3f6 0%, #fafcfd 100%);
}

.goal-card.tone-foam {
  background:
    radial-gradient(460px 240px at 70% 0%, rgba(36, 63, 85, 0.1), transparent 50%),
    linear-gradient(170deg, #eef3f7 0%, #ffffff 70%);
}

.goal-visual::before {
  content: "";
  position: absolute;
  width: 9rem;
  height: 9rem;
  border-radius: 50%;
  right: -1.5rem;
  top: -1.25rem;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.7), transparent 68%);
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.goal-visual::after {
  content: "";
  position: absolute;
  width: 4.5rem;
  height: 4.5rem;
  right: 2.4rem;
  top: 3.2rem;
  border-radius: 50%;
  border: 1px solid rgba(36, 63, 85, 0.12);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.45), transparent);
}

.goal-copy {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  margin-top: auto;
}

.goal-copy strong {
  font-family: var(--font-display);
  font-size: 1.25rem;
  letter-spacing: var(--tracking-tight);
  color: var(--ink);
}

.goal-copy em {
  font-style: normal;
  color: var(--ink-soft);
  font-size: var(--text-sm);
  line-height: var(--leading-body);
  max-width: 22rem;
}

.goal-copy .btn-link {
  margin-top: 0.55rem;
  align-self: flex-start;
}

/* ?? Formula technology ?? */
.formula {
  background:
    radial-gradient(760px 420px at 85% 10%, rgba(107, 143, 173, 0.22), transparent 55%),
    linear-gradient(165deg, #1a2c3d 0%, #243f55 48%, #1b2a38 100%);
  color: var(--foam);
}

.formula-shell {
  margin-top: var(--stack-gap);
}

.formula-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 1.5rem;
}

.formula-tab {
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(250, 252, 253, 0.82);
  border-radius: var(--radius-pill);
  padding: 0.6rem 1rem;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--duration-fast) var(--ease), border-color var(--duration-fast) var(--ease), color var(--duration-fast) var(--ease);
}

.formula-tab:hover,
.formula-tab:focus-visible {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.formula-tab.is-active {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}

.formula-panel {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
  padding: clamp(1.25rem, 3vw, 2rem);
  border-radius: var(--radius-panel);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
}

.formula-copy h3 {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  letter-spacing: var(--tracking-tight);
}

.formula-copy > p {
  margin: 0 0 1.25rem;
  color: rgba(250, 252, 253, 0.78);
  max-width: 34rem;
  line-height: var(--leading-body);
}

.formula-related {
  display: grid;
  gap: 0.65rem;
  margin-bottom: 1.25rem;
}

.formula-related-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.55rem 0.7rem;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  text-decoration: none;
  color: inherit;
  transition: background var(--duration-fast) var(--ease);
}

.formula-related-item:hover,
.formula-related-item:focus-visible {
  background: rgba(255, 255, 255, 0.12);
}

.formula-related-item img {
  width: 3.25rem;
  height: 3.25rem;
  object-fit: contain;
  border-radius: 0.5rem;
  background: rgba(255, 255, 255, 0.08);
}

.formula-related-item strong {
  display: block;
  font-size: 0.92rem;
}

.formula-related-item em {
  font-style: normal;
  color: rgba(250, 252, 253, 0.65);
  font-size: 0.82rem;
}

.formula-copy .btn-link {
  color: var(--sky);
}

.formula-visual {
  margin: 0;
  aspect-ratio: 1;
  border-radius: var(--radius-card);
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 40%, rgba(255, 255, 255, 0.14), transparent 55%),
    linear-gradient(160deg, rgba(183, 204, 224, 0.18), rgba(11, 16, 22, 0.2));
  display: grid;
  place-items: center;
}

.formula-visual img {
  width: 78%;
  height: 78%;
  object-fit: contain;
  filter: drop-shadow(0 18px 28px rgba(0, 0, 0, 0.28));
}

/* ?? Lifestyle (photo-ready frames) ?? */
.lifestyle {
  padding-block: 0;
}

.lifestyle-band {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  min-height: clamp(28rem, 72vh, 40rem);
  background:
    linear-gradient(120deg, #152433 0%, #243f55 42%, #1c3346 100%);
  color: var(--foam);
  overflow: hidden;
}

.lifestyle-media {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  grid-template-rows: 1fr 0.72fr;
  gap: 0.85rem;
  padding: clamp(1.25rem, 3vw, 2.25rem);
  isolation: isolate;
}

.lifestyle-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(520px 360px at 30% 40%, rgba(107, 143, 173, 0.28), transparent 60%),
    radial-gradient(420px 280px at 90% 10%, rgba(183, 204, 224, 0.18), transparent 55%);
  z-index: 0;
  pointer-events: none;
}

.lifestyle-frame {
  position: relative;
  z-index: 1;
  margin: 0;
  border-radius: 1.1rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
}

.lifestyle-frame.is-primary {
  grid-row: 1 / 3;
  grid-column: 1;
}

.lifestyle-frame.is-secondary {
  grid-column: 2;
  grid-row: 1;
  align-self: stretch;
}

.lifestyle-frame img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  padding: 12%;
  display: block;
  transition: transform var(--duration-slow) var(--ease);
}

/* Drop-in photography: add .has-photo to frame(s) and set lifestyle image src */
.lifestyle-frame.has-photo img {
  object-fit: cover;
  padding: 0;
}

.lifestyle-accent {
  position: relative;
  z-index: 1;
  grid-column: 2;
  grid-row: 2;
  border-radius: 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.22), transparent 50%),
    linear-gradient(145deg, rgba(183, 204, 224, 0.28), rgba(36, 63, 85, 0.35));
  overflow: hidden;
}

.lifestyle-accent::after {
  content: "";
  position: absolute;
  inset: 18%;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: radial-gradient(circle at 40% 35%, rgba(255, 255, 255, 0.2), transparent 65%);
}

.lifestyle-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
  padding: clamp(2rem, 5vw, 4.5rem);
  background:
    linear-gradient(180deg, rgba(11, 16, 22, 0.18), rgba(11, 16, 22, 0.08));
  border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.lifestyle-copy .eyebrow {
  color: var(--sky);
}

.lifestyle-copy h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  letter-spacing: var(--tracking-display);
  line-height: var(--leading-tight);
  max-width: 12ch;
}

.lifestyle-copy > p {
  margin: 0;
  color: rgba(250, 252, 253, 0.78);
  max-width: 28rem;
  line-height: var(--leading-body);
}

.lifestyle-band:hover .lifestyle-frame:not(.has-photo) img {
  transform: translateY(-4px) scale(1.02);
}

/* ?? Quiz ?? */
.quiz {
  background:
    radial-gradient(720px 380px at 12% 0%, rgba(183, 204, 224, 0.2), transparent 58%),
    linear-gradient(180deg, #f7fafc 0%, var(--white) 100%);
}

.quiz-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.2fr);
  gap: clamp(1.75rem, 4vw, 3.25rem);
  align-items: start;
}

.quiz-intro {
  position: sticky;
  top: calc(var(--header-h) + 1rem);
  padding-top: 0.5rem;
}

.quiz-intro .eyebrow {
  margin: 0 0 0.7rem;
  color: var(--steel-deep);
}

.quiz-intro h2 {
  margin: 0 0 0.85rem;
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 650;
  letter-spacing: var(--tracking-display);
  line-height: 1.08;
  max-width: 11ch;
  color: var(--ink);
}

.quiz-intro > p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 1.02rem;
  line-height: 1.6;
  max-width: 30ch;
}

.quiz-shell {
  margin-top: 0;
  padding: clamp(1.35rem, 2.8vw, 1.85rem);
  border-radius: 0.85rem;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 14px 40px rgba(16, 30, 48, 0.05);
}

.quiz-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.75rem;
}

.quiz-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 0.85rem;
}

.quiz-steps li {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.68rem;
  font-weight: 650;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.quiz-steps li span {
  display: inline-grid;
  place-items: center;
  width: 1.3rem;
  height: 1.3rem;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  font-size: 0.62rem;
  letter-spacing: 0;
}

.quiz-steps li.is-active {
  color: var(--ink);
}

.quiz-steps li.is-active span {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}

.quiz-steps li.is-done {
  color: var(--steel-deep);
}

.quiz-steps li.is-done span {
  background: var(--mist);
  border-color: var(--steel);
  color: var(--steel-deep);
}

.quiz-progress {
  margin: 0;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-muted);
  font-weight: 650;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}

.quiz-meter {
  height: 2px;
  margin: 0 0 1.35rem;
  background: var(--line);
  border-radius: 999px;
  overflow: hidden;
}

.quiz-meter span {
  display: block;
  height: 100%;
  width: 33.333%;
  background: var(--ink);
  border-radius: inherit;
  transition: width 0.28s var(--ease);
}

.quiz-fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

.quiz-fieldset legend {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.2vw, 1.65rem);
  font-weight: 650;
  letter-spacing: var(--tracking-tight);
  line-height: 1.2;
  margin: 0 0 0.4rem;
  padding: 0;
  color: var(--ink);
}

.quiz-support {
  margin: 0 0 1.2rem;
  color: var(--ink-soft);
  font-size: 0.92rem;
  line-height: 1.5;
}

.quiz-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
}

.quiz-option {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 0.28rem;
  width: 100%;
  min-height: 5.1rem;
  text-align: left;
  padding: 1rem 1.05rem;
  border-radius: 0.45rem;
  border: 1px solid var(--line);
  background: #f7fafc;
  color: var(--ink);
  cursor: pointer;
  transition:
    border-color var(--duration-fast) var(--ease),
    background var(--duration-fast) var(--ease),
    transform var(--duration-fast) var(--ease),
    box-shadow var(--duration-fast) var(--ease);
}

.quiz-option strong {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 650;
  letter-spacing: -0.015em;
  line-height: 1.25;
}

.quiz-option em {
  font-style: normal;
  color: var(--ink-soft);
  font-size: 0.8rem;
  line-height: 1.4;
}

.quiz-option:hover,
.quiz-option:focus-visible {
  border-color: var(--steel);
  background: #fff;
  transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(16, 30, 48, 0.07);
}

.quiz-option.is-selected {
  border-color: var(--ink);
  background: var(--ink);
  color: #fff;
  box-shadow: none;
  transform: none;
}

.quiz-option.is-selected em {
  color: rgba(255, 255, 255, 0.7);
}

.quiz-options[data-count="3"] .quiz-option:last-child,
.quiz-options[data-count="5"] .quiz-option:last-child {
  grid-column: 1 / -1;
}

.quiz-back {
  appearance: none;
  margin: 1.1rem 0 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--ink-soft);
  font-size: 0.86rem;
  font-weight: 600;
  cursor: pointer;
}

.quiz-back:hover,
.quiz-back:focus-visible {
  color: var(--ink);
}

.quiz-result .eyebrow {
  margin: 0 0 0.55rem;
  color: var(--steel-deep);
}

.quiz-result h3 {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 1.85rem);
  letter-spacing: var(--tracking-tight);
  line-height: 1.15;
}

.quiz-disclaimer {
  margin: 0 0 1.35rem;
  color: var(--ink-soft);
  font-size: 0.86rem;
  line-height: 1.55;
  max-width: 40rem;
}

.quiz-picks {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 0.9rem;
  margin-bottom: 1.35rem;
}

.quiz-picks .home-card {
  flex: initial;
  width: 100%;
  max-width: none;
}

.quiz-result-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

@media (max-width: 900px) {
  .quiz-layout {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .quiz-intro {
    position: static;
  }

  .quiz-intro h2 {
    max-width: none;
  }
}

@media (max-width: 560px) {
  .quiz-options {
    grid-template-columns: 1fr;
  }

  .quiz-options[data-count="3"] .quiz-option:last-child,
  .quiz-options[data-count="5"] .quiz-option:last-child {
    grid-column: auto;
  }

  .quiz-option {
    min-height: 0;
    padding: 0.95rem 1rem;
  }

  .quiz-result-actions {
    flex-direction: column;
  }

  .quiz-result-actions .btn {
    width: 100%;
    justify-content: center;
  }
}

/* ?? Collection showcase ?? */
.collection {
  background: var(--white);
}

.collection-feature {
  display: grid;
  gap: clamp(2.5rem, 6vw, 4.5rem);
  margin-top: var(--stack-gap);
}

.collection-row {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: center;
}

.collection-row.is-reverse {
  grid-template-columns: 1.05fr 0.95fr;
}

.collection-row.is-reverse figure {
  order: 2;
}

.collection-row figure {
  margin: 0;
  aspect-ratio: 1;
  border-radius: var(--radius-panel);
  background: var(--grad-media);
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  overflow: hidden;
}

.collection-row figure img {
  width: 72%;
  height: 72%;
  object-fit: contain;
}

.collection-row h3 {
  margin: 0.35rem 0 0.75rem;
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  letter-spacing: var(--tracking-tight);
}

.collection-row > div > p {
  color: var(--ink-soft);
  max-width: 34rem;
  line-height: var(--leading-body);
}

.collection-row .shop-price {
  margin: 1rem 0 1.25rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--ink);
  font-weight: 700;
}

.collection-mini {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.1rem;
}

.collection-mini article {
  padding: 1.15rem 1.15rem 1.35rem;
  border-radius: var(--radius-card);
  border: 1px solid var(--line);
  background: linear-gradient(180deg, var(--foam), var(--white));
  text-align: center;
  transition: transform var(--duration) var(--ease), box-shadow var(--duration) var(--ease);
}

.collection-mini article:hover {
  transform: translateY(var(--lift));
  box-shadow: var(--shadow-sm);
}

.collection-mini img {
  width: 7.5rem;
  height: 7.5rem;
  object-fit: contain;
  margin-bottom: 0.85rem;
}

.collection-mini h3 {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: var(--tracking-tight);
}

.collection-mini p {
  margin: 0 0 0.75rem;
  color: var(--ink-soft);
  font-weight: 600;
}

/* ?? Standard ?? */
.standard {
  background:
    radial-gradient(680px 360px at 0% 0%, rgba(183, 204, 224, 0.18), transparent 55%),
    var(--paper);
}

.standard-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: var(--stack-gap);
}

.standard-card {
  padding: 1.35rem 1.3rem 1.5rem;
  border-radius: var(--radius-md);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-xs);
}

.standard-card h3 {
  margin: 0 0 0.55rem;
  font-family: var(--font-display);
  font-size: 1.12rem;
  letter-spacing: var(--tracking-tight);
}

.standard-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: var(--text-sm);
  line-height: var(--leading-body);
}

.standard-card:nth-child(4),
.standard-card:nth-child(5) {
  grid-column: span 1;
}

.standard-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}

/* ?? Reviews (ready when published) ?? */
.reviews {
  background: var(--white);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.1rem;
  margin-top: var(--stack-gap);
}

.review-card {
  margin: 0;
  padding: 1.4rem 1.35rem;
  border-radius: var(--radius-card);
  border: 1px solid var(--line);
  background: var(--foam);
}

.review-quote {
  margin: 0 0 1.1rem;
  font-size: var(--text-md);
  line-height: var(--leading-body);
  color: var(--ink);
}

.review-card footer {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  font-size: var(--text-sm);
  color: var(--ink-soft);
}

.review-card footer strong {
  color: var(--ink);
}

/* ?? Journal (ready when published) ?? */
.journal {
  background: var(--paper);
}

.journal-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-top: var(--stack-gap);
}

.journal-card {
  padding: 1.25rem 1.2rem 1.4rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  background: var(--white);
}

.journal-card.is-draft {
  opacity: 0.72;
}

.journal-card h3 {
  margin: 0.35rem 0 0.55rem;
  font-family: var(--font-display);
  font-size: 1.08rem;
  letter-spacing: var(--tracking-tight);
}

.journal-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: var(--text-sm);
  line-height: var(--leading-body);
}

/* ?? Homepage responsive ?? */
@media (max-width: 1080px) {
  .goals-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .formula-panel,
  .lifestyle-band,
  .collection-row,
  .collection-row.is-reverse {
    grid-template-columns: 1fr;
  }

  .collection-row.is-reverse figure {
    order: 0;
  }

  .lifestyle-band {
    min-height: 0;
  }

  .lifestyle-media {
    min-height: 22rem;
  }

  .lifestyle-copy {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .lifestyle-copy h2 {
    max-width: none;
  }

  .standard-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .journal-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .home-card {
    flex-basis: min(84vw, 260px);
  }

  .goals-grid,
  .quiz-options,
  .collection-mini,
  .reviews-grid,
  .standard-grid,
  .journal-grid {
    grid-template-columns: 1fr;
  }

  .formula-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 0.35rem;
    scrollbar-width: none;
  }

  .formula-tabs::-webkit-scrollbar {
    display: none;
  }

  .formula-tab {
    flex: 0 0 auto;
  }

  .lifestyle-media {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    min-height: 18rem;
  }

  .lifestyle-frame.is-primary {
    grid-row: 1;
    grid-column: 1 / -1;
    min-height: 14rem;
  }

  .lifestyle-frame.is-secondary,
  .lifestyle-accent {
    min-height: 8.5rem;
  }

  .page-home .spotlight-thumbs {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-card,
  .goal-card,
  .quiz-option,
  .collection-mini article,
  .lifestyle-band:hover .lifestyle-frame:not(.has-photo) img {
    transition: none;
    transform: none;
  }
}

/* =============================================================================
   PREMIUM POLISH ? quieter luxury, stronger product storytelling, mobile UX
   ============================================================================= */

.page-home .hero-atmosphere {
  background:
    radial-gradient(1200px 780px at 78% 45%, rgba(107, 143, 173, 0.28), transparent 62%),
    radial-gradient(760px 520px at 12% 70%, rgba(183, 204, 224, 0.22), transparent 58%),
    radial-gradient(640px 420px at 55% 8%, rgba(255, 255, 255, 0.7), transparent 55%),
    linear-gradient(155deg, #e6eef5 0%, #f4f8fb 38%, #e9f0f6 100%);
}

.page-home .hero-wash {
  display: none;
}

.page-home .hero h1 {
  max-width: 10ch;
}

.page-home .hero .lede {
  max-width: 32ch;
  color: var(--ink-soft);
}

/* Scrolling trust marquee */
.page-home .trust-strip {
  overflow: hidden;
  border-block: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(245, 248, 251, 0.96), rgba(228, 238, 246, 0.55), rgba(245, 248, 251, 0.96));
  padding-block: 1.05rem;
}

.page-home .trust-strip-track {
  display: flex;
  width: max-content;
  gap: clamp(2.5rem, 5vw, 4.5rem);
  padding-inline: var(--page-x);
  animation: trust-marquee 42s linear infinite;
}

.page-home .trust-strip-inner {
  display: none;
}

/* Product cards ? equal typography + aligned baselines */
.page-home .bestsellers-track {
  align-items: stretch;
}

.page-home .bestsellers-track .home-card {
  flex: 0 0 15.75rem;
  width: 15.75rem;
  max-width: 15.75rem;
}

.page-home .home-card {
  border: 0;
  background: transparent;
  box-shadow: none;
  border-radius: 0;
  overflow: visible;
  display: flex;
  flex-direction: column;
}

.page-home .home-card:hover,
.page-home .home-card:focus-within {
  transform: none;
  box-shadow: none;
}

.page-home .home-card-media {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 50% 30%, rgba(255, 255, 255, 0.95), transparent 55%),
    linear-gradient(165deg, #e8eef4 0%, #f7fafc 70%);
  transition: border-color var(--duration) var(--ease);
  flex-shrink: 0;
}

.page-home .home-card-media-wrap {
  position: relative;
}

.page-home .home-card-media-wrap .product-quick-add {
  width: calc(100% - 1.25rem);
  max-width: none;
  bottom: 0.7rem;
  border-radius: 0.15rem;
  letter-spacing: 0.14em;
}

.page-home .home-card:hover .home-card-media,
.page-home .home-card:focus-within .home-card-media {
  border-color: var(--line-strong);
}

.page-home .home-card-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.4rem;
  padding: 1.05rem 0.4rem 0.15rem;
  flex: 1;
  min-height: 0;
}

.page-home .home-card-kicker,
.page-home .home-card-benefit {
  display: none;
}

.page-home .home-card-title {
  margin: 0;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.35;
  min-height: 2.3rem;
  height: auto;
  max-width: 17ch;
  overflow: hidden;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.page-home .home-card-title a {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  color: inherit;
  text-decoration: none;
  line-height: 1.35;
}

.page-home .home-card-title a:hover,
.page-home .home-card-title a:focus-visible {
  color: var(--steel-deep);
}

.page-home .home-card-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.4rem;
  margin: 0;
  min-height: 1.25rem;
  height: auto;
  font-variant-numeric: tabular-nums;
}

.page-home .home-card-price strong {
  flex: 0 0 auto;
  width: auto;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.25rem;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.page-home .home-card-price s {
  flex: 0 0 auto;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 400;
  color: var(--ink-muted);
  line-height: 1.25rem;
  font-variant-numeric: tabular-nums;
  text-decoration: line-through;
  text-decoration-thickness: 1px;
  white-space: nowrap;
}

.page-home .product-rating {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  margin-top: 0.1rem;
  color: var(--ink);
}

.page-home .product-rating-stars {
  position: relative;
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  line-height: 1;
}

.page-home .product-rating-stars-base {
  color: rgba(11, 16, 22, 0.18);
}

.page-home .product-rating-stars-fill {
  position: absolute;
  left: 0;
  top: 0;
  overflow: hidden;
  white-space: nowrap;
  color: var(--ink);
}

.page-home .product-rating-count {
  font-size: 0.72rem;
  color: var(--ink-muted);
  font-variant-numeric: tabular-nums;
}

.page-home .home-card-actions {
  display: none;
}

.page-home .bestsellers {
  background: linear-gradient(180deg, var(--foam) 0%, var(--white) 100%);
}

/* Concerns ? Neova-style full photo grid */
.page-home .concerns {
  background: var(--white);
  padding-inline: 0;
}

.page-home .concerns.home-section {
  padding-block: clamp(3rem, 7vh, 5rem);
}

.page-home .concerns-head {
  margin-bottom: 2.25rem;
}

.page-home .concerns-head .eyebrow {
  color: var(--ink);
}

.page-home .concerns-head h2 {
  letter-spacing: 0.1em;
}

.page-home .concerns-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

/* Goals ? image-led, editorial (legacy cards if used elsewhere) */
.page-home .goals {
  background: var(--paper);
}

.page-home .goals-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.page-home .goal-card {
  position: relative;
  min-height: 18.5rem;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: grid;
  grid-template-rows: 1fr;
  background: var(--grad-media);
  box-shadow: none;
}

.page-home .goal-card:hover,
.page-home .goal-card:focus-visible {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--line-strong);
}

.page-home .goal-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 50% 32%, rgba(255, 255, 255, 0.96), transparent 58%),
    linear-gradient(165deg, #e8eef4 0%, #f4f8fb 70%);
}

.page-home .goal-media img {
  width: 72%;
  height: 62%;
  max-width: 11.5rem;
  object-fit: contain;
  object-position: center 28%;
  transform: none;
  transition: transform var(--duration-slow) var(--ease);
  filter: drop-shadow(0 14px 24px rgba(16, 30, 48, 0.12));
}

.page-home .goal-card:hover .goal-media img {
  transform: translateY(-4px) scale(1.03);
}

.page-home .goal-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      transparent 0%,
      transparent 42%,
      rgba(11, 16, 22, 0.35) 68%,
      rgba(11, 16, 22, 0.82) 100%
    );
  pointer-events: none;
}

.page-home .goal-media.is-abstract {
  background:
    radial-gradient(420px 240px at 80% 10%, rgba(183, 204, 224, 0.35), transparent 55%),
    linear-gradient(155deg, #243f55 0%, #152433 100%);
}

.page-home .goal-media.is-abstract::after {
  background: linear-gradient(180deg, transparent 20%, rgba(11, 16, 22, 0.45) 100%);
}

.page-home .goal-copy {
  position: relative;
  z-index: 1;
  margin-top: auto;
  padding: 1.25rem 1.2rem 1.3rem;
  gap: 0.35rem;
}

.page-home .goal-copy strong {
  color: var(--foam);
  font-size: 1.15rem;
  line-height: 1.25;
}

.page-home .goal-copy em {
  color: rgba(250, 252, 253, 0.82);
  font-size: 0.875rem;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.page-home .goal-copy .btn-link {
  color: var(--sky);
  margin-top: 0.4rem;
}

.page-home .goal-card-wide {
  grid-column: span 1;
}

.page-home .goal-card-wide .goal-copy strong,
.page-home .goal-card-wide .goal-copy em {
  color: var(--foam);
}

/* Formula ? architectural, less frosted glass */
.page-home .formula {
  background:
    linear-gradient(165deg, #121c26 0%, #1c3040 46%, #152433 100%);
}

.page-home .formula-panel {
  background: transparent;
  border: 0;
  backdrop-filter: none;
  padding: 0;
  gap: clamp(1.75rem, 4vw, 3.25rem);
}

.page-home .formula-tab {
  border-radius: var(--radius-control);
  letter-spacing: 0.06em;
}

.page-home .formula-visual {
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.page-home .formula-related-item {
  border-radius: var(--radius-control);
}

/* Lifestyle ? editorial frames + caption */
.page-home .lifestyle-band {
  background:
    linear-gradient(125deg, #101820 0%, #1d3346 45%, #152636 100%);
}

.page-home .lifestyle-frame {
  border-radius: 0.65rem;
  background: rgba(255, 255, 255, 0.04);
}

.page-home .lifestyle-frame img {
  object-fit: cover;
  padding: 0;
}

.page-home .lifestyle-accent {
  display: grid;
  place-items: center;
  padding: 1rem;
  border-radius: 0.65rem;
}

.page-home .lifestyle-accent span {
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-align: center;
  color: rgba(250, 252, 253, 0.82);
  max-width: 12ch;
  line-height: 1.35;
}

.page-home .lifestyle-accent::after {
  display: none;
}

.page-home .lifestyle-copy h2 {
  max-width: 11ch;
}

/* Quiz ? cleaner choice grid */
.page-home .quiz {
  background:
    radial-gradient(720px 380px at 12% 0%, rgba(183, 204, 224, 0.2), transparent 58%),
    linear-gradient(180deg, #f7fafc 0%, var(--white) 100%);
}

.page-home .quiz-shell {
  border: 1px solid var(--line);
  box-shadow: 0 14px 40px rgba(16, 30, 48, 0.05);
  background: #fff;
  border-radius: 0.85rem;
}

.page-home .quiz-option {
  background: #f7fafc;
  border-color: var(--line);
}

.page-home .quiz-option:hover,
.page-home .quiz-option:focus-visible {
  background: #fff;
  border-color: var(--steel);
}

/* Complete line grid */
.page-home .line-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1.15rem;
  margin-top: var(--stack-gap);
}

.page-home .line-item {
  display: grid;
  grid-template-rows: auto minmax(2.3rem, auto) 1.25rem;
  align-content: start;
  justify-items: center;
  text-align: center;
  gap: 0.4rem;
}

.page-home .line-media-wrap {
  position: relative;
  margin-bottom: 0.65rem;
}

.page-home .line-media {
  display: grid;
  place-items: center;
  aspect-ratio: 1;
  margin-bottom: 0;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  background: var(--grad-media);
  overflow: hidden;
  transition: border-color var(--duration) var(--ease);
}

.page-home .line-item:hover .line-media,
.page-home .line-item:focus-within .line-media {
  border-color: var(--line-strong);
}

.page-home .line-media-wrap .product-quick-add {
  width: calc(100% - 1.25rem);
  max-width: none;
  bottom: 0.7rem;
}

.page-home .line-media img {
  width: 72%;
  height: 72%;
  object-fit: contain;
}

.page-home .line-item .eyebrow {
  display: none;
}

.page-home .line-item h3 {
  margin: 0;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.35;
  min-height: 2.3rem;
  height: auto;
  max-width: 17ch;
  overflow: hidden;
}

.page-home .line-item h3 a {
  color: inherit;
  text-decoration: none;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.page-home .line-item h3 a:hover,
.page-home .line-item h3 a:focus-visible {
  color: var(--steel-deep);
}

.page-home .line-item .shop-price,
.page-home .line-item .price-row,
.page-home .price-row {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.4rem;
  margin: 0;
  min-height: 1.25rem;
  height: auto;
  font-variant-numeric: tabular-nums;
}

.page-home .price-row strong,
.page-home .line-item .shop-price {
  flex: 0 0 auto;
  width: auto;
  margin: 0;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.25rem;
  font-variant-numeric: tabular-nums;
  color: var(--ink);
  white-space: nowrap;
}

.page-home .price-row s {
  flex: 0 0 auto;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 400;
  color: var(--ink-muted);
  line-height: 1.35rem;
  font-variant-numeric: tabular-nums;
  text-decoration: line-through;
  text-decoration-thickness: 1px;
  white-space: nowrap;
}

.page-home .line-item .btn {
  display: none;
}

.page-home .collection-cta {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
}

/* Standard ? split editorial layout */
.page-home .standard {
  background:
    radial-gradient(900px 520px at 88% 30%, rgba(107, 143, 173, 0.16), transparent 58%),
    linear-gradient(180deg, var(--paper), #eef3f7);
  overflow: hidden;
}

.page-home .standard-shell {
  display: grid;
  gap: clamp(2rem, 4.5vh, 3rem);
}

.page-home .standard-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: center;
}

.page-home .standard-intro h2 {
  margin: 0.35rem 0 0.85rem;
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 4vw, 3.1rem);
  letter-spacing: var(--tracking-display);
  line-height: 1.05;
  max-width: 11ch;
}

.page-home .standard-intro > p {
  color: var(--ink-soft);
  max-width: 34ch;
  line-height: var(--leading-body);
  margin: 0 0 1.5rem;
}

.page-home .standard-cta {
  margin-top: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.page-home .standard-visual {
  position: relative;
  min-height: 22rem;
  display: grid;
  place-items: center;
}

.page-home .standard-glow {
  position: absolute;
  inset: 8% 10%;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.9) 0%, rgba(183, 204, 224, 0.35) 40%, transparent 70%);
  filter: blur(6px);
  pointer-events: none;
}

.page-home .standard-visual-main {
  position: relative;
  z-index: 1;
  width: min(72%, 18rem);
  height: auto;
  filter: drop-shadow(0 24px 40px rgba(16, 30, 48, 0.16));
}

.page-home .standard-visual-side {
  position: absolute;
  right: 6%;
  bottom: 8%;
  z-index: 2;
  width: min(38%, 9.5rem);
  height: auto;
  filter: drop-shadow(0 16px 28px rgba(16, 30, 48, 0.14));
  transform: rotate(6deg);
}

.page-home .standard-pillars {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2.5vw, 1.75rem);
  border-top: 1px solid var(--line);
  padding-top: clamp(1.5rem, 3vh, 2rem);
}

.page-home .standard-pillars li {
  display: grid;
  gap: 0.45rem;
}

.page-home .standard-pillars strong {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 650;
  letter-spacing: -0.015em;
  color: var(--ink);
}

.page-home .standard-pillars span {
  color: var(--ink-soft);
  font-size: 0.9rem;
  line-height: 1.55;
}

.page-home .standard-grid {
  display: none;
}

.page-home .standard-card {
  display: none;
}

/* Spotlight thumbs readability */
.page-home .spotlight-thumbs {
  gap: 0.45rem;
}

.page-home .thumb span {
  font-size: 0.62rem;
}

.page-home .spotlight-visual {
  background:
    radial-gradient(circle at 50% 28%, rgba(255, 255, 255, 0.98), transparent 58%),
    linear-gradient(165deg, #e4ebf2 0%, #f7fafc 68%);
}

/* Newsletter contact panel on home */
.page-home .contact.home-section {
  padding-block: var(--section-y-sm);
}

@media (max-width: 1100px) {
  .page-home .line-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .page-home .goals-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .page-home .goal-card-wide {
    grid-column: span 2;
    min-height: 12rem;
  }

  .page-home .standard-layout {
    grid-template-columns: 1fr;
  }

  .page-home .standard-visual {
    order: -1;
    min-height: 16rem;
  }

  .page-home .standard-pillars {
    grid-template-columns: 1fr;
  }

  .page-home .standard-intro h2 {
    max-width: 12ch;
  }
}

@media (max-width: 760px) {
  .page-home .bestsellers-track .home-card {
    flex: 0 0 min(72vw, 15.5rem);
    width: min(72vw, 15.5rem);
    max-width: min(72vw, 15.5rem);
  }

  .page-home .home-card-title {
    font-size: 0.74rem;
    min-height: 2.1rem;
    height: auto;
  }

  .page-home .home-card-body {
    padding-top: 0.9rem;
    gap: 0.35rem;
  }

  .page-home .home-card-media-wrap .product-quick-add,
  .page-home .line-media-wrap .product-quick-add {
    width: calc(100% - 1rem);
    min-height: 2.75rem;
    bottom: 0.55rem;
    font-size: 0.68rem;
  }

  .page-home .trust-strip-track span {
    font-size: 0.64rem;
    letter-spacing: 0.1em;
  }

  .page-home .goals-grid {
    grid-template-columns: 1fr;
  }

  .page-home .line-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.85rem 0.65rem;
  }

  .page-home .line-item h3 {
    font-size: 0.68rem;
    max-width: 14ch;
    min-height: 2rem;
  }

  .page-home .goal-card,
  .page-home .goal-card-wide {
    grid-column: auto;
    min-height: 13.5rem;
  }

  .page-home .bestsellers-viewport {
    -webkit-overflow-scrolling: touch;
    scroll-padding-inline: var(--page-x);
  }

  .page-home .formula-tabs {
    mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  }

  .page-home .spotlight-thumbs {
    display: flex;
    overflow-x: auto;
    gap: 0.5rem;
    padding-bottom: 0.25rem;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .page-home .spotlight-thumbs::-webkit-scrollbar {
    display: none;
  }

  .page-home .thumb {
    flex: 0 0 4.5rem;
  }

  .page-home .lifestyle-accent span {
    font-size: 0.85rem;
  }

  .page-home .standard-visual {
    min-height: 14rem;
  }

  .page-home .standard-visual-main {
    width: min(58%, 12rem);
  }

  .page-home .standard-visual-side {
    width: min(34%, 7rem);
  }

  .page-home .hero .cta-row {
    flex-direction: column;
    align-items: stretch;
  }

  .page-home .hero .cta-row .btn {
    width: 100%;
    justify-content: center;
  }

  .icon-btn {
    width: 2.45rem;
    height: 2.45rem;
  }

  .icon-btn svg {
    width: 1.45rem;
    height: 1.45rem;
  }

  .menu-toggle {
    width: 2.55rem;
    height: 2.55rem;
  }

  .product-card--shop .product-card-media {
    padding: 1.15rem 0.85rem 3.15rem;
  }

  .product-card--shop .product-card-quick {
    left: 0.65rem;
    right: 0.65rem;
    bottom: 0.65rem;
  }

  .product-card-price-badge {
    min-height: 2.55rem;
    padding: 0.4rem 0.7rem;
    font-size: 0.9rem;
  }

  .btn-cart-icon {
    width: 2.7rem;
    height: 2.7rem;
  }

  .about-story-float {
    display: none;
  }

  .about-story-visual {
    min-height: 15rem;
  }

  .about-story-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .about-story-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .values-grid {
    grid-template-columns: 1fr 1fr;
  }

  .concerns-head {
    margin-bottom: 1.35rem;
  }

  .concerns-head h2 {
    font-size: clamp(1.35rem, 6vw, 1.75rem);
    letter-spacing: 0.06em;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-home .goal-media img {
    transition: none;
    transform: none;
  }
}



/* =============================================================================
   CHECKOUT ? Shopify / Neova-style two-column flow
   ============================================================================= */

.page-checkout {
  margin: 0;
  min-height: 100vh;
  background: #fff;
  color: var(--ink);
  font-family: var(--font-body);
}

.page-checkout .grain {
  display: none;
}

.checkout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(18rem, 0.85fr);
  min-height: 100vh;
}

.checkout-main {
  padding: 1.5rem clamp(1.25rem, 4vw, 3.5rem) 3rem;
  max-width: 42rem;
  margin-left: auto;
  width: 100%;
}

.checkout-brand {
  margin-bottom: 1.75rem;
}

.checkout-brand-link {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: var(--ink);
}

.checkout-brand-link img {
  display: block;
  width: 2.4rem;
  height: auto;
}

.checkout-brand-link span {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.checkout-brand-link strong {
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: -0.02em;
  text-transform: none;
  color: var(--ink);
  font-weight: 700;
}

.checkout-mobile-summary {
  display: none;
  margin: 0 -1.25rem 1.5rem;
  border-block: 1px solid var(--line);
  background: #f5f6f8;
}

.checkout-mobile-summary > summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.25rem;
  cursor: pointer;
}

.checkout-mobile-summary > summary::-webkit-details-marker {
  display: none;
}

.checkout-mobile-summary-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--steel-deep);
  font-size: 0.92rem;
  font-weight: 550;
}

.checkout-mobile-summary[open] .checkout-mobile-summary-toggle svg {
  transform: rotate(180deg);
}

.checkout-mobile-summary > summary strong {
  font-variant-numeric: tabular-nums;
  font-size: 1.05rem;
}

.checkout-mobile-summary-body {
  padding: 0 1.25rem 1.25rem;
}

.checkout-empty {
  padding: 2rem 0;
}

.checkout-empty h1 {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: 1.75rem;
}

.checkout-empty p {
  margin: 0 0 1.25rem;
  color: var(--ink-soft);
}

.checkout-section {
  margin-bottom: 1.75rem;
}

.checkout-section h2 {
  margin: 0 0 0.85rem;
  font-family: var(--font-body);
  font-size: 1.15rem;
  font-weight: 650;
  letter-spacing: -0.015em;
}

.checkout-section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.85rem;
}

.checkout-section-head h2 {
  margin: 0;
}

.checkout-section-head a {
  font-size: 0.88rem;
  color: var(--steel-deep);
  text-decoration: underline;
  text-underline-offset: 0.14em;
}

.express-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.65rem;
}

.express-btn {
  appearance: none;
  border: 0;
  border-radius: 0.35rem;
  min-height: 2.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-weight: 700;
  font-size: 1rem;
  transition: opacity var(--duration-fast) var(--ease), transform var(--duration-fast) var(--ease);
}

.express-btn:hover,
.express-btn:focus-visible {
  opacity: 0.92;
  transform: translateY(-1px);
}

.express-shoppay {
  background: #5a31f4;
  color: #fff;
  font-family: var(--font-body);
  letter-spacing: -0.02em;
}

.express-shoppay span {
  font-weight: 800;
}

.express-paypal {
  background: #ffc439;
  color: #003087;
}

.express-paypal-mark {
  font-style: italic;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.express-paypal-mark span {
  color: #009cde;
}

.express-gpay {
  background: #000;
  color: #fff;
}

.checkout-or {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 0.85rem;
  margin-top: 1.15rem;
  color: var(--ink-muted);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
}

.checkout-or::before,
.checkout-or::after {
  content: "";
  height: 1px;
  background: var(--line);
}

.co-field {
  margin-bottom: 0.65rem;
}

.co-field input,
.co-field select {
  width: 100%;
  appearance: none;
  border: 1px solid #c9ced6;
  border-radius: 0.35rem;
  background: #fff;
  color: var(--ink);
  padding: 0.85rem 0.9rem;
  font: inherit;
  font-size: 0.95rem;
  line-height: 1.3;
  transition: border-color var(--duration-fast) var(--ease), box-shadow var(--duration-fast) var(--ease);
}

.co-field select {
  background-image: linear-gradient(45deg, transparent 50%, #6b7a8a 50%),
    linear-gradient(135deg, #6b7a8a 50%, transparent 50%);
  background-position: calc(100% - 16px) calc(50% - 2px), calc(100% - 11px) calc(50% - 2px);
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
  padding-right: 2rem;
}

.co-field input:focus,
.co-field select:focus {
  outline: none;
  border-color: var(--steel);
  box-shadow: 0 0 0 1px var(--steel);
}

.co-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
}

.co-row-3 {
  grid-template-columns: 1.1fr 0.9fr 0.85fr;
}

.co-check {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  margin: 0.55rem 0 0;
  font-size: 0.88rem;
  color: var(--ink-soft);
  cursor: pointer;
}

.co-check input {
  margin-top: 0.2rem;
  accent-color: var(--ink);
}

.co-shipping-placeholder {
  padding: 1rem 1.05rem;
  border: 1px solid var(--line);
  border-radius: 0.35rem;
  background: #f7f8fa;
  color: var(--ink-soft);
  font-size: 0.9rem;
  line-height: 1.45;
}

.co-shipping-options {
  border: 1px solid var(--line);
  border-radius: 0.35rem;
  overflow: hidden;
}

.co-ship-option {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.75rem;
  align-items: center;
  padding: 0.95rem 1rem;
  border-bottom: 1px solid var(--line);
  cursor: pointer;
  background: #fff;
}

.co-ship-option:last-child {
  border-bottom: 0;
}

.co-ship-option.is-selected,
.co-ship-option:has(input:checked) {
  background: #f3f7fb;
}

.co-ship-copy {
  display: grid;
  gap: 0.15rem;
}

.co-ship-copy strong {
  font-size: 0.92rem;
  font-weight: 600;
}

.co-ship-copy em {
  font-style: normal;
  color: var(--ink-muted);
  font-size: 0.82rem;
}

.co-ship-price {
  font-size: 0.9rem;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}

.checkout-secure-note {
  margin: -0.35rem 0 0.85rem;
  color: var(--ink-muted);
  font-size: 0.84rem;
}

.co-pay-box {
  border: 1px solid var(--line);
  border-radius: 0.4rem;
  overflow: hidden;
}

.co-pay-option {
  display: block;
  border-bottom: 1px solid var(--line);
  background: #fff;
  cursor: pointer;
}

.co-pay-option:last-child {
  border-bottom: 0;
}

.co-pay-option-head {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.95rem 1rem;
  font-weight: 550;
}

.co-pay-option.is-active {
  background: #f3f7fb;
}

.co-card-icons {
  margin-left: auto;
  display: inline-flex;
  gap: 0.3rem;
}

.co-card-icon,
.co-paypal-mini {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.35rem;
  height: 1.35rem;
  padding: 0 0.3rem;
  border-radius: 0.2rem;
  border: 1px solid var(--line);
  background: #fff;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--ink-soft);
}

.co-paypal-mini {
  margin-left: auto;
  color: #003087;
  font-style: italic;
  font-size: 0.72rem;
}

.co-card-fields {
  padding: 0 1rem 1rem;
  background: #f3f7fb;
  border-top: 1px solid var(--line);
}

.checkout-form-error {
  margin: 0 0 0.85rem;
  padding: 0.75rem 0.9rem;
  border-radius: 0.35rem;
  background: rgba(160, 40, 40, 0.08);
  color: #8a1f1f;
  font-size: 0.88rem;
}

.checkout-pay-btn {
  width: 100%;
  min-height: 3.15rem;
  font-size: 1rem;
  border-radius: 0.4rem;
}

.checkout-policies {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1rem;
  margin-top: 1.25rem;
}

.checkout-policies a {
  font-size: 0.78rem;
  color: var(--steel-deep);
  text-decoration: underline;
  text-underline-offset: 0.14em;
}

.checkout-success-panel {
  padding: 1rem 0 2rem;
}

.checkout-success-panel h1 {
  margin: 0 0 0.65rem;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
}

.checkout-success-panel > p {
  margin: 0 0 1.35rem;
  color: var(--ink-soft);
  max-width: 36ch;
  line-height: 1.55;
}

.checkout-success-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.checkout-sidebar {
  background: #f5f6f8;
  border-left: 1px solid var(--line);
  padding: 2rem clamp(1.25rem, 3.5vw, 2.75rem);
}

.checkout-sidebar-inner {
  position: sticky;
  top: 2rem;
  max-width: 26rem;
}

.co-line {
  display: grid;
  grid-template-columns: 4rem minmax(0, 1fr) auto;
  gap: 0.9rem;
  align-items: center;
  margin-bottom: 1.1rem;
}

.co-line-thumb {
  position: relative;
  width: 4rem;
  height: 4rem;
  border-radius: 0.45rem;
  border: 1px solid var(--line);
  background: #fff;
  overflow: visible;
}

.co-line-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0.4rem;
}

.co-line-qty {
  position: absolute;
  top: -0.45rem;
  right: -0.45rem;
  min-width: 1.3rem;
  height: 1.3rem;
  padding: 0 0.3rem;
  border-radius: 999px;
  background: #5c6570;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 650;
  display: inline-grid;
  place-items: center;
  font-variant-numeric: tabular-nums;
}

.co-line-meta {
  min-width: 0;
  display: grid;
  gap: 0.15rem;
}

.co-line-meta strong {
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.3;
}

.co-line-meta span {
  color: var(--ink-muted);
  font-size: 0.8rem;
}

.co-line-price {
  margin: 0;
  justify-self: end;
  text-align: right;
  font-size: 0.9rem;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.co-discount {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.55rem;
  margin: 1.35rem 0 1rem;
}

.co-discount input {
  width: 100%;
  border: 1px solid #c9ced6;
  border-radius: 0.35rem;
  background: #fff;
  padding: 0.8rem 0.85rem;
  font: inherit;
  font-size: 0.92rem;
}

.co-discount input:focus {
  outline: none;
  border-color: var(--steel);
  box-shadow: 0 0 0 1px var(--steel);
}

.co-discount-btn {
  appearance: none;
  border: 0;
  border-radius: 0.35rem;
  padding: 0 1.1rem;
  background: #d8dde3;
  color: #5a6572;
  font: inherit;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
}

.co-discount-btn:not(:disabled) {
  background: var(--ink);
  color: #fff;
}

.co-discount-btn:disabled {
  cursor: default;
}

.co-discount-applied {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  margin: -0.35rem 0 1rem;
  font-size: 0.84rem;
  color: var(--steel-deep);
}

.co-discount-applied button {
  appearance: none;
  border: 0;
  background: transparent;
  color: var(--ink-soft);
  text-decoration: underline;
  cursor: pointer;
  font: inherit;
  font-size: 0.8rem;
}

.co-totals {
  display: grid;
  gap: 0.7rem;
  padding-top: 0.35rem;
}

.co-total-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  font-size: 0.9rem;
  color: var(--ink-soft);
}

.co-total-row > span:last-child {
  color: var(--ink);
  font-variant-numeric: tabular-nums;
  text-align: right;
}

.co-total-discount > span:last-child {
  color: var(--steel-deep);
}

.co-total-due {
  margin-top: 0.35rem;
  padding-top: 0.9rem;
  border-top: 1px solid var(--line);
  align-items: baseline;
  color: var(--ink);
  font-size: 1rem;
}

.co-total-due > span:first-child {
  font-weight: 650;
  font-size: 1.05rem;
  color: var(--ink);
}

.co-total-due > span:last-child {
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.co-total-due small {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--ink-muted);
  margin-right: 0.25rem;
}

@media (max-width: 980px) {
  .checkout {
    grid-template-columns: 1fr;
  }

  .checkout-sidebar {
    display: none;
  }

  .checkout-main {
    max-width: none;
    margin: 0;
    padding: 1.25rem 1.25rem 2.5rem;
  }

  .checkout-mobile-summary {
    display: block;
  }

  .co-row-3 {
    grid-template-columns: 1fr;
  }

  .express-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .co-row {
    grid-template-columns: 1fr;
  }

  .checkout-success-actions {
    flex-direction: column;
  }

  .checkout-success-actions .btn {
    width: 100%;
    justify-content: center;
  }
}
