/* ================================================================
   AUS Environmental Services — ausenvironmentalservices.com
   Single unified stylesheet
   Refined: typography, spacing, restraint, image treatment
   ================================================================ */

:root {
  --white:  #FFFFFF;
  --paper:  #F9F8F6;
  --paper2: #F2F1EE;
  --ink:    #111111;
  --ink2:   #1C1C1C;
  --g1:     #424242;
  --g2:     #6B6B6B;
  --g3:     #9E9E9E;
  --rule:   #D8D7D3;
  --rulelt: #ECEAE6;
  --blue:   #1B5A9E;
  --dark:   #0F0F0F;
  --ffd:    'Cormorant', Georgia, serif;
  --ffh:    'Syne', Arial, sans-serif;
  --ffb:    'Manrope', Helvetica, sans-serif;
  --ffm:    ui-monospace, 'SF Mono', Menlo, Consolas, monospace;
  --max:    1200px;
  --px:     44px;
  --py:     60px;
  --navh:   64px;

  /* Motion system — cubic-bezier easings used across every interactive element.
     `--ease-out` (decelerate) for elements coming in / hover-in transitions.
     `--ease-std` (standard material) for state changes. Durations grouped at
     three steps: fast 160ms, base 240ms, slow 360ms. Used together this gives
     the site a consistent "considered" feel rather than ad-hoc transitions. */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-std: cubic-bezier(0.4, 0, 0.2, 1);
  --t-fast:   160ms;
  --t-base:   240ms;
  --t-slow:   360ms;

  /* Legacy aliases — inner page inline <style> blocks still reference these.
     Kept for compatibility so we don't have to touch each page's local rules. */
  --gray-1: var(--g1);
  --gray-2: var(--g2);
  --gray-3: var(--g3);
  --rule-lt: var(--rulelt);
  --ff-h:   var(--ffh);
  --ff-b:   var(--ffb);
}

/* Tabular numerals applied globally to numeric display elements. This is the
   single most enterprise-feeling typographic move: stats, counts, and figures
   sit in vertically-aligned columns regardless of glyph width. */
.kpi-n, .stat-n, .cs-sv, .gtc-sn, .ig-val, .aus-cov-map .aus-sv,
.f-creds .f-cred, .nav-phone, .cta-tel {
  font-variant-numeric: tabular-nums;
  font-feature-settings: 'tnum' 1;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; -webkit-font-smoothing: antialiased; scroll-behavior: smooth; }
body { background: var(--white); color: var(--ink); font-family: var(--ffb); line-height: 1.65; overflow-x: hidden; }
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }

.reveal { opacity: 0; transform: translateY(10px); transition: opacity .7s var(--ease-out), transform .7s var(--ease-out); }
.reveal.in { opacity: 1; transform: none; }
.d1 { transition-delay: .08s; } .d2 { transition-delay: .15s; }
.d3 { transition-delay: .22s; } .d4 { transition-delay: .29s; }

