/* =========================================================
   KNITORA — Design System
   An editorial, industrial-luxe system for a B2B knitwear
   manufacturer. Warm paper ground, ink navy, brass hairlines,
   Playfair display type against Inter and IBM Plex Mono.
   ========================================================= */

:root{
  /* --- Ink / neutrals --- */
  --ink:         #080C14;
  --navy-deep:   #0A0F1A;
  --navy:        #0F1826;
  --navy-soft:   #1B2534;

  /* --- Paper / warm neutrals --- */
  --paper:       #FFFFFF;
  --off-white:   #F8F6F1;
  --bone:        #F2EEE5;
  --ivory:       #EDE7DA;
  --sand:        #E4DCCB;

  /* --- Brass accent --- */
  --brass:       #B8935B;
  --brass-light: #D9C5A0;
  --brass-pale:  #EFE4CE;
  --brass-deep:  #795C2B;

  /* --- Text --- */
  --text:        #131822;
  --steel:       #5C6675;
  --steel-light: #8A93A1;
  --on-dark:     #EFEADF;
  --on-dark-dim: #A6AEBC;

  /* --- Lines --- */
  --line:        rgba(15,24,38,.13);
  --line-soft:   rgba(15,24,38,.07);
  --line-dark:   rgba(239,234,223,.14);

  --font-display: 'Playfair Display', 'Georgia', serif;
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono:    'IBM Plex Mono', 'Courier New', monospace;

  --container: 1340px;
  --gutter: clamp(22px, 5vw, 72px);
  --section-pad: clamp(72px, 8.5vw, 130px);
  --radius: 2px;

  --ease:      cubic-bezier(.22,.61,.36,1);
  --ease-expo: cubic-bezier(.16,1,.3,1);

  --shadow-sm: 0 1px 2px rgba(10,15,26,.04), 0 4px 14px rgba(10,15,26,.04);
  --shadow-md: 0 2px 6px rgba(10,15,26,.05), 0 18px 44px rgba(10,15,26,.07);
  --shadow-lg: 0 4px 12px rgba(10,15,26,.06), 0 34px 80px rgba(10,15,26,.12);
}

*, *::before, *::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; -webkit-text-size-adjust:100%; }
body{
  margin:0;
  font-family:var(--font-body);
  color:var(--text);
  background:var(--off-white);
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  font-size:16px;
  line-height:1.65;
  font-weight:400;
  /* clip (not hidden) — `hidden` would make body a scroll container and break the sticky header */
  overflow-x:clip;
}
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
ul{ list-style:none; margin:0; padding:0; }
h1,h2,h3,h4,h5{ font-family:var(--font-display); font-weight:600; line-height:1.1; margin:0; color:var(--navy); }
p{ margin:0; }
button{ font-family:inherit; cursor:pointer; }
input, textarea, select{ font-family:inherit; font-size:1rem; }
::selection{ background:var(--brass); color:var(--ink); }

:focus-visible{
  outline:2px solid var(--brass);
  outline-offset:3px;
  border-radius:1px;
}

/* Film grain — the one texture that stops flat colour reading as "template" */
.grain{
  position:fixed; inset:0; z-index:9999; pointer-events:none; opacity:.035;
  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='.82' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode:multiply;
}

/* Scroll progress hairline */
.scroll-progress{
  position:fixed; top:0; left:0; height:2px; width:0%; z-index:9998;
  background:linear-gradient(90deg, var(--brass-deep), var(--brass), var(--brass-light));
  transition:width .1s linear;
}

.container{ max-width:var(--container); margin:0 auto; padding:0 var(--gutter); }
.section{ padding:var(--section-pad) 0; position:relative; }
.section--tight{ padding:clamp(56px,7vw,96px) 0; }
.section--navy{ background:var(--navy); color:var(--on-dark); }
.section--navy h1,.section--navy h2,.section--navy h3{ color:var(--on-dark); }
.section--ivory{ background:var(--bone); }
.section--border-top{ border-top:1px solid var(--line); }

/* ---------- Editorial micro-label ---------- */
.eyebrow{
  display:inline-flex; align-items:center; gap:12px;
  font-family:var(--font-mono); font-size:.68rem; letter-spacing:.2em; text-transform:uppercase;
  color:var(--brass-deep); font-weight:500; margin-bottom:22px;
}
.section--navy .eyebrow, .hero .eyebrow, .page-hero .eyebrow, .cta-band .eyebrow{ color:var(--brass-light); }
.eyebrow::before{ content:''; width:30px; height:1px; background:currentColor; opacity:.65; display:inline-block; }

/* ---------- Type scale ---------- */
h1.h1, .h1{
  font-size:clamp(2.7rem, 6.4vw, 5.6rem);
  letter-spacing:-.028em; line-height:1.0; font-weight:600;
  text-wrap:balance;
}
h2.h2, .h2{
  font-size:clamp(2rem, 4vw, 3.3rem);
  letter-spacing:-.022em; line-height:1.08; font-weight:600;
  text-wrap:balance;
}
h3.h3, .h3{ font-size:clamp(1.3rem, 2vw, 1.6rem); letter-spacing:-.012em; }
.h1 em, .h2 em{ font-style:italic; color:var(--brass); font-weight:500; }
.section--navy .h2 em{ color:var(--brass-light); }

.lede{
  font-size:clamp(1.04rem, 1.4vw, 1.16rem); color:var(--steel);
  max-width:58ch; line-height:1.72; font-weight:400;
}
.section--navy .lede{ color:var(--on-dark-dim); }

.section-head{ display:flex; justify-content:space-between; align-items:flex-end; gap:48px; margin-bottom:clamp(44px,5vw,72px); flex-wrap:wrap; }
.section-head__text{ max-width:720px; }
.section-head__text .h2{ margin-bottom:20px; }
.section-head__text .lede{ margin-bottom:0; }
.section-head--center{ flex-direction:column; align-items:center; text-align:center; margin-left:auto; margin-right:auto; }
.section-head--center .eyebrow{ justify-content:center; }
.section-head--center .lede{ max-width:62ch; margin-left:auto; margin-right:auto; }

/* ---------- Buttons ---------- */
.btn{
  position:relative; overflow:hidden;
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  padding:17px 34px; border-radius:var(--radius); border:1px solid transparent;
  font-size:.74rem; letter-spacing:.14em; text-transform:uppercase; font-weight:600;
  transition:color .35s var(--ease), border-color .35s var(--ease), background .35s var(--ease), transform .35s var(--ease);
  white-space:nowrap; isolation:isolate;
}
/* sweeping fill on hover */
.btn::before{
  content:''; position:absolute; inset:0; z-index:-1;
  transform:scaleX(0); transform-origin:right center;
  transition:transform .45s var(--ease-expo);
}
.btn:hover::before{ transform:scaleX(1); transform-origin:left center; }

.btn--primary{ background:var(--brass); color:var(--ink); border-color:var(--brass); }
.btn--primary::before{ background:var(--ink); }
.btn--primary:hover{ color:var(--brass-light); border-color:var(--ink); }

.btn--outline{ background:transparent; color:var(--navy); border-color:rgba(15,24,38,.28); }
.btn--outline::before{ background:var(--navy); }
.btn--outline:hover{ color:var(--on-dark); border-color:var(--navy); }

.section--navy .btn--outline{ color:var(--on-dark); border-color:var(--line-dark); }
.section--navy .btn--outline::before{ background:var(--on-dark); }
.section--navy .btn--outline:hover{ color:var(--navy); border-color:var(--on-dark); }

