/* =========================================================
   THE FORMULATE  ·  Rosemary Hair Serum
   Premium beauty theme  ·  warm beige, sage, soft peach
   ========================================================= */

/* ---------------------------------------------------------
   1. TOKENS
   --------------------------------------------------------- */
:root {
  /* surfaces */
  --beige:      #E8E2D8;
  --beige-2:    #EFEAE2;
  --beige-3:    #E2DBCF;
  --cream:      #F6F2EA;
  --paper:      #FCFAF6;

  /* botanicals */
  --sage:       #6F8F72;
  --sage-soft:  #8FAA92;
  --sage-pale:  #DCE6DC;
  --sage-deep:  #4C6650;
  --sage-ink:   #2F3F31;

  /* conversion accent */
  --peach:      #F2A65A;
  --peach-soft: #F8C892;
  --peach-pale: #FBEBD7;
  --peach-deep: #D9862F;

  /* ink */
  --ink:        #2C2823;
  --ink-2:      #5E574C;
  --ink-3:      #8B8377;
  --ink-4:      #ABA294;

  /* lines */
  --line:       rgba(111, 143, 114, .22);
  --line-soft:  rgba(111, 143, 114, .13);
  --line-ink:   rgba(44, 40, 35, .10);

  /* shadows */
  --sh-xs: 0 1px 2px rgba(72, 60, 42, .05);
  --sh-sm: 0 2px 6px rgba(72, 60, 42, .05), 0 10px 26px rgba(72, 60, 42, .05);
  --sh-md: 0 3px 10px rgba(72, 60, 42, .05), 0 20px 50px rgba(72, 60, 42, .08);
  --sh-lg: 0 8px 24px rgba(72, 60, 42, .07), 0 40px 90px rgba(72, 60, 42, .12);
  --sh-peach: 0 10px 28px rgba(217, 134, 47, .26);

  /* radii */
  --r-xs: 10px;
  --r-sm: 14px;
  --r-md: 20px;
  --r-lg: 28px;
  --r-xl: 38px;
  --r-pill: 999px;

  /* type */
  --f-display: 'Cormorant Garamond', 'Noto Serif Bengali', Georgia, 'Times New Roman', serif;
  --f-bn-display: 'Noto Serif Bengali', 'Cormorant Garamond', Georgia, serif;
  --f-body: 'Jost', 'Hind Siliguri', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --f-bn: 'Hind Siliguri', 'Jost', system-ui, sans-serif;

  /* motion */
  --ease: cubic-bezier(.22, .61, .36, 1);
  --ease-soft: cubic-bezier(.33, 1, .68, 1);

  /* layout */
  --wrap: 1200px;
  --wrap-wide: 1320px;
  --pad: clamp(18px, 4vw, 34px);
  --head-h: 74px;
}

/* ---------------------------------------------------------
   2. RESET
   --------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--head-h) + 16px);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--beige);
  color: var(--ink);
  font-family: var(--f-bn);
  font-size: 16.5px;
  font-weight: 400;
  line-height: 1.78;
  letter-spacing: .002em;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4 { margin: 0; font-weight: 600; line-height: 1.28; letter-spacing: -.005em; }
p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
img, svg { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
button { background: none; border: 0; cursor: pointer; }
s { text-decoration-thickness: 1px; }
[hidden] { display: none !important; }

.eng { font-family: var(--f-body); }

::selection { background: var(--peach-soft); color: var(--ink); }

:focus-visible {
  outline: 2px solid var(--sage);
  outline-offset: 3px;
  border-radius: 4px;
}

/* small separator dots used inside captions */
.sec-tag i,
.ba-frame figcaption i,
.rev-photo figcaption i,
.order-aside__sub i,
.final-cta small i,
.foot-made i {
  display: inline-block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: currentColor;
  opacity: .45;
  vertical-align: middle;
  margin: 0 .55em;
  font-style: normal;
}

/* ---------------------------------------------------------
   3. LAYOUT PRIMITIVES
   --------------------------------------------------------- */
.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 var(--pad);
}
.wrap--wide { max-width: var(--wrap-wide); }

.sec {
  position: relative;
  padding: clamp(64px, 9vw, 128px) 0;
}
.sec--problem,
.sec--benefits { background: linear-gradient(180deg, rgba(246, 242, 234, 0) 0%, rgba(246, 242, 234, .82) 12%, rgba(246, 242, 234, .82) 88%, rgba(246, 242, 234, 0) 100%); }
.sec--order { background: linear-gradient(180deg, rgba(226, 219, 207, 0) 0%, rgba(226, 219, 207, .7) 10%, rgba(226, 219, 207, .7) 90%, rgba(226, 219, 207, 0) 100%); }

.skip-link {
  position: fixed;
  left: 50%;
  top: -80px;
  transform: translateX(-50%);
  z-index: 200;
  padding: 12px 26px;
  background: var(--sage-deep);
  color: var(--paper);
  border-radius: var(--r-pill);
  font-size: .9rem;
  transition: top .3s var(--ease);
}
.skip-link:focus { top: 14px; }

/* ---------------------------------------------------------
   3b. REVEAL ON SCROLL
   ---------------------------------------------------------
   Declared here, ahead of every component rule, so that a later
   :hover transform of equal specificity still wins once an element
   has been revealed.
   --------------------------------------------------------- */
[data-reveal] {
  transition: opacity .85s var(--ease-soft), transform .85s var(--ease-soft);
  will-change: opacity, transform;
}
/* The hidden start state is applied only once script.js has proved it can run,
   so a blocked or failed script can never leave the page blank. */
.js [data-reveal] {
  opacity: 0;
  transform: translateY(26px);
}
[data-reveal].in {
  opacity: 1;
  transform: none;
}

/* ---------------------------------------------------------
   4. AMBIENT BACKGROUND
   --------------------------------------------------------- */
.bg-fx {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
  background:
    radial-gradient(120% 70% at 50% -10%, rgba(252, 250, 246, .9) 0%, rgba(252, 250, 246, 0) 60%),
    var(--beige);
}

.bg-wash {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: .5;
}
.bg-wash--1 {
  width: 46vw; height: 46vw;
  top: -12vw; left: -10vw;
  background: radial-gradient(circle, rgba(143, 170, 146, .55) 0%, rgba(143, 170, 146, 0) 70%);
  animation: drift 26s ease-in-out infinite alternate;
}
.bg-wash--2 {
  width: 40vw; height: 40vw;
  top: 34%; right: -12vw;
  background: radial-gradient(circle, rgba(248, 200, 146, .48) 0%, rgba(248, 200, 146, 0) 70%);
  animation: drift 32s ease-in-out infinite alternate-reverse;
}
.bg-wash--3 {
  width: 52vw; height: 52vw;
  bottom: -18vw; left: 22%;
  background: radial-gradient(circle, rgba(220, 230, 220, .7) 0%, rgba(220, 230, 220, 0) 70%);
  animation: drift 38s ease-in-out infinite alternate;
}

@keyframes drift {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to   { transform: translate3d(3vw, 4vw, 0) scale(1.12); }
}

/* fine paper grain */
.bg-grain {
  position: absolute;
  inset: -50%;
  opacity: .5;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)' opacity='.24'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}

