/* vedicDROP — site styles */

/* ---------- Self-hosted Poppins (latin) ---------- */
@font-face{font-family:'Poppins';font-style:normal;font-weight:300;font-display:swap;src:url('../assets/fonts/poppins-300.woff2') format('woff2');}
@font-face{font-family:'Poppins';font-style:normal;font-weight:400;font-display:swap;src:url('../assets/fonts/poppins-400.woff2') format('woff2');}
@font-face{font-family:'Poppins';font-style:normal;font-weight:500;font-display:swap;src:url('../assets/fonts/poppins-500.woff2') format('woff2');}
@font-face{font-family:'Poppins';font-style:normal;font-weight:600;font-display:swap;src:url('../assets/fonts/poppins-600.woff2') format('woff2');}
@font-face{font-family:'Poppins';font-style:normal;font-weight:700;font-display:swap;src:url('../assets/fonts/poppins-700.woff2') format('woff2');}

:root{
  --color-primary-green:#1B5E3F;
  --color-teal:#0E9C8F;
  --color-deep-teal-bg:#0A3D3A;
  --color-leaf-accent:#4CA658;
  --color-surface-white:#FFFFFF;
  --color-surface-mint:#F2F8F5;
  --color-video-cream:#F7F4EF;   /* matches the generated videos' background */
  --color-ink:#0D1F1A;
  --color-error:#DC3232;
  --color-success:#2DB742;
  --font-body:'Poppins',sans-serif;
  --font-display:'Poppins',sans-serif;
  --line:rgba(13,31,26,.14);
  --line-dark:rgba(255,255,255,.14);
  --header-h:68px;
  /* soft halo so ink text stays readable over the video at any frame */
  --video-text-halo:0 0 6px rgba(247,244,239,.95),0 0 16px rgba(247,244,239,.85),0 0 30px rgba(247,244,239,.7);
}

