/* ═══════════════════════════════════════════════════
   BYEOROON KOREA — main.css v6
   Brighter · Sophisticated · Detail-Rich
   ═══════════════════════════════════════════════════ */

:root {
  /* Brighter, warmer palette */
  --ivory:       #FDFAF4;
  --parchment:   #F5EFE0;
  --linen:       #EDE4CE;
  --warm-grey:   #C8BFB0;
  --sage:        #8FAF88;
  --sage-deep:   #5E8259;
  --ink:         #1A1A22;
  --ink-mid:     #28283A;
  --ink-soft:    #484860;
  --gold:        #C4A46B;
  --gold-light:  #DFC499;
  --gold-pale:   #F2E8D5;

  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'DM Sans', system-ui, sans-serif;

  --ease-expo:   cubic-bezier(0.16, 1, 0.3, 1);
  --ease-circ:   cubic-bezier(0.77, 0, 0.18, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);

  --gutter:      clamp(24px, 5vw, 80px);
  --section-pad: clamp(88px, 13vh, 150px);
  --radius-pill: 100px;

  --rule:        1px solid rgba(26,26,34,.09);
  --rule-gold:   1px solid rgba(196,164,107,.3);
  --rule-sage:   1px solid rgba(143,175,136,.25);
}

/* ─── RESET ──────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { height: auto; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-stopped { overflow: hidden; }

body {
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: clamp(15px, 1.1vw, 17px);
  line-height: 1.78;
  overflow-x: hidden;
  cursor: none;
  -webkit-font-smoothing: antialiased;
  transition: background .9s var(--ease-expo), color .9s var(--ease-expo);
}
body.is-dark { background: var(--ink); color: var(--ivory); }

img { display: block; max-width: 100%; height: auto; }
a   { color: inherit; text-decoration: none; cursor: none; }
button { cursor: none; background: none; border: none; font: inherit; color: inherit; }
svg { display: block; }

.cormorant { font-family: var(--font-serif); }
.italic    { font-style: italic; }
.sage      { color: var(--sage); }

/* ─── CUSTOM CURSOR ──────────────────────────────── */
#cursor-dot, #cursor-ring {
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9999;
  transform: translate(-50%, -50%);
  will-change: transform;
}
#cursor-dot {
  width: 5px; height: 5px;
  background: var(--ink); border-radius: 50%;
  z-index: 10000; mix-blend-mode: exclusion;
}
#cursor-ring {
  width: 34px; height: 34px;
  border: 1px solid rgba(26,26,34,.4);
  border-radius: 50%; opacity: .55;
  transition: width .45s var(--ease-spring), height .45s var(--ease-spring), opacity .3s, border-color .3s;
}
body.cursor-hover #cursor-ring { width: 60px; height: 60px; opacity: .3; }
body.is-dark #cursor-dot  { background: var(--ivory); }
body.is-dark #cursor-ring { border-color: rgba(253,250,244,.4); }

@media (pointer: coarse) {
  #cursor-dot, #cursor-ring { display: none !important; }
  *, a, button { cursor: auto !important; }
}

/* ─── LOADER ─────────────────────────────────────── */
#loader {
  position: fixed; inset: 0;
  background: var(--ivory);
  z-index: 11000;
  display: flex; align-items: center; justify-content: center;
}
.loader-inner { display: flex; flex-direction: column; align-items: center; gap: 18px; }
.loader-wordmark {
  font-size: clamp(26px, 4.5vw, 56px); font-weight: 200; letter-spacing: .42em;
  opacity: 0; transform: translateY(10px);
}
.loader-sub {
  font-size: 8.5px; letter-spacing: .55em; text-transform: uppercase;
  color: var(--sage); opacity: 0;
}
.loader-bar-wrap {
  width: 160px; height: 1px;
  background: var(--linen); overflow: hidden; position: relative;
}
.loader-bar { width: 100%; height: 100%; background: var(--gold); transform: scaleX(0); transform-origin: left; }

/* Percentage counter — top right corner detail */
.loader-pct-wrap {
  position: absolute; top: clamp(28px, 5vh, 48px); right: clamp(24px, 4vw, 48px);
  font-size: 9px; letter-spacing: .2em; opacity: .35;
  display: flex; align-items: baseline; gap: 3px;
}
#loader-pct { font-size: 13px; font-weight: 300; }

/* ─── NAVIGATION ─────────────────────────────────── */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: grid; grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: clamp(18px, 2.8vw, 34px) var(--gutter);
  transition: padding .5s var(--ease-expo), background .4s, border-color .4s;
}
#navbar.scrolled {
  padding: 13px var(--gutter);
  background: rgba(253,250,244,.95);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-bottom: var(--rule);
}
body.is-dark #navbar.scrolled {
  background: rgba(26,26,34,.95);
  border-bottom-color: rgba(253,250,244,.07);
}

.nav-logo svg { width: clamp(120px, 16vw, 190px); height: auto; }
body.is-dark #navbar { color: var(--ivory); }

.nav-center { display: flex; gap: clamp(18px, 3.2vw, 50px); justify-self: center; }
.nav-link {
  font-size: 9px; letter-spacing: .22em; text-transform: uppercase;
  position: relative; padding-bottom: 2px;
  display: inline-block; /* needed for magnetic effect */
}
.nav-link::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 1px; background: currentColor;
  transition: width .38s var(--ease-expo);
}
.nav-link:hover::after { width: 100%; }

.nav-right { display: flex; align-items: center; gap: 18px; justify-self: end; }
.nav-cta {
  font-size: 9px; letter-spacing: .22em; text-transform: uppercase;
  padding: 9px 20px; border: 1px solid currentColor;
  border-radius: var(--radius-pill);
  transition: background .35s, color .35s, transform .3s var(--ease-spring);
}
.nav-cta:hover { background: var(--ink); color: var(--ivory); transform: scale(1.03); }
body.is-dark .nav-cta:hover { background: var(--ivory); color: var(--ink); }