/* ---------------------------------------------------------
   5. SCROLL PROGRESS + CURSOR AURA
   --------------------------------------------------------- */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 0;
  z-index: 120;
  background: linear-gradient(90deg, var(--sage) 0%, var(--peach) 100%);
  transition: width .12s linear;
}

.cursor-aura {
  position: fixed;
  top: 0; left: 0;
  width: 340px; height: 340px;
  z-index: 0;
  pointer-events: none;
  opacity: 0;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(242, 166, 90, .16) 0%, rgba(111, 143, 114, .08) 42%, rgba(111, 143, 114, 0) 70%);
  transition: opacity .6s var(--ease);
  will-change: transform;
}
@media (hover: none) { .cursor-aura { display: none; } }

/* ---------------------------------------------------------
   6. HEADER
   --------------------------------------------------------- */
.site-head {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-head.is-stuck {
  background: rgba(246, 242, 234, .82);
  backdrop-filter: blur(18px) saturate(1.4);
  -webkit-backdrop-filter: blur(18px) saturate(1.4);
  border-bottom-color: var(--line-soft);
  box-shadow: 0 6px 30px rgba(72, 60, 42, .06);
}

.head-inner {
  height: var(--head-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  line-height: 1;
}
.brand__the {
  font-family: var(--f-display);
  font-style: italic;
  font-size: .82rem;
  color: var(--ink-3);
  letter-spacing: .04em;
}
.brand__mark {
  font-family: var(--f-body);
  font-weight: 500;
  font-size: 1.32rem;
  letter-spacing: -.012em;
  color: var(--ink);
}
.brand__mark i { font-style: normal; }
.brand__e { color: var(--sage); }
.brand__mark b { color: var(--peach); font-weight: 500; }
.brand--light .brand__mark { color: var(--cream); }
.brand--light .brand__the { color: rgba(246, 242, 234, .55); }
.brand--light .brand__e { color: var(--sage-soft); }

.nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 1.9vw, 28px);
}
.nav > a {
  position: relative;
  font-size: .95rem;
  font-weight: 500;
  color: var(--ink-2);
  padding: 6px 0;
  transition: color .3s var(--ease);
}
.nav > a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  height: 1px; width: 0;
  background: var(--sage);
  transition: width .38s var(--ease);
}
.nav > a:hover { color: var(--sage-deep); }
.nav > a:hover::after,
.nav > a.is-active::after { width: 100%; }
.nav > a.is-active { color: var(--sage-deep); }

.nav__cta,
.nav > a.nav__cta {
  padding: 10px 22px;
  border-radius: var(--r-pill);
  background: var(--peach);
  color: #3A2410;
  font-weight: 600;
  box-shadow: 0 6px 18px rgba(217, 134, 47, .22);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .3s var(--ease);
}
.nav > a.nav__cta::after { display: none; }
.nav > a.nav__cta:hover {
  background: var(--peach-soft);
  color: #3A2410;
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(217, 134, 47, .3);
}

.burger {
  display: none;
  width: 44px; height: 44px;
  border-radius: var(--r-pill);
  border: 1px solid var(--line);
  background: rgba(252, 250, 246, .7);
  padding: 0;
  place-items: center;
}
.burger span {
  display: block;
  width: 19px; height: 1.6px;
  margin: 3.4px auto;
  border-radius: 2px;
  background: var(--ink);
  transition: transform .34s var(--ease), opacity .24s var(--ease);
}
.burger.is-open span:nth-child(1) { transform: translateY(5px) rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; }
.burger.is-open span:nth-child(3) { transform: translateY(-5px) rotate(-45deg); }

@media (max-width: 940px) {
  .burger { display: grid; }
  .nav {
    position: fixed;
    top: var(--head-h);
    left: 12px; right: 12px;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    padding: 14px;
    border-radius: var(--r-lg);
    background: rgba(252, 250, 246, .97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--line);
    box-shadow: var(--sh-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: opacity .32s var(--ease), transform .32s var(--ease), visibility .32s;
  }
  .nav.is-open { opacity: 1; visibility: visible; transform: none; }
  .nav > a { padding: 13px 14px; border-radius: var(--r-sm); font-size: 1rem; }
  .nav > a::after { display: none; }
  .nav > a:hover { background: var(--sage-pale); }
  .nav > a.nav__cta { text-align: center; margin-top: 8px; }
}

/* ---------------------------------------------------------
   7. BUTTONS
   --------------------------------------------------------- */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 32px;
  border-radius: var(--r-pill);
  font-family: var(--f-bn);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: .005em;
  line-height: 1.2;
  cursor: pointer;
  overflow: hidden;
  transition: transform .32s var(--ease), box-shadow .32s var(--ease),
              background .32s var(--ease), color .32s var(--ease), border-color .32s var(--ease);
}
.btn svg {
  width: 17px; height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform .34s var(--ease);
}
.btn:hover svg { transform: translateY(3px); }

.btn--primary {
  background: linear-gradient(135deg, var(--peach) 0%, var(--peach-deep) 100%);
  color: #FFF8EF;
  box-shadow: var(--sh-peach);
}
.btn--primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--peach-soft) 0%, var(--peach) 100%);
  opacity: 0;
  transition: opacity .34s var(--ease);
}
.btn--primary > * { position: relative; z-index: 1; }
.btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 38px rgba(217, 134, 47, .34);
}
.btn--primary:hover::before { opacity: 1; }
.btn--primary:active { transform: translateY(-1px); }

.btn--ghost {
  background: transparent;
  color: var(--sage-deep);
  border: 1px solid var(--line);
  box-shadow: inset 0 0 0 0 var(--sage-pale);
}
.btn--ghost:hover {
  background: var(--sage-pale);
  border-color: rgba(111, 143, 114, .4);
  transform: translateY(-3px);
}

.btn--lg { padding: 18px 42px; font-size: 1.06rem; }
.btn--block { width: 100%; }

.btn__spin {
  position: absolute;
  width: 19px; height: 19px;
  border-radius: 50%;
  border: 2px solid rgba(255, 248, 239, .35);
  border-top-color: #FFF8EF;
  opacity: 0;
  animation: spin .7s linear infinite;
  z-index: 2;
}
#submitBtn.is-loading .btn__label { opacity: .35; }
#submitBtn.is-loading .btn__spin { opacity: 1; }
#submitBtn:disabled { cursor: progress; }
@keyframes spin { to { transform: rotate(360deg); } }

.cta-row { display: flex; flex-wrap: wrap; gap: 14px; }
.center-cta { margin-top: clamp(38px, 5vw, 60px); text-align: center; }

/* ---------------------------------------------------------
   8. PILL / EYEBROW
   --------------------------------------------------------- */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 20px;
  padding: 8px 18px 8px 14px;
  border-radius: var(--r-pill);
  border: 1px solid var(--line);
  background: rgba(252, 250, 246, .72);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  font-size: .86rem;
  font-weight: 500;
  color: var(--sage-deep);
  box-shadow: var(--sh-xs);
}
.pill__dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--sage);
  box-shadow: 0 0 0 0 rgba(111, 143, 114, .5);
  animation: pulse 2.6s var(--ease-soft) infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(111, 143, 114, .48); }
  70%  { box-shadow: 0 0 0 9px rgba(111, 143, 114, 0); }
  100% { box-shadow: 0 0 0 0 rgba(111, 143, 114, 0); }
}

/* ---------------------------------------------------------
   9. HERO
   --------------------------------------------------------- */
