:root {
  --ink: #2d211d;
  --ink-soft: #6d5d55;
  --cream: #fbf8f4;
  --sand: #eee2d7;
  --rose: #c77b72;
  --rose-dark: #8f4f4a;
  --sage: #8d9b80;
  --line: rgba(45, 33, 29, .16);
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
body.dialog-open { overflow: hidden; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }
.shell { width: min(1180px, calc(100% - 48px)); margin-inline: auto; }
.section { padding: 120px 0; }
.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;
}
.skip-link {
  position: fixed; z-index: 1000; left: 16px; top: 12px; padding: 10px 16px;
  background: var(--ink); color: #fff; transform: translateY(-160%); transition: transform .2s;
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: absolute; z-index: 20; inset: 0 0 auto; height: 92px;
  display: flex; align-items: center; border-bottom: 1px solid rgba(45, 33, 29, .12);
}
.nav-wrap { display: flex; justify-content: space-between; align-items: center; }
.brand { display: inline-flex; align-items: center; gap: 12px; font-size: 14px; font-weight: 650; letter-spacing: .02em; text-decoration: none; }
.brand em { display: block; font: italic 15px var(--serif); font-weight: 400; color: var(--rose-dark); }
.brand-mark {
  display: grid; place-items: center; width: 39px; aspect-ratio: 1; border: 1px solid currentColor;
  border-radius: 50% 50% 44% 56%; font: italic 22px var(--serif); transform: rotate(-7deg);
}
nav { display: flex; align-items: center; gap: 32px; }
nav a { font-size: 13px; font-weight: 600; text-decoration: none; }
nav a:not(.nav-cta) { position: relative; }
nav a:not(.nav-cta)::after { content: ""; position: absolute; inset: auto 0 -6px; height: 1px; background: currentColor; transform: scaleX(0); transition: transform .25s; }
nav a:hover::after { transform: scaleX(1); }
.nav-cta { padding: 11px 20px; border: 1px solid var(--ink); border-radius: 100px; transition: background .2s, color .2s; }
.nav-cta:hover { background: var(--ink); color: white; }
.menu-button { display: none; background: transparent; border: 0; padding: 8px; }
.menu-button > span:not(.sr-only) { display: block; width: 24px; height: 1px; margin: 5px; background: var(--ink); transition: transform .2s; }