.btn--ghost-light{ background:transparent; color:var(--on-dark); border-color:rgba(239,234,223,.34); }
.btn--ghost-light::before{ background:var(--on-dark); }
.btn--ghost-light:hover{ color:var(--ink); border-color:var(--on-dark); }

.btn--sm{ padding:12px 22px; font-size:.66rem; letter-spacing:.12em; }
.btn--block{ width:100%; }
.btn:active{ transform:translateY(1px); }

/* ---------- Announcement bar ---------- */
.announcement-bar{ background:var(--ink); color:var(--brass-light); overflow:hidden; }
.announcement-bar__track{ display:flex; white-space:nowrap; animation:marquee 44s linear infinite; }
.announcement-bar:hover .announcement-bar__track{ animation-play-state:paused; }
@keyframes marquee{ from{transform:translateX(0);} to{transform:translateX(-50%);} }
.announcement-bar__list{ display:flex; }
.announcement-bar__item{
  padding:11px 30px; font-family:var(--font-mono); font-size:.66rem; letter-spacing:.18em; text-transform:uppercase;
  white-space:nowrap; position:relative; opacity:.85;
}
.announcement-bar__item::after{
  content:''; position:absolute; right:0; top:50%; transform:translateY(-50%);
  width:3px; height:3px; border-radius:50%; background:var(--brass); opacity:.5;
}