.hero {
  position: relative;
  padding: calc(var(--head-h) + clamp(30px, 6vw, 74px)) 0 0;
}

.hero__grid {
  display: grid;
  gap: clamp(26px, 4vw, 44px);
  align-items: start;
  grid-template-areas:
    "bottle"
    "copy"
    "model";
  padding-bottom: clamp(46px, 7vw, 90px);
}

/* --- the hovering bottle, top left --- */
.hero__bottle {
  grid-area: bottle;
  position: relative;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 18px;
  justify-self: start;
}
.hero__bottle img {
  position: relative;
  z-index: 2;
  width: 88px;
  filter: drop-shadow(0 26px 30px rgba(72, 60, 42, .22));
  animation: hover-float 6.5s var(--ease-soft) infinite alternate;
  will-change: transform;
}
.hero__bottle-arch {
  position: absolute;
  z-index: 1;
  left: -14px;
  top: 6%;
  width: 116px;
  height: 150px;
  border-radius: 999px 999px 18px 18px;
  background: linear-gradient(180deg, rgba(220, 230, 220, .95) 0%, rgba(220, 230, 220, 0) 100%);
}
.hero__bottle-shadow {
  position: absolute;
  z-index: 0;
  left: 4px;
  bottom: -6px;
  width: 80px;
  height: 14px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(72, 60, 42, .22) 0%, rgba(72, 60, 42, 0) 70%);
  animation: hover-shadow 6.5s var(--ease-soft) infinite alternate;
}
.hero__bottle figcaption {
  position: relative;
  z-index: 2;
  padding-left: 16px;
  border-left: 1px solid var(--line);
}
.hero__bottle figcaption b {
  display: block;
  font-family: var(--f-display);
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1;
  color: var(--ink);
}
.hero__bottle figcaption span {
  display: block;
  margin-top: 5px;
  font-size: .66rem;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--sage);
}

@keyframes hover-float {
  from { transform: translateY(0) rotate(-1.5deg); }
  to   { transform: translateY(-16px) rotate(1.5deg); }
}
@keyframes hover-shadow {
  from { transform: scaleX(1); opacity: .9; }
  to   { transform: scaleX(.76); opacity: .5; }
}

/* --- copy --- */
.hero__copy { grid-area: copy; min-width: 0; }

.hero__title { margin: 0 0 22px; }
.hero__eyebrow {
  display: block;
  margin-bottom: 14px;
  font-family: var(--f-display);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .42em;
  text-transform: uppercase;
  color: var(--sage);
}
.hero__title-bn {
  display: block;
  font-family: var(--f-bn-display);
  font-weight: 600;
  font-size: clamp(1.82rem, 3.9vw, 3.05rem);
  line-height: 1.38;
  letter-spacing: -.012em;
  color: var(--ink);
}
.hero__title-en {
  display: block;
  margin-top: 12px;
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.2rem, 2.2vw, 1.85rem);
  letter-spacing: .01em;
  color: var(--sage-deep);
}

.hero__lede {
  max-width: 60ch;
  margin: 0 0 26px;
  font-size: 1.02rem;
  color: var(--ink-2);
  line-height: 1.9;
}
.hero__lede strong { color: var(--ink); font-weight: 600; }

.hero__price {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 28px;
  padding-bottom: 26px;
  border-bottom: 1px solid var(--line-soft);
}
.hero__price-now {
  font-family: var(--f-bn-display);
  font-size: clamp(2.2rem, 4.4vw, 3rem);
  font-weight: 600;
  line-height: 1;
  color: var(--ink);
  letter-spacing: -.02em;
}
.hero__price-now .tk { color: var(--peach-deep); margin-left: 2px; }
.hero__price-old {
  font-size: 1.08rem;
  color: var(--ink-4);
  text-decoration: line-through;
  text-decoration-thickness: 1px;
}
.hero__price-tag {
  padding: 6px 14px;
  border-radius: var(--r-pill);
  background: var(--peach-pale);
  border: 1px solid rgba(217, 134, 47, .26);
  color: var(--peach-deep);
  font-size: .8rem;
  font-weight: 600;
}

.hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}
.hero__chips li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: var(--r-pill);
  border: 1px solid var(--line-soft);
  background: rgba(252, 250, 246, .6);
  font-size: .84rem;
  color: var(--ink-2);
}
.hero__chips li::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--sage);
}

/* --- model 5, right side --- */
.hero__model {
  grid-area: model;
  position: relative;
  margin: 0;
  justify-self: center;
  width: 100%;
  max-width: 460px;
  isolation: isolate;
}
.hero__model-frame {
  position: relative;
  z-index: 2;
  overflow: hidden;
  border-radius: 50% 50% 26px 26px / 34% 34% 3.4% 3.4%;
  box-shadow: var(--sh-lg);
  background: var(--cream);
}
.hero__model-frame img {
  width: 100%;
  aspect-ratio: 1086 / 1448;
  object-fit: cover;
  object-position: 52% 22%;
  transform: scale(1.02);
  transition: transform 1.4s var(--ease-soft);
}
.hero__model:hover .hero__model-frame img { transform: scale(1.06); }
.hero__model-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(252, 250, 246, .4);
  pointer-events: none;
}
.hero__model-ring {
  position: absolute;
  z-index: 1;
  inset: -16px -16px 22px;
  border: 1px solid var(--line);
  border-radius: 50% 50% 26px 26px / 34% 34% 3.4% 3.4%;
}
.hero__model-leaf {
  position: absolute;
  z-index: 0;
  right: -8%;
  bottom: 8%;
  width: 190px; height: 190px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(248, 200, 146, .55) 0%, rgba(248, 200, 146, 0) 68%);
  filter: blur(6px);
}

.float-badge {
  position: absolute;
  z-index: 3;
  display: grid;
  place-items: center;
  gap: 1px;
  min-width: 78px;
  padding: 12px 16px;
  border-radius: var(--r-md);
  background: rgba(252, 250, 246, .9);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--line);
  box-shadow: var(--sh-md);
  text-align: center;
  animation: hover-float 7.5s var(--ease-soft) infinite alternate;
}
.float-badge b {
  font-family: var(--f-bn-display);
  font-size: 1.32rem;
  font-weight: 600;
  line-height: 1;
  color: var(--sage-deep);
}
.float-badge span {
  font-family: var(--f-bn);
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .02em;
  color: var(--ink-3);
}
.float-badge .stars { font-family: var(--f-body); letter-spacing: .06em; color: var(--peach); font-size: .66rem; }
.float-badge--a { top: 9%;  left: -6%;  animation-delay: -1.4s; }
.float-badge--b { top: 40%; right: -7%; animation-delay: -3.2s; }
.float-badge--c { bottom: 7%; left: 1%;  animation-delay: -2.1s; }

/* --- ticker --- */
.ticker {
  position: relative;
  overflow: hidden;
  padding: 15px 0;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  background: rgba(252, 250, 246, .5);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}
.ticker__track {
  display: flex;
  align-items: center;
  gap: 0;
  width: max-content;
  animation: marquee 42s linear infinite;
}
.ticker__track span {
  font-family: var(--f-display);
  font-size: 1.02rem;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--sage-deep);
  white-space: nowrap;
}
.ticker__track i {
  display: inline-block;
  width: 5px; height: 5px;
  margin: 0 26px;
  transform: rotate(45deg);
  background: var(--peach);
  opacity: .8;
}
@keyframes marquee {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(-50%, 0, 0); }
}

