/** Shopify CDN: Minification failed

Line 577:3 Expected "}" to go with "{"

**/
/* ─── TOKENS (mobile-first) ─────────────────────────── */
:root {
  --cream:       #FFFCF2;
  --navy:        #1A1A2E;
  --gold:        #C9A96E;
  --muted:       #8C8070;
  --border:      rgba(26,26,46,.08);
  --serif:       'Cormorant Garamond', Georgia, serif;
  --sans:        'DM Sans', system-ui, sans-serif;
  --h1:          clamp(2.6rem, 9vw, 6.5rem);
  --h2:          clamp(1.9rem, 6vw, 3.5rem);
  --h3:          clamp(1.2rem, 4vw, 1.8rem);
  --body:        1.0625rem;
  --caption:     0.8125rem;
  --pad-section: 64px;
  --pad-h:       20px;
  --max-w:       1200px;
  --ease:        cubic-bezier(.25,.1,0,1);
}
@media (min-width: 768px) {
  :root {
    --pad-section: clamp(80px, 10vw, 140px);
    --pad-h:       clamp(32px, 4vw, 48px);
  }
}

/* ─── RESET ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans); font-size: var(--body);
  line-height: 1.7; color: var(--navy);
  background: var(--cream); -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a   { color: inherit; text-decoration: none; }
button { cursor: pointer; }

/* ─── UTILITIES ─────────────────────────────────────── */
.eyebrow {
  font-family: var(--sans); font-size: var(--caption);
  font-weight: 400; letter-spacing: .15em; text-transform: uppercase;
  color: var(--muted);
}
.eyebrow--gold  { color: var(--gold); }
.eyebrow--light { color: rgba(255,252,242,.45); }

/* ─── SCROLL REVEAL ──────────────────────────────────── */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity 650ms var(--ease), transform 650ms var(--ease);
}
.reveal.in { opacity: 1; transform: none; }
.d1 { transition-delay: 100ms; } .d2 { transition-delay: 200ms; }
.d3 { transition-delay: 300ms; } .d4 { transition-delay: 400ms; }
.d5 { transition-delay: 500ms; } .d6 { transition-delay: 600ms; }

/* ═══════════════════════════════════════════════════════
   NAV — BASE (mobile: always solid cream)
═══════════════════════════════════════════════════════ */
.nav {
  position: fixed; inset: 0 0 auto; z-index: 100;
  height: 72px; display: flex; align-items: center; justify-content: space-between;
  padding: 0 var(--pad-h);
  background: var(--cream); border-bottom: 1px solid var(--border);
  transition: background 400ms ease, border-color 400ms ease;
}
.nav__logo {
  font-family: var(--serif); font-size: 1.25rem; font-weight: 400;
  letter-spacing: .05em; color: var(--navy); transition: color 400ms ease;
}
.nav__links { display: none; gap: 44px; list-style: none; }
.nav__links a {
  font-size: .875rem; letter-spacing: .05em; color: var(--navy);
  transition: opacity 200ms ease, color 400ms ease;
}
.nav__links a:hover { opacity: .55; }
.nav__links a.active { opacity: 1; }
.nav__right { display: flex; align-items: center; gap: 24px; }
.nav__cart { display: none; font-size: .875rem; letter-spacing: .04em; color: var(--navy); transition: color 400ms ease; }
.nav__burger {
  display: flex; flex-direction: column; gap: 5px;
  background: none; border: none; padding: 4px;
}
.nav__burger span { display: block; width: 22px; height: 1.5px; background: var(--navy); transition: background 400ms ease; }

/* NAV — DESKTOP (transparent over hero, stuck on scroll) */
@media (min-width: 768px) {
  .nav { background: transparent; border-bottom-color: transparent; }
  .nav__logo { color: var(--cream); }
  .nav__links { display: flex; }
  .nav__links a { color: rgba(255,252,242,.8); }
  .nav__cart { display: inline; color: rgba(255,252,242,.8); }
  .nav__burger { display: none; }
  .nav__burger span { background: var(--cream); }
  .nav.stuck { background: var(--cream); border-bottom: 1px solid var(--border); }
  .nav.stuck .nav__logo { color: var(--navy); }
  .nav.stuck .nav__links a { color: var(--navy); }
  .nav.stuck .nav__cart { color: var(--navy); }
}

