/* ==========================================================================
   Innovative Acquisitions — 2026 site stylesheet
   Built by Global Solutions Group
   Vanilla CSS. No frameworks.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Tokens
   -------------------------------------------------------------------------- */
:root {
  /* Brand — derived from the logo's deep indigo */
  --ink:        #0a1c3f;   /* deep navy — the text colour, not a background */
  --ink-2:      #102a5c;
  --ink-3:      #1b3d7a;
  --navy:       #0a1c3f;
  --blue:       #2a5caa;   /* the one accent */
  --blue-lt:    #5a8ad4;
  --blue-pale:  #e8eff9;
  --blue-dk-bg: #7ba5e0;   /* accent for use ON navy */

  /* Legacy aliases — every component now resolves to the blue */
  --teal:       #2a5caa;
  --teal-lt:    #5a8ad4;
  --signal:     #2a5caa;
  --signal-dk:  #1f477f;
  --gold:       #2a5caa;
  --gold-dk:    #1f477f;

  --paper:      #ffffff;
  --bone:       #e8eef8;
  --mist:       #e4ebf5;
  --mist-2:     #eef2f9;
  --muted:      #5c6880;
  --muted-lt:   #939db1;

  --line:       rgba(10, 28, 63, .14);
  --line-2:     rgba(10, 28, 63, .07);
  --line-inv:   rgba(255, 255, 255, .18);

  /* Type */
  --display: "Archivo", "Helvetica Neue", Arial, sans-serif;
  --body:    "Instrument Sans", "Helvetica Neue", Arial, sans-serif;
  --mono:    "Instrument Sans", "Helvetica Neue", Arial, sans-serif;

  /* Rhythm */
  --gut:      clamp(22px, 4.5vw, 56px);
  --section:  clamp(64px, 8vw, 118px);
  --maxw:     1280px;
  --maxw-nar: 900px;

  --r-sm: 2px;
  --r:    3px;
  --r-lg: 4px;

  --ease: cubic-bezier(.22, 1, .36, 1);
  --shadow:    0 1px 2px rgba(10,28,63,.04), 0 10px 30px rgba(10,28,63,.07);
  --shadow-lg: 0 2px 6px rgba(10,28,63,.05), 0 28px 64px rgba(10,28,63,.12);
  --shadow-hard: 12px 12px 0 var(--blue);
}

/* --------------------------------------------------------------------------
   2. Reset
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

/* The header is fixed, so anything scrolled to by id must stop below it
   rather than sliding underneath. */
section[id],
[id].chapter,
main [id],
:target { scroll-margin-top: clamp(104px, 13vh, 132px); }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body.is-locked { overflow: hidden; }

/* Nothing should ever push the page sideways */
html, body { max-width: 100%; }

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

img, svg, video { max-width: 100%; display: block; }
img { height: auto; }

a { color: inherit; text-decoration: none; }

button, input, textarea, select {
  font: inherit;
  color: inherit;
}

h1, h2, h3, h4, h5, h6, p, ul, ol, figure, blockquote { margin: 0; }
ul, ol { padding: 0; list-style: none; }

:focus-visible {
  outline: 3px solid var(--signal);
  outline-offset: 3px;
  border-radius: 2px;
}

::selection { background: var(--signal); color: #fff; }

/* --------------------------------------------------------------------------
   3. Type scale
   -------------------------------------------------------------------------- */
.d1, .d2, .d3, .d4 {
  font-family: var(--display);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: -.022em;
  font-stretch: 112%;      /* Archivo variable width axis */
  font-variation-settings: "wdth" 112;
  text-wrap: balance;
}
.d1 em, .d2 em, .d3 em { font-style: normal; color: var(--blue); }

.d1 { font-size: clamp(1.95rem, 3.6vw, 3.05rem); line-height: 1.04; }
.d2 { font-size: clamp(1.5rem, 2.4vw, 2.05rem); line-height: 1.12; }
.d3 { font-size: clamp(1.25rem, 1.75vw, 1.55rem); line-height: 1.2; letter-spacing: -.014em; }
.d4 {
  font-family: var(--body);
  font-size: 1.02rem;
  line-height: 1.35;
  letter-spacing: -.003em;
  font-weight: 600;
}

.lead {
  font-size: clamp(.98rem, 1.2vw, 1.08rem);
  line-height: 1.6;
  color: var(--muted);
  text-wrap: pretty;
}

.prose p + p { margin-top: 1.05em; }
.prose { color: var(--muted); text-wrap: pretty; }

/* Mono utility label — the "field report" register used for all eyebrows */
.eyebrow {
  font-family: var(--body);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  gap: .95em;
}
.eyebrow::before {
  content: "";
  width: 30px;
  height: 1px;
  background: currentColor;
  flex: none;
  opacity: .55;
}
.eyebrow.is-center { justify-content: center; }

/* Any eyebrow on a dark surface needs the lighter accent to stay legible */
.eyebrow.on-dark,
.section-dark .eyebrow,
.page-head .eyebrow,
.close-band .eyebrow,
.clients-band .eyebrow,
.cta-x .eyebrow,
.hero-f .eyebrow { color: var(--blue-dk-bg); }

.text-signal { color: var(--signal); }
.text-teal   { color: var(--teal); }

/* --------------------------------------------------------------------------
   4. Layout primitives
   -------------------------------------------------------------------------- */
.footer-grid > *,
.split > *,
.grid-3 > *,
.grid-2 > *,
.cta-inner > *,
.contact-layout > *,
.leader > *,
.statband .wrap > * { min-width: 0; }

.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gut);
}
.wrap-narrow { max-width: var(--maxw-nar); }

.section { padding-block: var(--section); }
.section-sm { padding-block: clamp(46px, 6vw, 84px); }

.section-dark { background: var(--ink); color: #fff; }
.section-dark .prose,
.section-dark .lead { color: rgba(255,255,255,.72); }

.section-mist { background: var(--mist-2); }

.section-head { max-width: 880px; margin-bottom: clamp(38px, 5vw, 64px); }
.section-head.is-center { margin-inline: auto; text-align: center; }
.section-head .d2, .section-head .d3 { margin-top: 18px; }
.section-head .lead { margin-top: 18px; }

.rule {
  height: 1px;
  background: var(--line);
  border: 0;
  margin: 0;
}
.section-dark .rule { background: var(--line-inv); }

/* --------------------------------------------------------------------------
   5. Buttons
   -------------------------------------------------------------------------- */
.btn {
  --btn-bg: var(--signal);
  --btn-fg: #fff;
  --btn-bd: var(--signal);
  display: inline-flex;
  align-items: center;
  gap: .65em;
  padding: 16px 30px;
  background: var(--btn-bg);
  color: var(--btn-fg);
  border: 1px solid var(--btn-bd);
  border-radius: 2px;
  font-family: var(--body);
  font-weight: 600;
  font-size: .715rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform .35s var(--ease), background .25s ease,
              color .25s ease, border-color .25s ease, box-shadow .35s var(--ease);
  will-change: transform;
}
.btn svg { width: 15px; height: 15px; transition: transform .35s var(--ease); }
.btn:hover { transform: translateY(-2px); box-shadow: 0 10px 26px rgba(26,95,208,.32); }
.btn:hover svg { transform: translateX(4px); }
.btn:active { transform: translateY(0); }

.btn-ghost {
  --btn-bg: transparent;
  --btn-fg: var(--ink);
  --btn-bd: var(--line);
}
.btn-ghost:hover {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
  box-shadow: 0 10px 26px rgba(8,12,36,.2);
}

.btn-ghost-inv {
  --btn-bg: transparent;
  --btn-fg: #fff;
  --btn-bd: rgba(255,255,255,.34);
}
.btn-ghost-inv:hover {
  background: #fff;
  color: var(--ink);
  border-color: #fff;
  box-shadow: 0 10px 26px rgba(0,0,0,.28);
}

.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }

/* Text link with animated underline */
.link-u {
  display: inline-flex;
  align-items: center;
  gap: .5em;
  font-weight: 600;
  font-size: .95rem;
  color: var(--teal);
  padding-bottom: 3px;
  background-image: linear-gradient(currentColor, currentColor);
  background-size: 0% 1.5px;
  background-position: 0 100%;
  background-repeat: no-repeat;
  transition: background-size .4s var(--ease);
}
.link-u:hover { background-size: 100% 1.5px; }
.link-u svg { width: 14px; height: 14px; }

/* --------------------------------------------------------------------------
   6. Header
   -------------------------------------------------------------------------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 200;
  padding-block: 18px;
  background: #fff;
  border-bottom: 1px solid var(--line);
  transition: padding .4s var(--ease), box-shadow .4s var(--ease);
}
.site-header .wrap {
  display: flex;
  align-items: center;
  gap: 24px;
}

.site-header.is-stuck {
  padding-block: 11px;
  box-shadow: 0 1px 0 var(--line), 0 12px 34px rgba(10,28,63,.07);
}

/* Brand lockup: the emblem sits beside a typeset wordmark so the name
   stays legible at slim header heights. */
.brand { display: flex; align-items: center; gap: 13px; flex: none; }
.brand img {
  width: auto;
  height: 48px;
  transition: height .4s var(--ease);
}
.site-header.is-stuck .brand img { height: 38px; }

.brand-word { display: grid; gap: 4px; }
.brand-name {
  font-family: var(--display);
  font-weight: 700;
  font-stretch: 114%;
  font-variation-settings: "wdth" 114;
  font-size: 1rem;
  line-height: 1.1;
  letter-spacing: -.004em;
  text-transform: uppercase;
  color: var(--ink);
}
.brand-tag {
  font-family: var(--body);
  font-size: .535rem;
  font-weight: 600;
  letter-spacing: .22em;
  line-height: 1.3;
  text-transform: uppercase;
  color: var(--muted);
}
/* The header bar is a single row, so the lockup must not wrap there. */
.site-header .brand-name,
.site-header .brand-tag { white-space: nowrap; }

.nav { margin-left: auto; }
.nav-list { display: flex; align-items: center; gap: 4px; }
.nav-link {
  position: relative;
  display: block;
  padding: 10px 15px;
  font-size: .885rem;
  font-weight: 500;
  color: var(--muted);
  border-radius: 0;
  transition: color .25s ease;
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 15px; right: 15px; bottom: 4px;
  height: 2px;
  background: var(--signal);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s var(--ease);
}
.nav-link:hover { color: var(--ink); }
.nav-link:hover::after,
.nav-link[aria-current="page"]::after { transform: scaleX(1); }
.nav-link[aria-current="page"] { color: var(--ink); }

.nav-cta { margin-left: 16px; padding: 12px 22px; font-size: .66rem; letter-spacing: .15em; }

.nav-toggle {
  display: none;
  width: 46px; height: 46px;
  margin-left: auto;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 2px;
  cursor: pointer;
  position: relative;
}
.nav-toggle span {
  position: absolute;
  left: 50%; top: 50%;
  width: 18px; height: 1.5px;
  background: var(--ink);
  border-radius: 2px;
  transform: translate(-50%, -50%);
  transition: transform .4s var(--ease), opacity .25s ease;
}
.nav-toggle span:nth-child(1) { transform: translate(-50%, calc(-50% - 5px)); }
.nav-toggle span:nth-child(3) { transform: translate(-50%, calc(-50% + 5px)); }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translate(-50%,-50%) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translate(-50%,-50%) rotate(-45deg); }

/* --------------------------------------------------------------------------
   7. Hero
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: min(100svh, 900px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--ink);
  isolation: isolate;
}

.hero-media {
  position: absolute;
  inset: -8% 0 -8% 0;
  z-index: -2;
  will-change: transform;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 34%;
}

.hero-scrim {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(to top, var(--ink) 2%, rgba(8,12,36,.86) 34%, rgba(8,12,36,.44) 66%, rgba(8,12,36,.68) 100%),
    linear-gradient(to right, rgba(8,12,36,.82) 0%, rgba(8,12,36,.18) 62%, transparent 100%);
}

.hero-inner {
  position: relative;
  width: 100%;
  padding-top: clamp(140px, 20vh, 210px);
  padding-bottom: clamp(56px, 8vh, 96px);
  color: #fff;
}

.hero-copy { max-width: 21ch; }
.hero .d1 { margin-top: 22px; color: #fff; }
.hero .d1 em {
  font-style: normal;
  color: var(--signal);
}
.hero-sub {
  max-width: 46ch;
  margin-top: 24px;
  font-size: clamp(1.02rem, 1.4vw, 1.18rem);
  line-height: 1.6;
  color: rgba(255,255,255,.76);
}
.hero .btn-row { margin-top: 36px; }

.hero-scroll {
  position: absolute;
  right: var(--gut);
  bottom: clamp(56px, 8vh, 96px);
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--mono);
  font-size: .66rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  writing-mode: vertical-rl;
}
.hero-scroll::after {
  content: "";
  width: 1px;
  height: 56px;
  background: linear-gradient(rgba(255,255,255,.5), transparent);
  animation: scroll-hint 2.4s var(--ease) infinite;
}
@keyframes scroll-hint {
  0%   { transform: scaleY(0); transform-origin: top; }
  40%  { transform: scaleY(1); transform-origin: top; }
  60%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* Hero load sequence */
.hero-copy > * {
  opacity: 0;
  transform: translateY(26px);
  animation: hero-in .95s var(--ease) forwards;
}
.hero-copy > :nth-child(1) { animation-delay: .18s; }
.hero-copy > :nth-child(2) { animation-delay: .30s; }
.hero-copy > :nth-child(3) { animation-delay: .42s; }
.hero-copy > :nth-child(4) { animation-delay: .54s; }
@keyframes hero-in { to { opacity: 1; transform: none; } }

/* --------------------------------------------------------------------------
   8. Stat band
   -------------------------------------------------------------------------- */
.statband { background: var(--ink); color: #fff; border-top: 1px solid var(--line-inv); }
.statband .wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat {
  padding: clamp(30px, 4vw, 48px) 8px clamp(30px, 4vw, 48px) clamp(18px, 2.4vw, 34px);
  border-left: 1px solid var(--line-inv);
}
.stat:first-child { border-left: 0; padding-left: 0; }

.stat-num {
  font-family: var(--display);
  font-weight: 700;
  font-stretch: 120%;
  font-variation-settings: "wdth" 120;
  font-size: clamp(2.1rem, 4vw, 3.15rem);
  line-height: 1;
  letter-spacing: -.03em;
  display: flex;
  align-items: baseline;
  gap: 1px;
}
.stat-num .suffix { color: var(--signal); }

.stat-label {
  margin-top: 12px;
  font-family: var(--mono);
  font-size: .7rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.52);
  line-height: 1.5;
}

