/* =========================================================
   HMMA GROUP — Editorial Luxury Design System
   Palette (fixed, do not extend): #0F1724 · #A9A18C · #7E7053 · #4D3E27 · #D6D7D2
   ========================================================= */

:root{
  /* ---- fixed brand palette (navy + gold, restored) ---- */
  --bg:#0f1724;           /* primary background */
  --accent:#c6a15b;       /* primary accent — gold */
  --accent-2:#a9812f;     /* secondary accent — deep gold */
  --brown:#4d3e27;        /* leather brown (material accent, illustrations) */
  --neutral:#d6d7d2;      /* light neutral */
  --white:#ffffff;

  /* ---- tonal derivatives (blends of the palette above only) ---- */
  --surface-1:#161f2d;    /* card surface on dark canvas, step 1 */
  --surface-2:#1e2839;    /* card surface on dark canvas, step 2 (hover/elevated) */
  --paper:#eceae3;        /* light "island" background (neutral, lightened) */
  --paper-dim:#e2e0d6;    /* light island secondary */

  --text-hi:#ffffff;                     /* headline emphasis on dark */
  --text-body:var(--neutral);            /* body copy on dark */
  --text-muted:rgba(214,215,210,.58);    /* secondary copy on dark */
  --text-faint:rgba(214,215,210,.34);    /* tertiary / disabled on dark */

  --ink-hi:var(--bg);                    /* headline emphasis on light/paper */
  --ink-body:#2b2419;                    /* body copy on light/paper (brown-tinted near-black) */
  --ink-muted:rgba(43,36,25,.62);        /* secondary copy on light/paper — neutral, not gold */

  --line:rgba(214,215,210,.14);          /* hairline on dark */
  --line-strong:rgba(214,215,210,.26);
  --line-paper:rgba(15,23,36,.1);        /* hairline on light */

  --shadow-sm:0 2px 24px rgba(0,0,0,.18);
  --shadow-md:0 20px 60px rgba(0,0,0,.28);
  --shadow-lg:0 40px 100px rgba(0,0,0,.38);
  --shadow-paper:0 24px 70px rgba(15,23,36,.14);

  --radius-sm:14px;
  --radius-md:26px;
  --radius-lg:40px;
  --radius-pill:100px;

  --font-display:'Fraunces', 'Playfair Display', Georgia, serif;
  --font-body:'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --container:1320px;
  --nav-h:96px;
  --ease:cubic-bezier(.16,1,.3,1);
  --ease-soft:cubic-bezier(.4,0,.2,1);
}

*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth;overflow-x:hidden}
body{
  font-family:var(--font-body);
  color:var(--text-body);
  background:var(--bg);
  line-height:1.65;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
  font-size:16px;
  letter-spacing:.1px;
}
img{max-width:100%;display:block}
a{color:inherit;text-decoration:none}
ul{list-style:none}
button{font:inherit;cursor:pointer;border:none;background:none;color:inherit}
input,textarea,select{font:inherit}
svg{display:block}

.container{max-width:var(--container);margin:0 auto;padding:0 40px}
section{position:relative}

h1,h2,h3,h4{font-family:var(--font-display);font-weight:500;color:var(--text-hi);line-height:1.08;letter-spacing:-.01em}
h1{font-size:clamp(3rem,6.4vw,6.4rem);font-weight:500;letter-spacing:-.02em}
h2{font-size:clamp(2.2rem,4vw,3.6rem);font-weight:500}
h3{font-size:1.5rem;font-weight:500}
h4{font-size:1.15rem;font-weight:500}
p{color:var(--text-muted);font-size:1rem;font-weight:300}

.on-paper h1,.on-paper h2,.on-paper h3,.on-paper h4{color:var(--ink-hi)}
.on-paper p{color:var(--ink-muted)}

.eyebrow{
  display:inline-flex;align-items:center;gap:12px;
  font-family:var(--font-body);font-weight:500;font-size:.72rem;
  letter-spacing:3.6px;text-transform:uppercase;color:var(--accent);
  margin-bottom:22px;
}
.eyebrow::before{content:"";width:34px;height:1px;background:var(--accent)}
.on-paper .eyebrow{color:var(--accent-2)}

.section-head{max-width:660px;margin-bottom:64px}
.section-head.center{margin-left:auto;margin-right:auto;text-align:center}
.section-head.center .eyebrow::before{display:none}
.section-head p{margin-top:20px;font-size:1.08rem;line-height:1.7}

.section-pad{padding:150px 0}
.section-pad.tight{padding:110px 0}
@media(max-width:900px){.section-pad{padding:100px 0}.section-pad.tight{padding:80px 0}}
@media(max-width:600px){.container{padding:0 24px}.section-pad{padding:80px 0}}

/* ---------- Buttons ---------- */
.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:12px;
  padding:18px 38px;border-radius:var(--radius-pill);font-weight:500;font-size:.9rem;
  letter-spacing:.3px;white-space:nowrap;position:relative;
  transition:transform .6s var(--ease),box-shadow .6s var(--ease),background .4s var(--ease-soft),color .4s,border-color .4s,opacity .4s;
}
.btn-primary{background:var(--accent);color:var(--bg)}
.btn-primary:hover{transform:translateY(-2px);box-shadow:var(--shadow-md);background:var(--neutral)}
.btn-outline{border:1px solid var(--line-strong);color:var(--text-hi)}
.btn-outline:hover{border-color:var(--accent);background:rgba(169,161,140,.08)}
.btn-dark{background:var(--bg);color:var(--neutral);border:1px solid var(--line-paper)}
.btn-dark:hover{background:var(--brown);color:var(--white);transform:translateY(-2px)}
.btn-ghost{color:var(--ink-hi);border-bottom:1px solid var(--line-paper);border-radius:0;padding:8px 2px}
.btn-ghost:hover{border-color:var(--accent-2);color:var(--accent-2)}
.btn-text{padding:0;border-radius:0;gap:8px;font-weight:500;color:inherit;border-bottom:1px solid currentColor}
.btn-sm{padding:13px 26px;font-size:.8rem}
.btn svg{width:15px;height:15px;transition:transform .5s var(--ease)}
.btn:hover svg{transform:translateX(5px)}

/* =========================================================
   Custom cursor
   ========================================================= */
.cursor-dot,.cursor-ring{
  position:fixed;top:0;left:0;pointer-events:none;z-index:9999;
  border-radius:50%;transform:translate(-50%,-50%);
}
.cursor-dot{width:6px;height:6px;background:var(--accent);transition:opacity .25s, background .3s;}
.cursor-ring{
  width:40px;height:40px;border:1px solid rgba(169,161,140,.55);
  transition:width .45s var(--ease),height .45s var(--ease),opacity .25s,border-color .4s,background .4s;
}
.cursor-ring.is-active{width:72px;height:72px;background:rgba(169,161,140,.08);border-color:var(--accent)}
.cursor-ring.is-dark{border-color:rgba(15,23,36,.5)}
body.cursor-ready,.cursor-ready a,.cursor-ready button{cursor:none}
@media(hover:none),(pointer:coarse){
  .cursor-dot,.cursor-ring{display:none}
}

/* =========================================================
   Navigation — plain sticky bar (restored)
   ========================================================= */
@keyframes navIn{from{opacity:0;transform:translateY(-16px)}to{opacity:1;transform:translateY(0)}}

.site-header{
  position:sticky;top:0;z-index:900;
  background:rgba(15,23,36,.94);
  backdrop-filter:blur(14px) saturate(160%);-webkit-backdrop-filter:blur(14px) saturate(160%);
  border-bottom:1px solid var(--line);
  animation:navIn .7s var(--ease-soft) both;
  transition:background .4s,box-shadow .4s;
}
.site-header.is-scrolled{
  background:rgba(15,23,36,.98);
  box-shadow:0 12px 40px rgba(0,0,0,.28);
}