/* --- hero breakpoints --- */
@media (min-width: 760px) {
  .hero__grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, .88fr);
    grid-template-areas:
      "bottle model"
      "copy   model";
    column-gap: clamp(30px, 4vw, 56px);
    row-gap: 26px;
    align-items: start;
  }
  .hero__model { align-self: center; justify-self: end; }
  .hero__bottle img { width: 100px; }
  .hero__bottle-arch { width: 130px; height: 168px; }
}

@media (min-width: 1080px) {
  .hero__grid {
    grid-template-columns: 152px minmax(0, 1fr) minmax(0, .78fr);
    grid-template-areas: "bottle copy model";
    column-gap: clamp(28px, 3.2vw, 48px);
    align-items: center;
  }
  .hero__bottle {
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
    justify-self: start;
    align-self: start;
    padding-top: 4px;
  }
  .hero__bottle img { width: 128px; }
  .hero__bottle-arch {
    left: -12px;
    top: 4%;
    width: 152px;
    height: 210px;
  }
  .hero__bottle-shadow { left: 22px; bottom: 84px; width: 92px; }
  .hero__bottle figcaption {
    padding: 14px 0 0 0;
    border-left: 0;
    border-top: 1px solid var(--line);
    width: 100%;
  }
}

/* ---------------------------------------------------------
   10. SECTION HEADS
   --------------------------------------------------------- */
.sec-head {
  max-width: 720px;
  margin: 0 auto clamp(40px, 5.5vw, 68px);
  text-align: center;
}
.sec-tag {
  display: inline-flex;
  align-items: center;
  margin-bottom: 18px;
  font-family: var(--f-body);
  font-size: .74rem;
  font-weight: 500;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--sage);
}
.sec-tag i { margin: 0 .8em; opacity: .6; }
.sec-tag--light { color: rgba(246, 242, 234, .8); }

.sec-title {
  font-family: var(--f-bn-display);
  font-size: clamp(1.72rem, 3.6vw, 2.85rem);
  font-weight: 600;
  line-height: 1.34;
  letter-spacing: -.015em;
  color: var(--ink);
}
.sec-title::after {
  content: '';
  display: block;
  width: 52px;
  height: 1px;
  margin: 22px auto 0;
  background: linear-gradient(90deg, transparent, var(--sage), transparent);
}
.sec-sub {
  margin-top: 20px;
  font-size: 1.01rem;
  color: var(--ink-2);
  line-height: 1.88;
}
.sec-sub b { color: var(--ink); font-weight: 600; }

.mini-title {
  margin: clamp(52px, 7vw, 84px) 0 34px;
  text-align: center;
  font-family: var(--f-bn-display);
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
  font-weight: 600;
  color: var(--ink);
}

/* ---------------------------------------------------------
   11. CARD BASE
   --------------------------------------------------------- */
.pain, .ben, .rev, .ing, .step, .stat, .order-card, .order-aside,
.faq, .compare__col, .pack__box, .empathy, .urgency, .guarantee {
  background: var(--paper);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-sm);
}

/* ---------------------------------------------------------
   12. PROBLEM
   --------------------------------------------------------- */
.pain-grid, .ben-grid {
  display: grid;
  gap: clamp(14px, 2vw, 22px);
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 285px), 1fr));
}

.pain, .ben {
  padding: clamp(24px, 3vw, 34px);
  transition: transform .45s var(--ease), box-shadow .45s var(--ease), border-color .45s var(--ease);
  will-change: transform;
}
.pain:hover, .ben:hover {
  border-color: var(--line);
  box-shadow: var(--sh-md);
}
.pain__ico, .ben__ico {
  display: grid;
  place-items: center;
  width: 54px; height: 54px;
  margin-bottom: 20px;
  border-radius: 50%;
  background: var(--sage-pale);
  font-size: 1.4rem;
  line-height: 1;
}
.ben__ico { background: var(--peach-pale); }
.pain h3, .ben h3 {
  margin-bottom: 10px;
  font-family: var(--f-bn-display);
  font-size: 1.16rem;
  font-weight: 600;
  color: var(--ink);
}
.pain p, .ben p {
  font-size: .95rem;
  color: var(--ink-2);
  line-height: 1.82;
}

.empathy {
  margin-top: clamp(30px, 4vw, 46px);
  padding: clamp(30px, 4.2vw, 52px);
  border-radius: var(--r-xl);
  background: linear-gradient(140deg, var(--sage-pale) 0%, var(--paper) 62%);
  border-color: var(--line);
  text-align: center;
}
.empathy p {
  max-width: 720px;
  margin: 0 auto 26px;
  font-size: clamp(1rem, 1.7vw, 1.16rem);
  line-height: 1.92;
  color: var(--ink-2);
}
.empathy b { color: var(--sage-deep); font-weight: 600; }

/* ---------------------------------------------------------
   13. SOLUTION
   --------------------------------------------------------- */
.sol-grid {
  display: grid;
  gap: clamp(24px, 3.4vw, 46px);
  align-items: start;
}
@media (min-width: 900px) {
  .sol-grid { grid-template-columns: minmax(0, .82fr) minmax(0, 1fr); }
}

.sol-figure {
  position: relative;
  margin: 0;
  border-radius: var(--r-xl);
  overflow: hidden;
  background: var(--cream);
  border: 1px solid var(--line-soft);
  box-shadow: var(--sh-md);
}
.sol-figure img { width: 100%; }
.sol-figure figcaption {
  position: absolute;
  left: 16px; bottom: 16px;
  padding: 8px 18px;
  border-radius: var(--r-pill);
  background: rgba(252, 250, 246, .88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--line);
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--sage-deep);
}

.ing-list { display: grid; gap: 14px; }
.ing {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 20px;
  padding: clamp(20px, 2.6vw, 28px);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
}
.ing:hover {
  transform: translateX(6px);
  border-color: var(--line);
  box-shadow: var(--sh-md);
}
.ing__pct {
  display: grid;
  place-items: center;
  min-width: 64px; height: 64px;
  padding: 0 10px;
  border-radius: 50%;
  background: linear-gradient(140deg, var(--sage) 0%, var(--sage-deep) 100%);
  color: var(--cream);
  font-family: var(--f-bn-display);
  font-size: 1.14rem;
  font-weight: 600;
  line-height: 1;
  box-shadow: 0 8px 20px rgba(76, 102, 80, .24);
}
.ing__pct--base {
  background: linear-gradient(140deg, var(--peach) 0%, var(--peach-deep) 100%);
  font-family: var(--f-body);
  font-size: .78rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  box-shadow: 0 8px 20px rgba(217, 134, 47, .24);
}
.ing h3 {
  margin-bottom: 7px;
  font-family: var(--f-bn-display);
  font-size: 1.1rem;
  font-weight: 600;
}
.ing p { font-size: .94rem; color: var(--ink-2); line-height: 1.8; }