*,*::before,*::after{box-sizing:border-box;margin:0;padding:0;}
html{scroll-behavior:auto;}
body{
  font-family:var(--font-body);
  color:var(--color-ink);
  background:var(--color-surface-white);
  overflow-x:hidden;
  -webkit-font-smoothing:antialiased;
}
img,video{display:block;max-width:100%;}
a{color:inherit;text-decoration:none;}
main{padding-top:var(--header-h);}
section[id]{scroll-margin-top:var(--header-h);}
.block-img{width:100%;height:100%;object-fit:cover;}
h1,h2,h3{font-family:var(--font-display);font-weight:600;line-height:1.15;}
.h2{font-size:clamp(2rem,4vw,3.4rem);}
p{line-height:1.6;}
::selection{background:var(--color-teal);color:#fff;}
/* Elements revealed line-by-line by JS: hidden until split (desktop only) */
@media(min-width:821px){.js-lines{visibility:hidden;}}

/* Reference behaviour: content blocks read lowercase (brand marks excluded) */
.landing-page-block-2,.landing-page-block-3,.landing-page-block-4,.landing-page-block-5,
#vd-products,#vd-contact,.vd-journal,.vd-prefooter,.site-footer,.marquee{text-transform:lowercase;}
.logo-word,.footer-title{text-transform:none;}

/* ---------- Header : white bar with grid lines, cells for logo / nav / socials ---------- */
.site-header{
  position:fixed;top:0;left:0;width:100%;height:var(--header-h);z-index:100;
  display:flex;align-items:stretch;
  background:var(--color-surface-white);
  border-bottom:1px solid var(--line);
  transition:box-shadow .3s ease;
}
.site-header.is-scrolled{box-shadow:0 2px 14px rgba(13,31,26,.08);}
.site-logo{
  display:flex;align-items:center;gap:.55rem;flex:0 0 auto;
  padding:0 2.4vw;border-right:1px solid var(--line);
}
.logo-mark{height:32px;width:24px;display:block;flex:0 0 auto;}
.logo-img{height:34px;width:auto;display:block;}
.logo-word{font-size:1.25rem;font-weight:500;color:var(--color-primary-green);letter-spacing:.01em;line-height:1;white-space:nowrap;}
.logo-word b{font-weight:700;color:var(--color-teal);}
.main-nav{display:flex;align-items:center;gap:clamp(1.6rem,3.2vw,3.4rem);}
@media(min-width:821px){
  /* truly centered in the viewport, independent of logo / contact cell widths */
  .main-nav{position:absolute;left:50%;top:0;height:100%;transform:translateX(-50%);justify-content:center;}
}
.main-nav a{
  font-size:.82rem;font-weight:500;color:var(--color-ink);
  text-transform:uppercase;letter-spacing:.1em;
  position:relative;padding:.2rem 0;white-space:nowrap;
}
.main-nav a::after{
  content:'';position:absolute;left:0;bottom:-4px;width:0;height:2px;
  background:var(--color-teal);transition:width .25s ease;
}
.main-nav a:hover::after{width:100%;}
.header-contact{display:flex;align-items:stretch;flex:0 0 auto;margin-left:auto;}
.header-contact a{
  display:flex;align-items:center;
  padding:0 1.5rem;border-left:1px solid var(--line);
  font-size:.8rem;font-weight:500;color:var(--color-ink);letter-spacing:.03em;white-space:nowrap;
  transition:background .25s ease,color .25s ease;
}
.header-contact a:hover{background:var(--color-surface-mint);color:var(--color-primary-green);}
@media(max-width:1280px){.header-contact .hc-email{display:none;}}
@media(max-width:1080px){
  .main-nav{gap:1.2rem;}
  .main-nav a{font-size:.76rem;letter-spacing:.07em;}
}
.nav-toggle{
  display:none;background:none;border:0;border-left:1px solid var(--line);
  width:var(--header-h);height:100%;position:relative;cursor:pointer;flex:0 0 auto;
}
.nav-toggle span{
  position:absolute;left:50%;margin-left:-11px;width:22px;height:2px;
  background:var(--color-ink);border-radius:2px;transition:.3s;
}
.nav-toggle span:nth-child(1){top:calc(50% - 8px);}
.nav-toggle span:nth-child(2){top:calc(50% - 1px);}
.nav-toggle span:nth-child(3){top:calc(50% + 6px);}
.site-header.nav-open .nav-toggle span:nth-child(1){top:calc(50% - 1px);transform:rotate(45deg);}
.site-header.nav-open .nav-toggle span:nth-child(2){opacity:0;}
.site-header.nav-open .nav-toggle span:nth-child(3){top:calc(50% - 1px);transform:rotate(-45deg);}

/* ---------- Hero ---------- */
.site-banner{position:relative;height:calc(100vh - var(--header-h));width:100%;overflow:hidden;background:var(--color-deep-teal-bg);}
.site-banner img{width:100%;height:100%;object-fit:cover;}
.site-banner-image-media-item-mobile{display:none;}
.site-banner::after{
  content:'';position:absolute;inset:0;
  background:linear-gradient(180deg, rgba(10,61,58,.18) 0%, rgba(10,61,58,.5) 100%);
}
.hero-tagline{
  position:absolute;left:6vw;bottom:12vh;z-index:2;color:#fff;max-width:640px;
}
.hero-tagline h1{font-size:clamp(2.5rem,5vw,4rem);margin-bottom:.6rem;text-shadow:0 2px 18px rgba(10,61,58,.45);}
.hero-tagline p{font-size:1.1rem;font-weight:300;opacity:.95;text-shadow:0 1px 12px rgba(10,61,58,.5);}

/* ---------- Section 1 : About (pinned image-expand story) ----------
   Desktop: text on left white half, image fills right half full-height.
   On scroll (pinned) the image expands to cover the full viewport,
   then the closing paragraph fades in over it near the top. */
.landing-page-block-1{position:relative;background:var(--color-surface-white);min-height:600vh;}
.landing-page-block-1-wrapper{position:relative;height:100vh;overflow:hidden;background:var(--color-surface-white);}
.landing-page-block-1-title-container{position:absolute;inset:0;display:flex;align-items:center;z-index:1;}
.col-left{width:50%;padding:0 4vw 0 6vw;}
.landing-page-block-1-title{color:var(--color-primary-green);font-size:clamp(2.6rem,5vw,4.4rem);margin-bottom:1.8rem;text-transform:lowercase;}
.block-content p{margin-bottom:1.1rem;font-size:clamp(1rem,1.15vw,1.2rem);line-height:1.65;color:var(--color-ink);opacity:.85;max-width:42ch;}
.landing-page-block-1-image-container{
  position:absolute;top:0;right:0;height:100%;width:50vw;
  overflow:hidden;z-index:2;will-change:width;
  border-left:1px solid var(--line);
}
.landing-page-block-1-image-container img{width:100vw;max-width:none;height:100%;object-fit:cover;object-position:center;}
.landing-page-block-1-text{
  position:absolute;top:12%;left:50%;transform:translateX(-50%);
  width:min(64vw,820px);z-index:3;text-align:center;
}
.landing-page-block-1-text p{
  font-size:clamp(1rem,1.25vw,1.25rem);line-height:1.65;font-weight:500;color:var(--color-ink);
  text-shadow:0 0 6px rgba(255,255,255,.9),0 0 16px rgba(255,255,255,.8),0 0 28px rgba(255,255,255,.65);
}

/* ---------- Block 2 : packaging blurb ---------- */
.landing-page-block-2{display:flex;flex-wrap:wrap;min-height:80vh;}
.block-2-col-left{flex:1 1 480px;overflow:hidden;}
.block-2-col-left img{width:100%;height:100%;object-fit:cover;min-height:50vh;}
.landing-page-block-two-content{flex:1 1 420px;display:flex;align-items:center;padding:6vh 5vw;background:var(--color-primary-green);color:#fff;}
.landing-page-block-two-title p{font-size:1.2rem;line-height:1.7;margin-bottom:1.2rem;opacity:.95;color:#fff;}
.landing-page-block-two-title .block-content p{color:#fff;opacity:.95;max-width:56ch;}

/* ---------- Section 3 & 5 : video-scrub ---------- */
/* Reference pacing: video 1 gets 600vh of scroll, video 2 gets 900vh */
.landing-page-block-3,.landing-page-block-5{position:relative;background:var(--color-video-cream);}
.landing-page-block-3{min-height:600vh;}
.landing-page-block-5{min-height:900vh;}
.landing-page-block-3-wrapper,.landing-page-block-5-wrapper{
  position:relative;height:100vh;overflow:hidden;
}
.landing-page-block-3-video,.landing-page-block-5-video{position:absolute;inset:0;}
.landing-page-block-3-video video,.landing-page-block-5-video video{width:100%;height:100%;object-fit:cover;background:var(--color-video-cream);}
.landing-page-block-3-video-mobile,.landing-page-block-5-video-mobile{display:none;}
@media(max-width:820px){
  .landing-page-block-3-video-desktop,.landing-page-block-5-video-desktop{display:none;}
  .landing-page-block-3-video-mobile,.landing-page-block-5-video-mobile{display:block;}
}

.landing-page-block-3-pointers{position:absolute;inset:0;pointer-events:none;color:var(--color-ink);}
.section-scroll-pointer{
  position:absolute;max-width:340px;display:flex;align-items:center;gap:1rem;
}
.section-scroll-pointer[data-ref-home-scroll="pointer-1"]{top:18%;left:6vw;}
.section-scroll-pointer[data-ref-home-scroll="pointer-2"]{top:22%;right:6vw;flex-direction:row-reverse;text-align:right;}
.section-scroll-pointer[data-ref-home-scroll="pointer-3"]{bottom:12%;left:6vw;}
.text-scroll-left-line{width:0;opacity:0;height:2px;background:var(--color-primary-green);display:inline-block;flex:0 0 auto;}
.section-scroll-pointer-text{
  display:block;font-size:1.05rem;font-weight:500;line-height:1.45;color:var(--color-ink);
  text-shadow:var(--video-text-halo);
}
.section-scroll-pointer-text > span{display:block;}

/* Video 2 copy: quiet left-aligned block at the top right, clear of the pour */
.landing-page-block-5-text{position:absolute;inset:0;z-index:2;pointer-events:none;color:var(--color-ink);}
.landing-page-block-5-water-text,.block-5-text{
  position:absolute;right:1.9vw;top:clamp(6rem,14vh,9rem);
  width:min(26rem,38vw);text-align:left;
  font-size:1.1rem;font-weight:500;line-height:1.6;
  text-shadow:var(--video-text-halo);
}
@media(min-width:1440px){
  .landing-page-block-5-water-text,.block-5-text{right:5.5vw;}
}

/* ---------- Block 4 : pledge quote ---------- */
.landing-page-block-4{display:flex;flex-wrap:wrap;min-height:80vh;background:var(--color-surface-mint);}
.block-4-col-left{flex:1 1 420px;overflow:hidden;}
.block-4-col-left img{width:100%;height:100%;object-fit:cover;min-height:50vh;}
.block-4-content{flex:1 1 420px;display:flex;align-items:center;padding:6vh 5vw;}
.block-4-title{font-size:clamp(1.35rem,1.9vw,1.7rem);color:var(--color-primary-green);line-height:1.45;font-weight:600;max-width:30ch;}

/* ---------- Products : full-bleed bordered cells, caption row on top ---------- */
#vd-products{padding:12vh 0 0;background:#fff;}
.product-title{text-align:center;margin-bottom:6vh;padding:0 6vw;}
.product-title .title{color:var(--color-primary-green);}
.grid-card{
  display:grid;grid-template-columns:repeat(3,1fr);
  border-top:1px solid var(--line);border-bottom:1px solid var(--line);
}
.product-card{border-right:1px solid var(--line);background:#fff;}
.product-card:last-child{border-right:0;}
.product-card-caption{
  display:flex;justify-content:space-between;align-items:baseline;gap:1rem;
  padding:1.15rem 1.6rem;border-bottom:1px solid var(--line);
}
.product-card__name{font-size:1rem;font-weight:400;color:var(--color-teal);}
.product-card__size{font-size:1rem;font-weight:400;color:var(--color-primary-green);white-space:nowrap;}
.product-card-image-container{overflow:hidden;aspect-ratio:1/1.05;background:var(--color-surface-mint);}
.product-card-image-container img{width:100%;height:100%;object-fit:cover;transition:transform .6s cubic-bezier(.2,.6,.2,1);}
.product-card:hover .product-card-image-container img{transform:scale(1.05);}

/* ---------- Journal (blog) ---------- */
.vd-journal{padding:10vh 0 0;background:#fff;}
.vd-journal-head{
  display:flex;justify-content:space-between;align-items:baseline;gap:1.5rem;
  padding:0 6vw;margin-bottom:5vh;
}
.vd-journal-head .h2{color:var(--color-primary-green);}
.vd-journal-all{
  font-size:.9rem;font-weight:500;color:var(--color-teal);white-space:nowrap;
  border-bottom:1px solid transparent;transition:border-color .25s;
}
.vd-journal-all:hover{border-bottom-color:var(--color-teal);}
.vd-journal-grid{
  display:grid;grid-template-columns:1fr 1fr;
  border-top:1px solid var(--line);border-bottom:1px solid var(--line);
}
.vd-journal-card{display:flex;flex-direction:column;border-right:1px solid var(--line);background:#fff;}
.vd-journal-card:last-child{border-right:0;}
.vd-journal-card-image{overflow:hidden;aspect-ratio:16/9;background:var(--color-video-cream);}
.vd-journal-card-image img{width:100%;height:100%;object-fit:cover;transition:transform .6s cubic-bezier(.2,.6,.2,1);}
.vd-journal-card:hover .vd-journal-card-image img{transform:scale(1.04);}
.vd-journal-card-body{padding:1.6rem 1.6rem 1.9rem;border-top:1px solid var(--line);display:flex;flex-direction:column;gap:.55rem;}
.vd-journal-card-tag{font-size:.72rem;font-weight:600;letter-spacing:.08em;color:var(--color-teal);}
.vd-journal-card-body h3{font-size:1.15rem;font-weight:600;color:var(--color-primary-green);line-height:1.35;}
.vd-journal-card-body p{font-size:.9rem;line-height:1.6;opacity:.8;}
.vd-journal-card-more{font-size:.85rem;font-weight:500;color:var(--color-teal);margin-top:.35rem;}

/* ---------- Blog pages ---------- */
.vd-blog-list{padding:6vh 0 10vh;}
.vd-blog-list .vd-journal-head{padding-top:4vh;}
.vd-blog-article{max-width:760px;margin:0 auto;padding:6vh 6vw 10vh;}
.vd-blog-article .vd-blog-tag{font-size:.75rem;font-weight:600;letter-spacing:.08em;color:var(--color-teal);text-transform:lowercase;}
.vd-blog-article h1{font-size:clamp(1.8rem,3.4vw,2.6rem);color:var(--color-primary-green);margin:.6rem 0 .9rem;line-height:1.2;text-transform:lowercase;}
.vd-blog-article .vd-blog-meta{font-size:.82rem;opacity:.6;margin-bottom:2rem;text-transform:lowercase;}
.vd-blog-article .vd-blog-hero{margin:0 0 2.2rem;border:1px solid var(--line);}
.vd-blog-article h2{font-size:1.3rem;color:var(--color-primary-green);margin:2.2rem 0 .8rem;text-transform:lowercase;}
.vd-blog-article p{margin-bottom:1.05rem;font-size:1rem;line-height:1.75;opacity:.88;}
.vd-blog-article ul{margin:0 0 1.05rem 1.2rem;}
.vd-blog-article li{margin-bottom:.5rem;line-height:1.65;opacity:.88;}
.vd-blog-article blockquote{
  border-left:3px solid var(--color-teal);padding:.4rem 0 .4rem 1.2rem;margin:1.6rem 0;
  color:var(--color-primary-green);font-weight:500;font-size:1.05rem;
}
.vd-blog-back{display:inline-block;margin-bottom:2rem;font-size:.88rem;font-weight:500;color:var(--color-teal);}
.vd-blog-back:hover{text-decoration:underline;text-underline-offset:3px;}
.vd-blog-cta{
  margin-top:3rem;padding:1.6rem;border:1px solid var(--line);background:var(--color-surface-mint);
  display:flex;flex-wrap:wrap;gap:1rem;align-items:center;justify-content:space-between;
}
.vd-blog-cta p{margin:0;font-weight:500;color:var(--color-primary-green);}
.vd-blog-cta a{
  display:inline-block;padding:.8rem 1.8rem;border-radius:40px;background:var(--color-primary-green);
  color:#fff;font-weight:600;font-size:.9rem;
}

/* ---------- Contact / CTA ---------- */
#vd-contact{background:var(--color-primary-green);color:#fff;padding:12vh 6vw;}
.link-block .grid{display:flex;flex-wrap:wrap;justify-content:space-between;align-items:center;gap:2.5rem;max-width:1200px;margin:0 auto;}
.link-block-row h3{font-size:clamp(1.4rem,2.4vw,2rem);font-weight:600;}
.link-block__item{
  display:inline-block;padding:1rem 2.2rem;border:1px solid rgba(255,255,255,.5);border-radius:40px;
  margin:0 1rem 1rem 0;font-weight:500;cursor:pointer;transition:.25s;
}
.link-block__item:hover{background:#fff;color:var(--color-primary-green);}

/* ---------- Pre-footer : closing image, line, badges, quick links ---------- */
.vd-prefooter{background:#fff;}
.vd-prefooter-image{border-bottom:1px solid var(--line);background:var(--color-video-cream);}
.vd-prefooter-image img{width:100%;height:auto;max-height:72vh;object-fit:cover;}
.vd-prefooter-copy{max-width:820px;margin:0 auto;padding:5vh 6vw;}
.vd-prefooter-copy p{font-size:1rem;line-height:1.7;opacity:.85;max-width:62ch;}
.vd-prefooter-line{margin-top:1.1rem;font-weight:600;color:var(--color-primary-green);opacity:1 !important;}
.vd-trust{
  display:flex;justify-content:space-between;align-items:flex-start;flex-wrap:wrap;gap:1.2rem;
  padding:2.2rem 6vw;border-top:1px solid var(--line);border-bottom:1px solid var(--line);
  max-width:100%;
}
.vd-trust-item{display:flex;flex-direction:column;align-items:center;gap:.55rem;flex:1 1 0;min-width:130px;text-align:center;}
.vd-trust-icon{width:34px;height:34px;color:var(--color-primary-green);display:flex;align-items:center;justify-content:center;}
.vd-trust-icon svg{width:30px;height:30px;}
.vd-trust-label{font-size:.78rem;font-weight:500;color:var(--color-primary-green);letter-spacing:.02em;line-height:1.3;}
.vd-prefooter-links{
  display:flex;justify-content:center;flex-wrap:wrap;gap:0 3rem;padding:1.4rem 6vw;
}
.vd-prefooter-links a{
  font-size:.85rem;font-weight:500;color:var(--color-ink);opacity:.75;padding:.4rem 0;
  transition:opacity .2s;
}
.vd-prefooter-links a:hover{opacity:1;color:var(--color-primary-green);}

/* ---------- Footer ---------- */
.site-footer{background:var(--color-deep-teal-bg);color:#fff;padding:9vh 6vw 5vh;}
.footer-row{
  display:grid;grid-template-columns:1.4fr 1fr auto;
  gap:3rem 4rem;align-items:start;max-width:1240px;margin:0 auto;
}
.footer-logo a{display:flex;align-items:center;gap:.55rem;}
.footer-logo .logo-mark{height:38px;}
.footer-logo .logo-word{color:#fff;font-size:1.4rem;}
.footer-logo .logo-word b{color:var(--color-leaf-accent);}
.footer-tagline{margin-top:1.1rem;font-size:.88rem;opacity:.7;max-width:32ch;line-height:1.6;}
.footer-title{font-weight:600;margin-bottom:1.1rem;color:var(--color-leaf-accent);font-size:.95rem;letter-spacing:.04em;text-transform:uppercase;}
.footer-menu ul{list-style:none;margin:0;padding:0;}
.footer-menu li{margin-bottom:.7rem;font-size:.9rem;opacity:.85;line-height:1.5;}
.footer-menu li a:hover{opacity:1;text-decoration:underline;text-underline-offset:3px;}
.footer-menu li span{display:block;font-size:.75rem;opacity:.6;}
.social-icons{display:flex;gap:1rem;}
.social-icons img{height:22px;filter:brightness(0) invert(1);}
.social-icons a{display:flex;align-items:center;justify-content:center;width:40px;height:40px;border:1px solid rgba(255,255,255,.25);border-radius:50%;transition:background .25s,border-color .25s;}
.social-icons a:hover{background:rgba(255,255,255,.12);border-color:rgba(255,255,255,.5);}
.footer-bottom{
  max-width:1240px;margin:4.5rem auto 0;padding-top:1.4rem;
  border-top:1px solid rgba(255,255,255,.12);font-size:.78rem;opacity:.55;
}

/* ---------- WhatsApp sticky ---------- */
.whatsapp-float{
  position:fixed;right:22px;bottom:22px;z-index:140;
  width:58px;height:58px;border-radius:50%;
  background:#25D366;display:flex;align-items:center;justify-content:center;
  box-shadow:0 6px 18px rgba(0,0,0,.25);
  transition:transform .25s ease,box-shadow .25s ease;
}
.whatsapp-float:hover{transform:scale(1.08);box-shadow:0 8px 24px rgba(0,0,0,.3);}
.whatsapp-float svg{width:34px;height:34px;}

/* ---------- Marquee ---------- */
.marquee{overflow:hidden;background:var(--color-leaf-accent);padding:1rem 0;white-space:nowrap;}
.marquee__wrapper{display:flex;width:max-content;}
.marquee__text{font-size:1.1rem;font-weight:600;color:#fff;padding:0 3rem;}

/* ---------- Popups ---------- */
.drawer{position:fixed;top:0;right:0;height:100%;width:min(420px,92vw);background:#fff;z-index:200;
  padding:3rem 2rem;transform:translateX(100%);transition:transform .35s ease;box-shadow:-10px 0 30px rgba(0,0,0,.15);overflow-y:auto;}
.drawer.is-open{transform:translateX(0);}
.close-drawer{position:absolute;top:1.5rem;right:1.5rem;cursor:pointer;font-weight:700;}
.drawer h2{color:var(--color-primary-green);margin-bottom:1rem;}
.drawer p{margin-bottom:1.5rem;opacity:.8;}
.drawer input,.drawer select,.drawer textarea{
  width:100%;padding:.8rem 1rem;margin-bottom:1rem;border:1px solid #ddd;border-radius:8px;font-family:inherit;font-size:16px;
}
.drawer button{
  background:var(--color-primary-green);color:#fff;border:0;padding:.9rem 1.6rem;border-radius:40px;cursor:pointer;font-weight:600;
}
.drawer button:disabled{opacity:.6;cursor:wait;}
.vd-hp{position:absolute !important;left:-9999px !important;width:1px !important;height:1px !important;opacity:0;pointer-events:none;}
.vd-form-note{font-size:.85rem;margin-top:1rem;color:var(--color-primary-green);}
.vd-form-note.is-error{color:var(--color-error);}
.drawer-overlay{position:fixed;inset:0;background:rgba(0,0,0,.4);z-index:150;opacity:0;pointer-events:none;transition:opacity .3s;}
.drawer-overlay.is-open{opacity:1;pointer-events:auto;}

/* ---------- Mobile ----------
   Type system per reference (waterbox mobile CSS): 12–13px body, 20px display,
   40px h1, 15–16px centered about block, 16px side padding, 32/40px vertical,
   hairline dividers between stacked blocks, flat edge-to-edge imagery. */
@media(max-width:820px){
  :root{--header-h:56px;}

  /* hairline dividers between every stacked block */
  .landing-page-block-2,.landing-page-block-3,.landing-page-block-4,.landing-page-block-5,
  #vd-products,.vd-journal,#vd-contact,.vd-prefooter{border-top:1px solid var(--line);}

  /* header : logo cell + hamburger cell, dropdown menu with lined rows */
  .logo-mark{height:26px;}
  .logo-word{font-size:1.05rem;}
  .logo-img{height:28px;}
  .site-logo{padding:0 16px;}
  .header-contact{display:none;}
  .nav-toggle{display:block;margin-left:auto;}
  .main-nav{
    position:fixed;top:var(--header-h);left:0;right:0;
    background:var(--color-surface-white);flex-direction:column;align-items:stretch;
    gap:0;padding:0;border-bottom:1px solid var(--line);
    transform:translateY(-110%);transition:transform .35s ease;z-index:-1;
    box-shadow:0 14px 30px rgba(13,31,26,.1);
  }
  .site-header.nav-open .main-nav{transform:translateY(0);}
  .main-nav a{
    width:100%;padding:1.05rem 16px;font-size:.9rem;
    border-top:1px solid var(--line);
  }
  .main-nav a::after{display:none;}
  .main-nav a:active{background:var(--color-surface-mint);}

  /* hero : h1 40px per reference scale */
  .site-banner-image-media-item-mobile{display:block;}
  .site-banner-image-media-item-desktop{display:none;}
  .hero-tagline{left:16px;right:16px;bottom:9vh;max-width:none;}
  .hero-tagline h1{font-size:40px;line-height:1.1;}
  .hero-tagline p{font-size:13px;line-height:1.5;}

  /* about — static stacked layout, no pin */
  .landing-page-block-1{min-height:0;}
  .landing-page-block-1-wrapper{height:auto;overflow:visible;}
  .landing-page-block-1-title-container{position:static;display:block;}
  .col-left{width:100%;padding:40px 16px 32px;}
  .landing-page-block-1-title{font-size:28px;margin-bottom:1.2rem;}
  .block-content p{max-width:none;font-size:12.5px;line-height:1.5;margin-bottom:.9rem;}
  .landing-page-block-1-image-container{position:static;width:100%;height:auto;border-left:0;border-top:1px solid var(--line);}
  .landing-page-block-1-image-container img{width:100%;height:auto;max-height:64vh;}
  /* centered statement block below the image, reference-style */
  .landing-page-block-1-text{
    position:static;transform:none;width:100%;opacity:1;
    text-align:center;border-top:1px solid var(--line);padding:40px 16px;
  }
  .landing-page-block-1-text p{font-size:15.5px;line-height:1.55;text-shadow:none;text-transform:lowercase;}

  /* content blocks */
  .landing-page-block-2,.landing-page-block-4{min-height:0;}
  .block-2-col-left img,.block-4-col-left img{min-height:0;height:auto;max-height:60vh;}
  .landing-page-block-two-content{padding:40px 16px;}
  .landing-page-block-two-title p{font-size:12.5px;line-height:1.5;margin-bottom:.9rem;}
  .block-4-content{padding:40px 16px 32px;}
  .block-4-title{font-size:20px;line-height:1.4;max-width:none;}

  /* video 1 : shown directly (no scrub) — pointers stacked above, video below */
  .landing-page-block-3{min-height:0;}
  .landing-page-block-3-wrapper{height:auto;overflow:visible;}
  .landing-page-block-3-video{position:static;}
  .landing-page-block-3-video video{width:100%;height:auto;aspect-ratio:864/496;}
  .landing-page-block-3-pointers{position:static;padding:32px 16px 24px;pointer-events:auto;}
  .section-scroll-pointer{position:static !important;max-width:none;margin-bottom:1.1rem;}
  .section-scroll-pointer[data-ref-home-scroll="pointer-2"]{flex-direction:row;text-align:left;}
  .section-scroll-pointer-text{font-size:12px;line-height:1.5;text-shadow:none;}
  .text-scroll-left-line{opacity:1;width:9vw;}

  /* video 2 : texts static above the clip, reference mobile layout */
  .landing-page-block-5{min-height:0;}
  .landing-page-block-5-wrapper{height:auto;overflow:visible;}
  .landing-page-block-5-text{position:static;padding:32px 16px 8px;pointer-events:auto;}
  .landing-page-block-5-water-text,.block-5-text{
    position:static;width:100%;margin-bottom:1.2rem;
    font-size:12.5px;line-height:1.55;text-shadow:none;
  }
  .landing-page-block-5-video{position:relative;inset:auto;}
  .landing-page-block-5-video video{width:100%;height:auto;aspect-ratio:1280/720;}

  /* products : one by one, full-width bordered cells */
  #vd-products{padding:40px 0 0;}
  .product-title{margin-bottom:32px;padding:0 16px;}
  .grid-card{grid-template-columns:1fr;}
  .product-card{border-right:0;border-bottom:1px solid var(--line);}
  .product-card:last-child{border-bottom:0;}
  .product-card-caption{padding:1rem 16px;}
  .product-card__name,.product-card__size{font-size:12.5px;}
  .product-card-image-container{aspect-ratio:1/1.05;}

  /* journal */
  .vd-journal{padding:40px 0 0;}
  .vd-journal-head{padding:0 16px;margin-bottom:24px;flex-wrap:wrap;gap:.6rem;}
  .vd-journal-all{font-size:12.5px;}
  .vd-journal-grid{grid-template-columns:1fr;}
  .vd-journal-card{border-right:0;border-bottom:1px solid var(--line);}
  .vd-journal-card:last-child{border-bottom:0;}
  .vd-journal-card-body{padding:1.2rem 16px 1.5rem;}
  .vd-journal-card-body h3{font-size:16px;}
  .vd-journal-card-body p{font-size:12.5px;}
  .vd-journal-card-tag,.vd-journal-card-more{font-size:11px;}

  /* cta */
  #vd-contact{padding:40px 16px;}
  .link-block .grid{flex-direction:column;align-items:flex-start;gap:1.6rem;}
  .link-block-row h3{font-size:20px;line-height:1.3;}
  .link-block__item{margin:0 .8rem .8rem 0;padding:.85rem 1.7rem;font-size:13px;}

  /* pre-footer */
  .vd-prefooter-copy{padding:32px 16px;}
  .vd-prefooter-copy p{font-size:12.5px;line-height:1.55;}
  .vd-prefooter-line{font-size:15px;}
  .vd-trust{padding:24px 16px;gap:1.2rem .4rem;}
  .vd-trust-item{flex:1 1 40%;min-width:0;}
  .vd-trust-icon{width:30px;height:30px;}
  .vd-trust-icon svg{width:26px;height:26px;}
  .vd-trust-label{font-size:12px;}
  .vd-prefooter-links{flex-direction:column;padding:0;gap:0;}
  .vd-prefooter-links a{width:100%;padding:.95rem 16px;border-top:1px solid var(--line);font-size:13px;opacity:.85;}

  /* blog pages */
  .vd-blog-article{padding:32px 16px 56px;}
  .vd-blog-article h1{font-size:26px;}
  .vd-blog-article h2{font-size:17px;}
  .vd-blog-article p,.vd-blog-article li{font-size:13px;line-height:1.65;}
  .vd-blog-article blockquote{font-size:14px;}

  /* footer : stacked boxes separated by lines */
  .site-footer{padding:0 0 3vh;}
  .footer-row{grid-template-columns:1fr;gap:0;}
  .footer-col{padding:2.2rem 16px;border-bottom:1px solid var(--line-dark);}
  .footer-col:first-child{padding-top:2.6rem;}
  .footer-tagline{font-size:12.5px;}
  .footer-menu li{font-size:13px;}
  .footer-bottom{margin:1.6rem 16px 0;padding-top:0;border-top:0;font-size:11px;}

  /* marquee */
  .marquee__text{font-size:13px;}

  /* whatsapp */
  .whatsapp-float{right:16px;bottom:16px;width:52px;height:52px;}
  .whatsapp-float svg{width:30px;height:30px;}
}

/* very narrow phones : trust badges 2×2 */
@media(max-width:380px){
  .vd-trust-item{flex:1 1 45%;}
}

/* reduced motion : no scroll effects */
@media(prefers-reduced-motion:reduce){
  *,*::before,*::after{animation-duration:.01ms !important;transition-duration:.01ms !important;}
}
