/* ================= DESIGN TOKENS ================= */
:root {
  --color-primary: #173c31;
  --color-on-primary: #ffffff;
  --color-secondary: #6c866b;
  --color-on-secondary: #ffffff;
  --color-tertiary: #8fa478;
  --color-on-tertiary: #173c31;
  --color-background: #fbfaf6;
  --color-surface: #ffffff;
  --color-surface-container: #f4f0e7;
  --color-on-surface: #173c31;
  --color-on-background: #38584f;
  --color-outline: rgba(23, 60, 49, 0.13);
  --color-error: #b3261e;
  --ink: var(--color-on-surface);
  --ink-soft: var(--color-on-background);
  --moss: var(--color-secondary);
  --leaf: var(--color-tertiary);
  --cream: var(--color-surface-container);
  --paper: var(--color-background);
  --white: var(--color-surface);
  --line: var(--color-outline);
  --glass: rgba(255, 255, 255, 0.64);
  --glass-dark: rgba(19, 48, 39, 0.58);
  --radius-xs: 6px;
  --shadow-soft: 0 24px 70px rgba(37, 61, 49, 0.12);
  --shadow-glass: 0 18px 44px rgba(17, 44, 35, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.66);
  --radius-sm: 18px;
  --radius-md: 28px;
  --radius-lg: 40px;
  --radius-xl: 48px;
  --radius-pill: 999px;
  --motion-fast: 200ms;
  --motion-normal: 300ms;
  --motion-slow: 800ms;
  --ease-standard: cubic-bezier(.2, 0, 0, 1);
  --ease-decelerate: cubic-bezier(0, 0, 0, 1);
  --ease-accelerate: cubic-bezier(.3, 0, 1, 1);
  --ease-spring: cubic-bezier(.2, .8, .2, 1);
  --z-navbar: 50;
  --z-dropdown: 60;
  --z-modal: 80;
  --z-toast: 90;
}

/* ================= BASE ================= */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", Inter, "Segoe UI", sans-serif;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::selection {
  background: rgba(143, 164, 120, .35);
}

a {
  color: inherit;
  text-decoration: none;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

button:focus-visible,
a:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--color-tertiary);
  outline-offset: 4px;
}

.page-shell {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 48px;
}

.section {
  position: relative;
}

.ritual-section {
  padding-top: 132px;
  padding-bottom: 132px;
}

.benefits-section {
  padding-top: 132px;
  padding-bottom: 132px;
}

.companion-section {
  padding-top: 132px;
  padding-bottom: 132px;
}

.faq-section {
  padding-top: 132px;
  padding-bottom: 132px;
}

.closing-section {
  padding-top: 132px;
  padding-bottom: 132px;
}

.glass-panel {
  background: var(--glass);
  border: 1px solid rgba(255, 255, 255, .72);
  box-shadow: var(--shadow-glass);
  backdrop-filter: blur(24px) saturate(155%);
  -webkit-backdrop-filter: blur(24px) saturate(155%);
}

/* ================= NAVIGATION ================= */
.topbar {
  position: fixed;
  z-index: var(--z-navbar);
  top: 22px;
  left: 50%;
  width: 900px;
  max-width: 94%;
  min-height: 66px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 30px;
  padding: 8px 10px 8px 18px;
  border: 1px solid rgba(255, 255, 255, .56);
  border-radius: var(--radius-pill);
  background: rgba(249, 250, 246, .72);
  box-shadow: 0 16px 44px rgba(17, 44, 35, .13), inset 0 1px 0 rgba(255, 255, 255, .88);
  backdrop-filter: blur(28px) saturate(170%);
  -webkit-backdrop-filter: blur(28px) saturate(170%);
  transform: translateX(-50%);
}

.brand-mark img {
  width: 102px;
  height: 40px;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 28px;
  font-size: 14px;
  font-weight: 650;
  color: var(--ink-soft);
}

.nav-links a {
  transition: color .25s ease;
}

.nav-links a:hover {
  color: var(--ink);
}

.glass-button,
.primary-button,
.dark-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  transition: transform .3s var(--ease-spring), box-shadow .3s ease, background .3s ease;
}

.glass-button:hover,
.primary-button:hover,
.dark-button:hover {
  transform: translateY(-2px) scale(1.01);
}

.small-button {
  min-height: 48px;
  padding: 0 19px;
  color: white;
  background: var(--ink);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .22), 0 8px 22px rgba(23, 60, 49, .22);
}