.steps {
  display: grid;
  gap: clamp(14px, 2vw, 22px);
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 268px), 1fr));
  counter-reset: step;
}
.step {
  position: relative;
  padding: clamp(26px, 3vw, 36px);
  padding-top: 46px;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.step:hover { transform: translateY(-6px); box-shadow: var(--sh-md); }
.step__n {
  position: absolute;
  top: -22px; left: clamp(26px, 3vw, 36px);
  display: grid;
  place-items: center;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: var(--sh-sm);
  font-family: var(--f-bn-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--sage-deep);
}
.step h4 {
  margin-bottom: 9px;
  font-family: var(--f-bn-display);
  font-size: 1.08rem;
  font-weight: 600;
}
.step p { font-size: .94rem; color: var(--ink-2); line-height: 1.8; }

/* ---------------------------------------------------------
   14. BENEFITS  ·  PROOF SPLIT  ·  COMPARE
   --------------------------------------------------------- */
.proof-split {
  display: grid;
  gap: clamp(26px, 3.6vw, 48px);
  margin-top: clamp(46px, 6vw, 76px);
  align-items: start;
}
@media (min-width: 900px) {
  .proof-split { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
}

.ba-frame {
  margin: 0;
  border-radius: var(--r-xl);
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--line-soft);
  box-shadow: var(--sh-md);
}
.ba-frame img { width: 100%; }
.ba-frame figcaption {
  padding: 16px 20px;
  border-top: 1px solid var(--line-soft);
  font-size: .84rem;
  color: var(--ink-2);
  text-align: center;
}

.timeline {
  position: relative;
  display: grid;
  gap: 26px;
  padding-left: 34px;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 8px; top: 6px; bottom: 6px;
  width: 1px;
  background: linear-gradient(180deg, var(--sage) 0%, var(--peach) 100%);
  opacity: .45;
}
.timeline li { position: relative; }
.timeline li::before {
  content: '';
  position: absolute;
  left: -34px; top: 7px;
  width: 17px; height: 17px;
  border-radius: 50%;
  background: var(--paper);
  border: 1px solid var(--sage);
  box-shadow: 0 0 0 4px var(--beige);
}
.timeline li:last-child::before { border-color: var(--peach); }
.tl__day {
  display: inline-block;
  margin-bottom: 6px;
  padding: 4px 12px;
  border-radius: var(--r-pill);
  background: var(--sage-pale);
  font-size: .74rem;
  font-weight: 600;
  color: var(--sage-deep);
}
.timeline h4 {
  margin-bottom: 5px;
  font-family: var(--f-bn-display);
  font-size: 1.06rem;
  font-weight: 600;
}
.timeline p { font-size: .93rem; color: var(--ink-2); line-height: 1.8; }

.compare {
  display: grid;
  gap: 16px;
  margin-top: clamp(46px, 6vw, 76px);
  align-items: stretch;
}
@media (min-width: 860px) {
  .compare { grid-template-columns: 1fr auto 1fr; align-items: center; }
}
.compare__col { padding: clamp(26px, 3vw, 38px); }
.compare__col h4 {
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line-soft);
  font-family: var(--f-bn-display);
  font-size: 1.12rem;
  font-weight: 600;
}
.compare__col li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 13px;
  font-size: .95rem;
  color: var(--ink-2);
}
.compare__col li:last-child { margin-bottom: 0; }
.compare__col li::before {
  position: absolute;
  left: 0; top: 0;
  width: 20px;
  text-align: center;
  font-size: .9rem;
}
.compare__col--bad { background: rgba(252, 250, 246, .55); }
.compare__col--bad h4 { color: var(--ink-3); }
.compare__col--bad li::before { content: '×'; color: var(--ink-4); font-size: 1.1rem; line-height: 1.5; }
.compare__col--good {
  background: linear-gradient(150deg, var(--sage-pale) 0%, var(--paper) 70%);
  border-color: var(--line);
  box-shadow: var(--sh-md);
}
.compare__col--good h4 { color: var(--sage-deep); }
.compare__col--good li::before { content: '✓'; color: var(--sage); font-weight: 700; }
.compare__vs {
  display: grid;
  place-items: center;
}
.compare__vs span {
  display: grid;
  place-items: center;
  width: 54px; height: 54px;
  border-radius: 50%;
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: var(--sh-sm);
  font-family: var(--f-display);
  font-size: .92rem;
  font-weight: 600;
  letter-spacing: .1em;
  color: var(--peach-deep);
}

/* ---------------------------------------------------------
   15. SOCIAL PROOF
   --------------------------------------------------------- */
.stats {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 180px), 1fr));
  margin-bottom: clamp(34px, 4.5vw, 54px);
}
.stat {
  padding: clamp(22px, 2.6vw, 30px) 18px;
  text-align: center;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.stat:hover { transform: translateY(-5px); box-shadow: var(--sh-md); }
.stat b {
  display: block;
  font-family: var(--f-bn-display);
  font-size: clamp(1.7rem, 3.2vw, 2.3rem);
  font-weight: 600;
  line-height: 1.1;
  color: var(--sage-deep);
  letter-spacing: -.02em;
}
.stat span {
  display: block;
  margin-top: 6px;
  font-size: .85rem;
  color: var(--ink-3);
}

.rev-grid {
  display: grid;
  gap: clamp(18px, 2.6vw, 28px);
  align-items: start;
}
@media (min-width: 1000px) {
  .rev-grid { grid-template-columns: minmax(0, .72fr) minmax(0, 1.28fr) minmax(0, .72fr); }
}

.rev-photo {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 200px 200px var(--r-lg) var(--r-lg) / 24% 24% 4% 4%;
  border: 1px solid var(--line-soft);
  box-shadow: var(--sh-md);
  background: var(--cream);
}
.rev-photo img {
  width: 100%;
  aspect-ratio: 820 / 1093;
  object-fit: cover;
  transition: transform 1.3s var(--ease-soft);
}
.rev-photo:hover img { transform: scale(1.05); }
.rev-photo figcaption {
  position: absolute;
  left: 12px; right: 12px; bottom: 12px;
  padding: 9px 14px;
  border-radius: var(--r-pill);
  background: rgba(252, 250, 246, .9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  font-family: var(--f-body);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--sage-deep);
  text-align: center;
}
@media (min-width: 1000px) {
  .rev-photo {
    position: sticky;
    top: calc(var(--head-h) + 26px);
  }
}
@media (max-width: 999px) {
  .rev-photo--b { display: none; }
}

.rev-list { display: grid; gap: 14px; }
.rev {
  padding: clamp(22px, 2.8vw, 32px);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
}
.rev:hover { transform: translateY(-4px); border-color: var(--line); box-shadow: var(--sh-md); }
.rev__stars {
  margin-bottom: 12px;
  color: var(--peach);
  font-size: .95rem;
  letter-spacing: .18em;
}
.rev p {
  font-size: .96rem;
  color: var(--ink-2);
  line-height: 1.86;
}
.rev footer {
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--line-soft);
}
.rev footer b {
  font-family: var(--f-bn-display);
  font-size: .98rem;
  font-weight: 600;
  color: var(--ink);
}
.rev footer span { font-size: .82rem; color: var(--ink-3); }

.trust {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 200px), 1fr));
  margin-top: clamp(30px, 4vw, 46px);
}
.trust li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  border-radius: var(--r-md);
  background: rgba(252, 250, 246, .68);
  border: 1px solid var(--line-soft);
  font-size: .92rem;
  color: var(--ink-2);
}
.trust li span { font-size: 1.1rem; line-height: 1; }

/* ---------------------------------------------------------
   16. OFFER  ·  URGENCY
   --------------------------------------------------------- */