.nav-shell{
  max-width:var(--container);margin:0 auto;height:var(--nav-h);
  display:grid;grid-template-columns:auto 1fr auto;align-items:center;column-gap:28px;
  padding:0 40px;
  transition:height .4s var(--ease);
}
.site-header.is-scrolled .nav-shell{height:76px}

.brand{grid-column:1;display:flex;align-items:center;gap:16px;flex-shrink:0}
.brand-mark{
  width:38px;height:38px;border-radius:50%;
  background:transparent;border:1px solid var(--line-strong);
  display:flex;align-items:center;justify-content:center;flex-shrink:0;color:var(--accent);
  transition:width .4s var(--ease),height .4s var(--ease);
}
.site-header.is-scrolled .brand-mark{width:32px;height:32px}
.brand-mark svg{width:17px;height:17px}
.brand-logo-obj,.brand-logo{height:44px;width:auto;max-width:180px;object-fit:contain;display:block;pointer-events:none;transition:height .4s var(--ease)}
.site-header.is-scrolled .brand-logo-obj,.site-header.is-scrolled .brand-logo{height:36px}
/* Logo badge — deliberately large so it reads clearly next to the wordmark */
.brand-logo-img{height:68px;width:auto;max-width:210px;object-fit:contain;display:block;flex-shrink:0;transition:height .4s var(--ease)}
.site-header.is-scrolled .brand-logo-img{height:54px}
.brand-text{display:flex;flex-direction:column;line-height:1.1}
.brand-text strong{font-family:var(--font-display);font-weight:500;font-size:1.6rem;color:var(--text-hi);letter-spacing:.3px}
.brand-text span{font-size:.72rem;letter-spacing:2.8px;color:var(--text-muted);text-transform:uppercase;font-weight:500;margin-top:5px}

.main-nav{grid-column:2;display:flex;align-items:center;justify-content:center}
.main-nav > ul{display:flex;align-items:center;gap:4px}
.main-nav > ul > li{position:relative}
.nav-link{
  display:flex;align-items:center;gap:6px;padding:15px 18px;font-size:.86rem;
  font-weight:400;color:var(--text-muted);border-radius:8px;
  transition:color .35s,padding .5s var(--ease),transform .25s var(--ease-soft);
  position:relative;letter-spacing:.2px;
}
.site-header.is-scrolled .nav-link{padding:13px 16px}
.nav-link::after{
  content:"";position:absolute;left:18px;right:18px;bottom:8px;height:1px;
  background:var(--accent);transform:scaleX(0);transform-origin:center;
  transition:transform .5s var(--ease);
}
.nav-link:hover::after{transform:scaleX(1)}
.nav-link:hover{color:var(--text-hi)}
.nav-link.active{color:var(--text-hi)}
.nav-link.active::before{
  content:"";position:absolute;left:50%;bottom:4px;width:3px;height:3px;
  border-radius:50%;background:var(--accent);transform:translateX(-50%);
}
.nav-link .chev{width:9px;height:9px;transition:transform .4s var(--ease);opacity:.6}
.has-dropdown.open .chev{transform:rotate(180deg)}

.nav-cta{grid-column:3;display:flex;align-items:center;gap:16px}
.nav-cta > .btn{transition:transform .25s var(--ease-soft),background .4s,box-shadow .4s,color .4s}
.nav-icon-btn{display:none}

/* Mega dropdown — .mega is a shared, always-hoverable positioning/hit-testing shell
   (no visuals of its own); the actual floating card lives on .mega-inner. Splitting
   them like this lets padding-top on the shell bridge the gap between the trigger and
   the card with zero dead zone, instead of a translateY() slide that leaves a gap the
   cursor can drop out of mid-travel. The open/close trigger itself is a JS-managed
   .open class (see initMegaMenuHover in main.js) rather than :hover, and the rule that
   applies it is gated to min-width:1101px below — keeping it out of scope at mobile
   widths entirely (rather than merely being overridden there) is what stops it from
   ever winning a specificity fight against the mobile accordion layout.
   Mobile (<=1100px) gets its own reset further down, turning .mega-inner into a plain
   static block toggled by the same .open class via tap instead of hover. */
.mega{
  position:absolute;top:100%;left:50%;transform:translateX(-50%);
  padding-top:20px;z-index:80;
}
.mega-inner{
  width:900px;
  background:rgba(20,28,41,.86);backdrop-filter:blur(26px) saturate(180%);-webkit-backdrop-filter:blur(26px) saturate(180%);
  border-radius:28px;box-shadow:0 30px 90px rgba(0,0,0,.42);
  border:1px solid rgba(214,215,210,.14);padding:44px;
  opacity:0;visibility:hidden;transform:translateY(10px);
  transition:opacity .35s var(--ease),transform .35s var(--ease),visibility .35s;
}
@media(min-width:1101px){
  .has-dropdown.open .mega-inner{opacity:1;visibility:visible;transform:translateY(0)}
}
.mega-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:36px}
.mega-col-title{font-size:.66rem;letter-spacing:2.2px;text-transform:uppercase;font-weight:500;color:var(--accent);margin-bottom:20px;display:block}
.mega-col a{display:flex;flex-direction:column;gap:2px;padding:9px 0;transition:padding-left .35s,opacity .35s;border-bottom:1px solid transparent}
.mega-col a:hover{padding-left:8px;opacity:1}
.mega-col a strong{font-size:.9rem;color:var(--text-body);font-weight:400;transition:color .3s}
.mega-col a:hover strong{color:var(--text-hi)}
.mega-oem{margin-top:32px;padding-top:28px;border-top:1px solid var(--line);display:flex;align-items:center;justify-content:space-between;gap:20px;flex-wrap:wrap}
.mega-oem span{font-size:.86rem;color:var(--text-muted);font-weight:300}
.mega-oem a{display:inline-flex;align-items:center;gap:8px;color:var(--accent);font-size:.88rem;font-weight:500;transition:gap .35s,color .35s}
.mega-oem a:hover{gap:12px;color:var(--text-hi)}
.mega-oem a svg{width:14px;height:14px}
.mega-feature{display:none}

/* Mobile nav */
.nav-toggle{display:none;width:40px;height:40px;align-items:center;justify-content:center;flex-shrink:0}
.nav-toggle span{position:relative;width:20px;height:1px;background:var(--text-hi);display:block;transition:opacity .3s}
.nav-toggle span::before,.nav-toggle span::after{content:"";position:absolute;left:0;width:20px;height:1px;background:var(--text-hi);transition:top .3s var(--ease),transform .3s var(--ease)}
.nav-toggle span::before{top:-7px}
.nav-toggle span::after{top:7px}
.nav-toggle.is-active span{opacity:0}
.nav-toggle.is-active span::before{top:0;transform:rotate(45deg)}
.nav-toggle.is-active span::after{top:0;transform:rotate(-45deg)}

/* Backdrop behind the slide-in mobile nav panel — dims/blocks the page underneath */
.nav-overlay{
  position:fixed;inset:0;z-index:800;background:rgba(8,13,22,.72);
  opacity:0;visibility:hidden;transition:opacity .4s ease,visibility 0s .4s;
}
.nav-overlay.open{opacity:1;visibility:visible;transition:opacity .4s ease}

@media(max-width:1100px){
  .nav-shell{grid-template-columns:auto auto;justify-content:space-between}
  .main-nav{position:fixed;inset:0 0 0 auto;width:min(400px,88vw);height:100vh;background:var(--bg);
    flex-direction:column;align-items:stretch;padding:110px 32px 40px;transform:translateX(100%);
    transition:transform .5s var(--ease);overflow-y:auto;border-left:1px solid var(--line);}
  .main-nav.open{transform:translateX(0)}
  .main-nav > ul{flex-direction:column;align-items:stretch;gap:0;width:100%}
  .nav-link{padding:18px 4px;border-bottom:1px solid var(--line);border-radius:0;width:100%;justify-content:space-between}
  .nav-link::after{display:none}
  .mega{position:static;transform:none;padding-top:0}
  .mega-inner{position:static;transform:none;width:100%;box-shadow:none;border:none;background:none;padding:8px 0 18px 12px;backdrop-filter:none;
    transition:none;opacity:1;visibility:visible;display:none}
  .has-dropdown.open .mega-inner{display:block}
  .mega-grid{grid-template-columns:1fr;gap:24px}
  .mega-oem{border-top:none;margin-top:8px;padding-top:8px}
  .nav-toggle{display:flex}
  .nav-cta .btn{display:none}
}

