/* ==========================================================================
   Poliversal v2 — Approved design system
   Archivo (headings) · IBM Plex Sans (body) · IBM Plex Mono (labels/data)
   Warm palette · green #009B43 · beige #F4F1EA · sharp 2px radii
   ========================================================================== */
:root {
  --green: #009B43;
  --green-dark: #00813a;
  --ink: #181A1C;
  --body: #44484C;
  --muted: #5A5E62;
  --warm: #9A988F;     /* mono label grey */
  --warm-2: #8A8779;
  --warm-3: #73726C;
  --beige: #F4F1EA;
  --beige-2: #FAF8F3;
  --line: #EAE6DD;
  --line-2: #E2DDD2;
  --line-3: #EFEBE2;
  --field: #D9D5CC;
  --bar-track: #E7E2D7;
  --white: #fff;

  --ff-head: 'Archivo', -apple-system, BlinkMacSystemFont, sans-serif;
  --ff-body: 'IBM Plex Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --ff-mono: 'IBM Plex Mono', ui-monospace, monospace;
  --maxw: 1200px;
  --r: 2px;
  --ease: cubic-bezier(.22,.61,.36,1);
}
* { box-sizing: border-box; }
* , *::before, *::after { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--ff-body); background: var(--white); color: var(--ink);
  -webkit-font-smoothing: antialiased; font-size: 16px; line-height: 1.6; overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
h1,h2,h3,h4 { font-family: var(--ff-head); font-weight: 700; letter-spacing: -.02em; line-height: 1.05; color: var(--ink); }

/* Utility */
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 44px; }
.mono { font-family: var(--ff-mono); }
.eyebrow { font-family: var(--ff-mono); font-size: 12px; letter-spacing: .16em; text-transform: uppercase; color: var(--green); }
.kicker { font-family: var(--ff-mono); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--ink); }
.label { font-family: var(--ff-mono); font-size: 10px; letter-spacing: .1em; text-transform: uppercase; color: var(--warm-2); }
.section { padding: 80px 0; }
.divider { border: 0; border-top: 1px solid var(--line); }
.lead { font-size: 17px; line-height: 1.65; color: var(--body); max-width: 60ch; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--ff-mono); font-size: 13px; letter-spacing: .08em; text-transform: uppercase;
  padding: 14px 22px; border-radius: var(--r); border: 1px solid transparent; cursor: pointer;
  transition: all .2s var(--ease); white-space: nowrap;
}
.btn--primary { background: var(--green); color: #fff; }
.btn--primary:hover { background: var(--green-dark); }
.btn--dark { background: var(--ink); color: #fff; }
.btn--dark:hover { opacity: .88; }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: #fff; }
.btn--ghost-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.5); }
.btn--ghost-light:hover { background: #fff; color: var(--ink); }

/* Header */
.site-header { position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,.96); backdrop-filter: blur(8px); border-bottom: 1px solid var(--line); }
.hdr { max-width: var(--maxw); margin: 0 auto; display: flex; align-items: center; justify-content: space-between; padding: 18px 44px; }
.hdr__logo img { height: 42px; }
.hdr__nav { display: flex; gap: 26px; align-items: center; font-family: var(--ff-mono); font-size: 12px; letter-spacing: .06em; }
.hdr__nav a { color: var(--muted); transition: color .2s; }
.hdr__nav a:hover, .hdr__nav a[aria-current="page"] { color: var(--ink); }
.hdr__lang { position: relative; }
.hdr__lang button { font-family: var(--ff-mono); font-size: 12px; border: 1px solid var(--field); border-radius: var(--r); padding: 4px 8px; background: none; color: var(--ink); cursor: pointer; letter-spacing: .06em; }
.hdr__lang .menu { position: absolute; right: 0; top: calc(100% + 6px); background: #fff; border: 1px solid var(--line); border-radius: var(--r); box-shadow: 0 12px 30px rgba(0,0,0,.1); min-width: 110px; padding: 5px; opacity: 0; visibility: hidden; transform: translateY(-5px); transition: all .18s var(--ease); }
.hdr__lang[data-open="true"] .menu { opacity: 1; visibility: visible; transform: none; }
.hdr__lang .menu a { display: block; padding: 8px 10px; font-family: var(--ff-mono); font-size: 12px; color: var(--muted); border-radius: var(--r); }
.hdr__lang .menu a:hover { background: var(--beige); color: var(--ink); }
.hdr__cta { display: inline-flex; }
.hdr__toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 6px; }
.hdr__toggle span { width: 22px; height: 2px; background: var(--ink); transition: .3s var(--ease); }
body.nav-open .hdr__toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.nav-open .hdr__toggle span:nth-child(2) { opacity: 0; }
body.nav-open .hdr__toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Hero (home) */
.hero { border-bottom: 1px solid var(--line); }
.hero__grid { max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; }
.hero__text { padding: 80px 44px 80px; }
.hero__text .eyebrow { display: block; margin-bottom: 22px; }
.hero h1 { font-size: clamp(38px, 5vw, 60px); line-height: 1.02; margin-bottom: 22px; }
.hero h1 .accent { color: var(--green); }
.hero__text p { font-size: 17px; color: var(--body); max-width: 46ch; margin-bottom: 30px; }
.hero__cta { display: flex; gap: 12px; flex-wrap: wrap; }
.hero__media { background: var(--beige); border-left: 1px solid var(--line); position: relative; overflow: hidden; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; min-height: 420px; }