/* --------------------------------------------------------------------------
   9. Split sections
   -------------------------------------------------------------------------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 6vw, 88px);
  align-items: center;
}
.split-40 { grid-template-columns: .82fr 1fr; }
.split-60 { grid-template-columns: 1fr .82fr; }
.split-top { align-items: start; }
.split-rev .split-media { order: 2; }

.split-copy .d2, .split-copy .d3 { margin-top: 18px; }
.split-copy .prose { margin-top: 20px; }
.split-copy .btn-row { margin-top: 32px; }

/* Framed image — a teal rule offset behind the photo */
.framed { position: relative; }
.framed::before {
  content: "";
  position: absolute;
  inset: 26px -26px -26px 26px;
  border: 1.5px solid var(--teal);
  border-radius: var(--r-lg);
  z-index: 0;
  transition: inset .8s var(--ease);
}
.framed img {
  position: relative;
  z-index: 1;
  width: 100%;
  border-radius: var(--r-lg);
  aspect-ratio: 4 / 5;
  object-fit: cover;
  box-shadow: var(--shadow);
}
.framed.is-wide img { aspect-ratio: 5 / 4; }
.framed:hover::before { inset: 18px -18px -18px 18px; }

/* Duo image stack */
.duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.duo img {
  width: 100%;
  border-radius: var(--r-lg);
  aspect-ratio: 3 / 4;
  object-fit: cover;
  box-shadow: var(--shadow);
}
.duo img:nth-child(2) { margin-top: clamp(24px, 5vw, 56px); }

/* Fact list beside copy */
.facts { margin-top: 30px; display: grid; gap: 2px; }
.fact {
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding: 15px 0;
  border-top: 1px solid var(--line);
}
.fact:last-child { border-bottom: 1px solid var(--line); }
.fact-k {
  font-family: var(--mono);
  font-size: .68rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--teal);
  flex: none;
  width: 82px;
}
.fact-v { font-size: .97rem; color: var(--ink); font-weight: 500; }

/* --------------------------------------------------------------------------
   10. Capability cards
   -------------------------------------------------------------------------- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(18px, 2.2vw, 28px); }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(18px, 2.4vw, 32px); }

.card {
  position: relative;
  padding: clamp(28px, 3vw, 40px);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease), border-color .4s ease;
}
.card::after {
  content: "";
  position: absolute;
  left: 0; right: 0; top: 0;
  height: 3px;
  background: var(--signal);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .55s var(--ease);
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.card:hover::after { transform: scaleX(1); }

.card-icon {
  width: 52px; height: 52px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(26,95,208,.09);
  color: var(--teal);
  margin-bottom: 24px;
  transition: background .4s ease, color .4s ease, transform .5s var(--ease);
}
.card-icon svg { width: 23px; height: 23px; }
.card:hover .card-icon {
  background: var(--teal);
  color: #fff;
  transform: rotate(-6deg) scale(1.05);
}
.card .d4 { margin-bottom: 12px; }
.card p { color: var(--muted); font-size: .965rem; }

/* Dark variant, used on the industries grid */
.section-dark .card {
  background: var(--ink-2);
  border-color: var(--line-inv);
}
.section-dark .card p { color: rgba(255,255,255,.66); }
.section-dark .card-icon { background: rgba(255,255,255,.07); color: var(--signal); }
.section-dark .card:hover { border-color: var(--line-inv); }
.section-dark .card:hover .card-icon { background: var(--signal); color: #fff; }

/* --------------------------------------------------------------------------
   11. SIGNATURE — "In the field" photo marquee
   Two rows of real team photography running in opposite directions.
   -------------------------------------------------------------------------- */
.field {
  background: var(--ink);
  color: #fff;
  padding-block: clamp(56px, 7vw, 96px);
  overflow: hidden;
}
.field-head {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: clamp(30px, 4vw, 48px);
}
.field-head .d3 { margin-top: 16px; max-width: 18ch; }
.field-note {
  font-family: var(--mono);
  font-size: .7rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.42);
  text-align: right;
  line-height: 1.9;
}

.field-track { position: relative; }
.field-track::before,
.field-track::after {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  width: clamp(40px, 9vw, 150px);
  z-index: 3;
  pointer-events: none;
}
.field-track::before { left: 0;  background: linear-gradient(to right, var(--ink), transparent); }
.field-track::after  { right: 0; background: linear-gradient(to left,  var(--ink), transparent); }

.field-row {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: marquee 64s linear infinite;
}
.field-row + .field-row { margin-top: 16px; animation-duration: 78s; animation-direction: reverse; }
.field-track:hover .field-row { animation-play-state: paused; }

@keyframes marquee { to { transform: translateX(calc(-50% - 8px)); } }

.field-shot {
  position: relative;
  flex: none;
  width: clamp(200px, 24vw, 320px);
  aspect-ratio: 4 / 3;
  border-radius: var(--r);
  overflow: hidden;
  filter: saturate(.82);
  transition: filter .5s ease, transform .5s var(--ease);
}
.field-shot img { width: 100%; height: 100%; object-fit: cover; }
.field-shot:hover { filter: saturate(1.1); transform: scale(1.03); z-index: 4; }
.field-row + .field-row .field-shot { width: clamp(160px, 19vw, 250px); aspect-ratio: 1 / 1; }

/* --------------------------------------------------------------------------
   12. Clients
   -------------------------------------------------------------------------- */
.clients-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.client {
  display: grid;
  place-items: center;
  padding: clamp(24px, 3vw, 38px) 18px;
  background: #fff;
  min-height: 118px;
  transition: background .35s ease;
}
.client img {
  max-height: 46px;
  width: auto;
  object-fit: contain;
  filter: grayscale(1) contrast(.92);
  opacity: .62;
  transition: filter .45s ease, opacity .45s ease, transform .45s var(--ease);
}
.client:hover { background: var(--mist-2); }
.client:hover img { filter: none; opacity: 1; transform: scale(1.05); }

/* --------------------------------------------------------------------------
   13. CTA band
   -------------------------------------------------------------------------- */
.cta-band {
  position: relative;
  background: var(--navy);
  color: #fff;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  right: -12%;
  top: -60%;
  width: 62vw;
  height: 200%;
  background: radial-gradient(circle at center, rgba(26,95,208,.28), transparent 62%);
  pointer-events: none;
}
.cta-band .wrap { position: relative; }
.cta-inner {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.cta-inner .d2 { margin-top: 16px; }
.cta-inner p { margin-top: 16px; color: rgba(255,255,255,.74); }

.subscribe {
  display: flex;
  min-width: 0;
  max-width: 100%;
  gap: 10px;
  background: rgba(255,255,255,.07);
  border: 1px solid var(--line-inv);
  border-radius: 100px;
  padding: 7px 7px 7px 8px;
}
.subscribe input {
  flex: 1;
  min-width: 0;
  padding: 12px 18px;
  background: transparent;
  border: 0;
  color: #fff;
  font-size: .95rem;
}
.subscribe input::placeholder { color: rgba(255,255,255,.45); }
.subscribe input:focus { outline: none; }
.subscribe:focus-within { border-color: rgba(255,255,255,.4); }
.subscribe .btn { padding: 13px 26px; flex: none; }
.form-note {
  margin-top: 14px;
  font-family: var(--mono);
  font-size: .68rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.42);
}

/* --------------------------------------------------------------------------
   14. Footer
   -------------------------------------------------------------------------- */
.site-footer { background: var(--ink); color: rgba(255,255,255,.66); }
.footer-top { padding-block: clamp(56px, 7vw, 96px); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: clamp(28px, 4vw, 56px);
}
/* The brand lockup is shared with the light header, where it is ink.
   On the navy footer it has to be knocked back to white. */