/* =========================================================
   Hero — editorial, no gradients/badges
   ========================================================= */
.hero{
  min-height:96vh;display:grid;align-content:center;position:relative;overflow:hidden;
  background:
    radial-gradient(900px 520px at 82% 12%, rgba(198,161,91,.10), transparent 60%),
    linear-gradient(160deg, #16263c 0%, #101c2e 45%, #0c1522 100%);
  color:var(--text-hi);padding:180px 0 100px;
}
.hero::after{
  content:"";position:absolute;inset:0;pointer-events:none;z-index:0;opacity:.045;mix-blend-mode:overlay;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='matrix' values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.3 0.3 0.3 0 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size:220px 220px;
}
.hero-copy,.hero-visual{position:relative;z-index:1}
.hero-grid{display:grid;grid-template-columns:1.05fr .95fr;gap:60px;align-items:center}
@media(max-width:1024px){.hero-grid{grid-template-columns:1fr}}
.hero-copy{max-width:900px}
.hero-copy .eyebrow{color:var(--accent)}
.hero h1{color:var(--text-hi);font-weight:400}
.hero h1 em{font-style:italic;color:var(--accent);font-family:var(--font-display)}
.hero-copy p.lead{color:var(--text-muted);font-size:1.2rem;font-weight:300;max-width:600px;margin:32px 0 44px;line-height:1.7}
.hero-actions{display:flex;gap:22px;flex-wrap:wrap;align-items:center;margin-bottom:100px}

.hero-stats{display:flex;gap:0;flex-wrap:wrap;border-top:1px solid var(--line);padding-top:36px}
.hero-stats .stat{padding-right:56px;margin-right:56px}
.hero-stats .num{font-family:var(--font-display);font-size:2.6rem;color:var(--text-hi);font-weight:400;display:flex;align-items:baseline;gap:2px}
.hero-stats .num .suffix{color:var(--accent);font-size:1.5rem}
.hero-stats .label{font-size:.78rem;color:var(--text-muted);letter-spacing:.4px;margin-top:8px;font-weight:300}

.hero-visual{position:relative;height:420px;margin-top:10px}

/* ---- Outer hero carousel: slide 1 (text) / slide 2 (image placeholder) / slide 3 (video placeholder) ---- */
.hero-slide-outer{
  grid-area:1/1;z-index:1;position:relative;
  display:flex;flex-direction:column;justify-content:center;
  opacity:0;pointer-events:none;transition:opacity .6s ease;
}
.hero-slide-outer.is-active{opacity:1;pointer-events:auto}
.hero-slide-outer.hero-slide--media{min-height:96vh}
.hero-slide-img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;z-index:0;display:block}
.hero-slide-img img{width:100%;height:100%;object-fit:cover;display:block}
.hero-slide-overlay{
  position:absolute;inset:0;z-index:1;pointer-events:none;
  background:linear-gradient(90deg, rgba(12,21,34,.55) 0%, rgba(12,21,34,.28) 45%, rgba(12,21,34,.08) 100%);
}
.hero-slide--media .container{position:relative;z-index:2}

.hero-placeholder{
  max-width:520px;margin:0 auto;padding:60px 40px;text-align:center;
  border:1.5px dashed var(--line-strong);border-radius:var(--radius-lg);
  display:flex;flex-direction:column;align-items:center;gap:10px;
  position:relative;z-index:1;
}
.hero-placeholder span{color:var(--accent)}
.hero-placeholder span svg{width:32px;height:32px;stroke-width:1.1}
.hero-placeholder strong{font-family:var(--font-display);font-size:1.3rem;color:var(--text-hi);font-weight:500}
.hero-placeholder em{font-style:normal;font-size:.85rem;color:var(--text-muted)}
.hero-placeholder-video{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;object-position:right center;opacity:0}

.hero-arrow{
  position:absolute;top:50%;transform:translateY(-50%);z-index:3;width:48px;height:48px;border-radius:50%;
  background:rgba(15,23,36,.5);border:1px solid var(--line-strong);color:var(--accent);
  display:flex;align-items:center;justify-content:center;transition:background .3s,border-color .3s;cursor:pointer;
}
.hero-arrow:hover{background:rgba(15,23,36,.75);border-color:var(--accent)}
.hero-arrow--prev{left:24px}
.hero-arrow--next{right:24px}
.hero-arrow svg{width:18px;height:18px}
.hero-arrow--prev svg{transform:scaleX(-1)}

.hero-dots{position:absolute;left:50%;bottom:28px;transform:translateX(-50%);z-index:3;display:flex;gap:4px}
.hero-dot{
  width:24px;height:24px;border-radius:50%;background:transparent;border:none;padding:0;cursor:pointer;
  display:flex;align-items:center;justify-content:center;
}
.hero-dot::after{content:'';width:8px;height:8px;border-radius:50%;background:var(--line-strong);transition:background .3s,transform .3s}
.hero-dot.is-active::after{background:var(--accent);transform:scale(1.3)}

@media(max-width:640px){
  .hero-arrow{width:38px;height:38px}
  .hero-arrow--prev{left:12px}
  .hero-arrow--next{right:12px}
}

/* ---- Hero Media component: video (preferred) + auto image carousel (fallback) ---- */
.hero-media{
  position:absolute;inset:0;border-radius:var(--radius-lg);overflow:hidden;
  background:#0c1522;
}
.hero-media-video{
  position:absolute;inset:0;width:100%;height:100%;z-index:0;
  object-fit:cover;object-position:right center;
  opacity:0;transition:opacity .8s ease;
}
.hero-media-video.is-ready{opacity:1}
.hero-media-carousel{position:absolute;inset:0;z-index:1}
.hero-slide{
  position:absolute;inset:0;z-index:1;opacity:0;pointer-events:none;
  transition:opacity .7s ease;
}
.hero-slide.is-active{opacity:1;pointer-events:auto}
.hero-media-overlay{
  position:absolute;inset:0;z-index:2;pointer-events:none;
  background:linear-gradient(90deg, rgba(12,21,34,.5) 0%, rgba(12,21,34,.22) 45%, rgba(12,21,34,.05) 100%);
}

.hc-item{position:absolute;filter:drop-shadow(0 22px 34px rgba(0,0,0,.42));transition:transform .5s var(--ease-soft);will-change:transform}
.hc-item svg{width:100%;height:100%;display:block}
.hc-jacket-main{left:27%;top:2%;width:44%;height:94%;z-index:5}
.hc-jacket-women{left:-1%;top:0%;width:29%;height:60%;z-index:3;opacity:.95}
.hc-gloves{right:-3%;top:-2%;width:27%;height:50%;z-index:4}
.hc-bag{left:-4%;bottom:1%;width:32%;height:46%;z-index:4}
.hc-scrubs{right:-3%;bottom:-3%;width:28%;height:57%;z-index:4}
.hc-sheet{left:32%;bottom:-7%;width:29%;height:29%;z-index:2}
.hc-towel{left:45%;bottom:-2%;width:21%;height:21%;z-index:3}
.hc-sheet--wide{left:18%;right:auto;bottom:-4%;width:46%;height:42%;z-index:2}
.hc-towel--wide{left:38%;right:auto;bottom:2%;width:34%;height:34%;z-index:3}
.hc-scrubs--solo{left:6%;right:auto;top:4%;bottom:auto;width:34%;height:80%;z-index:4}

