/* =========================================================================
   Shomax Consulting Engineers — shared stylesheet
   "Modern technical": white ground, near-black text, one muted petrol accent.
   No gradients, no glass, no decorative illustration.
   ========================================================================= */

:root {
  /* ink + paper */
  --ink:        #0B0B0C;   /* body text, headlines */
  --ink-2:      #2c2e30;   /* slightly softened ink */
  --muted:      #5f6163;   /* secondary text */
  --faint:      #8a8c8e;   /* captions, meta */
  --paper:      #ffffff;
  --paper-2:    #f6f6f3;   /* warm off-white section ground */
  --paper-3:    #efefe9;   /* deeper panel ground */
  --line:       #e2e2dc;   /* hairlines */
  --line-2:     #d2d2ca;   /* stronger hairlines */

  /* accent — muted petrol */
  --accent:     #2f5d62;
  --accent-700: #244a4e;   /* hover / pressed */
  --accent-050: #eef3f2;   /* tint ground */

  /* footer */
  --footer-bg:  #0B0B0C;
  --footer-fg:  #d7d8d6;
  --footer-mut: #8c8f8d;
  --footer-line:#262729;

  /* type */
  --sans: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --serif: "Source Serif 4", Georgia, "Times New Roman", serif;
  --mono: "IBM Plex Mono", ui-monospace, "SFMono-Regular", Menlo, monospace;

  /* metrics */
  --container: 1200px;
  --gutter: clamp(20px, 5vw, 64px);
  --radius: 2px;
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.62;
  color: var(--ink);
  background: var(--paper);
  font-feature-settings: "kern", "liga", "cv05";
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { max-width: 100%; display: block; }
a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-700); text-decoration: underline; text-underline-offset: 3px; }
h1, h2, h3, h4 { margin: 0; font-weight: 600; line-height: 1.12; color: var(--ink); }
p { margin: 0 0 1.1em; text-wrap: pretty; }
ul, ol { margin: 0 0 1.1em; padding-left: 1.15em; }
li { margin: 0 0 .4em; }
strong { font-weight: 600; }
hr { border: 0; border-top: 1px solid var(--line); margin: 0; }

/* ---------- focus: visible, high-contrast ---------- */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  border-radius: 1px;
}
.skip-link {
  position: absolute; left: 12px; top: -48px;
  background: var(--ink); color: #fff; padding: 10px 16px;
  font: 500 14px/1 var(--sans); border-radius: var(--radius);
  z-index: 200; transition: top .15s ease;
}
.skip-link:focus { top: 12px; text-decoration: none; color:#fff; }

/* ---------- layout ---------- */
.container { max-width: var(--container); margin: 0 auto; padding-inline: var(--gutter); }
.container-wide { max-width: 1360px; margin: 0 auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(56px, 8vw, 104px); }
.section-tight { padding-block: clamp(40px, 5vw, 64px); }
.ground { background: var(--paper-2); }
.ground-3 { background: var(--paper-3); }

.grid { display: grid; gap: clamp(28px, 4vw, 56px); }
@media (min-width: 1024px) {
  .cols-12 { grid-template-columns: repeat(12, 1fr); }
  .span-3 { grid-column: span 3; } .span-4 { grid-column: span 4; }
  .span-5 { grid-column: span 5; } .span-6 { grid-column: span 6; }
  .span-7 { grid-column: span 7; } .span-8 { grid-column: span 8; }
  .span-9 { grid-column: span 9; }
}

/* ---------- type helpers ---------- */
.eyebrow {
  font-family: var(--mono);
  font-size: 12px; font-weight: 500;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--accent); margin: 0 0 18px;
  display: flex; align-items: center; gap: 12px;
}
.eyebrow.muted { color: var(--faint); }
.eyebrow::before {
  content: ""; width: 24px; height: 1px; background: currentColor; flex: none; opacity: .7;
}
.eyebrow.no-rule::before { display: none; }