.urgency {
  display: grid;
  gap: clamp(22px, 3vw, 38px);
  align-items: center;
  padding: clamp(26px, 3.4vw, 40px);
  margin-bottom: clamp(28px, 4vw, 44px);
  border-radius: var(--r-xl);
  background: linear-gradient(140deg, var(--paper) 0%, var(--peach-pale) 130%);
  border-color: var(--line);
}
@media (min-width: 760px) {
  .urgency { grid-template-columns: auto 1fr; }
}

.countdown {
  display: flex;
  gap: 10px;
  justify-content: center;
}
.countdown > div {
  display: grid;
  place-items: center;
  min-width: 82px;
  padding: 14px 10px;
  border-radius: var(--r-md);
  background: var(--sage-deep);
  color: var(--cream);
  box-shadow: 0 10px 26px rgba(47, 63, 49, .2);
}
.countdown b {
  font-family: var(--f-bn-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.countdown span {
  margin-top: 6px;
  font-size: .76rem;
  letter-spacing: 0;
  color: rgba(246, 242, 234, .74);
}

.stock p {
  margin: 0 0 10px;
  font-family: var(--f-bn-display);
  font-size: 1.06rem;
  font-weight: 600;
  color: var(--ink);
}
.stock__bar {
  height: 8px;
  border-radius: var(--r-pill);
  background: rgba(111, 143, 114, .16);
  overflow: hidden;
}
.stock__bar i {
  display: block;
  height: 100%;
  width: var(--w, 60%);
  border-radius: inherit;
  background: linear-gradient(90deg, var(--sage) 0%, var(--peach) 100%);
  animation: bar-in 1.6s var(--ease-soft) both;
}
@keyframes bar-in { from { width: 0; } }
.stock small {
  display: block;
  margin-top: 9px;
  font-size: .82rem;
  color: var(--ink-3);
}

/* ---------------------------------------------------------
   17. PACKS
   --------------------------------------------------------- */
.packs {
  display: grid;
  gap: clamp(14px, 2vw, 20px);
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 258px), 1fr));
  margin-bottom: clamp(34px, 4.5vw, 54px);
  align-items: stretch;
}
.pack { position: relative; cursor: pointer; display: block; }
.pack input {
  position: absolute;
  opacity: 0;
  width: 0; height: 0;
}
.pack__box {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: clamp(26px, 3vw, 34px) clamp(22px, 2.6vw, 28px);
  text-align: center;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease),
              border-color .4s var(--ease), background .4s var(--ease);
}
.pack:hover .pack__box { transform: translateY(-6px); box-shadow: var(--sh-md); border-color: var(--line); }

.pack__flag {
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  padding: 6px 18px;
  border-radius: var(--r-pill);
  background: linear-gradient(135deg, var(--peach) 0%, var(--peach-deep) 100%);
  color: #FFF8EF;
  font-size: .74rem;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: var(--sh-peach);
}
.pack__top {
  font-family: var(--f-bn);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .02em;
  color: var(--sage);
}
.pack__qty {
  display: block;
  margin: 12px 0 8px;
  font-family: var(--f-bn-display);
  font-size: 1.32rem;
  font-weight: 600;
  color: var(--ink);
}
.pack__price {
  display: block;
  font-family: var(--f-bn-display);
  font-size: clamp(1.85rem, 3.4vw, 2.35rem);
  font-weight: 600;
  line-height: 1.1;
  color: var(--sage-deep);
  letter-spacing: -.02em;
}
.pack__price i { font-style: normal; color: var(--peach-deep); margin-left: 2px; }
.pack__old {
  display: block;
  margin-top: 5px;
  font-size: .95rem;
  color: var(--ink-4);
}
.pack__box ul {
  margin: 20px 0 22px;
  padding-top: 18px;
  border-top: 1px solid var(--line-soft);
  display: grid;
  gap: 9px;
  text-align: left;
}
.pack__box li {
  position: relative;
  padding-left: 24px;
  font-size: .9rem;
  color: var(--ink-2);
  line-height: 1.6;
}
.pack__box li::before {
  content: '✓';
  position: absolute;
  left: 0; top: 0;
  color: var(--sage);
  font-weight: 700;
}
.pack__pick {
  margin-top: auto;
  display: block;
  padding: 12px 18px;
  border-radius: var(--r-pill);
  border: 1px solid var(--line);
  font-size: .9rem;
  font-weight: 600;
  color: var(--sage-deep);
  transition: background .34s var(--ease), color .34s var(--ease), border-color .34s var(--ease);
}

/* the popular pack sits a touch higher, even before it is picked */
.pack--hot .pack__box {
  border-color: rgba(217, 134, 47, .3);
  box-shadow: 0 3px 12px rgba(217, 134, 47, .08), 0 22px 50px rgba(72, 60, 42, .09);
}
@media (min-width: 780px) {
  .pack--hot .pack__box { transform: translateY(-10px); }
  .pack--hot:hover .pack__box { transform: translateY(-16px); }
}

.pack input:checked ~ .pack__box {
  background: linear-gradient(155deg, var(--paper) 0%, var(--peach-pale) 150%);
  border-color: var(--peach);
  box-shadow: 0 4px 14px rgba(217, 134, 47, .12), 0 26px 60px rgba(217, 134, 47, .16);
}
.pack input:checked ~ .pack__box .pack__pick {
  background: linear-gradient(135deg, var(--peach) 0%, var(--peach-deep) 100%);
  border-color: transparent;
  color: #FFF8EF;
}
.pack input:focus-visible ~ .pack__box {
  outline: 2px solid var(--sage);
  outline-offset: 3px;
}

/* ---------------------------------------------------------
   18. ORDER FORM
   --------------------------------------------------------- */
.order-wrap {
  display: grid;
  gap: clamp(20px, 2.8vw, 32px);
  align-items: start;
}
@media (min-width: 960px) {
  .order-wrap { grid-template-columns: minmax(0, 1.22fr) minmax(0, .78fr); }
}

.order-card {
  padding: clamp(26px, 3.4vw, 44px);
  border-radius: var(--r-xl);
  box-shadow: var(--sh-md);
  border-color: var(--line);
}
.order-title {
  font-family: var(--f-bn-display);
  font-size: clamp(1.3rem, 2.4vw, 1.65rem);
  font-weight: 600;
  color: var(--ink);
}
.order-note {
  margin: 10px 0 26px;
  font-size: .93rem;
  color: var(--ink-2);
  line-height: 1.8;
}

.hp { position: absolute !important; left: -9999px; opacity: 0; height: 0; width: 0; }

.field { margin-bottom: 18px; }
.field label {
  display: block;
  margin-bottom: 8px;
  font-size: .88rem;
  font-weight: 600;
  color: var(--ink);
}
.field label i { color: var(--peach-deep); font-style: normal; }

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 14px 18px;
  border-radius: var(--r-sm);
  border: 1px solid var(--line);
  background: var(--cream);
  font-size: .98rem;
  font-family: var(--f-bn);
  color: var(--ink);
  transition: border-color .3s var(--ease), background .3s var(--ease), box-shadow .3s var(--ease);
  -webkit-appearance: none;
  appearance: none;
}
.field textarea { resize: vertical; min-height: 96px; line-height: 1.7; }
.field select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236F8F72' stroke-width='2' stroke-linecap='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 17px;
  padding-right: 44px;
}
.field input::placeholder,
.field textarea::placeholder { color: var(--ink-4); }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  background: var(--paper);
  border-color: var(--sage);
  box-shadow: 0 0 0 3px rgba(111, 143, 114, .14);
}
.field.is-valid input,
.field.is-valid select,
.field.is-valid textarea { border-color: rgba(111, 143, 114, .58); }
.field.has-error input,
.field.has-error select,
.field.has-error textarea {
  border-color: #C2624B;
  background: rgba(194, 98, 75, .05);
}
.err {
  display: block;
  margin-top: 6px;
  min-height: 0;
  font-size: .8rem;
  color: #A9503A;
}