.trust-badge{
  position:absolute;z-index:3;text-align:center;padding:11px 18px;border-radius:16px;
  background:rgba(15,23,36,.5);backdrop-filter:blur(6px);-webkit-backdrop-filter:blur(6px);
  border:1px solid var(--line-strong);box-shadow:var(--shadow-sm);
  animation:softFloat 6.5s ease-in-out infinite;pointer-events:none;
}
.trust-badge strong{display:block;font-family:var(--font-display);font-size:1rem;color:var(--accent);font-weight:500}
.trust-badge span{display:block;font-size:.6rem;letter-spacing:.6px;text-transform:uppercase;color:var(--text-muted);margin-top:2px}
.tb-1{left:1%;top:32%;animation-delay:0s}
.tb-2{right:2%;top:6%;animation-delay:.9s}
.tb-3{left:8%;bottom:4%;animation-delay:1.8s}

.dust{position:absolute;z-index:3;width:3px;height:3px;border-radius:50%;background:var(--neutral);opacity:.1;pointer-events:none;animation:dustDrift 8s ease-in-out infinite}
@keyframes dustDrift{0%,100%{transform:translateY(0);opacity:.06}50%{transform:translateY(-16px);opacity:.16}}

@media(prefers-reduced-motion:reduce){
  .hc-item{transition:none}
  .trust-badge,.dust{animation:none}
  .hero-slide,.hero-slide-outer{transition:opacity .3s linear}
}

@media(max-width:1024px){
  .hero{padding:150px 0 80px}
  .hero-actions,.hero-stats{justify-content:flex-start}
  .hero-visual{height:340px}
}
@media(max-width:560px){
  .hero-stats{gap:28px}
  .hero-stats .stat{padding-right:0;margin-right:0;flex:1 1 40%}
  .hero-visual{height:280px}
  .hc-jacket-main{left:22%;top:0;width:56%;height:100%;z-index:5}
  .hc-jacket-women,.hc-gloves,.hc-bag,.hc-scrubs,.hc-sheet,.hc-towel,
  .hc-sheet--wide,.hc-towel--wide,.hc-scrubs--solo,.trust-badge,.dust{display:none}
}

/* Sub-page hero (banner) */
.page-hero{
  background:var(--bg);color:var(--text-hi);padding:190px 0 110px;position:relative;overflow:hidden;
}
.breadcrumb{display:flex;gap:10px;align-items:center;font-size:.8rem;color:var(--text-faint);margin-bottom:28px;position:relative;z-index:1;letter-spacing:.2px}
.breadcrumb a:hover{color:var(--accent)}
.breadcrumb .sep{opacity:.5}
.page-hero h1{color:var(--text-hi);max-width:820px;position:relative;z-index:1;font-weight:400}
.page-hero p.lead{color:var(--text-muted);max-width:620px;margin-top:26px;font-size:1.14rem;font-weight:300;position:relative;z-index:1;line-height:1.7}
.page-hero-tags{display:flex;gap:12px;flex-wrap:wrap;margin-top:36px;position:relative;z-index:1}
.page-hero-tags span{border:1px solid var(--line-strong);color:var(--text-muted);font-size:.78rem;padding:9px 18px;border-radius:var(--radius-pill);font-weight:300}

/* =========================================================
   Marquee / feature strip — minimal text row
   ========================================================= */
.trust-strip{display:none}

.feature-strip{background:transparent}
.feature-strip .container{display:flex;justify-content:space-between;padding:56px 40px;flex-wrap:wrap;gap:36px;border-top:1px solid var(--line);border-bottom:1px solid var(--line)}
.feature-strip .fitem{display:flex;align-items:center;gap:16px;flex:1 1 200px}
.feature-strip .fitem .ic{width:34px;height:34px;display:flex;align-items:center;justify-content:center;color:var(--accent);flex-shrink:0}
.feature-strip .fitem .ic svg{width:22px;height:22px;stroke-width:1.2}
.feature-strip .fitem strong{display:block;font-size:.88rem;color:var(--text-hi);font-weight:500}
.feature-strip .fitem span{font-size:.78rem;color:var(--text-muted);font-weight:300}

/* =========================================================
   About teaser split
   ========================================================= */
.split{display:grid;grid-template-columns:1fr 1fr;gap:100px;align-items:center}
.split-media{position:relative;height:520px}
.sm-block{position:absolute;border-radius:var(--radius-lg);box-shadow:var(--shadow-lg);overflow:hidden}
.sm-1{width:74%;height:84%;top:0;left:0;background:var(--surface-2);z-index:1}
.sm-2{width:46%;height:42%;bottom:0;left:0;background:var(--paper);box-shadow:var(--shadow-paper);z-index:2}
.sm-img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;display:block}
.sm-badge{position:absolute;left:-30px;bottom:44px;background:var(--bg);border:1px solid var(--line-strong);border-radius:var(--radius-md);padding:26px 30px;text-align:center;width:150px;z-index:3}
.sm-badge .big{font-family:var(--font-display);font-size:2.4rem;color:var(--accent);font-weight:400;display:flex;align-items:baseline;justify-content:center}
.sm-badge span{font-size:.72rem;color:var(--text-muted);letter-spacing:.4px;font-weight:300}
.split-copy .checklist{margin:32px 0 40px;display:flex;flex-direction:column;gap:18px}
.split-copy .checklist li{display:flex;align-items:flex-start;gap:16px;font-size:.98rem;color:var(--text-body);font-weight:300;line-height:1.6}
.split-copy .checklist .tick{width:22px;height:22px;border-radius:50%;border:1px solid var(--accent);color:var(--accent);display:flex;align-items:center;justify-content:center;flex-shrink:0;margin-top:2px}
.split-copy .checklist .tick svg{width:11px;height:11px}
@media(max-width:960px){.split{grid-template-columns:1fr;gap:60px}.split-media{max-width:480px;margin:0 auto;width:100%}}

/* "Our Story" homepage video — deliberately capped well below the container width so
   it reads as a featured clip, not another full-bleed banner, and never upscales past
   its native resolution. aspect-ratio matches the 16:9 source exactly, so object-fit
   is purely for browsers that don't yet support aspect-ratio. */
.story-video-wrap{
  max-width:640px;margin:0 auto;border-radius:var(--radius-lg);overflow:hidden;
  box-shadow:var(--shadow-lg);background:#000;aspect-ratio:16/9;
}
.story-video{width:100%;height:100%;object-fit:cover;display:block}
@media(max-width:640px){.story-video-wrap{border-radius:var(--radius-md)}}

/* =========================================================
   Category / Product cards — editorial, restrained
   ========================================================= */
.grid{display:grid;gap:32px}
.grid-4{grid-template-columns:repeat(4,1fr)}
.grid-3{grid-template-columns:repeat(3,1fr)}
.grid-2{grid-template-columns:repeat(2,1fr)}
@media(max-width:1100px){.grid-4{grid-template-columns:repeat(2,1fr)}}
@media(max-width:900px){.grid-3{grid-template-columns:repeat(2,1fr)}}
@media(max-width:640px){.grid-4,.grid-3,.grid-2{grid-template-columns:1fr}}