.display {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(34px, 5.4vw, 60px);
  line-height: 1.04;
  letter-spacing: -0.012em;
}
.h-serif { font-family: var(--serif); }
h1.page-title {
  font-family: var(--serif); font-weight: 600;
  font-size: clamp(30px, 4.4vw, 48px); line-height: 1.06; letter-spacing: -.01em;
}
h2.section-title {
  font-family: var(--serif); font-weight: 600;
  font-size: clamp(24px, 3vw, 34px); line-height: 1.1; letter-spacing: -.008em;
}
.lead {
  font-size: clamp(18px, 1.5vw, 21px);
  line-height: 1.55; color: var(--ink-2);
}
.measure { max-width: 68ch; }
.measure-tight { max-width: 58ch; }
.muted-text { color: var(--muted); }
.small { font-size: 14px; }
.mono { font-family: var(--mono); }
.tnum { font-variant-numeric: tabular-nums; font-feature-settings: "tnum"; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font: 500 15px/1 var(--sans);
  padding: 13px 22px; border-radius: var(--radius);
  border: 1px solid var(--ink); background: var(--ink); color: #fff;
  cursor: pointer; transition: background .15s ease, border-color .15s ease, color .15s ease;
}
.btn:hover { background: var(--accent-700); border-color: var(--accent-700); color:#fff; text-decoration: none; }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line-2); }
.btn-ghost:hover { background: transparent; color: var(--accent-700); border-color: var(--accent); }
.btn .arw { font-family: var(--mono); }

.link-arrow {
  font-family: var(--mono); font-size: 13px; font-weight: 500;
  letter-spacing: .04em; text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 8px;
}
.link-arrow .arw { transition: transform .15s ease; }
.link-arrow:hover .arw { transform: translateX(4px); }

/* ---------- header / nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.94);
  backdrop-filter: saturate(1.2) blur(2px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.brand { display: flex; flex-direction: column; gap: 2px; line-height: 1; }
.brand:hover { text-decoration: none; }
.brand .mark {
  font-family: var(--serif); font-weight: 600; font-size: 22px;
  letter-spacing: -.01em; color: var(--ink);
}
.brand .sub {
  font-family: var(--mono); font-size: 9.5px; font-weight: 500;
  letter-spacing: .26em; text-transform: uppercase; color: var(--faint);
}
.nav-links { display: flex; align-items: center; gap: 4px; list-style: none; margin: 0; padding: 0; }
.nav-links a {
  display: inline-block; padding: 9px 13px; border-radius: var(--radius);
  font-size: 14.5px; font-weight: 500; color: var(--ink-2);
}
.nav-links a:hover { color: var(--accent-700); background: var(--paper-2); text-decoration: none; }
.nav-links a[aria-current="page"] { color: var(--accent); }
.nav-cta { margin-left: 8px; }
.nav-cta a { padding: 10px 18px; border:1px solid var(--ink); color: var(--ink); border-radius: var(--radius); }
.nav-cta a:hover { background: var(--ink); color:#fff; }

.nav-toggle {
  display: none; background: none; border: 1px solid var(--line-2);
  border-radius: var(--radius); width: 42px; height: 40px; cursor: pointer;
  align-items: center; justify-content: center;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  display:block; width: 18px; height: 1.6px; background: var(--ink); position: relative;
}
.nav-toggle span::before, .nav-toggle span::after { content:""; position:absolute; left:0; }
.nav-toggle span::before { top: -5px; } .nav-toggle span::after { top: 5px; }

@media (max-width: 920px) {
  .nav-toggle { display: inline-flex; }
  .nav-links {
    position: absolute; left: 0; right: 0; top: 72px;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--paper); border-bottom: 1px solid var(--line);
    padding: 8px var(--gutter) 18px; display: none;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 4px; border-bottom: 1px solid var(--line); border-radius: 0; }
  .nav-cta { margin: 12px 0 0; }
  .nav-cta a { display:block; text-align:center; }
}

/* ---------- breadcrumb ---------- */
.breadcrumb { border-bottom: 1px solid var(--line); }
.breadcrumb ol {
  list-style: none; margin: 0; padding: 14px 0; display: flex; flex-wrap: wrap; gap: 8px;
  font-family: var(--mono); font-size: 12px; letter-spacing: .04em; color: var(--faint);
}
.breadcrumb li { margin: 0; display: flex; gap: 8px; align-items: center; }
.breadcrumb li::after { content: "/"; color: var(--line-2); }
.breadcrumb li:last-child::after { content: ""; }
.breadcrumb a { color: var(--muted); }
.breadcrumb [aria-current="page"] { color: var(--ink); }

/* ---------- hero ---------- */
.hero { padding-block: clamp(56px, 9vw, 116px) clamp(40px, 6vw, 72px); }
.hero .display { max-width: 17ch; }
.hero-meta {
  display: flex; flex-wrap: wrap; gap: 10px 26px; align-items: center;
  font-family: var(--mono); font-size: 12.5px; letter-spacing: .03em; color: var(--muted);
  margin-top: 30px; padding-top: 24px; border-top: 1px solid var(--line);
}
.hero-meta b { color: var(--ink); font-weight: 600; }

/* ---------- page intro (inner pages) ---------- */
.page-head { padding-block: clamp(40px, 6vw, 72px) clamp(28px, 3vw, 40px); }

/* ---------- credential strip ---------- */
.cred-strip {
  display: flex; flex-wrap: wrap; gap: 0;
  border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
}
.cred-strip .cell {
  flex: 1 1 150px; padding: 18px 20px; border-right: 1px solid var(--line);
}
.cred-strip .cell:last-child { border-right: 0; }
.cred-strip .k { font-family: var(--mono); font-size: 11px; letter-spacing:.1em; text-transform:uppercase; color: var(--faint); margin-bottom: 6px; }
.cred-strip .v { font-size: 15px; font-weight: 500; color: var(--ink); }

/* ---------- stat figures ---------- */
.figures { display: grid; gap: 1px; background: var(--line); border: 1px solid var(--line); }
@media (min-width: 760px) { .figures { grid-template-columns: repeat(4, 1fr); } }
.figure { background: var(--paper); padding: 26px 24px; }
.figure .num { font-family: var(--serif); font-size: clamp(30px,3.4vw,40px); font-weight: 600; letter-spacing: -.01em; }
.figure .cap { font-size: 13.5px; color: var(--muted); margin-top: 6px; }
.figure .unit { font-family: var(--mono); font-size: 12px; color: var(--accent); display:block; margin-bottom: 4px; letter-spacing: .08em; }

/* ---------- cards / list rows ---------- */
.row-list { border-top: 1px solid var(--line-2); }
.row-item {
  display: grid; gap: 8px 28px; padding: 26px 0; border-bottom: 1px solid var(--line);
  grid-template-columns: 1fr;
}
@media (min-width: 760px) {
  .row-item { grid-template-columns: 64px 1fr auto; align-items: start; }
}
.row-item:hover { background: linear-gradient(transparent,transparent); }
.row-num { font-family: var(--mono); font-size: 13px; color: var(--accent); padding-top: 4px; }
.row-body h3 { font-family: var(--serif); font-size: 22px; margin-bottom: 8px; }
.row-body h3 a { color: var(--ink); }
.row-body h3 a:hover { color: var(--accent-700); }
.row-body p { color: var(--muted); margin: 0; max-width: 62ch; }
.row-go { align-self: center; }

/* index tiles (services/sectors) */
.tiles { display: grid; gap: 1px; background: var(--line); border: 1px solid var(--line); }
@media (min-width: 680px) { .tiles.two { grid-template-columns: 1fr 1fr; } }
@media (min-width: 900px) { .tiles.three { grid-template-columns: repeat(3,1fr); } }
.tile {
  background: var(--paper); padding: 30px 28px 26px; display: flex; flex-direction: column;
  min-height: 210px; transition: background .15s ease;
}
.tile:hover { background: var(--paper-2); text-decoration: none; }
.tile .ti-num { font-family: var(--mono); font-size: 12px; color: var(--accent); letter-spacing:.08em; }
.tile h3 { font-family: var(--serif); font-size: 23px; margin: 14px 0 10px; color: var(--ink); }
.tile p { color: var(--muted); font-size: 15px; margin: 0 0 18px; }
.tile .ti-go { margin-top: auto; font-family: var(--mono); font-size: 12px; letter-spacing:.06em; text-transform:uppercase; color: var(--accent); }
.tile:hover .ti-go { color: var(--accent-700); }

/* ---------- prose (article body) ---------- */
.prose { font-size: 17.5px; line-height: 1.68; color: var(--ink-2); }
.prose > * { max-width: 70ch; }
.prose h2 { font-family: var(--serif); font-size: clamp(22px,2.4vw,28px); margin: 1.9em 0 .5em; color: var(--ink); }
.prose h3 { font-family: var(--sans); font-size: 18px; font-weight: 600; margin: 1.6em 0 .4em; color: var(--ink); }
.prose p { margin: 0 0 1.15em; }
.prose ul { padding-left: 1.1em; }
.prose li { margin-bottom: .55em; }
.prose li::marker { color: var(--accent); }
.prose strong { color: var(--ink); }
.prose .statute { color: var(--muted); }

/* pull quote / plaque */
.plaque {
  border-left: 3px solid var(--accent); background: var(--paper-2);
  padding: 22px 26px; margin: 1.6em 0; font-family: var(--serif); font-style: italic;
  font-size: 18px; color: var(--ink-2); max-width: 70ch;
}

/* aside */
.aside-card {
  border: 1px solid var(--line); border-radius: var(--radius); padding: 24px 24px 26px;
  background: var(--paper); position: sticky; top: 96px;
}
.aside-card h4 { font-family: var(--mono); font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--faint); margin-bottom: 14px; font-weight: 500; }
.aside-card .meta-row { display: flex; justify-content: space-between; gap: 16px; padding: 10px 0; border-top: 1px solid var(--line); font-size: 14.5px; }
.aside-card .meta-row:first-of-type { border-top: 0; }
.aside-card .meta-row .lbl { color: var(--muted); }
.aside-card .meta-row .val { color: var(--ink); font-weight: 500; text-align: right; }

