/* ============================================
   KLM GROUP — Shared stylesheet v3
   Palette: near-black / deep forest green / warm neutral / muted brass
   ============================================ */

:root{
  --black:#0C1F14;
  --black-2:#12291A;
  --forest:#16301F;
  --forest-2:#1E4029;
  --forest-3:#2C5638;
  --sage:#6E8B76;
  --brass:#A98B52;
  --brass-light:#C9AE7C;
  --paper:#FBFAF7;
  --paper-2:#F2EFE8;
  --line:#E2DED4;
  --line-dark:rgba(255,255,255,.13);
  --ink:#1D2320;
  --ink-2:#55605A;
  --ink-3:#828C86;
  --white:#FFFFFF;
  --radius:12px;
  --radius-lg:16px;
  --radius-sm:8px;
  --maxw:1180px;
  --ease:cubic-bezier(.22,.61,.36,1);
}

*{ box-sizing:border-box; margin:0; padding:0; }
html{ scroll-behavior:smooth; -webkit-text-size-adjust:100%; }
body{
  font-family:'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
  color:var(--ink); background:var(--paper); line-height:1.65; font-size:16px;
  -webkit-font-smoothing:antialiased; overflow-x:hidden;
}
body.nav-open{ overflow:hidden; }
h1,h2,h3,h4{ font-family:'Lora', Georgia, serif; font-weight:500; line-height:1.25; color:var(--black); }
a{ color:inherit; text-decoration:none; }
img{ max-width:100%; display:block; }
.container{ max-width:var(--maxw); margin:0 auto; padding:0 28px; }
.sr-only{ position:absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0 0 0 0); white-space:nowrap; border:0; }