.cat-card{
  position:relative;border-radius:var(--radius-md);overflow:hidden;height:400px;
  display:flex;align-items:flex-end;
  transition:transform .7s var(--ease),box-shadow .7s var(--ease);
}
.cat-card:hover{transform:translateY(-2px);box-shadow:0 0 0 1px rgba(169,161,140,.45),var(--shadow-lg)}
.cat-card .bg{position:absolute;inset:0;transition:transform 1s var(--ease)}
.cat-card-img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;display:block}
.cat-card .bg .illo,.hv-main .illo{position:absolute;inset:9% 16%;width:68%;height:82%;filter:drop-shadow(0 18px 28px rgba(0,0,0,.35))}
.cat-card:hover .bg{transform:scale(1.05)}
.cat-card .veil{position:absolute;inset:0;background:linear-gradient(0deg,rgba(15,23,36,.86) 0%,rgba(15,23,36,.22) 55%,rgba(15,23,36,0) 100%)}
.cat-card .body{position:relative;z-index:1;padding:34px;color:var(--white);width:100%}
.cat-card .tag{font-size:.68rem;letter-spacing:2.2px;text-transform:uppercase;color:var(--accent);font-weight:500;margin-bottom:12px;display:block}
.cat-card h3{color:var(--white);font-size:1.5rem;margin-bottom:10px;font-weight:400}
.cat-card p{color:rgba(255,255,255,.65);font-size:.88rem;margin-bottom:20px;font-weight:300}
.cat-card .go{display:inline-flex;align-items:center;gap:8px;font-size:.8rem;font-weight:400;color:rgba(255,255,255,.85);transition:gap .4s}
.cat-card:hover .go{gap:14px;color:var(--accent)}
.cat-card .go svg{width:13px;height:13px}
.cat-card .count{display:none}

/* Product card (catalog item) — light paper island on dark canvas */
.product-card{
  background:var(--paper);border-radius:var(--radius-md);overflow:hidden;
  transition:transform .6s var(--ease),box-shadow .6s var(--ease);
  display:flex;flex-direction:column;box-shadow:var(--shadow-paper);
}
.product-card:hover{transform:translateY(-2px);box-shadow:0 0 0 1px rgba(169,161,140,.45),var(--shadow-lg)}
.product-media{height:250px;position:relative;overflow:hidden}
.product-media img.bg{width:100%;height:100%;object-fit:cover;display:block}
.product-media .bg{position:absolute;inset:0;transition:transform .8s var(--ease)}
.product-card:hover .product-media .bg{transform:scale(1.05)}
.product-media .icon-wrap{position:absolute;inset:0;display:flex;align-items:center;justify-content:center}
.product-media .icon-wrap svg{width:52px;height:52px;color:rgba(255,255,255,.5);stroke-width:1}
.product-media .icon-wrap svg.illo{width:62%;height:78%;color:initial;filter:drop-shadow(0 14px 20px rgba(0,0,0,.32))}
.product-badge{position:absolute;top:20px;left:20px;color:var(--white);font-size:.64rem;font-weight:500;letter-spacing:1.6px;text-transform:uppercase;z-index:1;opacity:.95;background:rgba(15,23,36,.55);padding:6px 13px;border-radius:var(--radius-pill);backdrop-filter:blur(2px)}
.product-media.has-photo{cursor:pointer}
.media-zoom-hint{
  position:absolute;inset:0;z-index:1;display:flex;flex-direction:column;align-items:center;justify-content:center;gap:8px;
  color:#fff;background:rgba(15,23,36,0);opacity:0;transition:opacity .35s ease,background .35s ease;pointer-events:none;
}
.product-media.has-photo:hover .media-zoom-hint,
.product-media.has-photo:focus-visible .media-zoom-hint{opacity:1;background:rgba(15,23,36,.5)}
.media-zoom-hint svg{width:26px;height:26px;stroke-width:1.3}
.media-zoom-hint span{font-size:.72rem;letter-spacing:1.6px;text-transform:uppercase;font-weight:500}

/* =========================================================
   Product photo lightbox (full-size view on click)
   ========================================================= */
.img-lightbox{
  position:fixed;inset:0;z-index:2000;display:flex;align-items:center;justify-content:center;padding:48px;
  background:rgba(10,15,24,.94);opacity:0;visibility:hidden;transition:opacity .3s ease,visibility 0s .3s;
}
.img-lightbox.is-active{opacity:1;visibility:visible;transition:opacity .3s ease}
.img-lightbox img{max-width:min(88vw,920px);max-height:82vh;width:auto;height:auto;object-fit:contain;border-radius:var(--radius-md);box-shadow:var(--shadow-lg);background:var(--paper);transform:scale(.97);transition:transform .3s ease}
.img-lightbox.is-active img{transform:scale(1)}
.img-lightbox .lb-close{
  position:absolute;top:28px;right:32px;width:44px;height:44px;border-radius:50%;flex-shrink:0;
  background:rgba(255,255,255,.08);border:1px solid rgba(255,255,255,.22);color:#fff;
  display:flex;align-items:center;justify-content:center;transition:background .3s,transform .3s;
}
.img-lightbox .lb-close:hover{background:rgba(255,255,255,.18);transform:rotate(90deg)}
.img-lightbox .lb-close svg{width:18px;height:18px;stroke-width:1.6}
.img-lightbox .lb-caption{position:absolute;left:0;right:0;bottom:30px;text-align:center;color:rgba(255,255,255,.82);font-size:.86rem;font-weight:300;letter-spacing:.3px;padding:0 20px}
@media(max-width:640px){.img-lightbox{padding:20px}.img-lightbox .lb-close{top:16px;right:16px;width:38px;height:38px}}

/* =========================================================
   Custom / private-label note — under a catalogue grid
   ========================================================= */
.custom-note{
  margin-top:40px;padding:32px 36px;border-radius:var(--radius-md);
  background:var(--surface-1);border:1px solid var(--line);
  display:flex;align-items:center;gap:24px;flex-wrap:wrap;
}
.custom-note .ic{width:44px;height:44px;border-radius:12px;background:rgba(169,161,140,.12);color:var(--accent);display:flex;align-items:center;justify-content:center;flex-shrink:0}
.custom-note .ic svg{width:22px;height:22px;stroke-width:1.3}
.custom-note-copy{flex:1;min-width:260px;display:flex;flex-direction:column;gap:6px}
.custom-note-copy strong{color:var(--text-hi);font-size:.98rem;font-weight:500}
.custom-note-copy span{color:var(--text-muted);font-size:.86rem;font-weight:300;line-height:1.7}
.custom-note .btn{flex-shrink:0}
@media(max-width:700px){.custom-note{padding:26px}}
.wish-btn{display:none}
.product-body{padding:28px 26px 30px;display:flex;flex-direction:column;gap:14px;flex:1}
.product-body .cat{font-size:.68rem;letter-spacing:1.8px;text-transform:uppercase;color:var(--accent-2);font-weight:500}
.product-body h3{color:var(--ink-hi);font-size:1.12rem;font-weight:500}
.product-body p{color:var(--ink-muted);font-size:.86rem;font-weight:300}
.spec-tags{display:flex;flex-wrap:wrap;gap:4px;margin-top:2px;font-size:.78rem;color:var(--ink-muted);font-weight:300}
.spec-tags span:not(:last-child)::after{content:"·";margin-left:8px;color:var(--line-paper)}
.product-foot{display:flex;align-items:center;justify-content:space-between;margin-top:auto;padding-top:18px;border-top:1px solid var(--line-paper)}
.product-foot .moq{font-size:.74rem;color:var(--ink-muted);font-weight:300}
.product-foot .moq strong{color:var(--ink-hi);font-size:.86rem;display:block;font-weight:500}
.product-foot a{display:flex;align-items:center;gap:6px;font-size:.8rem;font-weight:500;color:var(--ink-hi);border-bottom:1px solid var(--ink-hi);padding-bottom:2px;transition:color .3s,border-color .3s,gap .3s}
.product-foot a:hover{color:var(--accent-2);border-color:var(--accent-2);gap:10px}
.product-foot a svg{display:none}

/* Tonal placeholder backgrounds (media blocks) — kept within palette */
.swatch-navy{background:var(--bg)}
.swatch-gold{background:var(--accent)}
.swatch-leather{background:var(--brown)}
.swatch-cream{background:var(--accent-2)}
.swatch-steel{background:var(--surface-2)}

/* =========================================================
   Process steps
   ========================================================= */
