/* clankford.ie, the public site that sells Clankford.
 * Canon: vault/Workspaces/clank-websmith/ART_DIRECTION.md, the 2026-09-14 verdicts in
 * workspaces/_shared-knowledge/DESIGN_SYSTEM.md, and
 * vault/Workspaces/clank-websmith/projects/clankford-ie/PROJECT.md.
 *
 * The look is the V2 dashboard's, not a template's: the same HUD tokens under the same
 * names (public/css/clankford-v2-theme.css), the same holo panel (.cfv2-holo), the same
 * pop-up card and team rows as the game floor (public/css/clank-game-floor.css), and the
 * floor itself as photographs (lib/clankford-site-photos.js) with a button on every
 * building. ONE accent, cyan. The four estate colours only ever say which estate a
 * building is in. Barlow Condensed 600 for H1 and H2, Inter for everything else, and
 * monospace only for real readouts (the clock). */

@font-face { font-family: 'Barlow Condensed'; src: url('/clankford-site/fonts/BarlowCondensed-600.woff2') format('woff2'); font-weight: 600; font-style: normal; font-display: swap; } /* design-check-ignore: clankford.ie headline face, self-hosted OFL */
@font-face { font-family: 'Inter'; src: url('/clankford-site/fonts/Inter-var.woff2') format('woff2'); font-weight: 400 700; font-style: normal; font-display: swap; }

:root {
  /* the V2 HUD tokens, same names and values as clankford-v2-theme.css */
  --hud: #2fc1ff;                              /* design-check-ignore: V2 HUD accent */
  --hud-deep: #1470a6;                         /* design-check-ignore */
  --hud-ice: #eaf6ff;                          /* design-check-ignore */
  --hud-bright: #bfe9ff;                       /* design-check-ignore */
  --hud-text: #ffffff;
  --hud-dim: #c8d2dd;
  --hud-bg: #0a1420;                           /* design-check-ignore */
  --hud-steel: #2a3a4a;                        /* design-check-ignore */
  --hud-shell: #16222f;                        /* design-check-ignore */
  --hud-shell-far: #101a26;                    /* design-check-ignore */
  --hud-glow: rgba(47, 193, 255, 0.55);        /* design-check-ignore */
  --hud-soft: rgba(47, 193, 255, 0.3);         /* design-check-ignore */
  --hud-faint: rgba(47, 193, 255, 0.18);       /* design-check-ignore */
  --hud-wash: rgba(47, 193, 255, 0.07);        /* design-check-ignore */
  --hud-ok: #35e08d;                           /* design-check-ignore */
  --hud-ok-glow: rgba(53, 224, 141, 0.55);     /* design-check-ignore */
  --hud-ok-wash: rgba(53, 224, 141, 0.1);      /* design-check-ignore */
  --hud-warn: #ffb454;                         /* design-check-ignore */
  /* site-only */
  --ink: #04202f;                              /* design-check-ignore: text on a cyan button */
  --band: #0d1826;                             /* design-check-ignore */
  --holo-fill: rgba(12, 23, 37, 0.55);         /* design-check-ignore: .cfv2-holo */
  --scrim: rgba(4, 10, 18, 0.74);              /* design-check-ignore */
  --e-delivery: #2fc1ff;                       /* design-check-ignore: game floor estate colours, data not accent */
  --e-clients: #35e08d;                        /* design-check-ignore */
  --e-newbiz: #ffb454;                         /* design-check-ignore */
  --e-works: #c96442;
  --display: 'Barlow Condensed', 'Bahnschrift SemiCondensed', 'Arial Narrow', sans-serif; /* design-check-ignore: headline and sign face, the floor's SIGN_FONT */
  --body: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --mono: ui-monospace, 'SFMono-Regular', Menlo, Consolas, monospace; /* design-check-ignore: the clock readout only */
  /* Ciaran, 21 Sep 2026: "the whole page should be 1600 width, and just a little bit more
     spaced out". The gutter grows with the screen so wide never means edge to edge. */
  --wrap: 1600px;
  --gutter: clamp(20px, 5vw, 80px);
  --ease: cubic-bezier(0.2, 0.9, 0.1, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
html.has-card { overflow: hidden; }
body {
  margin: 0;
  background: var(--hud-bg);
  color: var(--hud-text);
  font-family: var(--body);
  font-size: 1.0625rem;
  line-height: 1.6;
}
img, svg { max-width: 100%; }
/* An img with width/height attributes keeps its attribute HEIGHT once max-width shrinks it,
   so it stretches tall. Every image keeps its proportions, whatever class it carries. */
img { height: auto; }
a { color: var(--hud); text-underline-offset: 3px; }
a:hover { color: var(--hud-bright); }
:focus-visible { outline: 2px solid var(--hud); outline-offset: 3px; }

[hidden] { display: none !important; }
.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  margin: -1px; padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}
.skip {
  position: absolute; left: 12px; top: -80px; z-index: 60;
  padding: 10px 16px; border-radius: 6px;
  background: var(--hud); color: var(--ink); font-weight: 600; text-decoration: none;
}
.skip:focus { top: 12px; color: var(--ink); }
/* --wrap is the width of the CONTENT; the gutters sit outside it. */
.wrap { max-width: calc(var(--wrap) + 2 * var(--gutter)); margin: 0 auto; padding: 0 var(--gutter); }
.wrap--wide { max-width: calc(1840px + 2 * var(--gutter)); }

/* ── type ─────────────────────────────────────────────────────────────── */
h1, h2 { margin: 0; font-family: var(--display); font-weight: 600; line-height: 1.02; letter-spacing: 0.005em; text-wrap: balance; }
h3, h4 { margin: 0; font-family: var(--body); font-weight: 600; line-height: 1.25; }
h1 { font-size: clamp(2.7rem, 5.4vw, 4.8rem); }
h2 { font-size: clamp(2rem, 4vw, 3.3rem); }
h3 { font-size: 1.2rem; }
p { margin: 0; max-width: 62ch; }
/* A wide page must not mean long lines: reading stays at a comfortable measure. */
.lead { font-size: clamp(1.08rem, 1.4vw, 1.22rem); color: var(--hud-dim); line-height: 1.6; max-width: 68ch; }
.lead + .lead { margin-top: 18px; }
.lead a { color: var(--hud-text); }
/* the game floor's pop-up kicker (.cgf-pop__kicker), at a size people can read */
.kicker {
  display: flex; align-items: center; gap: 10px;
  margin: 0 0 16px;
  font-family: var(--body); font-size: 0.75rem; font-weight: 700; line-height: 1.4;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--hud);
}
.link-quiet { color: var(--hud-text); font-weight: 600; }
.link-quiet:hover { color: var(--hud-bright); }