/* ================= HERO ================= */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: #476957;
  color: white;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-video-square {
  display: none;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(12, 37, 29, .72) 0%, rgba(12, 37, 29, .43) 46%, rgba(12, 37, 29, .08) 77%), linear-gradient(0deg, rgba(10, 31, 24, .52), transparent 55%);
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  opacity: .34;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, .82), rgba(199, 222, 182, .26) 42%, transparent 68%);
  animation: float 10s ease-in-out infinite;
}

.hero-orb-one {
  width: 240px;
  height: 240px;
  top: 17%;
  right: 9%;
}

.hero-orb-two {
  width: 110px;
  height: 110px;
  top: 56%;
  right: 25%;
  animation-delay: -3s;
}

@keyframes float {
  50% {
    transform: translate3d(0, -14px, 0) scale(1.04);
  }
}

.hero-content {
  position: relative;
  z-index: 3;
  padding-bottom: 200px;
}

.glass-chip {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .48);
  background: rgba(255, 255, 255, .16);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .42);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.eyebrow {
  padding: 10px 15px;
  margin: 0 0 28px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #d7e8c4;
  box-shadow: 0 0 0 5px rgba(215, 232, 196, .14);
}

.hero h1 {
  max-width: 900px;
  margin: 0;
  font-size: 92px;
  line-height: .91;
  letter-spacing: -.067em;
  font-weight: 650;
  text-wrap: balance;
}

.hero-subtitle {
  max-width: 540px;
  margin: 30px 0 0;
  color: rgba(255, 255, 255, .8);
  font-size: 19px;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-top: 36px;
}

.primary-button {
  min-height: 58px;
  padding: 0 25px;
  background: rgba(255, 255, 255, .92);
  color: var(--ink);
  box-shadow: 0 14px 36px rgba(5, 25, 18, .2), inset 0 1px 0 white;
}

.quiet-note {
  font-size: 14px;
  color: rgba(255, 255, 255, .72);
}

.hero-product {
  position: absolute;
  z-index: 4;
  right: 5.5%;
  bottom: 46px;
  width: 258px;
  min-height: 104px;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 16px;
  border-radius: 26px;
  background: rgba(244, 245, 237, .73);
  color: var(--ink);
}

.hero-product img {
  width: 64px;
  height: 80px;
  object-fit: contain;
  filter: drop-shadow(0 8px 10px rgba(28, 48, 35, .15));
}

.hero-product span {
  display: block;
  margin-bottom: 6px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--moss);
  font-weight: 750;
}

.hero-product strong {
  display: block;
  font-size: 15px;
  line-height: 1.25;
}

.scroll-cue {
  position: absolute;
  z-index: 4;
  left: 50%;
  bottom: 34px;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: white;
  transform: translateX(-50%);
  animation: cue 2s ease-in-out infinite;
}

.glass-icon-button {
  background: rgba(255, 255, 255, .13);
  border: 1px solid rgba(255, 255, 255, .34);
  backdrop-filter: blur(15px);
}

@keyframes cue {
  50% {
    transform: translate(-50%, 5px);
  }
}

/* ================= SHARED HEADINGS ================= */
.section-heading h2,
.companion-copy h2,
.faq-intro h2,
.closing-card h2 {
  margin: 0;
  font-size: 72px;
  line-height: .98;
  letter-spacing: -.057em;
  font-weight: 620;
}

.section-heading p,
.companion-copy>p,
.faq-intro>p {
  color: var(--ink-soft);
  line-height: 1.65;
}

.kicker {
  margin: 0 0 18px !important;
  color: var(--moss) !important;
  font-size: 12px;
  line-height: 1.2 !important;
  font-weight: 780;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, .55fr);
  align-items: end;
  gap: 80px;
  margin-bottom: 60px;
}

.split-heading>p {
  max-width: 390px;
  margin: 0 0 4px;
  font-size: 17px;
}

/* ================= RITUAL ================= */
.ritual-section {
  background: var(--paper);
}

.step-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.step-card {
  position: relative;
  min-height: 480px;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: #dce3d9;
  box-shadow: 0 18px 42px rgba(32, 57, 47, .11);
  isolation: isolate;
}

.step-card>img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease-spring);
}

.step-card:hover>img {
  transform: scale(1.04);
}