.steps{display:grid;grid-template-columns:repeat(3,1fr);gap:0;position:relative}
.step{padding:0 34px 0 0;position:relative;border-left:1px solid var(--line);padding-left:34px}
.step:first-child{border-left:none;padding-left:0}
.step .num{font-family:var(--font-display);font-size:1.1rem;color:var(--accent);margin-bottom:28px;font-weight:400}
.step h3{margin-bottom:14px;font-size:1.3rem;font-weight:400}
.step p{font-size:.92rem;font-weight:300;line-height:1.7}
@media(max-width:860px){.steps{grid-template-columns:1fr;gap:48px}.step{border-left:none;padding-left:0;border-top:1px solid var(--line);padding-top:32px}.step:first-child{border-top:none;padding-top:0}}

/* =========================================================
   Challenge / Solution / Result — unified tone, no traffic-light colors
   ========================================================= */
.csr{display:grid;grid-template-columns:repeat(3,1fr);gap:1px;background:var(--line);border-radius:var(--radius-md);overflow:hidden}
.csr-card{background:var(--bg);padding:44px 34px}
.csr-card .csr-head{display:flex;align-items:center;gap:14px;margin-bottom:28px;padding-bottom:20px;border-bottom:1px solid var(--line)}
.csr-card .csr-num{font-family:var(--font-display);font-size:1.1rem;color:var(--accent);flex-shrink:0}
.csr-card h3{font-size:.72rem;letter-spacing:2px;font-weight:500;color:var(--text-muted)}
.csr-list{display:flex;flex-direction:column;gap:20px}
.csr-list li{display:flex;gap:14px;align-items:flex-start;font-size:.9rem;color:var(--text-body);font-weight:300;line-height:1.6}
.csr-list .ic{width:20px;height:20px;display:flex;align-items:center;justify-content:center;flex-shrink:0;color:var(--accent);margin-top:2px}
.csr-list .ic svg{width:16px;height:16px;stroke-width:1.3}
@media(max-width:900px){.csr{grid-template-columns:1fr}}

/* =========================================================
   Certifications strip
   ========================================================= */
.cert-strip{background:transparent}
.cert-grid{display:grid;grid-template-columns:repeat(5,1fr);gap:1px;background:var(--line);border-radius:var(--radius-md);overflow:hidden}
.cert-item{background:var(--bg);padding:36px 20px;display:flex;flex-direction:column;align-items:center;gap:14px;text-align:center;transition:background .4s}
.cert-item:hover{background:var(--surface-1)}
.cert-item .ic{width:38px;height:38px;display:flex;align-items:center;justify-content:center;color:var(--accent);animation:softFloat 5.5s ease-in-out infinite}
.cert-item:nth-child(2n) .ic{animation-delay:.6s}
.cert-item:nth-child(3n) .ic{animation-delay:1.2s}
.cert-item .ic svg{width:24px;height:24px;stroke-width:1.1}
.cert-item strong{font-size:.82rem;color:var(--text-hi);font-weight:500}
.cert-item span{font-size:.72rem;color:var(--text-muted);font-weight:300}
@media(max-width:900px){.cert-grid{grid-template-columns:repeat(3,1fr)}}
@media(max-width:560px){.cert-grid{grid-template-columns:repeat(2,1fr)}}

@keyframes softFloat{0%,100%{transform:translateY(0)}50%{transform:translateY(-6px)}}

/* =========================================================
   Why Choose — four cards
   ========================================================= */
.why-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:28px}
.why-card{
  background:var(--surface-1);border:1px solid var(--line);border-radius:var(--radius-md);
  padding:40px 30px;transition:transform .6s var(--ease),box-shadow .6s var(--ease),border-color .6s;
}
.why-card:hover{transform:translateY(-4px);box-shadow:var(--shadow-md);border-color:rgba(169,161,140,.4)}
.why-card .ic{
  width:52px;height:52px;border-radius:14px;background:rgba(169,161,140,.12);color:var(--accent);
  display:flex;align-items:center;justify-content:center;margin-bottom:26px;
  animation:softFloat 6s ease-in-out infinite;
}
.why-card:nth-child(2) .ic{animation-delay:.5s}
.why-card:nth-child(3) .ic{animation-delay:1s}
.why-card:nth-child(4) .ic{animation-delay:1.5s}
.why-card .ic svg{width:24px;height:24px;stroke-width:1.1}
.why-card h3{font-size:1.06rem;margin-bottom:12px;font-weight:500}
.why-card p{font-size:.87rem;font-weight:300;line-height:1.7}
@media(max-width:1100px){.why-grid{grid-template-columns:repeat(2,1fr)}}
@media(max-width:560px){.why-grid{grid-template-columns:1fr}}

/* =========================================================
   Global network / shipping-route map + stat counters
   ========================================================= */
.map-wrap{border-radius:var(--radius-lg);overflow:hidden;background:var(--bg);border:1px solid var(--line);padding:20px;margin-bottom:56px}
.route-map{width:100%;height:auto;display:block}
.map-img{width:100%;height:auto;display:block;border-radius:calc(var(--radius-lg) - 8px)}
.map-node circle{transition:transform .35s var(--ease);transform-box:fill-box;transform-origin:center}
.map-node:hover circle{transform:scale(1.5)}
.map-node .lbl{font-size:11px;fill:var(--text-muted);font-family:var(--font-body);letter-spacing:.3px}
.map-node.hq .lbl{fill:var(--text-hi);font-weight:600}
.route-path{
  fill:none;stroke:var(--accent);stroke-width:1.4;stroke-linecap:round;
  stroke-dasharray:6 7;opacity:.75;
  animation:routeFlow 3.2s linear infinite;
}
@keyframes routeFlow{to{stroke-dashoffset:-52}}
.map-dot-grid{fill:rgba(214,215,210,.16)}
.map-stats{margin-top:0}
.stat-tile{text-align:center;padding:6px 10px}
.stat-tile .num{font-family:var(--font-display);font-size:2.6rem;color:var(--text-hi);font-weight:400;display:flex;align-items:baseline;justify-content:center;gap:2px}
.stat-tile .num .suffix{color:var(--accent);font-size:1.4rem}
.stat-tile .label{font-size:.8rem;color:var(--text-muted);margin-top:10px;letter-spacing:.4px;font-weight:300}

/* =========================================================
   Testimonial / quote
   ========================================================= */
.quote-band{background:var(--bg);color:var(--text-hi);position:relative}
.quote-wrap{max-width:840px;margin:0 auto;text-align:center;position:relative;z-index:1}
.quote-wrap .mark{font-family:var(--font-display);font-size:4.5rem;color:var(--accent);line-height:.5;margin-bottom:16px;display:block;font-weight:400}
.quote-wrap p.qtext{font-family:var(--font-display);font-size:clamp(1.5rem,2.8vw,2.3rem);color:var(--text-hi);line-height:1.5;margin-bottom:36px;font-weight:400}
.quote-author{display:flex;align-items:center;justify-content:center;gap:16px}
.quote-author .av{width:44px;height:44px;border-radius:50%;border:1px solid var(--line-strong);display:flex;align-items:center;justify-content:center;font-family:var(--font-display);color:var(--accent);font-weight:400}
.quote-author strong{display:block;font-size:.9rem;color:var(--text-hi);font-weight:500}
.quote-author span{font-size:.78rem;color:var(--text-muted);font-weight:300}

/* =========================================================
   Blog / gallery
   ========================================================= */
.blog-card{background:transparent;border-radius:var(--radius-md);overflow:hidden;transition:transform .6s var(--ease)}
.blog-card:hover{transform:translateY(-6px)}
.blog-media{height:230px;position:relative;border-radius:var(--radius-md);overflow:hidden}
.blog-body{padding:26px 4px 0}
.blog-meta{display:flex;gap:16px;font-size:.74rem;color:var(--text-faint);margin-bottom:14px;font-weight:300;letter-spacing:.3px;text-transform:uppercase}
.blog-body h3{font-size:1.12rem;margin-bottom:12px;font-weight:400;color:var(--text-hi)}
.blog-body p{font-size:.88rem;margin-bottom:18px;font-weight:300}
.blog-body a{font-size:.8rem;font-weight:500;color:var(--text-hi);display:inline-flex;gap:6px;align-items:center;border-bottom:1px solid var(--line-strong);padding-bottom:3px}
.blog-body a:hover{color:var(--accent);border-color:var(--accent)}