/* ── NAV ─────────────────────────────────────────────────────── */
/* Stable dark header: nav background stays dark in every scroll state,
   so the white AUS logo and nav text keep their contrast.
   The .scrolled class is left in the DOM but only adds a subtle shadow,
   no color or background changes. */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  height: var(--navh);
  background: var(--dark);
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: box-shadow var(--t-base) var(--ease-std),
              border-color var(--t-base) var(--ease-std);
}
.nav.scrolled {
  box-shadow: 0 1px 0 rgba(255,255,255,.04), 0 8px 24px rgba(0,0,0,.18);
  border-bottom-color: rgba(255,255,255,.10);
}
.nav-inner {
  max-width: var(--max); margin: 0 auto; padding: 0 var(--px);
  height: 100%; display: flex; align-items: center;
}
.nav-logo { margin-right: auto; display: flex; align-items: center; min-width: 0; }
.nav-logo img {
  width: 150px;
  height: auto;
  display: block;
  object-fit: contain;
  transition: opacity var(--t-base) var(--ease-std);
}
.nav-logo:hover img { opacity: .85; }
.nav-links { display: flex; list-style: none; margin-right: 24px; }
.nav-links a {
  font-family: var(--ffb); font-size: 13px; font-weight: 500;
  color: rgba(255,255,255,.74); padding: 8px 13px;
  position: relative;
  transition: color var(--t-base) var(--ease-std);
}
.nav-links a:hover { color: #fff; }
/* Active-state indicator: a 2px white rule that sits under the current-page
   link. The rule animates in on hover for non-active links — a subtle
   "scrubber" effect that's expensive-feeling without being flashy. */
.nav-links a::after {
  content: '';
  position: absolute;
  left: 13px; right: 13px; bottom: 2px;
  height: 2px; background: #fff;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-base) var(--ease-std);
}
.nav-links a.on { color: #fff; }
.nav-links a.on::after { transform: scaleX(1); }
.nav-links a:hover::after { transform: scaleX(.6); }
.nav-links a.on:hover::after { transform: scaleX(1); }

.nav-phone {
  font-family: var(--ffb); font-size: 13px; font-weight: 600;
  color: rgba(255,255,255,.60); margin-right: 18px;
  transition: color var(--t-base) var(--ease-std);
  white-space: nowrap;
}
.nav-phone:hover { color: #fff; }
.nav-cta {
  font-family: var(--ffb); font-size: 12.5px; font-weight: 600;
  padding: 8px 18px; background: rgba(255,255,255,.09); color: #fff;
  border: 1px solid rgba(255,255,255,.2);
  transition: background-color var(--t-base) var(--ease-std),
              border-color var(--t-base) var(--ease-std);
  white-space: nowrap;
}
.nav-cta:hover { background: rgba(255,255,255,.18); border-color: rgba(255,255,255,.4); }
.nav-toggle {
  display: none; flex-direction: column; gap: 4px;
  background: none; border: none; cursor: pointer; padding: 4px; margin-left: auto;
}
.nav-toggle span { width: 20px; height: 1.5px; background: rgba(255,255,255,.8); display: block; }
.mobile-nav {
  display: flex; position: fixed; top: var(--navh); left: 0; right: 0;
  background: var(--white); border-bottom: 1px solid var(--rule);
  padding: 8px 24px 20px; z-index: 199; flex-direction: column;
  visibility: hidden;
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity var(--t-base) var(--ease-std),
              transform var(--t-base) var(--ease-std),
              visibility 0s linear var(--t-base);
  will-change: opacity, transform;
}
.mobile-nav.open {
  visibility: visible;
  opacity: 1;
  transform: none;
  transition: opacity var(--t-base) var(--ease-std),
              transform var(--t-base) var(--ease-std),
              visibility 0s;
}
.mobile-nav a {
  font-size: 15px; font-weight: 500; color: var(--g1);
  padding: 12px 0; border-bottom: 1px solid var(--rulelt);
  transition: color var(--t-fast) var(--ease-std);
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover { color: var(--ink); }
.mobile-nav .mcta { margin-top: 14px; background: var(--ink); color: #fff; text-align: center; padding: 13px; font-weight: 600; border-bottom: none; font-size: 13.5px; }

/* ── HERO — split: dark left panel | photo right ─────────────── */
.hero {
  min-height: clamp(540px, 72vh, 680px);
  padding-top: var(--navh);
  display: grid;
  grid-template-columns: 55% 45%;
  background: var(--dark);
}
.hero-left {
  background: var(--dark);
  display: flex;
  flex-direction: column;
  padding: 0 var(--px);
}
.hero-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 44px 0 28px;
}
.hero-eyebrow {
  font-family: var(--ffb); font-size: 10px; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase;
  color: rgba(255,255,255,.46); margin-bottom: 18px;
}
.hero-h1 {
  font-family: var(--ffd);
  font-size: clamp(34px, 4.2vw, 52px);
  font-weight: 600; letter-spacing: -.015em; line-height: 1.05;
  color: #fff; margin-bottom: 16px;
}
.hero-sub {
  font-family: var(--ffb); font-size: clamp(14px, 1.3vw, 15.5px);
  color: rgba(255,255,255,.64); line-height: 1.7;
  max-width: 44ch; margin-bottom: 26px;
}
.hero-btns { display: flex; gap: 10px; flex-wrap: wrap; }
.hero-kpi {
  border-top: 1px solid rgba(255,255,255,.08);
  display: grid; grid-template-columns: repeat(4, 1fr);
}
.kpi-cell {
  padding: 18px 0 18px 18px;
  border-right: 1px solid rgba(255,255,255,.08);
}
.kpi-cell:last-child { border-right: none; }
.kpi-n {
  font-family: var(--ffh); font-size: clamp(20px, 2.1vw, 28px);
  font-weight: 700; letter-spacing: -.03em; color: #fff;
  display: block; line-height: 1; margin-bottom: 4px;
}
.kpi-n sup { font-size: .48em; vertical-align: super; color: var(--blue); }
.kpi-l { font-family: var(--ffb); font-size: 10px; color: rgba(255,255,255,.48); display: block; line-height: 1.3; }

.hero-right { position: relative; overflow: hidden; background: var(--ink); }
.hero-right img {
  width: 100%; height: 100%; object-fit: cover;
  object-position: center 50%;
  filter: contrast(1.02) brightness(.94);
  display: block;
}
.hero-right::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(15,15,15,.34) 0%, rgba(15,15,15,0) 24%);
  z-index: 1;
}

/* ── TRUST STRIP ─────────────────────────────────────────────── */
.trust-strip {
  background: var(--paper);
  border-bottom: 1px solid var(--rule);
  padding: 15px var(--px);
}
.trust-items {
  max-width: var(--max); margin: 0 auto;
  display: flex; align-items: center; flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: 8px;
  padding: 5px 22px; border-right: 1px solid var(--rulelt);
}
.trust-item:first-child { padding-left: 0; }
.trust-item:last-child  { border-right: none; }
/* Trust indicator — refined: a precise 2px-stroke SVG checkmark inside a
   blue accent square. Squared (not round) for industrial precision feel. */
.trust-check {
  width: 14px; height: 14px; flex-shrink: 0;
  background: var(--blue);
  display: flex; align-items: center; justify-content: center;
  position: relative;
  font-size: 0;  /* hide any unicode checkmark inside the span; SVG icon overlays */
}
.trust-check::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 14' fill='none' stroke='%23fff' stroke-width='2' stroke-linecap='square' stroke-linejoin='miter'%3E%3Cpath d='M3 7l3 3 5-5'/%3E%3C/svg%3E");
  background-size: 70% 70%;
  background-position: center;
  background-repeat: no-repeat;
}
.trust-text { font-family: var(--ffb); font-size: 11.5px; font-weight: 600; color: var(--g1); white-space: nowrap; }

/* ── STATEMENT ───────────────────────────────────────────────── */
.stmt { background: var(--paper); border-bottom: 1px solid var(--rule); padding: 26px var(--px); }
.stmt-inner { max-width: var(--max); margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.stmt-text { font-family: var(--ffd); font-size: clamp(18px, 2.4vw, 26px); font-weight: 600; letter-spacing: -.01em; color: var(--ink); line-height: 1.22; }
.stmt-text em { font-style: italic; color: var(--g2); }
.stmt-creds { display: flex; gap: 20px; flex-wrap: wrap; }
.stmt-cred {
  font-family: var(--ffb); font-size: 11px; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase;
  color: var(--g2); display: flex; align-items: center; gap: 8px;
}
/* Replaced unicode ✓ with a thin SVG icon for visual consistency with the
   trust-check pattern. Same shape, smaller scale, no background fill. */
.stmt-cred::before {
  content: '';
  width: 11px; height: 11px; display: inline-block; flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 14' fill='none' stroke='%231B5A9E' stroke-width='2.4' stroke-linecap='square' stroke-linejoin='miter'%3E%3Cpath d='M2 7l3.5 3.5 6.5-7'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

/* ── LAYOUT PRIMITIVES ───────────────────────────────────────── */
.section { padding: var(--py) var(--px); }
.section.white  { background: var(--white); }
.section.paper  { background: var(--paper); }
.section.dark   { background: var(--dark); }
.wrap { max-width: var(--max); margin: 0 auto; }
hr.rule   { border: none; border-top: 1px solid var(--rule); }
hr.rulelt { border: none; border-top: 1px solid var(--rulelt); }

/* ── TYPOGRAPHY ──────────────────────────────────────────────── */
/* Section labels — small caps with a 2px accent bar before the text.
   The bar is the same blue used elsewhere, giving every section header
   a consistent "documented section" feel. The accent appears on body-text
   only; .lbl.plain opts out for cases where the bar would crowd. */
.lbl {
  font-family: var(--ffb); font-size: 10px; font-weight: 700;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--g3); margin-bottom: 10px;
  display: inline-flex; align-items: center; gap: 10px;
}
.lbl::before {
  content: '';
  width: 16px; height: 2px;
  background: var(--blue);
  flex-shrink: 0;
}
.lbl.lt { color: rgba(255,255,255,.6); }
.lbl.lt::before { background: rgba(255,255,255,.5); }
.lbl.plain::before { display: none; }
.lbl.lt { color: rgba(255,255,255,.48); }
.h2    { font-family: var(--ffh); font-size: clamp(22px, 2.6vw, 32px); font-weight: 700; letter-spacing: -.025em; line-height: 1.18; color: var(--ink); }
.h2.lt { color: #fff; }
.h2.sm { font-size: clamp(19px, 2.2vw, 26px); }
.body { font-family: var(--ffb); font-size: 14.5px; color: var(--g1); line-height: 1.7; max-width: 60ch; }
.body.lt { color: rgba(255,255,255,.58); }

/* ── BUTTONS ─────────────────────────────────────────────────── */
/* Buttons share a single base. Primary variants use a tracked uppercase
   indicator pattern; line variants stay quieter. All transitions use the
   site's standard easing curve so nothing feels ad-hoc. */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ffb);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .02em;
  line-height: 1;
  border-radius: 0;
  transition: background-color var(--t-base) var(--ease-std),
              border-color var(--t-base) var(--ease-std),
              color var(--t-base) var(--ease-std),
              transform var(--t-base) var(--ease-std);
  white-space: nowrap;
  cursor: pointer;
  position: relative;
}
.btn:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 2px;
}
/* Tracked arrow indicator — every .btn gets a precise arrow that translates
   4px on hover. Universal across primary and line variants for enterprise
   consistency. */
.btn::after {
  content: '→';
  font-size: 13px;
  line-height: 1;
  transform: translateX(0);
  transition: transform var(--t-base) var(--ease-std), opacity var(--t-base) var(--ease-std);
  opacity: .7;
}
.btn:hover::after { transform: translateX(4px); opacity: 1; }

