/* ============================================================
   Beauvana · Alpha Drive
   Original stylesheet — bv- naming convention
   Palette: bright & saturated / silver / chrome / mint / green / dark green
   ============================================================ */

:root{
  /* core palette */
  --bv-ink:        #071a16;   /* near-black dark green */
  --bv-forest:     #0a3d2f;   /* dark green */
  --bv-pine:       #0e4d3a;
  --bv-emerald:    #1a7a5a;   /* saturated green */
  --bv-jade:       #2fa676;
  --bv-mint:       #80debf;   /* mint accent */
  --bv-mint-soft:  #b9ecdb;
  --bv-ice:        #e6f4ef;
  --bv-chrome:     #eef3f2;   /* chrome / near white */
  --bv-silver:     #c8d2d6;   /* silver */
  --bv-silver-dk:  #9aa9ad;
  --bv-paper:      #f7faf9;
  --bv-white:      #ffffff;

  /* functional */
  --bv-text:       #10261f;
  --bv-text-soft:  #4a5f58;
  --bv-line:       rgba(16,38,31,.12);
  --bv-line-glass: rgba(255,255,255,.55);

  /* gradients */
  --bv-grad-hero:  linear-gradient(155deg,#0a3d2f 0%, #071a16 68%);
  --bv-grad-jade:  linear-gradient(135deg,#1a7a5a 0%, #2fa676 100%);
  --bv-grad-mint:  linear-gradient(135deg,#80debf 0%, #b9ecdb 100%);
  --bv-grad-chrome:linear-gradient(160deg,#ffffff 0%, #dfe9e6 55%, #c8d2d6 100%);

  /* shadows */
  --bv-shadow-sm:  0 2px 10px rgba(7,26,22,.06);
  --bv-shadow-md:  0 16px 40px -18px rgba(7,26,22,.28);
  --bv-shadow-lg:  0 40px 90px -40px rgba(7,26,22,.45);
  --bv-glow-mint:  0 20px 60px -20px rgba(128,222,191,.55);

  /* radii */
  --bv-r-s: 12px;
  --bv-r-m: 20px;
  --bv-r-l: 32px;
  --bv-r-xl: 44px;
  --bv-r-pill: 999px;

  /* fluid type */
  --bv-fs-eyebrow: clamp(.72rem,.68rem + .2vw,.82rem);
  --bv-fs-body:    clamp(1rem,.96rem + .25vw,1.13rem);
  --bv-fs-lead:    clamp(1.15rem,1.05rem + .6vw,1.45rem);
  --bv-fs-h3:      clamp(1.3rem,1.1rem + 1vw,1.9rem);
  --bv-fs-h2:      clamp(2rem,1.5rem + 2.4vw,3.4rem);
  --bv-fs-hero:    clamp(2.6rem,1.6rem + 4.8vw,5.4rem);

  /* rhythm */
  --bv-gap:  clamp(1rem,.6rem + 1.6vw,2rem);
  --bv-bay:  clamp(3.5rem,2rem + 6vw,8rem);   /* section vertical */
  --bv-edge: clamp(1.15rem,.4rem + 3vw,3rem); /* page horizontal */
  --bv-max:  1240px;
}

/* ---------- reset ---------- */
*,*::before,*::after{ box-sizing:border-box; margin:0; padding:0; }
html{ scroll-behavior:smooth; -webkit-text-size-adjust:100%; }
@media (prefers-reduced-motion:reduce){
  html{ scroll-behavior:auto; }
  *,*::before,*::after{ animation-duration:.001ms!important; transition-duration:.001ms!important; }
}
body{
  font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Helvetica,Arial,sans-serif;
  font-size:var(--bv-fs-body);
  line-height:1.65;
  color:var(--bv-text);
  background:var(--bv-paper);
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
img{ display:block; max-width:100%; height:auto; }
a{ color:inherit; text-decoration:none; }
button{ font:inherit; cursor:pointer; border:none; background:none; }
ul{ list-style:none; }

/* display font stack for headings */
.bv-hero-title,.bv-h2,.bv-h3,.bv-brandmark,.bv-price-fig{
  font-family:"Georgia","Times New Roman",serif;
  letter-spacing:-.015em;
  line-height:1.05;
}

/* ---------- layout helpers ---------- */
.bv-bound{ width:100%; max-width:var(--bv-max); margin-inline:auto; padding-inline:var(--bv-edge); }
.bv-bay{ padding-block:var(--bv-bay); }
.bv-eyebrow{
  display:inline-flex; align-items:center; gap:.5rem;
  font-size:var(--bv-fs-eyebrow); font-weight:700;
  letter-spacing:.22em; text-transform:uppercase;
  color:var(--bv-emerald);
}
.bv-eyebrow::before{
  content:""; width:26px; height:2px; border-radius:2px;
  background:var(--bv-grad-jade);
}
.bv-h2{ font-size:var(--bv-fs-h2); color:var(--bv-ink); }
.bv-h3{ font-size:var(--bv-fs-h3); color:var(--bv-ink); }
.bv-lead{ font-size:var(--bv-fs-lead); color:var(--bv-text-soft); }
.bv-visually-hidden{
  position:absolute; width:1px; height:1px; overflow:hidden;
  clip:rect(0 0 0 0); white-space:nowrap;
}

/* ---------- buttons ---------- */
.bv-btn{
  display:inline-flex; align-items:center; justify-content:center; gap:.6rem;
  padding:.95em 1.9em; border-radius:var(--bv-r-pill);
  font-weight:700; font-size:1rem; letter-spacing:.01em;
  transition:transform .28s cubic-bezier(.2,.7,.3,1), box-shadow .28s, background .28s, color .28s;
  will-change:transform;
}
.bv-btn:focus-visible{ outline:3px solid var(--bv-mint); outline-offset:3px; }
.bv-btn--solid{
  color:var(--bv-white);
  background:var(--bv-grad-jade);
  box-shadow:var(--bv-shadow-md);
}
.bv-btn--solid:hover{ transform:translateY(-3px); box-shadow:var(--bv-glow-mint); }
.bv-btn--ghost{
  color:var(--bv-ice);
  border:1.5px solid rgba(230,244,239,.4);
  background:rgba(255,255,255,.04);
}
.bv-btn--ghost:hover{ background:rgba(255,255,255,.12); transform:translateY(-3px); }
.bv-btn--chrome{
  color:var(--bv-forest);
  background:var(--bv-grad-chrome);
  box-shadow:var(--bv-shadow-sm);
  border:1px solid rgba(255,255,255,.7);
}
.bv-btn--chrome:hover{ transform:translateY(-3px); box-shadow:var(--bv-shadow-md); }
.bv-btn--block{ width:100%; }

/* ============================================================
   HEADER / NAV
   ============================================================ */
.bv-top{
  position:sticky; top:0; z-index:60;
  background:rgba(247,250,249,.72);
  backdrop-filter:blur(18px) saturate(140%);
  -webkit-backdrop-filter:blur(18px) saturate(140%);
  border-bottom:1px solid var(--bv-line);
  transition:box-shadow .3s;
}
.bv-top.is-stuck{ box-shadow:var(--bv-shadow-sm); }
.bv-top__row{
  display:flex; align-items:center; justify-content:space-between;
  min-height:74px; gap:1rem;
}
.bv-brandmark{
  display:flex; align-items:center; gap:.6rem;
  font-size:1.35rem; font-weight:700; color:var(--bv-forest);
}
.bv-brandmark__dot{
  width:34px; height:34px; border-radius:11px;
  background:var(--bv-grad-jade);
  box-shadow:var(--bv-glow-mint);
  display:grid; place-items:center;
  color:var(--bv-white); font-size:.9rem; font-family:system-ui;
  transform:rotate(-6deg);
}
.bv-nav{ display:flex; align-items:center; gap:.4rem; }
.bv-nav__link{
  padding:.55em .9em; border-radius:var(--bv-r-pill);
  font-weight:600; font-size:.96rem; color:var(--bv-text-soft);
  transition:color .2s, background .2s;
}
.bv-nav__link:hover,.bv-nav__link:focus-visible{
  color:var(--bv-forest); background:rgba(47,166,118,.1);
}
.bv-nav__cta{ margin-left:.4rem; }
.bv-burger{
  display:none; width:46px; height:46px; border-radius:14px;
  background:var(--bv-grad-chrome); border:1px solid var(--bv-line);
  position:relative;
}
.bv-burger span,.bv-burger span::before,.bv-burger span::after{
  content:""; position:absolute; left:50%; top:50%;
  width:20px; height:2px; border-radius:2px; background:var(--bv-forest);
  transform:translate(-50%,-50%); transition:.3s;
}
.bv-burger span::before{ transform:translate(-50%,-7px); }
.bv-burger span::after{  transform:translate(-50%,5px); }
.bv-burger.is-open span{ background:transparent; }
.bv-burger.is-open span::before{ transform:translate(-50%,-50%) rotate(45deg); }
.bv-burger.is-open span::after{  transform:translate(-50%,-50%) rotate(-45deg); }

/* ============================================================
   1 · HERO
   ============================================================ */
.bv-hero{
  position:relative; isolation:isolate; color:var(--bv-ice);
  min-height:clamp(560px,86vh,860px);
  display:flex; align-items:center;
  overflow:hidden;
}
.bv-hero__bg{
  position:absolute; inset:0; z-index:-2;
  width:100%; height:100%; object-fit:cover;
}
.bv-hero::after{
  content:""; position:absolute; inset:0; z-index:-1;
  background:linear-gradient(120deg,rgba(7,26,22,.86) 0%,rgba(10,61,47,.6) 55%,rgba(7,26,22,.35) 100%);
}
.bv-hero__inner{ max-width:720px; padding-block:clamp(3rem,8vw,6rem); }
.bv-hero__eyebrow{ color:var(--bv-mint); }
.bv-hero__eyebrow::before{ background:var(--bv-mint); }
.bv-hero-title{
  font-size:var(--bv-fs-hero); color:var(--bv-white); margin-block:1rem .8rem;
}
.bv-hero-title em{ font-style:normal; color:var(--bv-mint); }
.bv-hero__sub{
  font-size:var(--bv-fs-lead); color:rgba(230,244,239,.86);
  max-width:52ch; margin-bottom:2rem;
}
.bv-hero__cta{ display:flex; flex-wrap:wrap; gap:.9rem; }
.bv-hero__meta{
  display:flex; flex-wrap:wrap; gap:1.6rem 2.4rem; margin-top:2.6rem;
  padding-top:1.8rem; border-top:1px solid rgba(230,244,239,.18);
}
.bv-hero__meta div{ display:flex; flex-direction:column; }
.bv-hero__meta b{ font-size:1.5rem; color:var(--bv-white); font-family:Georgia,serif; }
.bv-hero__meta span{ font-size:.82rem; letter-spacing:.14em; text-transform:uppercase; color:var(--bv-mint-soft); }

/* ============================================================
   2 · LIFESTYLE INTRO
   ============================================================ */
.bv-intro__grid{
  display:grid; gap:clamp(1.5rem,4vw,4rem);
  grid-template-columns:1.05fr 1fr; align-items:center;
}
.bv-intro__media{
  position:relative; border-radius:var(--bv-r-xl); overflow:hidden;
  box-shadow:var(--bv-shadow-lg); aspect-ratio:7/8;
}
.bv-intro__media img{ width:100%; height:100%; object-fit:cover; }
.bv-intro__badge{
  position:absolute; left:1.2rem; bottom:1.2rem;
  padding:.8rem 1.2rem; border-radius:var(--bv-r-m);
  background:rgba(255,255,255,.16);
  backdrop-filter:blur(14px); -webkit-backdrop-filter:blur(14px);
  border:1px solid var(--bv-line-glass);
  color:var(--bv-white); font-weight:600; font-size:.95rem;
}
.bv-intro__copy p{ margin-top:1.1rem; color:var(--bv-text-soft); }
.bv-tags{ display:flex; flex-wrap:wrap; gap:.6rem; margin-top:1.8rem; }
.bv-tag{
  padding:.5em 1em; border-radius:var(--bv-r-pill);
  font-size:.9rem; font-weight:600; color:var(--bv-pine);
  background:var(--bv-ice); border:1px solid var(--bv-line);
}

/* ============================================================
   3 · DAILY ROUTINES OVERVIEW
   ============================================================ */
.bv-routines{ background:var(--bv-grad-chrome); }
.bv-routines__head{ max-width:640px; margin-bottom:clamp(2rem,5vw,3.5rem); }
.bv-routines__head p{ margin-top:1rem; }
.bv-grid3{
  display:grid; gap:var(--bv-gap);
  grid-template-columns:repeat(auto-fit,minmax(min(100%,260px),1fr));
}
.bv-tile{
  background:var(--bv-white); border-radius:var(--bv-r-l);
  padding:clamp(1.6rem,3vw,2.2rem);
  border:1px solid var(--bv-line);
  box-shadow:var(--bv-shadow-sm);
  transition:transform .3s, box-shadow .3s;
  display:flex; flex-direction:column; gap:.7rem;
}
.bv-tile:hover{ transform:translateY(-6px); box-shadow:var(--bv-shadow-md); }
.bv-tile__no{
  font-family:Georgia,serif; font-size:1.05rem; font-weight:700;
  color:var(--bv-jade); letter-spacing:.05em;
}
.bv-tile__glyph{
  width:52px; height:52px; border-radius:16px; margin-bottom:.4rem;
  background:var(--bv-grad-mint); display:grid; place-items:center;
  color:var(--bv-forest); box-shadow:var(--bv-shadow-sm);
}
.bv-tile__glyph svg{ width:26px; height:26px; }
.bv-tile h3{ font-size:1.2rem; color:var(--bv-ink); }
.bv-tile p{ font-size:.98rem; color:var(--bv-text-soft); }

/* ============================================================
   4 · PRODUCT SPOTLIGHT
   ============================================================ */
.bv-spot{ position:relative; overflow:hidden; }
.bv-spot__grid{
  display:grid; gap:clamp(2rem,5vw,4.5rem);
  grid-template-columns:1fr 1.1fr; align-items:center;
}
.bv-spot__stage{
  position:relative; border-radius:var(--bv-r-xl);
  background:var(--bv-grad-hero); overflow:hidden;
  display:grid; place-items:center;
  padding:clamp(2rem,5vw,4rem);
  aspect-ratio:5/6; box-shadow:var(--bv-shadow-lg);
}
.bv-spot__stage::before{
  content:""; position:absolute; width:70%; aspect-ratio:1;
  border-radius:50%; background:radial-gradient(circle,rgba(128,222,191,.5),transparent 70%);
  filter:blur(10px);
}
.bv-spot__stage img{
  position:relative; max-height:88%; width:auto; object-fit:contain;
  filter:drop-shadow(0 30px 50px rgba(0,0,0,.4));
  animation:bv-float 6s ease-in-out infinite;
}
@keyframes bv-float{ 0%,100%{ transform:translateY(0); } 50%{ transform:translateY(-14px); } }
.bv-spot__copy h2{ margin:1rem 0; }
.bv-spot__copy > p{ color:var(--bv-text-soft); }
.bv-spec{ margin-top:1.8rem; display:grid; gap:1rem; }
.bv-spec li{ display:flex; gap:.9rem; align-items:flex-start; }
.bv-spec__mark{
  flex:none; width:26px; height:26px; border-radius:9px;
  background:var(--bv-grad-jade); display:grid; place-items:center;
  color:var(--bv-white); margin-top:2px;
}
.bv-spec__mark svg{ width:15px; height:15px; }
.bv-spec b{ color:var(--bv-ink); }
.bv-spec span{ color:var(--bv-text-soft); }
.bv-spot__foot{
  margin-top:2rem; display:flex; flex-wrap:wrap; align-items:center; gap:1.2rem;
}
.bv-priceflag{
  display:flex; align-items:baseline; gap:.4rem;
  padding:.6rem 1.2rem; border-radius:var(--bv-r-m);
  background:var(--bv-ice); border:1px solid var(--bv-line);
}
.bv-priceflag b{ font-family:Georgia,serif; font-size:1.7rem; color:var(--bv-forest); }
.bv-priceflag span{ font-size:.85rem; color:var(--bv-text-soft); }

/* ============================================================
   5 · BENEFITS
   ============================================================ */
.bv-benefits{ background:var(--bv-ink); color:var(--bv-ice); }
.bv-benefits__head{ max-width:640px; margin-bottom:clamp(2rem,5vw,3.5rem); }
.bv-benefits__head .bv-h2{ color:var(--bv-white); }
.bv-benefits__head .bv-eyebrow{ color:var(--bv-mint); }
.bv-benefits__head .bv-eyebrow::before{ background:var(--bv-mint); }
.bv-benefits__head p{ color:rgba(230,244,239,.8); margin-top:1rem; }
.bv-benefit-grid{
  display:grid; gap:var(--bv-gap);
  grid-template-columns:repeat(auto-fit,minmax(min(100%,240px),1fr));
}
.bv-glasscard{
  padding:clamp(1.6rem,3vw,2.1rem); border-radius:var(--bv-r-l);
  background:rgba(255,255,255,.055);
  border:1px solid rgba(230,244,239,.14);
  backdrop-filter:blur(8px); -webkit-backdrop-filter:blur(8px);
  transition:transform .3s, background .3s, border-color .3s;
}
.bv-glasscard:hover{ transform:translateY(-6px); background:rgba(128,222,191,.1); border-color:rgba(128,222,191,.4); }
.bv-glasscard__glyph{
  width:50px; height:50px; border-radius:15px; margin-bottom:1rem;
  background:var(--bv-grad-jade); display:grid; place-items:center; color:var(--bv-white);
}
.bv-glasscard__glyph svg{ width:24px; height:24px; }
.bv-glasscard h3{ font-size:1.18rem; color:var(--bv-white); margin-bottom:.4rem; font-family:Georgia,serif; }
.bv-glasscard p{ font-size:.97rem; color:rgba(230,244,239,.78); }

/* ============================================================
   6 · DAILY RHYTHM
   ============================================================ */
.bv-rhythm__grid{
  display:grid; gap:clamp(2rem,5vw,4rem);
  grid-template-columns:1fr 1fr; align-items:center;
}
.bv-rhythm__media{
  border-radius:var(--bv-r-xl); overflow:hidden;
  box-shadow:var(--bv-shadow-lg); aspect-ratio:7/5;
}
.bv-rhythm__media img{ width:100%; height:100%; object-fit:cover; }
.bv-steps{ counter-reset:step; margin-top:1.6rem; display:grid; gap:1.1rem; }
.bv-step{
  display:flex; gap:1.1rem; align-items:flex-start;
  padding:1.1rem 1.2rem; border-radius:var(--bv-r-m);
  background:var(--bv-white); border:1px solid var(--bv-line);
  box-shadow:var(--bv-shadow-sm);
  transition:transform .25s;
}
.bv-step:hover{ transform:translateX(6px); }
.bv-step::before{
  counter-increment:step; content:counter(step);
  flex:none; width:38px; height:38px; border-radius:50%;
  background:var(--bv-grad-mint); color:var(--bv-forest);
  font-family:Georgia,serif; font-weight:700; font-size:1.05rem;
  display:grid; place-items:center;
}
.bv-step h3{ font-size:1.08rem; color:var(--bv-ink); }
.bv-step p{ font-size:.95rem; color:var(--bv-text-soft); }

/* ============================================================
   7 · TRUST & TRANSPARENCY
   ============================================================ */
.bv-trust{ background:var(--bv-grad-chrome); }
.bv-trust__grid{
  display:grid; gap:var(--bv-gap);
  grid-template-columns:repeat(auto-fit,minmax(min(100%,220px),1fr));
  margin-top:clamp(2rem,4vw,3rem);
}
.bv-pledge{
  background:var(--bv-white); border-radius:var(--bv-r-l);
  padding:clamp(1.5rem,3vw,2rem); border:1px solid var(--bv-line);
  box-shadow:var(--bv-shadow-sm); text-align:left;
}
.bv-pledge__glyph{
  width:48px; height:48px; border-radius:14px; margin-bottom:1rem;
  border:1.5px solid var(--bv-jade); color:var(--bv-emerald);
  display:grid; place-items:center;
}
.bv-pledge__glyph svg{ width:24px; height:24px; }
.bv-pledge h3{ font-size:1.12rem; color:var(--bv-ink); margin-bottom:.35rem; font-family:Georgia,serif; }
.bv-pledge p{ font-size:.95rem; color:var(--bv-text-soft); }
.bv-trust__note{
  margin-top:clamp(2rem,4vw,3rem); padding:clamp(1.4rem,3vw,2rem);
  border-radius:var(--bv-r-l); background:var(--bv-ice);
  border:1px dashed var(--bv-silver-dk);
  font-size:.95rem; color:var(--bv-text-soft);
}

/* ============================================================
   8 · ORDER
   ============================================================ */
.bv-order{ background:var(--bv-grad-hero); color:var(--bv-ice); position:relative; overflow:hidden; }
.bv-order::before{
  content:""; position:absolute; top:-30%; right:-10%;
  width:520px; height:520px; border-radius:50%;
  background:radial-gradient(circle,rgba(128,222,191,.28),transparent 70%);
}
.bv-order__grid{
  display:grid; gap:clamp(2rem,5vw,4rem);
  grid-template-columns:1.1fr .9fr; align-items:center; position:relative;
}
.bv-order__copy .bv-eyebrow{ color:var(--bv-mint); }
.bv-order__copy .bv-eyebrow::before{ background:var(--bv-mint); }
.bv-order__copy .bv-h2{ color:var(--bv-white); margin:1rem 0; }
.bv-order__copy p{ color:rgba(230,244,239,.85); }
.bv-order__perks{ margin-top:1.6rem; display:grid; gap:.8rem; }
.bv-order__perks li{ display:flex; gap:.7rem; align-items:center; color:var(--bv-ice); }
.bv-order__perks svg{ width:20px; height:20px; color:var(--bv-mint); flex:none; }

.bv-form{
  background:rgba(255,255,255,.09);
  border:1px solid rgba(230,244,239,.2);
  backdrop-filter:blur(16px); -webkit-backdrop-filter:blur(16px);
  border-radius:var(--bv-r-xl); padding:clamp(1.6rem,4vw,2.6rem);
  box-shadow:var(--bv-shadow-lg);
}
.bv-form__title{ font-family:Georgia,serif; font-size:1.5rem; color:var(--bv-white); }
.bv-form__price{
  display:flex; align-items:baseline; gap:.5rem; margin:.4rem 0 1.4rem;
}
.bv-form__price b{ font-family:Georgia,serif; font-size:2.2rem; color:var(--bv-mint); }
.bv-form__price span{ font-size:.9rem; color:rgba(230,244,239,.75); }
.bv-field{ margin-bottom:1.1rem; }
.bv-field label{
  display:block; font-size:.86rem; font-weight:600; letter-spacing:.04em;
  color:var(--bv-ice); margin-bottom:.45rem;
}
.bv-field input{
  width:100%; padding:.95em 1.1em; border-radius:var(--bv-r-m);
  background:rgba(255,255,255,.92); color:var(--bv-text);
  border:2px solid transparent; font-size:1rem;
  transition:border-color .2s, box-shadow .2s;
}
.bv-field input::placeholder{ color:#8ba09a; }
.bv-field input:focus{ outline:none; border-color:var(--bv-mint); box-shadow:0 0 0 4px rgba(128,222,191,.3); }
.bv-field input.is-invalid{ border-color:#e26d6d; box-shadow:0 0 0 4px rgba(226,109,109,.22); }
.bv-field__error{
  display:none; margin-top:.4rem; font-size:.82rem; color:#ffd7d7;
}
.bv-field.is-invalid .bv-field__error{ display:block; }
.bv-form__fine{ margin-top:1rem; font-size:.8rem; color:rgba(230,244,239,.66); line-height:1.5; }
.bv-form__fine a{ color:var(--bv-mint); text-decoration:underline; }

/* ============================================================
   9 · FOOTER
   ============================================================ */
.bv-foot{ background:var(--bv-ink); color:var(--bv-silver); }
.bv-foot__top{
  display:grid; gap:clamp(2rem,5vw,3rem);
  grid-template-columns:1.4fr 1fr 1fr 1.2fr;
  padding-block:clamp(3rem,6vw,4.5rem);
}
.bv-foot__brand .bv-brandmark{ color:var(--bv-white); margin-bottom:1rem; }
.bv-foot__brand p{ font-size:.95rem; color:rgba(200,210,214,.72); max-width:32ch; }
.bv-foot__col h4{
  font-size:.82rem; letter-spacing:.16em; text-transform:uppercase;
  color:var(--bv-mint); margin-bottom:1rem; font-weight:700;
}
.bv-foot__col li{ margin-bottom:.6rem; }
.bv-foot__col a{ font-size:.96rem; color:rgba(200,210,214,.82); transition:color .2s; }
.bv-foot__col a:hover{ color:var(--bv-mint); }
.bv-foot__contact li{ margin-bottom:.7rem; font-size:.95rem; color:rgba(200,210,214,.82); }
.bv-foot__contact a{ color:rgba(200,210,214,.82); }
.bv-foot__contact a:hover{ color:var(--bv-mint); }
.bv-foot__bar{
  border-top:1px solid rgba(200,210,214,.14);
  padding-block:1.6rem;
  display:flex; flex-wrap:wrap; gap:1rem; justify-content:space-between; align-items:center;
  font-size:.86rem; color:rgba(200,210,214,.6);
}
.bv-foot__bar nav{ display:flex; flex-wrap:wrap; gap:1.2rem; }
.bv-foot__bar a:hover{ color:var(--bv-mint); }

/* ============================================================
   COOKIE BANNER
   ============================================================ */
.bv-cookie{
  position:fixed; left:50%; bottom:clamp(1rem,3vw,2rem);
  transform:translate(-50%,140%);
  width:min(680px,calc(100% - 2rem)); z-index:80;
  background:rgba(247,250,249,.9);
  backdrop-filter:blur(20px) saturate(150%); -webkit-backdrop-filter:blur(20px) saturate(150%);
  border:1px solid var(--bv-line);
  border-radius:var(--bv-r-l); box-shadow:var(--bv-shadow-lg);
  padding:clamp(1.3rem,3vw,1.8rem);
  transition:transform .5s cubic-bezier(.2,.8,.2,1); opacity:0; visibility:hidden;
}
.bv-cookie.is-visible{ transform:translate(-50%,0); opacity:1; visibility:visible; }
.bv-cookie h3{ font-family:Georgia,serif; font-size:1.2rem; color:var(--bv-ink); margin-bottom:.4rem; }
.bv-cookie p{ font-size:.92rem; color:var(--bv-text-soft); }
.bv-cookie p a{ color:var(--bv-emerald); text-decoration:underline; }
.bv-cookie__row{ display:flex; flex-wrap:wrap; gap:.7rem; margin-top:1.2rem; }
.bv-cookie__row .bv-btn{ padding:.7em 1.4em; font-size:.94rem; }
.bv-cookie__mini{
  padding:.7em 1.2em; border-radius:var(--bv-r-pill);
  font-weight:600; font-size:.94rem; color:var(--bv-text-soft);
  border:1px solid var(--bv-line); background:var(--bv-white);
  transition:.2s;
}
.bv-cookie__mini:hover{ color:var(--bv-forest); border-color:var(--bv-jade); }

/* cookie preferences panel */
.bv-prefs{ display:none; margin-top:1.2rem; padding-top:1.2rem; border-top:1px solid var(--bv-line); }
.bv-prefs.is-open{ display:block; }
.bv-prefs__row{
  display:flex; align-items:flex-start; justify-content:space-between; gap:1rem;
  padding:.8rem 0; border-bottom:1px solid var(--bv-line);
}
.bv-prefs__row:last-child{ border-bottom:none; }
.bv-prefs__row h4{ font-size:1rem; color:var(--bv-ink); }
.bv-prefs__row p{ font-size:.85rem; }
.bv-toggle{
  flex:none; position:relative; width:48px; height:26px; border-radius:999px;
  background:var(--bv-silver); transition:background .25s;
}
.bv-toggle::after{
  content:""; position:absolute; top:3px; left:3px; width:20px; height:20px;
  border-radius:50%; background:var(--bv-white); transition:transform .25s; box-shadow:var(--bv-shadow-sm);
}
.bv-toggle.is-on{ background:var(--bv-grad-jade); }
.bv-toggle.is-on::after{ transform:translateX(22px); }
.bv-toggle.is-locked{ opacity:.6; cursor:not-allowed; }

/* ============================================================
   ARTICLE / LEGAL SHARED
   ============================================================ */
.bv-pagehead{
  background:var(--bv-grad-hero); color:var(--bv-ice);
  padding-block:clamp(3.5rem,8vw,6rem); position:relative; overflow:hidden;
}
.bv-pagehead::after{
  content:""; position:absolute; bottom:-40%; left:-5%;
  width:460px; height:460px; border-radius:50%;
  background:radial-gradient(circle,rgba(128,222,191,.25),transparent 70%);
}
.bv-pagehead__inner{ position:relative; max-width:760px; }
.bv-pagehead .bv-eyebrow{ color:var(--bv-mint); }
.bv-pagehead .bv-eyebrow::before{ background:var(--bv-mint); }
.bv-pagehead h1{
  font-family:Georgia,serif; font-size:var(--bv-fs-h2); color:var(--bv-white);
  margin:1rem 0 .6rem; line-height:1.08; letter-spacing:-.015em;
}
.bv-pagehead p{ color:rgba(230,244,239,.85); font-size:var(--bv-fs-lead); }
.bv-crumbs{ font-size:.86rem; color:var(--bv-mint-soft); margin-bottom:.4rem; }
.bv-crumbs a{ color:var(--bv-mint-soft); }
.bv-crumbs a:hover{ color:var(--bv-white); }

.bv-doc{ max-width:820px; }
.bv-doc__meta{
  font-size:.88rem; color:var(--bv-text-soft);
  padding-bottom:1.4rem; margin-bottom:2rem; border-bottom:1px solid var(--bv-line);
}
.bv-doc h2{
  font-family:Georgia,serif; font-size:clamp(1.4rem,1.1rem+1vw,1.9rem);
  color:var(--bv-ink); margin:2.2rem 0 .8rem;
}
.bv-doc h3{ font-size:1.15rem; color:var(--bv-forest); margin:1.6rem 0 .5rem; }
.bv-doc p{ color:var(--bv-text-soft); margin-bottom:1rem; }
.bv-doc ul.bv-doclist{ margin:0 0 1.2rem 0; display:grid; gap:.6rem; }
.bv-doclist li{ display:flex; gap:.7rem; color:var(--bv-text-soft); }
.bv-doclist li::before{ content:""; flex:none; width:8px; height:8px; margin-top:.55em; border-radius:50%; background:var(--bv-grad-jade); }
.bv-doc a{ color:var(--bv-emerald); text-decoration:underline; }
.bv-callout{
  margin:1.6rem 0; padding:1.3rem 1.5rem; border-radius:var(--bv-r-m);
  background:var(--bv-ice); border-left:4px solid var(--bv-jade);
  font-size:.96rem; color:var(--bv-text-soft);
}
.bv-doctable{
  width:100%; border-collapse:collapse; margin:1.4rem 0; font-size:.95rem;
  border-radius:var(--bv-r-m); overflow:hidden; box-shadow:var(--bv-shadow-sm);
}
.bv-doctable th,.bv-doctable td{ padding:.85rem 1rem; text-align:left; border-bottom:1px solid var(--bv-line); }
.bv-doctable th{ background:var(--bv-forest); color:var(--bv-ice); font-weight:600; }
.bv-doctable tr:last-child td{ border-bottom:none; }
.bv-doctable td{ color:var(--bv-text-soft); background:var(--bv-white); }

/* ---------- healthy habits article ---------- */
.bv-article__grid{
  display:grid; gap:clamp(2rem,5vw,4rem);
  grid-template-columns:1.5fr 1fr; align-items:start;
}
.bv-feature{
  position:sticky; top:100px;
  border-radius:var(--bv-r-xl); overflow:hidden;
  box-shadow:var(--bv-shadow-lg); background:var(--bv-white);
  border:1px solid var(--bv-line);
}
.bv-feature__img{ aspect-ratio:7/5; }
.bv-feature__img img{ width:100%; height:100%; object-fit:cover; }
.bv-feature__body{ padding:clamp(1.4rem,3vw,1.8rem); }
.bv-feature__body h3{ font-family:Georgia,serif; font-size:1.25rem; color:var(--bv-ink); margin-bottom:.5rem; }
.bv-feature__body p{ font-size:.95rem; color:var(--bv-text-soft); }
.bv-feature__tag{
  display:inline-block; margin-bottom:.8rem; padding:.4em .9em;
  border-radius:var(--bv-r-pill); font-size:.78rem; font-weight:700;
  letter-spacing:.1em; text-transform:uppercase;
  color:var(--bv-emerald); background:var(--bv-ice);
}

/* ---------- success page ---------- */
.bv-success{
  min-height:calc(100vh - 74px); display:grid; place-items:center;
  background:var(--bv-grad-hero); color:var(--bv-ice);
  padding:var(--bv-edge); text-align:center; position:relative; overflow:hidden;
}
.bv-success::before,.bv-success::after{
  content:""; position:absolute; border-radius:50%;
  background:radial-gradient(circle,rgba(128,222,191,.3),transparent 70%);
}
.bv-success::before{ width:520px; height:520px; top:-15%; left:-10%; }
.bv-success::after{ width:420px; height:420px; bottom:-15%; right:-8%; }
.bv-success__card{
  position:relative; max-width:560px; padding:clamp(2rem,5vw,3.5rem);
  background:rgba(255,255,255,.08); border:1px solid rgba(230,244,239,.2);
  backdrop-filter:blur(16px); -webkit-backdrop-filter:blur(16px);
  border-radius:var(--bv-r-xl); box-shadow:var(--bv-shadow-lg);
}
.bv-success__check{
  width:88px; height:88px; margin:0 auto 1.4rem; border-radius:50%;
  background:var(--bv-grad-jade); display:grid; place-items:center;
  box-shadow:var(--bv-glow-mint); animation:bv-pop .6s cubic-bezier(.2,.9,.3,1.4) both;
}
.bv-success__check svg{ width:44px; height:44px; color:var(--bv-white); }
@keyframes bv-pop{ 0%{ transform:scale(0); } 100%{ transform:scale(1); } }
.bv-success__card h1{ font-family:Georgia,serif; font-size:clamp(1.8rem,1.3rem+2vw,2.8rem); color:var(--bv-white); margin-bottom:.8rem; }
.bv-success__card p{ color:rgba(230,244,239,.86); margin-bottom:1rem; }
.bv-success__ref{
  display:inline-block; margin:.4rem 0 1.6rem; padding:.5em 1.2em;
  border-radius:var(--bv-r-pill); background:rgba(128,222,191,.16);
  border:1px solid rgba(128,222,191,.4); color:var(--bv-mint);
  font-weight:700; letter-spacing:.06em;
}
.bv-success__actions{ display:flex; flex-wrap:wrap; gap:.9rem; justify-content:center; }

/* ---------- reveal animation ---------- */
.bv-reveal{ opacity:0; transform:translateY(26px); transition:opacity .7s ease, transform .7s cubic-bezier(.2,.7,.3,1); }
.bv-reveal.is-in{ opacity:1; transform:none; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width:960px){
  .bv-intro__grid,.bv-spot__grid,.bv-rhythm__grid,.bv-order__grid,.bv-article__grid{ grid-template-columns:1fr; }
  .bv-spot__stage{ aspect-ratio:5/4; max-width:460px; margin-inline:auto; }
  .bv-intro__media{ aspect-ratio:16/11; }
  .bv-feature{ position:static; max-width:520px; }
  .bv-foot__top{ grid-template-columns:1fr 1fr; }
}
@media (max-width:760px){
  .bv-nav{
    position:fixed; inset:74px 0 auto 0;
    flex-direction:column; align-items:stretch; gap:.3rem;
    padding:1.2rem var(--bv-edge) 1.8rem;
    background:rgba(247,250,249,.97);
    backdrop-filter:blur(18px); -webkit-backdrop-filter:blur(18px);
    border-bottom:1px solid var(--bv-line);
    transform:translateY(-140%); transition:transform .4s cubic-bezier(.2,.8,.2,1);
    box-shadow:var(--bv-shadow-md);
  }
  .bv-nav.is-open{ transform:translateY(0); }
  .bv-nav__link{ padding:.85em 1em; font-size:1.05rem; }
  .bv-nav__cta{ margin-left:0; margin-top:.4rem; }
  .bv-burger{ display:block; }
}
@media (max-width:560px){
  .bv-foot__top{ grid-template-columns:1fr; }
  .bv-hero__cta{ width:100%; }
  .bv-hero__cta .bv-btn{ width:100%; }
  .bv-cookie__row{ flex-direction:column; }
  .bv-cookie__row .bv-btn,.bv-cookie__mini{ width:100%; }
  .bv-success__actions .bv-btn{ width:100%; }
}
