:root {
  --ink: #24131f;
  --plum: #4b293f;
  --rose: #c98f9d;
  --blush: #f1d8d8;
  --ivory: #f8f3ea;
  --paper: #fffdf8;
  --sage: #87957b;
  --line: rgba(36, 19, 31, 0.16);
  --serif: "Gloock", Georgia, serif;
  --sans: "DM Sans", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

.announcement {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 8px 20px;
  background: var(--ink);
  color: var(--ivory);
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.announcement__dot { width: 4px; height: 4px; border-radius: 50%; background: var(--rose); }

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 76px;
  padding: 0 clamp(20px, 4vw, 64px);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 253, 248, .88);
  backdrop-filter: blur(16px);
}
.wordmark {
  width: max-content;
  font-family: var(--serif);
  font-size: 26px;
  letter-spacing: -.045em;
}
.desktop-nav { display: flex; gap: 34px; font-size: 13px; }
.desktop-nav a, .site-footer a { transition: opacity .2s ease; }
.desktop-nav a:hover, .site-footer a:hover { opacity: .58; }
.site-header > .button { justify-self: end; }

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0 25px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: var(--ink);
  color: white;
  font-size: 13px;
  font-weight: 600;
  transition: transform .2s ease, background .2s ease, color .2s ease;
}
.button:hover { transform: translateY(-2px); background: var(--plum); }
.button--small { min-height: 42px; padding: 0 20px; font-size: 12px; }
.button--light { border-color: var(--ivory); background: var(--ivory); color: var(--ink); }
.button--light:hover { background: var(--blush); }
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border-bottom: 1px solid currentColor;
  padding-bottom: 4px;
  font-size: 13px;
  font-weight: 600;
}
.text-link span { transition: transform .2s ease; }
.text-link:hover span { transform: translate(3px, 3px); }
.text-link--light { color: var(--ivory); }

.hero {
  min-height: calc(100vh - 110px);
  display: grid;
  grid-template-columns: 1.04fr .96fr;
  overflow: hidden;
  background: radial-gradient(circle at 86% 6%, rgba(255,255,255,.65), transparent 29%), var(--blush);
}
.hero__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(70px, 9vw, 140px) clamp(26px, 7vw, 110px);
}
.eyebrow {
  margin: 0 0 20px;
  color: var(--plum);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
}
h1, h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -.045em;
  line-height: .98;
}
h1 { max-width: 730px; font-size: clamp(54px, 6.3vw, 102px); }
h2 { font-size: clamp(43px, 4.8vw, 76px); }
h1 em, h2 em { color: var(--plum); font-weight: 400; }
.hero__lede { max-width: 590px; margin: 30px 0 0; font-size: clamp(16px, 1.3vw, 19px); line-height: 1.65; }
.hero__actions { display: flex; align-items: center; gap: 26px; margin-top: 34px; }
.hero__proof { display: flex; gap: clamp(22px, 3vw, 48px); margin-top: 55px; }
.hero__proof div { display: grid; gap: 4px; }
.hero__proof strong { font-family: var(--serif); font-size: 24px; font-weight: 400; }
.hero__proof span { color: rgba(36,19,31,.7); font-size: 11px; text-transform: uppercase; letter-spacing: .07em; }
.hero__visual { position: relative; min-height: 650px; display: grid; place-items: center; overflow: hidden; }
.hero__visual::before {
  content: "";
  position: absolute;
  inset: 6% 9%;
  border: 1px solid rgba(36,19,31,.28);
  border-radius: 48% 48% 7% 7% / 30% 30% 7% 7%;
}
.hero__visual img {
  position: relative;
  z-index: 2;
  width: min(72%, 670px);
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center;
  border-radius: 48% 48% 5% 5% / 28% 28% 5% 5%;
  box-shadow: 0 35px 90px rgba(53, 25, 43, .25);
}
.hero__halo { position: absolute; width: 70%; aspect-ratio: 1; border-radius: 50%; background: rgba(255,253,248,.75); filter: blur(1px); }
.hero__note {
  position: absolute;
  z-index: 3;
  padding: 12px 16px;
  border: 1px solid rgba(36,19,31,.34);
  border-radius: 999px;
  background: rgba(255,253,248,.86);
  backdrop-filter: blur(10px);
  font-family: var(--serif);
  font-size: 14px;
}
.hero__note--top { top: 18%; left: 4%; transform: rotate(-7deg); }
.hero__note--bottom { right: 4%; bottom: 18%; transform: rotate(6deg); }