/* NAV — on non-hero pages (always cream) */
.nav--solid { background: var(--cream); border-bottom: 1px solid var(--border); }
.nav--solid .nav__logo { color: var(--navy); }
.nav--solid .nav__links a { color: var(--navy); }
.nav--solid .nav__cart { color: var(--navy); display: inline; }

/* DRAWER */
.drawer {
  position: fixed; inset: 0 -100% 0 auto;
  width: min(360px, 85vw); background: var(--navy);
  z-index: 200; padding: 80px 48px;
  display: flex; flex-direction: column; gap: 32px;
  transition: inset 500ms var(--ease);
}
.drawer.open { inset: 0 0 0 auto; }
.drawer__close {
  position: absolute; top: 24px; right: 24px;
  background: none; border: none; color: var(--cream);
  width: 44px; height: 44px; display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; line-height: 1;
}
.drawer a {
  font-family: var(--serif); font-size: 2rem; font-weight: 300;
  color: var(--cream); padding: 12px 0; transition: opacity 200ms ease;
}
.drawer a:hover { opacity: .55; }
.overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,.4); z-index: 150; }
.overlay.open { display: block; }

/* ═══════════════════════════════════════════════════════
   S1 — HERO
═══════════════════════════════════════════════════════ */
.hero {
  position: relative; height: 90dvh; min-height: 520px;
  display: flex; align-items: flex-end; overflow: hidden;
}
.hero__bg { position: absolute; inset: 0; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero__veil {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(26,26,46,.72) 0%, rgba(26,26,46,.24) 55%, rgba(26,26,46,.05) 100%);
}
.hero__content {
  position: relative; z-index: 1; width: 100%;
  padding: 0 var(--pad-h) 48px;
}
.hero__eye {
  font-family: var(--sans); font-size: var(--caption);
  letter-spacing: .18em; text-transform: uppercase;
  color: rgba(255,252,242,.55); margin-bottom: 20px;
  opacity: 0; transform: translateY(20px);
  animation: up 700ms var(--ease) 0ms forwards;
}
.hero__h1 {
  font-family: var(--serif); font-size: clamp(2.6rem, 9vw, 3.8rem);
  font-weight: 300; line-height: 1.06; letter-spacing: -.03em;
  color: var(--cream); max-width: 760px; margin-bottom: 24px;
  opacity: 0; transform: translateY(20px);
  animation: up 700ms var(--ease) 200ms forwards;
}
.hero__sub {
  font-size: 1rem; font-weight: 300; color: rgba(255,252,242,.65);
  letter-spacing: .01em; margin-bottom: 40px;
  opacity: 0; transform: translateY(20px);
  animation: up 700ms var(--ease) 400ms forwards;
}
.hero__ctas {
  display: flex; flex-direction: column; gap: 12px;
  opacity: 0; transform: translateY(20px);
  animation: up 700ms var(--ease) 600ms forwards;
}
.hero__cta {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 10px; width: 100%;
  font-size: .8125rem; font-weight: 400; letter-spacing: .1em; text-transform: uppercase;
  color: var(--cream); padding: 16px 24px;
  border: 1px solid rgba(255,252,242,.3);
  transition: border-color 300ms ease, background 300ms ease;
}
.hero__cta:hover { border-color: rgba(255,252,242,.7); background: rgba(255,252,242,.06); }
.hero__cta--secondary {
  background: transparent;
  color: rgba(255,252,242,.7);
  border-color: rgba(255,252,242,.15);
}
@keyframes up { to { opacity: 1; transform: none; } }