/* .cfv2-holo, the dashboard's panel */
.holo {
  border: 1px solid var(--hud-soft);
  border-radius: 10px;
  background: var(--holo-fill);
  box-shadow: 0 0 0 1px var(--hud-faint), 0 0 30px var(--hud-wash);
}

/* ── buttons ──────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 48px; padding: 0 22px; border-radius: 6px;
  border: 1px solid transparent;
  font-family: var(--body); font-size: 1rem; font-weight: 600; text-decoration: none;
  cursor: pointer;
  transition: background-color 0.15s var(--ease), border-color 0.15s var(--ease), color 0.15s var(--ease), box-shadow 0.15s var(--ease);
}
.btn--primary { background: var(--hud); color: var(--ink); }
.btn--primary:hover { background: var(--hud-bright); color: var(--ink); box-shadow: 0 0 24px var(--hud-faint); }
.btn--ghost { background: transparent; border-color: var(--hud-soft); color: var(--hud-text); }
.btn--ghost:hover { border-color: var(--hud); color: var(--hud-text); background: var(--hud-wash); }
.btn--quiet { background: transparent; color: var(--hud-dim); padding: 0 12px; }
.btn--quiet:hover { color: var(--hud-text); }
.btn-row { display: flex; flex-wrap: wrap; align-items: center; gap: 12px 18px; margin-top: 30px; }

/* ── header ───────────────────────────────────────────────────────────── */
.site-head { position: sticky; top: 0; z-index: 40; background: var(--hud-bg); border-bottom: 1px solid var(--hud-faint); }
.site-head__row { display: flex; align-items: center; justify-content: space-between; gap: 24px; min-height: 72px; }
.brand { display: inline-flex; align-items: center; gap: 12px; color: var(--hud-text); text-decoration: none; }
.brand:hover { color: var(--hud-text); }
.brand__mark { position: relative; width: 28px; height: 28px; flex: 0 0 auto; border-radius: 50%; border: 1px solid var(--hud-soft); }
.brand__mark::before {
  content: ''; position: absolute; inset: 4px; border-radius: 50%;
  border: 2px solid transparent; border-top-color: var(--hud); border-right-color: var(--hud);
}
.brand__mark::after {
  content: ''; position: absolute; left: 50%; top: 50%;
  width: 6px; height: 6px; margin: -3px 0 0 -3px; border-radius: 50%; background: var(--hud-text);
}
.brand__word { font-family: var(--display); font-size: 1.6rem; font-weight: 600; line-height: 1; letter-spacing: 0.1em; text-transform: uppercase; }
.site-nav { display: flex; align-items: center; gap: 28px; }
.site-nav ul { display: flex; flex-wrap: wrap; gap: 6px 26px; margin: 0; padding: 0; list-style: none; }
.site-nav a:not(.btn) {
  display: inline-block; padding: 6px 0;
  color: var(--hud-text); font-size: 0.98rem; font-weight: 500; text-decoration: none;
  border-bottom: 2px solid transparent;
}
.site-nav a:not(.btn):hover { color: var(--hud-text); border-bottom-color: var(--hud-soft); }
.site-nav a[aria-current="page"] { border-bottom-color: var(--hud); }
.nav-toggle { display: none; }

@media (max-width: 980px) {
  .js .nav-toggle {
    display: inline-flex; align-items: center; min-height: 44px; padding: 0 16px;
    background: transparent; color: var(--hud-text); border: 1px solid var(--hud-soft); border-radius: 6px;
    font: 600 0.95rem/1 var(--body); cursor: pointer;
  }
  .js .site-nav {
    display: none; position: absolute; left: 0; right: 0; top: 100%;
    flex-direction: column; align-items: stretch; gap: 18px;
    padding: 8px var(--gutter) 24px; background: var(--hud-bg); border-bottom: 1px solid var(--hud-faint);
  }
  .js .site-nav.is-open { display: flex; }
  .js .site-nav ul { flex-direction: column; gap: 0; }
  .js .site-nav a:not(.btn) { display: block; padding: 14px 0; border-bottom: 1px solid var(--hud-faint); }
  .js .site-nav a[aria-current="page"] { border-bottom-color: var(--hud); }
  html:not(.js) .site-head__row { flex-wrap: wrap; padding-top: 12px; padding-bottom: 12px; }
}

/* ── sections ─────────────────────────────────────────────────────────── */
.band { padding: clamp(72px, 10vw, 120px) 0; border-top: 1px solid var(--hud-faint); }
.band--alt { background: var(--band); }
.band--short { padding: clamp(48px, 7vw, 80px) 0; }
.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 24px clamp(32px, 6vw, 88px);
  align-items: start;
}
@media (max-width: 900px) { .split { grid-template-columns: minmax(0, 1fr); } }
.page-head { padding: clamp(56px, 8vw, 100px) 0 clamp(48px, 7vw, 80px); }
.page-head h1 { max-width: 16ch; }
.page-head .split { align-items: end; }
.page-head .wrap:not(.split) .lead { margin-top: 24px; }

/* ── hero ─────────────────────────────────────────────────────────────── */
.hero { padding: clamp(48px, 7vw, 88px) 0 0; }
.hero--town .hero__copy {
  display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 24px clamp(32px, 5vw, 72px); align-items: end;
}
.hero h1 { max-width: 17ch; }
.hero--town h1 { font-size: clamp(2.5rem, 4.6vw, 4.1rem); }
.hero__side .btn-row { margin-top: 26px; }
@media (max-width: 1000px) { .hero--town .hero__copy { grid-template-columns: minmax(0, 1fr); } }