.site-footer .brand-name { color: #fff; }
.site-footer .brand-tag  { color: rgba(255,255,255,.6); }

.footer-brand { display: flex; align-items: center; gap: 15px; margin-bottom: 24px; }
.footer-brand img { height: 62px; width: auto; }
.footer-brand .brand-name { font-size: 1.1rem; }
.footer-col h4 {
  font-family: var(--mono);
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 20px;
}
.footer-col p { font-size: .95rem; max-width: 34ch; }
.footer-col li + li { margin-top: 11px; }
.footer-col a {
  font-size: .95rem;
  color: rgba(255,255,255,.66);
  transition: color .25s ease, padding-left .3s var(--ease);
}
.footer-col a:hover { color: #fff; padding-left: 5px; }

.footer-contact li {
  display: flex;
  min-width: 0;
  gap: 12px;
  align-items: flex-start;
  font-size: .95rem;
  line-height: 1.55;
}
.footer-contact svg { width: 15px; height: 15px; flex: none; margin-top: 5px; color: var(--signal); }
.footer-contact span { min-width: 0; overflow-wrap: anywhere; }
.footer-col a { overflow-wrap: anywhere; }

.socials { display: flex; gap: 9px; margin-top: 26px; }
.socials a {
  width: 40px; height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-inv);
  border-radius: 100px;
  color: rgba(255,255,255,.7);
  transition: background .3s ease, color .3s ease, border-color .3s ease, transform .4s var(--ease);
}
.socials a:hover { background: var(--signal); border-color: var(--signal); color: #fff; transform: translateY(-3px); }
.socials svg { width: 15px; height: 15px; }

.footer-bottom {
  border-top: 1px solid var(--line-inv);
  padding-block: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px 26px;
  align-items: center;
  justify-content: space-between;
  font-size: .875rem;
}
.footer-bottom ul { display: flex; gap: 22px; flex-wrap: wrap; }
.footer-bottom a:hover { color: #fff; }
.footer-bottom .credit a { color: #fff; border-bottom: 1px solid rgba(255,255,255,.3); }
.footer-bottom .credit a:hover { border-color: var(--signal); color: var(--signal); }

/* --------------------------------------------------------------------------
   15. Inner page header
   -------------------------------------------------------------------------- */
.page-head {
  position: relative;
  background: var(--ink);
  color: #fff;
  padding-top: clamp(140px, 17vh, 190px);
  padding-bottom: clamp(52px, 7vw, 88px);
  overflow: hidden;
  isolation: isolate;
}
.page-head-media { position: absolute; inset: 0; z-index: -2; }
.page-head-media img { width: 100%; height: 100%; object-fit: cover; object-position: center 35%; }
.page-head::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(to top, var(--ink) 6%, rgba(8,12,36,.9) 46%, rgba(8,12,36,.66) 100%);
}
.page-head .d2 { margin-top: 16px; }
.crumbs {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-top: 20px;
  font-family: var(--mono);
  font-size: .7rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
}
.crumbs a:hover { color: #fff; }
.crumbs span[aria-current] { color: var(--blue-dk-bg); }

/* --------------------------------------------------------------------------
   16. About page
   -------------------------------------------------------------------------- */
.meters { display: grid; gap: 26px; margin-top: 36px; }
.meter-top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 10px;
}
.meter-label { font-size: .95rem; font-weight: 600; }
.meter-val {
  font-family: var(--mono);
  font-size: .85rem;
  font-weight: 500;
  color: var(--teal);
}
.meter-bar {
  height: 5px;
  background: var(--mist);
  border-radius: 100px;
  overflow: hidden;
}
.meter-fill {
  height: 100%;
  width: 0;
  border-radius: 100px;
  background: linear-gradient(90deg, var(--teal), var(--teal-lt));
  transition: width 1.5s var(--ease);
}
.meter:nth-child(2) .meter-fill { transition-delay: .12s; }
.meter:nth-child(3) .meter-fill { transition-delay: .24s; }

/* Leader / CEO feature */
.leader {
  display: grid;
  grid-template-columns: .78fr 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: start;
}
.leader-photo { position: relative; }
.leader-photo img {
  width: 100%;
  border-radius: var(--r-lg);
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center 18%;
  box-shadow: var(--shadow);
}
.leader-tag {
  position: absolute;
  left: 0; bottom: 24px;
  transform: translateX(-14px);
  background: var(--signal);
  color: #fff;
  padding: 12px 20px;
  border-radius: var(--r);
  font-family: var(--mono);
  font-size: .68rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  box-shadow: var(--shadow);
}
.leader-quote {
  margin-top: 30px;
  padding-left: 24px;
  border-left: 2px solid var(--signal);
  font-family: var(--display);
  font-stretch: 108%;
  font-variation-settings: "wdth" 108;
  font-size: clamp(1.1rem, 1.7vw, 1.32rem);
  font-weight: 600;
  line-height: 1.42;
  letter-spacing: -.012em;
  color: var(--ink);
}

/* Team grid */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(16px, 2vw, 26px);
}
.member {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--ink-2);
  aspect-ratio: 3 / 4;
}
.member img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
  transition: transform .8s var(--ease), filter .5s ease;
}
.member:hover img { transform: scale(1.06); }
.member-body {
  position: absolute;
  inset: auto 0 0 0;
  padding: 26px 22px 22px;
  background: linear-gradient(to top, rgba(8,12,36,.94), rgba(8,12,36,.72) 55%, transparent);
  color: #fff;
}
.member-name {
  font-family: var(--display);
  font-weight: 700;
  font-stretch: 112%;
  font-variation-settings: "wdth" 112;
  font-size: 1.03rem;
  letter-spacing: -.01em;
}
.member-role {
  margin-top: 5px;
  font-family: var(--mono);
  font-size: .655rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--blue-dk-bg);
}

/* Accordion */
.accordion { border-top: 1px solid var(--line); }
.acc-item { border-bottom: 1px solid var(--line); }
.acc-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 0;
  background: none;
  border: 0;
  text-align: left;
  cursor: pointer;
  font-family: var(--display);
  font-weight: 700;
  font-stretch: 110%;
  font-variation-settings: "wdth" 110;
  font-size: clamp(1.02rem, 1.4vw, 1.16rem);
  letter-spacing: -.01em;
  color: var(--ink);
  transition: color .3s ease;
}
.acc-trigger:hover { color: var(--teal); }
.acc-icon {
  flex: none;
  width: 34px; height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 100px;
  position: relative;
  transition: background .35s ease, border-color .35s ease, transform .45s var(--ease);
}
.acc-icon::before, .acc-icon::after {
  content: "";
  position: absolute;
  background: var(--ink);
  transition: transform .4s var(--ease), background .35s ease;
}
.acc-icon::before { width: 12px; height: 1.6px; }
.acc-icon::after  { width: 1.6px; height: 12px; }
.acc-trigger[aria-expanded="true"] .acc-icon {
  background: var(--signal);
  border-color: var(--signal);
  transform: rotate(180deg);
}
.acc-trigger[aria-expanded="true"] .acc-icon::before,
.acc-trigger[aria-expanded="true"] .acc-icon::after { background: #fff; }
.acc-trigger[aria-expanded="true"] .acc-icon::after { transform: scaleY(0); }

.acc-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .5s var(--ease);
}
.acc-panel > div { overflow: hidden; }
.acc-item.is-open .acc-panel { grid-template-rows: 1fr; }
.acc-panel p { padding-bottom: 26px; color: var(--muted); max-width: 68ch; }

/* --------------------------------------------------------------------------
   17. Services page
   -------------------------------------------------------------------------- */
.check-list { display: grid; gap: 1px; margin-top: 30px; }
.check-list li {
  display: flex;
  gap: 15px;
  align-items: center;
  padding: 15px 0;
  border-top: 1px solid var(--line);
  font-weight: 500;
  font-size: 1rem;
}
.check-list li:last-child { border-bottom: 1px solid var(--line); }
.check-list svg { width: 19px; height: 19px; flex: none; color: var(--signal); }

