  /* MAIN — the shared layer loaded on EVERY page (via partials/head.html):
     fonts, tokens, base type, nav/header, buttons, mobile menu, client grid,
     contact section (homepage + services), footer. Homepage-only sections
     (hero, work grid, owned, services list, manifesto, news, showreel modal)
     live in home.css, loaded only by pages/index.html. */

  /* brand face: Neuzeit Grotesk, local files. Weight ranges so 500→Regular and 600→Bold
     resolve to real cuts instead of faux-bolding */
  @font-face{font-family:'Neuzeit Grotesk';src:url('/assets/fonts/NeuzeitGrotesk-Light.otf') format('opentype');font-weight:200 300;font-style:normal;font-display:swap}
  @font-face{font-family:'Neuzeit Grotesk';src:url('/assets/fonts/NeuzeitGrotesk-Regular.otf') format('opentype');font-weight:400 500;font-style:normal;font-display:swap}
  @font-face{font-family:'Neuzeit Grotesk';src:url('/assets/fonts/NeuzeitGrotesk-Bold.otf') format('opentype');font-weight:600 700;font-style:normal;font-display:swap}
  @font-face{font-family:'Neuzeit Grotesk';src:url('/assets/fonts/NeuzeitGrotesk-Black.otf') format('opentype');font-weight:800 900;font-style:normal;font-display:swap}
  :root{
    /* SURFACES — a fixed set, nothing between (DESIGN.md > Surfaces).
       Dark: black (media) + deck (page) + panel (raised). Light: paper + card.
       A raised dark surface is always --bg-2 PLUS a --line keyline; never tone
       alone, never an inline color-mix. Black sits behind media, never on top. */
    /* ladder anchored on black so every step survives cheap IPS panels (gamma
       crushes the bottom of the range): black 0 → deck 34 → panel 54 per channel.
       Values chosen on real hardware via the /__ladder test card — don't re-darken
       by eye on a good screen. */
    --black:#000;          /* the anchor — immersive bands, media letterbox, deck slides, the footer */
    --bg:#222229;          /* the deck — dark page canvas */
    --bg-2:#36363f;        /* the panel — THE raised dark surface (cards, bands, fields, hover washes) */
    --paper:#fbfaf7;       /* light-theme page surface (blog/work/services light mode) */
    --paper-2:#f1efe9;     /* raised card on paper; also the warm break band on dark pages */
    --fg:#f6f3ec;
    --fg-2:#d7d3c8;        /* muted — lifted again (Jake: grey-on-black was too dim) */
    --line:rgba(255,255,255,.10);
    --line-d:rgba(0,0,0,.12);
    --orange:#ff5a1f;
    --orange-d:#c43a05;    /* AA-legible orange for text on light backgrounds (4.6:1 on --pg-card) */
    --cyan:#33d1cf;
    --pink:#ff4d9d;        /* bright accents beyond orange */
    --lime:#c8f24e;
    --violet:#9b7bff;
    --violet-d:#6b46ff;    /* deeper violet for light backgrounds (4.6:1 on --pg-card) */
    --pink-d:#d00077;      /* (4.6:1 on --pg-card) */
    /* -lg cuts: brighter accents for LARGE text only (>=24px, or >=18.66px bold) on
       light surfaces — 3:1 large-text AA on --pg-card. Small text keeps the -d cuts. */
    --orange-lg:#ed4909;
    --violet-lg:#8a69ff;
    --pink-lg:#f7208f;
    --sans:'Neuzeit Grotesk',system-ui,-apple-system,sans-serif;
    --body:'Neuzeit Grotesk',system-ui,-apple-system,sans-serif;
    --pad:48px;
    --wrap-max:1400px;    /* .wrap / .bl-main max content — the nav's outer measure */
    /* one breakout width for all full-bleed media: matches the nav/wrap content
       edges exactly (viewport-centred, capped to the wrap). Everything that "breaks
       out" of a reading measure should use this so their edges line up. */
    --wide:min(calc(100vw - 2*var(--pad)),calc(var(--wrap-max) - 2*var(--pad)));
  }
  *{margin:0;padding:0;box-sizing:border-box}
  /* GLOBAL TYPE SCALE — the one knob. Every font-size is in rem, so this sets the
     whole site's type. 100%=16px baseline; 106.25%=17px (the "modern web" bump).
     Nudge this one value to scale all copy up/down — nothing else to touch. */
  html{font-size:106.25%;scroll-behavior:smooth;scroll-padding-top:88px}
  body{background:var(--bg);color:var(--fg);font-family:var(--body);
    -webkit-font-smoothing:antialiased;line-height:1.55;overflow-x:hidden}
  ::selection{background:var(--orange);color:#141419}
  /* Neuzeit's built-in line metrics are very loose — pin headings down */
  h1,h2,h3,h4{line-height:1.08}
  a{color:inherit;text-decoration:none}
  /* keyboard focus is always visible and always orange; form fields override
     with their own accent border + ring (see .field input:focus) */
  :focus-visible{outline:2px solid var(--orange);outline-offset:2px}
  [hidden]{display:none !important}
  img{display:block;max-width:100%}
  .wrap{max-width:var(--wrap-max);margin:0 auto;padding:0 var(--pad)}
  .display{font-family:var(--sans);font-weight:700;letter-spacing:-0.03em;line-height:0.98}
  .accent{color:var(--orange)} .cyan{color:var(--cyan)}
  html.js .reveal{opacity:0;transform:translateY(30px)}

  /* ---------- NAV (compact bar, no keyline; goes glassy on scroll) ---------- */
  header{position:fixed;top:0;left:0;right:0;z-index:100;background:transparent;
    transition:background .5s ease,box-shadow .5s ease,backdrop-filter .5s ease,-webkit-backdrop-filter .5s ease}
  header.scrolled{background:rgba(15,15,19,.55);box-shadow:inset 0 -1px 0 rgba(255,255,255,.08);
    -webkit-backdrop-filter:blur(24px) saturate(1.5);backdrop-filter:blur(24px) saturate(1.5)}
  header nav{display:flex;align-items:center;justify-content:space-between;height:88px;
    transition:height .4s cubic-bezier(.4,0,.2,1)}
  header.scrolled nav{height:66px}
  .logo{display:flex;align-items:center;z-index:120}
  .logo-svg{height:64px;width:auto;display:block;transition:height .4s cubic-bezier(.4,0,.2,1)}
  header.scrolled .logo-svg{height:46px}
  .logo .lw{fill:var(--fg);transition:fill .35s ease}
  .logo .lb{fill:var(--fg);transition:fill .35s ease}
  .logo:hover .lw{fill:var(--fg)}
  .logo:hover .lb{fill:var(--orange)}
  /* footer brand mark */
  .foot-brand{display:inline-block;margin-bottom:20px}
  .foot-brand svg{height:52px;width:auto;display:block}
  .foot-brand .lw{fill:var(--fg)}
  .foot-brand .lb{fill:var(--orange);transition:fill .35s ease}
  .foot-brand:hover .lb{fill:var(--cyan)}
  .navlinks{display:flex;gap:32px;font-size:1rem;font-weight:400;color:var(--fg);
    margin-left:48px;margin-right:auto}
  .navlinks a{position:relative;transition:color .2s}
  .navlinks a::after{content:"";position:absolute;left:0;bottom:-5px;height:2px;width:0;background:var(--orange);transition:width .25s}
  .navlinks a:hover{color:var(--orange)} .navlinks a:hover::after{width:100%}
  /* current section: keep the underline lit and the label in the accent */
  .navlinks a.is-current{color:var(--orange)} .navlinks a.is-current::after{width:100%}
  .nav-right{display:flex;align-items:center;gap:20px}
  /* Neuzeit's ascender equals its cap height, so glyphs hang at the very top of the line box
     (0.333em of empty descender space below, nothing above). --cap-nudge shifts the text down
     by half that imbalance via asymmetric vertical padding — total button height is unchanged. */
  .btn{--cap-nudge:0.167em;font-family:var(--sans);font-weight:600;font-size:0.875rem;
    padding:calc(11px + var(--cap-nudge)) 22px calc(11px - var(--cap-nudge));border-radius:12px; /* matches .btn-talk — no full pills */
    background:var(--orange);color:#fff;display:inline-block;cursor:pointer;border:none; /* white ink: APCA-cleaner on orange than dark, matches nav CTA */
    transition:transform .2s,box-shadow .2s}
  .btn:hover{transform:translateY(-2px);box-shadow:0 12px 34px -8px rgba(255,90,31,.55)}
  .btn.ghost{background:transparent;color:var(--fg);border:1px solid var(--line)}
  .btn.ghost:hover{border-color:var(--fg);box-shadow:none}
  /* "Let's talk" — primary CTA. Solid Labs hue (gradient stays Labs-only); --g1-ink
     auto-flips dark/white for contrast as the hue shuffles. Padding trimmed so its
     height matches the Labs logo mark beside it. */
  .btn-talk{display:inline-flex;align-items:center;gap:9px;border-radius:12px;
    padding:calc(9px + var(--cap-nudge)) 18px calc(9px - var(--cap-nudge));
    background:var(--g1);color:var(--g1-ink)}
  .btn-talk:hover{box-shadow:0 12px 34px -8px color-mix(in srgb,var(--g1) 50%,transparent)}
  .btn-talk svg{width:17px;height:17px;flex:none;margin-top:-1px}
  .mm-cta .btn-talk{justify-content:center}
  .burger{display:none;flex-direction:column;gap:6px;width:34px;height:24px;justify-content:center;
    background:none;border:none;cursor:pointer;padding:0}
  .burger span{height:2px;width:100%;background:var(--fg);transition:.3s;display:block}
  .burger:hover span{background:var(--orange)}
  /* full-screen mobile menu — sits above the sticky header so its own close control is always clickable */
  .mobile-menu{position:fixed;inset:0;z-index:300;background:rgba(15,15,19,.98);backdrop-filter:blur(10px);
    display:flex;flex-direction:column;padding:22px var(--pad) 36px;overflow-y:auto;
    transform:translateX(100%);opacity:0;pointer-events:none;
    transition:transform .5s cubic-bezier(.72,0,.14,1),opacity .4s ease}
  .mobile-menu.open{transform:translateX(0);opacity:1;pointer-events:auto}
  .mm-top{display:flex;align-items:center;justify-content:space-between}
  .mm-logo svg{height:38px;width:auto;display:block}
  .mm-logo .lw,.mm-logo .lb{fill:var(--fg)} .mm-logo .lb{fill:var(--orange)}
  .mm-close{width:48px;height:48px;border-radius:50%;border:1px solid var(--line);background:none;
    cursor:pointer;position:relative;flex:none;transition:border-color .25s,transform .25s}
  .mm-close::before,.mm-close::after{content:"";position:absolute;top:50%;left:50%;width:20px;height:2px;background:var(--fg);transition:background .25s}
  .mm-close::before{transform:translate(-50%,-50%) rotate(45deg)}
  .mm-close::after{transform:translate(-50%,-50%) rotate(-45deg)}
  .mm-close:hover{border-color:var(--orange);transform:rotate(90deg)}
  .mm-close:hover::before,.mm-close:hover::after{background:var(--orange)}
  .mm-links{display:flex;flex-direction:column;margin:auto 0}
  .mm-links a{font-family:var(--sans);font-weight:700;font-size:clamp(1.875rem,9vw,3rem);letter-spacing:-0.02em;
    color:var(--fg);padding:9px 0;display:flex;align-items:baseline;gap:16px;transition:color .25s,padding-left .3s ease}
  .mm-links a .idx{font-family:var(--sans);font-size:0.75rem;font-weight:600;color:var(--fg-2);letter-spacing:.15em}
  .mm-links a:hover,.mm-links a:focus-visible{color:var(--orange);padding-left:10px}
  .mm-cta{margin-top:26px}
  .mm-cta .btn{display:block;width:100%;text-align:center;font-size:1rem;
    padding:calc(17px + var(--cap-nudge)) 17px calc(17px - var(--cap-nudge))}
  @media(max-width:860px){.navlinks,.nav-right .btn{display:none}.burger{display:flex}}


  /* ---------- CLIENT GRID (static, calm — replaces the dual tickers) ---------- */
  .clients{padding:0 0 clamp(90px,11vw,130px)}
  /* keyline grid: cells share 1px borders via overlapping box-shadow, no double lines */
  .client-grid{display:grid;grid-template-columns:repeat(5,1fr);
    border-top:1px solid var(--line);border-left:1px solid var(--line)}
  .client-cell{display:grid;place-items:center;min-height:132px;padding:26px 30px;
    border-right:1px solid var(--line);border-bottom:1px solid var(--line);
    transition:background .3s ease}
  .client-cell:hover{background:var(--bg-2)}
  .client-cell img{height:30px;width:auto;max-width:100%;opacity:.72;
    filter:grayscale(1) brightness(1.9);transition:opacity .3s,filter .3s,transform .3s}
  .client-cell:hover img{opacity:1;filter:grayscale(0) brightness(1);transform:scale(1.06)}
  .client-word{font-family:var(--sans);font-weight:600;font-size:0.9375rem;letter-spacing:.12em;
    text-transform:uppercase;text-align:center;color:rgba(255,255,255,.5);transition:color .3s}
  .client-cell:hover .client-word{color:#fff}
  @media(max-width:900px){.client-grid{grid-template-columns:repeat(4,1fr)}
    .client-cell{min-height:112px;padding:22px}}
  @media(max-width:520px){.client-grid{grid-template-columns:repeat(2,1fr)}
    .client-cell img{height:26px}}

  /* ---------- SECTION SHELL ---------- */
  section.pad{padding:120px 0}
  /* section surface claims (DESIGN.md > Surfaces): a section takes one of the dark
     tones to contrast with its neighbours. Black carries its own step; a panel
     section still needs its keyline seams (see .owned). */
  .sec-black{background:var(--black)}
  .eyebrow{font-family:var(--sans);font-weight:600;font-size:0.8125rem;letter-spacing:.2em;
    text-transform:uppercase;color:var(--fg-2);margin-bottom:18px}
  .sec-head{display:flex;justify-content:space-between;align-items:flex-end;gap:30px;margin-bottom:56px;flex-wrap:wrap}
  h2.sec{font-size:clamp(1.875rem,4.4vw,3.625rem);max-width:18ch;text-wrap:balance}


  /* reduced motion */
  @media(prefers-reduced-motion:reduce){
    *{scroll-behavior:auto}
    .hero-scroll .line::after,.seal-ring,.team-row,.of-row,.fly-ring,.foot-marquee-track{animation:none}
    .hero-line>span{transform:none !important}
  }

  /* spin serves the contact fly-ring here and the owned seal in home.css */
  @keyframes spin{to{transform:rotate(360deg)}}
  /* JS drives these rings via rAF for buttery-smooth, jump-free speed changes */
  html.js .seal-ring,html.js .fly-ring{animation:none}

  /* ---------- FACE CHIP (shared) ----------
     The avatar + hover name-pill. Sized here for the homepage team wall; the
     services one-team ticker (services.css .sv-ticker .face) restyles it.
     COLOUR CONTRACT: every chip variant (.face here, .wk-face in work.css) takes its
     hover ring + pill colours from --chip-acc/--chip-ink (default orange/white).
     Sections retint with ONE line, e.g. .owned{--chip-acc:var(--lime);--chip-ink:#141419}
     — never restyle .who colours directly. Ink follows APCA: white on warm/saturated
     hues, #141419 on cyan/lime. */
  .face{position:relative;flex:none;width:82px;height:82px;border-radius:50%;overflow:visible}
  .face img{width:100%;height:100%;border-radius:50%;object-fit:cover;display:block;
    border:2px solid rgba(255,255,255,.08);filter:grayscale(1) brightness(.9);
    transition:filter .3s ease,border-color .3s}
  .face:hover img{filter:grayscale(0) brightness(1.02);
    border-color:var(--chip-acc,var(--orange))}
  .face .who{position:absolute;left:50%;bottom:-30px;transform:translateX(-50%) translateY(6px);
    background:var(--chip-acc,var(--orange));color:var(--chip-ink,#fff);font-family:var(--sans);font-weight:600;font-size:0.6875rem;
    white-space:nowrap;padding:calc(4px + 0.167em) 10px calc(4px - 0.167em);border-radius:999px;opacity:0;pointer-events:none;
    transition:opacity .25s,transform .25s;z-index:3}
  .face:hover .who{opacity:1;transform:translateX(-50%) translateY(0)}


  /* flying hummingbird easter egg — spawned by home.js (window.rkhBird/rkhFlock);
     kept shared so the contact form celebration works wherever those utils load */
  .hb-fly{position:fixed;top:0;left:0;width:58px;height:58px;z-index:400;pointer-events:none;opacity:0;
    filter:drop-shadow(0 8px 16px rgba(0,0,0,.45))}
  .hb-fly svg{width:100%;height:100%}
  .hb-fly .lb{fill:var(--orange)}




  /* ---------- CONTACT (LIGHT BREAK) ---------- */
  .contact{background:var(--paper-2);color:#141419;position:relative;overflow:hidden}
  .contact .wrap{display:grid;grid-template-columns:1fr 1fr;gap:70px;padding-top:110px;padding-bottom:110px;align-items:start}
  .contact .eyebrow{color:#8a5a3a}
  .contact h2{font-family:var(--sans);font-weight:700;font-size:clamp(2.125rem,5vw,4rem);letter-spacing:-0.03em;line-height:1;margin-bottom:22px}
  .contact .lead{font-size:1.125rem;color:#4a453d;max-width:40ch;margin-bottom:34px}
  .contact-detail{font-family:var(--sans);font-weight:600;font-size:0.9375rem;margin-bottom:8px}
  .contact-detail a{color:var(--orange-d);position:relative;display:inline-block;transition:transform .25s}
  .contact-detail a::after{content:"";position:absolute;left:0;bottom:-2px;height:2px;width:0;background:var(--orange);transition:width .3s}
  .contact-detail a:hover{transform:translateX(3px)} .contact-detail a:hover::after{width:100%}
  /* "make it fly" roundel — the rotating motif, on the light break */
  .fly-seal{position:relative;width:150px;aspect-ratio:1;margin:0 0 32px}
  .fly-ring{position:absolute;inset:0;width:100%;height:100%;animation:spin 20s linear infinite;
    transform-origin:center;will-change:transform;backface-visibility:hidden}
  .contact:hover .fly-ring{animation-duration:9s}
  .fly-ring text{font-family:var(--sans);font-weight:600;font-size:0.5938rem;letter-spacing:.24em;text-transform:uppercase;fill:#141419}
  .fly-ring .tick{fill:var(--orange)}
  .fly-core{position:absolute;inset:23%;border-radius:50%;background:var(--orange);display:grid;place-items:center;
    box-shadow:0 14px 30px -10px rgba(255,90,31,.6)}
  .fly-core svg{width:60%;height:60%}
  .fly-core .lb{fill:#fff} .fly-core .lw{display:none}
  /* elevated form card + pill budget selector */
  .form-card{display:grid;gap:17px;background:#fff;border-radius:24px;padding:34px;
    box-shadow:0 44px 100px -55px rgba(50,25,0,.42);border:1px solid rgba(0,0,0,.05)}
  .form-card-head{display:flex;align-items:center;justify-content:space-between}
  .fc-step{font-family:var(--sans);font-size:0.75rem;font-weight:600;letter-spacing:.14em;text-transform:uppercase;color:#a15b32}
  .fc-dot{width:10px;height:10px;border-radius:50%;background:var(--cyan);box-shadow:0 0 0 4px rgba(51,209,207,.18)}
  .field{display:flex;flex-direction:column;gap:7px}
  .field label,.pill-label{font-family:var(--sans);font-size:0.8125rem;font-weight:600;letter-spacing:.02em;color:#4a453d}
  .field input,.field textarea{font-family:var(--body);font-size:0.9375rem;padding:14px 16px;
    border:1px solid rgba(0,0,0,.14);border-radius:12px;background:#faf9f6;color:#141419;transition:border-color .2s,box-shadow .2s,background .2s}
  .field input:focus,.field textarea:focus{outline:none;border-color:var(--orange);background:#fff;
    box-shadow:0 0 0 3px rgba(255,90,31,.15)}
  .field textarea{resize:vertical;min-height:120px}
  .budget-pills{display:flex;flex-wrap:wrap;gap:8px}
  .budget-pills input{position:absolute;opacity:0;width:0;height:0}
  .budget-pills label{--cap-nudge:0.167em;font-family:var(--sans);font-size:0.8125rem;font-weight:600;
    padding:calc(9px + var(--cap-nudge)) 15px calc(9px - var(--cap-nudge));border-radius:999px;
    border:1px solid rgba(0,0,0,.16);cursor:pointer;transition:.2s;color:#4a453d;user-select:none}
  .budget-pills label:hover{border-color:#141419;color:#141419}
  .budget-pills input:checked+label{background:#141419;border-color:#141419;color:#fff}
  .budget-pills input:focus-visible+label{outline:2px solid var(--orange);outline-offset:2px}
  .row2{display:grid;grid-template-columns:1fr 1fr;gap:16px}
  .form-submit{justify-self:start;font-size:0.9375rem;margin-top:4px;
    padding:calc(15px + var(--cap-nudge)) 32px calc(15px - var(--cap-nudge))}
  .form-note{font-size:0.8125rem;color:#6e6960}
  .form-success{display:none;background:#fff;border:1px solid rgba(255,90,31,.3);border-radius:18px;
    padding:34px;text-align:center}
  .form-success.show{display:block}
  .form-success .fs-bird{font-size:2.75rem;margin-bottom:10px}
  .form-success h3{font-family:var(--sans);font-size:1.5rem;margin-bottom:8px}
  .form-success p{color:#4a453d;font-size:0.9375rem}
  .err{border-color:#d13b1f !important;box-shadow:0 0 0 3px rgba(209,59,31,.12) !important}
  @media(max-width:820px){.contact .wrap{grid-template-columns:1fr;gap:44px}.row2{grid-template-columns:1fr}}

  /* ---------- PHOTO FADER (team photo bands: homepage owned + service sv-team-photo) ----------
     Stacked candids crossfade every 7s; global.js builds the dot controls and owns the timer.
     Markup contract: <figure class="… photo-fade"> with ≥2 imgs, class="on" + the alt on the
     first (no-JS and reduced-motion fall back to that frame). Hover pauses, like the tickers. */
  .photo-fade{position:relative}
  .photo-fade.pf-live{cursor:pointer} /* set by global.js: click/tap steps to the next frame */
  .photo-fade img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;
    opacity:0;transition:opacity 1.2s ease}
  .photo-fade img.on{opacity:1}
  .pf-dots{position:absolute;right:14px;bottom:14px;z-index:2;display:flex;gap:8px;
    padding:9px 11px;border-radius:999px;background:rgba(10,10,14,.45);backdrop-filter:blur(4px)}
  .pf-dots button{width:9px;height:9px;border-radius:50%;border:0;padding:0;cursor:pointer;
    background:rgba(255,255,255,.42);transition:background .25s,transform .25s}
  .pf-dots button:hover{background:rgba(255,255,255,.75);transform:scale(1.15)}
  .pf-dots button.on{background:#fff}
  @media(prefers-reduced-motion:reduce){.photo-fade img{transition:none}}

  /* ---------- FOOTER ---------- */
  /* the black basement — the footer sits on true black, the end-of-page moment */
  footer{padding:0 0 40px;background:var(--black);overflow:hidden}
  .foot-top{display:grid;grid-template-columns:1.4fr 1fr 1fr;gap:40px;margin-bottom:56px}
  /* giant outlined wordmark — slides up into view from under the section above */
  .foot-marquee{overflow:hidden;white-space:nowrap;margin:0 0 60px;padding:30px 0 12px;
    border-bottom:1px solid var(--line)}
  .foot-marquee-inner{will-change:transform}
  .foot-marquee-track{display:inline-flex;align-items:center;width:max-content;animation:footmarq 42s linear infinite}
  .foot-marquee:hover .foot-marquee-track{animation-play-state:paused}
  @keyframes footmarq{to{transform:translateX(-50%)}}
  /* reworked for Neuzeit: uppercase Black cut, alternating outline/filled like the service strip */
  .fm{font-family:var(--sans);font-weight:900;font-size:clamp(2.5rem,9.5vw,8.25rem);letter-spacing:-0.01em;
    line-height:1.1;text-transform:uppercase;
    color:transparent;-webkit-text-stroke:2px rgba(255,255,255,.42);text-stroke:2px rgba(255,255,255,.42);
    padding:0 6px;transition:color .35s,-webkit-text-stroke-color .35s}
  .fm:nth-of-type(4n+3){color:var(--fg);-webkit-text-stroke-color:transparent}
  .fm-dot{width:clamp(9px,1.2vw,17px);aspect-ratio:1;border-radius:50%;background:var(--orange);flex:none;margin:0 clamp(20px,3vw,48px)}
  .fm-dot:nth-of-type(3n){background:var(--cyan)} .fm-dot:nth-of-type(3n+1){background:var(--pink)}
  .foot h5{font-family:var(--sans);font-size:0.8125rem;letter-spacing:.16em;text-transform:uppercase;color:var(--fg-2);margin-bottom:20px;font-weight:600}
  .foot a{display:block;font-size:0.9375rem;color:var(--fg);margin-bottom:12px;transition:color .2s}
  .foot a:hover{color:var(--orange)}
  .foot-logo{font-family:var(--sans);font-weight:700;font-size:1.875rem;letter-spacing:-0.02em;margin-bottom:16px}
  .foot-logo b{color:var(--orange)}
  .foot-addr{font-size:0.875rem;color:var(--fg-2);line-height:1.7}
  /* accreditation strip: same keyline + muted-to-full language as the client grid.
     The marks are white cuts hotlinked from rkh.co.uk, like the client logos.
     Built to take any number of marks: they flow left in wrapping rows on a fixed
     rhythm, so adding more just grows the block downward. */
  .foot-accred{padding:30px 0 34px;margin-top:56px;border-top:1px solid var(--line)}
  .foot-accred-label{font-family:'IBM Plex Mono',monospace;font-size:0.6875rem;letter-spacing:.08em;
    text-transform:uppercase;color:var(--fg-2);margin-bottom:26px}
  .foot-accred-logos{display:flex;align-items:center;flex-wrap:wrap;
    column-gap:clamp(30px,3.6vw,52px);row-gap:28px}
  .foot-accred-logos img{height:32px;width:auto;opacity:.6;filter:grayscale(1);
    transition:opacity .3s}
  /* box/roundel-shaped marks need a taller cut to match the wordmarks' optical mass */
  .foot-accred-logos img.fa-badge{height:48px}
  .foot-accred-logos img:hover,.foot-accred-logos a:hover img{opacity:1}
  @media(max-width:520px){.foot-accred-logos{column-gap:26px;row-gap:22px}
    .foot-accred-logos img{height:28px}.foot-accred-logos img.fa-badge{height:42px}}
  .foot-bottom{display:flex;justify-content:space-between;align-items:center;padding-top:30px;border-top:1px solid var(--line);font-size:0.8125rem;color:var(--fg-2);flex-wrap:wrap;gap:16px}
  @media(max-width:640px){.foot-top{grid-template-columns:1fr 1fr}}
  @media(max-width:480px){:root{--pad:22px}h1.hero-title{font-size:2.375rem}.foot-top{grid-template-columns:1fr}}