.hamburger { display: none; flex-direction: column; gap: 5px; padding: 6px; }
.hamburger span { display: block; width: 22px; height: 1px; background: currentColor; transition: transform .35s var(--ease-circ), opacity .3s; }
.hamburger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ─── MOBILE DRAWER ──────────────────────────────── */
.mobile-drawer {
  position: fixed; inset: 0;
  background: var(--ivory); color: var(--ink);
  z-index: 999; display: flex; flex-direction: column; justify-content: center;
  padding: var(--gutter); transform: translateX(105%);
  transition: transform .65s var(--ease-circ);
}
.mobile-drawer.open { transform: translateX(0); }
.drawer-backdrop {
  position: fixed; inset: 0; background: rgba(26,26,34,.38);
  z-index: 998; opacity: 0; pointer-events: none; transition: opacity .4s;
}
.drawer-backdrop.show { opacity: 1; pointer-events: auto; }
.drawer-nav { display: flex; flex-direction: column; gap: 22px; }
.drawer-link {
  font-size: clamp(30px, 8.5vw, 54px); font-weight: 200; letter-spacing: .04em;
  opacity: 0; transform: translateX(18px);
  transition: opacity .45s, transform .45s var(--ease-expo), color .3s;
}
.drawer-link:hover { color: var(--gold); }
.mobile-drawer.open .drawer-link { opacity: 1; transform: translateX(0); }
.mobile-drawer.open .drawer-link:nth-child(1) { transition-delay: .05s; }
.mobile-drawer.open .drawer-link:nth-child(2) { transition-delay: .10s; }
.mobile-drawer.open .drawer-link:nth-child(3) { transition-delay: .15s; }
.mobile-drawer.open .drawer-link:nth-child(4) { transition-delay: .20s; }
.mobile-drawer.open .drawer-link:nth-child(5) { transition-delay: .25s; }
.drawer-footer {
  position: absolute; bottom: var(--gutter); left: var(--gutter);
  font-size: 8.5px; letter-spacing: .24em; text-transform: uppercase; opacity: .3;
}

/* ─── SHARED ─────────────────────────────────────── */
section { padding: var(--section-pad) var(--gutter); }

/* ─── FADE-UP ────────────────────────────────────── */
.fade-up { opacity: 0; transform: translateY(22px); }
.fade-up.in-view { animation: fadeUp .88s var(--ease-expo) forwards; }
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }

/* ─── MARQUEE ────────────────────────────────────── */
.marquee {
  overflow: hidden; border-top: var(--rule); border-bottom: var(--rule);
  padding: 13px 0; background: var(--parchment);
}
.marquee-inner {
  display: flex; width: max-content; white-space: nowrap;
  animation: marqueeScroll 28s linear infinite;
}
@keyframes marqueeScroll { to { transform: translateX(-50%); } }
.marquee-item { font-size: 9.5px; letter-spacing: .3em; text-transform: uppercase; color: var(--ink-soft); padding: 0 36px; }
.marquee-dot  { color: var(--gold); font-size: 10px; line-height: 1; }

/* ─── ACT 1: HERO ────────────────────────────────── */
#hero {
  min-height: 100svh; position: relative;
  display: grid; place-items: center; overflow: hidden; padding: 0;
}

/* Noise texture */
.hero-noise {
  position: absolute; inset: 0; pointer-events: none; z-index: 0; opacity: .6;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='.035'/%3E%3C/svg%3E");
}

/* Warm gradient wash — brighter now */
.hero-wash {
  position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background:
    radial-gradient(ellipse 70% 55% at 50% 40%, rgba(242,232,213,.55), transparent 70%),
    radial-gradient(ellipse 40% 30% at 15% 75%, rgba(143,175,136,.12), transparent 60%),
    radial-gradient(ellipse 30% 25% at 88% 20%, rgba(196,164,107,.1), transparent 55%);
}

/* Top-left meta detail */
.hero-meta {
  position: absolute; top: clamp(90px, 14vh, 130px); left: var(--gutter);
  z-index: 3; opacity: 0;
  display: flex; flex-direction: column; gap: 5px;
}
.hero-meta-line {
  font-size: 8.5px; letter-spacing: .28em; text-transform: uppercase;
  color: var(--ink-soft); display: flex; align-items: center; gap: 10px;
}
.hero-meta-line::before {
  content: ''; display: block;
  width: 20px; height: 1px; background: var(--gold-light);
}

/* Oversized editorial type */
.hero-type {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  pointer-events: none; z-index: 1;
}
.hero-row { overflow: hidden; line-height: .84; }
.hero-word {
  display: block;
  font-size: clamp(76px, 15vw, 230px);
  font-weight: 200; letter-spacing: -.025em;
  white-space: nowrap; transform: translateY(110%);
}
.hero-word.sage { color: var(--sage); opacity: .5; }