.step-list { counter-reset: step; display: grid; gap: 0; }
.step {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: clamp(18px, 3vw, 40px);
  padding: clamp(26px, 3.4vw, 40px) 0;
  border-top: 1px solid var(--line);
  align-items: start;
}
.step:last-child { border-bottom: 1px solid var(--line); }
.step-n {
  counter-increment: step;
  font-family: var(--mono);
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .1em;
  color: var(--teal);
  padding-top: 4px;
}
.step-n::before { content: "0" counter(step); }
.step-body .d4 { margin-bottom: 10px; }
.step-body p { color: var(--muted); max-width: 62ch; }

/* --------------------------------------------------------------------------
   18. Gallery page
   -------------------------------------------------------------------------- */
.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: clamp(28px, 3.5vw, 44px);
}
.filter {
  padding: 10px 20px;
  border: 1px solid var(--line);
  border-radius: 100px;
  background: #fff;
  font-family: var(--mono);
  font-size: .7rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .3s ease, color .3s ease, border-color .3s ease, transform .35s var(--ease);
}
.filter:hover { transform: translateY(-2px); border-color: var(--ink); }
.filter.is-active { background: var(--ink); border-color: var(--ink); color: #fff; }

.masonry {
  columns: 3;
  column-gap: clamp(14px, 1.6vw, 20px);
}
.shot {
  position: relative;
  break-inside: avoid;
  margin-bottom: clamp(14px, 1.6vw, 20px);
  border-radius: var(--r-lg);
  overflow: hidden;
  cursor: zoom-in;
  background: var(--mist);
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  transition: opacity .4s ease, transform .4s var(--ease);
}
.shot img { width: 100%; transition: transform .8s var(--ease), filter .5s ease; }
.shot::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8,12,36,.55), transparent 52%);
  opacity: 0;
  transition: opacity .45s ease;
}
.shot:hover img { transform: scale(1.05); }
.shot:hover::after { opacity: 1; }
.shot.is-hidden { display: none; }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: grid;
  place-items: center;
  background: rgba(6, 9, 28, .96);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  visibility: hidden;
  transition: opacity .4s ease, visibility .4s;
}
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox img {
  max-width: min(92vw, 1300px);
  max-height: 84vh;
  border-radius: var(--r);
  transform: scale(.96);
  transition: transform .5s var(--ease);
  object-fit: contain;
}
.lightbox.is-open img { transform: scale(1); }
.lb-btn {
  position: absolute;
  width: 52px; height: 52px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,.1);
  border: 1px solid var(--line-inv);
  border-radius: 100px;
  color: #fff;
  cursor: pointer;
  transition: background .3s ease, transform .35s var(--ease);
}
.lb-btn:hover { background: var(--signal); border-color: var(--signal); transform: scale(1.06); }
.lb-btn svg { width: 18px; height: 18px; }
.lb-close { top: 24px; right: 24px; }
.lb-prev  { left: clamp(12px, 3vw, 40px); }
.lb-next  { right: clamp(12px, 3vw, 40px); }
.lb-count {
  position: absolute;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--mono);
  font-size: .74rem;
  letter-spacing: .14em;
  color: rgba(255,255,255,.6);
}

/* --------------------------------------------------------------------------
   19. Contact page
   -------------------------------------------------------------------------- */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr .82fr;
  gap: clamp(34px, 5vw, 72px);
  align-items: start;
}

/* Honeypot — present for bots, invisible and unreachable for people.
   Parked off-canvas to the left so it can never widen the document. */
.hp {
  position: absolute;
  left: -9999px;
  top: 0;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}
.hp input { width: 1px; height: 1px; padding: 0; border: 0; }

.form-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: clamp(28px, 3.4vw, 44px);
  box-shadow: var(--shadow);
}
.field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 28px;
}
.f { display: flex; flex-direction: column; gap: 8px; }
.f.is-full { grid-column: 1 / -1; }
.f label {
  font-family: var(--mono);
  font-size: .67rem;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--muted);
}
.f input, .f textarea, .f select {
  padding: 14px 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r);
  font-size: .97rem;
  color: var(--ink);
  transition: border-color .3s ease, box-shadow .3s ease;
  width: 100%;
}
.f input:hover, .f textarea:hover, .f select:hover { border-color: var(--muted-lt); }
.f textarea { resize: vertical; min-height: 140px; }
.f input:focus, .f textarea:focus, .f select:focus {
  outline: none;
  background: #fff;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(42,92,170,.15);
}
.f input::placeholder, .f textarea::placeholder { color: var(--muted-lt); }
.form-card .btn { margin-top: 24px; }

.info-stack { display: grid; gap: 16px; }
.info-card {
  display: flex;
  gap: 18px;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  transition: transform .45s var(--ease), box-shadow .45s var(--ease), border-color .35s ease;
}
.info-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: transparent; }
.info-ico {
  flex: none;
  width: 44px; height: 44px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(26,95,208,.09);
  color: var(--teal);
}
.info-ico svg { width: 19px; height: 19px; }
.info-card h4 {
  font-family: var(--mono);
  font-size: .67rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}
.info-card p, .info-card a { font-size: .97rem; line-height: 1.55; display: block; }
.info-card a:hover { color: var(--teal); }

.map-frame {
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  line-height: 0;
  box-shadow: var(--shadow);
}
.map-frame iframe { width: 100%; height: clamp(300px, 42vw, 460px); border: 0; filter: grayscale(.35); }

/* Social embeds — fixed 300x350, laid out side by side and centred */
.embeds {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(18px, 2.4vw, 30px);
}
.embed-card {
  /* sized to its contents so the iframe is exactly 300px, not 300 minus border */
  width: max-content;
  max-width: 100%;
  border: 1px solid var(--line-inv);
  border-radius: var(--r-lg);
  overflow: hidden;
  background: rgba(255,255,255,.04);
}
.embed-card iframe {
  width: 300px;
  max-width: 100%;
  height: 350px;
  border: 0;
  display: block;
}

@media (max-width: 620px) {
  .embeds { justify-content: center; }
}

/* --------------------------------------------------------------------------
   20. Back to top
   -------------------------------------------------------------------------- */
.to-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 180;
  width: 48px; height: 48px;
  display: grid;
  place-items: center;
  background: var(--ink);
  color: #fff;
  border: 0;
  border-radius: 100px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px);
  transition: opacity .4s ease, transform .45s var(--ease), visibility .4s, background .3s ease;
  box-shadow: var(--shadow-lg);
}
.to-top.is-visible { opacity: 1; visibility: visible; transform: none; }
.to-top:hover { background: var(--signal); }
.to-top svg { width: 17px; height: 17px; }

/* Scroll progress hairline */
.progress {
  position: fixed;
  inset: 0 0 auto 0;
  height: 2px;
  z-index: 300;
  background: var(--signal);
  transform: scaleX(0);
  transform-origin: left;
}

/* --------------------------------------------------------------------------
   21. Scroll reveal
   -------------------------------------------------------------------------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
  transition-delay: var(--d, 0ms);
  will-change: opacity, transform;
}
[data-reveal="left"]  { transform: translateX(-34px); }
[data-reveal="right"] { transform: translateX(34px); }
[data-reveal="scale"] { transform: scale(.95); }

/* On narrow screens these elements are full width, so a sideways offset
   would stick out past the viewport and raise a scrollbar until it reveals.
   Move them vertically instead. */
@media (max-width: 940px) {
  [data-reveal="left"],
  [data-reveal="right"] { transform: translateY(26px); }
}

/* Wipe reveal.
   The clip goes on the *contents*, never the observed element itself —
   an element clipped to zero area reports intersectionRatio 0 and would
   never trigger its own reveal. */
[data-reveal="clip"] { transform: none; }
[data-reveal="clip"] > img,
[data-reveal="clip"]::after {
  clip-path: inset(0 0 100% 0);
  transition: clip-path 1.1s var(--ease);
}
[data-reveal="clip"].is-in > img,
[data-reveal="clip"].is-in::after { clip-path: inset(0 0 0 0); }