.ticker { overflow: hidden; padding: 13px 0; background: var(--rose); color: var(--ink); white-space: nowrap; }
.ticker__track { display: inline-flex; align-items: center; gap: 24px; min-width: max-content; animation: ticker 26s linear infinite; font-size: 11px; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; }
.ticker__track i { font-size: 10px; }
@keyframes ticker { to { transform: translateX(-50%); } }

.section { padding: clamp(80px, 10vw, 150px) clamp(22px, 5vw, 80px); }
.section--narrow { max-width: 1250px; margin: 0 auto; }
.collection { background: var(--ivory); }
.collection__heading {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: clamp(40px, 8vw, 130px);
  align-items: end;
  margin-bottom: 52px;
}
.collection__heading > p { max-width: 570px; margin: 0 0 8px; color: rgba(36,19,31,.72); font-size: clamp(16px, 1.5vw, 21px); line-height: 1.55; }
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.product-card { position: relative; min-width: 0; overflow: hidden; border-radius: 26px; background: var(--ink); color: var(--ivory); }
.product-card img { width: 100%; aspect-ratio: 4 / 4.7; object-fit: cover; transition: transform .6s cubic-bezier(.2,.75,.25,1); }
.product-card:hover img { transform: scale(1.025); }
.product-card__bar { position: absolute; inset: auto 0 0; display: flex; align-items: end; justify-content: space-between; gap: 18px; padding: 22px; background: linear-gradient(180deg, transparent, rgba(24,15,23,.96) 42%); }
.product-card__bar > div { min-width: 0; }
.product-card h3 { margin: 0 0 3px; font-size: clamp(17px, 1.6vw, 24px); }
.product-card__bar div span { color: rgba(255,255,255,.72); font-size: 14px; }
.product-card__action { flex: 0 0 auto; display: inline-flex; min-height: 42px; align-items: center; justify-content: center; padding: 0 20px; border: 1px solid var(--ivory); border-radius: 999px; background: var(--ivory); color: var(--ink); font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; }
.product-card__action:hover { background: var(--blush); }
.product-card__action--muted { background: transparent; color: var(--ivory); cursor: default; }
.shop { display: grid; grid-template-columns: 1.07fr .93fr; gap: clamp(50px, 8vw, 130px); align-items: center; }
.shop__image { position: relative; width: 100%; max-width: 780px; justify-self: center; }
.shop__image img {
  width: 100%;
  height: clamp(460px, 42vw, 620px);
  object-fit: cover;
  object-position: center 56%;
  border-radius: 34px 34px 120px 34px;
}
.image-stamp { position: absolute; right: -28px; bottom: -28px; width: 118px; aspect-ratio: 1; display: grid; place-items: center; text-align: center; border-radius: 50%; background: var(--ink); color: var(--ivory); font-family: var(--serif); font-size: 14px; line-height: 1.25; transform: rotate(8deg); }
.shop__copy { max-width: 600px; }
.shop__copy > p:not(.eyebrow):not(.microcopy) { margin: 28px 0; color: rgba(36,19,31,.78); font-size: 16px; line-height: 1.7; }
.rating { margin: 22px 0 0; font-size: 13px; }
.rating span { color: #ae6b7e; letter-spacing: .08em; }
.check-list { list-style: none; display: grid; gap: 13px; margin: 28px 0; padding: 0; }
.check-list li { position: relative; padding-left: 28px; font-size: 14px; }
.check-list li::before { content: "✓"; position: absolute; left: 0; color: var(--plum); font-weight: 700; }
.purchase-row { display: flex; align-items: center; justify-content: space-between; gap: 25px; margin-top: 35px; padding-top: 25px; border-top: 1px solid var(--line); }
.purchase-row > div { display: grid; gap: 3px; }
.purchase-row span, .microcopy { color: rgba(36,19,31,.6); font-size: 11px; }
.purchase-row strong { font-family: var(--serif); font-size: 30px; font-weight: 400; }
.microcopy { margin-top: 13px; }

.section-heading { max-width: 720px; margin: 0 auto 60px; text-align: center; }
.section-heading > p:last-child { max-width: 530px; margin: 24px auto 0; color: rgba(36,19,31,.68); line-height: 1.65; }
.benefits { border-top: 1px solid var(--line); }
.benefit-grid { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--line); border-radius: 28px; overflow: hidden; }
.benefit { min-height: 270px; padding: 28px; border-right: 1px solid var(--line); background: var(--ivory); }
.benefit:last-child { border: 0; }
.benefit span, .ingredient span { color: var(--rose); font-size: 11px; font-weight: 700; letter-spacing: .1em; }
.benefit h3, .ingredient h3 { margin: 75px 0 12px; font-family: var(--serif); font-size: 28px; font-weight: 400; }
.benefit p, .ingredient p { margin: 0; color: rgba(36,19,31,.68); font-size: 13px; line-height: 1.65; }