/* Rotating badge */
.hero-badge {
  position: absolute;
  top: clamp(88px, 12vh, 140px); right: clamp(20px, 5vw, 88px);
  z-index: 3; opacity: 0;
  width: clamp(74px, 8.5vw, 108px); height: clamp(74px, 8.5vw, 108px);
  color: var(--gold);
}
.badge-ring { width: 100%; height: 100%; animation: spin 22s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.badge-dot {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 4px; height: 4px; background: var(--gold); border-radius: 50%;
}

/* Tag pills */
.hero-tags {
  position: absolute; bottom: clamp(70px, 10vh, 115px); left: var(--gutter);
  z-index: 3; display: flex; flex-direction: column; gap: 7px;
  opacity: 0; transform: translateY(8px);
}
.hero-tag {
  display: inline-block; padding: 5px 13px;
  border: var(--rule-sage); border-radius: var(--radius-pill);
  font-size: 9px; letter-spacing: .15em; text-transform: uppercase;
  color: var(--sage-deep); background: rgba(143,175,136,.08);
  backdrop-filter: blur(6px);
  transition: background .3s, border-color .3s;
}
.hero-tag:hover { background: rgba(143,175,136,.16); border-color: rgba(143,175,136,.5); }

/* Teaser copy */
.hero-teaser {
  position: absolute; bottom: clamp(70px, 10vh, 115px); right: var(--gutter);
  z-index: 3; max-width: 250px; text-align: right;
  font-size: 12.5px; line-height: 1.78; opacity: 0;
}
.hero-teaser p { margin-bottom: 5px; }
.hero-teaser .italic { color: var(--gold); }

/* Scroll indicator — bottom centre */
.hero-scroll {
  position: absolute; bottom: clamp(22px, 4vh, 40px); left: 50%;
  transform: translateX(-50%); z-index: 3;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.scroll-text { font-size: 8px; letter-spacing: .28em; text-transform: uppercase; opacity: .35; }
.scroll-track { width: 1px; height: 38px; background: var(--linen); position: relative; overflow: hidden; }
.scroll-thumb {
  width: 100%; height: 100%; background: var(--gold); position: absolute; top: 0;
  animation: scrollPulse 2.3s var(--ease-expo) infinite;
}
@keyframes scrollPulse {
  0%   { transform-origin: top;    transform: scaleY(0); }
  45%  { transform-origin: top;    transform: scaleY(1); }
  55%  { transform-origin: bottom; transform: scaleY(1); }
  100% { transform-origin: bottom; transform: scaleY(0); }
}

/* Horizontal rule that draws in — decorative detail */
.scroll-line-h {
  width: 36px; height: 1px; background: var(--gold-light);
  transform: scaleX(0); transform-origin: left;
}

/* ─── MARQUEE ─ (already defined above) ───────────── */

/* ─── ACT 2: PHILOSOPHY ──────────────────────────── */
#promise {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  background: var(--ink); color: var(--ivory);
  position: relative; overflow: hidden;
}
#promise::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 55% 65% at 20% 70%, rgba(143,175,136,.07), transparent),
    radial-gradient(ellipse 60% 40% at 82% 18%, rgba(196,164,107,.05), transparent);
}

.promise-kicker {
  font-size: 8.5px; letter-spacing: .44em; text-transform: uppercase;
  color: var(--sage); margin-bottom: 44px;
}

/* Animated rule line that draws across */
.promise-rule {
  width: clamp(40px, 6vw, 80px); height: 1px;
  background: var(--gold); margin: 0 auto 44px;
  transform: scaleX(0); transform-origin: left;
}

.promise-quote {
  font-size: clamp(32px, 4.8vw, 74px); font-weight: 200; line-height: 1.1;
  max-width: 900px; display: flex; flex-wrap: wrap; justify-content: center; gap: .3em;
}
.promise-word { opacity: .1; transition: opacity .5s; display: inline-block; }
.promise-word.lit { opacity: 1; }

.promise-body { max-width: 560px; margin-top: 50px; display: flex; flex-direction: column; gap: 16px; }
.promise-body p { opacity: .72; font-size: 14.5px; }
.promise-precision { font-size: clamp(21px, 2.7vw, 32px); color: var(--gold); line-height: 1.3; opacity: 1 !important; }

/* Feature grid */
.feature-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  margin-top: 68px; width: 100%; max-width: 860px;
  border-top: 1px solid rgba(253,250,244,.1);
}
.feature-card {
  display: flex; flex-direction: column; align-items: center;
  gap: 13px; padding: 34px 14px; text-align: center;
  border-right: 1px solid rgba(253,250,244,.07);
  transition: background .4s, transform .4s var(--ease-expo);
}
.feature-card:last-child { border-right: none; }
.icon-frame { width: 42px; height: 42px; display: flex; align-items: center; justify-content: center; color: var(--sage); }
.icon-frame svg { width: 100%; height: 100%; transition: transform .4s var(--ease-expo), color .3s; }
.feature-label { font-size: clamp(12.5px, 1.25vw, 15.5px); font-weight: 300; }
.feature-kr { font-size: 10px; opacity: .32; letter-spacing: .07em; margin-top: 2px; }

/* ─── ACT 3: INGREDIENTS ─────────────────────────── */
#ingredients-wrap { padding: 0; position: relative; }
#ingredients-track { display: flex; height: 100vh; }

.ingredient-panel {
  flex: 0 0 100vw; width: 100vw; height: 100%;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
  border-right: var(--rule);
}
.ingredient-panel[data-panel="0"] { background: var(--ivory); }
.ingredient-panel[data-panel="1"] { background: var(--parchment); }
.ingredient-panel[data-panel="2"] { background: var(--linen); }
.ingredient-panel[data-panel="3"] { background: var(--ivory); }

.ing-bg-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  opacity: .12; pointer-events: none; z-index: 0;
  filter: blur(3px) saturate(.55) brightness(1.1);
  transform: scale(1.06);
}
.ing-content {
  text-align: center; position: relative; z-index: 2;
  padding: 0 clamp(22px, 7vw, 90px); max-width: 660px;
}
.ing-kicker { font-size: 8.5px; letter-spacing: .44em; text-transform: uppercase; color: var(--sage); margin-bottom: 18px; }
.ing-title {
  font-size: clamp(46px, 8vw, 116px); font-weight: 200;
  line-height: .88; margin-bottom: 18px; color: var(--ink);
}
.ing-kr { font-size: 11.5px; letter-spacing: .1em; opacity: .3; margin-bottom: 20px; }
.ing-body { font-size: clamp(13.5px, 1.5vw, 16.5px); line-height: 1.84; max-width: 420px; margin: 0 auto; opacity: .74; }
.ing-quote { font-size: clamp(17px, 2.1vw, 26px); line-height: 1.4; color: var(--sage-deep); margin-top: 34px; }

.ingredient-panel .ing-number {
  position: absolute; bottom: 5%; right: 4%;
  font-size: clamp(68px, 13vw, 170px); font-weight: 200;
  opacity: .06; letter-spacing: -.02em;
  user-select: none; pointer-events: none; color: var(--ink);
}