[data-reveal].is-in {
  opacity: 1;
  transform: none;
  will-change: auto;
}

/* --------------------------------------------------------------------------
   22. Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 1080px) {
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer-grid > :last-child { grid-column: 1 / -1; }
  .team-grid   { grid-template-columns: repeat(3, 1fr); }
  .clients-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 940px) {
  body { font-size: 16.5px; }

  .nav-toggle { display: block; }
  .nav {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(88vw, 380px);
    margin: 0;
    padding: 108px 30px 40px;
    background: #fff;
    border-left: 1px solid var(--line);
    transform: translateX(100%);
    transition: transform .5s var(--ease);
    overflow-y: auto;
  }
  .nav.is-open { transform: none; }
  .nav-list { flex-direction: column; align-items: stretch; gap: 0; }
  .nav-link {
    padding: 17px 0;
    font-size: 1.12rem;
    border-bottom: 1px solid var(--line);
    border-radius: 0;
  }
  .nav-link::after { left: 0; right: auto; width: 30px; bottom: 8px; }
  .nav-cta { margin: 26px 0 0; justify-content: center; }
  .nav-scrim {
    position: fixed;
    inset: 0;
    background: rgba(10,28,63,.42);
    backdrop-filter: blur(3px);
    opacity: 0;
    visibility: hidden;
    transition: opacity .4s ease, visibility .4s;
    z-index: 190;
  }
  .nav-scrim.is-open { opacity: 1; visibility: visible; }

  .split, .split-40, .split-60, .leader, .cta-inner, .contact-layout {
    grid-template-columns: 1fr;
  }
  .split-rev .split-media { order: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > :last-child { grid-column: 1 / -1; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .masonry { columns: 2; }
  .statband .wrap { grid-template-columns: repeat(2, 1fr); }
  .stat { border-left: 1px solid var(--line-inv); padding-left: clamp(18px, 4vw, 30px); }
  .stat:nth-child(odd) { border-left: 0; padding-left: 0; }
  .stat:nth-child(n+3) { border-top: 1px solid var(--line-inv); }
  .field-note { text-align: left; }
  .leader-photo img { aspect-ratio: 4 / 3; object-position: center 15%; }
  .framed::before { inset: 18px -18px -18px 18px; }
}

@media (max-width: 620px) {
  :root { --gut: 20px; }
  .grid-3, .grid-2, .duo, .field-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .clients-grid { grid-template-columns: repeat(2, 1fr); }
  .masonry { columns: 1; }
  .duo img:nth-child(2) { margin-top: 0; }
  .hero-scroll { display: none; }
  .hero-copy { max-width: none; }
  .subscribe { flex-direction: column; border-radius: var(--r-lg); padding: 10px; }
  .subscribe .btn { justify-content: center; }
  .step { grid-template-columns: 1fr; gap: 8px; }
  .field-shot { width: 220px; }
  .footer-grid { grid-template-columns: 1fr; }
  .lb-prev, .lb-next { bottom: 24px; top: auto; }
  .lb-prev { left: calc(50% - 66px); }
  .lb-next { right: calc(50% - 66px); }
  .lb-count { bottom: 92px; }
}

/* --------------------------------------------------------------------------
   23. Motion preferences
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  [data-reveal] { opacity: 1; transform: none; clip-path: none; }
  .hero-copy > * { opacity: 1; transform: none; }
  .field-row { animation: none; flex-wrap: wrap; width: auto; justify-content: center; }
  .field-track::before, .field-track::after { display: none; }
  .hero-media { inset: 0; transform: none !important; }
}

/* --------------------------------------------------------------------------
   24. Print
   -------------------------------------------------------------------------- */
@media print {
  .site-header, .to-top, .progress, .field, .nav-scrim { display: none !important; }
  body { color: #000; background: #fff; }
  [data-reveal] { opacity: 1; transform: none; }
}

/* ==========================================================================
   25. HOMEPAGE — header, hero, bands
   Blue and white. Elegance comes from the type, the hairlines and the
   rhythm between bands, not from unusual structure.
   ========================================================================== */

/* --------------------------------------------------------------------------
   Hero — full bleed, carousel behind
   -------------------------------------------------------------------------- */
.hero-f {
  position: relative;
  min-height: min(94svh, 920px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--ink);
  isolation: isolate;
  padding-top: clamp(130px, 17vh, 180px);
  padding-bottom: clamp(64px, 8vh, 96px);
}

.hero-slides { position: absolute; inset: 0; z-index: 0; }
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.5s ease;
}
.hero-slide.is-on { opacity: 1; }
.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 32%;
  transform: scale(1.06);
  transition: transform 9s linear;
}
.hero-slide.is-on img { transform: scale(1); }

/* Navy wash keeps the mixed photography reading as one blue set */
.hero-f::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to top, rgba(10,28,63,.94) 0%, rgba(10,28,63,.62) 44%, rgba(10,28,63,.40) 100%),
    linear-gradient(105deg, rgba(10,28,63,.80) 0%, rgba(10,28,63,.30) 58%, transparent 100%);
}
.hero-f::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(42,92,170,.18);
  mix-blend-mode: multiply;
  pointer-events: none;
}

.hero-f-inner { position: relative; z-index: 2; width: 100%; }
.hero-f-copy { max-width: 32rem; }
.hero-f-copy > * { opacity: 0; animation: hero-in .95s var(--ease) forwards; }
.hero-f-copy > :nth-child(1) { animation-delay: .12s; }
.hero-f-copy > :nth-child(2) { animation-delay: .26s; }
.hero-f-copy > :nth-child(3) { animation-delay: .40s; }
.hero-f-copy > :nth-child(4) { animation-delay: .54s; }