@media (min-width: 768px) {
  .hero { height: 100vh; }
  .hero__content { padding: 0 clamp(40px,5vw,80px) clamp(60px,8vh,100px); }
  .hero__h1 { font-size: var(--h1); }
  .hero__ctas { flex-direction: row; }
  .hero__cta { width: auto; justify-content: flex-start; padding: 14px 28px; }
}

/* About page hero variant */
.hero__statement {
  font-family: var(--serif); font-size: clamp(1.5rem,3vw,2.4rem); font-weight: 300;
  line-height: 1.45; letter-spacing: -.02em;
  color: var(--cream); max-width: 680px;
  opacity: 0; transform: translateY(20px);
  animation: up 700ms var(--ease) 200ms forwards;
}

@media (min-width: 768px) {
  .hero { height: 100vh; min-height: 600px; }
  .hero__content { padding: 0 var(--pad-h) clamp(60px,8vh,100px); }
}

/* ═══════════════════════════════════════════════════════
   PROOF BAR
═══════════════════════════════════════════════════════ */
.proof-bar {
  background: var(--navy);
  padding: 32px var(--pad-h);
  border-bottom: 1px solid rgba(255,252,242,.06);
}
.proof-bar__inner {
  max-width: var(--max-w); margin: 0 auto;
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 24px 16px;
}
.proof-bar__stat { text-align: center; }
.proof-bar__num {
  font-family: var(--serif); font-size: 1.6rem; font-weight: 300;
  letter-spacing: -.01em; color: var(--cream); line-height: 1.1;
  margin-bottom: 4px;
}
.proof-bar__label {
  font-size: .6875rem; letter-spacing: .12em; text-transform: uppercase;
  color: rgba(255,252,242,.4);
}

@media (min-width: 640px) {
  .proof-bar__inner { grid-template-columns: repeat(4, 1fr); gap: 0; }
  .proof-bar__stat { border-right: 1px solid rgba(255,252,242,.08); }
  .proof-bar__stat:last-child { border-right: none; }
}

/* ═══════════════════════════════════════════════════════
   FEATURES / VALUE PROPS SECTION
═══════════════════════════════════════════════════════ */
.features-section {
  background: var(--cream);
  padding: var(--pad-section) var(--pad-h);
  border-top: 1px solid var(--border);
}
.features-section__head {
  text-align: center; margin-bottom: clamp(48px,7vw,80px);
}
.features-section__h2 {
  font-family: var(--serif); font-size: var(--h2); font-weight: 300;
  letter-spacing: -.025em; color: var(--navy); margin-top: 14px;
}
.features-section__grid {
  max-width: var(--max-w); margin: 0 auto;
  display: grid; grid-template-columns: 1fr;
  gap: 1px; background: var(--border);
}
.feat-item {
  background: var(--cream);
  padding: 40px var(--pad-h) 48px;
}
.feat-item__icon {
  font-size: 1.1rem; color: var(--gold); margin-bottom: 18px;
  display: block;
}
.feat-item__head {
  font-family: var(--serif); font-size: 1.35rem; font-weight: 400;
  letter-spacing: -.01em; color: var(--navy); margin-bottom: 12px;
}
.feat-item__body { font-size: .9375rem; line-height: 1.7; color: var(--muted); }

@media (min-width: 768px) {
  .features-section__grid { grid-template-columns: repeat(3, 1fr); }
  .feat-item { padding: 48px 40px 56px; }
}

/* ═══════════════════════════════════════════════════════
   EDITORIAL SPLIT
═══════════════════════════════════════════════════════ */
.editorial { background: var(--cream); overflow: hidden; }
.editorial__grid { display: grid; grid-template-columns: 1fr; }
.editorial__img-wrap { aspect-ratio: 4/3; overflow: hidden; order: 1; }
.editorial__img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 800ms var(--ease); }
.editorial__img-wrap:hover img { transform: scale(1.025); }
.editorial__copy {
  display: flex; flex-direction: column; justify-content: center;
  padding: 48px var(--pad-h) 56px; order: 2;
}
.editorial__eye { margin-bottom: 28px; }
.editorial__h2 {
  font-family: var(--serif); font-size: var(--h2); font-weight: 300;
  line-height: 1.06; letter-spacing: -.03em; color: var(--navy); margin-bottom: 28px;
}
.editorial__body { font-size: 1rem; line-height: 1.75; color: var(--muted); margin-bottom: 36px; }
.editorial__body p { margin-bottom: 16px; }
.editorial__cta {
  font-size: .8125rem; letter-spacing: .1em; text-transform: uppercase; color: var(--navy);
  display: inline-flex; align-items: center; gap: 8px;
  transition: gap 300ms ease, opacity 200ms ease;
}
.editorial__cta:hover { gap: 14px; opacity: .6; }