.ing-progress {
  position: fixed; bottom: 0; left: 0; width: 100%;
  height: 2px; background: var(--linen);
  z-index: 50; opacity: 0; transition: opacity .4s;
}
.ing-progress.visible { opacity: 1; }
.ing-progress-bar { height: 100%; background: var(--gold); width: 0; transition: width .06s linear; }

/* ─── ACT 4: TEXTURE REVEAL ──────────────────────── */
#texture { height: 200vh; padding: 0; position: relative; }
.texture-sticky {
  position: sticky; top: 0; width: 100%; height: 100vh;
  overflow: hidden; display: flex; align-items: center; justify-content: center;
}
.texture-clipper {
  position: absolute; inset: 0;
  clip-path: circle(4% at 50% 50%);
  background: var(--ink-mid);
  display: flex; align-items: center; justify-content: center;
}
.texture-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(196,164,107,.14), rgba(26,26,34,.96));
}
.texture-wordmark {
  position: relative; z-index: 2; color: var(--ivory);
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  opacity: 0; transform: translateY(10px);
}
.texture-wordmark span:first-child { font-size: clamp(30px, 6vw, 86px); font-weight: 200; letter-spacing: .3em; }
.texture-wordmark span.italic { font-size: clamp(12px, 2vw, 28px); letter-spacing: .52em; color: var(--gold); }
.texture-caption {
  position: absolute; bottom: clamp(26px, 6vh, 68px); left: 50%;
  transform: translateX(-50%); z-index: 3;
  color: rgba(253,250,244,.4); font-size: clamp(12px, 1.6vw, 19px);
  letter-spacing: .05em; white-space: nowrap; opacity: 0;
}

/* ─── ACT 5: ACQUIRE ─────────────────────────────── */
#buy { background: var(--ivory); }
.buy-grid {
  display: grid; grid-template-columns: 1.05fr 1fr;
  gap: clamp(34px, 6vw, 88px); align-items: center;
  max-width: 1140px; margin: 0 auto;
}
.buy-image-col { position: relative; }
.buy-image-wrap { position: relative; display: inline-block; }
.buy-img {
  width: 100%; max-height: 74vh; object-fit: contain;
  filter: drop-shadow(0 18px 40px rgba(26,26,34,.09));
  transition: transform .9s var(--ease-expo), filter .6s;
}
.buy-image-wrap:hover .buy-img {
  transform: scale(1.022) translateY(-7px);
  filter: drop-shadow(0 34px 60px rgba(26,26,34,.14));
}
.buy-img-glow {
  position: absolute; bottom: -8%; left: 10%; right: 10%; height: 28%;
  background: radial-gradient(ellipse, rgba(196,164,107,.16), transparent 70%);
  filter: blur(18px); pointer-events: none;
}
.buy-img-caption { margin-top: 13px; font-size: 11px; opacity: .32; letter-spacing: .09em; }

.buy-kicker { font-size: 8.5px; letter-spacing: .44em; text-transform: uppercase; color: var(--sage); margin-bottom: 18px; }
.buy-h1 { font-size: clamp(38px, 5.2vw, 80px); font-weight: 200; line-height: .9; margin-bottom: 44px; }
.buy-h1 .sage { color: var(--sage); }

.specs-table { display: grid; grid-template-columns: 1fr 1fr; border-top: var(--rule); margin-bottom: 38px; }
.spec-row { padding: 15px 0; border-bottom: var(--rule); }
.spec-row:nth-child(odd)  { border-right: var(--rule); padding-right: 18px; }
.spec-row:nth-child(even) { padding-left: 18px; }
.spec-row dt { font-size: 8px; letter-spacing: .24em; text-transform: uppercase; opacity: .36; margin-bottom: 5px; }
.spec-row dd { font-size: 14.5px; font-weight: 300; }

.buy-icons { display: flex; justify-content: space-between; margin-bottom: 40px; }
.buy-icon-col { display: flex; flex-direction: column; align-items: center; gap: 9px; }
.buy-icon-col svg { width: 24px; height: 24px; color: var(--sage); }
.buy-icon-col span { font-size: 8px; text-transform: uppercase; letter-spacing: .15em; opacity: .48; }

.btn-acquire {
  width: 100%; padding: 17px 26px;
  display: flex; align-items: center; justify-content: center; gap: 12px;
  border: 1px solid var(--ink); border-radius: var(--radius-pill);
  font-size: 10px; letter-spacing: .24em; text-transform: uppercase;
  color: var(--ink); position: relative; overflow: hidden;
  transition: color .42s var(--ease-circ), transform .3s var(--ease-spring);
}
.btn-acquire::after {
  content: ''; position: absolute; inset: 0;
  background: var(--ink); transform: scaleY(0); transform-origin: bottom;
  transition: transform .42s var(--ease-circ); z-index: -1;
}
.btn-acquire:hover { color: var(--ivory); transform: scale(1.015); }
.btn-acquire:hover::after { transform: scaleY(1); }
.btn-text, .btn-arrow { position: relative; z-index: 1; }
.btn-arrow { transition: transform .38s var(--ease-spring); }
.btn-acquire:hover .btn-arrow { transform: translateX(5px); }
.buy-note { margin-top: 14px; font-size: 10.5px; opacity: .32; text-align: center; letter-spacing: .06em; }

/* ─── ACT 6: CLIENT SERVICE ──────────────────────── */
#client-service {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  background: var(--gold-pale); border-top: var(--rule);
}
/* Animated rule */
.cs-rule {
  width: clamp(36px, 5vw, 60px); height: 1px; background: var(--gold);
  transform: scaleX(0); transform-origin: left; margin-bottom: 36px;
}
.cs-kicker { font-size: 8.5px; letter-spacing: .44em; text-transform: uppercase; color: var(--sage); margin-bottom: 24px; }
.cs-body { max-width: 500px; font-size: clamp(19px, 2.8vw, 38px); font-weight: 300; line-height: 1.22; margin-bottom: 20px; }
.cs-sub  { max-width: 440px; font-size: 13.5px; opacity: .65; line-height: 1.82; margin-bottom: 44px; }
.cs-quote { font-size: clamp(19px, 2.4vw, 32px); line-height: 1.3; max-width: 500px; margin-bottom: 44px; color: var(--sage-deep); }