/* ---------- Header ---------- */
.site-header{
  position:sticky; top:0; z-index:200;
  background:rgba(248,246,241,.82); backdrop-filter:blur(16px) saturate(140%);
  border-bottom:1px solid var(--line-soft);
  transition:background .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.site-header__inner{
  max-width:var(--container); margin:0 auto; padding:0 var(--gutter);
  height:88px; display:flex; align-items:center; justify-content:space-between; gap:28px;
  transition:height .35s var(--ease);
}
.site-header.is-scrolled{ background:rgba(248,246,241,.95); border-color:var(--line); box-shadow:0 12px 34px rgba(10,15,26,.06); }
.site-header.is-scrolled .site-header__inner{ height:72px; }

.site-header__logo{
  font-family:var(--font-display); font-weight:600; font-size:1.5rem;
  letter-spacing:.01em; color:var(--navy); flex-shrink:0; line-height:1;
}
.site-header__logo span.mark{ color:var(--brass-deep); }

.site-header__nav-list{ display:flex; align-items:center; gap:34px; }
.site-header__nav-item{ position:relative; }
.site-header__nav-link{
  font-size:.82rem; font-weight:500; color:var(--navy); padding:10px 0; position:relative;
  letter-spacing:.01em; display:inline-block;
}
.site-header__nav-link::after{
  content:''; position:absolute; left:0; bottom:4px; width:100%; height:1px; background:var(--brass);
  transform:scaleX(0); transform-origin:right center; transition:transform .4s var(--ease-expo);
}
.site-header__nav-link:hover::after{ transform:scaleX(1); transform-origin:left center; }
.site-header__nav-link[aria-current="page"]{ color:var(--brass-deep); }
.site-header__nav-link[aria-current="page"]::after{ transform:scaleX(1); }

.site-header__nav-item--dropdown{ display:flex; align-items:center; }
.site-header__dropdown{
  position:absolute; top:calc(100% + 16px); left:-18px;
  background:var(--paper); border:1px solid var(--line); min-width:230px; padding:10px;
  opacity:0; visibility:hidden; transform:translateY(8px);
  transition:opacity .28s var(--ease), transform .28s var(--ease), visibility .28s;
  box-shadow:var(--shadow-md);
}
.site-header__nav-item--dropdown:hover .site-header__dropdown,
.site-header__nav-item--dropdown:focus-within .site-header__dropdown{ opacity:1; visibility:visible; transform:translateY(0); }
.site-header__dropdown li a{ display:block; padding:11px 14px; font-size:.82rem; border-radius:var(--radius); transition:background .2s, color .2s, padding-left .25s var(--ease); }
.site-header__dropdown li a:hover{ background:var(--bone); color:var(--brass-deep); padding-left:20px; }

.site-header__actions{ display:flex; align-items:center; gap:18px; flex-shrink:0; }
.site-header__burger{ display:none; flex-direction:column; gap:5px; background:none; border:0; padding:8px; }
.site-header__burger span{ width:22px; height:1.5px; background:var(--navy); display:block; transition:transform .3s var(--ease); }

.mobile-nav{
  position:fixed; inset:0; z-index:300; background:var(--off-white);
  transform:translateX(100%); transition:transform .45s var(--ease-expo);
  display:flex; flex-direction:column; padding:26px; overflow-y:auto;
}
.mobile-nav.is-open{ transform:translateX(0); }
.mobile-nav__header{ display:flex; justify-content:space-between; align-items:center; margin-bottom:28px; }
.mobile-nav__title{ font-family:var(--font-mono); font-size:.7rem; letter-spacing:.2em; text-transform:uppercase; color:var(--brass-deep); }
.mobile-nav__close{ background:none; border:0; font-size:1.9rem; line-height:1; color:var(--navy); }
.mobile-nav__list{ display:flex; flex-direction:column; margin-bottom:28px; }
.mobile-nav__list a{ display:block; padding:16px 2px; font-size:1.15rem; font-family:var(--font-display); border-bottom:1px solid var(--line-soft); }
.mobile-nav__sub a{ font-family:var(--font-body); font-size:.9rem; padding-left:18px; color:var(--steel); }

/* =========================================================
   Hero
   ========================================================= */
.hero{ position:relative; background:var(--navy-deep); color:var(--on-dark); overflow:hidden; }
.hero__media{ position:absolute; inset:-8% 0 0; z-index:0; will-change:transform; }
.hero__media img{ width:100%; height:112%; object-fit:cover; opacity:.38; filter:grayscale(.35) contrast(1.05); }
.hero__media::after{
  content:''; position:absolute; inset:0;
  background:
    radial-gradient(120% 80% at 20% 10%, rgba(10,15,26,.15) 0%, rgba(10,15,26,.72) 55%, rgba(10,15,26,.94) 100%),
    linear-gradient(180deg, rgba(10,15,26,.5) 0%, rgba(10,15,26,.62) 55%, var(--navy-deep) 100%);
}
/* faint vertical hairline grid — the "drafting table" cue */
.hero__grid{
  position:absolute; inset:0; z-index:1; pointer-events:none;
  max-width:var(--container); margin:0 auto; padding:0 var(--gutter);
  display:grid; grid-template-columns:repeat(5,1fr);
}
.hero__grid span{ border-left:1px solid rgba(239,234,223,.055); }
.hero__grid span:first-child{ border-left:0; }

.hero__inner{
  position:relative; z-index:2; max-width:var(--container); margin:0 auto;
  padding:clamp(96px,15vw,180px) var(--gutter) clamp(72px,9vw,110px);
}
.hero__content{ max-width:min(940px, 74%); }
.hero__title{ color:var(--on-dark); margin-bottom:30px; }
.hero__title .line{ display:block; overflow:hidden; }
.hero__title .line > span{ display:block; }
.hero__lede{
  font-size:clamp(1.05rem,1.5vw,1.24rem); color:var(--on-dark-dim);
  max-width:52ch; margin-bottom:42px; line-height:1.68; font-weight:300;
}
.hero__ctas{ display:flex; gap:14px; flex-wrap:wrap; margin-bottom:clamp(56px,8vw,88px); }

.hero__stats{
  display:grid; grid-template-columns:repeat(5,minmax(0,1fr));
  border-top:1px solid var(--line-dark); padding-top:34px; gap:0;
}
.hero__stats > div{ padding:0 26px; border-left:1px solid var(--line-dark); }
.hero__stats > div:first-child{ padding-left:0; border-left:0; }
.hero__stat-value{
  font-family:var(--font-display); font-size:clamp(1.6rem,3vw,2.5rem);
  color:var(--brass-light); line-height:1; letter-spacing:-.02em; font-weight:500;
}
.hero__stat-label{
  font-family:var(--font-mono); font-size:.62rem; letter-spacing:.16em; text-transform:uppercase;
  color:var(--steel-light); margin-top:12px; line-height:1.5;
}

.hero__cue{
  position:absolute; right:var(--gutter); bottom:0; z-index:3;
  display:flex; flex-direction:column; align-items:center; gap:12px; padding-bottom:26px;
  color:var(--steel-light);
}
.hero__cue-line{ width:1px; height:52px; background:rgba(239,234,223,.18); position:relative; overflow:hidden; }
.hero__cue-line::after{
  content:''; position:absolute; top:-52px; left:0; width:1px; height:52px;
  background:var(--brass); animation:cue 2.4s var(--ease) infinite;
}
@keyframes cue{ 0%{transform:translateY(0);} 60%,100%{transform:translateY(104px);} }
.hero__cue-text{ font-family:var(--font-mono); font-size:.58rem; letter-spacing:.22em; text-transform:uppercase; writing-mode:vertical-rl; }

/* Interior page hero */
.page-hero{ position:relative; background:var(--navy-deep); color:var(--on-dark); overflow:hidden; }
.page-hero__media{ position:absolute; inset:-6% 0 0; will-change:transform; }
.page-hero__media img{ width:100%; height:108%; object-fit:cover; opacity:.3; filter:grayscale(.4); }
.page-hero__media::after{
  content:''; position:absolute; inset:0;
  background:linear-gradient(180deg, rgba(10,15,26,.55), rgba(10,15,26,.86) 60%, var(--navy-deep) 100%);
}
.page-hero__inner{
  position:relative; z-index:1; max-width:var(--container); margin:0 auto;
  padding:clamp(72px,11vw,132px) var(--gutter) clamp(56px,7vw,86px);
}
.breadcrumb{ font-family:var(--font-mono); font-size:.66rem; letter-spacing:.16em; text-transform:uppercase; color:var(--steel-light); margin-bottom:26px; }
.breadcrumb a{ color:var(--on-dark-dim); transition:color .2s; }
.breadcrumb a:hover{ color:var(--brass-light); }
.breadcrumb span{ margin:0 8px; color:var(--brass); }
.page-hero__title{ color:var(--on-dark); max-width:18ch; font-size:clamp(2.4rem,5vw,4.4rem); }
.page-hero p{ color:var(--on-dark-dim); max-width:56ch; margin-top:24px; font-size:1.06rem; font-weight:300; line-height:1.7; }

/* =========================================================
   Grids / Cards
   ========================================================= */
.grid{ display:grid; gap:clamp(20px,2vw,30px); }
.grid--3{ grid-template-columns:repeat(3,minmax(0,1fr)); }
.grid--4{ grid-template-columns:repeat(4,minmax(0,1fr)); }
.grid--2{ grid-template-columns:repeat(2,minmax(0,1fr)); }

.card{
  background:var(--paper); border:1px solid var(--line-soft); border-radius:var(--radius);
  overflow:hidden; display:flex; flex-direction:column;
  transition:transform .55s var(--ease-expo), box-shadow .55s var(--ease-expo), border-color .4s var(--ease);
}
.card:hover{ transform:translateY(-6px); box-shadow:var(--shadow-lg); border-color:var(--line); }
.card__media{ aspect-ratio:4/3; overflow:hidden; background:var(--ivory); position:relative; }
.card__media::after{
  content:''; position:absolute; inset:0; opacity:0; transition:opacity .5s var(--ease);
  background:linear-gradient(180deg, rgba(10,15,26,0) 45%, rgba(10,15,26,.4) 100%);
}
.card:hover .card__media::after{ opacity:1; }
.card__media img{ width:100%; height:100%; object-fit:cover; transition:transform .9s var(--ease-expo); }
.card:hover .card__media img{ transform:scale(1.07); }
.card__body{ padding:30px; display:flex; flex-direction:column; flex:1; }
.card__tag{ font-family:var(--font-mono); font-size:.62rem; letter-spacing:.16em; text-transform:uppercase; color:var(--brass-deep); background:var(--bone); border:1px solid var(--line-soft); padding:5px 11px; display:inline-block; margin-bottom:16px; align-self:flex-start; }
.card__title{ font-size:1.22rem; margin-bottom:10px; letter-spacing:-.012em; }
.card__desc{ color:var(--steel); font-size:.92rem; line-height:1.68; }
.card__meta{ margin-top:22px; padding-top:20px; border-top:1px solid var(--line-soft); display:flex; flex-direction:column; gap:7px; font-size:.78rem; color:var(--steel); }
.card__meta b{ color:var(--navy); font-weight:600; }
.card__link{
  margin-top:20px; font-family:var(--font-mono); font-size:.68rem; font-weight:500; text-transform:uppercase;
  letter-spacing:.14em; color:var(--brass-deep); display:inline-flex; align-items:center; gap:8px;
  align-self:flex-start; padding:0; transition:gap .35s var(--ease), color .3s;
}
.card__link:hover{ gap:14px; color:var(--ink); }

.fact-list{ display:flex; flex-direction:column; gap:16px; margin-top:32px; }
.fact-list li{ display:flex; align-items:flex-start; gap:14px; font-size:.95rem; line-height:1.6; }
.fact-list li::before{
  content:''; flex-shrink:0; width:7px; height:7px; margin-top:.55em;
  background:var(--brass); transform:rotate(45deg);
}
.section--navy .fact-list li{ color:var(--on-dark-dim); }

/* Capability cards */
.capability-card{
  padding:38px 32px 36px; border:1px solid var(--line-soft); background:var(--paper);
  border-radius:var(--radius); height:100%; position:relative; overflow:hidden;
  transition:border-color .4s var(--ease), transform .5s var(--ease-expo), box-shadow .5s var(--ease-expo), background .4s var(--ease);
}
.capability-card::before{
  content:''; position:absolute; top:0; left:0; right:0; height:2px; background:var(--brass);
  transform:scaleX(0); transform-origin:left center; transition:transform .5s var(--ease-expo);
}
.capability-card:hover{ transform:translateY(-5px); box-shadow:var(--shadow-md); border-color:var(--line); }
.capability-card:hover::before{ transform:scaleX(1); }
.capability-card__tag{ font-family:var(--font-mono); font-size:.62rem; letter-spacing:.18em; text-transform:uppercase; color:var(--brass-deep); margin-bottom:20px; display:block; }
.capability-card__title{ font-size:1.24rem; margin-bottom:12px; letter-spacing:-.012em; }
.capability-card__desc{ color:var(--steel); font-size:.92rem; line-height:1.68; }
.section--navy .capability-card{ background:rgba(239,234,223,.035); border-color:var(--line-dark); }
.section--navy .capability-card:hover{ background:rgba(239,234,223,.07); box-shadow:none; }
.section--navy .capability-card__title{ color:var(--on-dark); }
.section--navy .capability-card__desc{ color:var(--on-dark-dim); }
.section--navy .capability-card__tag{ color:var(--brass-light); }

/* Timeline */
.timeline{ position:relative; }
.timeline__row{
  display:grid; grid-template-columns:150px 1fr; gap:40px; padding:34px 0;
  border-top:1px solid var(--line); transition:background .4s var(--ease);
}
.timeline__row:last-child{ border-bottom:1px solid var(--line); }
.timeline__row:hover{ background:linear-gradient(90deg, rgba(184,147,91,.055), transparent 60%); }
.timeline__year{ font-family:var(--font-display); font-size:2rem; color:var(--brass-deep); line-height:1; letter-spacing:-.02em; }
.timeline__title{ font-family:var(--font-display); font-size:1.15rem; margin-bottom:8px; color:var(--navy); }
.timeline__desc{ color:var(--steel); font-size:.93rem; max-width:62ch; line-height:1.7; }

/* Process steps */
.process-list{ counter-reset:step; display:flex; flex-direction:column; }
.process-step{
  display:grid; grid-template-columns:96px 1fr; gap:36px; padding:34px 0;
  border-top:1px solid var(--line); transition:background .4s var(--ease); position:relative;
}
.process-list .process-step:last-child{ border-bottom:1px solid var(--line); }
.process-step:hover{ background:linear-gradient(90deg, rgba(184,147,91,.055), transparent 60%); }
.process-step__num{ font-family:var(--font-mono); font-size:.8rem; color:var(--brass-deep); letter-spacing:.06em; padding-top:.35em; }
.process-step__num::before{ content:'0' counter(step); counter-increment:step; }
.process-step__title{ font-family:var(--font-display); font-size:1.2rem; margin-bottom:8px; color:var(--navy); }
.process-step__desc{ color:var(--steel); font-size:.93rem; max-width:66ch; line-height:1.7; }
.process-step--payment{ background:var(--bone); margin:0 -28px; padding:34px 28px; border-top:1px solid var(--line); }
.process-step--payment:hover{ background:var(--sand); }

/* Quality checklist — hairline mesh */
.check-grid{ display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:1px; background:var(--line); border:1px solid var(--line); }
.check-item{ background:var(--paper); padding:36px 32px; transition:background .4s var(--ease); }
.check-item:hover{ background:var(--bone); }
.check-item__num{ font-family:var(--font-mono); color:var(--brass-deep); font-size:.72rem; letter-spacing:.14em; margin-bottom:18px; display:block; }
.check-item__title{ font-family:var(--font-display); font-size:1.08rem; margin-bottom:10px; color:var(--navy); }
.check-item__desc{ color:var(--steel); font-size:.88rem; line-height:1.68; }

/* Industries */
.industry-card{
  padding:32px 28px; border:1px solid var(--line-soft); background:var(--paper); height:100%;
  transition:transform .5s var(--ease-expo), box-shadow .5s var(--ease-expo), border-color .4s; position:relative;
}
.industry-card::after{
  content:''; position:absolute; left:28px; bottom:28px; width:22px; height:1px; background:var(--brass);
  transform:scaleX(0); transform-origin:left; transition:transform .45s var(--ease-expo);
}
.industry-card:hover{ transform:translateY(-4px); box-shadow:var(--shadow-md); border-color:var(--line); }
.industry-card:hover::after{ transform:scaleX(1); }
.industry-card__title{ font-size:1.06rem; margin-bottom:10px; letter-spacing:-.01em; }
.industry-card__desc{ color:var(--steel); font-size:.88rem; line-height:1.66; padding-bottom:22px; }

/* Spec rows */
.spec-row{ display:flex; justify-content:space-between; gap:16px; font-size:.8rem; padding:9px 0; border-top:1px solid var(--line-soft); color:var(--steel); }
.spec-row span:first-child{ font-family:var(--font-mono); font-size:.66rem; letter-spacing:.1em; text-transform:uppercase; color:var(--steel); flex-shrink:0; }
.spec-row span:last-child{ color:var(--navy); font-weight:500; text-align:right; }

/* FAQ accordion */
.faq-list{ border-top:1px solid var(--line); max-width:900px; }
.faq-item{ border-bottom:1px solid var(--line); }
.faq-item__q{
  width:100%; display:flex; justify-content:space-between; align-items:center; gap:24px;
  padding:28px 0; background:none; border:0; text-align:left;
  font-family:var(--font-display); font-size:1.12rem; color:var(--navy); letter-spacing:-.01em;
  transition:color .3s var(--ease);
}
.faq-item__q:hover{ color:var(--brass-deep); }
.faq-item__icon{ font-size:1.4rem; color:var(--brass-deep); flex-shrink:0; transition:transform .4s var(--ease-expo); line-height:1; }
.faq-item.is-open .faq-item__icon{ transform:rotate(135deg); }
.faq-item__a{ max-height:0; overflow:hidden; transition:max-height .45s var(--ease-expo); }
.faq-item__a p{ padding-bottom:28px; color:var(--steel); max-width:76ch; line-height:1.78; font-size:.95rem; }
.faq-item.is-open .faq-item__a{ max-height:520px; }

/* =========================================================
   Testimonials — editorial pull-quote slider
   ========================================================= */
.testimonial-card{ background:var(--paper); border:1px solid var(--line-soft); padding:38px; height:100%; display:flex; flex-direction:column; }
.testimonial-card__quote{ font-family:var(--font-display); font-size:1.12rem; color:var(--navy); line-height:1.6; margin-bottom:26px; flex:1; }
.testimonial-card__name{ font-weight:600; font-size:.9rem; }
.testimonial-card__role{ color:var(--steel); font-size:.8rem; }

.testi-slider{ position:relative; max-width:920px; margin:0 auto; padding:0 76px; }
.testi-slider__viewport{ overflow:hidden; }
.testi-slider__track{ display:flex; transition:transform .75s var(--ease-expo); }
.testi-slide{ flex:0 0 100%; text-align:center; padding:14px 10px 8px; }
.testi-slide__mark{
  font-family:var(--font-display); font-size:5.5rem; line-height:.7; color:var(--brass);
  display:block; margin-bottom:10px; opacity:.35;
}
.testi-slide__quote{
  font-family:var(--font-display); font-weight:500; font-size:clamp(1.3rem,2.6vw,1.85rem);
  color:var(--navy); line-height:1.48; margin:0 auto 32px;
  text-wrap:balance; letter-spacing:-.015em; max-width:680px;
}
.testi-slide__name{ font-weight:600; font-size:.92rem; color:var(--navy); }
.testi-slide__role{ color:var(--brass-deep); font-size:.66rem; margin-top:7px; font-family:var(--font-mono); letter-spacing:.18em; text-transform:uppercase; }
.testi-slider__arrow{
  position:absolute; top:44%; transform:translateY(-50%); width:52px; height:52px; border-radius:50%;
  border:1px solid var(--line); background:transparent; font-size:1.4rem; line-height:1; color:var(--navy);
  display:flex; align-items:center; justify-content:center; cursor:pointer;
  transition:background .35s var(--ease), border-color .35s var(--ease), color .35s var(--ease), transform .35s var(--ease);
}
.testi-slider__arrow:hover{ background:var(--navy); border-color:var(--navy); color:var(--brass-light); }
.testi-slider__arrow--prev{ left:0; }
.testi-slider__arrow--next{ right:0; }
.testi-slider__arrow--prev:hover{ transform:translateY(-50%) translateX(-3px); }
.testi-slider__arrow--next:hover{ transform:translateY(-50%) translateX(3px); }
.testi-slider__dots{ display:flex; justify-content:center; gap:10px; margin-top:38px; }
.testi-dot{ width:7px; height:7px; border-radius:50%; background:var(--sand); border:0; padding:0; cursor:pointer; transition:all .45s var(--ease-expo); }
.testi-dot:hover{ background:var(--brass-light); }
.testi-dot.is-active{ background:var(--brass); width:26px; border-radius:4px; }

/* =========================================================
   Credentials
   ========================================================= */
.credential-card{
  background:var(--paper); border:1px solid var(--line-soft); padding:44px 36px; height:100%;
  transition:transform .5s var(--ease-expo), box-shadow .5s var(--ease-expo), border-color .4s;
}
.credential-card:hover{ transform:translateY(-5px); box-shadow:var(--shadow-md); border-color:var(--line); }
.credential-card__seal{
  width:66px; height:66px; border-radius:50%; border:1px solid var(--brass);
  display:flex; align-items:center; justify-content:center; position:relative;
  font-family:var(--font-mono); font-size:.66rem; font-weight:500; letter-spacing:.06em;
  color:var(--brass-deep); margin-bottom:26px; flex-shrink:0;
}
.credential-card__seal::after{
  content:''; position:absolute; inset:4px; border-radius:50%; border:1px solid rgba(184,147,91,.32);
}
.credential-card__name{ font-size:1.4rem; margin-bottom:6px; letter-spacing:-.015em; }
.credential-card__full{ font-family:var(--font-mono); font-size:.66rem; letter-spacing:.14em; color:var(--brass-deep); text-transform:uppercase; margin-bottom:20px; line-height:1.6; }
.credential-card__desc{ color:var(--steel); font-size:.9rem; line-height:1.72; }
.credential-note{ display:flex; align-items:center; gap:12px; font-size:.86rem; color:var(--steel); margin-top:40px; padding-top:28px; border-top:1px solid var(--line); }
.credential-note::before{ content:''; width:7px; height:7px; background:var(--brass); transform:rotate(45deg); flex-shrink:0; }

/* Chain diagram */
.chain{ display:flex; align-items:center; justify-content:space-between; flex-wrap:wrap; gap:10px; }
.chain__node{
  background:var(--paper); border:1px solid var(--line); padding:18px 20px; font-size:.82rem;
  font-weight:500; text-align:center; flex:1; min-width:140px; transition:all .4s var(--ease);
}
.chain__node:hover{ background:var(--navy); color:var(--on-dark); border-color:var(--navy); }
.chain__arrow{ color:var(--brass-deep); font-size:1.1rem; flex-shrink:0; }

/* Sustainability value chain */
.value-chain{ display:grid; grid-template-columns:repeat(7,1fr); gap:1px; background:var(--line); border:1px solid var(--line); }
.value-chain__node{ background:var(--paper); padding:24px 12px; font-size:.74rem; font-weight:500; text-align:center; transition:background .4s var(--ease); }
.value-chain__node:hover{ background:var(--brass-pale); }

/* =========================================================
   CTA band
   ========================================================= */
.cta-band{
  background:var(--navy); color:var(--on-dark); padding:clamp(72px,10vw,124px) 0; text-align:center;
  position:relative; overflow:hidden;
}
.cta-band::before{
  content:''; position:absolute; inset:0;
  background:radial-gradient(70% 120% at 50% 0%, rgba(184,147,91,.16), transparent 62%);
}
.cta-band .container{ position:relative; z-index:1; }
.cta-band h2{ color:var(--on-dark); margin-bottom:20px; max-width:20ch; margin-left:auto; margin-right:auto; }
.cta-band .lede{ color:var(--on-dark-dim); margin:0 auto 42px; }
.cta-band__ctas{ display:flex; gap:14px; justify-content:center; flex-wrap:wrap; margin-bottom:52px; }
.cta-band__meta{ display:flex; justify-content:center; gap:0; flex-wrap:wrap; border-top:1px solid var(--line-dark); padding-top:34px; }
.cta-band__meta div{ text-align:center; padding:0 clamp(24px,4vw,54px); border-left:1px solid var(--line-dark); }
.cta-band__meta div:first-child{ border-left:0; }
.cta-band__meta b{ display:block; font-family:var(--font-display); color:var(--brass-light); font-size:1.15rem; margin-bottom:8px; font-weight:500; }
.cta-band__meta span{ font-size:.62rem; color:var(--steel-light); text-transform:uppercase; letter-spacing:.16em; font-family:var(--font-mono); }

/* =========================================================
   Split section
   ========================================================= */
.split{ display:grid; grid-template-columns:1fr 1fr; gap:clamp(44px,6vw,96px); align-items:center; }
.split__media{ position:relative; }
.split__media img{ width:100%; aspect-ratio:4/5; object-fit:cover; }
.split__media::after{
  content:''; position:absolute; inset:0; border:1px solid var(--brass); opacity:.35;
  transform:translate(18px,18px); pointer-events:none; transition:transform .6s var(--ease-expo);
}
.split:hover .split__media::after{ transform:translate(12px,12px); }
.split__badge{
  position:absolute; bottom:-26px; left:-26px; background:var(--brass); color:var(--ink);
  padding:24px 28px; text-align:center; box-shadow:var(--shadow-md);
}
.split__badge b{ display:block; font-family:var(--font-display); font-size:1.6rem; line-height:1; margin-bottom:6px; }
.split__badge span{ font-size:.6rem; text-transform:uppercase; letter-spacing:.16em; font-family:var(--font-mono); }

/* =========================================================
   Gallery + lightbox
   ========================================================= */
/* dense packing so the mixed 2x2 / 2x1 / 1x1 tiles backfill instead of
   leaving ragged holes in the mosaic */
.gallery-grid{ display:grid; grid-template-columns:repeat(4, minmax(0,1fr)); grid-auto-rows:200px; gap:12px; grid-auto-flow:dense; }
.gallery-item{ overflow:hidden; position:relative; border-radius:var(--radius); cursor:pointer; background:var(--ivory); }
.gallery-item img{ width:100%; height:100%; object-fit:cover; transition:transform 1s var(--ease-expo); }
.gallery-item::after{
  content:''; position:absolute; inset:0; background:linear-gradient(180deg, rgba(10,15,26,0) 40%, rgba(10,15,26,.78) 100%);
  opacity:0; transition:opacity .45s var(--ease);
}
.gallery-item:hover img, .gallery-item:focus-visible img{ transform:scale(1.08); }
.gallery-item:hover::after, .gallery-item:focus-visible::after{ opacity:1; }
.gallery-item__cap{
  position:absolute; left:0; right:0; bottom:0; padding:20px; color:var(--on-dark);
  font-family:var(--font-mono); font-size:.68rem; letter-spacing:.12em; text-transform:uppercase;
  opacity:0; transform:translateY(8px); transition:opacity .4s var(--ease), transform .5s var(--ease-expo); z-index:1;
}
.gallery-item:hover .gallery-item__cap, .gallery-item:focus-visible .gallery-item__cap{ opacity:1; transform:none; }
.gallery-item--lg{ grid-column:span 2; grid-row:span 2; }
.gallery-item--md{ grid-column:span 2; grid-row:span 1; }

.lightbox{ position:fixed; inset:0; z-index:500; display:none; }
.lightbox.is-open{ display:block; animation:lbIn .35s var(--ease) both; }
@keyframes lbIn{ from{opacity:0;} to{opacity:1;} }
.lightbox__overlay{ position:absolute; inset:0; background:rgba(8,12,20,.95); backdrop-filter:blur(6px); }
.lightbox__stage{ position:relative; height:100%; display:flex; align-items:center; justify-content:center; padding:clamp(56px,9vw,96px) clamp(56px,9vw,110px); }
.lightbox__img{ max-width:100%; max-height:100%; object-fit:contain; box-shadow:0 40px 100px rgba(0,0,0,.6); }
.lightbox__caption{
  position:absolute; left:0; right:0; bottom:32px; text-align:center; color:var(--on-dark-dim);
  font-size:.7rem; font-family:var(--font-mono); letter-spacing:.18em; text-transform:uppercase;
}
.lightbox__close{ position:absolute; top:26px; right:30px; background:none; border:0; color:var(--on-dark); font-size:2rem; line-height:1; cursor:pointer; transition:color .25s, transform .35s var(--ease); }
.lightbox__close:hover{ color:var(--brass); transform:rotate(90deg); }
.lightbox__nav{
  position:absolute; top:50%; transform:translateY(-50%); width:54px; height:54px; border-radius:50%;
  border:1px solid rgba(239,234,223,.24); background:rgba(239,234,223,.04); color:var(--on-dark);
  font-size:1.5rem; display:flex; align-items:center; justify-content:center; cursor:pointer;
  transition:background .3s, border-color .3s, color .3s;
}
.lightbox__nav:hover{ background:var(--brass); border-color:var(--brass); color:var(--ink); }
.lightbox__nav--prev{ left:24px; }
.lightbox__nav--next{ right:24px; }

/* =========================================================
   Forms
   ========================================================= */
.form-grid{ display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:24px; }
.field{ display:flex; flex-direction:column; gap:9px; }
.field--full{ grid-column:1 / -1; }
.field label{ font-family:var(--font-mono); font-size:.66rem; font-weight:500; letter-spacing:.14em; text-transform:uppercase; color:var(--brass-deep); }
.field label .opt{ color:var(--steel); font-weight:400; text-transform:none; letter-spacing:0; font-family:var(--font-body); }
.field input, .field select, .field textarea{
  padding:15px 16px; border:1px solid var(--line); background:var(--paper); border-radius:var(--radius);
  font-size:.94rem; color:var(--text); transition:border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.field input:focus, .field select:focus, .field textarea:focus{
  outline:none; border-color:var(--brass); box-shadow:0 0 0 3px rgba(184,147,91,.14);
}
.field--file{ border:1px dashed var(--sand); padding:24px; text-align:center; background:var(--bone); cursor:pointer; transition:border-color .3s, background .3s; }
.field--file:hover{ border-color:var(--brass); background:var(--brass-pale); }
.field--file input{ display:none; }
.field--file span{ font-size:.82rem; color:var(--steel); }
.form-note{ font-size:.78rem; color:var(--steel); margin-top:18px; }
.quote-meta{ display:flex; gap:0; flex-wrap:wrap; margin-top:36px; padding-top:30px; border-top:1px solid var(--line); }
.quote-meta div{ padding-right:32px; margin-right:32px; border-right:1px solid var(--line); }
.quote-meta div:last-child{ border-right:0; padding-right:0; margin-right:0; }
.quote-meta div b{ display:block; font-family:var(--font-display); font-size:1.05rem; color:var(--navy); }
.quote-meta div span{ font-size:.6rem; color:var(--steel); text-transform:uppercase; letter-spacing:.15em; font-family:var(--font-mono); }

/* Contact */
.contact-grid{ display:grid; grid-template-columns:.8fr 1.2fr; gap:clamp(48px,6vw,88px); }
.contact-item{ display:flex; gap:22px; padding:24px 0; border-top:1px solid var(--line); }
.contact-item:last-child{ border-bottom:1px solid var(--line); }
.contact-item__icon{ font-family:var(--font-mono); font-size:.64rem; color:var(--brass-deep); width:96px; flex-shrink:0; text-transform:uppercase; letter-spacing:.14em; padding-top:5px; }
.contact-item__value{ font-size:.98rem; line-height:1.6; }
.contact-item__value a{ transition:color .25s, border-color .25s; border-bottom:1px solid var(--sand); }
.contact-item__value a:hover{ color:var(--brass-deep); border-color:var(--brass); }

/* =========================================================
   Footer
   ========================================================= */
.site-footer{ background:var(--ink); color:var(--on-dark-dim); position:relative; }
.site-footer__top{
  max-width:var(--container); margin:0 auto; padding:clamp(64px,8vw,96px) var(--gutter) 56px;
  display:grid; grid-template-columns:1.5fr 1fr 1fr 1fr; gap:48px;
}
.site-footer__brand-text{ font-family:var(--font-display); font-size:1.75rem; color:var(--on-dark); letter-spacing:.01em; }
.site-footer__tagline{ margin-top:20px; font-size:.9rem; line-height:1.72; max-width:30ch; color:var(--steel-light); font-weight:300; }
.site-footer__heading{ font-family:var(--font-mono); font-size:.62rem; letter-spacing:.2em; text-transform:uppercase; color:var(--brass); margin-bottom:24px; font-weight:500; }
.site-footer__links{ display:flex; flex-direction:column; gap:13px; }
.site-footer__links a{ font-size:.88rem; transition:color .25s var(--ease), padding-left .3s var(--ease); display:inline-block; }
.site-footer__links a:hover{ color:var(--brass-light); padding-left:6px; }
.site-footer__note{ font-size:.82rem; color:var(--steel-light); line-height:1.6; font-weight:300; }
.site-footer__bottom{
  border-top:1px solid var(--line-dark);
  max-width:var(--container); margin:0 auto; padding:26px var(--gutter);
  display:flex; justify-content:space-between; flex-wrap:wrap; gap:10px;
  font-size:.74rem; color:#7C8695; font-family:var(--font-mono); letter-spacing:.06em;
}

/* =========================================================
   Quote drawer
   ========================================================= */
.quote-drawer{ position:fixed; inset:0; z-index:400; display:none; }
.quote-drawer.is-open{ display:block; }
.quote-drawer__overlay{ position:absolute; inset:0; background:rgba(8,12,20,.6); backdrop-filter:blur(3px); animation:lbIn .3s var(--ease) both; }
.quote-drawer__panel{
  position:absolute; right:0; top:0; bottom:0; width:min(500px,94vw); background:var(--off-white);
  padding:40px 32px; overflow-y:auto; box-shadow:-30px 0 80px rgba(8,12,20,.3);
  animation:drawerIn .5s var(--ease-expo) both;
}
@keyframes drawerIn{ from{transform:translateX(100%);} to{transform:none;} }
.quote-drawer__close{ background:none; border:0; font-size:1.7rem; float:right; color:var(--navy); line-height:1; transition:transform .35s var(--ease), color .25s; }
.quote-drawer__close:hover{ transform:rotate(90deg); color:var(--brass-deep); }

/* =========================================================
   Back to top
   ========================================================= */
.back-to-top{
  position:fixed; right:26px; bottom:26px; z-index:150; width:48px; height:48px; border-radius:50%;
  background:var(--navy); color:var(--brass-light); border:1px solid var(--line-dark); font-size:1.1rem;
  display:flex; align-items:center; justify-content:center; cursor:pointer;
  opacity:0; visibility:hidden; transform:translateY(12px) scale(.9);
  transition:opacity .4s var(--ease), transform .5s var(--ease-expo), background .3s, color .3s, visibility .4s;
  box-shadow:var(--shadow-md);
}
.back-to-top.is-visible{ opacity:1; visibility:visible; transform:none; }
.back-to-top:hover{ background:var(--brass); color:var(--ink); }

/* =========================================================
   Utilities
   ========================================================= */
.text-center{ text-align:center; }
.mt-0{ margin-top:0 !important; }
.flag{
  background:rgba(184,147,91,.1); border:1px dashed var(--brass); color:var(--brass-deep);
  font-family:var(--font-mono); font-size:.7rem; padding:11px 15px; display:inline-block; margin-top:12px;
  letter-spacing:.06em;
}
.placeholder-flag{ font-family:var(--font-mono); font-size:.6rem; letter-spacing:.14em; text-transform:uppercase; color:var(--brass-deep); background:rgba(184,147,91,.12); border:1px dashed var(--brass); padding:4px 9px; display:inline-block; margin-bottom:16px; }
.testimonial-card--placeholder{ border-style:dashed; background:var(--bone); }
.compliance-grid{ display:grid; grid-template-columns:repeat(4,minmax(0,1fr)); gap:20px; }
.compliance-card{ border:1px dashed var(--brass); background:var(--bone); padding:28px 20px; text-align:center; }
.compliance-card__mark{ font-family:var(--font-mono); font-size:.66rem; color:var(--brass-deep); letter-spacing:.12em; text-transform:uppercase; margin-bottom:12px; }
.compliance-card__name{ font-family:var(--font-display); font-size:1rem; color:var(--navy); }

/* =========================================================
   Motion — scroll reveal + staggered children
   ========================================================= */
[data-reveal]{
  opacity:0; transform:translateY(32px);
  transition:opacity .9s var(--ease-expo), transform .9s var(--ease-expo);
}
[data-reveal].is-visible{ opacity:1; transform:none; }

/* A container that staggers its children does not itself fade — otherwise the
   two transforms compound and the whole grid drifts as well as its cards. */
[data-reveal][data-stagger]{ opacity:1; transform:none; transition:none; }

/* Children of a staggered container cascade in one after another */
[data-stagger] > *{
  opacity:0; transform:translateY(26px);
  transition:opacity .8s var(--ease-expo), transform .8s var(--ease-expo);
}
[data-stagger].is-visible > *{ opacity:1; transform:none; }
[data-stagger].is-visible > *:nth-child(1){ transition-delay:.02s; }
[data-stagger].is-visible > *:nth-child(2){ transition-delay:.09s; }
[data-stagger].is-visible > *:nth-child(3){ transition-delay:.16s; }
[data-stagger].is-visible > *:nth-child(4){ transition-delay:.23s; }
[data-stagger].is-visible > *:nth-child(5){ transition-delay:.30s; }
[data-stagger].is-visible > *:nth-child(6){ transition-delay:.37s; }
[data-stagger].is-visible > *:nth-child(7){ transition-delay:.44s; }
[data-stagger].is-visible > *:nth-child(8){ transition-delay:.51s; }
[data-stagger].is-visible > *:nth-child(n+9){ transition-delay:.56s; }

/* Hero headline: line-by-line mask reveal */
.hero__title .line > span{
  transform:translateY(105%);
  transition:transform 1.15s var(--ease-expo);
}
.hero.is-ready .hero__title .line:nth-child(1) > span{ transform:none; transition-delay:.12s; }
.hero.is-ready .hero__title .line:nth-child(2) > span{ transform:none; transition-delay:.24s; }
.hero.is-ready .hero__title .line:nth-child(3) > span{ transform:none; transition-delay:.36s; }

.hero__eyebrow, .hero__lede, .hero__ctas, .hero__stats, .hero__cue{
  opacity:0; transform:translateY(20px);
  transition:opacity .9s var(--ease-expo), transform .9s var(--ease-expo);
}
.hero.is-ready .hero__eyebrow{ opacity:1; transform:none; transition-delay:.05s; }
.hero.is-ready .hero__lede{ opacity:1; transform:none; transition-delay:.52s; }
.hero.is-ready .hero__ctas{ opacity:1; transform:none; transition-delay:.62s; }
.hero.is-ready .hero__stats{ opacity:1; transform:none; transition-delay:.72s; }
.hero.is-ready .hero__cue{ opacity:1; transform:none; transition-delay:.9s; }

/* Interior page heroes get a quieter, CSS-only entrance */
.page-hero .breadcrumb{ animation:pgIn .8s var(--ease-expo) both .05s; }
.page-hero .eyebrow{ animation:pgIn .8s var(--ease-expo) both .14s; }
.page-hero__title{ animation:pgIn .9s var(--ease-expo) both .22s; }
.page-hero p{ animation:pgIn .9s var(--ease-expo) both .32s; }
@keyframes pgIn{ from{ opacity:0; transform:translateY(22px); } to{ opacity:1; transform:none; } }

@media (prefers-reduced-motion:reduce){
  html{ scroll-behavior:auto; }
  [data-reveal], [data-stagger] > *{ opacity:1 !important; transform:none !important; transition:none !important; }
  .hero__title .line > span{ transform:none !important; transition:none !important; }
  .hero__eyebrow, .hero__lede, .hero__ctas, .hero__stats, .hero__cue{ opacity:1 !important; transform:none !important; transition:none !important; }
  .announcement-bar__track{ animation:none; }
  .hero__cue-line::after{ animation:none; }
  .grain{ display:none; }
  .page-hero .breadcrumb, .page-hero .eyebrow, .page-hero__title, .page-hero p{ animation:none; }
  .lightbox.is-open, .quote-drawer__overlay, .quote-drawer__panel{ animation:none; }
}

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width:1100px){
  .hero__stats{ grid-template-columns:repeat(3,minmax(0,1fr)); row-gap:28px; }
  .hero__stats > div:nth-child(4){ padding-left:0; border-left:0; }
  .hero__content{ max-width:88%; }
}
@media (max-width:960px){
  .site-header__nav{ display:none; }
  .site-header__burger{ display:flex; }
  .grid--4{ grid-template-columns:repeat(2,minmax(0,1fr)); }
  .grid--3{ grid-template-columns:repeat(2,minmax(0,1fr)); }
  .split{ grid-template-columns:1fr; }
  .split__badge{ left:auto; right:-14px; bottom:-20px; }
  .contact-grid{ grid-template-columns:1fr; }
  .site-footer__top{ grid-template-columns:1fr 1fr; gap:40px; }
  .check-grid{ grid-template-columns:repeat(2,minmax(0,1fr)); }
  .compliance-grid{ grid-template-columns:repeat(2,minmax(0,1fr)); }
  .value-chain{ grid-template-columns:repeat(4,1fr); }
  .gallery-grid{ grid-template-columns:repeat(2,minmax(0,1fr)); grid-auto-rows:170px; }
  .gallery-item--lg{ grid-column:span 2; grid-row:span 1; }
  .gallery-item--md{ grid-column:span 1; }
  .hero__grid{ display:none; }
  .hero__cue{ display:none; }
  .timeline__row{ grid-template-columns:100px 1fr; gap:24px; }
}
@media (max-width:640px){
  .grid--4, .grid--3, .grid--2{ grid-template-columns:1fr; }
  .form-grid{ grid-template-columns:1fr; }
  .site-footer__top{ grid-template-columns:1fr; gap:36px; }
  .hero__content{ max-width:none; }
  .hero__stats{ grid-template-columns:repeat(2,minmax(0,1fr)); row-gap:26px; }
  .hero__stats > div{ padding:0 16px; }
  .hero__stats > div:nth-child(odd){ padding-left:0; border-left:0; }
  .hero__ctas .btn{ width:100%; }
  .process-step{ grid-template-columns:1fr; gap:10px; }
  .process-step__num{ padding-top:0; }
  .process-step--payment{ margin:0 -20px; padding:28px 20px; }
  .timeline__row{ grid-template-columns:1fr; gap:8px; }
  .value-chain{ grid-template-columns:repeat(2,1fr); }
  .check-grid{ grid-template-columns:1fr; }
  .compliance-grid{ grid-template-columns:1fr; }
  .section-head{ flex-direction:column; align-items:flex-start; }
  .testi-slider{ padding:0 4px 74px; }
  .testi-slider__arrow{ width:44px; height:44px; font-size:1.2rem; top:auto; bottom:0; transform:none; }
  .testi-slider__arrow--prev{ left:calc(50% - 58px); }
  .testi-slider__arrow--next{ right:calc(50% - 58px); }
  .testi-slider__arrow--prev:hover, .testi-slider__arrow--next:hover{ transform:none; }
  .testi-slide__mark{ font-size:3.6rem; }
  .lightbox__nav{ width:42px; height:42px; font-size:1.2rem; }
  .lightbox__nav--prev{ left:10px; }
  .lightbox__nav--next{ right:10px; }
  .lightbox__stage{ padding:70px 20px; }
  .cta-band__meta div{ border-left:0; padding:0 20px; }
  .quote-meta div{ border-right:0; padding-right:0; margin-right:24px; }
  .contact-item{ flex-direction:column; gap:8px; }
  .contact-item__icon{ width:auto; }
  .back-to-top{ right:16px; bottom:16px; }
}

/* =========================================================
   Mobile refinements
   Phones are where cold-outreach traffic actually lands, so
   these are corrections for real handheld use rather than
   just a narrower version of the desktop layout:
     1. micro-type raised to a readable floor (>=12px)
     2. tap targets brought up to the 44px guideline
     3. form controls at 16px so iOS doesn't zoom on focus
   ========================================================= */
@media (max-width:640px){

  /* ---- 1. Readable micro-type ---------------------------
     The mono micro-labels are a deliberate device, but at
     ~10.6px they stop being legible in the hand. Each of
     these lands at 12px or above once scaled. */
  .eyebrow                  { font-size:.78rem; letter-spacing:.17em; }
  .field label              { font-size:.76rem; letter-spacing:.11em; }
  .field label .opt         { font-size:.95em; }
  .spec-row                 { font-size:.86rem; }
  .spec-row span:first-child{ font-size:.76rem; }
  .contact-item__icon       { font-size:.76rem; }
  .announcement-bar__item   { font-size:.76rem; letter-spacing:.14em; }
  .testi-slide__role        { font-size:.76rem; letter-spacing:.14em; }
  .card__link               { font-size:.76rem; letter-spacing:.11em; }
  .capability-card__tag     { font-size:.76rem; }
  .credential-card__full    { font-size:.76rem; }
  .check-item__num          { font-size:.8rem; }
  .process-step__num        { font-size:.86rem; }
  .site-footer__heading     { font-size:.76rem; }
  .site-footer__bottom      { font-size:.76rem; }
  .site-footer__note        { font-size:.86rem; }
  .cta-band__meta span      { font-size:.76rem; letter-spacing:.13em; }
  .cta-band__meta b         { font-size:1.05rem; }
  .hero__stat-label         { font-size:.76rem; letter-spacing:.13em; }
  .quote-meta div span      { font-size:.76rem; letter-spacing:.12em; }
  .gallery-item__cap        { font-size:.76rem; }
  .breadcrumb               { font-size:.76rem; }
  .lightbox__caption        { font-size:.76rem; letter-spacing:.13em; }
  .mobile-nav__title        { font-size:.78rem; }
  .compliance-card__mark    { font-size:.76rem; }
  .placeholder-flag         { font-size:.76rem; }
  .flag                     { font-size:.76rem; }
  .form-note                { font-size:.84rem; }
  .card__meta               { font-size:.84rem; }
  .industry-card__desc,
  .check-item__desc         { font-size:.92rem; }

  /* ---- 2. Tap targets (44px minimum) -------------------- */
  .site-header__burger{ width:44px; height:44px; align-items:center; justify-content:center; padding:0; margin-right:-8px; }
  .site-header__actions{ gap:10px; }
  .btn--sm{ padding:14px 20px; min-height:44px; }
  .card__link{ min-height:44px; align-items:center; margin-top:14px; }
  .site-footer__links a{ padding:11px 0; }
  .site-footer__links{ gap:2px; }
  .contact-item__value a{ display:inline-block; padding:8px 0; }
  .faq-item__q{ padding:22px 0; min-height:60px; }
  .back-to-top{ width:46px; height:46px; }

  /* Carousel dots: keep the 7px visual, widen the hit area with a
     transparent pseudo-element, and space them so the areas don't overlap. */
  .testi-slider__dots{ gap:22px; }
  .testi-dot{ position:relative; }
  .testi-dot::after{
    content:''; position:absolute; left:50%; top:50%; transform:translate(-50%,-50%);
    width:28px; height:44px;
  }
  .testi-dot.is-active::after{ width:44px; }

  /* ---- 3. iOS: never auto-zoom on field focus ------------
     Safari zooms the viewport whenever a focused control is
     under 16px, which throws the whole layout off. */
  .field input, .field select, .field textarea{ font-size:16px; }
}

/* Coarse pointers (touch) at any width: no hover-only affordances,
   and give the gallery captions a permanent presence since there is
   no hover state to reveal them. */
@media (hover:none){
  .gallery-item__cap{ opacity:1; transform:none; }
  .gallery-item::after{ opacity:.85; }
  .card__media::after{ opacity:.35; }
}

/* Remaining sub-12px cases that live outside the block above */
@media (max-width:640px){
  .btn, .btn--sm{ font-size:.76rem; }
  .credential-card__seal{ width:72px; height:72px; font-size:.76rem; }
  .site-footer__bottom{ font-size:.76rem; }
}

/* Final mobile target/legibility cleanups */
@media (max-width:640px){
  .field label .opt{ font-size:1em; }
  .split__badge span{ font-size:.76rem; letter-spacing:.12em; }
  .split__badge{ padding:20px 22px; }
  .contact-item__value a{ padding:10px 0; }
  /* logo and breadcrumb are links too — give them a real target box */
  .site-header__logo{ display:inline-flex; align-items:center; min-height:44px; }
  .breadcrumb a{ display:inline-block; padding:11px 0; }
  .breadcrumb{ margin-bottom:16px; }
}

/* Mobile nav: every row is a primary navigation target, so none of them
   (including the indented sub-items) may fall below the 44px guideline. */
.mobile-nav__list a{ min-height:52px; display:flex; align-items:center; }
.mobile-nav__sub a{ min-height:46px; font-size:.95rem; padding-top:10px; padding-bottom:10px; }
.mobile-nav__close{ width:44px; height:44px; display:flex; align-items:center; justify-content:center; margin-right:-8px; }
.mobile-nav .btn{ min-height:52px; }

/* The mobile menu is long enough to scroll, which would bury the primary
   CTA below the fold. Pin it to the bottom of the panel so "Get a Quote"
   is reachable from anywhere in the menu. */
.mobile-nav{ padding-bottom:0; }
.mobile-nav__list{ margin-bottom:12px; }
.mobile-nav > .btn{
  position:sticky; bottom:0; margin-top:auto;
  background:var(--brass); border-color:var(--brass);
  box-shadow:0 -18px 24px -12px var(--off-white);
}
.mobile-nav::after{ content:''; display:block; height:18px; flex-shrink:0; }

/* Stat rows read as a jumble when they wrap inline on a phone —
   lay them out on an explicit grid instead. */
@media (max-width:640px){
  .quote-meta{ display:grid; grid-template-columns:repeat(2,1fr); gap:20px 16px; }
  .quote-meta div{ margin-right:0; padding-right:0; }
  .cta-band__meta{ display:grid; grid-template-columns:repeat(2,1fr); gap:22px 12px; }
  .cta-band__meta div{ padding:0; }
  .cta-band__meta div:last-child:nth-child(odd){ grid-column:1 / -1; }
}