/* Marquee / brand band */
.marquee { background: var(--ink); color: rgba(255,255,255,.7); font-family: var(--ff-mono); font-size: 12px; letter-spacing: .14em; text-transform: uppercase; padding: 14px 0; overflow: hidden; white-space: nowrap; }
.marquee .track { display: inline-block; padding-left: 100%; animation: marq 26s linear infinite; }
.marquee span { padding: 0 20px; }
@keyframes marq { to { transform: translateX(-100%); } }

/* Section heading w/ number */
.shead { display: grid; grid-template-columns: auto 1fr; gap: 18px; align-items: start; margin-bottom: 44px; }
.shead .no { font-family: var(--ff-mono); font-size: 12px; letter-spacing: .12em; color: var(--green); padding-top: 8px; white-space: nowrap; }
.shead h2 { font-size: clamp(26px, 3.4vw, 38px); }
.shead p { color: var(--body); margin-top: 12px; max-width: 64ch; }

/* Stat boxes (bordered row) */
.statbox { display: flex; border: 1px solid var(--line-2); border-radius: var(--r); }
.statbox > div { flex: 1; padding: 16px 18px; border-right: 1px solid var(--line-2); }
.statbox > div:last-child { border-right: 0; }
.statbox .v { font-family: var(--ff-head); font-weight: 700; font-size: 22px; color: var(--ink); }
.statbox .l { font-family: var(--ff-mono); font-size: 10px; letter-spacing: .08em; text-transform: uppercase; color: var(--warm-2); margin-top: 4px; }

/* Generic cards / list rows */
.rowlist { border-top: 1px solid var(--line); }
.rowlink { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 22px 4px; border-bottom: 1px solid var(--line); transition: padding .25s var(--ease), background .2s; }
.rowlink:hover { padding-left: 14px; padding-right: 14px; background: var(--beige-2); }
.rowlink h3 { font-size: 20px; }
.rowlink .sub { font-family: var(--ff-mono); font-size: 11px; letter-spacing: .06em; color: var(--warm); margin-top: 4px; }
.rowlink .arrow { color: var(--green); font-size: 18px; transition: transform .25s var(--ease); }
.rowlink:hover .arrow { transform: translateX(5px); }