/* ── robots ───────────────────────────────────────────────────────────── */
.bot-defs { position: absolute; width: 0; height: 0; overflow: hidden; }
.bot { display: block; }
.member__face, .card__face { --bot-alpha: 1; }

/* ── team rows, the game floor's .cgf-pop__team-rows ──────────────────── */
.members { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--hud-faint); }
.member {
  position: relative;
  display: grid; grid-template-columns: 40px minmax(0, 1fr); align-items: center; gap: 12px;
  padding: 10px 12px; border-bottom: 1px solid var(--hud-faint);
}
.member__face {
  position: relative; display: grid; place-items: center;
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--hud-bg); border: 1px solid var(--hud-soft);
}
.member__face .bot { width: 32px; height: 32px; }
.member__txt { display: grid; gap: 1px; min-width: 0; }
.member__txt b { font-weight: 600; color: var(--hud-text); }
.member__txt span { font-size: 0.9rem; line-height: 1.45; color: var(--hud-dim); }
.member.is-lead { background: var(--hud-wash); }
.member.is-lead::before { content: ''; position: absolute; left: 0; top: 8px; bottom: 8px; width: 2px; background: var(--hud); }
.member.is-lead .member__face { border-color: var(--hud); box-shadow: 0 0 10px var(--hud-faint); }
/* working right now: the floor's green ring, glow and turning arc */
.member.is-on { --bot-lit: var(--hud-bright); --bot-eye: var(--hud-text); --bot-alpha: 1; }
.member.is-on .member__face { border-color: var(--hud-ok); box-shadow: 0 0 12px var(--hud-ok-glow); }
.member.is-on .member__face::after {
  content: ''; position: absolute; inset: -5px; border-radius: 50%;
  border: 2px solid transparent; border-top-color: var(--hud-ok);
}
@media (prefers-reduced-motion: no-preference) {
  .member.is-on .member__face { animation: member-glow 1.8s ease-in-out 3; }
  .member.is-on .member__face::after { animation: member-spin 1.4s linear 3; }
}
@keyframes member-glow { 50% { box-shadow: 0 0 20px var(--hud-ok-glow); } }
@keyframes member-spin { to { transform: rotate(360deg); } }

/* ── the team card, the game floor's .cgf-pop__card ───────────────────── */
.card {
  width: min(900px, calc(100vw - 32px)); max-width: none;
  max-height: min(88vh, 920px);
  padding: 0; margin: auto;
  border: 1px solid var(--hud-soft); border-radius: 6px;
  background: var(--hud-shell); color: var(--hud-text);
  box-shadow: 0 30px 80px var(--hud-bg), 0 0 0 1px var(--hud-wash), 0 0 40px var(--hud-faint);
  overflow: hidden;
}
.card::backdrop { background: var(--scrim); }
.card[open] { display: flex; }
.card__frame { display: flex; flex-direction: column; width: 100%; max-height: inherit; min-height: 0; }
.card__head {
  display: grid; grid-template-columns: 64px minmax(0, 1fr) 44px; gap: 18px; align-items: start;
  padding: 24px 24px 20px; border-bottom: 1px solid var(--hud-faint);
}
.card__face {
  display: grid; place-items: center; width: 64px; height: 64px; border-radius: 50%;
  background: var(--hud-bg); border: 1px solid var(--hud);
  box-shadow: 0 0 16px var(--hud-faint);
}
.card__face .bot { width: 50px; height: 50px; }
.card__heading .kicker { margin-bottom: 6px; }
.card__title { font-family: var(--display); font-size: clamp(2rem, 4vw, 2.6rem); line-height: 1; }
.card__title:focus { outline: none; }
.card__job { margin-top: 10px; color: var(--hud-dim); }
.card__state { display: inline-flex; align-items: center; gap: 8px; margin-top: 12px; font-size: 0.9rem; color: var(--hud-dim); }
.card__state.is-on { color: var(--hud-ok); }
.card__state.is-on::before { content: ''; width: 8px; height: 8px; border-radius: 50%; background: var(--hud-ok); box-shadow: 0 0 8px var(--hud-ok-glow); }
.card__close {
  display: grid; place-items: center; width: 44px; height: 44px;
  background: transparent; border: 1px solid var(--hud-soft); border-radius: 6px; color: var(--hud-text); cursor: pointer;
}
.card__close:hover { border-color: var(--hud); background: var(--hud-wash); }
.card__close path { stroke: currentColor; stroke-width: 2; stroke-linecap: round; }
.card__body {
  display: grid; grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr); gap: 0;
  min-height: 0; overflow-y: auto; overscroll-behavior: contain;
}
.card__body[hidden] { display: none; }
.card__back {
  grid-column: 1 / -1; justify-self: start;
  margin: 14px 24px 0; padding: 6px 0; background: none; border: 0; color: var(--hud); font: 600 0.95rem/1.4 var(--body); cursor: pointer;
}
.card__back::before { content: '\2190\00a0'; }
.card__crew { padding: 18px 24px 24px; }
.card__rail { padding: 18px 24px 24px; border-left: 1px solid var(--hud-faint); background: var(--hud-shell-far); }
.card__crew .kicker, .card__rail .kicker { margin-bottom: 12px; }
.hands { display: grid; gap: 8px; margin: 0; padding: 0; list-style: none; }
.hand {
  display: grid; gap: 2px; width: 100%; padding: 10px 12px; text-align: left;
  background: transparent; border: 1px solid var(--hud-faint); border-radius: 6px; color: var(--hud-text);
  font: inherit; cursor: pointer;
}
.hand:hover { border-color: var(--hud); background: var(--hud-wash); }
.hand__name { font-weight: 600; }
.hand__name::after { content: '\00a0\2192'; color: var(--hud); }
.hand__what { font-size: 0.88rem; line-height: 1.45; color: var(--hud-dim); }
.hand__gate { font-size: 0.8rem; font-weight: 600; color: var(--hud-warn); }
.card__foot {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 12px 20px;
  padding: 16px 24px; border-top: 1px solid var(--hud-faint); background: var(--hud-shell-far);
}
.card__foot p { color: var(--hud-dim); }
.card__foot .btn { min-height: 44px; }
@media (max-width: 720px) {
  .card {
    width: 100vw; height: 100dvh; max-height: none; margin: 0;
    border-radius: 0; border-width: 0;
  }
  .card__frame { height: 100%; }
  .card__head { grid-template-columns: 48px minmax(0, 1fr) 44px; gap: 12px; padding: 16px; }
  .card__face { width: 48px; height: 48px; }
  .card__face .bot { width: 40px; height: 40px; }
  .card__body { grid-template-columns: minmax(0, 1fr); flex: 1 1 auto; }
  .card__crew, .card__rail { padding: 16px; }
  .card__back { margin: 12px 16px 0; }
  .card__rail { border-left: 0; border-top: 1px solid var(--hud-faint); }
  .card__foot { padding: 12px 16px; }
  .card__foot p { display: none; }
  .card__foot .btn { width: 100%; }
}