.editorial--reversed .editorial__img-wrap { order: 2; }
.editorial--reversed .editorial__copy { order: 1; }

@media (min-width: 768px) {
  .editorial__grid { grid-template-columns: 40fr 60fr; min-height: 70vh; }
  .editorial__img-wrap { aspect-ratio: auto; order: 2; }
  .editorial__copy { order: 1; padding: clamp(60px,10vw,120px) clamp(40px,6vw,80px); }
  .editorial--reversed .editorial__img-wrap { order: 1; }
  .editorial--reversed .editorial__copy { order: 2; }
}

/* ═══════════════════════════════════════════════════════
   COLLECTIONS GRID
═══════════════════════════════════════════════════════ */
.collections { background: var(--navy); padding: var(--pad-section) 0; }
.collections__head { text-align: center; padding: 0 var(--pad-h); margin-bottom: clamp(36px,6vw,64px); }
.collections__title {
  font-family: var(--serif); font-size: var(--h2); font-weight: 300;
  letter-spacing: -.02em; color: var(--cream); margin-top: 14px;
}
.collections__grid { display: grid; grid-template-columns: 1fr; gap: 2px; }
.col-card { position: relative; overflow: hidden; aspect-ratio: 3/4; display: block; }
.col-card__img { width: 100%; height: 100%; object-fit: cover; transition: transform 700ms var(--ease); }
.col-card:hover .col-card__img { transform: scale(1.03); }
.col-card__veil {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(26,26,46,.78) 0%, rgba(26,26,46,.2) 55%, transparent 100%);
  transition: background 400ms ease;
}
.col-card:hover .col-card__veil {
  background: linear-gradient(to top, rgba(26,26,46,.65) 0%, rgba(26,26,46,.28) 65%, rgba(26,26,46,.08) 100%);
}
.col-card__copy { position: absolute; bottom: 0; left: 0; right: 0; padding: 28px 26px 32px; }
.col-card__badge {
  display: inline-block; font-size: .625rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--navy); background: var(--gold); padding: 4px 10px; margin-bottom: 10px;
}
.col-card__name {
  font-family: var(--serif); font-size: clamp(1.5rem,2.4vw,2.1rem); font-weight: 300;
  letter-spacing: -.01em; color: var(--cream); line-height: 1.15; margin-bottom: 8px;
}
.col-card__sub { font-size: .8125rem; color: rgba(255,252,242,.55); letter-spacing: .02em; }

@media (min-width: 640px)  { .collections__grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 1024px) { .collections__grid { grid-template-columns: repeat(3,1fr); } }