.btn-outline {
  display: inline-flex; padding: 14px 38px;
  border: 1px solid var(--ink); border-radius: var(--radius-pill);
  font-size: 9.5px; letter-spacing: .2em; text-transform: uppercase;
  transition: background .35s, color .35s, transform .3s var(--ease-spring);
}
.btn-outline:hover { background: var(--ink); color: var(--ivory); transform: scale(1.03); }

/* ─── FOOTER ─────────────────────────────────────── */
#site-footer {
  padding: 34px var(--gutter);
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center;
  background: var(--ink); color: var(--ivory);
  border-top: 1px solid rgba(253,250,244,.05);
}
.footer-left { display: flex; flex-direction: column; gap: 4px; }
.footer-brand { font-size: 12.5px; font-weight: 200; letter-spacing: .24em; }
.footer-tagline { font-size: 8px; letter-spacing: .16em; text-transform: uppercase; opacity: .3; }
.footer-center { justify-self: center; }
.footer-email {
  font-size: 9px; letter-spacing: .14em; text-transform: uppercase;
  position: relative; padding-bottom: 2px;
}
.footer-email::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 1px; background: var(--gold);
  transition: width .4s var(--ease-expo);
}
.footer-email:hover::after { width: 100%; }
.footer-right { justify-self: end; font-size: 8px; letter-spacing: .12em; text-transform: uppercase; opacity: .28; }

/* ─── RESPONSIVE ─────────────────────────────────── */
@media (max-width: 900px) {
  .feature-grid { grid-template-columns: 1fr 1fr; }
  .feature-card { border-bottom: 1px solid rgba(253,250,244,.08); }
  .feature-card:nth-child(2n) { border-right: none; }
  .buy-grid { grid-template-columns: 1fr; }
  .buy-image-col { display: none; }
}

@media (max-width: 768px) {
  .nav-center, .nav-cta { display: none; }
  .hamburger { display: flex; }
  #navbar { grid-template-columns: 1fr auto; }
  .hero-meta { display: none; }
  .hero-badge { top: 70px; right: 14px; }
  .hero-teaser { display: none; }
  .hero-tags { bottom: 72px; }

  /* Mobile ingredients: vertical stack */
  #ingredients-wrap { height: auto; overflow: visible; }
  #ingredients-track { flex-direction: column; height: auto; width: 100%; }
  .ingredient-panel { flex: none; width: 100%; height: 100svh; }
  .ing-progress { display: none; }

  .feature-grid { grid-template-columns: 1fr; border-top: none; }
  .feature-card { border-right: none; border-top: 1px solid rgba(253,250,244,.08); }

  .specs-table { grid-template-columns: 1fr; }
  .spec-row:nth-child(odd)  { border-right: none; padding-right: 0; }
  .spec-row:nth-child(even) { padding-left: 0; }

  #site-footer { grid-template-columns: 1fr; text-align: center; gap: 14px; }
  .footer-center, .footer-right { justify-self: center; }
}

/* Mobile: disable complex animations */
@media (pointer: coarse) {
  body { cursor: auto !important; }
  /* skin-reveal: full width on mobile */
  #skin-reveal { padding: clamp(48px,8vw,80px) var(--gutter) clamp(40px,7vw,72px); }
  .ba-container { height: 340px; }
  .ba-benefits { grid-template-columns: 1fr; gap: 14px; }
}

/* ═══════════════════════════════════════════════════
   ADDITIONS v7: Logo · Form · CTA Fix · Scroll Fix · Footer
   ═══════════════════════════════════════════════════ */

/* ─── LOGO ───────────────────────────────────────── */
.nav-logo { display: flex; align-items: center; }
.nav-logo-img {
  height: clamp(28px, 3.5vw, 42px);
  width: auto; object-fit: contain;
  transition: opacity .4s, filter .4s;
}

/* Dark logo = black PNG shown on light bg */
.nav-logo-dark  { opacity: 1; }
.nav-logo-light { opacity: 0; position: absolute; }

/* When body is dark (philosophy section), swap logo */
body.is-dark .nav-logo-dark  { opacity: 0; }
body.is-dark .nav-logo-light { opacity: 1; position: static; }

/* Loader logo */
.loader-logo {
  height: clamp(64px, 9vw, 110px);
  width: auto; object-fit: contain;
  opacity: 0;
  filter: brightness(0); /* make black logos visible on white loader */
  animation: logoFadeIn .6s .1s forwards;
}
@keyframes logoFadeIn { to { opacity: 1; } }

/* Drawer logo */
.drawer-logo { margin-bottom: 36px; }
.drawer-logo-img {
  height: 36px; width: auto; object-fit: contain;
  filter: brightness(0); /* black version on white drawer */
}

/* Footer logo */
.footer-logo {
  height: clamp(28px, 3vw, 40px);
  width: auto; object-fit: contain;
  filter: brightness(0) invert(1); /* white version on dark footer */
  margin-bottom: 14px;
  opacity: .9;
}

/* ─── CTA BUTTON REDESIGN ────────────────────────── */
/* Fix: was too square/awkward — now properly proportioned pill */
.nav-cta {
  font-size: 9px; letter-spacing: .22em; text-transform: uppercase;
  padding: 10px 24px;
  border: 1px solid currentColor;
  border-radius: var(--radius-pill);
  white-space: nowrap;
  transition: background .35s, color .35s, transform .3s var(--ease-spring), box-shadow .3s;
}
.nav-cta:hover {
  background: var(--ink); color: var(--ivory);
  transform: scale(1.04);
  box-shadow: 0 4px 20px rgba(26,26,34,.12);
}
body.is-dark .nav-cta:hover { background: var(--ivory); color: var(--ink); }