.btn-dark    { background: var(--ink);   color: #fff;       padding: 12px 22px; border: 1px solid var(--ink); }
.btn-dark:hover { background: var(--ink2); }
.btn-white   { background: #fff;         color: var(--ink); padding: 12px 22px; border: 1px solid #fff; }
.btn-white:hover { background: var(--paper); border-color: var(--paper); }
.btn-line    { background: transparent;  color: var(--g1);  padding: 11px 22px; border: 1px solid var(--rule); }
.btn-line:hover { border-color: var(--ink); color: var(--ink); }
.btn-line-lt { background: transparent;  color: rgba(255,255,255,.62); padding: 11px 22px; border: 1px solid rgba(255,255,255,.16); }
.btn-line-lt:hover { border-color: rgba(255,255,255,.5); color: #fff; }

/* ── SERVICES LIST ───────────────────────────────────────────── */
.svc-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: end; padding-bottom: 28px; border-bottom: 1px solid var(--rule); }
.svc-list  { display: flex; flex-direction: column; }
.svc-row   { display: grid; grid-template-columns: 40px 220px 1fr; gap: 18px 28px; padding: 22px 0; border-bottom: 1px solid var(--rulelt); align-items: baseline; }
.svc-row:last-child { border-bottom: none; }
.svc-num   { font-family: var(--ffb); font-size: 10px; font-weight: 700; letter-spacing: .12em; color: var(--g3); padding-top: 2px; }
.svc-name  { font-family: var(--ffh); font-size: 15px; font-weight: 700; color: var(--ink); letter-spacing: -.01em; }
.svc-desc  { font-family: var(--ffb); font-size: 14px; color: var(--g2); line-height: 1.7; }

/* ── METRICS GRID ────────────────────────────────────────────── */
.metrics-grid { display: grid; grid-template-columns: 1fr 1.7fr; gap: 48px; align-items: start; }

/* ── STAT GRID ───────────────────────────────────────────────── */
.stat-row  { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--rule); background: var(--white); }
.stat-cell { padding: 20px 20px; border-right: 1px solid var(--rule); }
.stat-cell:last-child { border-right: none; }
.stat-n { font-family: var(--ffh); font-size: clamp(22px, 2.6vw, 30px); font-weight: 700; letter-spacing: -.03em; color: var(--ink); display: block; margin-bottom: 5px; line-height: 1; }
.stat-n sup { font-size: .48em; vertical-align: super; color: var(--blue); }
.stat-l { font-size: 11.5px; color: var(--g2); line-height: 1.45; }

/* ── CASE STUDIES ────────────────────────────────────────────── */
.cs-block { border-bottom: 1px solid var(--rule); }
.cs-block-paper { background: var(--paper); }
.cs-row { max-width: var(--max); margin: 0 auto; padding: 44px var(--px); display: grid; grid-template-columns: 380px 1fr; gap: 44px; align-items: center; }
.cs-row.rev { grid-template-columns: 1fr 380px; }
.cs-row.cs-text-only { grid-template-columns: 1.5fr 1fr; align-items: start; gap: 48px; }
.cs-photo { overflow: hidden; aspect-ratio: 4/3; background: var(--paper2); }
.cs-photo img { width: 100%; height: 100%; object-fit: cover; filter: contrast(1.03); }
.cs-type  { font-family: var(--ffb); font-size: 10.5px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--blue); margin-bottom: 10px; }
.cs-title { font-family: var(--ffh); font-size: clamp(19px, 2.2vw, 26px); font-weight: 700; letter-spacing: -.025em; color: var(--ink); margin-bottom: 12px; line-height: 1.22; }
.cs-body  { font-family: var(--ffb); font-size: 14.5px; color: var(--g1); line-height: 1.7; margin-bottom: 20px; max-width: 56ch; }
.cs-stats { display: flex; flex-wrap: wrap; border: 1px solid var(--rule); background: var(--white); }
.cs-stat  { padding: 10px 18px; border-right: 1px solid var(--rule); }
.cs-stat:last-child { border-right: none; }
.cs-sv { font-family: var(--ffh); font-size: 17px; font-weight: 700; letter-spacing: -.02em; color: var(--ink); display: block; line-height: 1; margin-bottom: 3px; }
.cs-sl { font-family: var(--ffb); font-size: 9.5px; font-weight: 600; color: var(--g3); text-transform: uppercase; letter-spacing: .1em; }

/* ── CASE STUDY SIDE PANEL (text-only programs) ─────────────── */
.cs-side { border-left: 1px solid var(--rule); padding: 6px 0 6px 28px; }
.cs-side-lbl { font-family: var(--ffb); font-size: 9.5px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--g3); margin-bottom: 10px; }
.cs-side-body { font-family: var(--ffb); font-size: 13.5px; color: var(--g2); line-height: 1.65; margin-bottom: 16px; }
.cs-side-meta { list-style: none; display: flex; flex-direction: column; gap: 0; }
.cs-side-meta li { font-family: var(--ffb); font-size: 12px; color: var(--g2); padding: 8px 0; border-top: 1px solid var(--rulelt); letter-spacing: .005em; }
.cs-side-meta li:first-child { border-top: none; padding-top: 0; }

/* ── FIELD GALLERY ───────────────────────────────────────────── */
.gallery-sec { background: #161616; padding-bottom: 0; }
.gallery-header { max-width: var(--max); margin: 0 auto; padding: 52px var(--px) 24px; display: flex; align-items: flex-end; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.gallery-intro { font-family: var(--ffb); font-size: 13px; color: rgba(255,255,255,.56); max-width: 38ch; line-height: 1.65; text-align: right; }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; padding: 0 2px; }
.gallery-img { aspect-ratio: 16/9; overflow: hidden; background: #0a0a0a; position: relative; margin: 0; }
.gallery-img img {
  width: 100%; height: 100%; object-fit: cover;
  filter: contrast(1.02) brightness(.96);
  transition: transform 700ms var(--ease-out), filter 500ms var(--ease-out);
  display: block;
}
.gallery-img:hover img {
  transform: scale(1.025);
  filter: contrast(1.04) brightness(1);
}
/* Subtle accent line that draws in along the bottom of each tile on hover —
   a "pull-out drawer" cue that says the image is interactive without making
   it shout. Industrial precision over template-y "shine on hover" effects. */
.gallery-img::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-slow) var(--ease-std);
  z-index: 2;
}
.gallery-img:hover::after { transform: scaleX(1); }
.gallery-img figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 14px 18px;
  background: linear-gradient(to top, rgba(0,0,0,.78), rgba(0,0,0,0));
  display: flex; flex-direction: column; gap: 2px;
}
.gallery-img figcaption span:first-child {
  font-family: var(--ffb); font-size: 11.5px; font-weight: 600; color: rgba(255,255,255,.92); letter-spacing: .01em;
}
.gallery-img figcaption span:last-child {
  font-family: var(--ffb); font-size: 10px; color: rgba(255,255,255,.5); letter-spacing: .04em; text-transform: uppercase;
}
.gallery-footer { max-width: var(--max); margin: 0 auto; padding: 24px var(--px) 40px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; border-top: 1px solid rgba(255,255,255,.06); margin-top: 24px; }
.gallery-note { font-family: var(--ffb); font-size: 11.5px; color: rgba(255,255,255,.32); letter-spacing: .02em; }

/* Gallery sub-section headings — divides retail maintenance vs restoration */
.gallery-subhead {
  max-width: var(--max);
  margin: 0 auto 14px;
  padding: 0 var(--px);
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 28px; flex-wrap: wrap;
  border-top: 1px solid rgba(255,255,255,.06);
  padding-top: 22px;
}
.gallery-subhead:first-of-type { border-top: none; padding-top: 0; }
.gallery-subhead-l {
  font-family: var(--ffb); font-size: 10.5px; font-weight: 700; letter-spacing: .2em;
  text-transform: uppercase; color: rgba(255,255,255,.55);
  margin-bottom: 6px;
  display: inline-flex; align-items: center; gap: 10px;
}
.gallery-subhead-l::before {
  content: '';
  width: 16px; height: 2px;
  background: rgba(255,255,255,.5);
  flex-shrink: 0;
}
.gallery-subhead h3 {
  font-family: var(--ffh); font-size: clamp(18px, 2vw, 24px); font-weight: 700;
  color: #fff; letter-spacing: -.02em; line-height: 1.22; margin: 0;
}
.gallery-subhead p {
  font-family: var(--ffb); font-size: 12.5px; color: rgba(255,255,255,.48);
  max-width: 40ch; line-height: 1.65; text-align: right; margin: 0;
}
.gallery-grid-4 { grid-template-columns: repeat(4, 1fr); }
.gallery-grid-4 .gallery-img { aspect-ratio: 16/9; }
.gallery-grid-retail { grid-template-columns: repeat(2, 1fr); }
.gallery-grid-retail .gallery-img { aspect-ratio: 16/9; }
.gallery-grid-flagship { grid-template-columns: repeat(2, 1fr); }
.gallery-grid-flagship .gallery-img { aspect-ratio: 16/9; }
.gallery-grid-flagship .gallery-img figcaption {
  padding: 18px 22px;
}
.gallery-grid-flagship .gallery-img figcaption span:first-child {
  font-size: 13px;
}
.gallery-grid-flagship .gallery-img figcaption span:last-child {
  font-size: 10.5px;
}
.gallery-progression-note {
  max-width: var(--max); margin: 22px auto 0; padding: 0 var(--px);
  font-family: var(--ffb); font-size: 11.5px; color: rgba(255,255,255,.42);
  letter-spacing: .015em; line-height: 1.6;
}

/* Gallery text-only card — Section 04 (Financial Institution Janitorial Services).
   Replaces image grids when no client-side imagery is available. */