.hero { position: relative; min-height: 760px; height: 100svh; max-height: 940px; overflow: hidden; background: #eadbd0; }
.hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(246,238,232,.98) 0%, rgba(246,238,232,.92) 31%, rgba(246,238,232,.16) 59%, transparent 75%); }
.hero-image { position: absolute; inset: 0; background: url("assets/skincare-hero.png") center/cover no-repeat; }
.hero-grid { position: relative; z-index: 2; height: 100%; display: grid; grid-template-columns: 49% 1fr; align-items: center; padding-top: 84px; }
.hero-copy { max-width: 570px; }
.eyebrow { margin: 0 0 25px; text-transform: uppercase; letter-spacing: .18em; font-size: 11px; font-weight: 700; }
.eyebrow span { display: inline-block; width: 34px; height: 1px; margin-right: 12px; vertical-align: middle; background: currentColor; }
h1, h2 { margin: 0; font-family: var(--serif); font-weight: 400; line-height: .98; letter-spacing: -.045em; }
h1 { font-size: clamp(58px, 6vw, 90px); }
h1 em, h2 em { color: var(--rose-dark); font-weight: 400; }
.hero-lede { max-width: 500px; margin: 29px 0 30px; color: var(--ink-soft); font-size: 18px; line-height: 1.7; }
.hero-actions { display: flex; align-items: center; gap: 28px; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 18px; min-height: 56px; padding: 0 28px; border-radius: 100px; font-size: 13px; font-weight: 700; text-decoration: none; transition: transform .2s, box-shadow .2s, background .2s; }
.button:hover { transform: translateY(-2px); }
.button-primary { color: white; background: var(--ink); box-shadow: 0 12px 28px rgba(45,33,29,.16); }
.button-primary:hover { background: var(--rose-dark); }
.text-link { font-size: 13px; font-weight: 700; text-underline-offset: 5px; }
.text-link span { margin-left: 8px; }
.partner-note { max-width: 470px; margin: 20px 0 0; color: #786961; font-size: 11px; line-height: 1.5; }
.hero-tag { position: absolute; z-index: 3; right: -36px; bottom: 52px; transform: rotate(-90deg); text-transform: uppercase; letter-spacing: .18em; font-size: 9px; }
.hero-tag span { margin-right: 10px; color: var(--rose-dark); }

.intro { background: var(--cream); }
.intro-grid, .notes-grid { display: grid; grid-template-columns: .55fr 1.45fr; gap: 80px; }
.section-label { margin: 6px 0 0; color: var(--rose-dark); text-transform: uppercase; letter-spacing: .19em; font-size: 10px; font-weight: 750; }
.intro h2, .ritual h2, .discovery h2 { font-size: clamp(48px, 5.1vw, 74px); }
.intro-grid > div > p { max-width: 620px; margin: 34px 0 0; color: var(--ink-soft); font-size: 18px; }

.ritual { position: relative; background: #eee4dc; overflow: hidden; }
.ritual::before { content: ""; position: absolute; width: 440px; height: 440px; top: -270px; right: -120px; border: 1px solid rgba(143,79,74,.2); border-radius: 50%; }
.section-heading { display: grid; grid-template-columns: 1.2fr .8fr; gap: 100px; align-items: end; }
.section-heading > p { max-width: 420px; margin: 0 0 5px; color: var(--ink-soft); }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 72px; }
.step { position: relative; padding: 20px 20px 28px; border: 1px solid rgba(45,33,29,.1); background: rgba(251,248,244,.58); }
.step-number { position: absolute; z-index: 2; top: 32px; left: 34px; color: white; font: italic 16px var(--serif); }
.step-art { position: relative; height: 260px; margin-bottom: 25px; overflow: hidden; background: #9c7164; }
.step-art::before, .step-art::after, .step-art i { content: ""; position: absolute; display: block; }
.step-art-cleanse { background: linear-gradient(145deg, #9d766e, #d9b6a7); }
.step-art-cleanse::before { width: 140px; height: 140px; left: 50%; top: 50%; border: 22px solid rgba(255,255,255,.62); border-radius: 50%; transform: translate(-50%,-50%); }
.step-art-cleanse::after { width: 70px; height: 70px; left: 50%; top: 50%; border-radius: 50%; background: rgba(255,255,255,.35); transform: translate(-50%,-50%); }
.step-art-care { background: linear-gradient(155deg, #7e8c6d, #bdc8a8); }
.step-art-care::before { width: 85px; height: 145px; left: 50%; top: 62px; border-radius: 48% 48% 22% 22%; background: rgba(245,238,223,.8); transform: translateX(-50%); box-shadow: inset -12px 0 rgba(255,255,255,.18); }
.step-art-care::after { width: 22px; height: 65px; left: 50%; top: 21px; border-radius: 13px 13px 0 0; background: #4c513f; transform: translateX(-50%); }
.step-art-care i { width: 28px; height: 9px; left: calc(50% + 7px); top: 28px; border-radius: 0 8px 8px 0; background: #4c513f; }
.step-art-seal { background: linear-gradient(145deg, #d3aa89, #eee1cd); }
.step-art-seal::before { width: 132px; height: 92px; left: 50%; bottom: 48px; border-radius: 18px 18px 36px 36px; background: rgba(255,255,255,.7); transform: translateX(-50%); box-shadow: inset -14px -8px rgba(183,129,97,.12); }
.step-art-seal::after { width: 140px; height: 36px; left: 50%; bottom: 132px; border-radius: 14px 14px 5px 5px; background: #a56c57; transform: translateX(-50%); }
.step h3 { margin: 0 0 5px; font: 28px var(--serif); }
.step p { margin: 0; color: var(--ink-soft); font-size: 14px; }

.discovery { background: var(--cream); }
.discovery-card { min-height: 570px; display: grid; grid-template-columns: 1fr 1fr; color: white; background: var(--ink); overflow: hidden; }
.discovery-copy { display: flex; flex-direction: column; align-items: flex-start; justify-content: center; padding: 76px; }
.eyebrow-light { color: #dec6b7; }
.discovery h2 em { color: #e1a69c; }
.discovery-copy > p:not(.eyebrow) { max-width: 470px; margin: 28px 0; color: #d4cac5; }
.button-light { color: var(--ink); background: #f4ebe4; }
.button-light:hover { background: white; box-shadow: 0 12px 28px rgba(0,0,0,.2); }
.discovery-copy small { max-width: 480px; margin-top: 18px; color: #9e918b; line-height: 1.5; }
.discovery-art { position: relative; min-height: 570px; overflow: hidden; background: #c98a76; }
.sun { position: absolute; width: 430px; height: 430px; right: -90px; top: -90px; border-radius: 50%; background: #e8b5a1; }
.bottle { position: absolute; z-index: 2; width: 140px; height: 260px; left: 50%; bottom: 75px; border-radius: 70px 70px 24px 24px; background: linear-gradient(90deg, #6f2d25, #9e4a3e 58%, #6f2d25); transform: translateX(-50%); box-shadow: 0 30px 60px rgba(62,27,22,.25); }
.bottle::before { content: ""; position: absolute; width: 52px; height: 70px; left: 44px; top: -58px; border-radius: 12px 12px 0 0; background: #54251f; }
.bottle::after { content: "B"; position: absolute; display: grid; place-items: center; width: 70px; height: 70px; left: 35px; top: 94px; border: 1px solid rgba(255,255,255,.55); border-radius: 50%; color: #f4d7ca; font: italic 32px var(--serif); }
.leaf { position: absolute; z-index: 1; width: 130px; height: 280px; border-radius: 100% 0 100% 0; background: #5f7559; transform-origin: bottom; }
.leaf-one { left: 10%; bottom: -40px; transform: rotate(-28deg); }
.leaf-two { right: 3%; bottom: -50px; transform: rotate(34deg) scale(.8); background: #7e8c6d; }
.discovery-art p { position: absolute; z-index: 3; right: 28px; bottom: 24px; margin: 0; text-align: right; text-transform: uppercase; letter-spacing: .13em; font-size: 9px; line-height: 1.5; }
.discovery-art p em { color: white; font: italic 19px var(--serif); text-transform: none; letter-spacing: 0; }

.notes { padding-top: 55px; }
.notes blockquote { max-width: 760px; margin: 0; font: 42px/1.2 var(--serif); letter-spacing: -.02em; }
.notes-grid > div > p { max-width: 650px; margin: 28px 0 0; color: var(--ink-soft); font-size: 14px; }

footer { color: #d9cec8; background: #211915; }
.footer-top { min-height: 190px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid rgba(255,255,255,.12); }
.brand-footer { color: white; }
.brand-footer em { color: #dba79e; }
.footer-top > p { color: #988b84; font: italic 22px var(--serif); }
.footer-bottom { min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 24px; font-size: 11px; }
.footer-bottom p { margin: 0; }
.footer-bottom > div { display: flex; gap: 22px; }
.legal-link { padding: 0; border: 0; color: inherit; background: none; text-decoration: underline; text-underline-offset: 4px; cursor: pointer; }
.legal-link:hover { color: white; }
.legal-dialog { width: min(620px, calc(100% - 32px)); padding: 48px; border: 0; color: var(--ink); background: var(--cream); box-shadow: 0 30px 100px rgba(0,0,0,.35); }
.legal-dialog::backdrop { background: rgba(27,20,17,.7); backdrop-filter: blur(4px); }
.legal-dialog h2 { margin: 13px 0 27px; font-size: 45px; }
.legal-dialog p:not(.section-label) { color: var(--ink-soft); }
.dialog-close { position: absolute; top: 15px; right: 18px; width: 40px; height: 40px; border: 0; background: transparent; color: var(--ink); font: 33px/1 var(--serif); cursor: pointer; }

.reveal { opacity: 0; transform: translateY(20px); transition: opacity .75s ease, transform .75s ease; }
.reveal.visible { opacity: 1; transform: none; }
.steps .reveal:nth-child(2) { transition-delay: .12s; }
.steps .reveal:nth-child(3) { transition-delay: .24s; }

@media (max-width: 900px) {
  .section { padding: 88px 0; }
  .site-header { height: 76px; }
  .menu-button { display: block; position: relative; z-index: 3; cursor: pointer; }
  nav { position: fixed; inset: 0; display: flex; flex-direction: column; justify-content: center; gap: 26px; background: var(--cream); transform: translateX(100%); transition: transform .3s ease; }
  nav.open { transform: none; }
  nav a { font: 30px var(--serif); }
  .nav-cta { font: 14px var(--sans); }
  .menu-button[aria-expanded="true"] > span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .menu-button[aria-expanded="true"] > span:nth-child(2) { opacity: 0; }
  .menu-button[aria-expanded="true"] > span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
  .hero { min-height: 840px; height: 100svh; max-height: none; }
  .hero-image { inset: 40% 0 0; background-position: 67% center; }
  .hero::after { background: linear-gradient(180deg, rgba(246,238,232,1) 0%, rgba(246,238,232,.96) 42%, rgba(246,238,232,.25) 65%, transparent 82%); }
  .hero-grid { grid-template-columns: 1fr; align-items: start; padding-top: 138px; }
  .hero-copy { max-width: 650px; }
  h1 { font-size: clamp(50px, 12vw, 74px); }
  .hero-lede { max-width: 530px; margin-top: 22px; font-size: 16px; }
  .hero-tag { display: none; }
  .intro-grid, .notes-grid { grid-template-columns: 1fr; gap: 30px; }
  .section-heading { grid-template-columns: 1fr; gap: 30px; }
  .steps { overflow-x: auto; grid-template-columns: repeat(3, minmax(290px, 1fr)); padding-bottom: 12px; scroll-snap-type: x mandatory; }
  .step { scroll-snap-align: start; }
  .discovery-card { grid-template-columns: 1fr; }
  .discovery-copy { padding: 60px 45px; }
  .discovery-art { min-height: 480px; }
}

@media (max-width: 580px) {
  .shell { width: min(100% - 30px, 1180px); }
  .section { padding: 72px 0; }
  .hero { min-height: 790px; }
  .hero-grid { padding-top: 115px; }
  h1 { font-size: 50px; }
  .hero-copy .eyebrow { margin-bottom: 18px; }
  .hero-lede { margin: 19px 0 22px; line-height: 1.55; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 17px; }
  .button { width: 100%; }
  .partner-note { margin-top: 14px; }
  .intro h2, .ritual h2, .discovery h2 { font-size: 45px; }
  .intro-grid > div > p { font-size: 16px; }
  .steps { margin-top: 45px; }
  .step-art { height: 220px; }
  .discovery-card { width: 100%; }
  .discovery-copy { padding: 52px 25px; }
  .discovery-art { min-height: 410px; }
  .sun { width: 330px; height: 330px; }
  .bottle { width: 120px; height: 230px; bottom: 55px; }
  .bottle::before { left: 36px; }
  .bottle::after { left: 25px; }
  .notes blockquote { font-size: 32px; }
  .footer-top, .footer-bottom { align-items: flex-start; flex-direction: column; justify-content: center; padding-block: 36px; }
  .footer-top { gap: 22px; }
  .footer-top > p { margin: 0; }
  .footer-bottom > div { flex-wrap: wrap; }
  .legal-dialog { padding: 42px 25px 28px; }
  .legal-dialog h2 { font-size: 37px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