/* ── the floor, photographed ──────────────────────────────────────────── */
.photo-fig { margin: 0; }
.photo-fig .photo, .photo-fig .floor__img { display: block; width: 100%; height: auto; border: 1px solid var(--hud-soft); border-radius: 6px; box-shadow: 0 0 0 1px var(--hud-wash), 0 24px 60px rgba(4, 10, 18, 0.5); background: var(--hud-bg); } /* design-check-ignore */
.photo-fig__cap { margin-top: 12px; font-size: 0.9rem; line-height: 1.5; color: var(--hud-dim); }
.split--photo { align-items: center; }
.split--photo .photo-fig { min-width: 0; }
@media (min-width: 901px) { .split--flip > .photo-fig { order: -1; } }

.floor { margin: clamp(36px, 5vw, 64px) 0 0; }
.floor__stage { position: relative; }
.floor__spot {
  position: absolute; display: block; padding: 0; margin: 0;
  background: transparent; border: 2px solid transparent; border-radius: 4px;
  cursor: pointer; transition: border-color 0.15s var(--ease), background-color 0.15s var(--ease), box-shadow 0.15s var(--ease);
}
.floor__spot:hover, .floor__spot.is-open { border-color: var(--hud); background: var(--hud-wash); box-shadow: 0 0 18px var(--hud-faint); }
.floor__spot:focus-visible { outline: 2px solid var(--hud-text); outline-offset: 2px; }
.floor__spot.is-working { border-color: var(--hud-ok); box-shadow: 0 0 16px var(--hud-ok-glow); }
.floor__spot--hq:hover, .floor__spot--hq.is-open { box-shadow: 0 0 30px var(--hud-glow); }
.floor__spot--plot { border: 2px dashed var(--hud-soft); display: grid; place-items: center; text-align: center; }
.floor__spot--plot:hover, .floor__spot--plot:focus-visible { border-style: dashed; border-color: var(--hud); }
.floor__plot-sign { display: grid; gap: 2px; font-family: var(--display); font-size: clamp(11px, 1.3vw, 22px); letter-spacing: 0.06em; color: var(--hud-bright); }
.floor__plot-sign small { font-family: var(--body); font-size: clamp(7px, 0.7vw, 11px); font-weight: 700; letter-spacing: 0.22em; color: var(--hud-dim); }
.floor__cap { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 6px 24px; padding: 14px 0 0; }
.floor__live { display: inline-flex; align-items: center; gap: 8px; color: var(--hud-text); }
.floor__live::before { content: ''; width: 8px; height: 8px; border-radius: 50%; background: var(--hud-ok); box-shadow: 0 0 8px var(--hud-ok-glow); }
@media (max-width: 640px) { .floor__plot-sign small { display: none; } }

/* ── the AI Automation hero and the offer box ─────────────────────────── */
.hero--ai { padding: clamp(56px, 8vw, 110px) 0 clamp(40px, 6vw, 72px); }
.hero__grid { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr); gap: 32px clamp(32px, 6vw, 96px); align-items: center; }
.hero--ai h1 { font-size: clamp(3rem, 8vw, 6.4rem); letter-spacing: .01em; }
.hero__lead { margin-top: 20px; }
.offer { padding: clamp(22px, 3vw, 34px); }
.offer__line { font-family: var(--display); font-weight: 600; font-size: clamp(1.5rem, 2.4vw, 2rem); line-height: 1.1; text-wrap: balance; }
/* The header is sticky: a summary scrolled to the very top hides its own title under it. */
.explore__summary { scroll-margin-top: 92px; }
.offer__sub { margin-top: 12px; color: var(--hud-dim); }
.chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.offer .btn-row { margin-top: 20px; }
.offer__foot { margin-top: 14px; font-size: .92rem; color: var(--hud-dim); }
.offer__foot a { color: var(--hud-text); }
@media (max-width: 900px) { .hero__grid { grid-template-columns: minmax(0, 1fr); align-items: start; } }