.gallery-text-card {
  max-width: var(--max);
  margin: 0 auto;
  padding: 12px var(--px) 32px;
  display: grid;
  grid-template-columns: 1.45fr 1fr;
  gap: 56px;
  align-items: start;
}
.gtc-rule {
  width: 36px; height: 2px;
  background: rgba(255,255,255,.32);
  margin-bottom: 22px;
}
.gtc-body { color: rgba(255,255,255,.7); }
.gtc-lead {
  font-family: var(--ffh); font-size: clamp(17px, 1.7vw, 20px); font-weight: 500;
  color: rgba(255,255,255,.94); line-height: 1.5;
  letter-spacing: -.005em;
  margin: 0 0 24px;
  max-width: 50ch;
}
.gtc-meta {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
  display: flex; flex-direction: column;
}
.gtc-meta li {
  font-family: var(--ffb); font-size: 13px;
  color: rgba(255,255,255,.62); letter-spacing: .005em;
  padding: 11px 0;
  border-top: 1px solid rgba(255,255,255,.06);
  line-height: 1.5;
}
.gtc-meta li:first-child { border-top: none; padding-top: 0; }
.gtc-note {
  font-family: var(--ffb); font-size: 11.5px;
  color: rgba(255,255,255,.4); line-height: 1.6;
  letter-spacing: .01em;
  margin: 0; max-width: 52ch;
}
.gtc-stats {
  display: grid; grid-template-columns: 1fr 1fr;
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.015);
}
.gtc-stat {
  padding: 22px 18px;
  border-right: 1px solid rgba(255,255,255,.08);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.gtc-stat:nth-child(even) { border-right: none; }
.gtc-stat:nth-last-child(-n+2) { border-bottom: none; }
.gtc-sn {
  font-family: var(--ffh); font-size: 26px; font-weight: 700;
  color: #fff; letter-spacing: -.02em; line-height: 1;
  display: block; margin-bottom: 8px;
}
.gtc-sn sup { font-size: .42em; color: var(--blue); vertical-align: super; }
.gtc-sl {
  font-family: var(--ffb); font-size: 9.5px; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase;
  color: rgba(255,255,255,.5);
}

/* ── COVERAGE HEADER ─────────────────────────────────────────── */
.cov-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 24px; flex-wrap: wrap; }
.cov-head .btn { flex-shrink: 0; }
.cov-foot { margin-top: 10px; font-family: var(--ffb); font-size: 11.5px; color: var(--g3); }

/* ── CLIENTS ─────────────────────────────────────────────────── */
.clients { background: var(--white); border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); padding: 22px var(--px); }
.clients-inner { max-width: var(--max); margin: 0 auto; display: flex; align-items: center; flex-wrap: wrap; }
.clients-lbl { font-family: var(--ffb); font-size: 9.5px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--g3); margin-right: 28px; white-space: nowrap; flex-shrink: 0; }
.c-name { font-family: var(--ffh); font-size: 11.5px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: var(--rulelt); padding: 6px 16px; border-left: 1px solid var(--rulelt); white-space: nowrap; transition: color var(--t-base) var(--ease-std); }
.c-name:hover { color: var(--g2); }

/* ── ABOUT / FOUNDER ─────────────────────────────────────────── */
.about-grid { display: grid; grid-template-columns: minmax(280px, 1fr) 2fr; gap: 48px; align-items: start; }
.about-photo { position: relative; overflow: hidden; aspect-ratio: 4/5; background: var(--paper2); margin: 0; }
.about-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; filter: contrast(1.03); }
.about-id { background: var(--dark); padding: 12px 16px; display: flex; align-items: flex-end; justify-content: space-between; }
.about-id-name  { font-family: var(--ffh); font-size: 13px; font-weight: 700; color: #fff; display: block; }
.about-id-title { font-family: var(--ffb); font-size: 10.5px; color: rgba(255,255,255,.56); letter-spacing: .04em; }
.about-id-yr    { font-family: var(--ffb); font-size: 10px; font-weight: 700; color: rgba(255,255,255,.46); letter-spacing: .08em; text-transform: uppercase; }
.about-quote { font-family: var(--ffd); font-size: clamp(20px, 2.4vw, 28px); font-weight: 600; line-height: 1.28; color: var(--ink); margin-bottom: 18px; }
.about-quote em { font-style: italic; color: var(--g2); }
.about-body { font-family: var(--ffb); font-size: 14.5px; color: var(--g1); line-height: 1.72; margin-bottom: 14px; max-width: 56ch; }
.about-actions { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 20px; }

/* ── CTA BAND ────────────────────────────────────────────────── */
.cta-sec { background: var(--dark); padding: var(--py) var(--px); }
.cta-inner { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: center; }
.cta-h    { font-family: var(--ffd); font-size: clamp(22px, 2.6vw, 32px); font-weight: 600; letter-spacing: -.01em; color: #fff; margin-bottom: 8px; line-height: 1.2; }
.cta-sub  { font-family: var(--ffb); font-size: 13.5px; color: rgba(255,255,255,.58); line-height: 1.6; max-width: 50ch; }
.cta-right { display: flex; flex-direction: column; gap: 10px; align-items: flex-start; flex-shrink: 0; }
.cta-tel  {
  font-family: var(--ffb); font-size: 13px; font-weight: 600;
  color: rgba(255,255,255,.68);
  transition: color var(--t-base) var(--ease-std);
}
.cta-tel:hover { color: #fff; }
.cta-note { font-family: var(--ffb); font-size: 11px; color: rgba(255,255,255,.44); }

/* ── MAP ─────────────────────────────────────────────────────── */
.map-wrap { /* wrapper for inline coverage map widget */ }

/* ── PAGE HEADERS (inner pages) ──────────────────────────────── */
.ph { padding-top: var(--navh); background: var(--dark); position: relative; overflow: hidden; min-height: 240px; display: flex; align-items: flex-end; }
.ph-bg  { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: .2; filter: contrast(1.02) grayscale(20%); }
.ph::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(15,15,15,.5) 0%, rgba(15,15,15,.2) 50%, rgba(15,15,15,.85) 100%); z-index: 1; }
.ph-inner { max-width: var(--max); margin: 0 auto; width: 100%; padding: 44px var(--px); position: relative; z-index: 2; }
.ph-label { font-family: var(--ffb); font-size: 10px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: rgba(255,255,255,.55); margin-bottom: 10px; }
.ph-h1  { font-family: var(--ffh); font-size: clamp(24px, 3.4vw, 38px); font-weight: 700; letter-spacing: -.02em; line-height: 1.12; color: #fff; margin-bottom: 10px; }
.ph-sub { font-family: var(--ffb); font-size: 14.5px; color: rgba(255,255,255,.60); max-width: 58ch; line-height: 1.65; }

/* ── INNER PAGE LAYOUT ───────────────────────────────────────── */
.two-col        { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: start; }
.two-col.narrow { grid-template-columns: 1fr 2fr; }
.info3 { display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid var(--rule); }
.ig { padding: 22px 22px; border-right: 1px solid var(--rule); }
.ig:last-child  { border-right: none; }
.ig-lbl { font-family: var(--ffb); font-size: 9.5px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--g3); margin-bottom: 8px; display: block; }
.ig-val { font-family: var(--ffh); font-size: 14px; font-weight: 700; color: var(--ink); margin-bottom: 4px; }
.ig-sub { font-family: var(--ffb); font-size: 12.5px; color: var(--g2); line-height: 1.55; }

/* ── CAPABILITY TABLES ───────────────────────────────────────── */
.cap-tbl { width: 100%; border-collapse: collapse; }
.cap-tbl th { font-family: var(--ffb); font-size: 9.5px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--g3); padding: 12px 18px; text-align: left; border-bottom: 1px solid var(--rule); background: var(--paper); }
.cap-tbl td { font-family: var(--ffb); font-size: 13.5px; color: var(--g1); padding: 14px 18px; border-bottom: 1px solid var(--rulelt); vertical-align: top; line-height: 1.65; }
.cap-tbl tr:last-child td { border-bottom: none; }
.cap-tbl td:first-child { font-weight: 600; color: var(--ink); width: 220px; }
.cap-tbl td:first-child small { display: block; font-weight: 400; font-size: 11.5px; color: var(--g2); margin-top: 2px; }

/* ── FORMS ───────────────────────────────────────────────────── */
.fg { margin-bottom: 18px; }
.fg label { display: block; font-family: var(--ffb); font-size: 10.5px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--g2); margin-bottom: 6px; }
.fg input, .fg select, .fg textarea { width: 100%; padding: 12px 14px; border: 1px solid var(--rule); font-family: var(--ffb); font-size: 14px; color: var(--ink); background: var(--white); outline: none; border-radius: 0; transition: border-color var(--t-base) var(--ease-std), box-shadow var(--t-base) var(--ease-std); -webkit-appearance: none; }
.fg input:focus, .fg select:focus, .fg textarea:focus { border-color: var(--ink); box-shadow: inset 0 -2px 0 var(--blue); }
.fg textarea { resize: vertical; min-height: 90px; }
.row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.row3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 16px; }
.cbox-group { display: flex; flex-wrap: wrap; gap: 10px; }
.cbox-item { display: flex; align-items: center; gap: 7px; }
.cbox-item input { width: auto; padding: 0; accent-color: var(--blue); }
.cbox-item label { font-size: 13.5px; font-weight: 400; letter-spacing: 0; text-transform: none; color: var(--g1); margin-bottom: 0; }
.file-lbl { display: block; padding: 10px 14px; border: 1px dashed var(--rule); background: var(--paper); font-size: 13px; color: var(--g2); cursor: pointer; transition: border-color var(--t-base) var(--ease-std); }
.file-lbl:hover { border-color: var(--g2); }
.fsec { font-family: var(--ffb); font-size: 10px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--g3); padding: 18px 0 12px; border-top: 1px solid var(--rulelt); margin-top: 8px; }
.fsec:first-of-type { border-top: none; padding-top: 0; }