.summary {
  margin: 24px 0 18px;
  padding: 20px 22px;
  border-radius: var(--r-md);
  background: var(--sage-pale);
  border: 1px solid var(--line);
}
.summary > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 7px 0;
  font-size: .93rem;
  color: var(--ink-2);
}
.summary b { font-weight: 600; color: var(--ink); }
.summary .free { color: var(--sage-deep); }
.summary__total {
  margin-top: 8px;
  padding-top: 14px !important;
  border-top: 1px solid var(--line);
}
.summary__total span { font-weight: 600; color: var(--ink); }
.summary__total b {
  font-family: var(--f-bn-display);
  font-size: 1.36rem;
  color: var(--sage-deep);
}

.form-error {
  display: none;
  margin: 0 0 14px;
  padding: 13px 18px;
  border-radius: var(--r-sm);
  background: rgba(194, 98, 75, .09);
  border: 1px solid rgba(194, 98, 75, .3);
  color: #A9503A;
  font-size: .9rem;
}
.form-error.is-on { display: block; }

.form-foot {
  margin: 16px 0 0;
  font-size: .84rem;
  color: var(--ink-3);
  text-align: center;
  line-height: 1.7;
}

.order-success { text-align: center; padding: 14px 0; }
.order-success .tick {
  display: grid;
  place-items: center;
  width: 74px; height: 74px;
  margin: 0 auto 22px;
  border-radius: 50%;
  background: linear-gradient(140deg, var(--sage) 0%, var(--sage-deep) 100%);
  color: var(--cream);
  font-size: 2.1rem;
  box-shadow: 0 14px 34px rgba(76, 102, 80, .28);
  animation: pop .55s var(--ease) both;
}
@keyframes pop {
  from { transform: scale(.5); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}
.order-success h3 {
  margin-bottom: 12px;
  font-family: var(--f-bn-display);
  font-size: 1.4rem;
  font-weight: 600;
}
.order-success p {
  max-width: 46ch;
  margin: 0 auto 24px;
  color: var(--ink-2);
  font-size: .96rem;
}
.order-success .cta-row { justify-content: center; }

/* --- aside --- */
.order-aside {
  padding: clamp(24px, 3vw, 32px);
  border-radius: var(--r-xl);
  border-color: var(--line);
  text-align: center;
}
.order-aside__shot {
  overflow: hidden;
  border-radius: var(--r-lg);
  background: var(--cream);
  margin-bottom: 20px;
}
.order-aside__shot img { width: 100%; }
.order-aside h4 {
  font-family: var(--f-display);
  font-size: 1.42rem;
  font-weight: 600;
  letter-spacing: .01em;
  color: var(--ink);
}
.order-aside__sub {
  margin: 6px 0 20px;
  font-size: .78rem;
  letter-spacing: .04em;
  color: var(--sage);
}
.order-aside__list {
  display: grid;
  gap: 10px;
  text-align: left;
  padding-top: 20px;
  border-top: 1px solid var(--line-soft);
}
.order-aside__list li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  font-size: .9rem;
  color: var(--ink-2);
  line-height: 1.6;
}
.order-aside__list li span {
  flex: none;
  display: grid;
  place-items: center;
  width: 20px; height: 20px;
  margin-top: 2px;
  border-radius: 50%;
  background: var(--sage-pale);
  color: var(--sage-deep);
  font-size: .68rem;
  font-weight: 700;
}
.guarantee {
  margin-top: 22px;
  padding: 18px 20px;
  border-radius: var(--r-md);
  background: var(--peach-pale);
  border-color: rgba(217, 134, 47, .24);
  box-shadow: none;
  text-align: left;
}
.guarantee b {
  display: block;
  margin-bottom: 6px;
  font-family: var(--f-bn-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--peach-deep);
}
.guarantee p { font-size: .86rem; color: var(--ink-2); line-height: 1.72; }

/* ---------------------------------------------------------
   19. FAQ
   --------------------------------------------------------- */
.faq-list {
  display: grid;
  gap: 12px;
  max-width: 860px;
  margin: 0 auto;
}
.faq {
  overflow: hidden;
  transition: border-color .34s var(--ease), box-shadow .34s var(--ease);
}
.faq[open] { border-color: var(--line); box-shadow: var(--sh-md); }
.faq summary {
  position: relative;
  display: flex;
  align-items: center;
  padding: 20px 58px 20px 24px;
  cursor: pointer;
  list-style: none;
  font-family: var(--f-bn-display);
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--ink);
  transition: color .3s var(--ease);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--sage-deep); }
.faq summary::after {
  content: '';
  position: absolute;
  right: 22px; top: 50%;
  width: 11px; height: 11px;
  margin-top: -7px;
  border-right: 1.6px solid var(--sage);
  border-bottom: 1.6px solid var(--sage);
  transform: rotate(45deg);
  transition: transform .36s var(--ease);
}
.faq[open] summary::after { transform: rotate(-135deg); margin-top: -3px; }
.faq__body {
  padding: 0 24px 22px;
  animation: faq-in .38s var(--ease) both;
}
.faq__body p {
  padding-top: 16px;
  border-top: 1px solid var(--line-soft);
  font-size: .95rem;
  color: var(--ink-2);
  line-height: 1.86;
}
@keyframes faq-in {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: none; }
}

/* ---------------------------------------------------------
   20. FINAL CTA
   --------------------------------------------------------- */
.final-cta {
  position: relative;
  overflow: hidden;
  margin-top: clamp(50px, 6.5vw, 84px);
  padding: clamp(40px, 6vw, 78px) clamp(26px, 5vw, 60px);
  border-radius: var(--r-xl);
  background: linear-gradient(145deg, var(--sage-deep) 0%, var(--sage-ink) 100%);
  color: var(--cream);
  text-align: center;
  box-shadow: 0 30px 70px rgba(47, 63, 49, .26);
}
.final-cta__glow {
  position: absolute;
  top: -30%; left: 50%;
  transform: translateX(-50%);
  width: 620px; height: 620px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(242, 166, 90, .3) 0%, rgba(242, 166, 90, 0) 66%);
  pointer-events: none;
}
.final-cta > *:not(.final-cta__glow) { position: relative; z-index: 1; }
.final-cta h2 {
  max-width: 20ch;
  margin: 0 auto 20px;
  font-family: var(--f-bn-display);
  font-size: clamp(1.55rem, 3.4vw, 2.5rem);
  font-weight: 600;
  line-height: 1.36;
  color: var(--cream);
}
.final-cta p {
  max-width: 60ch;
  margin: 0 auto 32px;
  font-size: 1rem;
  line-height: 1.9;
  color: rgba(246, 242, 234, .78);
}
.final-cta small {
  display: block;
  margin-top: 20px;
  font-size: .84rem;
  color: rgba(246, 242, 234, .62);
}