/* ── the explorer: boxes on the right, the summary on the left ────────── */
.explore { padding: clamp(64px, 8vw, 128px) 0; background: var(--band); border-top: 1px solid var(--hud-faint); scroll-margin-top: 80px; }
.explore__head { max-width: 62ch; }
.explore__head .lead { margin-top: 22px; }
/* The heading lives in the left column, so the boxes start level with it (Ciaran, 21 Sep 2026). */
.explore__grid { display: grid; grid-template-columns: minmax(0, 1.45fr) minmax(0, .9fr); grid-template-areas: "head boxes" "summary boxes"; gap: clamp(40px, 5vw, 72px) clamp(32px, 7vw, 120px); align-items: start; }
.explore__head { grid-area: head; }
.explore__summary { grid-area: summary; }
.explore__boxes { grid-area: boxes; }
.explore__summary { min-width: 0; }
.explore__boxes { position: sticky; top: 90px; }
.boxes { display: grid; gap: 12px; margin: 0; padding: 0; list-style: none; }
.boxes--areas { margin-top: 8px; }
.boxes__label { margin: 20px 0 0; font-size: .75rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--hud); }
.box {
  /* positioned, so its hidden "working right now" label is clipped by the strip on phones
     instead of stretching the page (it is absolutely positioned) */
  position: relative;
  display: grid; grid-template-columns: 34px minmax(0, 1fr); align-items: center; gap: 4px 12px;
  width: 100%; padding: 14px 16px; text-align: left;
  background: var(--holo-fill); color: var(--hud-text); border: 1px solid var(--hud-faint); border-radius: 8px;
  font: inherit; cursor: pointer; transition: border-color .15s var(--ease), background-color .15s var(--ease);
}
.box:hover { border-color: var(--hud); }
.box[aria-pressed="true"] { border-color: var(--hud); background: rgba(47, 193, 255, .1); box-shadow: 0 0 0 1px var(--hud-faint), 0 0 18px var(--hud-wash); } /* design-check-ignore */
.box.is-working .tile { border-color: var(--hud-ok); box-shadow: 0 0 10px var(--hud-ok-glow); }
.box__txt { display: grid; min-width: 0; line-height: 1.3; }
.box__txt b { font-weight: 600; }
.box__txt span { font-size: .82rem; color: var(--hud-dim); }
.tile { --bot-alpha: 1; display: grid; place-items: center; width: 34px; height: 34px; border-radius: 50%; background: var(--hud-bg); border: 1px solid var(--hud-soft); }
.tile .bot { width: 24px; height: 24px; }
.tile--mark::after { content: ''; width: 10px; height: 10px; border-radius: 2px; background: var(--hud); }
.explore__summary .panel { padding: 0; }
.panel__title { font-family: var(--display); font-weight: 600; font-size: clamp(1.8rem, 3.2vw, 2.6rem); line-height: 1.05; margin-top: 2px; }
.problem { margin-top: 14px; font-size: 1.15rem; color: var(--hud-dim); }
.does { margin-top: 12px; }
.panel__fig { margin-top: 18px; }
.panel__h { margin-top: 26px; font-size: .78rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--hud); }
.panel .members { margin-top: 10px; }
.member__tag { display: inline-block; margin-left: 8px; padding: 1px 8px; border: 1px solid var(--hud-soft); border-radius: 999px; font-size: .7rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--hud); vertical-align: middle; }
.panel .plain { margin-top: 8px; }
.money { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; margin-top: 26px; }
.money__cell { display: grid; align-content: start; padding: 14px 16px; border: 1px solid var(--hud-soft); border-radius: 8px; background: var(--holo-fill); }
.money__cell small { font-size: .72rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--hud); }
.money__cell b { margin-top: 4px; font-family: var(--display); font-size: 1.7rem; font-weight: 600; line-height: 1.1; }
.money__note { font-size: .8rem; color: var(--hud-dim); }
.fine { margin-top: 12px; font-size: .85rem; color: var(--hud-dim); }
.panel .rows { margin-top: 18px; }
@media (max-width: 900px) {
  .explore__grid { grid-template-columns: minmax(0, 1fr); grid-template-areas: "head" "boxes" "summary"; gap: 28px; }
  .explore__boxes { position: static; }
  .boxes { grid-auto-flow: column; grid-auto-columns: minmax(220px, 1fr); overflow-x: auto; padding-bottom: 8px; scroll-snap-type: x proximity; }
  .boxes > li { scroll-snap-align: start; }
  .money { grid-template-columns: minmax(0, 1fr); }
}
@media (prefers-reduced-motion: no-preference) { .panel.is-in { animation: panel-rise .25s var(--ease) both; } }
@keyframes panel-rise { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }

/* ── the Clankford chat, the same shell as the team card ──────────────── */
.scoper {
  width: min(760px, calc(100vw - 32px)); max-width: none;
  max-height: min(90vh, 900px);
  padding: 0; margin: auto;
  border: 1px solid var(--hud-soft); border-radius: 6px;
  background: var(--hud-shell); color: var(--hud-text);
  box-shadow: 0 30px 80px var(--hud-bg), 0 0 0 1px var(--hud-wash), 0 0 40px var(--hud-faint);
  overflow: hidden;
}
.scoper::backdrop { background: var(--scrim); }
.scoper[open] { display: flex; }
.scoper__frame { display: flex; flex-direction: column; width: 100%; max-height: inherit; min-height: 0; }
.scoper__head {
  display: grid; grid-template-columns: 56px minmax(0, 1fr) 44px; gap: 16px; align-items: start;
  padding: 20px 22px 16px; border-bottom: 1px solid var(--hud-faint);
}
.scoper__face { display: grid; place-items: center; width: 56px; height: 56px; border-radius: 50%; background: var(--hud-bg); border: 1px solid var(--hud); box-shadow: 0 0 16px var(--hud-faint); --bot-alpha: 1; }
.scoper__heading .kicker { margin-bottom: 4px; }
.scoper__title { font-family: var(--display); font-size: clamp(1.6rem, 3vw, 2.1rem); line-height: 1; }
.scoper__title:focus { outline: none; }
.scoper__sub { margin-top: 8px; font-size: 0.92rem; line-height: 1.5; color: var(--hud-dim); }
.scoper__close { display: grid; place-items: center; width: 44px; height: 44px; background: transparent; border: 1px solid var(--hud-soft); border-radius: 6px; color: var(--hud-text); cursor: pointer; }
.scoper__close:hover { border-color: var(--hud); background: var(--hud-wash); }
.scoper__close path { stroke: currentColor; stroke-width: 2; stroke-linecap: round; }
.scoper__body { display: flex; flex-direction: column; min-height: 0; overflow-y: auto; overscroll-behavior: contain; padding: 0 22px; }
.scoper__thread { display: grid; gap: 12px; padding: 18px 0 6px; }
.msg { display: grid; gap: 6px; max-width: 88%; }
.msg--you { justify-self: end; }
.msg--cf { justify-self: start; grid-template-columns: 30px minmax(0, 1fr); align-items: start; gap: 10px; }
.msg__who { display: grid; place-items: center; width: 30px; height: 30px; border-radius: 8px; background: var(--hud-bg); border: 1px solid var(--hud-soft); --bot-alpha: 1; }
.msg__who .bot { width: 24px; height: 24px; }
.msg__box { margin: 0; max-width: none; padding: 10px 14px; border-radius: 12px; line-height: 1.5; }
.msg--you .msg__box { background: var(--hud-wash); border: 1px solid var(--hud-soft); border-radius: 12px 12px 4px 12px; }
.msg--cf .msg__box { background: var(--hud-shell-far); border: 1px solid var(--hud-faint); border-radius: 12px 12px 12px 4px; }
.msg--cf.is-thinking .msg__box { color: var(--hud-dim); }
.msg--cf.is-thinking .msg__box::after { content: '\2026'; }
.msg--note .msg__box { background: transparent; border-color: var(--hud-warn); color: var(--hud-dim); }
/* the proposal card, the floor's team card in miniature */
.proposal { grid-column: 1 / -1; margin-top: 4px; border: 1px solid var(--hud-soft); border-radius: 8px; background: var(--hud-shell-far); box-shadow: 0 0 0 1px var(--hud-wash), 0 0 30px var(--hud-wash); }
.proposal__head { padding: 14px 16px; border-bottom: 1px solid var(--hud-faint); }
.proposal__head .kicker { margin-bottom: 4px; }
.proposal__title { margin: 0; font-family: var(--display); font-size: 1.6rem; line-height: 1; }
.proposal__summary { margin-top: 8px; color: var(--hud-dim); font-size: 0.95rem; }
.proposal__crew { margin: 0; padding: 0; list-style: none; border-bottom: 1px solid var(--hud-faint); }
.proposal__crew li { display: grid; grid-template-columns: 34px minmax(0, 1fr); align-items: center; gap: 10px; padding: 8px 16px; border-top: 1px solid var(--hud-faint); }
.proposal__crew li:first-child { border-top: 0; }
.proposal__crew .team-btn__face { width: 34px; height: 34px; }
.proposal__crew b { font-weight: 600; }
.proposal__crew span { display: block; font-size: 0.85rem; color: var(--hud-dim); }
.proposal__crew li.is-lead { background: var(--hud-wash); }
.proposal__rows { margin: 0; padding: 6px 16px 10px; }
.proposal__rows div { display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.4fr); gap: 4px 16px; padding: 8px 0; border-top: 1px solid var(--hud-faint); font-size: 0.92rem; }
.proposal__rows div:first-child { border-top: 0; }
.proposal__rows dt { font-weight: 600; }
.proposal__rows dd { margin: 0; color: var(--hud-dim); }
.proposal__rows dd b { color: var(--hud-text); font-weight: 600; }
.proposal__money { display: flex; flex-wrap: wrap; gap: 6px 22px; padding: 12px 16px; border-top: 1px solid var(--hud-faint); }
.proposal__money div { display: grid; }
.proposal__money small { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--hud); }
.proposal__money b { font-family: var(--display); font-size: 1.7rem; line-height: 1.1; font-weight: 600; }
.proposal__fine { padding: 0 16px 12px; font-size: 0.82rem; color: var(--hud-dim); }
.proposal__act { padding: 0 16px 16px; }
.scoper__starters { padding: 6px 0 12px; }
.scoper__starters-label { font-size: 0.85rem; color: var(--hud-dim); }
.scoper__chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 8px; }
.chip { text-align: left; padding: 8px 14px; background: transparent; color: var(--hud-text); border: 1px solid var(--hud-soft); border-radius: 999px; font: 500 0.9rem/1.2 var(--body); cursor: pointer; }
.chip:hover { border-color: var(--hud); background: var(--hud-wash); }
.scoper__composer { position: sticky; bottom: 0; display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 10px; padding: 12px 0 14px; background: var(--hud-shell); border-top: 1px solid var(--hud-faint); }
.scoper__input { min-height: 56px; padding: 12px 14px; resize: vertical; background: var(--hud-bg); color: var(--hud-text); border: 1px solid var(--hud-soft); border-radius: 6px; font: 400 1rem/1.4 var(--body); }
.scoper__input::placeholder { color: var(--hud-dim); opacity: 0.8; }
.scoper__input:focus-visible { outline-offset: 1px; border-color: var(--hud); }
.scoper__send { align-self: end; min-height: 48px; }
.scoper__hint { grid-column: 1 / -1; margin: 0; font-size: 0.85rem; color: var(--hud-warn); }
.scoper__hint:empty { display: none; }
.scoper__enquiry { padding: 8px 0 18px; }
.scoper__enquiry-title { font-family: var(--display); font-size: 1.5rem; line-height: 1; }
.scoper__enquiry-title:focus { outline: none; }
.scoper__enquiry-lead { margin-top: 6px; font-size: 0.92rem; color: var(--hud-dim); }
.scoper__fields { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px 16px; margin-top: 14px; }
.field { display: grid; gap: 4px; }
.field--wide { grid-column: 1 / -1; }
.field label { font-size: 0.88rem; font-weight: 600; }
.field__opt { font-weight: 400; color: var(--hud-dim); }
.field input { min-height: 44px; padding: 0 12px; background: var(--hud-bg); color: var(--hud-text); border: 1px solid var(--hud-soft); border-radius: 6px; font: 400 1rem/1.2 var(--body); }
.field input:focus-visible { outline-offset: 1px; border-color: var(--hud); }
.field--trap { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.scoper__enquiry .btn-row { margin-top: 18px; }
.scoper__done { padding: 18px 0 22px; }
.scoper__done:focus { outline: none; }
.scoper__done-lead { font-size: 1.1rem; }
.scoper__done-sub { margin-top: 8px; color: var(--hud-dim); }
.scoper__note { padding: 10px 22px 14px; font-size: 0.78rem; line-height: 1.45; color: var(--hud-dim); border-top: 1px solid var(--hud-faint); background: var(--hud-shell-far); }
@media (max-width: 720px) {
  .scoper { width: 100vw; height: 100dvh; max-height: none; margin: 0; border-radius: 0; border-width: 0; }
  .scoper__frame { height: 100%; }
  .scoper__head { grid-template-columns: 44px minmax(0, 1fr) 44px; gap: 12px; padding: 14px 16px; }
  .scoper__face { width: 44px; height: 44px; }
  .scoper__face .bot { width: 36px; height: 36px; }
  .scoper__sub { display: none; }
  .scoper__body { flex: 1 1 auto; padding: 0 16px; }
  .scoper__fields { grid-template-columns: minmax(0, 1fr); }
  .msg { max-width: 94%; }
  .scoper__note { padding: 8px 16px 10px; }
}

/* ── rows, columns and lists ──────────────────────────────────────────── */
.rows { margin: 28px 0 0; border-top: 1px solid var(--hud-faint); }
.rows div { display: grid; grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.4fr); gap: 6px 24px; padding: 16px 0; border-bottom: 1px solid var(--hud-faint); }
.rows dt { font-weight: 600; }
.rows dd { margin: 0; color: var(--hud-dim); }
.rows--wide { margin-top: 0; }
@media (max-width: 560px) { .rows div { grid-template-columns: minmax(0, 1fr); } }