/* Legacy form aliases — vendor.html uses verbose class names; map them
   to the existing form primitives so the form inherits the document aesthetic. */
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-family: var(--ffb); font-size: 10.5px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--g2); margin-bottom: 6px; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 12px 14px; border: 1px solid var(--rule); font-family: var(--ffb); font-size: 14px; color: var(--ink); background: var(--white); outline: none; border-radius: 0; transition: border-color var(--t-base) var(--ease-std), box-shadow var(--t-base) var(--ease-std); -webkit-appearance: none; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--ink); box-shadow: inset 0 -2px 0 var(--blue); }
.form-group textarea { resize: vertical; min-height: 90px; }
.form-row, .form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-field { margin-bottom: 18px; }
.form-field label { display: block; font-family: var(--ffb); font-size: 10.5px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--g2); margin-bottom: 6px; }
.form-field input, .form-field select, .form-field textarea { width: 100%; padding: 12px 14px; border: 1px solid var(--rule); font-family: var(--ffb); font-size: 14px; color: var(--ink); background: var(--white); outline: none; border-radius: 0; transition: border-color var(--t-base) var(--ease-std), box-shadow var(--t-base) var(--ease-std); -webkit-appearance: none; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { border-color: var(--ink); box-shadow: inset 0 -2px 0 var(--blue); }
.form-field textarea { resize: vertical; min-height: 90px; }
.form-check-group { display: flex; flex-wrap: wrap; gap: 10px 18px; margin-top: 4px; }
.form-check-item { display: flex; align-items: center; gap: 8px; }
.form-check-item input { width: auto; padding: 0; accent-color: var(--blue); }
.form-check-item label { font-size: 13.5px; font-weight: 400; letter-spacing: 0; text-transform: none; color: var(--g1); margin-bottom: 0; }
.form-file-label { display: block; padding: 14px 16px; border: 1px dashed var(--rule); background: var(--paper); font-size: 13px; color: var(--g2); cursor: pointer; transition: border-color var(--t-base) var(--ease-std), color var(--t-base) var(--ease-std); text-align: center; }
.form-file-label:hover { border-color: var(--ink); color: var(--ink); }
.form-section-head { font-family: var(--ffb); font-size: 10px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--g3); padding: 22px 0 14px; border-top: 1px solid var(--rulelt); margin-top: 8px; }
.form-section-head:first-of-type, form > .form-section-head:first-child { border-top: none; padding-top: 0; margin-top: 0; }
.ig-cell { padding: 22px 22px; }
@media (max-width: 720px) {
  .form-row, .form-row-2 { grid-template-columns: 1fr; }
}

/* ── COVERAGE PAGE ───────────────────────────────────────────── */
.cov-row { display: flex; align-items: center; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--rulelt); }
.cov-row:last-child { border-bottom: none; }
.cov-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--blue); flex-shrink: 0; }
.cov-state { font-family: var(--ffh); font-size: 15px; font-weight: 700; color: var(--ink); flex: 1; }
.cov-note  { font-family: var(--ffb); font-size: 13px; color: var(--g2); }