/* Two-division columns */
.divisions { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border-top: 1px solid var(--line); }
.division { padding: 36px 0; }
.division:first-child { padding-right: 48px; border-right: 1px solid var(--line); }
.division:last-child { padding-left: 48px; }
.division .no { font-family: var(--ff-mono); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--green); margin-bottom: 10px; }
.division > h3 { font-size: 27px; font-weight: 800; margin-bottom: 12px; padding-bottom: 14px; border-bottom: 2px solid var(--ink); }
.division > p { color: var(--body); font-size: 14px; margin-bottom: 22px; }

/* Product grid cards (landing) */
.pcards { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.pcard { background: #fff; padding: 0; transition: background .2s; display: flex; flex-direction: column; }
.pcard:hover { background: var(--beige-2); }
.pcard__media { aspect-ratio: 16/10; overflow: hidden; background: var(--beige); }
.pcard__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.pcard:hover .pcard__media img { transform: scale(1.04); }
.pcard__body { padding: 20px 22px 24px; flex: 1; display: flex; flex-direction: column; }
.pcard__body .cat { font-family: var(--ff-mono); font-size: 10px; letter-spacing: .1em; text-transform: uppercase; color: var(--green); margin-bottom: 8px; }
.pcard__body h3 { font-size: 19px; margin-bottom: 8px; }
.pcard__body p { font-size: 13px; color: var(--body); margin-bottom: 16px; flex: 1; }
.pcard__body .arrow { font-family: var(--ff-mono); font-size: 12px; letter-spacing: .06em; text-transform: uppercase; color: var(--ink); }
.pcard__body .arrow span { color: var(--green); }

/* Beige + dark bands */
.band-beige { background: var(--beige); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.band-dark { background: var(--ink); color: rgba(255,255,255,.82); }
.band-dark h2, .band-dark h3 { color: #fff; }
.band-dark .eyebrow { color: var(--green); }
.cta-row { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 40px 0; flex-wrap: wrap; }
.cta-row h2 { font-size: clamp(22px,3vw,30px); }
.cta-row p { color: var(--body); margin-top: 6px; }
.band-dark .iscc { font-family: var(--ff-head); font-weight: 800; font-size: 40px; color: var(--green); line-height: 1; }
.band-dark .iscc small { display: block; font-family: var(--ff-mono); font-size: 10px; letter-spacing: .1em; color: rgba(255,255,255,.55); margin-top: 6px; text-transform: uppercase; }

/* Brand pills */
.brandrow { display: flex; flex-wrap: wrap; gap: 28px; align-items: center; }
.brandrow .pill { font-family: var(--ff-mono); font-size: 13px; letter-spacing: .04em; border: 1px solid var(--line-2); border-radius: 100px; padding: 9px 20px; color: var(--ink); }
/* Distributor logos (Marcas distribuídas) */
.brandrow .brandlogo { height: 34px; width: auto; object-fit: contain; }

/* ============ Product detail (datasheet) ============ */
.pd { max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: 1fr 340px; }
.pd__main { padding: 44px 44px 56px; border-right: 1px solid var(--line); border-left: 1px solid var(--line); }
.pd__crumb { font-family: var(--ff-mono); font-size: 12px; letter-spacing: .04em; color: var(--warm); margin-bottom: 22px; }
.pd__crumb a:hover { color: var(--ink); }
.pd__crumb .cur { color: var(--ink); }
.pd__main .eyebrow { display: block; margin-bottom: 14px; }
.pd__main h1 { font-size: clamp(34px,4.4vw,46px); line-height: 1.02; margin-bottom: 16px; }
.pd__intro { font-size: 15px; line-height: 1.6; color: var(--body); max-width: 58ch; margin-bottom: 30px; }
.pd__fig { margin: 0 0 36px; border: 1px solid var(--line-2); border-radius: var(--r); overflow: hidden; }
.pd__fig img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
/* Green Circle is a logo, not a photo — contain it on white */
.pd__fig--logo { background: #fff; }
.pd__fig--logo img { object-fit: contain; padding: 26px; }
.pcard__media--logo { background: #fff; }
.pcard__media--logo img { object-fit: contain; padding: 20px; }
.pd__sec-label { font-family: var(--ff-mono); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--ink); margin: 0 0 12px; }
.pd .statbox { margin-bottom: 36px; }

/* compatibility chips grid */
.matrix { display: grid; grid-template-columns: repeat(6,1fr); gap: 6px; margin-bottom: 36px; }
.matrix .cell { border: 1px solid var(--line-2); background: var(--beige-2); padding: 12px 6px; text-align: center; font-family: var(--ff-mono); font-size: 12px; color: var(--ink); border-radius: var(--r); }

/* sub-grade accordion */
.sg { border: 1px solid var(--line-2); border-radius: var(--r); overflow: hidden; margin-bottom: 36px; }
.sg__item { border-top: 1px solid var(--line-3); }
.sg__item:first-child { border-top: 0; }
.sg__head { width: 100%; text-align: left; background: #fff; border: 0; cursor: pointer; padding: 16px 18px; display: flex; justify-content: space-between; align-items: center; gap: 12px; font-family: var(--ff-mono); font-size: 14px; font-weight: 500; color: var(--ink); }
.sg__head:hover { background: var(--beige-2); }
.sg__head .pm { color: var(--green); font-size: 16px; }
.sg__body { max-height: 0; overflow: hidden; transition: max-height .35s var(--ease); }
.sg__body-in { padding: 0 18px 18px; font-size: 14px; color: var(--body); }
.sg__item[data-open="true"] .sg__body-in { padding-top: 2px; }

/* reference table */
.reftable { border: 1px solid var(--line-2); border-radius: var(--r); overflow: hidden; }
.reftable__head, .reftable__row { display: grid; align-items: center; }
.reftable__head { background: var(--ink); color: #fff; font-family: var(--ff-mono); font-size: 10px; letter-spacing: .1em; text-transform: uppercase; }
.reftable__head > div { padding: 11px 14px; }
.reftable__row { border-top: 1px solid var(--line-3); }
.reftable__row:nth-child(even) { background: var(--beige-2); }
.reftable__row > div { padding: 10px 14px; font-size: 13px; color: var(--body); }
.reftable__row .ref { font-family: var(--ff-mono); font-weight: 500; color: var(--ink); }
.reftable__row .note { font-family: var(--ff-mono); font-size: 11px; color: var(--warm-3); }
.bar { display: flex; align-items: center; gap: 8px; }
.bar .pct { font-family: var(--ff-mono); font-size: 12px; color: var(--ink); width: 34px; flex: none; }
.bar .track { flex: 1; height: 6px; background: var(--bar-track); border-radius: 3px; overflow: hidden; }
.bar .fill { height: 100%; background: var(--green); }
.cols-white { grid-template-columns: 1.6fr 1.4fr 1fr 1.3fr; }
.cols-black { grid-template-columns: 1.5fr 1.3fr .8fr .8fr 1.1fr; }
.cols-color { grid-template-columns: 1fr 1.4fr; }
.cols-additive { grid-template-columns: 1.4fr 1.4fr .8fr; }

/* chips (apply-in) */
.chips { display: flex; flex-wrap: wrap; gap: 7px; }
.chips .chip { font-family: var(--ff-mono); font-size: 12px; border: 1px solid var(--line-2); background: var(--beige-2); border-radius: var(--r); padding: 7px 12px; color: var(--ink); }

/* sidebar */
.pd__side { padding: 36px 30px; background: var(--beige); border-right: 1px solid var(--line); }
.pd__side .inner { position: sticky; top: 96px; }
.pd__side .eyebrow { display: block; margin-bottom: 18px; }
.sumrow { padding: 13px 0; border-bottom: 1px solid var(--line-2); }
.sumrow .l { font-family: var(--ff-mono); font-size: 10px; letter-spacing: .08em; text-transform: uppercase; color: var(--warm); margin-bottom: 5px; }
.sumrow .v { font-size: 14px; color: var(--ink); }
.pd__side .btn { width: 100%; margin-top: 14px; }
.pd__side .btn:first-of-type { margin-top: 24px; }

/* related products */
.related { display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.related a { background: #fff; padding: 18px; transition: background .2s; }
.related a:hover { background: var(--beige-2); }
.related .cat { font-family: var(--ff-mono); font-size: 10px; letter-spacing: .08em; text-transform: uppercase; color: var(--green); margin-bottom: 6px; }
.related h4 { font-family: var(--ff-head); font-size: 16px; }

/* ============ Quote modal ============ */
.modal { position: fixed; inset: 0; background: rgba(20,22,24,.55); display: none; align-items: center; justify-content: center; padding: 24px; z-index: 1000; }
.modal.open { display: flex; }
.modal__card { width: 540px; max-width: 100%; background: #fff; border-radius: 3px; overflow: hidden; box-shadow: 0 24px 60px rgba(0,0,0,.35); max-height: 92vh; overflow-y: auto; }
.modal__bar { height: 4px; background: var(--green); }
.modal__head { display: flex; align-items: center; justify-content: space-between; padding: 18px 28px; border-bottom: 1px solid var(--line); }
.modal__head .eyebrow { font-size: 12px; letter-spacing: .14em; }
.modal__close { background: none; border: 0; cursor: pointer; font-family: var(--ff-mono); font-size: 20px; color: var(--warm); line-height: 1; }
.modal__body { padding: 28px; }
.modal__poi { font-family: var(--ff-mono); font-size: 11px; letter-spacing: .04em; color: var(--warm-3); background: var(--beige); border-radius: var(--r); padding: 10px 12px; margin-bottom: 22px; }
.modal__poi b { color: var(--ink); }
.fgrid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.modal .f { display: block; }
.modal .f .l { font-family: var(--ff-mono); font-size: 10px; letter-spacing: .1em; text-transform: uppercase; color: var(--warm-2); margin-bottom: 6px; }
.modal input, .modal textarea {
  width: 100%; padding: 11px 12px; border: 1px solid var(--field); border-radius: var(--r);
  font-family: var(--ff-body); font-size: 14px; color: var(--ink);
}
.modal input:focus, .modal textarea:focus { outline: 0; border-color: var(--green); }
.modal .full { grid-column: 1 / -1; }
.modal textarea { resize: vertical; min-height: 84px; }
.modal .btn { width: 100%; margin-top: 22px; }
.modal__note { margin-top: 14px; font-size: 12px; color: var(--warm); text-align: center; }
.modal__success { padding: 48px 36px; text-align: center; display: none; }
.modal__success.show { display: block; }
.modal__success .ic { width: 48px; height: 48px; margin: 0 auto 20px; background: #E6F4EB; color: var(--green); border-radius: var(--r); display: flex; align-items: center; justify-content: center; font-family: var(--ff-mono); font-size: 22px; }
.modal__success h3 { font-size: 24px; margin-bottom: 10px; }
.modal__success p { font-size: 15px; color: var(--muted); margin-bottom: 24px; }
.hp { position: absolute; left: -9999px; width: 0; height: 0; opacity: 0; }

/* Page hero (interior) */
.phero { background: var(--ink); color: #fff; padding: 70px 0 64px; }
.phero .crumb { font-family: var(--ff-mono); font-size: 12px; color: rgba(255,255,255,.55); margin-bottom: 16px; }
.phero .crumb a { color: rgba(255,255,255,.8); }
.phero h1 { color: #fff; font-size: clamp(30px,4.6vw,46px); }
.phero p { color: rgba(255,255,255,.75); margin-top: 14px; max-width: 60ch; font-size: 16px; }

/* prose */
.prose p { color: var(--body); margin-bottom: 16px; text-align: justify; text-justify: inter-word; hyphens: auto; -webkit-hyphens: auto; }
.prose h3 { font-size: 22px; margin: 28px 0 12px; }
/* justified body copy in section intros, aligned to the heading width above it */
.shead p, .split .prose p, .band-beige .prose p { text-align: justify; text-justify: inter-word; hyphens: auto; -webkit-hyphens: auto; }
.shead p { max-width: none; }

/* projects (about) */
.project { display: grid; grid-template-columns: 300px 1fr; gap: 44px; align-items: start; }
.project__doc { display: flex; flex-direction: column; gap: 12px; }
.project__doc a { display: block; border: 1px solid var(--line-2); border-radius: var(--r); overflow: hidden; transition: box-shadow .2s ease, transform .2s ease; }
.project__doc a:hover { box-shadow: 0 12px 30px rgba(0,0,0,.12); transform: translateY(-2px); }
.project__doc img { width: 100%; height: auto; background: #fff; }
.pfacts { display: grid; grid-template-columns: 1fr 1fr; gap: 18px 40px; margin-bottom: 28px; }
.pfact dt { font-family: var(--ff-mono); font-size: 10px; letter-spacing: .1em; text-transform: uppercase; color: var(--green); margin-bottom: 5px; }
.pfact dd { color: var(--ink); font-size: 14px; line-height: 1.5; }
.project__dl { display: inline-flex; }

/* split */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split--rev .media { order: 2; }
.split .media img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border: 1px solid var(--line-2); border-radius: var(--r); }
.split h2 { font-size: clamp(24px,3.2vw,34px); margin-bottom: 16px; }

/* timeline */
.tl { max-width: 820px; margin: 0 auto; position: relative; }
.tl::before { content: ""; position: absolute; left: 78px; top: 6px; bottom: 6px; width: 1px; background: var(--line-2); }
.tl__i { display: grid; grid-template-columns: 66px 1fr; gap: 32px; padding: 12px 0; position: relative; }
.tl__i .y { font-family: var(--ff-mono); font-size: 14px; color: var(--green); text-align: right; }
.tl__i .dot { position: absolute; left: 73px; top: 8px; width: 11px; height: 11px; border-radius: 50%; background: var(--green); border: 2px solid #fff; box-shadow: 0 0 0 2px var(--line-2); }
.tl__i p { color: var(--body); font-size: 14px; }

/* contact */
.cgrid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.form-card { border: 1px solid var(--line-2); border-radius: var(--r); padding: 32px; }
.form-card .f { display: block; margin-bottom: 16px; }
.form-card .l { font-family: var(--ff-mono); font-size: 10px; letter-spacing: .1em; text-transform: uppercase; color: var(--warm-2); margin-bottom: 6px; display: block; }
.form-card input, .form-card select, .form-card textarea {
  width: 100%; padding: 12px 13px; border: 1px solid var(--field); border-radius: var(--r);
  font-family: var(--ff-body); font-size: 14px; color: var(--ink);
}
.form-card input:focus, .form-card select:focus, .form-card textarea:focus { outline: 0; border-color: var(--green); }
.form-card textarea { resize: vertical; min-height: 110px; }
.frow { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.consent { display: flex; gap: 10px; align-items: flex-start; font-size: 13px; color: var(--muted); margin: 6px 0 20px; }
.consent input { width: 17px; height: 17px; margin-top: 2px; accent-color: var(--green); flex: none; }
.form-success { display: none; background: #E6F4EB; border: 1px solid var(--green); border-radius: var(--r); padding: 14px 16px; color: var(--green-dark); font-size: 14px; margin-bottom: 18px; }
.offices { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.office { border: 1px solid var(--line-2); border-radius: var(--r); padding: 22px; }
.office > h3 { font-family: var(--ff-head); font-size: 17px; border-bottom: 1px solid var(--line); padding-bottom: 10px; margin-bottom: 12px; }
.office .blk { margin-bottom: 14px; }
.office .blk .role { font-family: var(--ff-mono); font-size: 10px; letter-spacing: .08em; text-transform: uppercase; color: var(--green); margin-bottom: 4px; }
.office .blk .nm { font-weight: 600; font-size: 14px; }
.office .blk a, .office .blk p { font-size: 13px; color: var(--body); }
.office .blk a { display: block; white-space: nowrap; }
.office .blk a:hover { color: var(--green); }

/* Footer */
.foot { background: var(--ink); color: rgba(255,255,255,.7); padding: 64px 0 28px; }
.foot__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; margin-bottom: 44px; }
.foot h4 { font-family: var(--ff-mono); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: #fff; margin-bottom: 16px; }
.foot a { color: rgba(255,255,255,.7); font-size: 14px; }
.foot a:hover { color: #fff; }
.foot li { margin-bottom: 9px; }
.foot__brand img { height: 28px; filter: brightness(0) invert(1); margin-bottom: 16px; }
.foot__brand p { max-width: 32ch; font-size: 14px; }
.foot__bottom { border-top: 1px solid rgba(255,255,255,.13); padding-top: 22px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; font-family: var(--ff-mono); font-size: 11px; letter-spacing: .04em; color: rgba(255,255,255,.5); }
.foot__bottom a { font-size: 11px; color: rgba(255,255,255,.65); }

/* reveal */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* Responsive */
@media (max-width: 980px) {
  .wrap, .hdr, .hero__text { padding-left: 24px; padding-right: 24px; }
  .hero__grid { grid-template-columns: 1fr; }
  .hero__media { border-left: 0; border-top: 1px solid var(--line); order: -1; }
  .hero__media img { min-height: 280px; }
  .pd { grid-template-columns: 1fr; }
  .pd__main { border-left: 0; border-right: 0; }
  .pd__side { border-right: 0; border-top: 1px solid var(--line); }
  .pd__side .inner { position: static; }
  .pcards, .related { grid-template-columns: repeat(2,1fr); }
  .divisions { grid-template-columns: 1fr; }
  .division:first-child { padding-right: 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .division:last-child { padding-left: 0; }
  .split, .split--rev .media { grid-template-columns: 1fr; order: 0; }
  .split { gap: 28px; }
  .cgrid { grid-template-columns: 1fr; gap: 36px; }
  .project { grid-template-columns: 1fr; gap: 28px; }
  .project__doc { flex-direction: row; }
  .foot__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 680px) {
  .hdr__nav { position: fixed; inset: 67px 0 0; background: #fff; flex-direction: column; align-items: stretch; padding: 24px; gap: 4px; transform: translateX(100%); transition: transform .3s var(--ease); font-size: 15px; }
  body.nav-open .hdr__nav { transform: none; }
  .hdr__nav a { padding: 12px 4px; border-bottom: 1px solid var(--line); }
  .hdr__toggle { display: flex; }
  .hdr__cta { display: none; }
  .statbox { flex-direction: column; }
  .statbox > div { border-right: 0; border-bottom: 1px solid var(--line-2); }
  .statbox > div:last-child { border-bottom: 0; }
  .matrix { grid-template-columns: repeat(3,1fr); }
  .pcards, .related, .offices { grid-template-columns: 1fr; }
  .frow, .fgrid { grid-template-columns: 1fr; }
  .reftable__head { display: none; }
  .reftable__row { grid-template-columns: 1fr !important; gap: 0; }
  .reftable__row > div { padding: 6px 14px; }
  .reftable__row > div:first-child { padding-top: 12px; }
  .reftable__row > div:last-child { padding-bottom: 12px; border-bottom: 1px solid var(--line-3); }
  .cta-row { flex-direction: column; align-items: flex-start; }
  .foot__grid { grid-template-columns: 1fr; }
  .shead { grid-template-columns: 1fr; gap: 8px; }
  .pfacts { grid-template-columns: 1fr; }
  .project__doc { flex-direction: column; }
}