.ritual { display: grid; grid-template-columns: 1.12fr .88fr; padding: 0; background: var(--ink); color: var(--ivory); }
.ritual__visual { min-height: 720px; }
.ritual__visual img { width: 100%; height: 100%; object-fit: cover; }
.ritual__content { display: flex; flex-direction: column; justify-content: center; padding: clamp(70px, 8vw, 130px); }
.ritual .eyebrow { color: var(--rose); }
.ritual h2 em { color: var(--rose); }
.steps { list-style: none; display: grid; gap: 0; margin: 45px 0; padding: 0; border-top: 1px solid rgba(255,255,255,.18); }
.steps li { display: grid; grid-template-columns: 42px 1fr; gap: 18px; padding: 22px 0; border-bottom: 1px solid rgba(255,255,255,.18); }
.steps > li > span { width: 32px; height: 32px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.4); border-radius: 50%; font-size: 11px; }
.steps h3 { margin: 0 0 5px; font-size: 14px; }
.steps p { margin: 0; color: rgba(255,255,255,.65); font-size: 13px; line-height: 1.55; }

.formula { background: var(--blush); }
.formula__intro { display: grid; grid-template-columns: 1fr 1.6fr 1fr; gap: 45px; align-items: end; margin-bottom: 65px; }
.formula__intro .eyebrow { align-self: start; }
.formula__intro > p:last-child { margin: 0; color: rgba(36,19,31,.7); font-size: 14px; line-height: 1.65; }
.ingredient-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.ingredient { min-height: 310px; padding: 30px; border-radius: 26px; background: rgba(255,253,248,.7); }
.ingredient:nth-child(2), .ingredient:nth-child(5) { background: var(--plum); color: var(--ivory); }
.ingredient:nth-child(2) p, .ingredient:nth-child(5) p { color: rgba(255,255,255,.68); }
.ingredient--wide { grid-column: span 2; }
.ingredient h3 { margin-top: 100px; }

.reviews { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(50px, 9vw, 140px); background: var(--ivory); }
.reviews__heading { position: sticky; top: 125px; align-self: start; }
.rating--large { margin-top: 28px; font-size: 15px; }
.review-stack { display: grid; }
.review { margin: 0; padding: 45px 0; border-bottom: 1px solid var(--line); }
.review:first-child { padding-top: 0; }
.review p { margin: 0 0 28px; font-family: var(--serif); font-size: clamp(24px, 2.5vw, 39px); line-height: 1.25; letter-spacing: -.025em; }
.review footer { display: flex; gap: 12px; align-items: center; font-size: 12px; }
.review footer span { color: var(--sage); }

.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { list-style: none; position: relative; padding: 26px 50px 26px 0; cursor: pointer; font-family: var(--serif); font-size: 20px; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; position: absolute; right: 3px; font-family: var(--sans); font-size: 25px; font-weight: 300; transition: transform .2s ease; }
.faq-list details[open] summary::after { transform: rotate(45deg); }
.faq-list details p { max-width: 720px; margin: -4px 0 25px; color: rgba(36,19,31,.68); font-size: 14px; line-height: 1.65; }

.closing-cta { position: relative; overflow: hidden; padding: clamp(95px, 12vw, 180px) 25px; background: var(--plum); color: var(--ivory); text-align: center; }
.closing-cta > * { position: relative; z-index: 2; }
.closing-cta .eyebrow { color: var(--rose); }
.closing-cta h2 { max-width: 820px; margin: 0 auto 38px; }
.closing-cta__orb { position: absolute; z-index: 1; left: 50%; top: 50%; width: min(70vw, 760px); aspect-ratio: 1; transform: translate(-50%, -50%); border: 1px solid rgba(255,255,255,.16); border-radius: 50%; box-shadow: 0 0 0 70px rgba(255,255,255,.035), 0 0 0 140px rgba(255,255,255,.025); }