/* ═══════════════════════════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════════════════════════ */
.testimonials { padding: var(--pad-section) 0; border-top: 1px solid var(--border); }
.testimonials__wrap { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--pad-h); }
.testimonials__head { text-align: center; margin-bottom: clamp(40px,7vw,72px); }
.testimonials__h2 {
  font-family: var(--serif); font-size: var(--h2); font-weight: 300;
  letter-spacing: -.025em; color: var(--navy); margin-top: 14px;
}
.testimonials__grid { display: grid; grid-template-columns: 1fr; }
.testi {
  padding: 32px 0; border-bottom: 1px solid var(--border);
}
.testi:last-child { border-bottom: none; }
.testi__quote {
  font-family: var(--serif); font-size: 1.1rem; font-weight: 300; font-style: italic;
  line-height: 1.65; color: var(--navy); margin-bottom: 18px;
}
.testi__quote::before { content: '\201C'; color: var(--gold); opacity: .55; }
.testi__quote::after  { content: '\201D'; color: var(--gold); opacity: .55; }
.testi__author { font-size: var(--caption); letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
.testi__location { font-size: var(--caption); color: var(--muted); opacity: .7; }

@media (min-width: 768px) {
  .testimonials__grid { grid-template-columns: repeat(2,1fr); gap: 0; }
  .testi {
    padding: 0 clamp(16px,4vw,56px);
    border-bottom: none;
    border-right: 1px solid var(--border);
  }
  .testi:last-child { border-right: none; }
  .testi:first-child { padding-left: 0; }
}

/* ═══════════════════════════════════════════════════════
   SLEEP ASSESSMENT / QUIZ
═══════════════════════════════════════════════════════ */
.assessment {
  background: var(--cream);
  padding: var(--pad-section) var(--pad-h);
  border-top: 1px solid var(--border);
}
.assessment__inner { max-width: 860px; margin: 0 auto; }
.assessment__head { text-align: center; margin-bottom: clamp(40px,7vw,72px); }
.assessment__h2 {
  font-family: var(--serif); font-size: var(--h2); font-weight: 300;
  line-height: 1.1; letter-spacing: -.025em; color: var(--navy); margin: 14px 0 12px;
}
.assessment__sub { color: var(--muted); font-size: .9375rem; }

.q-block { animation: fadeIn 300ms var(--ease) forwards; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }

.q-label {
  font-family: var(--serif); font-size: clamp(1.4rem,5vw,1.9rem); font-weight: 300;
  letter-spacing: -.02em; color: var(--navy);
  text-align: left; margin-bottom: clamp(28px,5vw,48px);
}
.q-options { display: grid; grid-template-columns: 1fr; gap: 12px; }
.q-option {
  padding: 22px 20px; border: 1px solid var(--border); cursor: pointer;
  transition: border-color 250ms ease, background 250ms ease; text-align: left;
  background: none; font-family: var(--sans);
}
.q-option:hover { border-color: var(--gold); background: rgba(201,169,110,.04); }
.q-option__label {
  font-family: var(--serif); font-size: 1.05rem; font-weight: 400;
  color: var(--navy); line-height: 1.4; margin-bottom: 6px; pointer-events: none;
}
.q-option__sub { font-size: .8125rem; color: var(--muted); line-height: 1.5; pointer-events: none; }

.result-block { text-align: center; animation: fadeIn 400ms var(--ease) forwards; }
.result-img {
  width: 100%; max-width: 480px; aspect-ratio: 4/3; object-fit: cover;
  margin: 0 auto 40px; display: block;
}
.result-name {
  font-family: var(--serif); font-size: var(--h2); font-weight: 300;
  letter-spacing: -.025em; color: var(--navy); margin: 14px 0 12px;
}
.result-reason {
  font-size: 1rem; color: var(--muted); line-height: 1.7;
  margin: 0 auto 36px; max-width: 480px;
}
.result-cta {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: .8125rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--cream); background: var(--navy);
  padding: 16px 36px; border: 1px solid var(--navy); margin-bottom: 16px;
  transition: transform 300ms ease, box-shadow 300ms ease;
}
.result-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(26,26,46,.2); }
.result-alt {
  display: block; font-size: .8125rem; color: var(--muted);
  letter-spacing: .05em; text-decoration: underline; text-underline-offset: 3px;
  transition: color 200ms ease;
}
.result-alt:hover { color: var(--navy); }

@media (min-width: 640px) {
  .q-options { grid-template-columns: repeat(3,1fr); gap: 16px; }
  .q-option { padding: 28px 24px; }
  .q-label { text-align: center; }
}

/* ═══════════════════════════════════════════════════════
   PRODUCT WRAP + GALLERY
═══════════════════════════════════════════════════════ */
.product-wrap {
  display: grid; grid-template-columns: 1fr;
  margin-top: 72px; align-items: start;
}
@media (min-width: 768px) {
  .product-wrap { grid-template-columns: 55fr 45fr; }
}