.step-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12, 34, 27, .15), transparent 42%, rgba(12, 34, 27, .52));
}

.step-top {
  position: absolute;
  z-index: 2;
  top: 18px;
  left: 18px;
  right: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: white;
}

.step-number,
.step-time {
  display: grid;
  place-items: center;
  min-width: 42px;
  height: 42px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, .46);
  border-radius: 999px;
  background: rgba(23, 54, 44, .22);
  backdrop-filter: blur(14px);
  font-size: 12px;
  font-weight: 750;
}

.step-time {
  height: 34px;
}

.step-copy {
  position: absolute;
  z-index: 2;
  left: 12px;
  right: 12px;
  bottom: 12px;
  padding: 20px;
  border-radius: 20px;
  background: rgba(249, 249, 244, .76);
}

.step-copy h3 {
  margin: 0 0 8px;
  font-size: 25px;
  letter-spacing: -.035em;
}

.step-copy p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.55;
}

.ritual-note {
  width: fit-content;
  max-width: 650px;
  margin: 28px auto 0;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 18px 14px 14px;
  border-radius: 999px;
  box-shadow: 0 12px 34px rgba(35, 59, 49, .08), inset 0 1px 0 white;
}

.ritual-note p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
}

.ritual-note strong {
  color: var(--ink);
}

.note-icon {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #dfe8d3;
  color: var(--ink);
}

/* ================= BENEFITS ================= */
.benefits-section {
  overflow: hidden;
  background: #dfe7db;
}

.benefits-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 22% 18%, rgba(255, 255, 255, .82), transparent 32%), linear-gradient(130deg, rgba(255, 255, 255, .24), transparent 60%);
}

.nature-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  background: rgba(145, 167, 127, .25);
}

.nature-glow-one {
  width: 420px;
  height: 420px;
  right: -110px;
  top: -120px;
}

.nature-glow-two {
  width: 260px;
  height: 260px;
  left: 6%;
  bottom: -100px;
}

.benefits-section .page-shell {
  position: relative;
  z-index: 1;
}

.centered-heading {
  max-width: 700px;
  margin: 0 auto 60px;
  text-align: center;
}

.centered-heading>p:last-child {
  max-width: 520px;
  margin: 22px auto 0;
  font-size: 17px;
}

.benefit-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr .9fr;
  grid-template-rows: repeat(2, 220px);
  gap: 16px;
}

.benefit-card {
  display: flex;
  align-items: flex-end;
  gap: 24px;
  padding: 28px;
  border-radius: var(--radius-md);
  background: rgba(252, 252, 248, .57);
}

.benefit-1 {
  grid-row: 1 / 3;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  padding: 36px;
}

.benefit-4 {
  grid-column: 2 / 4;
}

.benefit-icon {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 20px;
  background: rgba(255, 255, 255, .58);
  box-shadow: inset 0 1px 0 white;
}

.benefit-icon svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: var(--ink);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: .78;
}

.benefit-1 .benefit-icon {
  width: 86px;
  height: 86px;
  border-radius: 27px;
}

.benefit-1 .benefit-icon svg {
  width: 46px;
  height: 46px;
}

.benefit-card h3 {
  margin: 0 0 9px;
  font-size: 22px;
  line-height: 1.1;
  letter-spacing: -.035em;
}

.benefit-1 h3 {
  max-width: 360px;
  font-size: 36px;
}

.benefit-card p {
  margin: 0;
  max-width: 470px;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.6;
}

/* ================= ESSENTIAL OILS ================= */
.companion-section {
  background: var(--cream);
}

.companion-grid {
  display: grid;
  grid-template-columns: 1.05fr .8fr;
  align-items: center;
  gap: 92px;
}

.companion-image-wrap {
  position: relative;
}

.companion-image {
  width: 100%;
  aspect-ratio: 1.14;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  animation: companion-image-in .42s var(--ease-spring) both;
}