/* ---------- Utility ---------- */
.eyebrow{ font-size:11px; letter-spacing:2.4px; text-transform:uppercase; color:var(--brass); font-weight:600; margin-bottom:14px; }
.section{ padding:clamp(56px, 7vw, 88px) 0; }
.section-sm{ padding:clamp(40px, 5vw, 60px) 0; }
.section-head{ max-width:640px; margin-bottom:clamp(32px, 4vw, 48px); }
.section-head.center{ margin-left:auto; margin-right:auto; text-align:center; }
.section-head h1,
.section-head h2{ font-size:clamp(25px, 3.4vw, 34px); margin-bottom:14px; }
.section-head p{ color:var(--ink-2); font-size:clamp(15px, 1.6vw, 16px); }
.bg-paper2{ background:var(--paper-2); }
.bg-forest{ background:var(--forest); color:#DDE4DD; }
.bg-forest h2,.bg-forest h3{ color:var(--white); }
.bg-forest .section-head p{ color:#B4C0B5; }
.bg-black{ background:var(--black); color:#CBD8CD; }
.bg-black h2,.bg-black h3,.bg-black h4{ color:var(--white); }
.bg-black .section-head p{ color:#A6B7A9; }

/* ---------- Scroll reveal ---------- */
.js .reveal{ opacity:0; transform:translateY(16px); transition:opacity .6s var(--ease), transform .6s var(--ease); }
.reveal.is-visible, html:not(.js) .reveal{ opacity:1; transform:none; }
.reveal-d1{ transition-delay:.06s; } .reveal-d2{ transition-delay:.12s; }
.reveal-d3{ transition-delay:.18s; } .reveal-d4{ transition-delay:.24s; }

@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior:auto; }
  .reveal{ opacity:1 !important; transform:none !important; transition:none !important; }
  *{ animation-duration:.001ms !important; transition-duration:.001ms !important; }
}

/* ---------- Buttons ---------- */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:8px;
  padding:13px 30px; font-size:13px; font-weight:600; letter-spacing:.6px;
  border:1px solid var(--black); color:var(--black); background:transparent;
  border-radius:var(--radius); cursor:pointer; font-family:inherit;
  text-align:center; min-height:46px; line-height:1.2; white-space:nowrap;
  transition:background .22s var(--ease), color .22s var(--ease), border-color .22s var(--ease), transform .16s var(--ease), box-shadow .22s var(--ease);
}
.btn:hover{ background:var(--black); color:var(--white); }
.btn:active{ transform:translateY(1px); }
.btn-primary{ background:var(--black); color:var(--white); border-color:var(--black); }
.btn-primary:hover{ background:var(--forest); border-color:var(--forest); box-shadow:0 4px 16px rgba(12,31,20,.22); }
.btn-forest{ background:var(--forest); color:var(--white); border-color:var(--forest); }
.btn-forest:hover{ background:var(--forest-3); border-color:var(--forest-3); }
.btn-brass{ background:var(--brass); border-color:var(--brass); color:var(--white); }
.btn-brass:hover{ background:#967843; border-color:#967843; color:var(--white); box-shadow:0 4px 16px rgba(169,139,82,.28); }
.btn-light{ border-color:rgba(255,255,255,.45); color:var(--white); }
.btn-light:hover{ background:var(--white); color:var(--black); }
.btn-sm{ padding:9px 18px; font-size:12px; min-height:40px; }
.btn-block{ width:100%; }
.btn svg{ width:16px; height:16px; flex-shrink:0; }

/* ---------- Top bar (black) ---------- */
.topbar{ background:var(--black); color:#9DAF9F; font-size:12.5px; padding:9px 0; letter-spacing:.3px; }
.topbar .container{ display:flex; justify-content:space-between; align-items:center; gap:20px; }
.topbar a{ transition:color .18s var(--ease); }
.topbar a:hover{ color:var(--brass-light); }
.topbar .tb-right{ display:flex; gap:22px; }

/* ---------- Header ---------- */
header.site{
  background:var(--white); border-bottom:1px solid var(--line);
  position:sticky; top:0; z-index:400;
  transition:box-shadow .25s var(--ease);
}
header.site.scrolled{ box-shadow:0 1px 12px rgba(12,31,20,.1); }
header.site .container{ display:flex; align-items:center; justify-content:space-between; height:76px; transition:height .25s var(--ease); }
header.site.scrolled .container{ height:64px; }
.logo{ display:flex; flex-direction:column; line-height:1.05; }
.logo .mark{ font-family:'Lora', serif; font-size:23px; letter-spacing:1px; color:var(--black); font-weight:600; }
.logo .sub{ font-size:9.5px; letter-spacing:2.6px; text-transform:uppercase; color:var(--ink-3); margin-top:3px; }

nav.main ul{ list-style:none; display:flex; gap:28px; align-items:center; }
nav.main ul > li > a:not(.btn){
  font-size:13.5px; font-weight:500; color:var(--ink-2); letter-spacing:.3px;
  padding-bottom:3px; position:relative; transition:color .18s var(--ease);
}
nav.main ul > li > a:not(.btn)::after{
  content:""; position:absolute; left:0; right:0; bottom:0; height:2px;
  background:var(--brass); transform:scaleX(0); transform-origin:left; transition:transform .26s var(--ease);
}
nav.main ul > li > a:not(.btn):hover::after, nav.main ul > li > a.active:not(.btn)::after{ transform:scaleX(1); }
nav.main ul > li > a:not(.btn):hover, nav.main ul > li > a.active:not(.btn){ color:var(--black); }
.nav-cta{ display:inline-flex; }

.nav-toggle{
  display:none; background:none; border:1px solid var(--line); border-radius:var(--radius);
  width:44px; height:44px; color:var(--black); cursor:pointer; align-items:center; justify-content:center; padding:0;
}
.nav-toggle span{ display:block; width:19px; height:1.5px; background:var(--black); position:relative; }
.nav-toggle span::before, .nav-toggle span::after{
  content:""; position:absolute; left:0; width:19px; height:1.5px; background:var(--black); transition:top .2s var(--ease);
}
.nav-toggle span::before{ top:-6px; } .nav-toggle span::after{ top:6px; }

.drawer-head{
  display:none; align-items:center; justify-content:space-between;
  padding:18px 22px; border-bottom:1px solid var(--line); background:var(--black);
}
.drawer-head .dh-title{ font-family:'Lora',serif; font-size:17px; color:var(--white); letter-spacing:1px; }
.drawer-close{
  background:none; border:1px solid rgba(255,255,255,.28); border-radius:var(--radius);
  width:40px; height:40px; display:flex; align-items:center; justify-content:center;
  cursor:pointer; padding:0; transition:background .2s var(--ease), border-color .2s var(--ease);
}
.drawer-close:hover{ background:rgba(255,255,255,.1); border-color:rgba(255,255,255,.5); }
.drawer-close svg{ width:17px; height:17px; stroke:var(--white); }

.nav-overlay{
  position:fixed; inset:0; background:rgba(12,16,13,.55); opacity:0; visibility:hidden;
  transition:opacity .28s var(--ease), visibility .28s; z-index:390;
}
body.nav-open .nav-overlay{ opacity:1; visibility:visible; }

.drawer-contact{ display:none; padding:20px 22px 8px; border-top:1px solid var(--line); margin-top:8px; }
.drawer-contact .dc-label{ font-size:10.5px; letter-spacing:2px; text-transform:uppercase; color:var(--ink-3); font-weight:600; margin-bottom:12px; }
.drawer-contact a{
  display:flex; align-items:center; gap:11px; padding:12px 0; font-size:14.5px; color:var(--ink); font-weight:500;
}
.drawer-contact a svg{ width:19px; height:19px; flex-shrink:0; }
.drawer-contact a.dc-wa svg{ fill:#25D366; }
.drawer-contact a.dc-mail svg{ stroke:var(--forest); fill:none; }
.drawer-contact .dc-sub{ display:block; font-size:12px; color:var(--ink-3); font-weight:400; }

/* ---------- Hero ---------- */
.hero{ background:var(--black); color:var(--white); position:relative; overflow:hidden; }
.hero::before{
  content:""; position:absolute; inset:0;
  background:linear-gradient(118deg, var(--black) 0%, var(--forest) 55%, var(--forest-2) 100%);
  background-size:180% 180%;
}
.hero::after{
  content:""; position:absolute; right:-160px; top:-160px; width:520px; height:520px;
  border-radius:50%; background:rgba(169,139,82,.08); pointer-events:none;
}
.hero .container{ position:relative; z-index:2; }
.hero-inner{ display:grid; grid-template-columns:1.05fr .95fr; gap:clamp(28px, 4vw, 56px); align-items:center; padding:clamp(48px, 6vw, 84px) 0; }
.hero-inner.hero-solo{ grid-template-columns:1fr; max-width:820px; padding:clamp(64px, 8vw, 112px) 0; }
.hero-inner.hero-solo ul.hero-points{ columns:2; column-gap:34px; }
@media (max-width:700px){ .hero-inner.hero-solo ul.hero-points{ columns:1; } }
.hero h1{ color:var(--white); font-size:clamp(29px, 4.6vw, 46px); margin-bottom:20px; }
.hero p.lead{ color:#C2CEC4; font-size:clamp(15.5px, 1.8vw, 17px); margin-bottom:14px; }
.hero ul.hero-points{ list-style:none; margin:26px 0 32px; }
.hero ul.hero-points li{ font-size:14.5px; color:#CBD6CC; padding:7px 0 7px 26px; position:relative; }
.hero ul.hero-points li::before{ content:""; position:absolute; left:0; top:15px; width:11px; height:2px; background:var(--brass); }
.hero-actions{ display:flex; gap:14px; flex-wrap:wrap; }

/* ---------- Media / placeholders ---------- */
.ph{
  border-radius:var(--radius-lg);
  background:repeating-linear-gradient(45deg, rgba(110,139,118,.09) 0 12px, rgba(110,139,118,.16) 12px 24px);
  border:1px solid var(--line); display:flex; align-items:center; justify-content:center;
  color:var(--ink-3); font-size:11.5px; letter-spacing:1.6px; text-transform:uppercase;
  text-align:center; padding:14px; min-height:120px;
}
.ph-dark{ background:repeating-linear-gradient(45deg, rgba(255,255,255,.05) 0 12px, rgba(255,255,255,.1) 12px 24px); border-color:rgba(255,255,255,.18); color:#9EB0A2; }
.media{ position:relative; overflow:hidden; background:var(--paper-2); border-radius:var(--radius-lg); }
.media img{ width:100%; height:100%; object-fit:cover; }
.hero-inner .media.hero-photo{ aspect-ratio:4/5; box-shadow:0 24px 60px -20px rgba(0,0,0,.55); }
@media (max-width:980px){ .hero-inner .media.hero-photo{ aspect-ratio:16/10; } }

/* ---------- Trust bar ---------- */
.trustbar{ background:var(--paper-2); border-bottom:1px solid var(--line); }
.trustbar .grid{ display:grid; grid-template-columns:repeat(4,1fr); }
.trust-item{ padding:34px 20px; text-align:center; border-right:1px solid var(--line); }
.trust-item:last-child{ border-right:none; }
.trust-item .num{ font-family:'Lora', serif; font-size:clamp(21px, 2.6vw, 27px); color:var(--black); }
.trust-item .label{ font-size:11.5px; letter-spacing:1.4px; text-transform:uppercase; color:var(--ink-3); margin-top:5px; }

/* ---------- Cards / grids ---------- */
.grid-2{ display:grid; grid-template-columns:repeat(2,1fr); gap:32px; }
.grid-3{ display:grid; grid-template-columns:repeat(3,1fr); gap:26px; }
.grid-4{ display:grid; grid-template-columns:repeat(4,1fr); gap:24px; }

.card{
  background:var(--white); border:1px solid var(--line); border-radius:var(--radius-lg); overflow:hidden;
  transition:border-color .24s var(--ease), transform .24s var(--ease), box-shadow .24s var(--ease);
}
.card:hover{ border-color:var(--black); transform:translateY(-3px); box-shadow:0 6px 22px rgba(12,31,20,.09); }
.card .ph, .card .media{ border-bottom:1px solid var(--line); aspect-ratio:4/3; }
.card .ph{ border-left:none; border-right:none; border-top:none; }
.card-body{ padding:22px; }
.card-body h3{ font-size:19px; margin-bottom:7px; }
.card-body p{ font-size:14px; color:var(--ink-2); }
.card-link{ display:inline-block; margin-top:14px; font-size:12.5px; font-weight:600; color:var(--brass); letter-spacing:.4px; transition:color .18s var(--ease); }
.card-link span{ display:inline-block; transition:transform .22s var(--ease); }
.card:hover .card-link span{ transform:translateX(4px); }
.card-link:hover{ color:var(--black); }

/* ---------- Badges ---------- */
.badges{ display:flex; flex-wrap:wrap; align-content:flex-start; gap:6px; margin-top:12px; }
.pc-body .badges{ margin-top:0; margin-bottom:4px; min-height:56px; }
.badge{
  display:inline-flex; align-items:center; min-height:24px;
  font-size:10.5px; letter-spacing:.6px; text-transform:uppercase; font-weight:600; line-height:1.1;
  padding:4px 9px; border-radius:var(--radius-sm); background:var(--paper-2); color:var(--ink-2); border:1px solid var(--line);
}
.badge-uv{ background:#EEF3EC; color:#3B5D3F; border-color:#CFE0CE; }
.badge-fire{ background:#F7EFE6; color:#8A5A26; border-color:#EBD9C3; }
.badge-dark{ background:var(--black); color:var(--white); border-color:var(--black); }
.badge-tbd{ background:#F3F2EF; color:var(--ink-3); }

/* ---------- Feature rows ---------- */
.feature-row{ display:grid; grid-template-columns:1fr 1fr; gap:clamp(28px, 4vw, 56px); align-items:center; }
.feature-row + .feature-row{ margin-top:clamp(48px, 6vw, 76px); }
.feature-row.reverse .fr-media{ order:2; }
.feature-row h3{ font-size:clamp(22px, 2.7vw, 27px); margin-bottom:14px; }
.feature-row p{ color:var(--ink-2); margin-bottom:16px; font-size:15px; }
/* square, and never cropped: product shots are on white, so contain blends in */
.fr-media .ph, .fr-media .media{ aspect-ratio:1/1; max-width:520px; margin-inline:auto; }
.fr-media .media{ background:#fff; }
.fr-media .media img{ object-fit:contain; padding:8px; }

/* ---------- Spec list ---------- */
.spec-list{ list-style:none; }
.spec-list li{ display:flex; justify-content:space-between; gap:20px; padding:11px 0; border-bottom:1px solid var(--line); font-size:14px; }
.spec-list li span:first-child{ color:var(--ink-2); }
.spec-list li span:last-child{ font-weight:600; text-align:right; }

/* ---------- Steps ---------- */
.steps{ display:grid; grid-template-columns:repeat(4,1fr); gap:26px; counter-reset:step; }
.step{ position:relative; padding-top:34px; }
.step::before{
  counter-increment:step; content:"0" counter(step); position:absolute; top:0; left:0;
  font-family:'Lora', serif; font-size:15px; color:var(--brass); letter-spacing:1px;
}
.step h4{ font-size:17px; margin-bottom:7px; }
.step p{ font-size:13.5px; color:var(--ink-2); }
.bg-forest .step p, .bg-black .step p{ color:#AEBCB0; }
.bg-forest .step h4, .bg-black .step h4{ color:var(--white); }

/* ---------- Tables ---------- */
.table-scroll{ overflow-x:auto; -webkit-overflow-scrolling:touch; border:1px solid var(--line); border-radius:var(--radius-lg); }
table.data{ width:100%; border-collapse:collapse; font-size:14px; background:var(--white); min-width:520px; }
table.data th{
  background:var(--black); color:var(--white); font-weight:600; text-align:left;
  padding:13px 16px; font-size:12px; letter-spacing:1px; text-transform:uppercase;
}
table.data td{ padding:13px 16px; border-bottom:1px solid var(--line); color:var(--ink-2); }
table.data tr:last-child td{ border-bottom:none; }
table.data td strong{ color:var(--ink); }

/* ---------- Filters ---------- */
.filters{ display:flex; flex-wrap:wrap; gap:9px; margin-bottom:22px; }
.filter-btn{
  padding:10px 18px; font-size:13px; font-weight:500; border:1px solid var(--line);
  background:var(--white); color:var(--ink-2); border-radius:var(--radius); cursor:pointer;
  font-family:inherit; transition:.2s var(--ease); min-height:42px;
}
.filter-btn:hover{ border-color:var(--black); color:var(--black); }
.filter-btn.active{ background:var(--black); border-color:var(--black); color:var(--white); }

/* ---------- Product card ---------- */
.product-card{
  background:var(--white); border:1px solid var(--line); border-radius:var(--radius-lg); overflow:hidden;
  display:flex; flex-direction:column;
  transition:border-color .24s var(--ease), box-shadow .24s var(--ease), transform .24s var(--ease), opacity .3s var(--ease);
}
.product-card:hover{ border-color:var(--black); box-shadow:0 6px 20px rgba(12,31,20,.1); transform:translateY(-3px); }
.product-card.filtering-out{ opacity:0; transform:scale(.97); }
.product-card .ph, .product-card .media{ border-bottom:1px solid var(--line); aspect-ratio:1/1; }
.product-card .ph{ border-left:none; border-right:none; border-top:none; }
.product-card .media img{ transition:transform .5s var(--ease); }
.product-card:hover .media img{ transform:scale(1.045); }
.pc-body{ padding:18px; flex:1; display:flex; flex-direction:column; }
.pc-sku{ font-size:11px; letter-spacing:1.2px; color:var(--ink-3); font-weight:600; margin-bottom:6px; }
.pc-body h3{ font-size:16.5px; margin-bottom:6px; line-height:1.35; }
.pc-meta{ font-size:13px; color:var(--ink-2); margin-bottom:12px; white-space:pre-line; min-height:40px; }
.pc-foot{ margin-top:auto; padding-top:14px; border-top:1px solid var(--line); display:flex; gap:9px; }
.pc-foot .btn{ flex:1; }

/* ---------- Product detail ---------- */
.pd-wrap{ display:grid; grid-template-columns:1.05fr .95fr; gap:clamp(28px,4vw,56px); align-items:start; }
.pd-gallery{ position:sticky; top:100px; }
.pd-main{ border:1px solid var(--line); background:var(--white); aspect-ratio:1/1; overflow:hidden; border-radius:var(--radius-lg); }
.pd-main .ph{ height:100%; border:none; }
.pd-main img{ width:100%; height:100%; object-fit:cover; }
.pd-thumbs{ display:grid; grid-template-columns:repeat(5,1fr); gap:8px; margin-top:8px; }
.pd-thumb{
  border:1px solid var(--line); background:var(--white); aspect-ratio:1/1; overflow:hidden;
  cursor:pointer; padding:0; transition:border-color .2s var(--ease); border-radius:var(--radius);
}
.pd-thumb.active{ border-color:var(--black); border-width:2px; }
.pd-thumb:hover{ border-color:var(--sage); }
.pd-thumb img{ width:100%; height:100%; object-fit:cover; }
.pd-thumb .ph{ height:100%; border:none; font-size:9px; letter-spacing:.6px; }

.pd-info h1{ font-size:clamp(25px,3.2vw,33px); margin-bottom:10px; }
.pd-sku{ font-size:12px; letter-spacing:1.4px; text-transform:uppercase; color:var(--ink-3); font-weight:600; margin-bottom:14px; }
.pd-lede{ font-size:15.5px; color:var(--ink-2); margin-bottom:22px; }
.pd-price-box{ background:var(--paper-2); border:1px solid var(--line); border-radius:var(--radius-lg); padding:20px 22px; margin-bottom:24px; }
.pd-price-box .pp-label{ font-size:10.5px; letter-spacing:1.8px; text-transform:uppercase; color:var(--ink-3); font-weight:600; }
.pd-price-box .pp-value{ font-family:'Lora',serif; font-size:23px; color:var(--black); margin:4px 0 2px; }
.pd-price-box .pp-note{ font-size:13px; color:var(--ink-2); }
.pd-actions{ display:flex; gap:11px; flex-wrap:wrap; margin-bottom:26px; }
.pd-actions .btn{ flex:1 1 180px; }
.pd-quickspecs{ margin-bottom:26px; }
.pd-trust{ display:flex; flex-wrap:wrap; gap:18px; padding-top:20px; border-top:1px solid var(--line); }
.pd-trust div{ font-size:12.5px; color:var(--ink-2); display:flex; align-items:center; gap:7px; }
.pd-trust svg{ width:15px; height:15px; stroke:var(--brass); fill:none; flex-shrink:0; }

.pd-tabs{ border-bottom:1px solid var(--line); display:flex; gap:4px; margin-bottom:30px; overflow-x:auto; }
.pd-tab{
  background:none; border:none; border-bottom:2px solid transparent; font-family:inherit;
  padding:14px 20px; font-size:14px; font-weight:500; color:var(--ink-2); cursor:pointer;
  white-space:nowrap; transition:color .2s var(--ease), border-color .2s var(--ease);
}
.pd-tab:hover{ color:var(--black); }
.pd-tab.active{ color:var(--black); border-bottom-color:var(--brass); }
.pd-panel{ display:block; }
.js .pd-panel{ display:none; }
.js .pd-panel.active{ display:block; }
.pd-panel p{ color:var(--ink-2); margin-bottom:14px; max-width:820px; }
.pd-panel ul{ margin:0 0 16px 20px; color:var(--ink-2); }
.pd-panel li{ margin-bottom:7px; }

/* ---------- Accordion ---------- */
.accordion{ border-top:1px solid var(--line); }
.acc-item{ border-bottom:1px solid var(--line); }
.acc-trigger{
  width:100%; background:none; border:none; font-family:inherit; cursor:pointer;
  display:flex; justify-content:space-between; align-items:center; gap:20px;
  padding:20px 0; text-align:left; font-size:16px; font-weight:500; color:var(--black);
  transition:color .18s var(--ease); min-height:56px;
}
.acc-trigger:hover{ color:var(--brass); }
.acc-icon{ position:relative; width:14px; height:14px; flex-shrink:0; }
.acc-icon::before, .acc-icon::after{ content:""; position:absolute; background:var(--brass); transition:transform .28s var(--ease); }
.acc-icon::before{ top:6px; left:0; width:14px; height:1.5px; }
.acc-icon::after{ left:6px; top:0; width:1.5px; height:14px; }
.acc-item.open .acc-icon::after{ transform:rotate(90deg); }
.acc-panel{ max-height:none; overflow:hidden; }
.js .acc-panel{ max-height:0; transition:max-height .35s var(--ease); }
.acc-panel-inner{ padding:0 0 20px; font-size:14.5px; color:var(--ink-2); max-width:760px; }

/* ---------- Forms ---------- */
.form-wrap{
  position:relative; background:var(--white); border:1px solid var(--line);
  border-radius:var(--radius-lg); padding:clamp(24px, 3vw, 40px);
  box-shadow:0 10px 40px rgba(12,31,20,.10);
}
.form-wrap::before{
  content:""; position:absolute; left:0; right:0; top:0; height:4px;
  background:linear-gradient(90deg, var(--brass), var(--forest-3));
  border-radius:var(--radius-lg) var(--radius-lg) 0 0;
}
@media (max-width:640px){
  .form-wrap{ padding:22px 18px; box-shadow:0 6px 24px rgba(12,31,20,.10); }
}
.form-grid{ display:grid; grid-template-columns:1fr 1fr; gap:22px; }
.field{ display:flex; flex-direction:column; }
.field.full{ grid-column:1/-1; }
.field label{ font-size:12.5px; font-weight:600; color:var(--ink); margin-bottom:7px; letter-spacing:.2px; }
.field label .req{ color:var(--brass); }
.field input, .field select, .field textarea{
  border:1px solid var(--line); border-radius:var(--radius); padding:12px 13px;
  font-family:inherit; font-size:16px; color:var(--ink); background:var(--white);
  transition:border-color .18s var(--ease), box-shadow .18s var(--ease); min-height:46px;
}
.field input:focus, .field select:focus, .field textarea:focus{ outline:none; border-color:var(--black); box-shadow:0 0 0 3px rgba(12,31,20,.08); }
.field textarea{ resize:vertical; min-height:110px; }
.field .hint{ font-size:12px; color:var(--ink-3); margin-top:5px; }
.checkbox-row{ display:flex; gap:11px; align-items:flex-start; font-size:13.5px; color:var(--ink-2); }
.checkbox-row input{ margin-top:4px; width:18px; height:18px; min-height:0; flex-shrink:0; }
fieldset{ border:none; margin-bottom:32px; }
fieldset legend{
  font-size:11.5px; letter-spacing:2px; text-transform:uppercase; color:var(--brass);
  font-weight:600; margin-bottom:18px; padding-bottom:10px; border-bottom:1px solid var(--line); width:100%;
}
.hp-field{ position:absolute; left:-9999px; opacity:0; height:0; overflow:hidden; }
.form-status{ display:none; padding:16px 18px; border-radius:var(--radius); font-size:14.5px; margin-bottom:20px; }
.form-status.ok{ display:block; background:#EEF3EC; border:1px solid #CFE0CE; color:#2F5136; }
.form-status.err{ display:block; background:#FAEDE9; border:1px solid #EBCDC3; color:#8A3C22; }

/* ---------- Page banner (black) ---------- */
.page-banner{ background:var(--black); color:var(--white); padding:clamp(40px, 5vw, 60px) 0; position:relative; overflow:hidden; }
.page-banner::after{ content:""; position:absolute; left:0; right:0; bottom:0; height:3px; background:linear-gradient(90deg, var(--brass), var(--forest-3) 55%, transparent); }
.page-banner h1{ color:var(--white); font-size:clamp(27px, 4vw, 40px); margin-bottom:12px; }
.page-banner p{ color:#AFC0B2; max-width:640px; font-size:clamp(15px, 1.7vw, 16px); }
.breadcrumb{ font-size:12px; color:#8CA093; margin-bottom:16px; letter-spacing:.4px; }
.breadcrumb a:hover{ color:var(--brass-light); }

/* ---------- CTA band ---------- */
.cta-band{ background:var(--black); color:var(--white); padding:clamp(44px, 5vw, 64px) 0; text-align:center; }
.cta-band h2{ color:var(--white); font-size:clamp(24px, 3.1vw, 31px); margin-bottom:12px; }
.cta-band p{ color:#AAB9AC; max-width:560px; margin:0 auto 26px; }
.cta-actions{ display:flex; gap:14px; justify-content:center; flex-wrap:wrap; }

/* ---------- Footer ---------- */
footer.site{ background:var(--forest); color:#9DAF9F; padding:clamp(40px, 5vw, 60px) 0 0; font-size:14px; }
footer.site .fgrid{ display:grid; grid-template-columns:1.5fr 1fr 1fr 1.3fr; gap:44px; padding-bottom:44px; }
footer.site h4{ color:var(--white); font-size:13px; letter-spacing:1.6px; text-transform:uppercase; margin-bottom:16px; font-family:'Inter',sans-serif; font-weight:600; }
footer.site ul{ list-style:none; }
footer.site li{ margin-bottom:9px; }
footer.site a{ transition:color .18s var(--ease); }
footer.site a:hover{ color:var(--brass-light); }
footer.site .flogo .mark{ font-family:'Lora',serif; font-size:22px; color:var(--white); letter-spacing:1px; }
footer.site .flogo .sub{ font-size:9.5px; letter-spacing:2.4px; text-transform:uppercase; color:var(--sage); margin-top:4px; }
footer.site .fabout{ margin-top:16px; font-size:13.5px; line-height:1.7; }
.fbottom{
  background:var(--black); color:#7F9184; padding:18px 0; font-size:12.5px;
  margin-top:0;
}
.fbottom .container{ display:flex; justify-content:space-between; gap:18px; flex-wrap:wrap; }

/* ---------- Floating bubbles (desktop) ---------- */
.contact-bubbles{ position:fixed; right:20px; bottom:20px; z-index:350; display:flex; flex-direction:column; gap:11px; }
.bubble{
  width:52px; height:52px; border-radius:50%; display:flex; align-items:center; justify-content:center;
  box-shadow:0 3px 14px rgba(0,0,0,.22); position:relative;
  transition:transform .2s var(--ease), box-shadow .2s var(--ease);
}
.bubble:hover{ transform:translateY(-3px); box-shadow:0 6px 20px rgba(0,0,0,.28); }
.bubble svg{ width:24px; height:24px; }
.bubble-wa{ background:#25D366; }
.bubble-mail{ background:var(--black); }
.bubble .tip{
  position:absolute; right:62px; top:50%; transform:translateY(-50%) translateX(6px);
  background:var(--black); color:var(--white); font-size:12px; padding:6px 11px; border-radius:3px;
  white-space:nowrap; opacity:0; pointer-events:none;
  transition:opacity .2s var(--ease), transform .2s var(--ease);
}
.bubble:hover .tip{ opacity:1; transform:translateY(-50%) translateX(0); }

/* ---------- Mobile action bar ---------- */
.mobile-bar{
  display:none; position:fixed; left:12px; right:12px; z-index:360;
  bottom:calc(12px + env(safe-area-inset-bottom));
  padding:8px;
  border-radius:22px;
  background:rgba(251,250,247,.34);
  border:1px solid rgba(255,255,255,.42);
  box-shadow:0 10px 36px rgba(12,31,20,.20), inset 0 1px 0 rgba(255,255,255,.55);
  -webkit-backdrop-filter:blur(26px) saturate(190%);
  backdrop-filter:blur(26px) saturate(190%);
  overflow:hidden;
}
/* specular sheen across the top edge */
.mobile-bar::before{
  content:""; position:absolute; left:0; right:0; top:0; height:52%;
  background:linear-gradient(to bottom, rgba(255,255,255,.55), rgba(255,255,255,0));
  pointer-events:none;
}
.mobile-bar .mb-inner{ position:relative; display:grid; grid-template-columns:1fr 1fr 1.35fr; gap:7px; }
.mobile-bar a{
  display:flex; align-items:center; justify-content:center; gap:7px; min-height:46px;
  border-radius:16px; font-size:13px; font-weight:600; letter-spacing:.3px;
  color:var(--ink); background:rgba(255,255,255,.34);
  border:1px solid rgba(255,255,255,.46);
  box-shadow:inset 0 1px 0 rgba(255,255,255,.5);
  -webkit-backdrop-filter:blur(8px); backdrop-filter:blur(8px);
  transition:transform .16s var(--ease), background .2s var(--ease);
}
.mobile-bar a svg{ width:17px; height:17px; }
.mobile-bar a.mb-wa{ color:#0B6E39; background:rgba(190,242,213,.42); border-color:rgba(255,255,255,.5); }
.mobile-bar a.mb-mail{ color:var(--forest); }
.mobile-bar a.mb-quote{
  color:#FFFFFF; background:var(--forest-3); border-color:rgba(255,255,255,.28);
  box-shadow:inset 0 1px 0 rgba(255,255,255,.22), 0 2px 10px rgba(44,86,56,.34);
  -webkit-backdrop-filter:none; backdrop-filter:none;
}
.mobile-bar a:active{ transform:scale(.97); }

/* frosted glass needs a fallback where backdrop-filter is unsupported */
@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))){
  .mobile-bar{ background:rgba(251,250,247,.97); }
  .mobile-bar a{ background:var(--white); border-color:var(--line); }
  .mobile-bar a.mb-quote{ background:var(--black); }
}

/* ---------- Responsive ---------- */
/* ---------- Category banner (home, full bleed) ----------
   Caption sits under the photo, not on top of it, so nothing is cropped and the
   panel uses the same light card language as the rest of the site. */
.full-bleed{ width:100vw; margin-left:calc(50% - 50vw); }
.section-flush{ padding-bottom:0; }

.cat-banner{
  display:grid; grid-template-columns:repeat(4,1fr); gap:1px;
  background:var(--line);
  border-top:1px solid var(--line); border-bottom:1px solid var(--line);
}
.cat-panel{ position:relative; display:flex; flex-direction:column; background:var(--white); overflow:hidden; }
.cp-media{ position:relative; aspect-ratio:4/3; overflow:hidden; background:var(--paper-2); }
.cp-media .media, .cp-media .ph{ width:100%; height:100%; border:none; border-radius:0; }
.cp-media img{ width:100%; height:100%; object-fit:cover; transition:transform .9s var(--ease); }
.cat-panel:hover .cp-media img{ transform:scale(1.04); }

.cp-body{
  height:78px; flex-shrink:0;
  display:flex; align-items:center; justify-content:space-between; gap:14px;
  padding:0 20px; background:var(--white);
  transition:background .28s var(--ease);
}
.cat-panel:hover .cp-body{ background:var(--paper-2); }
.cp-text{ min-width:0; }
.cp-body h3{
  color:var(--black); font-size:clamp(15.5px, 1.45vw, 18px); line-height:1.2; margin:0 0 3px;
  font-weight:500; white-space:nowrap; overflow:hidden; text-overflow:ellipsis;
}
.cp-count{ display:block; font-size:10px; letter-spacing:1.6px; text-transform:uppercase; font-weight:600; color:var(--brass); }
.cp-go{
  flex-shrink:0; width:34px; height:34px; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  border:1px solid var(--line); color:var(--forest); font-size:15px; background:var(--white);
  transition:background .26s var(--ease), border-color .26s var(--ease), color .26s var(--ease), transform .26s var(--ease);
}
.cat-panel:hover .cp-go{ background:var(--forest); border-color:var(--forest); color:var(--white); transform:translateX(3px); }

@media (max-width:900px){
  .cat-banner{ grid-template-columns:repeat(2,1fr); }
  .cp-body{ height:72px; padding:0 16px; }
}
@media (max-width:560px){
  .cat-banner{ grid-template-columns:repeat(2,1fr); }
  .cp-media{ aspect-ratio:1/1; }
  .cp-body{ height:64px; padding:0 12px; gap:8px; }
  .cp-body h3{ font-size:13.5px; }
  .cp-count{ font-size:9px; letter-spacing:1.2px; }
  .cp-go{ width:28px; height:28px; font-size:13px; }
}

@media (max-width:1024px){ .grid-4{ grid-template-columns:repeat(3,1fr); } }

@media (max-width:980px){
  .hero-inner{ grid-template-columns:1fr; }
  .grid-4, .grid-3{ grid-template-columns:repeat(2,1fr); }
  .steps{ grid-template-columns:repeat(2,1fr); gap:22px; }
  .trustbar .grid{ grid-template-columns:repeat(2,1fr); }
  .trust-item:nth-child(2){ border-right:none; }
  .trust-item:nth-child(1),.trust-item:nth-child(2){ border-bottom:1px solid var(--line); }
  .feature-row{ grid-template-columns:1fr; }
  .feature-row.reverse .fr-media{ order:unset; }
  .pd-wrap{ grid-template-columns:1fr; }
  .pd-gallery{ position:static; }
  footer.site .fgrid{ grid-template-columns:1fr 1fr; gap:32px; }

  .nav-toggle{ display:flex; }
  nav.main ul{
    position:fixed; top:0; right:0; bottom:0; width:min(330px, 86vw);
    background:var(--white); flex-direction:column; align-items:stretch; gap:0;
    padding:0 0 28px; z-index:395; transform:translateX(100%);
    transition:transform .32s var(--ease); box-shadow:-6px 0 26px rgba(12,31,20,.16); overflow-y:auto;
  }
  nav.main ul.open{ transform:translateX(0); }
  .drawer-head{ display:flex; }
  .drawer-contact{ display:block; }
  nav.main li{ border-bottom:1px solid var(--line); }
  nav.main li.nav-cta-li{ border-bottom:none; padding:18px 22px 6px; }
  nav.main ul > li > a:not(.btn){ display:block; padding:16px 22px; font-size:15px; color:var(--ink); }
  nav.main ul > li > a:not(.btn)::after{ display:none; }
  nav.main ul > li > a.active:not(.btn){ color:var(--black); border-left:3px solid var(--brass); padding-left:19px; }
  nav.main li .btn{ display:flex; width:100%; }

  .contact-bubbles{ display:none; }
  .mobile-bar{ display:block; }
  body{ padding-bottom:88px; }
  .topbar{ display:none; }
}

@media (max-width:640px){
  .container{ padding:0 18px; }
  .grid-2, .form-grid, .grid-3{ grid-template-columns:1fr; }
  .grid-4{ grid-template-columns:repeat(2,1fr); gap:12px; }
  /* two product cards per row stay legible only with tighter internals */
  .pc-body{ padding:12px; }
  .pc-sku{ font-size:9.5px; letter-spacing:.8px; margin-bottom:4px; }
  .pc-body h3{ font-size:13.5px; line-height:1.3; }
  .pc-meta{ font-size:11.5px; min-height:34px; margin-bottom:8px; }
  .pc-body .badges{ min-height:46px; gap:4px; }
  .badge{ font-size:9px; padding:3px 6px; min-height:20px; letter-spacing:.3px; }
  .pc-foot{ padding-top:10px; gap:6px; }
  .pc-foot .btn{ padding:8px 8px; font-size:11px; min-height:38px; }
  .steps{ grid-template-columns:1fr; }
  .trustbar .grid{ grid-template-columns:repeat(2,1fr); }
  .trust-item{ padding:22px 12px; }
  .hero-actions .btn, .cta-actions .btn, .pd-actions .btn{ width:100%; flex:1 1 100%; }
  .filters{ gap:7px; }
  .filter-btn{ flex:1 1 calc(50% - 4px); }
  .pc-foot{ flex-direction:column; }
  .pd-thumbs{ grid-template-columns:repeat(4,1fr); }
  .fbottom .container{ flex-direction:column; text-align:center; gap:8px; }
  footer.site .fgrid{ grid-template-columns:1fr; gap:28px; }
}

@media (max-width:420px){
  .mobile-bar a span.lbl{ display:none; }
  .mobile-bar .mb-inner{ grid-template-columns:1fr 1fr 2fr; }
}

/* ============================================
   Motion layer — entrance, ambience, feedback
   ============================================ */

/* Scroll progress line */
.scroll-progress{
  position:fixed; top:0; left:0; height:2px; width:0%;
  background:linear-gradient(90deg, var(--forest-3), var(--brass));
  z-index:450; transition:width .12s linear; pointer-events:none;
}

/* Hero: slow ambient gradient drift */
.hero::before{ animation:heroDrift 22s var(--ease) infinite alternate; }
@keyframes heroDrift{
  0%{ background-position:0% 50%; }
  100%{ background-position:100% 50%; }
}
.hero::after{ animation:orbFloat 14s ease-in-out infinite alternate; }
@keyframes orbFloat{
  0%{ transform:translate(0,0) scale(1); }
  100%{ transform:translate(-26px,30px) scale(1.08); }
}

/* Hero content: staggered entrance on load */
.js .hero-inner > div > *{ opacity:0; animation:heroIn .8s var(--ease) forwards; }
.hero-inner > div > *:nth-child(1){ animation-delay:.05s; }
.hero-inner > div > *:nth-child(2){ animation-delay:.14s; }
.hero-inner > div > *:nth-child(3){ animation-delay:.22s; }
.hero-inner > div > *:nth-child(4){ animation-delay:.30s; }
.hero-inner > div > *:nth-child(5){ animation-delay:.38s; }
@keyframes heroIn{
  from{ opacity:0; transform:translateY(18px); }
  to{ opacity:1; transform:none; }
}

/* Hero bullet marks draw in */
.js .hero ul.hero-points li::before{ transform-origin:left; animation:markIn .5s var(--ease) both; }
.hero ul.hero-points li:nth-child(1)::before{ animation-delay:.44s; }
.hero ul.hero-points li:nth-child(2)::before{ animation-delay:.52s; }
.hero ul.hero-points li:nth-child(3)::before{ animation-delay:.60s; }
.hero ul.hero-points li:nth-child(4)::before{ animation-delay:.68s; }
@keyframes markIn{ from{ transform:scaleX(0); } to{ transform:scaleX(1); } }

/* Buttons: brass sheen sweep on hover */
.btn{ position:relative; overflow:hidden; }
.btn::before{
  content:""; position:absolute; top:0; left:-120%; width:60%; height:100%;
  background:linear-gradient(100deg, transparent, rgba(255,255,255,.22), transparent);
  transform:skewX(-18deg); transition:none; pointer-events:none;
}
.btn:hover::before{ animation:sheen .75s var(--ease); }
@keyframes sheen{ from{ left:-120%; } to{ left:130%; } }

/* Cards: brass edge grows on hover */
.card, .product-card{ position:relative; }
.card::after, .product-card::after{
  content:""; position:absolute; left:0; bottom:0; height:2px; width:100%;
  background:var(--brass); transform:scaleX(0); transform-origin:left;
  transition:transform .38s var(--ease); pointer-events:none;
}
.card:hover::after, .product-card:hover::after{ transform:scaleX(1); }

/* Category / trust numbers: gentle lift */
.trust-item{ transition:transform .3s var(--ease); }
.trust-item:hover{ transform:translateY(-2px); }

/* Filter buttons */
.filter-btn{ position:relative; overflow:hidden; }
.filter-btn.active{ animation:filterPop .3s var(--ease); }
@keyframes filterPop{
  0%{ transform:scale(.96); } 60%{ transform:scale(1.03); } 100%{ transform:scale(1); }
}

/* Product cards fading back in after a filter change */
.js .product-card{ animation:cardIn .38s var(--ease) both; }
@keyframes cardIn{ from{ opacity:0; transform:translateY(10px); } to{ opacity:1; transform:none; } }

/* Tab panels fade */
.pd-panel.active{ animation:panelIn .34s var(--ease); }
@keyframes panelIn{ from{ opacity:0; transform:translateY(8px); } to{ opacity:1; transform:none; } }

/* Gallery thumbs */
.pd-thumb{ transition:border-color .2s var(--ease), transform .2s var(--ease); }
.pd-thumb:hover{ transform:translateY(-2px); }
.pd-main img{ animation:panelIn .35s var(--ease); }

/* Mobile drawer: items slide in behind the panel */
.js nav.main ul.open > li{ opacity:0; animation:drawerItem .38s var(--ease) forwards; }
nav.main ul.open > li:nth-child(1){ animation-delay:.04s; }
nav.main ul.open > li:nth-child(2){ animation-delay:.08s; }
nav.main ul.open > li:nth-child(3){ animation-delay:.12s; }
nav.main ul.open > li:nth-child(4){ animation-delay:.16s; }
nav.main ul.open > li:nth-child(5){ animation-delay:.20s; }
nav.main ul.open > li:nth-child(6){ animation-delay:.24s; }
nav.main ul.open > li:nth-child(7){ animation-delay:.28s; }
nav.main ul.open > li:nth-child(8){ animation-delay:.32s; }
nav.main ul.open > li:nth-child(9){ animation-delay:.36s; }
@keyframes drawerItem{
  from{ opacity:0; transform:translateX(22px); }
  to{ opacity:1; transform:none; }
}

/* Section headings: brass rule sweeps under the eyebrow */
.section-head.center .eyebrow{ display:inline-flex; align-items:center; gap:12px; }
.section-head.center .eyebrow::before,
.section-head.center .eyebrow::after{
  content:""; height:1px; width:26px; background:var(--brass); opacity:.55;
  transform:scaleX(0); transition:transform .6s var(--ease) .1s;
}
.section-head.center .eyebrow::before{ transform-origin:right; }
.section-head.center .eyebrow::after{ transform-origin:left; }
.section-head.is-visible .eyebrow::before,
.section-head.is-visible .eyebrow::after{ transform:scaleX(1); }

/* Floating contact bubbles: soft pulse to draw the eye once */
.bubble-wa::after{
  content:""; position:absolute; inset:0; border-radius:50%;
  border:2px solid #25D366; animation:pulse 3.2s ease-out infinite; pointer-events:none;
}
@keyframes pulse{
  0%{ transform:scale(1); opacity:.55; }
  60%{ transform:scale(1.45); opacity:0; }
  100%{ transform:scale(1.45); opacity:0; }
}

/* Links in footer / nav: brass underline grow */
footer.site a:not(.btn){ position:relative; }

@media (prefers-reduced-motion: reduce){
  .hero::before, .hero::after,
  .hero-inner > div > *,
  .hero ul.hero-points li::before,
  .product-card, .pd-panel.active, .pd-main img,
  nav.main ul.open > li, .filter-btn.active,
  .bubble-wa::after{
    animation:none !important; opacity:1 !important; transform:none !important;
  }
  .btn::before{ display:none; }
  .scroll-progress{ display:none; }
  .section-head.center .eyebrow::before,
  .section-head.center .eyebrow::after{ transform:scaleX(1); }
}

/* ---------- Fact panel (stands in for a photo we do not have) ---------- */
.fact-panel{
  background:var(--paper-2); border:1px solid var(--line); border-radius:var(--radius-lg);
  padding:clamp(22px,3vw,32px); display:flex; flex-direction:column; justify-content:center; gap:2px;
  aspect-ratio:4/3;
}
.fact-row{
  display:flex; justify-content:space-between; align-items:baseline; gap:18px;
  padding:12px 0; border-bottom:1px solid var(--line);
}
.fact-row:last-child{ border-bottom:none; }
.fact-row span{ font-size:13px; color:var(--ink-2); }
.fact-row strong{ font-family:'Lora',serif; font-size:clamp(15px,1.6vw,17px); font-weight:600; color:var(--black); text-align:right; }
.bg-black .fact-panel, .bg-forest .fact-panel{ background:rgba(255,255,255,.05); border-color:rgba(255,255,255,.14); }
.bg-black .fact-row span, .bg-forest .fact-row span{ color:#A6B7A9; }
.bg-black .fact-row strong, .bg-forest .fact-row strong{ color:var(--white); }
@media (max-width:640px){ .fact-panel{ aspect-ratio:auto; } }

/* ---------- Contact nudge that sits above the bubbles ---------- */
.help-pop{
  position:absolute; right:0; bottom:calc(100% + 14px); width:288px;
  background:var(--white); border:1px solid var(--line); border-radius:var(--radius-lg);
  padding:18px 18px 16px; box-shadow:0 14px 44px rgba(12,31,20,.20);
  opacity:0; transform:translateY(12px) scale(.96); transform-origin:bottom right;
  transition:opacity .38s var(--ease), transform .38s var(--ease);
}
.help-pop.show{ opacity:1; transform:none; }
.help-pop::after{
  content:""; position:absolute; right:20px; bottom:-7px; width:12px; height:12px;
  background:var(--white); border-right:1px solid var(--line); border-bottom:1px solid var(--line);
  transform:rotate(45deg);
}
.help-title{ font-family:'Lora',serif; font-size:16px; color:var(--black); margin-bottom:4px; padding-right:18px; }
.help-text{ font-size:12.5px; color:var(--ink-2); line-height:1.5; margin-bottom:12px; }

.help-form{ display:flex; flex-direction:column; gap:8px; }
.help-form input[type="email"], .help-form textarea{
  width:100%; border:1px solid var(--line); border-radius:var(--radius);
  padding:10px 11px; font-family:inherit; font-size:13.5px; color:var(--ink);
  background:var(--white); transition:border-color .18s var(--ease), box-shadow .18s var(--ease);
}
.help-form textarea{ resize:none; line-height:1.45; }
.help-form input[type="email"]:focus, .help-form textarea:focus{
  outline:none; border-color:var(--sage); box-shadow:0 0 0 3px rgba(110,139,118,.16);
}
.help-send{
  border:1px solid var(--forest); background:var(--forest); color:var(--white);
  font-family:inherit; font-size:12.5px; font-weight:600; letter-spacing:.4px;
  padding:10px 12px; border-radius:var(--radius); cursor:pointer;
  transition:background .2s var(--ease), border-color .2s var(--ease);
}
.help-send:hover{ background:var(--forest-3); border-color:var(--forest-3); }
.help-send:disabled{ opacity:.65; cursor:default; }
.help-status{ display:none; font-size:12.5px; line-height:1.5; margin:0; }
.help-status.ok{ display:block; color:#2F5136; }
.help-status.err{ display:block; color:#8A3C22; }
.help-form.sent input, .help-form.sent textarea, .help-form.sent .help-send{ display:none; }

.help-close{
  position:absolute; top:9px; right:9px; width:24px; height:24px; padding:0;
  background:none; border:none; cursor:pointer; color:var(--ink-3);
  display:flex; align-items:center; justify-content:center; border-radius:var(--radius-sm);
  transition:background .18s var(--ease), color .18s var(--ease);
}
.help-close:hover{ background:var(--paper-2); color:var(--ink); }
.help-close svg{ width:13px; height:13px; }

.bubble-wa .bubble-dot{
  position:absolute; top:-2px; right:-2px; width:13px; height:13px; border-radius:50%;
  background:var(--brass); border:2px solid var(--paper); opacity:0; transform:scale(.5);
  transition:opacity .3s var(--ease), transform .3s var(--ease);
}
.bubble-wa.has-dot .bubble-dot{ opacity:1; transform:scale(1); }

@media (max-width:980px){ .help-pop{ display:none; } }
@media (prefers-reduced-motion: reduce){ .help-pop{ transition:none; } }

/* A link from the printed catalogue lands on one row of the variant table.
   scroll-margin-top keeps that row clear of the sticky header, and the
   :target rule makes it obvious which line the buyer came for. */
.data tr[id]{ scroll-margin-top:120px; transition:background .4s ease; }
.data tr[id]:target{ background:rgba(193,150,74,.16); box-shadow:inset 3px 0 0 var(--brass); }
@media (prefers-reduced-motion: reduce){ .data tr[id]{ transition:none; } }