/* ── FOOTER ──────────────────────────────────────────────────── */
.footer { background: #070707; border-top: 1px solid rgba(255,255,255,.04); }
.f-main { max-width: var(--max); margin: 0 auto; padding: 44px var(--px) 36px; display: grid; grid-template-columns: 2.2fr 1fr 1fr 1fr; gap: 32px; border-bottom: 1px solid rgba(255,255,255,.05); }
.f-logo {
  width: 150px;
  height: auto;
  display: block;
  object-fit: contain;
  opacity: .92;
  margin-bottom: 14px;
}
.f-brand { font-family: var(--ffd); font-size: 14.5px; font-style: italic; color: rgba(255,255,255,.55); margin-bottom: 12px; font-weight: 600; }
.f-desc  { font-family: var(--ffb); font-size: 12.5px; color: rgba(255,255,255,.58); line-height: 1.65; max-width: 30ch; margin-bottom: 14px; }
.f-contact { font-family: var(--ffb); font-size: 12.5px; color: rgba(255,255,255,.68); margin-bottom: 4px; }
.f-contact a {
  transition: color var(--t-base) var(--ease-std);
}
.f-contact a:hover { color: rgba(255,255,255,.92); }
.f-contact-sm { font-size: 11px; margin-top: 6px; color: rgba(255,255,255,.42); }
.f-creds { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 14px; }
.f-cred  {
  font-family: var(--ffb); font-size: 9.5px; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: rgba(255,255,255,.55);
  display: flex; align-items: center; gap: 6px;
}
/* Same SVG checkmark icon as the statement creds — visual consistency
   across the trust/credential vocabulary on the site. */
.f-cred::before {
  content: '';
  width: 10px; height: 10px; flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 14' fill='none' stroke='rgba(255,255,255,0.6)' stroke-width='2.4' stroke-linecap='square' stroke-linejoin='miter'%3E%3Cpath d='M2 7l3.5 3.5 6.5-7'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}
.f-col-head {
  font-family: var(--ffb); font-size: 9.5px; font-weight: 700;
  letter-spacing: .2em; text-transform: uppercase;
  color: rgba(255,255,255,.5); margin-bottom: 14px;
}
.f-links { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.f-links a {
  font-family: var(--ffb); font-size: 12.5px; color: rgba(255,255,255,.55);
  transition: color var(--t-base) var(--ease-std);
  position: relative;
  display: inline-block;
}
.f-links a:hover { color: rgba(255,255,255,.92); }
.f-bot { max-width: var(--max); margin: 0 auto; padding: 16px var(--px); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; }
.f-copy, .f-hq { font-family: var(--ffb); font-size: 11px; color: rgba(255,255,255,.38); }

/* ── PORTFOLIO — Curated Inline Layout ──────────────────────── */
.pf-sec { background: var(--paper); border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); }
.pf-intro { margin-bottom: 36px; }
.pf-categories { display: flex; flex-direction: column; }
.pf-cat {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 0 40px;
  padding: 32px 0;
  border-top: 1px solid var(--rule);
  align-items: start;
}
.pf-cat-lbl {
  font-family: var(--ffb); font-size: 9.5px; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase; color: var(--g3);
  padding-top: 4px; line-height: 1.65;
}
.pf-names { display: flex; flex-wrap: wrap; align-items: baseline; row-gap: 4px; }
.pf-name {
  font-family: var(--ffh); font-size: 15.5px; font-weight: 600;
  color: var(--ink); letter-spacing: -.015em; line-height: 1.5;
  white-space: nowrap;
}
.pf-name::after {
  content: '·'; color: var(--rule);
  margin: 0 13px; font-weight: 300; font-size: 16px;
}
.pf-name:last-of-type::after { display: none; }
.pf-note {
  font-family: var(--ffb); font-size: 12px; color: var(--g3); font-style: italic;
  margin-top: 12px; line-height: 1.6;
}
.pf-stats {
  display: grid; grid-template-columns: repeat(4,1fr);
  margin-top: 44px; padding-top: 36px; border-top: 1px solid var(--rule);
}
.pf-stat-n {
  font-family: var(--ffh); font-size: 26px; font-weight: 700;
  letter-spacing: -.03em; color: var(--ink); display: block;
  margin-bottom: 6px; line-height: 1;
}
.pf-stat-n sup { font-size: .45em; vertical-align: super; color: var(--blue); }
.pf-stat-l { font-family: var(--ffb); font-size: 11.5px; color: var(--g2); line-height: 1.4; }
.pf-stat { padding-right: 28px; border-right: 1px solid var(--rulelt); }
.pf-stat:last-child { border-right: none; padding-right: 0; }
.pf-footer-note {
  font-family: var(--ffb); font-size: 11.5px; color: var(--g3);
  margin-top: 24px; line-height: 1.6;
}

/* ── RESPONSIVE ──────────────────────────────────────────────── */
@media(max-width: 1060px) {
  :root { --px: 36px; }
  .f-main { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .metrics-grid { grid-template-columns: 1fr; gap: 36px; }
  .about-grid { gap: 48px; }
}
@media(max-width: 900px) {
  .pf-cat { grid-template-columns: 1fr; gap: 12px; }
  .pf-name { font-size: 14.5px; }
  .pf-stats { grid-template-columns: 1fr 1fr; gap: 0; }
  .pf-stat { padding: 18px 0; border-right: none; border-bottom: 1px solid var(--rulelt); }
  .pf-stat:nth-last-child(-n+2) { border-bottom: none; }
}
@media(max-width: 860px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-right { height: 56vw; min-height: 280px; max-height: 480px; }
  .hero-right::before { background: none; }
  .hero-kpi { grid-template-columns: repeat(4, 1fr); }
  .kpi-cell { padding: 18px 14px; }
  .svc-intro, .two-col, .two-col.narrow, .about-grid { grid-template-columns: 1fr; gap: 32px; }
  .about-photo { max-width: 360px; aspect-ratio: 3/4; }
  .svc-row { grid-template-columns: 28px 1fr; }
  .svc-desc { display: none; }
  .stat-row { grid-template-columns: 1fr 1fr; }
  .stat-cell:nth-child(even) { border-right: none; }
  .stat-cell { border-bottom: 1px solid var(--rule); }
  .stat-cell:nth-last-child(-n+2) { border-bottom: none; }
  .info3 { grid-template-columns: 1fr; }
  .ig { border-right: none; border-bottom: 1px solid var(--rulelt); }
  .ig:last-child { border-bottom: none; }
  .cta-inner { grid-template-columns: 1fr; gap: 24px; }
  .gallery-grid:not(.gallery-grid-4):not(.gallery-grid-flagship):not(.gallery-grid-retail) { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid:not(.gallery-grid-4):not(.gallery-grid-flagship):not(.gallery-grid-retail) .gallery-img:nth-child(3) { grid-column: span 2; aspect-ratio: 16/9; }
  .gallery-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid-4 .gallery-img { aspect-ratio: 16/9; }
  .gallery-grid-flagship .gallery-img { aspect-ratio: 16/9; }
  .gallery-grid-retail .gallery-img { aspect-ratio: 16/9; }
  .gallery-subhead p { text-align: left; max-width: none; }
  .gallery-text-card { grid-template-columns: 1fr; gap: 32px; padding: 12px var(--px) 32px; }
  .gallery-header { padding: 48px var(--px) 28px; }
  .gallery-intro { text-align: left; }
  .cs-row, .cs-row.rev, .cs-row.cs-text-only { grid-template-columns: 1fr; gap: 32px; padding: 44px var(--px); }
  .cs-side { border-left: none; border-top: 1px solid var(--rule); padding: 24px 0 0; }
  .row2, .row3 { grid-template-columns: 1fr; }
  .trust-items { gap: 0; }
  .trust-item { border-right: none; border-bottom: 1px solid var(--rulelt); padding: 8px 0; }
  .trust-item:last-child { border-bottom: none; }
  .cov-head { flex-direction: column; align-items: flex-start; gap: 16px; }
}
@media(max-width: 640px) {
  :root { --px: 20px; --py: 44px; --navh: 60px; }
  .nav-links, .nav-phone, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .hero-text { padding: 80px 0 28px; }
  .hero-kpi { grid-template-columns: 1fr 1fr; }
  .kpi-cell:nth-child(2) { border-right: none; }
  .kpi-cell:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.08); }
  .gallery-grid:not(.gallery-grid-4):not(.gallery-grid-flagship):not(.gallery-grid-retail) { grid-template-columns: 1fr; }
  .gallery-img { aspect-ratio: 16/9; }
  .gallery-grid:not(.gallery-grid-4):not(.gallery-grid-flagship):not(.gallery-grid-retail) .gallery-img:nth-child(3) { grid-column: auto; aspect-ratio: 16/9; }
  .gallery-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid-4 .gallery-img { aspect-ratio: 16/9; }
  .gallery-grid-flagship { grid-template-columns: 1fr; }
  .gallery-grid-flagship .gallery-img { aspect-ratio: 16/9; }
  .gallery-grid-retail { grid-template-columns: 1fr; }
  .gallery-grid-retail .gallery-img { aspect-ratio: 16/9; }
  .gtc-stats { grid-template-columns: 1fr 1fr; }
  .gtc-stat { padding: 18px 14px; }
  .gtc-sn { font-size: 22px; }
  .f-main { grid-template-columns: 1fr; gap: 28px; padding: 40px 20px 32px; }
  .cs-stats { flex-direction: column; }
  .cs-stat { border-right: none; border-bottom: 1px solid var(--rule); }
  .cs-stat:last-child { border-bottom: none; }
  .clients-inner { flex-wrap: wrap; }
  .c-name { padding: 5px 12px; font-size: 10.5px; }
  .pf-stats { grid-template-columns: 1fr; }
  .pf-stat { border-right: none !important; }
  .stmt-inner { gap: 16px; }
  .stmt-creds { gap: 14px; }

  /* v16.7.2 mobile layout repair — namespaced, additive, scoped to .pf- and .gallery- only */
  /* Homepage / capability portfolio category rows: collapse the 200px label
     column so brand-name chips (which use white-space: nowrap) stop
     overflowing horizontally on small viewports. */
  .pf-cat { grid-template-columns: 1fr; gap: 14px 0; padding: 24px 0; }
  .pf-cat-lbl { padding-top: 0; }
  .pf-stat { padding-right: 0; }
  /* Our Work gallery subsection spacing: the inline 72px top margin
     between gallery sections creates oversized black gaps on mobile.
     Use !important to override the inline style without editing HTML. */
  .gallery-subhead { margin-top: 36px !important; }
  .gallery-subhead:first-of-type { margin-top: 0 !important; }
}

/* ── COVERAGE MAP WIDGET (inline, no iframe) ─────────────────── */
.aus-cov-map { background: #FFFFFF; color: #111111; border: 1px solid var(--rule); overflow: hidden; }
.aus-cov-map *, .aus-cov-map *::before, .aus-cov-map *::after { box-sizing: border-box; }
.aus-cov-map .aus-stats { display: flex; border-bottom: 1px solid #ECEAE6; }
.aus-cov-map .aus-st { flex: 1; padding: 16px 8px; text-align: center; border-right: 1px solid #ECEAE6; }
.aus-cov-map .aus-st:last-child { border-right: none; }
.aus-cov-map .aus-sv { font-family: var(--ffh); font-size: 20px; font-weight: 700; letter-spacing: -.02em; color: #111111; line-height: 1; }
.aus-cov-map .aus-sl { font-family: var(--ffb); font-size: 9px; color: #9E9E9E; margin-top: 6px; letter-spacing: .16em; text-transform: uppercase; font-weight: 600; }
.aus-cov-map .aus-filters { display: flex; gap: 6px; padding: 11px 14px; border-bottom: 1px solid #ECEAE6; flex-wrap: wrap; }
.aus-cov-map .aus-fb { font-family: var(--ffb); font-size: 10.5px; padding: 5px 11px; border: 1px solid #D8D7D3; background: #FFFFFF; color: #6B6B6B; cursor: pointer; border-radius: 0; transition: background-color var(--t-base) var(--ease-std), border-color var(--t-base) var(--ease-std), color var(--t-base) var(--ease-std); letter-spacing: .04em; font-weight: 500; display: inline-flex; align-items: center; gap: 6px; }
.aus-cov-map .aus-fb.active { background: #111111; border-color: #111111; color: #FFFFFF; }
.aus-cov-map .aus-fb:hover:not(.active) { background: #F9F8F6; border-color: #9E9E9E; }
.aus-cov-map .aus-dot { display: inline-block; width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; }
.aus-cov-map .aus-map-wrap { position: relative; }
.aus-cov-map .aus-map-canvas { width: 100%; background: #F9F8F6; }
.aus-cov-map.aus-cov-map-tall .aus-map-canvas { height: 480px; }
.aus-cov-map.aus-cov-map-short .aus-map-canvas { height: 340px; }
.aus-cov-map .aus-legend { position: absolute; bottom: 14px; left: 14px; z-index: 400; background: rgba(255,255,255,.96); border: 1px solid #D8D7D3; padding: 10px 13px; }
.aus-cov-map .aus-li { display: flex; align-items: center; gap: 8px; font-family: var(--ffb); font-size: 10.5px; color: #424242; margin-bottom: 5px; font-weight: 500; }
.aus-cov-map .aus-li:last-child { margin-bottom: 0; }
.aus-cov-map .aus-ld { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.aus-cov-map .aus-mfooter { padding: 11px 16px; border-top: 1px solid #ECEAE6; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 8px; }
.aus-cov-map .aus-mfooter p { font-family: var(--ffb); font-size: 10.5px; color: #9E9E9E; letter-spacing: .04em; margin: 0; }
.aus-cov-map .leaflet-popup-content-wrapper { border-radius: 0 !important; box-shadow: 0 6px 24px rgba(0,0,0,.12) !important; background: #FFFFFF !important; border: 1px solid #D8D7D3 !important; padding: 0 !important; }
.aus-cov-map .leaflet-popup-tip { background: #FFFFFF !important; border: 1px solid #D8D7D3 !important; }
.aus-cov-map .leaflet-popup-content { margin: 11px 14px !important; font-family: var(--ffb) !important; line-height: 1.5 !important; }
.aus-cov-map .pc { font-family: var(--ffh); font-size: 13px; font-weight: 700; color: #111111; margin-bottom: 2px; letter-spacing: -.01em; }
.aus-cov-map .ps { font-size: 11px; color: #6B6B6B; margin-bottom: 6px; letter-spacing: .02em; }
.aus-cov-map .pb { display: inline-block; font-size: 9px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; padding: 2px 7px; margin-right: 3px; border: 1px solid currentColor; }
.aus-cov-map .pb.pf { color: #1B5A9E; }
.aus-cov-map .pb.pj { color: #6B6B6B; }
.aus-cov-map .pb.pk { color: #3B4A5C; }
.aus-cov-map .pb.pr { color: #9C7A2E; }
.aus-cov-map .leaflet-control-attribution { background: rgba(255,255,255,.85) !important; font-size: 9px !important; color: #9E9E9E !important; }

@media (max-width: 640px) {
  .aus-cov-map .aus-stats { flex-wrap: wrap; }
  .aus-cov-map .aus-st { flex-basis: 50%; padding: 14px 6px; border-bottom: 1px solid #ECEAE6; }
  .aus-cov-map .aus-st:nth-child(2n) { border-right: none; }
  .aus-cov-map .aus-st:nth-last-child(-n+2) { border-bottom: none; }
  .aus-cov-map .aus-fb { font-size: 10px; padding: 4px 9px; }
  .aus-cov-map.aus-cov-map-tall .aus-map-canvas,
  .aus-cov-map.aus-cov-map-short .aus-map-canvas { height: 360px; }
  .aus-cov-map .aus-legend { font-size: 9.5px; padding: 8px 10px; }
}

/* ── PREMIUM MOTION (restrained, mobile-friendly) ─────────────────
   Layered on top of the design-token motion system. Adds: a subtle
   1px translate on button hover, image hover zoom on non-gallery photos,
   and a global `prefers-reduced-motion` fallback. */

/* Button hover lift — subtle 1px translate. The .btn transition list
   defined at the button-system block already covers transform. */
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); transition-duration: 60ms; }

/* Subtle image hover zoom — non-gallery photos (about photo, case-study
   thumbnail). Uses standard design-token easing. */
.about-photo, .pp-img, .cs-photo, .hero-right { overflow: hidden; }
.about-photo img, .pp-img img, .cs-photo img {
  transition: transform 700ms var(--ease-out);
  display: block;
}
.about-photo:hover img, .pp-img:hover img, .cs-photo:hover img {
  transform: scale(1.025);
}

/* Respect user motion preferences — disables every transition/animation
   site-wide for users who have reduced-motion enabled at the OS level. */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1 !important; transform: none !important; }
}

/* ── MOBILE STICKY HEADER LOCK ─────────────────────────────────────
   The mobile sticky header MUST stay dark in every scroll state.
   Logo: images/logo-white.png. Hamburger: light/white. No backdrop
   filter, no white background, no color transition. !important is
   used here intentionally to defeat any stale cached CSS, any later
   override, any JS-applied inline style, and any scroll-state class.
   Desktop (>860px) is unaffected. */
@media (max-width: 860px) {
  .nav,
  .nav.scrolled {
    background: var(--dark) !important;
    background-color: var(--dark) !important;
    background-image: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    border-bottom-color: rgba(255,255,255,.06) !important;
    box-shadow: none !important;
  }
  .nav .nav-logo img,
  .nav.scrolled .nav-logo img {
    opacity: 1 !important;
    filter: none !important;
    visibility: visible !important;
  }
  .nav-toggle span,
  .nav.scrolled .nav-toggle span {
    background: rgba(255, 255, 255, .85) !important;
    background-color: rgba(255, 255, 255, .85) !important;
  }
}

/* ────────────────────────────────────────────────────────────────
   FIELD FEEDBACK / MANAGER REVIEWS SECTION
   Premium operational references — site-manager and regional-manager
   voice. Uses standard .section > .wrap pattern. All selectors are
   qualified with .rv-sec to win specificity over any conflicting rules.
   Two-column grid on desktop, single column on mobile.
   ──────────────────────────────────────────────────────────────── */
.rv-sec {
  background: var(--paper);
  padding: clamp(64px, 8vw, 104px) var(--px);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  box-sizing: border-box;
}
.rv-sec * { box-sizing: border-box; }
.rv-sec > .wrap {
  max-width: var(--max);
  margin: 0 auto;
}
.rv-sec .rv-head {
  margin: 0 0 48px;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: end;
}
.rv-sec .rv-head h2 { margin-bottom: 8px; }
.rv-sec .rv-head .body { margin-top: 8px; }
.rv-sec .rv-grid {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--rule);
  border-left: 1px solid var(--rule);
}
.rv-sec .rv-card {
  background: var(--white);
  padding: 36px 32px 32px;
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  min-width: 0;
}
.rv-sec .rv-mark {
  font-family: var(--ffd);
  font-style: italic;
  font-size: 56px;
  line-height: 0;
  color: var(--blue);
  opacity: .55;
  margin-bottom: -10px;
  letter-spacing: -.02em;
  font-weight: 600;
  display: block;
  height: 22px;
}
.rv-sec .rv-quote {
  font-family: var(--ffd);
  font-size: clamp(16px, 1.55vw, 19px);
  font-style: italic;
  line-height: 1.55;
  color: var(--ink);
  letter-spacing: -.005em;
  font-weight: 500;
  max-width: 52ch;
  margin: 0;
}
.rv-sec .rv-attr {
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--rule-lt);
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 16px;
}
.rv-sec .rv-who {
  font-family: var(--ffh);
  font-size: 12.5px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -.005em;
  line-height: 1.35;
}
.rv-sec .rv-where {
  font-family: var(--ffb);
  font-size: 11.5px;
  color: var(--g2);
  margin-top: 3px;
  letter-spacing: .005em;
}
.rv-sec .rv-tag {
  font-family: var(--ffb);
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--g3);
  white-space: nowrap;
  padding-bottom: 2px;
}
.rv-sec .rv-note {
  margin: 36px 0 0;
  padding: 0;
  font-family: var(--ffb);
  font-size: 12px;
  color: var(--g3);
  letter-spacing: .01em;
  text-align: center;
}
@media (max-width: 860px) {
  .rv-sec { padding: clamp(48px, 6vw, 72px) var(--px); }
  .rv-sec .rv-head { grid-template-columns: 1fr; gap: 16px; align-items: start; }
  .rv-sec .rv-grid { grid-template-columns: 1fr; }
  .rv-sec .rv-card { padding: 28px 22px 24px; }
  .rv-sec .rv-quote { font-size: 16px; }
  .rv-sec .rv-attr { flex-direction: column; align-items: flex-start; gap: 10px; }
}

/* ────────────────────────────────────────────────────────────────
   COVERAGE MAP — v16 OperationsMap additions
   Rich tooltip popup + refinements to existing aus-cov-map widget.
   All selectors prefixed with .aus-cov-map to scope cleanly.
   Monochrome, procurement-grade, no SaaS analytics styling.
   ──────────────────────────────────────────────────────────────── */

/* Tighter filter bar to accommodate 7 buttons cleanly */
.aus-cov-map .aus-filters { padding: 10px 14px; gap: 5px; }
.aus-cov-map .aus-fb {
  font-size: 10px;
  padding: 5px 10px;
  letter-spacing: .05em;
  font-weight: 600;
}

/* Rich popup — operational record card */
.aus-cov-map .leaflet-popup-content-wrapper {
  border-radius: 0 !important;
  box-shadow: 0 8px 28px rgba(0,0,0,.10) !important;
  background: #FFFFFF !important;
  border: 1px solid #111111 !important;
  padding: 0 !important;
}
.aus-cov-map .leaflet-popup-tip {
  background: #FFFFFF !important;
  border: 1px solid #111111 !important;
}
.aus-cov-map .leaflet-popup-content {
  margin: 0 !important;
  font-family: var(--ffb) !important;
  line-height: 1.5 !important;
  width: auto !important;
}
.aus-cov-map .aus-pop {
  padding: 14px 16px 12px;
  min-width: 200px;
}
.aus-cov-map .aus-pop-head {
  padding-bottom: 9px;
  border-bottom: 1px solid #ECEAE6;
  margin-bottom: 9px;
}
.aus-cov-map .aus-pop-city {
  font-family: var(--ffh);
  font-size: 13.5px;
  font-weight: 700;
  color: #111111;
  letter-spacing: -.012em;
  margin-bottom: 6px;
  line-height: 1.2;
}
.aus-cov-map .aus-pop-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 3px;
}
.aus-cov-map .aus-pop-tag {
  display: inline-block;
  font-size: 8.5px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #6B6B6B;
  padding: 2px 7px;
  border: 1px solid #D8D7D3;
  background: #F9F8F6;
}
.aus-cov-map .aus-pop-brands {
  font-size: 11px;
  color: #424242;
  margin-bottom: 9px;
  letter-spacing: .005em;
  line-height: 1.45;
}
.aus-cov-map .aus-pop-mo {
  font-size: 9px;
  color: #9E9E9E;
  font-weight: 700;
  letter-spacing: .04em;
}
.aus-cov-map .aus-pop-data {
  border-top: 1px solid #ECEAE6;
  padding-top: 9px;
}
.aus-cov-map .aus-pop-line {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  padding: 2px 0;
}
.aus-cov-map .aus-pop-k {
  font-size: 9px;
  color: #9E9E9E;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 700;
}
.aus-cov-map .aus-pop-v {
  font-family: var(--ffh);
  font-size: 11.5px;
  color: #111111;
  font-weight: 600;
  letter-spacing: -.005em;
}
.aus-cov-map .aus-pop-cor {
  font-size: 9px;
  color: #1B5A9E;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 700;
  margin-top: 9px;
  padding-top: 9px;
  border-top: 1px solid #ECEAE6;
}

/* Corridor legend chip (subtle line indicator on map legend) */
.aus-cov-map .aus-li.aus-li-corridor::before {
  content: '';
  display: inline-block;
  width: 14px;
  height: 0;
  border-top: 1.2px dashed #1B5A9E;
  opacity: .55;
  margin-right: -2px;
}

/* ────────────────────────────────────────────────────────────────
   OPERATIONAL SYSTEMS SECTION
   3-col card grid extending the .info3 pattern to 6 cells with
   clean 2-row wrap. Uses gap-as-borders technique so all internal
   rules render at exactly 1px without nth-child math. Responsive:
   3-col desktop → 2-col tablet → 1-col mobile.
   All tokens reused from existing design system.
   ──────────────────────────────────────────────────────────────── */
.ops-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
}
.ops-cell {
  background: var(--white);
  padding: 28px 26px 26px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: background-color var(--t-base) var(--ease-std);
}
.ops-cell:hover { background-color: var(--paper); }
.ops-num {
  font-family: var(--ffb);
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--g3);
}
.ops-title {
  font-family: var(--ffh);
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -.012em;
  line-height: 1.25;
  margin: 0;
}
.ops-body {
  font-family: var(--ffb);
  font-size: 13px;
  color: var(--g1);
  line-height: 1.6;
  letter-spacing: .002em;
  margin: 0;
}
@media (max-width: 900px) {
  .ops-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .ops-grid { grid-template-columns: 1fr; }
  .ops-cell { padding: 22px 20px; }
}

/* ────────────────────────────────────────────────────────────────
   FIELD FEEDBACK — Editorial link beneath rv-note (v16.4)
   Subtle text-only link to expanded reviews. No button styling.
   ──────────────────────────────────────────────────────────────── */
.rv-sec .rv-link {
  margin: 14px 0 0;
  padding: 0;
  text-align: center;
  font-family: var(--ffb);
  font-size: 11.5px;
  letter-spacing: .04em;
}
.rv-sec .rv-link a {
  color: var(--g2);
  text-decoration: none;
  border-bottom: 1px solid var(--rule);
  padding-bottom: 2px;
  transition: color var(--t-base) var(--ease-std), border-color var(--t-base) var(--ease-std);
}
.rv-sec .rv-link a:hover {
  color: var(--ink);
  border-bottom-color: var(--ink2);
}

/* ── BBB ACCREDITATION ───────────────────────────────────────── */
/* Per BBB seal usage requirements: the official seal renders at its
   natural 200x42 size in every placement. We do not resize, recolor,
   crop, or rebuild it. The .bbb-seal wrapper exists only to opt out
   of the global `img { max-width: 100% }` rule when the container
   happens to be narrower than 200px, and to give the seal a
   predictable block context. */
.bbb-seal { display: inline-block; line-height: 0; }
.bbb-seal a { display: inline-block; line-height: 0; }
.bbb-seal img {
  display: block;
  width: 200px;
  height: 42px;
  max-width: 200px;
  border: 0;
}

/* Footer BBB strip — sits between .f-main and .f-bot.
   Seal on the left, brand clarification text on the right. */
.f-bbb {
  max-width: var(--max);
  margin: 0 auto;
  padding: 18px var(--px) 18px;
  border-bottom: 1px solid rgba(255,255,255,.05);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.f-bbb-text {
  font-family: var(--ffb);
  font-size: 11.5px;
  color: rgba(255,255,255,.5);
  line-height: 1.55;
  max-width: 56ch;
}

/* Subtle homepage trust line — v16.7.2 refined.
   Sits inside .stmt as a quiet trailing line of the statement section,
   NOT as a separate visual band. No border, tight spacing, smaller text.
   The seal renders at native 200x42; surrounding elements stay restrained
   so it doesn't compete with the hero metrics or services row. */
.stmt-bbb {
  max-width: var(--max);
  margin: 14px auto 0;
  padding-top: 0;
  border-top: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}
.stmt-bbb-label {
  font-family: var(--ffb);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--g3);
}
.stmt-bbb-link {
  font-family: var(--ffb);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: .04em;
  color: var(--blue);
  border-bottom: 1px solid transparent;
  transition: border-color var(--t-base) var(--ease-std);
  white-space: nowrap;
}
.stmt-bbb-link:hover { border-bottom-color: var(--blue); }
@media (max-width: 640px) {
  .stmt-bbb { flex-direction: column; gap: 10px; margin-top: 16px; }
}

/* Capability page Accreditation & Trust micro-block.
   Locked layout: seal column is a fixed 200px track on desktop, with
   the text content beside it. Stacks cleanly on mobile (seal first,
   text below). The grid prevents the wrap-collapse that would let
   the seal float above the heading on intermediate viewports. */
.accred-block {
  padding: 32px 0;
  border-bottom: 1px solid var(--rule);
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 28px;
  align-items: center;
}
.accred-block .accred-text { min-width: 0; }
.accred-block .accred-text .lbl { margin-bottom: 6px; }
.accred-block .accred-text h3 {
  font-family: var(--ffh);
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 6px;
  letter-spacing: -.005em;
}
.accred-block .accred-text p {
  font-family: var(--ffb);
  font-size: 13px;
  color: var(--g2);
  line-height: 1.6;
  margin: 0;
}
@media (max-width: 720px) {
  .accred-block {
    grid-template-columns: 1fr;
    justify-items: start;
    gap: 18px;
    padding: 28px 0;
  }
}

/* Contact page accreditation cell — uses existing .info-cell shell.
   Seal sits at native size with the label above. */
.info-cell .bbb-seal { margin-top: 8px; }