.columns { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(24px, 5vw, 64px); margin-top: 48px; }
.column { padding-top: 20px; border-top: 2px solid var(--hud-soft); }
.column:first-child { border-top-color: var(--hud-warn); }
.column h3 { font-size: 1.3rem; }
@media (max-width: 760px) { .columns { grid-template-columns: minmax(0, 1fr); } }
.plain { margin: 14px 0 0; padding: 0; list-style: none; }
.plain li { padding: 11px 0; border-bottom: 1px solid var(--hud-faint); color: var(--hud-dim); }
.plain li:last-child { border-bottom: 0; }

.faq { border-top: 1px solid var(--hud-faint); }
.faq details { border-bottom: 1px solid var(--hud-faint); }
.faq summary {
  position: relative; padding: 20px 44px 20px 0; cursor: pointer; list-style: none;
  font-size: 1.12rem; font-weight: 600; line-height: 1.35;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: '+'; position: absolute; right: 8px; top: 16px; font-size: 1.5rem; font-weight: 400; color: var(--hud); }
.faq details[open] summary::after { content: '\2212'; }
.faq details p { padding: 0 0 22px; color: var(--hud-dim); }

/* ── pricing ──────────────────────────────────────────────────────────── */
.price { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); overflow: hidden; }
.price__main, .price__side { padding: clamp(26px, 4vw, 44px); }
.price__side { border-left: 1px solid var(--hud-faint); background: var(--hud-wash); }
.price__line { display: flex; flex-wrap: wrap; align-items: baseline; gap: 10px; margin: 6px 0 12px; }
.price__amount { font-family: var(--display); font-size: clamp(3.8rem, 7vw, 5rem); font-weight: 600; line-height: 1; }
.price__unit { font-weight: 600; color: var(--hud-dim); }
.price__what { color: var(--hud-dim); }
.price__side h3 { font-size: 1.1rem; }
.price__note { margin-top: 20px; font-size: 0.94rem; color: var(--hud-dim); }
@media (max-width: 820px) {
  .price { grid-template-columns: minmax(0, 1fr); }
  .price__side { border-left: 0; border-top: 1px solid var(--hud-faint); }
}
.table-wrap { margin-top: 40px; overflow-x: auto; }
.module-table { width: 100%; min-width: 620px; border-collapse: collapse; }
.module-table th, .module-table td { padding: 16px 12px; text-align: left; vertical-align: top; border-top: 1px solid var(--hud-faint); }
.module-table thead th { border-top: 0; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--hud); }
.module-table tbody th { font-weight: 600; }
.module-table td { color: var(--hud-dim); }
.module-table .num { text-align: right; white-space: nowrap; font-variant-numeric: tabular-nums; color: var(--hud-text); }
.module-table thead .num { color: var(--hud); }

/* ── about and contact ────────────────────────────────────────────────── */
.facts { display: grid; margin: 0; border-top: 1px solid var(--hud-faint); }
.facts div { display: grid; grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.6fr); gap: 16px; padding: 14px 0; border-bottom: 1px solid var(--hud-faint); }
.facts dt { color: var(--hud-dim); }
.facts dd { margin: 0; }
.panel { padding: clamp(24px, 3vw, 36px); }
.next { display: grid; gap: 18px; margin: 0; padding: 0; list-style: none; }
.next li { padding-bottom: 18px; border-bottom: 1px solid var(--hud-faint); color: var(--hud-dim); }
.next li:last-child { padding-bottom: 0; border-bottom: 0; }
.next strong { font-weight: 600; color: var(--hud-text); }
.contact-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 32px; }
.contact-grid__value { font-size: 1.15rem; }
@media (max-width: 760px) { .contact-grid { grid-template-columns: minmax(0, 1fr); } }