/* ---------- tables ---------- */
.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius); }
table.data { width: 100%; border-collapse: collapse; font-size: 14.5px; min-width: 820px; }
table.data caption { text-align: left; padding: 16px 18px; color: var(--muted); font-size: 13px; border-bottom: 1px solid var(--line); }
table.data thead th {
  text-align: left; font-family: var(--mono); font-weight: 500; font-size: 11.5px;
  letter-spacing: .08em; text-transform: uppercase; color: var(--faint);
  padding: 14px 16px; border-bottom: 1px solid var(--line-2); white-space: nowrap; background: var(--paper-2);
}
table.data tbody td { padding: 16px 16px; border-bottom: 1px solid var(--line); vertical-align: top; }
table.data tbody tr:last-child td { border-bottom: 0; }
table.data tbody tr:hover { background: var(--paper-2); }
table.data .proj { font-weight: 600; color: var(--ink); }
table.data .proj a { color: var(--ink); }
table.data .proj a:hover { color: var(--accent-700); }
table.data .val { font-family: var(--mono); white-space: nowrap; font-variant-numeric: tabular-nums; }
table.data .yr { font-family: var(--mono); color: var(--muted); }
table.data .undisclosed { color: var(--faint); font-style: italic; font-family: var(--sans); }

/* sector/scope pills */
.pill {
  display: inline-block; font-family: var(--mono); font-size: 11px; letter-spacing: .04em;
  padding: 3px 9px; border: 1px solid var(--line-2); border-radius: 999px; color: var(--muted);
  white-space: nowrap;
}
.tag-row { display: flex; flex-wrap: wrap; gap: 8px; }