/* Acquire section CTA — redesigned */
.btn-acquire {
  width: 100%;
  padding: 20px 32px;
  display: flex; align-items: center; justify-content: space-between;
  border: 1px solid var(--ink); border-radius: var(--radius-pill);
  font-size: 10.5px; letter-spacing: .22em; text-transform: uppercase;
  color: var(--ink); position: relative; overflow: hidden;
  transition: color .45s var(--ease-circ), transform .3s var(--ease-spring), box-shadow .3s;
  margin-bottom: 0;
}
.btn-acquire::after {
  content: ''; position: absolute; inset: 0;
  background: var(--ink); transform: scaleX(0); transform-origin: left;
  transition: transform .45s var(--ease-circ); z-index: -1;
}
.btn-acquire:hover { color: var(--ivory); transform: scale(1.012); box-shadow: 0 8px 30px rgba(26,26,34,.14); }
.btn-acquire:hover::after { transform: scaleX(1); }

/* ─── SCROLL TRANSITION FIX ──────────────────────── */
/* Fix choppy border-radius on scroll: use will-change + backface */
#promise {
  border-radius: 0;
  will-change: transform;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transform: translateZ(0); /* force GPU layer */
}

/* Texture section — smooth clip-path transition */
.texture-clipper {
  will-change: clip-path;
  backface-visibility: hidden;
  transform: translateZ(0);
}

/* Smooth section transitions — prevent repaints */
section {
  transform: translateZ(0);
  backface-visibility: hidden;
}

/* ─── FOOTER REDESIGN ────────────────────────────── */
#site-footer {
  padding: 0;
  display: block;
  background: var(--ink); color: var(--ivory);
  border-top: 1px solid rgba(253,250,244,.06);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: clamp(24px, 4vw, 60px);
  padding: clamp(48px, 7vh, 80px) var(--gutter);
  border-bottom: 1px solid rgba(253,250,244,.07);
}

.footer-brand-col { display: flex; flex-direction: column; }
.footer-tagline {
  font-size: 12px; opacity: .38; line-height: 1.7;
  max-width: 240px; margin-top: 4px;
}

.footer-col-title {
  font-size: 8px; letter-spacing: .32em; text-transform: uppercase;
  color: var(--gold); display: block; margin-bottom: 18px;
}

.footer-links-col, .footer-contact-col {
  display: flex; flex-direction: column; gap: 11px;
}

.footer-link {
  font-size: 13px; opacity: .55;
  transition: opacity .3s, color .3s;
  position: relative; width: fit-content;
}
.footer-link::after {
  content: ''; position: absolute; bottom: -2px; left: 0;
  width: 0; height: 1px; background: var(--gold);
  transition: width .35s var(--ease-expo);
}
.footer-link:hover { opacity: .9; }
.footer-link:hover::after { width: 100%; }

.footer-email {
  font-size: 12px; opacity: .55;
  position: relative; width: fit-content;
  transition: opacity .3s;
}
.footer-email::after {
  content: ''; position: absolute; bottom: -2px; left: 0;
  width: 0; height: 1px; background: var(--gold);
  transition: width .35s var(--ease-expo);
}
.footer-email:hover { opacity: .9; }
.footer-email:hover::after { width: 100%; }

.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px var(--gutter);
}
.footer-copy  { font-size: 9px; opacity: .25; letter-spacing: .1em; text-transform: uppercase; }
.footer-made  { font-size: 9px; opacity: .25; letter-spacing: .08em; font-style: italic; }

/* ─── WAITLIST FORM SECTION ──────────────────────── */
#waitlist {
  background: var(--gold-pale);
  border-top: var(--rule);
  padding: var(--section-pad) var(--gutter);
}

.waitlist-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 7vw, 100px);
  align-items: start;
  max-width: 1100px; margin: 0 auto;
}

/* Left: copy */
.waitlist-kicker {
  font-size: 8.5px; letter-spacing: .44em; text-transform: uppercase;
  color: var(--sage); margin-bottom: 20px;
}
.waitlist-heading {
  font-size: clamp(36px, 4.8vw, 68px); font-weight: 200; line-height: .96;
  margin-bottom: 24px;
}
.waitlist-sub {
  font-size: 14.5px; line-height: 1.82; opacity: .68;
  max-width: 380px; margin-bottom: 28px;
}
.waitlist-promise { display: flex; flex-direction: column; gap: 8px; }
.promise-pill {
  font-size: 11px; letter-spacing: .08em; opacity: .55;
  display: flex; align-items: center; gap: 8px;
}

/* Form */
.wl-form {
  display: flex; flex-direction: column; gap: 0;
  background: var(--ivory);
  border: var(--rule); border-radius: 20px;
  padding: clamp(28px, 4vw, 44px);
}

.wl-field {
  display: flex; flex-direction: column; gap: 7px;
  padding-bottom: 22px;
  border-bottom: var(--rule);
  margin-bottom: 22px;
}
.wl-field:last-of-type { border-bottom: none; padding-bottom: 0; margin-bottom: 28px; }

.wl-label {
  font-size: 8px; letter-spacing: .26em; text-transform: uppercase;
  opacity: .45; font-weight: 400;
}

.wl-input {
  width: 100%; background: none; border: none; outline: none;
  font-family: var(--font-sans); font-size: 15px; font-weight: 300;
  color: var(--ink); padding: 4px 0;
  transition: color .3s;
  caret-color: var(--gold);
}
.wl-input::placeholder { opacity: .28; }
.wl-input:focus { color: var(--ink); }

/* Prefix wrap for phone */
.wl-input-prefix-wrap {
  display: flex; align-items: center; gap: 10px;
}
.wl-prefix {
  font-size: 15px; opacity: .35; font-weight: 300;
  border-right: 1px solid rgba(26,26,34,.12); padding-right: 10px;
  flex-shrink: 0;
}
.wl-input-prefixed { flex: 1; }

/* Error text */
.wl-error {
  font-size: 10.5px; color: #c0392b; opacity: 0;
  transition: opacity .3s; min-height: 14px;
}
.wl-error.show { opacity: 1; }