.hero-f .eyebrow { color: var(--blue-lt); }
.hero-f .d1 { margin-top: 20px; color: #fff; }
.hero-f .d1 em { color: #fff; font-style: italic; }
.hero-f-sub {
  max-width: 40ch;
  margin-top: 20px;
  font-size: 1.02rem;
  line-height: 1.66;
  color: rgba(255,255,255,.78);
}
.hero-f .btn-row { margin-top: 32px; }
.hero-f .btn { --btn-bg: #fff; --btn-fg: var(--ink); --btn-bd: #fff; }
.hero-f .btn:hover { box-shadow: 0 12px 30px rgba(0,0,0,.32); }
.hero-f .btn-ghost-inv { --btn-bg: transparent; --btn-fg: #fff; --btn-bd: rgba(255,255,255,.42); }

/* Carousel controls, aligned to the copy */
.hero-f-controls {
  position: absolute;
  z-index: 3;
  left: var(--gut);
  right: var(--gut);
  bottom: clamp(26px, 3.4vh, 38px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  max-width: var(--maxw);
  margin-inline: auto;
}
.hero-dots { display: flex; gap: 8px; }
.hero-dot {
  width: 34px; height: 2px;
  padding: 0; border: 0;
  background: rgba(255,255,255,.32);
  cursor: pointer;
  overflow: hidden;
  transition: background .3s ease;
}
.hero-dot::after {
  content: "";
  display: block;
  height: 100%;
  background: #fff;
  transform: scaleX(0);
  transform-origin: left;
}
.hero-dot:hover { background: rgba(255,255,255,.55); }
.hero-dot.is-on::after { animation: dot-fill 6.5s linear forwards; }
@keyframes dot-fill { to { transform: scaleX(1); } }

.hero-caption {
  font-size: .7rem;
  letter-spacing: .04em;
  color: rgba(255,255,255,.6);
  text-align: right;
  transition: opacity .4s ease;
}
.hero-caption.is-swapping { opacity: 0; }

/* --------------------------------------------------------------------------
   Marquee band
   -------------------------------------------------------------------------- */
.ticker {
  background: var(--bone);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  padding-block: 17px;
}
.ticker-row { display: flex; width: max-content; animation: marquee 58s linear infinite; }
.ticker:hover .ticker-row { animation-play-state: paused; }
.ticker-item {
  display: flex;
  align-items: center;
  gap: 34px;
  padding-right: 34px;
  font-size: .67rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
}
.ticker-item::after {
  content: "";
  width: 3px; height: 3px;
  background: var(--blue);
  border-radius: 50%;
  flex: none;
}

/* --------------------------------------------------------------------------
   Figures band
   -------------------------------------------------------------------------- */
.figures { background: #fff; }
.figures .wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--line);
}
.figure {
  padding: clamp(36px, 4.6vw, 64px) clamp(14px, 2vw, 28px) clamp(36px, 4.6vw, 64px) clamp(20px, 2.4vw, 34px);
  border-left: 1px solid var(--line);
}
.figure:first-child { border-left: 0; padding-left: 0; }
.figure-n {
  display: flex;
  align-items: baseline;
  font-family: var(--display);
  font-weight: 700;
  font-stretch: 116%;
  font-variation-settings: "wdth" 116;
  font-size: clamp(1.85rem, 2.8vw, 2.5rem);
  line-height: 1;
  letter-spacing: -.032em;
  color: var(--ink);
}
.figure-n .suffix { color: var(--blue); }
.figure-l {
  margin-top: 13px;
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .19em;
  text-transform: uppercase;
  color: var(--muted-lt);
  line-height: 1.7;
}

/* --------------------------------------------------------------------------
   Practice band — editorial rows, three columns wide
   -------------------------------------------------------------------------- */
.practice { border-top: 1px solid var(--line); }
.practice-row {
  position: relative;
  display: grid;
  grid-template-columns: 5.5rem 1fr 1.2fr;
  gap: clamp(18px, 3vw, 52px);
  align-items: start;
  padding-block: clamp(28px, 3.4vw, 44px);
  border-bottom: 1px solid var(--line);
}
.practice-row::before {
  content: "";
  position: absolute;
  left: 0; bottom: -1px;
  height: 1px; width: 100%;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .7s var(--ease);
}
.practice-row:hover::before { transform: scaleX(1); }
.practice-n {
  font-family: var(--body);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .18em;
  line-height: 1;
  color: var(--blue);
  padding-top: 9px;
}
.practice-t {
  font-family: var(--display);
  font-weight: 700;
  font-stretch: 110%;
  font-variation-settings: "wdth" 110;
  font-size: clamp(1.1rem, 1.45vw, 1.32rem);
  line-height: 1.24;
  letter-spacing: -.016em;
  color: var(--ink);
  max-width: 16ch;
}
.practice-d {
  color: var(--muted);
  font-size: .96rem;
  line-height: 1.74;
  max-width: 52ch;
}

/* --------------------------------------------------------------------------
   Who we are — heading left, image and copy in an asymmetric pair,
   facts as a hairline list under the copy.
   -------------------------------------------------------------------------- */
.creed { background: var(--bone); }

/* One full-width row. The heading is allowed to run the width of the
   container rather than being boxed into a column. */
.creed-head {
  padding-bottom: clamp(22px, 2.6vw, 30px);
  border-bottom: 1px solid var(--line);
}
.creed-head .d2 {
  margin-top: 16px;
  max-width: 30ch;
  font-size: clamp(1.7rem, 3.1vw, 2.65rem);
}

/* Lead paragraph — opens the copy column, sized above the body text */
.creed-lead {
  font-size: clamp(1.06rem, 1.35vw, 1.2rem);
  line-height: 1.62;
  color: var(--ink);
  margin-bottom: 1.15em;
}

.creed-grid {
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: clamp(30px, 5vw, 72px);
  align-items: start;
  margin-top: clamp(32px, 4vw, 52px);
}

.creed-media { position: relative; }
.creed-media img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 26%;
  border-radius: var(--r-lg);
}
.creed-media::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 22px -22px -22px 22px;
  border: 1px solid var(--blue);
  border-radius: var(--r-lg);
  transition: inset .8s var(--ease);
}
.creed-media:hover::before { inset: 14px -14px -14px 14px; }

.creed-copy p { color: var(--muted); line-height: 1.8; }
.creed-copy p + p { margin-top: 1.1em; }

.creed-facts { margin-top: clamp(28px, 3.2vw, 40px); }
.creed-facts > div {
  display: grid;
  grid-template-columns: 7.5rem 1fr;
  gap: 20px;
  align-items: baseline;
  padding-block: 16px;
  border-top: 1px solid var(--line);
}
.creed-facts > div:last-child { border-bottom: 1px solid var(--line); }
.creed-facts dt {
  font-size: .64rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--blue);
}
.creed-facts dd { margin: 0; font-size: .95rem; line-height: 1.6; color: var(--ink); }

/* --------------------------------------------------------------------------
   Client band — a continuous sliding roll of logos in their own colours.
   Light background so no knockout filter is needed and every brand keeps
   its palette exactly as supplied.
   -------------------------------------------------------------------------- */
.clients-band {
  background: #fff;
  border-block: 1px solid var(--line);
  padding-block: clamp(46px, 6vw, 78px);
}
.clients-band .section-head {
  text-align: center;
  max-width: none;
  margin-bottom: clamp(30px, 3.6vw, 46px);
}
.clients-band .eyebrow { color: var(--blue); justify-content: center; }
.clients-band .d3 { color: var(--ink); }

/* The track fades out at both edges so logos enter and leave softly */
.logo-track {
  position: relative;
  overflow: hidden;
}
.logo-track::before,
.logo-track::after {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  width: clamp(40px, 8vw, 130px);
  z-index: 2;
  pointer-events: none;
}
.logo-track::before { left: 0;  background: linear-gradient(to right, #fff, rgba(255,255,255,0)); }
.logo-track::after  { right: 0; background: linear-gradient(to left,  #fff, rgba(255,255,255,0)); }

.logo-row {
  display: flex;
  align-items: center;
  width: max-content;
  animation: marquee 46s linear infinite;
}
.logo-track:hover .logo-row { animation-play-state: paused; }

.logo-cell {
  flex: none;
  display: grid;
  place-items: center;
  width: clamp(150px, 17vw, 220px);
  padding-inline: clamp(14px, 1.8vw, 26px);
}
.logo-cell img {
  width: 100%;
  max-height: 58px;
  height: auto;
  object-fit: contain;
  /* Logos keep their own colours — no filter. */
  transition: transform .45s var(--ease);
}
.logo-cell:hover img { transform: scale(1.07); }

@media (max-width: 620px) {
  .logo-cell { width: 140px; }
  .logo-cell img { max-height: 46px; }
}

@media (prefers-reduced-motion: reduce) {
  .logo-row {
    animation: none;
    flex-wrap: wrap;
    width: auto;
    justify-content: center;
    row-gap: 18px;
  }
  .logo-track::before, .logo-track::after { display: none; }
}

/* --------------------------------------------------------------------------
   Offer band
   -------------------------------------------------------------------------- */
.offer-grid {
  display: grid;
  grid-template-columns: 1.04fr .96fr;
  gap: clamp(30px, 5vw, 76px);
  align-items: center;
}
.offer-media { position: relative; }
.offer-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--r-lg);
}
.offer-media figcaption {
  position: absolute;
  right: -14px;
  bottom: -18px;
  background: var(--ink);
  color: #fff;
  padding: 18px 24px;
  border-radius: var(--r);
  max-width: 15rem;
}
.offer-media figcaption b {
  display: block;
  font-family: var(--display);
  font-weight: 700;
  font-stretch: 116%;
  font-variation-settings: "wdth" 116;
  font-size: 1.35rem;
  line-height: 1;
  letter-spacing: -.02em;
}
.offer-media figcaption span {
  display: block;
  margin-top: 7px;
  font-size: .62rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255,255,255,.62);
}

/* --------------------------------------------------------------------------
   Closing band
   -------------------------------------------------------------------------- */
.close-band { background: var(--ink); color: #fff; text-align: center; }
.close-band .eyebrow { color: var(--blue-lt); justify-content: center; }
.close-band .d2 { color: #fff; margin-top: 20px; max-width: 20ch; margin-inline: auto; }
.close-band p { margin: 18px auto 0; max-width: 50ch; color: rgba(255,255,255,.74); }
.close-band .btn-row { justify-content: center; margin-top: 32px; }
.close-band .btn { --btn-bg: #fff; --btn-fg: var(--ink); --btn-bd: #fff; }
.close-band .btn:hover { box-shadow: 0 12px 30px rgba(0,0,0,.3); }

.close-sub {
  margin-top: clamp(32px, 3.8vw, 46px);
  padding-top: clamp(24px, 2.8vw, 32px);
  border-top: 1px solid var(--line-inv);
  max-width: 500px;
  margin-inline: auto;
}
.close-sub .subscribe {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.24);
  border-radius: 2px;
}
.close-sub .form-note { text-align: center; }

/* --------------------------------------------------------------------------
   Bands — responsive
   -------------------------------------------------------------------------- */
@media (max-width: 1080px) {
  .roll { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 940px) {
  .hero-f { min-height: 0; padding-top: clamp(112px, 15vh, 150px); }
  .hero-f-copy { max-width: none; }
  .hero-caption { display: none; }
  .figures .wrap { grid-template-columns: repeat(2, 1fr); }
  .figure { border-left: 1px solid var(--line); padding-left: clamp(18px, 4vw, 28px); }
  .figure:nth-child(odd) { border-left: 0; padding-left: 0; }
  .figure:nth-child(n+3) { border-top: 1px solid var(--line); }
  .practice-row { grid-template-columns: 3.4rem 1fr; gap: 12px 22px; }
  .practice-d { grid-column: 2; max-width: none; }
  .creed-head .d2 { max-width: none; }
  .creed-grid { grid-template-columns: 1fr; gap: clamp(28px, 5vw, 44px); }
  .creed-media::before { inset: 14px -14px -14px 14px; }
  .offer-grid { grid-template-columns: 1fr; }
  .offer-media figcaption { right: 12px; }
  .roll { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 620px) {
  .roll { grid-template-columns: repeat(2, 1fr); }
  .practice-row { grid-template-columns: 1fr; gap: 8px; }
  .practice-d { grid-column: 1; }
  .practice-t { max-width: none; }
  .creed-facts > div { grid-template-columns: 1fr; gap: 6px; }
  .offer-media figcaption { right: 0; bottom: -14px; padding: 14px 18px; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-f-copy > * { opacity: 1; }
  .hero-slide img { transform: none; }
  .hero-dot.is-on::after { animation: none; transform: scaleX(1); }
  .ticker-row { animation: none; }
}

/* ==========================================================================
   26. Gallery additions — counts on filters, video tiles
   ========================================================================== */
.filter span {
  margin-left: 7px;
  opacity: .5;
  font-variant-numeric: tabular-nums;
}
.filter.is-active span { opacity: .7; }

/* Video tile */
.shot.is-video video {
  width: 100%;
  display: block;
  background: var(--ink);
  transition: transform .8s var(--ease);
}
.shot.is-video:hover video { transform: scale(1.05); }
.shot-play {
  position: absolute;
  z-index: 2;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: 58px; height: 58px;
  display: grid;
  place-items: center;
  border-radius: 100px;
  background: rgba(255,255,255,.94);
  color: var(--ink);
  box-shadow: var(--shadow);
  transition: transform .45s var(--ease), background .3s ease;
  pointer-events: none;
}
.shot-play svg { width: 22px; height: 22px; margin-left: 3px; }
.shot.is-video:hover .shot-play { transform: translate(-50%, -50%) scale(1.1); background: #fff; }

/* Lightbox video */
.lightbox .lb-video {
  max-width: min(92vw, 1300px);
  max-height: 84vh;
  border-radius: var(--r);
  background: #000;
  transform: scale(.96);
  transition: transform .5s var(--ease);
}
.lightbox.is-open .lb-video { transform: scale(1); }
.lightbox [hidden] { display: none !important; }

/* ============================================================
   SLIDESHOW
   ============================================================ */
.slideshow {
  position: relative;
  margin-top: 42px;
}

.slideshow-viewport {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  background: #0d0d10;
  box-shadow: 0 26px 60px rgba(12, 12, 18, 0.16);
  touch-action: pan-y;
}

.slideshow-track {
  display: flex;
  margin: 0;
  padding: 0;
  list-style: none;
  transition: transform 0.75s cubic-bezier(0.22, 0.61, 0.36, 1);
  will-change: transform;
}

.slideshow-track > .slide {
  flex: 0 0 100%;
  min-width: 100%;
  position: relative;
}

.slideshow-track img {
  display: block;
  width: 100%;
  height: clamp(280px, 52vw, 620px);
  object-fit: cover;
  user-select: none;
  -webkit-user-drag: none;
}

/* soft vignette so the arrows stay readable on light photos */
.slideshow-viewport::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    rgba(10, 10, 14, 0.28) 0%,
    rgba(10, 10, 14, 0) 22%,
    rgba(10, 10, 14, 0) 78%,
    rgba(10, 10, 14, 0.28) 100%
  );
}

/* --- arrows --- */
.ss-btn {
  position: absolute;
  top: 50%;
  z-index: 3;
  transform: translateY(-50%);
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: #111;
  cursor: pointer;
  backdrop-filter: blur(6px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.24);
  transition: transform 0.28s ease, background 0.28s ease, opacity 0.28s ease;
}
.ss-btn:hover {
  background: #fff;
  transform: translateY(-50%) scale(1.07);
}
.ss-btn:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 3px;
}
.ss-btn svg {
  width: 22px;
  height: 22px;
}
.ss-prev { left: 18px; }
.ss-next { right: 18px; }

/* --- dots + counter --- */
.ss-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  margin-top: 22px;
}

.ss-dots {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.ss-dot {
  display: block;
  width: 30px;
  height: 4px;
  padding: 0;
  border: 0;
  border-radius: 99px;
  background: rgba(17, 17, 20, 0.18);
  cursor: pointer;
  transition: width 0.35s ease, background 0.35s ease;
}
.ss-dot:hover { background: rgba(17, 17, 20, 0.38); }
.ss-dot[aria-selected="true"] {
  width: 54px;
  background: #111114;
}
.ss-dot:focus-visible {
  outline: 2px solid #111114;
  outline-offset: 4px;
}

.ss-count {
  margin: 0;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.55;
}

/* dark sections */
.section-dark .ss-dot { background: rgba(255, 255, 255, 0.24); }
.section-dark .ss-dot[aria-selected="true"] { background: #fff; }
.section-dark .ss-count { color: #fff; }

@media (max-width: 720px) {
  .ss-btn { width: 44px; height: 44px; }
  .ss-prev { left: 10px; }
  .ss-next { right: 10px; }
  .ss-controls { gap: 14px; }
  .ss-dot { width: 22px; }
  .ss-dot[aria-selected="true"] { width: 40px; }
}

@media (prefers-reduced-motion: reduce) {
  .slideshow-track { transition: none; }
  .ss-btn { transition: none; }
}