/* ---------------------------------------------------------
   21. FOOTER
   --------------------------------------------------------- */
.site-foot {
  position: relative;
  margin-top: clamp(50px, 7vw, 90px);
  padding-top: clamp(50px, 6vw, 78px);
  background: var(--sage-ink);
  color: rgba(246, 242, 234, .7);
  font-size: .93rem;
}
.foot-grid {
  display: grid;
  gap: clamp(28px, 3.6vw, 44px);
  padding-bottom: clamp(40px, 5vw, 60px);
}
@media (min-width: 700px)  { .foot-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1040px) { .foot-grid { grid-template-columns: 1.5fr 1fr 1fr 1.3fr; } }

.foot-brand .brand { margin-bottom: 16px; }
.foot-brand p { line-height: 1.85; max-width: 42ch; }

.socials { display: flex; gap: 10px; margin-top: 20px; }
.socials a {
  display: grid;
  place-items: center;
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(246, 242, 234, .16);
  transition: background .32s var(--ease), border-color .32s var(--ease), transform .32s var(--ease);
}
.socials svg {
  width: 18px; height: 18px;
  fill: currentColor;
  stroke: none;
}
.socials a[aria-label="Email"] svg { fill: none; stroke: currentColor; stroke-width: 1.6; }
.socials a:hover {
  background: var(--sage);
  border-color: var(--sage);
  color: var(--cream);
  transform: translateY(-3px);
}

.foot-col h4 {
  margin-bottom: 18px;
  font-family: var(--f-bn-display);
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--cream);
}
.foot-links { display: grid; gap: 11px; }
.foot-links a {
  color: rgba(246, 242, 234, .7);
  transition: color .3s var(--ease), padding-left .3s var(--ease);
}
.foot-links a:hover { color: var(--peach-soft); padding-left: 4px; }
.foot-loc { margin-top: 16px; font-size: .88rem; line-height: 1.8; }
.foot-loc b { color: var(--cream); font-weight: 600; }

.legal { margin-top: 14px; }
.legal summary {
  cursor: pointer;
  list-style: none;
  font-size: .87rem;
  font-weight: 600;
  color: var(--peach-soft);
}
.legal summary::-webkit-details-marker { display: none; }
.legal summary::after { content: ' +'; }
.legal[open] summary::after { content: ' −'; }
.legal > div {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(246, 242, 234, .14);
}
.legal p { font-size: .85rem; line-height: 1.78; margin-bottom: .8em; }
.legal b { color: var(--cream); font-weight: 600; }

.foot-col--legal p { font-size: .88rem; line-height: 1.82; }

.foot-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  align-items: center;
  justify-content: space-between;
  padding-top: 22px;
  padding-bottom: 26px;
  border-top: 1px solid rgba(246, 242, 234, .12);
  font-size: .85rem;
  color: rgba(246, 242, 234, .5);
}
.foot-bottom p { margin: 0; }

/* ---------------------------------------------------------
   22. FLOATING UI
   --------------------------------------------------------- */
.sticky-bar {
  position: fixed;
  left: 12px; right: 12px; bottom: 12px;
  z-index: 95;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 11px 12px 11px 22px;
  border-radius: var(--r-pill);
  background: rgba(252, 250, 246, .93);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid var(--line);
  box-shadow: var(--sh-lg);
  transform: translateY(160%);
  opacity: 0;
  transition: transform .5s var(--ease), opacity .4s var(--ease);
}
.sticky-bar.is-on { transform: none; opacity: 1; }
.sticky-bar__price {
  display: flex;
  align-items: baseline;
  gap: 9px;
}
.sticky-bar__price b {
  font-family: var(--f-bn-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--ink);
}
.sticky-bar__price s { font-size: .85rem; color: var(--ink-4); }
.sticky-bar .btn { padding: 12px 26px; font-size: .94rem; }
@media (min-width: 861px) { .sticky-bar { display: none; } }

.wa-float {
  position: fixed;
  right: 18px; bottom: 84px;
  z-index: 94;
  display: grid;
  place-items: center;
  width: 54px; height: 54px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  box-shadow: 0 12px 30px rgba(37, 211, 102, .34);
  transition: transform .34s var(--ease), box-shadow .34s var(--ease);
}
.wa-float svg { width: 26px; height: 26px; fill: currentColor; }
.wa-float:hover { transform: scale(1.08) translateY(-2px); box-shadow: 0 18px 40px rgba(37, 211, 102, .42); }
@media (min-width: 861px) { .wa-float { bottom: 88px; } }

.to-top {
  position: fixed;
  right: 18px; bottom: 148px;
  z-index: 93;
  display: grid;
  place-items: center;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: rgba(252, 250, 246, .9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--line);
  color: var(--sage-deep);
  font-size: 1.1rem;
  box-shadow: var(--sh-sm);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity .36s var(--ease), transform .36s var(--ease), visibility .36s;
}
.to-top.is-on { opacity: 1; visibility: visible; transform: none; }
.to-top:hover { background: var(--sage); color: var(--cream); border-color: var(--sage); }

.toast {
  position: fixed;
  left: 50%;
  bottom: 96px;
  z-index: 130;
  transform: translate(-50%, 20px);
  max-width: min(90vw, 420px);
  padding: 13px 24px;
  border-radius: var(--r-pill);
  background: var(--sage-ink);
  color: var(--cream);
  font-size: .9rem;
  text-align: center;
  box-shadow: var(--sh-lg);
  opacity: 0;
  visibility: hidden;
  transition: opacity .34s var(--ease), transform .34s var(--ease), visibility .34s;
}
.toast.is-on { opacity: 1; visibility: visible; transform: translate(-50%, 0); }

/* ---------------------------------------------------------
   23. RESPONSIVE TRIM
   --------------------------------------------------------- */
@media (max-width: 760px) {
  body { font-size: 16px; }
  .hero { padding-top: calc(var(--head-h) + 22px); }
  .hero__model { max-width: 400px; }
  .float-badge { min-width: 66px; padding: 10px 13px; }
  .float-badge b { font-size: 1.15rem; }
  .countdown > div { min-width: 0; flex: 1; }
  .compare__vs span { margin: 4px auto; }
  .foot-bottom { justify-content: center; text-align: center; }
}

@media (max-width: 460px) {
  .hero__bottle { gap: 14px; }
  .hero__bottle img { width: 74px; }
  .hero__bottle-arch { width: 100px; height: 128px; }
  .hero__bottle figcaption b { font-size: 1.35rem; }
  .float-badge--a { left: -3%; }
  .float-badge--b { right: -3%; }
  .cta-row .btn { width: 100%; }
  .sticky-bar { padding-left: 18px; }
  .sticky-bar .btn { padding: 11px 20px; font-size: .9rem; }
}

/* ---------------------------------------------------------
   24. MOTION + PRINT
   --------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
  .cursor-aura { display: none; }
}

@media print {
  .site-head, .sticky-bar, .wa-float, .to-top, .toast,
  .bg-fx, .cursor-aura, .scroll-progress, .ticker { display: none !important; }
  body { background: #fff; color: #000; }
  [data-reveal] { opacity: 1; transform: none; }
}