/* =========================================================
   Blog article (single post)
   ========================================================= */
.post-meta-bar{display:flex;flex-wrap:wrap;gap:14px;align-items:center;margin-top:22px;font-size:.8rem;color:var(--text-muted);font-weight:300;position:relative;z-index:1}
.post-meta-bar .dot{width:3px;height:3px;border-radius:50%;background:var(--text-faint)}
.post-layout{display:grid;grid-template-columns:1fr 300px;gap:70px;align-items:start}
@media(max-width:960px){.post-layout{grid-template-columns:1fr}}
.post-body p{color:var(--text-body);font-size:1.02rem;line-height:1.85;margin-bottom:24px;font-weight:300}
.post-body p.post-lead{font-size:1.16rem;color:var(--text-hi);font-weight:300;line-height:1.8}
.post-body h2{font-size:1.5rem;margin:52px 0 20px;font-weight:500}
.post-body ul{display:flex;flex-direction:column;gap:12px;margin:0 0 28px}
.post-body ul li{position:relative;padding-left:26px;color:var(--text-body);font-size:.96rem;font-weight:300;line-height:1.7}
.post-body ul li::before{content:"";position:absolute;left:0;top:.85em;width:9px;height:1px;background:var(--accent)}
.post-takeaways{background:var(--surface-1);border:1px solid var(--line);border-radius:var(--radius-md);padding:34px 36px;margin:44px 0}
.post-takeaways h3{font-size:1.02rem;color:var(--text-hi);margin-bottom:18px;font-weight:500}
.post-takeaways ul{margin:0}
.post-sidebar{position:sticky;top:120px;display:flex;flex-direction:column;gap:24px}
.post-side-card{background:var(--surface-1);border:1px solid var(--line);border-radius:var(--radius-md);padding:28px}
.post-side-card h3{font-family:var(--font-body);font-size:.72rem;letter-spacing:1.8px;text-transform:uppercase;color:var(--text-muted);font-weight:500;margin-bottom:18px}
.post-side-card p{font-size:.86rem;color:var(--text-muted);font-weight:300;line-height:1.6;margin-bottom:18px}
.post-tags{display:flex;flex-wrap:wrap;gap:8px}
.post-tags span{border:1px solid var(--line-strong);color:var(--text-muted);font-size:.72rem;padding:6px 13px;border-radius:var(--radius-pill);font-weight:300}
@media(max-width:960px){.post-sidebar{position:static;flex-direction:row;flex-wrap:wrap}.post-side-card{flex:1;min-width:220px}}

.gallery-grid{display:grid;grid-template-columns:repeat(4,1fr);grid-auto-rows:220px;gap:20px}
.gallery-grid .g-item{position:relative;border-radius:var(--radius-md);overflow:hidden;cursor:pointer}
.gallery-grid .g-item.big{grid-column:span 2;grid-row:span 2}
.gallery-grid .g-item .bg{position:absolute;inset:0;transition:transform .8s var(--ease)}
.gallery-grid .g-item img.bg{width:100%;height:100%;object-fit:cover;display:block}
.gallery-grid .g-item:hover .bg{transform:scale(1.08)}
.gallery-grid .g-item .veil{position:absolute;inset:0;background:linear-gradient(0deg,rgba(15,23,36,.8),transparent 55%);opacity:0;transition:opacity .4s}
.gallery-grid .g-item:hover .veil{opacity:1}
.gallery-grid .g-item .tag{position:absolute;left:20px;bottom:20px;color:var(--white);font-size:.84rem;font-weight:400;opacity:0;transform:translateY(8px);transition:.4s}
.gallery-grid .g-item:hover .tag{opacity:1;transform:translateY(0)}
@media(max-width:900px){.gallery-grid{grid-template-columns:repeat(2,1fr)}.gallery-grid .g-item.big{grid-column:span 2}}

/* =========================================================
   CTA banner — solid, no glow/gradient
   ========================================================= */
.cta-banner{background:var(--surface-1);border-radius:var(--radius-lg);padding:90px 80px;display:flex;align-items:center;justify-content:space-between;gap:50px}
.cta-banner .txt{max-width:520px}
.cta-banner h2{color:var(--text-hi);margin-bottom:16px;font-weight:400}
.cta-banner p{color:var(--text-muted);font-weight:300}
.cta-banner .actions{display:flex;gap:18px;flex-shrink:0}
@media(max-width:860px){.cta-banner{flex-direction:column;text-align:center;padding:64px 36px}.cta-banner .actions{flex-direction:column;width:100%}}

/* =========================================================
   Forms
   ========================================================= */
.form-grid{display:grid;grid-template-columns:1fr 1fr;gap:26px}
.field{display:flex;flex-direction:column;gap:10px}
.field.full{grid-column:1/-1}
.field label{font-size:.78rem;font-weight:500;color:var(--ink-hi);letter-spacing:.3px}
.field input,.field select,.field textarea{
  padding:16px 18px;border-radius:var(--radius-sm);border:1px solid var(--line-paper);background:var(--white);
  font-size:.92rem;transition:border-color .3s,box-shadow .3s;color:var(--ink-body);font-weight:300;
}
.field input:focus,.field select:focus,.field textarea:focus{outline:none;border-color:var(--accent-2);box-shadow:0 0 0 4px rgba(126,112,83,.1)}
.field textarea{resize:vertical;min-height:140px}
@media(max-width:640px){.form-grid{grid-template-columns:1fr}}

/* Floating labels */
.field.float{position:relative;gap:0}
.field.float label{
  position:absolute;left:18px;top:16px;font-size:.92rem;font-weight:300;
  color:var(--ink-muted);pointer-events:none;background:transparent;padding:0 4px;
  transition:top .35s var(--ease),font-size .35s var(--ease),color .35s,background .35s;
  letter-spacing:0;
}
.field.float textarea ~ label{top:18px}
.field.float input:focus + label,
.field.float input:not(:placeholder-shown) + label,
.field.float textarea:focus ~ label,
.field.float textarea:not(:placeholder-shown) ~ label,
.field.float.has-value label{
  top:-9px;left:12px;font-size:.7rem;font-weight:500;letter-spacing:.3px;
  color:var(--ink-hi);background:var(--white);
}

/* ---- Reviews: empty-state CTA + write-a-review modal ---- */
.review-empty{
  max-width:480px;margin:0 auto;text-align:center;padding:56px 32px;
  background:var(--surface-1);border:1px solid var(--line);border-radius:var(--radius-lg);
}
.review-empty-stars{display:flex;justify-content:center;gap:8px;margin-bottom:20px;color:var(--line-paper)}
.review-empty-stars svg{width:26px;height:26px;fill:none;stroke:currentColor;stroke-width:1.4}
.review-empty p{color:var(--text-muted);margin-bottom:28px;font-weight:300}

.review-modal{
  position:fixed;inset:0;z-index:2000;display:flex;align-items:center;justify-content:center;padding:24px;
  background:rgba(10,15,24,.94);opacity:0;visibility:hidden;transition:opacity .3s ease,visibility 0s .3s;
}
.review-modal.is-active{opacity:1;visibility:visible;transition:opacity .3s ease}
.review-modal-panel{
  position:relative;width:100%;max-width:600px;max-height:88vh;overflow-y:auto;
  background:var(--paper);border-radius:var(--radius-lg);padding:48px;box-shadow:var(--shadow-lg);
  transform:scale(.97);transition:transform .3s ease;
}
.review-modal.is-active .review-modal-panel{transform:scale(1)}
.review-modal-panel h3{margin-bottom:12px}
.review-modal-lead{color:var(--ink-muted);font-weight:300;margin-bottom:28px;font-size:.92rem;line-height:1.6}
.review-modal .lb-close{position:absolute;top:20px;right:20px;width:38px;height:38px;border-radius:50%;background:var(--surface-1);border:1px solid var(--line-paper);color:var(--ink-hi);display:flex;align-items:center;justify-content:center;transition:background .3s,transform .3s}
.review-modal .lb-close:hover{background:var(--line-paper);transform:rotate(90deg)}
.review-modal .lb-close svg{width:16px;height:16px;stroke-width:1.6}