.site-footer { padding: 70px clamp(22px, 5vw, 80px) 28px; background: #180f17; color: var(--ivory); }
.footer__top { display: grid; grid-template-columns: 2fr repeat(3, 1fr); gap: 45px; }
.wordmark--footer { display: inline-block; color: var(--rose); font-size: 32px; }
.footer__top > div:first-child p { max-width: 310px; color: rgba(255,255,255,.5); font-size: 13px; line-height: 1.6; }
.footer__top h3 { margin: 0 0 18px; color: var(--rose); font-size: 10px; letter-spacing: .11em; text-transform: uppercase; }
.footer__top > div:not(:first-child) { display: flex; flex-direction: column; gap: 11px; font-size: 12px; }
.footer__bottom { display: flex; justify-content: space-between; gap: 50px; margin-top: 65px; padding-top: 25px; border-top: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.38); font-size: 9px; line-height: 1.55; }
.footer__bottom p { max-width: 900px; margin: 0; }
.footer__bottom span { flex: 0 0 auto; }

.info-body { background: var(--ivory); }
.info-hero { padding: clamp(80px, 10vw, 150px) clamp(22px, 7vw, 115px) clamp(55px, 7vw, 95px); background: linear-gradient(135deg, var(--blush), var(--ivory)); border-bottom: 1px solid var(--line); }
.info-hero__inner { max-width: 1080px; }
.info-hero h1 { font-size: clamp(52px, 7vw, 104px); }
.info-hero p:last-child { max-width: 680px; margin: 28px 0 0; color: rgba(36,19,31,.72); font-size: 17px; line-height: 1.7; }
.info-layout { display: grid; grid-template-columns: 220px minmax(0, 780px); gap: clamp(45px, 8vw, 130px); max-width: 1210px; margin: 0 auto; padding: clamp(65px, 9vw, 125px) 24px; }
.info-nav { position: sticky; top: 115px; align-self: start; display: grid; gap: 11px; padding: 22px; border: 1px solid var(--line); border-radius: 20px; background: rgba(255,253,248,.74); font-size: 12px; }
.info-nav strong { margin-bottom: 7px; color: var(--rose); font-size: 10px; letter-spacing: .11em; text-transform: uppercase; }
.info-nav a:hover { color: var(--plum); text-decoration: underline; text-underline-offset: 3px; }
.info-prose { min-width: 0; }
.info-prose > p:first-child { margin-top: 0; color: var(--plum); font-weight: 600; }
.info-prose section { padding: 0 0 33px; margin: 0 0 33px; border-bottom: 1px solid var(--line); }
.info-prose section:last-child { margin-bottom: 0; border-bottom: 0; }
.info-prose h2 { margin: 0 0 16px; font-family: var(--serif); font-size: clamp(27px, 3vw, 39px); line-height: 1.12; letter-spacing: -.025em; }
.info-prose p, .info-prose li { color: rgba(36,19,31,.76); font-size: 14px; line-height: 1.8; }
.info-prose p { margin: 0 0 13px; }
.info-prose p:last-child { margin-bottom: 0; }
.info-prose ul, .info-prose ol { display: grid; gap: 7px; margin: 13px 0; padding-left: 22px; }
.info-prose a { color: var(--plum); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
.contact-card { padding: clamp(28px, 5vw, 48px); border-radius: 28px; background: var(--ink); color: var(--ivory); }
.contact-card h2 { color: var(--ivory); }
.contact-card p { color: rgba(255,255,255,.68); }
.contact-card .button { margin-top: 10px; border-color: var(--ivory); background: var(--ivory); color: var(--ink); text-decoration: none; }
.track-steps { counter-reset: track; list-style: none; padding: 0 !important; }
.track-steps li { position: relative; padding: 20px 0 20px 55px; border-top: 1px solid var(--line); }
.track-steps li::before { counter-increment: track; content: counter(track); position: absolute; left: 0; top: 17px; width: 34px; aspect-ratio: 1; display: grid; place-items: center; border-radius: 50%; background: var(--plum); color: white; font-size: 11px; font-weight: 700; }

.reveal { opacity: 0; transform: translateY(20px); transition: opacity .75s ease, transform .75s cubic-bezier(.2,.75,.25,1); }
.reveal--delay { transition-delay: .12s; }
.reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .ticker__track { animation: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
}

@media (max-width: 920px) {
  .site-header { grid-template-columns: 1fr auto; }
  .desktop-nav { display: none; }
  .hero { grid-template-columns: 1fr; }
  .hero__visual { min-height: 580px; padding-bottom: 50px; }
  .hero__visual img { width: min(72%, 520px); }
  .shop, .ritual, .reviews { grid-template-columns: 1fr; }
  .shop__image { max-width: 680px; }
  .shop__image img { height: min(72vw, 580px); }
  .ritual__visual { min-height: 480px; }
  .formula__intro { grid-template-columns: 1fr; gap: 20px; }
  .collection__heading { grid-template-columns: 1fr; gap: 24px; }
  .product-grid { grid-template-columns: 1fr 1fr; }
  .product-card:last-child { grid-column: 1 / -1; }
  .product-card:last-child img { aspect-ratio: 2 / 1; object-position: center 56%; }
  .ingredient-grid { grid-template-columns: 1fr 1fr; }
  .ingredient--wide { grid-column: auto; }
  .benefit-grid { grid-template-columns: 1fr 1fr; }
  .benefit:nth-child(2) { border-right: 0; }
  .benefit:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .reviews__heading { position: static; }
  .footer__top { grid-template-columns: 1.5fr 1fr 1fr; }
  .footer__top > div:last-child { grid-column: 2; }
  .info-layout { grid-template-columns: 1fr; gap: 35px; }
  .info-nav { position: static; grid-template-columns: repeat(3, 1fr); }
  .info-nav strong { grid-column: 1 / -1; }
}

@media (max-width: 620px) {
  .announcement span:nth-of-type(2), .announcement__dot { display: none; }
  .site-header { min-height: 66px; padding-inline: 16px; }
  .site-header .wordmark { font-size: 23px; }
  .site-header .button { min-height: 38px; padding-inline: 15px; }
  .hero__copy { padding: 70px 20px 45px; }
  h1 { font-size: clamp(49px, 14.5vw, 70px); }
  .hero__actions { align-items: flex-start; flex-direction: column; }
  .hero__proof { gap: 18px; }
  .hero__proof strong { font-size: 21px; }
  .hero__proof span { font-size: 9px; }
  .hero__visual { min-height: 470px; }
  .hero__visual img { width: 78%; }
  .hero__note { font-size: 11px; }
  .section { padding: 80px 20px; }
  .shop { gap: 55px; }
  .product-grid { grid-template-columns: 1fr; gap: 12px; }
  .product-card:last-child { grid-column: auto; }
  .product-card:last-child img { aspect-ratio: 4 / 4.7; object-position: center; }
  .product-card__bar { padding: 18px; }
  .product-card__action { min-height: 38px; padding-inline: 15px; font-size: 10px; }
  .shop__image img { height: min(92vw, 430px); object-position: center; border-radius: 24px 24px 90px 24px; }
  .image-stamp { right: -5px; bottom: -32px; }
  .purchase-row { align-items: stretch; flex-direction: column; }
  .benefit-grid, .ingredient-grid { grid-template-columns: 1fr; }
  .benefit { border-right: 0; border-bottom: 1px solid var(--line); }
  .benefit:last-child { border-bottom: 0; }
  .ingredient { min-height: 265px; }
  .ingredient h3 { margin-top: 70px; }
  .ritual__visual { min-height: 320px; }
  .ritual__content { padding: 80px 20px; }
  .reviews { gap: 60px; }
  .review p { font-size: 27px; }
  .footer__top { grid-template-columns: 1fr 1fr; }
  .footer__top > div:first-child { grid-column: 1 / -1; }
  .footer__top > div:last-child { grid-column: auto; }
  .footer__bottom { flex-direction: column; gap: 20px; }
  .info-hero { padding-inline: 20px; }
  .info-layout { padding-inline: 20px; }
  .info-nav { grid-template-columns: 1fr 1fr; }
}