/* ── the town directory ───────────────────────────────────────────────── */
.directory__intro { margin-bottom: 56px; }
.directory__precinct {
  display: grid; grid-template-columns: minmax(0, 0.7fr) minmax(0, 2fr); gap: 24px clamp(24px, 5vw, 64px);
  padding: 48px 0; border-top: 1px solid var(--hud-faint);
}
.directory__head h2 { font-size: clamp(2rem, 3.4vw, 2.8rem); }
.directory__line { margin-top: 12px; color: var(--hud-dim); }
.swatch { width: 12px; height: 12px; border: 2px solid currentColor; border-radius: 2px; }
.c-delivery { color: var(--e-delivery); }
.c-clients { color: var(--e-clients); }
.c-newbiz { color: var(--e-newbiz); }
.c-works { color: var(--e-works); }
@media (min-width: 861px) {
  .directory__head { position: sticky; top: 104px; align-self: start; }
}
.directory__teams { display: grid; gap: 24px; }
.directory__team { padding: 22px 22px 8px; }
.directory__team-head { padding-bottom: 16px; }
.directory__team-head h3 { font-family: var(--display); font-size: 1.9rem; line-height: 1; }
.directory__team-head p { margin-top: 8px; color: var(--hud-dim); }
.directory__team .members { border-top: 1px solid var(--hud-faint); }
.directory__team .member:last-child { border-bottom: 0; }
@media (min-width: 1100px) {
  .directory__team .members { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); column-gap: 24px; }
  .directory__team .member:last-child { border-bottom: 1px solid var(--hud-faint); }
}
@media (max-width: 860px) {
  .directory__precinct { grid-template-columns: minmax(0, 1fr); }
}

/* ── the call to action, on the ground line ───────────────────────────── */
.cta { position: relative; padding: clamp(64px, 9vw, 110px) 0 0; border-top: 1px solid var(--hud-faint); }
.cta h2 { max-width: 18ch; }
/* The closer: one card, one job. It used to be a split that repeated the hero (21 Sep 2026). */
.closer { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr); gap: clamp(28px, 4vw, 56px) clamp(32px, 6vw, 96px); align-items: center; padding: clamp(28px, 4.5vw, 64px); margin-bottom: clamp(56px, 7vw, 104px); }
.cta .closer__title { max-width: 22ch; font-size: clamp(2rem, 3.6vw, 3.2rem); margin-top: 10px; }
.closer .lead { margin-top: 16px; }
.closer__label { font-size: .78rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--hud); }
.closer .chips { margin-top: 14px; }
.closer__mail { margin-top: 16px; font-size: .95rem; }
.closer__mail a { color: var(--hud-text); }
.closer__fine { grid-column: 1 / -1; margin-top: 0; padding-top: 22px; border-top: 1px solid var(--hud-faint); max-width: none; }
@media (max-width: 900px) { .closer { grid-template-columns: minmax(0, 1fr); } }
/* A section heading that spans the page, then its cards below: no half-empty column. */
.head-row { max-width: 78ch; }
.head-row h2 { margin-top: 10px; }
.head-row .lead { margin-top: 18px; }
.trio { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(16px, 2vw, 28px); margin-top: clamp(36px, 4vw, 56px); }
.trio__card { padding: clamp(22px, 2.4vw, 34px); }
.trio__card h3 { font-size: 1.35rem; }
.trio__card { border-top-width: 2px; }
.trio__card--yes { border-top-color: var(--hud-warn); }
.trio__card .plain li { color: var(--hud-text); }
.money--wide { gap: clamp(16px, 2vw, 28px); margin-top: clamp(36px, 4vw, 56px); }
.money--wide .money__cell { padding: clamp(22px, 2.4vw, 34px); border-radius: 10px; }
.money--wide .money__cell b { margin-top: 10px; font-size: clamp(1.7rem, 2.4vw, 2.3rem); }
.money--wide .money__note { margin-top: 10px; font-size: .98rem; line-height: 1.5; }
.hero__lead + .hero__lead { margin-top: 14px; }
@media (max-width: 900px) { .trio, .money--wide { grid-template-columns: minmax(0, 1fr); } }
.cta .lead { margin-top: 20px; }
.ground { height: 28px; border-top: 1px solid var(--hud-soft); background: linear-gradient(180deg, var(--hud-wash), transparent); }

/* ── prose pages ──────────────────────────────────────────────────────── */
.prose { max-width: calc(70ch + 2 * var(--gutter)); margin-left: 0; margin-right: auto; }
@media (min-width: 1280px) { .prose { margin-left: max(0px, calc((100vw - var(--wrap) - 2 * var(--gutter)) / 2)); } }
.prose h2 { margin-top: 44px; font-size: clamp(1.7rem, 3vw, 2.2rem); }
.prose h2:first-child { margin-top: 0; }
.prose p, .prose ul { margin-top: 14px; color: var(--hud-dim); }
.prose ul { padding-left: 1.2em; }
.prose li { margin-top: 8px; max-width: 62ch; }
.prose a { color: var(--hud-text); }
.prose__updated { margin-top: 44px !important; font-size: 0.9rem; }

.lost { min-height: 58vh; display: grid; align-content: center; }

/* ── footer ───────────────────────────────────────────────────────────── */
.site-foot { background: var(--hud-bg); border-top: 1px solid var(--hud-faint); }
.site-foot__grid {
  display: grid; grid-template-columns: minmax(0, 1.6fr) repeat(3, minmax(0, 1fr)); gap: 32px;
  padding-top: 64px; padding-bottom: 40px;
}
.site-foot__brand p { margin-top: 16px; font-size: 0.95rem; color: var(--hud-dim); }
.site-foot__brand p a { color: var(--hud-text); }
.site-foot__h { margin: 0 0 14px; font-family: var(--body); font-size: 0.75rem; font-weight: 700; line-height: 1.4; letter-spacing: 0.2em; text-transform: uppercase; color: var(--hud); }
.site-foot ul { display: grid; gap: 10px; margin: 0; padding: 0; list-style: none; }
.site-foot ul a { color: var(--hud-text); text-decoration: none; }
.site-foot ul a:hover { color: var(--hud-text); text-decoration: underline; }
.site-foot__legal p { max-width: 92ch; padding: 22px 0 28px; font-size: 0.85rem; color: var(--hud-dim); border-top: 1px solid var(--hud-faint); }
.site-status { background: var(--band); border-top: 1px solid var(--hud-faint); }
.site-status__row {
  display: flex; flex-wrap: wrap; gap: 8px 28px; padding-top: 12px; padding-bottom: 12px;
  font-family: var(--mono); font-size: 0.75rem; letter-spacing: 0.08em; color: var(--hud-dim);
}
@media (max-width: 860px) {
  .site-foot__grid { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
  .site-foot__brand { grid-column: 1 / -1; }
}