.review-rating-label{display:block}
.star-rating{display:flex;flex-direction:row-reverse;justify-content:flex-end;gap:6px;margin-top:10px}
.star-rating input{position:absolute;opacity:0;width:1px;height:1px}
.star-rating label{cursor:pointer;color:var(--line-paper);transition:color .2s}
.star-rating label svg{width:30px;height:30px;fill:currentColor;stroke:none;display:block}
.star-rating input:checked ~ label,
.star-rating label:hover,
.star-rating label:hover ~ label{color:var(--accent)}
.star-rating input:focus-visible + label{outline:2px solid var(--accent-2);outline-offset:2px;border-radius:4px}

.contact-info-card{background:var(--surface-1);color:var(--text-hi);border-radius:var(--radius-lg);padding:48px 40px}
.ci-row{display:flex;gap:18px;align-items:flex-start;padding:20px 0;border-bottom:1px solid var(--line)}
.ci-row:last-child{border-bottom:none}
.ci-row .ic{width:20px;height:20px;color:var(--accent);display:flex;align-items:center;justify-content:center;flex-shrink:0;margin-top:2px}
.ci-row .ic svg{stroke-width:1.2}
.ci-row strong{display:block;font-size:.86rem;color:var(--text-hi);margin-bottom:4px;font-weight:500}
.ci-row span,.ci-row a{font-size:.86rem;color:var(--text-muted);font-weight:300}
.ci-row a:hover{color:var(--accent)}

/* =========================================================
   Footer — minimal
   ========================================================= */
.site-footer{background:var(--bg);color:var(--text-muted);padding-top:120px;border-top:1px solid var(--line)}
.footer-grid{display:grid;grid-template-columns:1.6fr 1fr 1fr 1.2fr;gap:60px;padding-bottom:80px}
.footer-brand p{color:var(--text-muted);font-size:.9rem;margin:22px 0 28px;max-width:300px;font-weight:300;line-height:1.7}
.footer-brand .brand-text strong{color:var(--text-hi)}
.social-row{display:flex;gap:22px}
.social-row a{color:var(--text-muted);transition:color .3s}
.social-row a:hover{color:var(--accent)}
.social-row svg{width:16px;height:16px;stroke-width:1.3}
.footer-col h3{color:var(--text-hi);font-family:var(--font-body);font-size:.7rem;letter-spacing:2px;text-transform:uppercase;margin-bottom:26px;font-weight:500}
.footer-col ul{display:flex;flex-direction:column;gap:15px}
.footer-col a{font-size:.88rem;color:var(--text-muted);transition:color .3s,padding-left .3s;font-weight:300}
.footer-col a:hover{color:var(--text-hi);padding-left:4px}
.footer-newsletter p{font-size:.88rem;color:var(--text-muted);margin-bottom:20px;font-weight:300}
.nl-form{display:flex;border-bottom:1px solid var(--line-strong);padding-bottom:12px}
.nl-form input{flex:1;background:transparent;border:none;padding:6px 0;color:var(--text-hi);font-size:.88rem}
.nl-form input::placeholder{color:var(--text-faint)}
.nl-form button{width:32px;height:32px;display:flex;align-items:center;justify-content:center;flex-shrink:0;color:var(--accent)}
.nl-form button svg{width:16px;height:16px}
.footer-bottom{display:flex;justify-content:space-between;align-items:center;padding:30px 0;font-size:.78rem;flex-wrap:wrap;gap:14px;border-top:1px solid var(--line);font-weight:300}
.footer-bottom .badges{display:none}
@media(max-width:1024px){.footer-grid{grid-template-columns:1fr 1fr;gap:48px 32px}}
@media(max-width:640px){.footer-grid{grid-template-columns:1fr}}

/* =========================================================
   Reveal-on-scroll
   ========================================================= */
[data-reveal]{opacity:0;transform:translateY(28px);transition:opacity 1s var(--ease),transform 1s var(--ease)}
[data-reveal].in{opacity:1;transform:translateY(0)}
[data-reveal="fade"]{transform:none}
[data-reveal-group] [data-reveal]{transition-delay:calc(var(--i,0) * 110ms)}
/* GSAP ScrollTrigger owns these when available — avoid double-animating with the CSS transition above */
.gsap-active [data-reveal]{transition:none}

/* Cursor spotlight — soft glow following pointer over media */
.spotlight-target{position:relative}
.spotlight-target::after{
  content:"";position:absolute;inset:0;pointer-events:none;opacity:0;z-index:2;
  transition:opacity .5s var(--ease);
  background:radial-gradient(260px circle at var(--mx,50%) var(--my,50%), rgba(169,161,140,.32), transparent 70%);
}
.spotlight-target:hover::after{opacity:1}

/* =========================================================
   Misc pages: filter bar, sidebar, table
   ========================================================= */
.filter-bar{display:flex;gap:32px;flex-wrap:wrap;margin-bottom:56px;border-bottom:1px solid var(--line);padding-bottom:0}
.filter-bar button{padding:0 0 18px;font-size:.84rem;font-weight:400;color:var(--text-muted);border-bottom:1px solid transparent;margin-bottom:-1px;transition:.3s}
.filter-bar button:hover{color:var(--text-hi)}
.filter-bar button.active{color:var(--text-hi);border-bottom-color:var(--accent)}

.spec-table{width:100%;border-collapse:collapse;background:var(--paper);border-radius:var(--radius-md);overflow:hidden;box-shadow:var(--shadow-paper)}
.spec-table th,.spec-table td{padding:20px 26px;text-align:left;font-size:.88rem;border-bottom:1px solid var(--line-paper);font-weight:300;color:var(--ink-body)}
.spec-table th{background:transparent;color:var(--ink-muted);font-weight:500;font-size:.7rem;letter-spacing:1.4px;text-transform:uppercase;border-bottom:1px solid rgba(15,23,36,.16)}
.spec-table tr:last-child td{border-bottom:none}

.two-col-info{display:grid;grid-template-columns:1fr 1fr;gap:80px;align-items:start}
@media(max-width:900px){.two-col-info{grid-template-columns:1fr}}

.bullet-list{display:flex;flex-direction:column;gap:26px}
.bullet-list li{display:flex;gap:18px;align-items:flex-start}
.bullet-list .ic{width:22px;height:22px;color:var(--accent);display:flex;align-items:center;justify-content:center;flex-shrink:0;margin-top:3px}
.bullet-list .ic svg{stroke-width:1.2}
.bullet-list strong{display:block;font-size:.98rem;color:var(--text-hi);margin-bottom:6px;font-weight:500}
.bullet-list span{font-size:.88rem;color:var(--text-muted);font-weight:300;line-height:1.7}

.divider-soft{height:1px;background:var(--line);margin:0}

.back-to-top{position:fixed;bottom:32px;right:32px;width:48px;height:48px;border-radius:50%;background:var(--surface-1);border:1px solid var(--line-strong);color:var(--accent);display:flex;align-items:center;justify-content:center;box-shadow:var(--shadow-md);opacity:0;visibility:hidden;transform:translateY(10px);transition:.4s;z-index:500}
.back-to-top.show{opacity:1;visibility:visible;transform:translateY(0)}
.back-to-top svg{width:16px;height:16px;stroke-width:1.3}

::selection{background:var(--accent);color:var(--bg)}
::-webkit-scrollbar{width:8px}
::-webkit-scrollbar-track{background:var(--bg)}
::-webkit-scrollbar-thumb{background:var(--surface-2);border-radius:10px}