@keyframes companion-image-in {
  from {
    opacity: .45;
    transform: scale(.985);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.floating-label {
  position: absolute;
  right: -24px;
  bottom: 28px;
  padding: 13px 17px;
  background: rgba(255, 255, 255, .72);
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
}

.companion-copy>p:not(.kicker) {
  margin: 25px 0 0;
  max-width: 490px;
  font-size: 17px;
}

.choice-row {
  width: fit-content;
  display: flex;
  gap: 5px;
  margin: 30px 0;
  padding: 5px;
  border: 1px solid rgba(255, 255, 255, .75);
  border-radius: 999px;
  background: rgba(255, 255, 255, .48);
  box-shadow: inset 0 1px 0 white;
}

.choice {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 12px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
}

.choice.active {
  background: rgba(255, 255, 255, .9);
  color: var(--ink);
  box-shadow: 0 4px 14px rgba(33, 55, 45, .09);
}

.choice:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 2px;
}

.swatch {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.lavender {
  background: #8f819e;
}

.citrus {
  background: #d39c4a;
}

.cedar {
  background: #647357;
}

.dark-button {
  min-height: 56px;
  padding: 0 24px;
  background: var(--ink);
  color: white;
  box-shadow: 0 14px 30px rgba(23, 60, 49, .19);
}

/* ================= FAQ ================= */
.faq-section {
  background: var(--paper);
}

.faq-shell {
  display: grid;
  grid-template-columns: .72fr 1.2fr;
  align-items: start;
  gap: 110px;
}

.faq-intro {
  position: sticky;
  top: 130px;
}

.faq-intro h2 {
  font-size: 68px;
}

.faq-intro>p:last-child {
  max-width: 370px;
  margin: 24px 0 0;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  min-height: 92px;
  cursor: pointer;
  font-size: 18px;
  font-weight: 680;
  line-height: 1.35;
  letter-spacing: -.02em;
}

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

.faq-item summary i {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  background: rgba(221, 230, 214, .62);
  font-style: normal;
  font-size: 20px;
  transition: transform .35s var(--ease-spring), background .3s ease;
}

.faq-item[open] summary i {
  transform: rotate(45deg);
  background: var(--ink);
  color: white;
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .35s var(--ease-spring);
}

.faq-item[open] .faq-answer {
  grid-template-rows: 1fr;
}

.faq-answer p {
  max-width: 680px;
  margin: -4px 60px 28px 0;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.7;
  overflow: hidden;
}

/* ================= CLOSING CTA ================= */
.closing-section {
  min-height: 720px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: white;
}

.closing-bg,
.closing-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.closing-shade {
  background: linear-gradient(90deg, rgba(10, 35, 27, .75), rgba(10, 35, 27, .28));
}

.closing-content {
  position: relative;
  z-index: 2;
}

.closing-card {
  width: 100%;
  max-width: 660px;
  padding: 50px;
  border-radius: var(--radius-lg);
  background: rgba(28, 61, 50, .38);
  color: white;
}

.closing-card h2 {
  font-size: 74px;
}

.closing-card>p:not(.kicker) {
  max-width: 480px;
  margin: 24px 0 32px;
  color: rgba(255, 255, 255, .76);
  font-size: 17px;
  line-height: 1.6;
}

.light-kicker {
  color: rgba(255, 255, 255, .68) !important;
}

.light-primary {
  box-shadow: 0 14px 32px rgba(4, 23, 16, .2);
}

/* ================= FOOTER ================= */
.footer {
  padding: 62px 0 72px;
  background: #102e25;
  color: white;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: end;
  gap: 60px;
}

.footer-logo {
  width: 132px;
  height: 52px;
  object-fit: contain;
  margin-bottom: 16px;
  border-radius: 6px;
}

.footer p {
  margin: 0;
  color: rgba(255, 255, 255, .59);
  font-size: 13px;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 13px;
  color: rgba(255, 255, 255, .72);
}

.footer-link {
  font-size: 13px;
  font-weight: 700;
}

/* ================= FLOATING PROGRESS ================= */
.floating-progress {
  position: fixed;
  z-index: var(--z-navbar);
  right: 24px;
  bottom: 24px;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(28, 60, 49, .8);
  box-shadow: 0 16px 38px rgba(12, 40, 31, .22);
  opacity: 0;
  pointer-events: none;
  transform: translateY(14px) scale(.86);
  transition: opacity .3s ease, transform .4s var(--ease-spring);
}

.floating-progress svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.floating-progress circle {
  fill: none;
  stroke-width: 3px;
}

.progress-track {
  stroke: rgba(255, 255, 255, .28);
}

.progress-value {
  stroke: #b7c99e;
  stroke-dasharray: 163.36;
  stroke-dashoffset: 163.36;
  stroke-linecap: round;
  transition: stroke-dashoffset var(--motion-fast) linear;
}

.floating-progress span {
  position: relative;
  color: white;
  font-weight: 800;
}

.floating-progress.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: none;
}

.mobile-dock {
  display: none;
}

/* ================= RESPONSIVE: LARGE DESKTOP ================= */



.page-shell {
  max-width: 1280px;
  padding-inline: 64px;
}

.ritual-section {
  padding-top: 148px;
  padding-bottom: 148px;
}

.benefits-section {
  padding-top: 148px;
  padding-bottom: 148px;
}

.companion-section {
  padding-top: 148px;
  padding-bottom: 148px;
}

.faq-section {
  padding-top: 148px;
  padding-bottom: 148px;
}

.closing-section {
  padding-top: 148px;
  padding-bottom: 148px;
}

.hero h1 {
  font-size: 116px;
}

.section-heading h2,
.companion-copy h2,
.closing-card h2 {
  font-size: 82px;
}

.faq-intro h2 {
  font-size: 72px;
}

.step-card {
  min-height: 520px;
}

@media screen and (min-width:1400px) and (max-width:1640px) {
  .hero-content {

    padding-bottom: 50px;
  }

  .hero h1 {
    font-size: 80px;
    line-height: 90px;
  }

}

/* ================= RESPONSIVE: DESKTOP ================= */
@media screen and (min-width:1200px) and (max-width:1399.98px) {
  .ritual-section {
    padding-top: 128px;
    padding-bottom: 128px;
  }

  .benefits-section {
    padding-top: 128px;
    padding-bottom: 128px;
  }

  .companion-section {
    padding-top: 128px;
    padding-bottom: 128px;
  }

  .faq-section {
    padding-top: 128px;
    padding-bottom: 128px;
  }

  .closing-section {
    padding-top: 128px;
    padding-bottom: 128px;
  }

  .step-card {
    min-height: 480px;
  }
}

/* ================= RESPONSIVE: SMALL DESKTOP ================= */
@media screen and (min-width:992px) and (max-width:1199.98px) {
  .page-shell {
    max-width: 1080px;
    padding-inline: 36px;
  }

  .ritual-section {
    padding-top: 112px;
    padding-bottom: 112px;
  }

  .benefits-section {
    padding-top: 112px;
    padding-bottom: 112px;
  }

  .companion-section {
    padding-top: 112px;
    padding-bottom: 112px;
  }

  .faq-section {
    padding-top: 112px;
    padding-bottom: 112px;
  }

  .closing-section {
    padding-top: 112px;
    padding-bottom: 112px;
  }

  .hero h1 {
    font-size: 78px;
  }

  .section-heading h2,
  .companion-copy h2,
  .closing-card h2 {
    font-size: 64px;
  }

  .faq-intro h2 {
    font-size: 58px;
  }

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

  .step-card {
    min-height: 520px;
  }

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

  .benefit-card,
  .benefit-1,
  .benefit-4 {
    grid-column: auto;
    grid-row: auto;
    min-height: 230px;
    flex-direction: row;
    align-items: flex-end;
    padding: 30px;
  }

  .companion-grid {
    gap: 64px;
  }

  .faq-shell {
    gap: 70px;
  }
}

/* ================= RESPONSIVE: TABLET ================= */
@media screen and (min-width:768px) and (max-width:991.98px) {
  .page-shell {
    max-width: 860px;
    padding-inline: 28px;
  }

  .ritual-section {
    padding-top: 96px;
    padding-bottom: 96px;
  }

  .benefits-section {
    padding-top: 96px;
    padding-bottom: 96px;
  }

  .companion-section {
    padding-top: 96px;
    padding-bottom: 96px;
  }

  .faq-section {
    padding-top: 96px;
    padding-bottom: 96px;
  }

  .closing-section {
    padding-top: 96px;
    padding-bottom: 96px;
  }

  .topbar {
    width: 96%;
  }

  .hero-content {
    padding-bottom: 112px;
  }

  .hero h1 {
    font-size: 72px;
  }

  .section-heading h2,
  .companion-copy h2,
  .closing-card h2 {
    font-size: 58px;
  }

  .faq-intro h2 {
    font-size: 54px;
  }

  .hero-product {
    right: 28px;
  }

  .split-heading {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-bottom: 46px;
  }

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

  .step-card {
    min-height: 470px;
  }

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

  .benefit-card,
  .benefit-1,
  .benefit-4 {
    grid-column: auto;
    grid-row: auto;
    min-height: 220px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
  }

  .benefit-1 h3 {
    font-size: 28px;
  }

  .companion-grid {
    grid-template-columns: 1fr;
    gap: 54px;
  }

  .companion-image-wrap {
    max-width: 700px;
  }

  .faq-shell {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .faq-intro {
    position: static;
  }

  .closing-section {
    min-height: 660px;
  }
}

/* ================= RESPONSIVE: LARGE MOBILE ================= */
@media screen and (min-width:576px) and (max-width:767.98px) {
  .page-shell {
    max-width: 680px;
    padding-inline: 20px;
  }

  .ritual-section {
    padding-top: 84px;
    padding-bottom: 84px;
  }

  .benefits-section {
    padding-top: 84px;
    padding-bottom: 84px;
  }

  .companion-section {
    padding-top: 84px;
    padding-bottom: 84px;
  }

  .faq-section {
    padding-top: 84px;
    padding-bottom: 84px;
  }

  .closing-section {
    padding-top: 84px;
    padding-bottom: 84px;
  }

  .topbar {
    top: 14px;
    width: 96%;
    min-height: 60px;
  }

  .nav-links {
    display: none;
  }

  .hero {
    min-height: 920px;
  }

  .hero-video-wide {
    display: none;
  }

  .hero-video-square {
    display: block;
  }

  .hero-shade {
    background: linear-gradient(0deg, rgba(11, 35, 27, .78) 0%, rgba(11, 35, 27, .44) 54%, rgba(11, 35, 27, .08) 86%);
  }

  .hero-content {
    padding-bottom: 210px;
  }

  .hero h1 {
    font-size: 62px;
  }

  .section-heading h2,
  .companion-copy h2,
  .closing-card h2 {
    font-size: 52px;
  }

  .faq-intro h2 {
    font-size: 50px;
  }

  .hero-product {
    left: 20px;
    right: auto;
    bottom: 82px;
  }

  .scroll-cue {
    display: none;
  }

  .split-heading,
  .companion-grid,
  .faq-shell {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .split-heading {
    margin-bottom: 42px;
  }

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

  .step-card {
    min-height: 430px;
  }

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

  .benefit-card,
  .benefit-1,
  .benefit-4 {
    grid-column: auto;
    grid-row: auto;
    min-height: 210px;
    flex-direction: row;
    align-items: flex-end;
    padding: 28px;
  }

  .benefit-1 h3 {
    font-size: 28px;
  }

  .faq-intro {
    position: static;
  }

  .closing-section {
    min-height: 620px;
  }

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

  .footer-link {
    grid-column: 2;
  }
}

/* ================= RESPONSIVE: MOBILE ================= */
@media screen and (max-width:575.98px) {
  html {
    scroll-padding-top: 82px;
  }

  .page-shell {
    padding-inline: 18px;
  }

  .ritual-section {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .benefits-section {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .companion-section {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .faq-section {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .closing-section {
    padding-top: 68px;
    padding-bottom: 68px;
  }

  .topbar {
    top: 10px;
    width: 96%;
    min-height: 58px;
    grid-template-columns: 1fr auto;
    padding-left: 14px;
  }

  .brand-mark img {
    width: 88px;
    height: 36px;
  }

  .nav-links {
    display: none;
  }

  .small-button {
    min-height: 42px;
    padding: 0 15px;
    font-size: 13px;
  }

  .hero {
    min-height: 860px;
    align-items: flex-end;
  }

  .hero-video-wide {
    display: none;
  }

  .hero-video-square {
    display: block;
  }

  .hero-shade {
    background: linear-gradient(0deg, rgba(9, 32, 24, .86) 0%, rgba(9, 32, 24, .55) 52%, rgba(9, 32, 24, .1) 86%);
  }

  .hero-orb-one {
    width: 150px;
    height: 150px;
    right: -32px;
    top: 18%;
  }

  .hero-orb-two {
    width: 76px;
    height: 76px;
    right: 38%;
    top: 31%;
  }

  .hero-content {
    padding-bottom: 198px;
  }

  .eyebrow {
    margin-bottom: 20px;
    padding: 9px 12px;
    font-size: 9.5px;
  }

  .hero h1 {
    font-size: 54px;
    line-height: .94;
    letter-spacing: -.062em;
  }

  .hero-subtitle {
    max-width: 330px;
    margin-top: 22px;
    font-size: 15px;
    line-height: 1.5;
  }

  .hero-actions {
    margin-top: 27px;
  }

  .primary-button {
    min-height: 52px;
    padding: 0 20px;
    font-size: 14px;
  }

  .quiet-note {
    display: none;
  }

  .hero-product {
    left: 16px;
    right: 16px;
    bottom: 86px;
    width: auto;
    min-height: 92px;
  }

  .hero-product img {
    width: 56px;
    height: 68px;
  }

  .scroll-cue {
    display: none;
  }

  .section-heading h2,
  .companion-copy h2,
  .faq-intro h2,
  .closing-card h2 {
    font-size: 46px;
  }

  .split-heading,
  .companion-grid,
  .faq-shell {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .split-heading {
    margin-bottom: 34px;
  }

  .split-heading>p {
    font-size: 15px;
  }

  .step-grid {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    margin-inline: -18px;
    padding: 0 18px 18px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .step-grid::-webkit-scrollbar {
    display: none;
  }

  .step-card {
    flex: 0 0 88%;
    min-height: 485px;
    scroll-snap-align: center;
  }

  .step-copy {
    padding: 18px;
  }

  .ritual-note {
    align-items: flex-start;
    border-radius: 25px;
  }

  .ritual-note p {
    font-size: 13px;
    line-height: 1.5;
  }

  .centered-heading {
    margin-bottom: 36px;
    text-align: left;
  }

  .centered-heading>p:last-child {
    margin-left: 0;
    font-size: 15px;
  }

  .benefit-grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 12px;
  }

  .benefit-card,
  .benefit-1,
  .benefit-4 {
    grid-column: auto;
    grid-row: auto;
    min-height: 184px;
    flex-direction: row;
    align-items: flex-end;
    justify-content: flex-start;
    padding: 22px;
    border-radius: 24px;
  }

  .benefit-icon,
  .benefit-1 .benefit-icon {
    width: 54px;
    height: 54px;
    border-radius: 17px;
  }

  .benefit-icon svg,
  .benefit-1 .benefit-icon svg {
    width: 30px;
    height: 30px;
  }

  .benefit-card h3,
  .benefit-1 h3 {
    font-size: 21px;
  }

  .benefit-card p {
    font-size: 13px;
  }

  .companion-grid {
    gap: 40px;
  }

  .companion-image {
    aspect-ratio: .96;
    border-radius: 30px;
  }

  .floating-label {
    right: 12px;
    bottom: 12px;
  }

  .companion-copy>p:not(.kicker) {
    font-size: 15px;
  }

  .choice-row {
    max-width: 100%;
    overflow-x: auto;
  }

  .choice {
    padding: 9px 10px;
  }

  .faq-shell {
    gap: 36px;
  }

  .faq-intro {
    position: static;
  }

  .faq-intro>p:last-child {
    font-size: 15px;
  }

  .faq-item summary {
    min-height: 82px;
    font-size: 16px;
  }

  .faq-answer p {
    margin-right: 0;
    font-size: 14px;
  }

  .closing-section {
    min-height: 620px;
  }

  .closing-shade {
    background: rgba(10, 35, 27, .52);
  }

  .closing-card {
    padding: 30px 24px;
    border-radius: 30px;
    background: rgba(25, 57, 46, .5);
  }

  .closing-card>p:not(.kicker) {
    font-size: 15px;
  }

  .footer {
    padding: 54px 0 112px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 28px;
  }

  .footer-contact {
    gap: 8px;
  }

  .floating-progress {
    right: 16px;
    bottom: 92px;
    width: 50px;
    height: 50px;
  }

  .mobile-dock {
    position: fixed;
    z-index: var(--z-navbar);
    left: 2%;
    bottom: 10px;
    width: 96%;
    min-height: 66px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: center;
    padding: 6px;
    border-radius: 24px;
    background: rgba(248, 249, 244, .8);
  }

  .mobile-dock a {
    min-height: 52px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    border-radius: 18px;
    color: var(--ink-soft);
    font-size: 10px;
    font-weight: 700;
  }

  .mobile-dock a:active {
    background: rgba(219, 229, 211, .7);
  }

  .mobile-dock span {
    font-size: 18px;
    line-height: 1;
  }
}

/* ================= REDUCED MOTION ================= */
@media screen and (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}