/* Gallery — mobile first */
.gallery { position: static; }
.gallery__slider {
  position: relative; overflow: hidden;
  aspect-ratio: 4/5; background: #f0ede6;
  touch-action: pan-y;
}
.gallery__images {
  display: flex; flex-direction: row; height: 100%;
  transition: transform 380ms var(--ease);
  will-change: transform;
}
.gallery__img {
  flex: 0 0 100%; width: 100%; height: 100%;
  object-fit: cover; display: block; aspect-ratio: unset;
}

/* Arrows — hidden mobile by default */
.gallery__prev, .gallery__next { display: none; }

/* Dots — mobile only */
.gallery__dots {
  display: flex; justify-content: center; align-items: center;
  gap: 8px; padding: 14px 0 6px;
}
.gallery__dot {
  width: 4px; height: 4px; border-radius: 50%;
  background: var(--navy); opacity: .18;
  border: none; padding: 0; cursor: pointer;
  transition: opacity 300ms ease, width 300ms ease;
}
.gallery__dot.active { opacity: .9; width: 16px; border-radius: 2px; }

/* Thumbnails — hidden mobile */
.gallery__thumbs { display: none; }
.gallery__thumb {
  object-fit: cover; cursor: pointer;
  opacity: .45; border: 1px solid transparent;
  transition: opacity 200ms ease, border-color 200ms ease;
}
.gallery__thumb:hover   { opacity: .75; }
.gallery__thumb.active  { opacity: 1; border-color: rgba(26,26,46,.4); }

/* Desktop gallery: side thumbs + fade main image */
@media (min-width: 768px) {
  .gallery {
    position: sticky; top: 72px;
    height: calc(100vh - 72px);
    display: grid;
    grid-template-columns: 72px 1fr;
    grid-template-rows: 1fr;
    gap: 6px; overflow: hidden;
  }
  .gallery__thumbs {
    display: flex; flex-direction: column; gap: 5px;
    overflow-y: auto; scrollbar-width: none;
    order: 1; padding: 0; background: none;
  }
  .gallery__thumbs::-webkit-scrollbar { display: none; }
  .gallery__thumb { width: 72px; height: 72px; flex: none; }
  .gallery__slider {
    order: 2; aspect-ratio: unset; height: 100%;
    overflow: hidden; position: relative;
    background: #f0ede6; touch-action: auto;
  }
  .gallery__images {
    position: absolute; inset: 0; height: 100%;
    transform: none !important; display: block;
  }
  .gallery__img {
    position: absolute; inset: 0;
    width: 100%; height: 100%; object-fit: cover;
    flex: none; opacity: 0; transition: opacity 550ms ease;
  }
  .gallery__img.active { opacity: 1; }
  .gallery__prev, .gallery__next {
    display: flex; position: absolute;
    top: 50%; transform: translateY(-50%);
    background: rgba(255,252,242,.9); border: none;
    width: 40px; height: 40px;
    align-items: center; justify-content: center;
    font-size: .875rem; color: var(--navy);
    cursor: pointer; z-index: 3;
    opacity: 0; transition: opacity 200ms ease, background 200ms ease;
  }
  .gallery__slider:hover .gallery__prev,
  .gallery__slider:hover .gallery__next { opacity: 1; }
  .gallery__prev { left: 14px; }
  .gallery__next { right: 14px; }
  .gallery__prev:hover, .gallery__next:hover { background: rgba(255,252,242,1); }
  .gallery__dots { display: none; }
}

/* ─── PRODUCT INFO ────────────────────────────────── */
.product-info {
  padding: 40px var(--pad-h) 64px;
  min-height: auto;
}
@media (min-width: 768px) {
  .product-info {
    padding: clamp(52px,6vw,80px) clamp(36px,5vw,64px);
    min-height: calc(100vh - 72px);
    overflow-y: auto; scrollbar-width: none;
  }