/* filter controls */
.filters { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; margin-bottom: 22px; }
.filters .fl-label { font-family: var(--mono); font-size: 12px; letter-spacing:.08em; text-transform: uppercase; color: var(--faint); margin-right: 6px; }
.chip {
  font: 500 13.5px/1 var(--sans); padding: 9px 15px; border: 1px solid var(--line-2);
  background: var(--paper); border-radius: 999px; cursor: pointer; color: var(--ink-2);
}
.chip[aria-pressed="true"] { background: var(--ink); color: #fff; border-color: var(--ink); }
.chip:hover { border-color: var(--accent); color: var(--accent-700); }
.chip[aria-pressed="true"]:hover { color:#fff; }

/* ---------- logo / accreditation strips ---------- */
.logo-band { display: flex; flex-wrap: wrap; align-items: center; gap: clamp(28px, 5vw, 64px); }
.logo-band img { height: 38px; width: auto; opacity: .68; filter: grayscale(1); transition: opacity .15s ease, filter .15s ease; }
.logo-band img:hover { opacity: 1; filter: grayscale(0); }
.logo-band.marks img { height: 54px; opacity: .9; filter: none; }

.accred { display: flex; flex-wrap: wrap; gap: 30px 44px; align-items: center; }
.accred figure { margin: 0; display: flex; flex-direction: column; align-items: center; gap: 10px; }
.accred img { height: 60px; width: auto; }
.accred figcaption { font-family: var(--mono); font-size: 10.5px; letter-spacing: .08em; text-transform: uppercase; color: var(--faint); text-align: center; }

/* ---------- photo treatments ---------- */
.photo { position: relative; overflow: hidden; background: var(--paper-3); border-radius: var(--radius); }
.photo img { width: 100%; height: 100%; object-fit: cover; }
.photo .cap {
  position: absolute; left: 0; bottom: 0; right: 0;
  font-family: var(--mono); font-size: 11px; letter-spacing: .04em; color: #fff;
  padding: 14px 16px; background: linear-gradient(transparent, rgba(11,11,12,.72));
}
.ratio-4-3 { aspect-ratio: 4 / 3; }
.ratio-3-2 { aspect-ratio: 3 / 2; }
.ratio-1-1 { aspect-ratio: 1 / 1; }
.ratio-3-4 { aspect-ratio: 3 / 4; }
.ratio-16-9 { aspect-ratio: 16 / 9; }

/* measured-drawing placeholder (project pages w/o photo) */
.drawing {
  aspect-ratio: 3 / 2; border: 1px solid var(--line-2); border-radius: var(--radius);
  background:
    linear-gradient(var(--line) 1px, transparent 1px) 0 0 / 100% 28px,
    linear-gradient(90deg, var(--line) 1px, transparent 1px) 0 0 / 28px 100%,
    var(--paper);
  position: relative; display: flex; align-items: center; justify-content: center; padding: 24px;
}
.drawing .stamp { font-family: var(--mono); font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--faint); text-align: center; }
.drawing .stamp b { display: block; font-family: var(--serif); font-size: 22px; letter-spacing: 0; text-transform: none; color: var(--ink-2); margin-top: 8px; }

/* ---------- callout / CTA band ---------- */
.cta-band { background: var(--ink); color: #fff; }
.cta-band .display, .cta-band h2 { color: #fff; }
.cta-band .lead { color: #cfd0cf; }
.cta-band a.link-arrow { color: #fff; }
.cta-band .btn-ghost { color:#fff; border-color: #3a3c3e; }
.cta-band .btn-ghost:hover { border-color:#fff; color:#fff; }

/* regional reach */
.reach { display: grid; gap: 1px; background: var(--line); border:1px solid var(--line); }
@media (min-width: 760px) { .reach { grid-template-columns: repeat(3,1fr); } }
.reach .nation { background: var(--paper); padding: 28px 26px; display:flex; gap: 18px; align-items:flex-start; }
.reach .nation img { height: 56px; width:auto; flex: none; }
.reach .nation h3 { font-family: var(--serif); font-size: 20px; margin-bottom: 6px; }
.reach .nation p { font-size: 14px; color: var(--muted); margin: 0; }

/* team */
.team { display: grid; gap: 1px; background: var(--line); border:1px solid var(--line); }
@media (min-width: 820px) { .team { grid-template-columns: repeat(3,1fr); } }
.member { background: var(--paper); padding: 30px 28px; display:flex; flex-direction:column; }
.member .role { font-family: var(--mono); font-size: 11.5px; letter-spacing:.08em; text-transform:uppercase; color: var(--accent); margin-bottom: 12px; }
.member h3 { font-family: var(--serif); font-size: 22px; margin-bottom: 12px; }
.member p { font-size: 15px; color: var(--muted); }
.member .creds { margin-top: auto; padding-top: 16px; border-top: 1px solid var(--line); font-family: var(--mono); font-size: 12px; color: var(--ink-2); line-height: 1.7; }

/* definition list (credentials) */
.deflist { border-top: 1px solid var(--line-2); }
.deflist .drow { display: grid; grid-template-columns: 1fr; gap: 4px 28px; padding: 18px 0; border-bottom: 1px solid var(--line); }
@media (min-width: 720px) { .deflist .drow { grid-template-columns: 240px 1fr; } }
.deflist dt { font-weight: 600; color: var(--ink); }
.deflist dd { margin: 0; color: var(--muted); }
.deflist dd .mono { color: var(--ink); }

/* form */
.form-grid { display: grid; gap: 18px; }
@media (min-width: 640px) { .form-grid .two { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; } }
.field { display: flex; flex-direction: column; gap: 7px; }
.field label { font-size: 13.5px; font-weight: 500; color: var(--ink); }
.field label .req { color: var(--accent); }
.field input, .field select, .field textarea {
  font: 400 16px/1.4 var(--sans); color: var(--ink); background: var(--paper);
  border: 1px solid var(--line-2); border-radius: var(--radius); padding: 12px 14px; width: 100%;
}
.field textarea { min-height: 140px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: 2px solid var(--accent); outline-offset: 1px; border-color: var(--accent); }
.field .err { font-size: 12.5px; color: #9b2c2c; display: none; }
.field.invalid input, .field.invalid select, .field.invalid textarea { border-color: #9b2c2c; }
.field.invalid .err { display: block; }
.form-note { font-size: 13px; color: var(--faint); }
.form-success {
  display: none; border: 1px solid var(--accent); background: var(--accent-050);
  padding: 22px 24px; border-radius: var(--radius);
}
.form-success.show { display: block; }
.form-success h3 { font-family: var(--serif); font-size: 20px; margin-bottom: 8px; }

/* ---------- footer ---------- */
.site-footer { background: var(--footer-bg); color: var(--footer-fg); }
.site-footer a { color: var(--footer-fg); }
.site-footer a:hover { color: #fff; }
.footer-top { display: grid; gap: 40px; padding-block: clamp(48px, 6vw, 72px); }
@media (min-width: 900px) { .footer-top { grid-template-columns: 1.4fr 1fr 1fr 1.1fr; } }
.footer-brand .mark { font-family: var(--serif); font-size: 24px; color: #fff; }
.footer-brand .sub { font-family: var(--mono); font-size: 9.5px; letter-spacing: .26em; text-transform: uppercase; color: var(--footer-mut); margin-top: 4px; }
.footer-brand p { color: var(--footer-mut); font-size: 14px; margin-top: 16px; max-width: 34ch; }
.footer-col h4 { font-family: var(--mono); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--footer-mut); margin-bottom: 16px; font-weight: 500; }
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col li { margin-bottom: 9px; }
.footer-col a { font-size: 14.5px; color: var(--footer-fg); }
.footer-addr { font-style: normal; font-size: 14px; color: var(--footer-fg); line-height: 1.7; }
.footer-addr .lbl { color: var(--footer-mut); }
.footer-bottom { border-top: 1px solid var(--footer-line); padding-block: 24px 30px; }
.footer-bottom .row { display: flex; flex-wrap: wrap; gap: 14px 28px; align-items: center; justify-content: space-between; }
.cred-line { font-family: var(--mono); font-size: 12px; letter-spacing: .03em; color: var(--footer-mut); }
.cred-line .reg { color: #fff; }
.footer-bottom .copy { font-size: 12.5px; color: var(--footer-mut); }

/* ---------- utility ---------- */
.stack-sm > * + * { margin-top: 12px; }
.stack > * + * { margin-top: 22px; }
.mt-0 { margin-top: 0; } .mb-0 { margin-bottom: 0; }
.center { text-align: center; }
.divider { border-top: 1px solid var(--line); }
.hide { display: none !important; }
.flow > * + * { margin-top: 1.1em; }

/* reduced motion */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; animation: none !important; }
}