/* Submit button */
.wl-submit {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; padding: 18px 24px;
  background: var(--ink); color: var(--ivory);
  border: none; border-radius: var(--radius-pill);
  font-size: 10.5px; letter-spacing: .22em; text-transform: uppercase;
  position: relative; overflow: hidden;
  transition: transform .3s var(--ease-spring), box-shadow .3s, background .3s;
}
.wl-submit:hover {
  transform: scale(1.015);
  box-shadow: 0 8px 28px rgba(26,26,34,.18);
  background: var(--ink-mid);
}
.wl-submit:active { transform: scale(.99); }

.wl-btn-text { position: relative; z-index: 1; }
.wl-btn-arrow {
  position: relative; z-index: 1;
  transition: transform .35s var(--ease-spring);
  font-size: 14px;
}
.wl-submit:hover .wl-btn-arrow { transform: translateX(4px); }

/* Loading spinner */
.wl-btn-loader {
  width: 16px; height: 16px;
  border: 1.5px solid rgba(253,250,244,.25);
  border-top-color: var(--ivory);
  border-radius: 50%;
  animation: spin .7s linear infinite;
  display: none; position: relative; z-index: 1;
}
.wl-submit.loading .wl-btn-text,
.wl-submit.loading .wl-btn-arrow { display: none; }
.wl-submit.loading .wl-btn-loader { display: block; margin: 0 auto; }

/* Success / Error messages */
.wl-msg {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 18px 20px; border-radius: 12px;
  margin-top: 16px; animation: msgSlide .5s var(--ease-expo);
}
@keyframes msgSlide { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

.wl-msg--success { background: rgba(94,130,89,.1); border: 1px solid rgba(94,130,89,.25); }
.wl-msg--error   { background: rgba(192,57,43,.08); border: 1px solid rgba(192,57,43,.2); }

.wl-msg-icon { font-size: 14px; margin-top: 2px; opacity: .7; flex-shrink: 0; }
.wl-msg strong { font-size: 13px; font-weight: 400; display: block; margin-bottom: 4px; }
.wl-msg p { font-size: 12.5px; opacity: .65; }

/* ─── RESPONSIVE ADDITIONS ───────────────────────── */
@media (max-width: 900px) {
  .waitlist-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand-col { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .nav-logo-img { height: 26px; }
  .wl-form { padding: 24px 20px; border-radius: 14px; }
}

/* ═══════════════════════════════════════════════════
   SECTION LOGO VARIANTS — Artboard 1–6
   ═══════════════════════════════════════════════════ */

.sec-logo-wrap {
  display: flex;
  align-items: center;
}

.sec-logo {
  display: block;
  width: auto;
  object-fit: contain;
  transition: opacity .4s;
}

/* ── Artboard_3: script cursive — Philosophy (light bg) ── */
.sec-logo--script {
  height: clamp(64px, 8.5vw, 120px);
  margin-bottom: clamp(14px, 2.5vh, 28px);
  opacity: 0.85;
  filter: none; /* dark ink, works on ivory */
}

/* ── Artboard_2: floral emblem — Ingredients intro (dark panel) ── */
.sec-logo--ing-emblem {
  height: clamp(40px, 5vw, 68px);
  width: auto;
  display: block;
  margin-bottom: clamp(12px, 2vh, 22px);
  filter: invert(1) brightness(0.88); /* flip to white on dark panel */
  opacity: 0.72;
}

/* ── Artboard_4: clean sans — Texture reveal (dark overlay) ── */
.texture-wordmark {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(10px);
}
.sec-logo--texture {
  height: clamp(36px, 4.5vw, 64px);
  filter: invert(1) brightness(1.05); /* white on dark */
}

/* ── Artboard_6: minimal plain — Acquire (light bg) ── */
.sec-logo--minimal {
  height: clamp(28px, 3.2vw, 44px);
  opacity: 0.65;
  letter-spacing: .5em; /* visual breathing */
}

/* ── Artboard_5: BYRN condensed bold — Client Service ── */
.sec-logo--condensed {
  height: clamp(42px, 5vw, 68px);
  opacity: 0.78;
}

/* ── Artboard_1: editorial stacked — Waitlist ── */
.sec-logo--stacked {
  height: clamp(70px, 9.5vw, 128px);
  opacity: 0.92;
}

/* ── Nav logo: fix sharpness ── */
.nav-logo-img {
  height: clamp(32px, 4vw, 50px) !important;
  width: auto;
  object-fit: contain;
  image-rendering: -webkit-optimize-contrast;
}

/* ── Loader logo: fix sharpness ── */
.loader-logo {
  height: clamp(46px, 6.5vw, 76px) !important;
  width: auto;
  object-fit: contain;
}

/* ── Footer logo: invert to white on dark bg ── */
.footer-logo {
  height: clamp(34px, 4.2vw, 54px) !important;
  width: auto;
  object-fit: contain;
  filter: invert(1) brightness(0.9);
  opacity: 0.85;
}

/* ── Ingredient panel bg images: fix logo used as bg ── */
.ing-bg-img {
  opacity: 0.06 !important;
  filter: invert(1) brightness(1.2) !important;
  object-fit: cover !important;
  width: 100% !important;
  height: 100% !important;
}

/* ── skin-reveal section spacing ── */

/* ═══════════════════════════════════════════════════
   BEFORE / AFTER SKIN SECTION
   ═══════════════════════════════════════════════════ */

#skin-reveal {
  background: var(--ivory);
  padding: var(--section-pad) var(--gutter);
  padding-bottom: calc(var(--section-pad) * 1.2);
}

.reveal-header {
  max-width: 680px;
  margin: 0 auto clamp(36px, 6vh, 64px);
  text-align: center;
}

.reveal-logo {
  justify-content: center;
  margin-bottom: clamp(16px, 2.5vh, 28px);
}

/* Artboard_4 on light bg — needs brightness(0) to show black */
.sec-logo--reveal {
  height: clamp(32px, 4vw, 56px);
  filter: brightness(0);
  opacity: 0.72;
}

.reveal-kicker {
  font-size: 8.5px; letter-spacing: .44em; text-transform: uppercase;
  color: var(--sage); margin-bottom: 16px;
}

.reveal-title {
  font-size: clamp(28px, 4.2vw, 58px); font-weight: 200; line-height: 1.08;
  margin-bottom: 18px;
}

.reveal-sub {
  font-size: 14px; opacity: .55; line-height: 1.7;
  max-width: 440px; margin: 0 auto;
}

/* ── Slider container ───────────────────────────── */
.ba-container {
  position: relative;
  max-width: 860px;
  margin: 0 auto clamp(40px, 6vh, 64px);
  height: clamp(320px, 48vw, 500px);
  border-radius: 20px;
  overflow: hidden;
  cursor: col-resize;
  user-select: none;
  box-shadow: 0 24px 72px rgba(26,26,34,.10);
}

/* Before panel — full width, acts as base */
.ba-panel {
  position: absolute;
  inset: 0;
}

.ba-before {
  z-index: 1;
}

.ba-after {
  z-index: 2;
  width: 50%;
  overflow: hidden;
  border-right: 2px solid rgba(253,250,244,.8);
}

/* Skin texture simulation */
.ba-skin {
  position: absolute; inset: 0;
}

.ba-skin--before {
  background:
    radial-gradient(ellipse 60% 80% at 45% 40%, #D4A574 0%, #C4956A 30%, #B8855E 55%, #A67650 75%, #9A6844 100%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.12'/%3E%3C/svg%3E");
  background-blend-mode: multiply;
  /* Simulate uneven skin tone patches */
  mask-image: radial-gradient(ellipse 100% 100% at 50% 50%, black 60%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 100% 100% at 50% 50%, black 60%, transparent 100%);
}

/* Dark spots / uneven areas for before */
.ba-skin--before::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(circle 60px at 32% 38%, rgba(120,72,30,.28), transparent 70%),
    radial-gradient(circle 40px at 65% 52%, rgba(100,58,22,.22), transparent 70%),
    radial-gradient(circle 30px at 50% 28%, rgba(130,78,30,.18), transparent 70%),
    radial-gradient(circle 50px at 72% 72%, rgba(110,65,25,.16), transparent 70%);
}

.ba-skin--after {
  background:
    radial-gradient(ellipse 65% 85% at 45% 42%, #F0D5BA 0%, #E8C9AA 25%, #DFC09E 50%, #D4B48E 70%, #C8A882 90%),
    radial-gradient(ellipse 100% 60% at 50% 80%, rgba(242,232,213,.7), transparent 60%);
  /* Soft shimmer overlay */
}

/* Luminous shimmer for after */
.ba-skin--after::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 55% 45% at 50% 35%, rgba(255,250,240,.45), transparent 65%),
    radial-gradient(circle 80px at 60% 30%, rgba(255,248,230,.25), transparent 70%),
    radial-gradient(circle 120px at 40% 65%, rgba(240,220,190,.15), transparent 70%);
  mix-blend-mode: screen;
}

