:root {
  --paper: #f7f5ef;
  --white: #fff;
  --ink: #171816;
  --muted: #696a64;
  --line: rgba(23, 24, 22, .13);
  --orange: #f2a246;
  --lilac: #d7b9e8;
  --green: #bdd49f;
  --coral: #ef8f7f;
  --blue: #6877b8;
  --cream: #efe3ca;
  --radius: 28px;
  --shadow: 0 24px 70px rgba(28, 29, 25, .12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html:not(.is-ready) { overflow: hidden; }
body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: "Manrope", sans-serif;
  -webkit-font-smoothing: antialiased;
}
button, input { color: inherit; font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { cursor: pointer; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
::selection { background: var(--orange); color: var(--ink); }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.loader {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  background: #d8b9e9;
  transition: opacity .7s ease, visibility .7s ease;
}
.loader::before, .loader::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 22%;
}
.loader::before { left: 0; background: #a8dbea; }
.loader::after { right: 0; background: #ef9b92; }
.loader.is-done { opacity: 0; visibility: hidden; pointer-events: none; }
.loader__brand { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; }
.loader__brand img { height: 112px; width: auto; margin-bottom: 18px; object-fit: contain; }
.loader__brand strong { font-size: 18px; font-weight: 800; letter-spacing: -.04em; text-transform: uppercase; }
.loader__brand > span { margin-top: 4px; color: rgba(23,24,22,.65); font-size: 9px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.loader__line { width: 130px; height: 2px; margin-top: 22px; overflow: hidden; background: rgba(23,24,22,.18); }
.loader__line i { display: block; width: 42%; height: 100%; background: var(--ink); animation: load 1.05s ease-in-out infinite; }
@keyframes load { from { transform: translateX(-110%); } to { transform: translateX(340%); } }

.announcement {
  position: relative;
  z-index: 60;
  display: flex;
  min-height: 30px;
  align-items: center;
  justify-content: center;
  gap: 80px;
  padding: 6px 24px;
  background: var(--ink);
  color: white;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .12em;
  text-align: center;
  text-transform: uppercase;
}
.announcement p { margin: 0; }
.site-header {
  position: fixed;
  z-index: 50;
  top: 30px;
  right: 0;
  left: 0;
  border-bottom: 1px solid transparent;
  transition: background .3s ease, border-color .3s ease, backdrop-filter .3s ease;
}
.site-header.is-scrolled { border-color: var(--line); background: rgba(247,245,239,.9); backdrop-filter: blur(18px); }
.nav-wrap {
  display: grid;
  width: min(100% - 48px, 1380px);
  min-height: 74px;
  margin: auto;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}
.brand { display: inline-flex; align-items: center; gap: 10px; justify-self: start; }
.brand img { width: 29px; height: 38px; object-fit: contain; }
.brand strong { font-size: 15px; font-weight: 800; letter-spacing: -.04em; text-transform: uppercase; }
.desktop-nav { display: flex; align-items: center; gap: 34px; }
.desktop-nav a { position: relative; font-size: 12px; font-weight: 700; }
.desktop-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  background: var(--ink);
  transform: scaleX(0);
  transition: transform .25s ease;
}
.desktop-nav a:hover::after { transform: scaleX(1); }
.nav-actions { display: flex; align-items: center; justify-self: end; gap: 6px; }
.icon-button, .cart-button, .menu-button {
  position: relative;
  display: grid;
  width: 42px;
  height: 42px;
  padding: 0;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255,255,255,.3);
}
.icon-button svg, .cart-button svg { width: 19px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.7; }
.cart-count {
  position: absolute;
  top: -2px;
  right: -2px;
  display: grid;
  width: 17px;
  height: 17px;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: white;
  font-size: 8px;
  font-weight: 800;
}
.cart-count.bump { animation: bump .38s ease; }
@keyframes bump { 50% { transform: scale(1.35); } }
.menu-button { display: none; }
.mobile-menu { display: none; }

.hero {
  position: relative;
  min-height: max(720px, 100svh);
  overflow: hidden;
  background: #f2eee7;
}
.hero__stripes { position: absolute; inset: 0 0 0 51%; display: flex; transition: opacity 1.1s ease; }
.hero__stripes i { flex: 1; transition: background 1.25s cubic-bezier(.22,1,.36,1); }
.hero__stripes i:nth-child(1) { background: #91d4e6; }
.hero__stripes i:nth-child(2) { background: #ec9b91; }
.hero__stripes i:nth-child(3) { background: #68cbd0; }
.hero__stripes i:nth-child(4) { background: #d9a7d8; }
.hero__stripes i:nth-child(5) { background: #f5c3b8; }
.hero[data-slide="1"] .hero__stripes i:nth-child(1) { background: #c9b8e8; }
.hero[data-slide="1"] .hero__stripes i:nth-child(2) { background: #9fd4c8; }
.hero[data-slide="1"] .hero__stripes i:nth-child(3) { background: #b7d89a; }
.hero[data-slide="1"] .hero__stripes i:nth-child(4) { background: #f0c28a; }
.hero[data-slide="1"] .hero__stripes i:nth-child(5) { background: #e8b4d4; }
.hero[data-slide="2"] .hero__stripes i:nth-child(1) { background: #9aa8d8; }
.hero[data-slide="2"] .hero__stripes i:nth-child(2) { background: #7f8fc4; }
.hero[data-slide="2"] .hero__stripes i:nth-child(3) { background: #c4b0e0; }
.hero[data-slide="2"] .hero__stripes i:nth-child(4) { background: #6b7ab0; }
.hero[data-slide="2"] .hero__stripes i:nth-child(5) { background: #a8b6e0; }
.hero__stripes::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .2;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.12'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
  pointer-events: none;
}
.hero__orb { position: absolute; border-radius: 50%; filter: blur(2px); transition: transform 1.25s cubic-bezier(.22,1,.36,1), opacity 1s ease; }
.hero__orb--one { top: 17%; right: 6%; width: 70px; height: 70px; border: 1px solid rgba(255,255,255,.55); }
.hero__orb--two { right: 43%; bottom: 12%; width: 24px; height: 24px; background: #fbdc5c; }
.hero[data-slide="1"] .hero__orb--two { background: #9ad4c0; transform: translate(-20px, -30px); }
.hero[data-slide="2"] .hero__orb--two { background: #b8c4f0; transform: translate(12px, 18px); }

.hero__stage {
  position: relative;
  z-index: 1;
  min-height: max(720px, 100svh);
}
.hero-slide {
  position: absolute;
  inset: 0;
  display: grid;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(48px);
  transition:
    opacity 1.05s cubic-bezier(.22,1,.36,1),
    transform 1.15s cubic-bezier(.22,1,.36,1),
    visibility 1.15s;
}
.hero-slide.is-active {
  position: relative;
  height: 100%;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(0);
}
.hero-slide.is-leaving {
  opacity: 0;
  transform: translateX(-36px);
}
.hero.is-reverse .hero-slide { transform: translateX(-48px); }
.hero.is-reverse .hero-slide.is-active { transform: translateX(0); }
.hero.is-reverse .hero-slide.is-leaving { transform: translateX(36px); }

.hero__content {
  display: grid;
  width: min(100% - 120px, 1280px);
  min-height: max(720px, 100svh);
  margin: auto;
  grid-template-columns: 47% 53%;
  align-items: center;
  padding-top: 104px;
  padding-bottom: 48px;
}
.hero__copy { max-width: 630px; padding: 55px 7vw 55px 0; }
.hero-slide .hero__copy > * {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity .85s cubic-bezier(.22,1,.36,1),
    transform .95s cubic-bezier(.22,1,.36,1);
}
body.is-ready .hero-slide.is-active .hero__copy > *:nth-child(1) { transition-delay: .18s; }
body.is-ready .hero-slide.is-active .hero__copy > *:nth-child(2) { transition-delay: .3s; }
body.is-ready .hero-slide.is-active .hero__copy > *:nth-child(3) { transition-delay: .42s; }
body.is-ready .hero-slide.is-active .hero__copy > * {
  opacity: 1;
  transform: translateY(0);
}
.eyebrow {
  margin: 0 0 19px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; display: inline-block; width: 22px; height: 1px; margin: 0 10px 3px 0; background: currentColor; }
h1, h2, h3, p { text-wrap: balance; }
h1 {
  margin: 0;
  font-size: clamp(52px, 5.5vw, 92px);
  font-weight: 800;
  letter-spacing: -.075em;
  line-height: .94;
}
h1 em, h2 em { color: var(--orange); font-style: normal; font-weight: inherit; }
.hero__intro { max-width: 490px; margin: 28px 0 0; color: var(--muted); font-size: 15px; line-height: 1.75; }
.hero__actions { display: flex; align-items: center; gap: 30px; margin-top: 34px; }
.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 38px;
  padding: 0 24px;
  border: 0;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}
.button:hover { transform: translateY(-3px); box-shadow: 0 14px 30px rgba(20,20,18,.16); }
.button--dark { background: var(--ink); color: white; }
.button--light { background: white; color: var(--ink); }
.text-link { display: inline-flex; align-items: center; gap: 15px; padding-bottom: 4px; border-bottom: 1px solid currentColor; font-size: 11px; font-weight: 800; }
.text-link span { transition: transform .2s ease; }
.text-link:hover span { transform: translateX(4px); }
.hero__visual { position: relative; display: grid; height: 100%; min-height: 620px; place-items: center; }
.hero__word {
  position: absolute;
  margin: 0;
  color: rgba(255,255,255,.32);
  font-size: clamp(75px, 10vw, 165px);
  font-weight: 800;
  letter-spacing: -.08em;
  line-height: 1;
  transform: rotate(-90deg) scale(.94);
  white-space: nowrap;
  opacity: 0;
  transition: opacity 1s ease, transform 1.15s cubic-bezier(.22,1,.36,1);
}
.hero-slide.is-active .hero__word {
  transition-delay: .28s;
}
body.is-ready .hero-slide.is-active .hero__word {
  opacity: 1;
  transform: rotate(-90deg) scale(1);
}
.hero-product-wrap {
  position: relative;
  z-index: 2;
  width: min(63%, 470px);
  opacity: 0;
  transform: translateY(48px) scale(.82) rotate(-10deg);
  transition:
    opacity 1.05s cubic-bezier(.22,1,.36,1),
    transform 1.2s cubic-bezier(.16,1,.3,1);
}
.hero-slide.is-active .hero-product-wrap {
  transition-delay: .14s;
}
body.is-ready .hero-slide.is-active .hero-product-wrap {
  opacity: 1;
  transform: translateY(0) scale(1) rotate(8deg);
}
body.is-ready .hero-slide.is-active .hero-product {
  animation: heroFloat 4.2s ease-in-out 1.1s infinite;
}
.hero-product { width: 100%; max-height: 650px; object-fit: contain; filter: drop-shadow(0 45px 38px rgba(52,39,20,.28)); }
@keyframes heroFloat { 0%,100% { transform: translateY(0) rotate(0); } 50% { transform: translateY(-13px) rotate(2deg); } }

.hero__controls {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
}
.hero-arrow {
  position: absolute;
  top: 50%;
  z-index: 1;
  display: grid;
  width: 72px;
  height: 72px;
  place-items: center;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  pointer-events: auto;
  transform: translateY(-50%);
  transition: opacity .25s ease, transform .25s ease;
}
.hero-arrow--prev { left: max(10px, calc((100% - 1380px) / 2 + 4px)); }
.hero-arrow--next { right: max(10px, calc((100% - 1380px) / 2 + 4px)); }
.hero-arrow svg {
  width: 36px;
  height: 36px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.2;
}
.hero-arrow:hover {
  opacity: .55;
  transform: translateY(-50%) scale(1.08);
}
.hero-arrow:active { transform: translateY(-50%) scale(.94); }

.benefit-bar {
  display: grid;
  width: min(100% - 48px, 1380px);
  margin: auto;
  padding: 28px 0;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid var(--line);
}
.benefit-bar > div { display: flex; align-items: center; justify-content: center; gap: 18px; border-right: 1px solid var(--line); }
.benefit-bar > div:last-child { border: 0; }
.benefit-bar span { color: var(--orange); font-size: 11px; font-weight: 800; }
.benefit-bar p { margin: 0; color: var(--muted); font-size: 9px; line-height: 1.6; }
.benefit-bar strong { display: block; color: var(--ink); font-size: 11px; }

.section { width: min(100% - 48px, 1380px); margin: auto; padding: 120px 0; }
.section-head { display: flex; align-items: end; justify-content: space-between; gap: 30px; }
.section-head h2, .routine-card h2, .reviews-intro h2, .newsletter h2 {
  margin: 0;
  font-size: clamp(42px, 5vw, 72px);
  font-weight: 800;
  letter-spacing: -.065em;
  line-height: .98;
}
.section-head__copy { width: 360px; margin: 0 0 5px; color: var(--muted); font-size: 13px; line-height: 1.7; }
.filter-row { display: flex; gap: 8px; margin-top: 46px; }
.filter {
  min-width: 92px;
  padding: 11px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  font-size: 10px;
  font-weight: 700;
  transition: .2s ease;
}
.filter:hover, .filter.is-active { border-color: var(--ink); background: var(--ink); color: white; }
.product-rail { display: grid; margin-top: 30px; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 14px; }
.product-card { min-width: 0; transition: opacity .25s ease, transform .25s ease; }
.product-card.is-hidden { display: none; }
.product-card__image { position: relative; aspect-ratio: .82; overflow: hidden; border-radius: 24px; }
.product-card__image--lilac { background: #dfcaeb; }
.product-card__image--green { background: #c9dbb4; }
.product-card__image--orange { background: #f2c17d; }
.product-card__image--coral { background: #f0a092; }
.product-card__image--blue { background: #929ed0; }
.product-card__image img { width: 100%; height: 100%; padding: 13%; object-fit: contain; transition: transform .45s cubic-bezier(.2,.8,.2,1); }
.product-card:hover .product-card__image img { transform: translateY(-7px) rotate(2deg) scale(1.035); }
.product-card__image--orange img { padding: 8%; }
.pill { position: absolute; z-index: 2; top: 13px; left: 13px; padding: 6px 10px; border-radius: 999px; background: white; font-size: 8px; font-weight: 800; text-transform: uppercase; }
.heart-button {
  position: absolute;
  z-index: 2;
  top: 10px;
  right: 10px;
  display: grid;
  width: 34px;
  height: 34px;
  padding: 0;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: rgba(255,255,255,.72);
  font-size: 18px;
}
.heart-button.is-liked { background: var(--ink); color: white; }
.product-card__meta { display: flex; min-height: 92px; align-items: flex-start; justify-content: space-between; gap: 12px; padding: 17px 3px 12px; }
.product-card__meta p { margin: 0 0 5px; color: var(--muted); font-size: 8px; text-transform: uppercase; }
.product-card__meta h3 { margin: 0; font-size: 12px; line-height: 1.35; }
.product-card__meta > strong { padding-top: 17px; font-size: 11px; white-space: nowrap; }
.add-button {
  display: flex;
  width: 100%;
  height: 42px;
  align-items: center;
  justify-content: space-between;
  padding: 0 15px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  font-size: 9px;
  font-weight: 800;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.add-button span { font-size: 17px; font-weight: 400; }
.add-button:hover { border-color: var(--ink); background: var(--ink); color: white; }
.rail-progress { display: none; }

.routine-section { padding-top: 20px; }
.routine-card {
  position: relative;
  display: grid;
  min-height: 650px;
  overflow: hidden;
  grid-template-columns: .9fr 1.1fr;
  border-radius: 38px;
  background: #222952;
  color: white;
}
.routine-card__copy { position: relative; z-index: 2; align-self: center; max-width: 580px; padding: 80px; }
.routine-card__copy .eyebrow { color: #bdc6ff; }
.routine-card h2 { font-size: clamp(48px, 5.5vw, 80px); }
.routine-card h2 em { color: #aeb9ef; }
.routine-card__copy > p:not(.eyebrow) { max-width: 480px; margin: 25px 0 0; color: rgba(255,255,255,.6); font-size: 13px; line-height: 1.8; }
.routine-card ul { display: grid; gap: 12px; margin: 28px 0 34px; padding: 0; list-style: none; color: rgba(255,255,255,.82); font-size: 11px; }
.routine-card li { display: flex; align-items: center; gap: 12px; }
.routine-card li span { display: grid; width: 22px; height: 22px; place-items: center; border-radius: 50%; background: rgba(255,255,255,.1); font-size: 8px; }
.routine-card__visual { position: relative; min-height: 650px; }
.routine-card__visual img {
  position: absolute;
  z-index: 2;
  right: -4%;
  bottom: -18%;
  width: min(70%, 510px);
  filter: drop-shadow(0 40px 40px rgba(0,0,0,.3));
  animation: slowFloat 6s ease-in-out infinite;
}
@keyframes slowFloat { 0%,100% { transform: translateY(0) rotate(0); } 50% { transform: translateY(-16px) rotate(-2deg); } }
.routine-card__circle { position: absolute; top: 15%; right: 4%; width: 72%; aspect-ratio: 1; border: 1px solid rgba(255,255,255,.14); border-radius: 50%; }
.routine-card__circle::before, .routine-card__circle::after { content: ""; position: absolute; inset: 13%; border: 1px solid rgba(255,255,255,.1); border-radius: 50%; }
.routine-card__circle::after { inset: 28%; }
.routine-card__outline { position: absolute; top: 10%; right: -5%; color: transparent; font-size: 160px; font-weight: 800; letter-spacing: -.08em; -webkit-text-stroke: 1px rgba(255,255,255,.08); }

.steps-section { padding-top: 40px; }
.steps-grid { display: grid; margin-top: 58px; grid-template-columns: 1.2fr .8fr; grid-template-rows: repeat(2, 330px); gap: 14px; }
.step-card { position: relative; overflow: hidden; border-radius: 28px; }
.step-card--morning { grid-row: 1 / 3; background: #dfcaeb; }
.step-card--day { background: #cadcb4; }
.step-card--night { background: #a6b1df; }
.step-card__copy { position: relative; z-index: 3; max-width: 290px; padding: 34px; }
.step-card__copy span { font-size: 9px; font-weight: 800; letter-spacing: .13em; }
.step-card__copy h3 { margin: 10px 0; font-size: 26px; letter-spacing: -.05em; }
.step-card__copy p { margin: 0; color: rgba(23,24,22,.62); font-size: 11px; line-height: 1.65; }
.step-card img { position: absolute; z-index: 2; object-fit: contain; filter: drop-shadow(0 30px 25px rgba(44,38,36,.18)); transition: transform .5s ease; }
.step-card:hover img { transform: translateY(-8px) rotate(2deg); }
.step-card--morning img { right: -5%; bottom: -10%; width: 68%; }
.step-card--day img, .step-card--night img { right: -4%; bottom: -24%; width: 48%; }
.step-card--night { color: white; }
.step-card--night .step-card__copy p { color: rgba(255,255,255,.68); }
.step-card::after { content: ""; position: absolute; z-index: 1; right: -12%; bottom: -30%; width: 70%; aspect-ratio: 1; border: 1px solid rgba(255,255,255,.35); border-radius: 50%; }

.reviews-section { display: grid; grid-template-columns: .75fr 1.75fr; gap: 70px; border-top: 1px solid var(--line); }
.reviews-intro { align-self: center; }
.reviews-intro h2 { font-size: clamp(38px, 4vw, 62px); }
.stars { color: #e49031; font-size: 12px; letter-spacing: .12em; }
.reviews-intro .stars { margin-top: 25px; }
.stars span { margin-left: 10px; color: var(--muted); font-size: 9px; font-weight: 700; letter-spacing: 0; }
.reviews-rail { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.review-card { display: flex; min-height: 330px; margin: 0; padding: 28px; flex-direction: column; justify-content: space-between; border: 1px solid var(--line); border-radius: 24px; background: white; }
.review-card > p { margin: 24px 0 auto; font-size: 13px; line-height: 1.8; }
.review-card footer { display: flex; align-items: center; gap: 11px; padding-top: 25px; }
.review-card footer > span { display: grid; width: 35px; height: 35px; place-items: center; border-radius: 50%; background: var(--paper); font-size: 10px; font-weight: 800; }
.review-card footer strong, .review-card footer small { display: block; font-size: 9px; }
.review-card footer small { margin-top: 3px; color: var(--muted); }

.newsletter { padding-top: 20px; }
.newsletter__card { position: relative; overflow: hidden; padding: 90px 24px; border-radius: 38px; background: #ef9e91; text-align: center; }
.newsletter__card > div { position: relative; z-index: 2; max-width: 620px; margin: auto; }
.newsletter h2 { font-size: clamp(48px, 6vw, 86px); }
.newsletter h2 em { color: white; }
.newsletter__card > div > p:not(.eyebrow) { max-width: 490px; margin: 20px auto 0; color: rgba(23,24,22,.64); font-size: 12px; line-height: 1.7; }
.newsletter-form { display: flex; max-width: 480px; margin: 30px auto 0; padding: 5px; border-radius: 999px; background: white; }
.newsletter-form input { min-width: 0; flex: 1; padding: 0 18px; border: 0; outline: 0; font-size: 11px; }
.newsletter-form button { min-height: 47px; padding: 0 20px; border: 0; border-radius: 999px; background: var(--ink); color: white; font-size: 9px; font-weight: 800; }
.newsletter__card small { display: block; margin-top: 12px; color: rgba(23,24,22,.48); font-size: 7px; }
.newsletter__product { position: absolute; z-index: 1; width: 270px; filter: drop-shadow(0 35px 25px rgba(40,28,28,.2)); }
.newsletter__product--left { bottom: -20%; left: -3%; transform: rotate(-18deg); }
.newsletter__product--right { right: -1%; bottom: -28%; transform: rotate(15deg); }

.site-footer { padding: 10px 24px 25px; background: var(--ink); color: white; }
.footer-main { display: grid; width: min(100%, 1380px); margin: auto; padding: 70px 0; grid-template-columns: 2fr repeat(3, 1fr); gap: 50px; }
.footer-brand .brand img { filter: saturate(.85) brightness(1.2); }
.footer-brand p { max-width: 330px; margin: 22px 0 0; color: rgba(255,255,255,.48); font-size: 11px; line-height: 1.7; }
.footer-links { display: flex; flex-direction: column; gap: 13px; }
.footer-links strong { margin-bottom: 10px; font-size: 9px; letter-spacing: .14em; text-transform: uppercase; }
.footer-links a { color: rgba(255,255,255,.55); font-size: 10px; transition: color .2s ease; }
.footer-links a:hover { color: white; }
.footer-bottom { display: flex; width: min(100%, 1380px); margin: auto; padding-top: 25px; align-items: center; justify-content: space-between; border-top: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.35); font-size: 8px; }
.footer-bottom div { display: flex; gap: 22px; }

.search-panel {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  display: grid;
  min-height: 310px;
  place-items: center;
  background: var(--paper);
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(-100%);
  visibility: hidden;
  transition: .42s cubic-bezier(.2,.8,.2,1);
}
.search-panel.is-open { opacity: 1; transform: translateY(0); visibility: visible; }
.search-panel__close { position: absolute; top: 25px; right: 30px; width: 42px; height: 42px; border: 1px solid var(--line); border-radius: 50%; background: transparent; font-size: 24px; }
.search-panel form { width: min(100% - 48px, 650px); }
.search-panel label { display: block; margin-bottom: 16px; font-size: 28px; font-weight: 800; letter-spacing: -.04em; }
.search-panel form div { display: flex; border-bottom: 1px solid var(--ink); }
.search-panel input { min-width: 0; flex: 1; padding: 15px 0; border: 0; background: transparent; outline: 0; font-size: 14px; }
.search-panel form button { border: 0; background: transparent; font-size: 10px; font-weight: 800; }
.toast {
  position: fixed;
  z-index: 90;
  right: 22px;
  bottom: 22px;
  display: flex;
  min-width: 250px;
  align-items: center;
  gap: 12px;
  padding: 14px;
  border-radius: 18px;
  background: var(--ink);
  color: white;
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(30px);
  visibility: hidden;
  transition: .3s ease;
}
.toast.is-visible { opacity: 1; transform: translateY(0); visibility: visible; }
.toast > span { display: grid; width: 30px; height: 30px; place-items: center; border-radius: 50%; background: #bfd59e; color: var(--ink); }
.toast p { margin: 0; }
.toast strong, .toast small { display: block; font-size: 9px; }
.toast small { margin-top: 3px; color: rgba(255,255,255,.55); }
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1100px) {
  .product-rail { grid-template-columns: repeat(3, 1fr); }
  .product-card:nth-child(n+4) { display: none; }
  .routine-card__copy { padding: 60px; }
  .reviews-section { grid-template-columns: 1fr; gap: 40px; }
  .newsletter__product { width: 220px; }
}

@media (max-width: 760px) {
  :root { --radius: 22px; }
  .announcement { min-height: 27px; padding: 6px 15px; font-size: 8px; }
  .announcement__desktop, .desktop-nav, .search-button { display: none; }
  .site-header { top: 27px; }
  .nav-wrap { width: calc(100% - 30px); min-height: 64px; grid-template-columns: 1fr auto; }
  .brand img { width: 25px; height: 33px; }
  .brand strong { font-size: 13px; }
  .icon-button, .cart-button, .menu-button { width: 38px; height: 38px; }
  .menu-button { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px; }
  .menu-button span { width: 16px; height: 1px; background: currentColor; transition: .25s ease; }
  .menu-button.is-open span:first-child { transform: translateY(3.5px) rotate(45deg); }
  .menu-button.is-open span:last-child { transform: translateY(-3.5px) rotate(-45deg); }
  .mobile-menu {
    position: absolute;
    top: calc(100% + 5px);
    right: 15px;
    left: 15px;
    display: grid;
    overflow: hidden;
    grid-template-rows: 0fr;
    border-radius: 23px;
    background: var(--ink);
    color: white;
    opacity: 0;
    transform: translateY(-10px);
    visibility: hidden;
    transition: grid-template-rows .35s ease, opacity .3s ease, transform .35s ease, visibility .35s;
  }
  .mobile-menu.is-open { grid-template-rows: 1fr; opacity: 1; transform: translateY(0); visibility: visible; }
  .mobile-menu__inner { min-height: 0; overflow: hidden; padding: 7px 22px; }
  .mobile-menu a { display: flex; padding: 18px 0; align-items: center; justify-content: space-between; border-bottom: 1px solid rgba(255,255,255,.12); font-size: 16px; font-weight: 700; }
  .mobile-menu p { padding: 8px 0 10px; color: rgba(255,255,255,.45); font-size: 9px; }

  .hero {
    height: calc(100svh - 27px);
    min-height: 560px;
    max-height: calc(100svh - 27px);
  }
  .hero__stage {
    height: 100%;
    min-height: 0;
  }
  .hero__stripes { inset: 0; height: 54%; }
  .hero__stripes::before { content: ""; position: absolute; z-index: 1; inset: 72% 0 0; background: linear-gradient(transparent, #f2eee7); }
  .hero__content {
    width: calc(100% - 30px);
    height: 100%;
    min-height: 0;
    padding-top: 68px;
    padding-bottom: 18px;
    grid-template-columns: 1fr;
    grid-template-rows: minmax(0, 1fr) auto;
    align-content: stretch;
    align-items: center;
    gap: 0;
  }
  .hero__visual {
    grid-row: 1;
    min-height: 0;
    height: 100%;
    max-height: none;
    margin-bottom: 8px;
    place-items: end center;
    transform: translateY(-25%);
  }
  .hero__copy {
    grid-row: 2;
    max-width: none;
    padding: 0 3px;
    text-align: center;
    align-self: end;
    transform: translateY(-35%);
  }
  h1 { font-size: clamp(28px, 8vw, 38px); line-height: .96; }
  .hero__intro { max-width: 320px; margin: 10px auto 0; font-size: 11px; line-height: 1.5; }
  .hero__actions {
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px 14px;
    margin-top: 12px;
  }
  .button { min-height: 42px; gap: 18px; padding: 0 16px; font-size: 9px; }
  .hero__actions .text-link { font-size: 9px; }
  .hero-product-wrap { width: clamp(140px, 38svh, 200px); max-width: 52%; margin-bottom: 0; }
  .hero-product { max-height: clamp(180px, 36svh, 280px); }
  .hero__word { font-size: clamp(44px, 13vw, 58px); transform: none; top: auto; bottom: 18%; }
  body.is-ready .hero-slide.is-active .hero__word,
  .hero-slide.is-active .hero__word { transform: none; }
  .hero__orb--one { top: 12%; right: 4%; width: 36px; height: 36px; }
  .hero__orb--two { top: 40%; right: 14%; width: 16px; height: 16px; }
  .hero-arrow {
    width: 72px;
    height: 72px;
  }
  .hero-arrow--prev { left: 6px; }
  .hero-arrow--next { right: 6px; }
  .hero-arrow svg { width: 36px; height: 36px; stroke-width: 1.2; }

  .benefit-bar {
    width: calc(100% - 30px);
    padding: 20px 0;
    overflow-x: auto;
    overflow-y: hidden;
    grid-template-columns: repeat(3, minmax(230px, 1fr));
    touch-action: pan-x pan-y;
    overscroll-behavior-x: contain;
    scrollbar-width: none;
  }
  .benefit-bar::-webkit-scrollbar { display: none; }
  .benefit-bar > div { justify-content: flex-start; padding: 0 24px; }
  .benefit-bar > div:first-child { padding-left: 4px; }
  .section { width: calc(100% - 30px); padding: 82px 0; }
  .section-head { display: block; }
  .section-head h2, .routine-card h2, .reviews-intro h2, .newsletter h2 { font-size: 40px; }
  .section-head__copy { width: auto; margin-top: 19px; font-size: 11px; }
  .text-link--desktop { display: none; }
  .filter-row {
    margin-top: 28px;
    overflow-x: auto;
    overflow-y: hidden;
    touch-action: pan-x pan-y;
    overscroll-behavior-x: contain;
    scrollbar-width: none;
  }
  .filter-row::-webkit-scrollbar { display: none; }
  .filter { min-width: 83px; padding: 9px 14px; font-size: 9px; }
  .product-rail {
    display: flex;
    width: 100%;
    margin-top: 22px;
    gap: 10px;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 0 0 5px;
    scroll-padding-inline: 0;
    scroll-snap-type: x mandatory;
    touch-action: pan-x pan-y;
    overscroll-behavior-x: contain;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .product-rail::-webkit-scrollbar { display: none; }
  .product-card,
  .product-card:nth-child(n+4) {
    display: block;
    flex: 0 0 calc(100% - 36px);
    width: calc(100% - 36px);
    min-width: calc(100% - 36px);
    max-width: calc(100% - 36px);
    scroll-snap-align: start;
  }
  .product-card.is-hidden { display: none; }
  .product-card__image { border-radius: 22px; }
  .product-card__meta { min-height: 82px; padding-top: 14px; }
  .product-card__meta h3 { font-size: 12px; }
  .rail-progress { display: block; width: 100%; height: 2px; margin-top: 22px; overflow: hidden; background: var(--line); }
  .rail-progress span { display: block; width: 26%; height: 100%; background: var(--ink); transition: transform .15s linear; }

  .routine-section { width: 100%; padding: 15px 0 70px; }
  .routine-card { min-height: 720px; grid-template-columns: 1fr; grid-template-rows: auto 330px; border-radius: 0; }
  .routine-card__copy { padding: 58px 25px 10px; }
  .routine-card__copy > p:not(.eyebrow) { margin-top: 20px; font-size: 11px; }
  .routine-card ul { margin: 22px 0 27px; font-size: 10px; }
  .routine-card__visual { min-height: 330px; }
  .routine-card__visual img { right: -16%; bottom: -38%; width: 76%; max-width: 330px; }
  .routine-card__circle { top: -2%; right: -6%; width: 75%; }
  .routine-card__outline { top: 4%; font-size: 100px; }

  .steps-section { padding-top: 18px; }
  .steps-grid {
    display: flex;
    width: 100%;
    margin-top: 35px;
    gap: 10px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    touch-action: pan-x pan-y;
    overscroll-behavior-x: contain;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .steps-grid::-webkit-scrollbar { display: none; }
  .step-card {
    flex: 0 0 calc(100% - 36px);
    width: calc(100% - 36px);
    min-width: calc(100% - 36px);
    max-width: calc(100% - 36px);
    height: 470px;
    scroll-snap-align: start;
  }
  .step-card--morning { grid-row: auto; }
  .step-card--morning img { width: 86%; }
  .step-card--day img, .step-card--night img { right: -12%; bottom: -12%; width: 74%; }

  .reviews-section { width: 100%; padding: 75px 0; gap: 30px; }
  .reviews-intro { padding: 0 15px; }
  .reviews-rail {
    display: flex;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 0 15px 4px;
    gap: 10px;
    scroll-snap-type: x mandatory;
    touch-action: pan-x pan-y;
    overscroll-behavior-x: contain;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .reviews-rail::-webkit-scrollbar { display: none; }
  .review-card {
    flex: 0 0 calc(100% - 66px);
    width: calc(100% - 66px);
    min-width: calc(100% - 66px);
    max-width: calc(100% - 66px);
    min-height: 285px;
    scroll-snap-align: start;
  }

  .newsletter { width: 100%; padding-top: 5px; }
  .newsletter__card { padding: 70px 20px 210px; border-radius: 0; }
  .newsletter__card > div { z-index: 3; }
  .newsletter__card > div > p:not(.eyebrow) { font-size: 10px; }
  .newsletter-form { margin-top: 24px; }
  .newsletter-form input { font-size: 9px; }
  .newsletter-form button { min-height: 43px; padding: 0 15px; font-size: 8px; }
  .newsletter__product { width: 190px; }
  .newsletter__product--left { bottom: -14%; left: -14%; }
  .newsletter__product--right { right: -12%; bottom: -17%; }

  .site-footer { padding: 5px 20px 25px; }
  .footer-main { padding: 55px 0; grid-template-columns: repeat(2, 1fr); gap: 42px 25px; }
  .footer-brand { grid-column: 1 / 3; }
  .footer-links:last-child { grid-column: 1 / 3; }
  .footer-bottom { align-items: flex-start; flex-direction: column; gap: 12px; }
  .search-panel { min-height: 250px; }
  .toast { right: 15px; bottom: 15px; left: 15px; min-width: 0; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; scroll-behavior: auto !important; transition-duration: .01ms !important; }
  .reveal,
  body.is-ready .hero-slide.is-active .hero-product-wrap,
  body.is-ready .hero-slide.is-active .hero__copy > *,
  body.is-ready .hero-slide.is-active .hero__word {
    opacity: 1;
    transform: none;
  }
  .hero-slide, .hero-slide .hero__copy > *, .hero-product-wrap, .hero__word, .hero__stripes i {
    transition: none !important;
  }
}