/* After skin: smooth pore-blurred overlay */
.ba-skin--after::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(245, 235, 218, 0.18);
  backdrop-filter: blur(0.5px);
}

/* Labels */
.ba-label {
  position: absolute;
  bottom: clamp(16px, 3vh, 24px);
  display: flex; flex-direction: column; gap: 3px;
}

.ba-label--before {
  right: clamp(14px, 2.5vw, 22px);
  text-align: right;
}

.ba-label--after {
  left: clamp(14px, 2.5vw, 22px);
  text-align: left;
}

.ba-label-text {
  font-size: 9px; letter-spacing: .28em; text-transform: uppercase;
  font-weight: 400; color: rgba(26,26,34,.55);
}

.ba-label-sub {
  font-size: 11px; color: rgba(26,26,34,.38); line-height: 1.4;
}

.ba-label--after .ba-label-text,
.ba-label--after .ba-label-sub {
  color: rgba(26,26,34,.65);
}

/* ── Drag handle ────────────────────────────────── */
.ba-handle {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex; flex-direction: column; align-items: center;
  width: 44px;
  cursor: col-resize;
  pointer-events: all;
}

.ba-handle-line {
  flex: 1;
  width: 2px;
  background: rgba(253,250,244,.85);
  box-shadow: 0 0 8px rgba(196,164,107,.4);
}

.ba-handle-knob {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--ivory);
  border: 1.5px solid rgba(196,164,107,.5);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(26,26,34,.15), 0 0 0 4px rgba(253,250,244,.6);
  color: var(--gold);
  flex-shrink: 0;
  transition: transform .25s var(--ease-spring), box-shadow .25s;
}

.ba-handle-knob svg {
  width: 16px; height: 16px;
}

.ba-handle:hover .ba-handle-knob,
.ba-container:active .ba-handle-knob {
  transform: scale(1.12);
  box-shadow: 0 6px 28px rgba(26,26,34,.2), 0 0 0 6px rgba(253,250,244,.7);
}

/* ── Benefits row ───────────────────────────────── */
.ba-benefits {
  max-width: 860px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 3vw, 32px);
}

.ba-benefit {
  display: flex; align-items: flex-start; gap: 14px;
  padding: clamp(16px, 2.5vw, 24px);
  border: var(--rule); border-radius: 14px;
  background: var(--parchment);
  transition: transform .3s var(--ease-spring), box-shadow .3s;
}

.ba-benefit:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(26,26,34,.06);
}

.ba-benefit-num {
  font-size: clamp(26px, 3.5vw, 40px); font-weight: 200;
  color: var(--gold); line-height: 1; flex-shrink: 0;
  opacity: .7;
}

.ba-benefit-text {
  font-size: 13px; line-height: 1.6; opacity: .72;
  padding-top: 4px;
}

/* Mobile */
@media (max-width: 768px) {
  .ba-container { height: 300px; border-radius: 14px; }
  .ba-benefits { grid-template-columns: 1fr; gap: 10px; }
  .ba-benefit { padding: 14px 16px; gap: 10px; }
  .ba-handle-knob { width: 38px; height: 38px; }
}
