/* ==========================================================================
   DG Pacifica — site stylesheet (shared across all pages)
   1. Tokens
   2. Reset & base
   3. Layout primitives (container, section, grid)
   4. Typography helpers (eyebrow, display, lede, rule)
   5. Buttons & links
   6. Header / navigation
   7. Hero (home + inner-page variant)
   8. Sector strip
   9. Portfolio band + metric + platform cards
   10. Philosophy / feature list
   11. Partner + CTA blocks
   12. Footer
   13. Utilities
   14. Inline arrow links
   15. Bleed bands (content + edge image)
   16. Market columns (flag + claims)
   17. Leadership / person cards
   18. Journey timeline
   19. Panel bands (dark copy + light edge panel)
   20. Feature-row modifiers (flat, 5-up)
   21. Sector tiles (image + badge + caption)
   22. Checklists
   23. Split bands (wide content + hairline aside)
   24. Process track (numbered steps + connectors)
   25. Anchor bars (statement + action)
   26. Filter bar (platform tabs + view switch)
   27. Platform cards (portfolio grid + list view)
   28. Glance band (lead column + ringed metrics)
   29. Partner band (outline partner card on dark)
   30. Insights hero (eyebrow → rule → headline → lede)
   31. Featured insight row (wide article card + subscribe panel)
   32. Chip filter bar (chips + sort control)
   33. Insight cards (five-up index grid)
   34. Statement band (bordered closing band on light)
   35. Contact hero (tall split hero + enquiry cards)
   36. Message panel (labelled form card: field grid, textarea, checkbox)
   37. Offices band (map badges + appointment note)
   38. Access card (dark invitation card on a light ground)
   ========================================================================== */

/* 1. Tokens ------------------------------------------------------------- */
:root {
  /* Brand palette — the only colours used site-wide */
  --pacific: #062A38;      /* primary Pacific green-blue */
  --deep: #041D28;         /* deep background / footer */
  --bronze: #B8885A;       /* bronze highlight / CTA */
  --ivory: #F5F1E9;        /* warm ivory surface */
  --sand: #D2C5AE;         /* muted sand / secondary */

  /* Derived tints (same hues, varied alpha — no new colours) */
  --ink: var(--pacific);
  --ink-soft: #062A38;
  --ink-faint: rgba(6, 42, 56, 0.5);
  --on-dark: #F5F1E9;
  --on-dark-soft: rgba(245, 241, 233, 0.78);
  --line-dark: rgba(210, 197, 174, 0.22);
  --line-dark-strong: rgba(210, 197, 174, 0.4);
  --line-light: rgba(6, 42, 56, 0.14);
  --line-bronze: rgba(184, 136, 90, 0.55);
  --surface-dark-lift: rgba(245, 241, 233, 0.045);

  /* Type */
  --font-display: "EB Garamond", "Iowan Old Style", Georgia, serif;
  --font-ui: "Jost", "Helvetica Neue", Helvetica, sans-serif;
  --tracking-caps: 0.16em;

  /* Space scale */
  --s-1: 4px;
  --s-2: 8px;
  --s-3: 12px;
  --s-4: 16px;
  --s-5: 24px;
  --s-6: 32px;
  --s-7: 44px;
  --s-8: 64px;
  --s-9: 88px;
  --s-10: 120px;

  --container: 1720px;
  --gutter: clamp(20px, 4.3vw, 80px);
  /* content band edges — every full-bleed split is measured from these, so
     ratios hold past 1720px instead of drifting with the viewport */
  --band-left: max(var(--gutter), calc((100vw - var(--container)) / 2));
  --band-w: min(var(--container), calc(100vw - var(--gutter) * 2));
  --radius: 2px;        /* buttons, small tiles */
  --radius-card: 4px;   /* cards, panels */
  --header-h: 112px;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

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

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

body {
  margin: 0;
  background: var(--pacific);
  color: var(--on-dark);
  font-family: var(--font-display);
  font-size: clamp(16px, 0.55vw + 14px, 18px);
  line-height: 1.6;
  text-wrap: pretty;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, p, figure, blockquote, ul, ol { margin: 0; }
ul, ol { padding: 0; list-style: none; }
img, svg, picture, video { display: block; max-width: 100%; }
img { height: auto; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
a { color: var(--bronze); text-decoration: none; transition: color 0.2s var(--ease); }
a:hover { color: var(--sand); }
:focus-visible { outline: 2px solid var(--bronze); outline-offset: 3px; }

.skip-link {
  position: absolute; left: var(--s-4); top: -60px; z-index: 200;
  padding: 10px 16px; background: var(--bronze); color: var(--deep);
  font-family: var(--font-ui); font-size: 13px; letter-spacing: var(--tracking-caps);
  text-transform: uppercase; transition: top 0.2s var(--ease);
}
.skip-link:focus { top: var(--s-4); color: var(--deep); }

.sprite { position: absolute; width: 0; height: 0; overflow: hidden; }

/* 3. Layout primitives -------------------------------------------------- */
.container {
  width: 100%;
  max-width: calc(var(--container) + var(--gutter) * 2);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section { padding-block: clamp(56px, 8vw, var(--s-10)); }
.section--tight { padding-block: clamp(40px, 5vw, var(--s-8)); }
.section--flush { padding-block: clamp(18px, 1.5vw, 30px); }   /* card rows supply their own padding */
.section--pacific { background: var(--pacific); color: var(--on-dark); }
.section--deep { background: var(--deep); color: var(--on-dark); }
.section--ivory { background: var(--ivory); color: var(--ink); }
.section--sand { background: var(--sand); color: var(--ink); }

.section--ivory a, .section--sand a { color: var(--pacific); }
.section--ivory a:hover, .section--sand a:hover { color: var(--pacific); }

/* 4. Typography helpers ------------------------------------------------- */
.eyebrow {
  font-family: var(--font-ui);
  font-size: clamp(10.5px, 0.35vw + 9px, 12.5px);
  font-weight: 500;
  letter-spacing: var(--tracking-caps);
  text-transform: uppercase;
  color: var(--bronze);
}

.display {
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: -0.015em;
  font-size: clamp(38px, 6.2vw, 82px);
}
.display--sm { font-size: clamp(30px, 4vw, 52px); line-height: 1.1; }

.h-sub {
  font-family: var(--font-ui);
  font-size: clamp(12px, 0.5vw + 10px, 15px);
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sand);
}

.lede { font-size: clamp(17px, 0.7vw + 15px, 22px); line-height: 1.55; }
.body-soft { color: var(--on-dark-soft); }
.section--ivory .body-soft, .section--sand .body-soft { color: var(--ink-soft); }
.note { font-size: 0.9rem; font-style: italic; color: var(--on-dark-soft); }

.rule {
  width: 64px; height: 2px; border: 0; margin: 0;
  background: var(--bronze);
}

/* 5. Buttons ------------------------------------------------------------ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 13px 26px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-family: var(--font-ui);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: var(--tracking-caps);
  text-transform: uppercase;
  transition: background-color 0.22s var(--ease), color 0.22s var(--ease),
              border-color 0.22s var(--ease), transform 0.22s var(--ease);
}
.btn:hover { transform: translateY(-1px); }
.btn .icon { width: 15px; height: 15px; }

.btn--primary { background: var(--bronze); color: var(--deep); }
.btn--primary:hover { background: var(--sand); color: var(--deep); }

.btn--outline { border-color: var(--line-dark-strong); color: var(--sand); }
.btn--outline:hover { border-color: var(--bronze); color: var(--bronze); }

/* bronze hairline button — light grounds; label stays Pacific for contrast */
.btn--bronze-line { border-color: var(--line-bronze); color: var(--pacific); }
.btn--bronze-line .icon { color: var(--bronze); }
.btn--bronze-line:hover { background: var(--bronze); border-color: var(--bronze); color: var(--deep); }
.btn--bronze-line:hover .icon { color: var(--deep); }

.section--ivory .btn--outline, .section--sand .btn--outline {
  border-color: var(--line-light); color: var(--pacific);
}
.section--ivory .btn--outline:hover, .section--sand .btn--outline:hover {
  border-color: var(--bronze); color: var(--bronze);
}

.btn-row { display: flex; flex-wrap: wrap; gap: var(--s-4); }

.icon { width: 20px; height: 20px; flex: none; stroke: currentColor; fill: none;
        stroke-width: 1.4; stroke-linecap: round; stroke-linejoin: round; }
.icon--bronze { color: var(--bronze); }

/* 6. Header ------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--pacific);
  border-bottom: 1px solid var(--line-dark);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-5);
  min-height: 72px;
  padding-block: var(--s-3);
}

.brand {
  flex: none;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 7px;
  color: var(--on-dark);
}
.brand:hover { color: var(--on-dark); }
.brand__logo { height: clamp(42px, 5.4vw, 70px); width: auto; }
.brand__parent {
  display: none;
  font-family: var(--font-ui);
  font-size: 8.5px;
  letter-spacing: 0.19em;
  text-transform: uppercase;
  color: var(--on-dark-soft);
  padding-left: 2px;
}
.footer-logo { height: 48px; width: auto; margin-bottom: var(--s-1); }

.nav { display: none; }
.nav__list { display: flex; align-items: center; gap: clamp(20px, 2.4vw, 40px); }
.nav__link {
  position: relative;
  display: block;
  padding: 6px 0;
  white-space: nowrap;
  font-family: var(--font-ui);
  font-size: 12.5px;
  font-weight: 400;
  letter-spacing: var(--tracking-caps);
  text-transform: uppercase;
  color: var(--on-dark);
}
.nav__link::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: 0;
  height: 1px; background: var(--bronze);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.25s var(--ease);
}
.nav__link:hover, .nav__link[aria-current="page"] { color: var(--bronze); }
.nav__link:hover::after, .nav__link[aria-current="page"]::after { transform: scaleX(1); }

.header__actions { display: flex; align-items: center; gap: var(--s-3); flex: none; }
.header__actions .btn { display: none; }

.nav-toggle {
  display: inline-flex; align-items: center; justify-content: center;
  width: 46px; height: 46px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  color: var(--sand);
}
.nav-toggle .icon { width: 22px; height: 22px; }
.nav-toggle__close { display: none; }
body.nav-open .nav-toggle__open { display: none; }
body.nav-open .nav-toggle__close { display: block; }

/* mobile drawer */
.nav-drawer {
  position: fixed;
  inset: 0 0 0 auto;
  z-index: 99;
  width: min(340px, 86vw);
  padding: calc(var(--s-8) + 24px) var(--s-6) var(--s-6);
  background: var(--deep);
  border-left: 1px solid var(--line-dark);
  transform: translateX(102%);
  transition: transform 0.34s var(--ease);
  overflow-y: auto;
}
body.nav-open .nav-drawer { transform: translateX(0); }
.nav-drawer__list { display: grid; gap: 2px; }
.nav-drawer__link {
  display: block;
  padding: 14px 0;
  border-bottom: 1px solid var(--line-dark);
  font-family: var(--font-ui);
  font-size: 14px;
  letter-spacing: var(--tracking-caps);
  text-transform: uppercase;
  color: var(--on-dark);
}
.nav-drawer__link:hover, .nav-drawer__link[aria-current="page"] { color: var(--bronze); }
.nav-drawer .btn { margin-top: var(--s-6); width: 100%; justify-content: center; }
.nav-scrim {
  position: fixed; inset: 0; z-index: 98;
  background: rgba(4, 29, 40, 0.72);
  opacity: 0; visibility: hidden;
  transition: opacity 0.3s var(--ease), visibility 0.3s var(--ease);
}
body.nav-open .nav-scrim { opacity: 1; visibility: visible; }

/* 7. Hero — full-bleed coastline with brand-green blend ----------------- */
/* --hero-ratio = band height as a fraction of the content-band width. */
.hero { --hero-ratio: 0.232; position: relative; isolation: isolate; background: var(--pacific); overflow: hidden; }
.hero__bg {
  position: absolute; inset: 0; z-index: -2;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 70% 50%;
}
.hero__veil {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(to bottom, rgba(4, 29, 40, 0.86) 0%, rgba(6, 42, 56, 0.42) 40%, rgba(6, 42, 56, 0.92) 100%);
}

.hero__body {
  display: grid;
  align-content: center;
  min-height: clamp(420px, 74vw, 560px);
  padding: clamp(48px, 9vw, 88px) var(--gutter) clamp(44px, 7vw, 72px);
}
.hero__title { margin-bottom: var(--s-4); font-size: clamp(27px, 4.9vw, 72px); }
.hero__sub { margin-bottom: var(--s-5); color: var(--bronze); }
.hero__rule { margin-bottom: var(--s-5); }
.hero__line { margin-bottom: clamp(28px, 4vw, 44px); max-width: none; }

/* hero variant: photo held to the right band, copy on flat Pacific.
   --hero-split = where the photo starts, as a fraction of the content band. */
.hero--split { --hero-split: 0.404; }
.hero--split .hero__bg { object-position: 52% 44%; }
.hero--approach { --hero-split: 0.33; }
.hero--portfolio { --hero-split: 0.428; --hero-ratio: 0.218; }

/* 8. Sector strip ------------------------------------------------------- */
.sectors {
  display: grid;
  gap: var(--s-4);
  justify-items: start;
}
.sectors__item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-ui);
  font-size: clamp(12px, 0.4vw + 10.5px, 14px);
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--on-dark);
  line-height: 1;
}
.sectors__item .icon { width: 26px; height: 26px; stroke-width: 1.15; color: var(--bronze); }

@media (min-width: 620px) {
  .sectors { display: flex; flex-wrap: wrap; align-items: center; gap: var(--s-4) var(--s-6); }
  .sectors__item + .sectors__item { padding-left: var(--s-6); border-left: 1px solid var(--line-dark-strong); }
}

/* 9. Portfolio band ---------------------------------------------------- */
.section--hairline-top { border-top: 1px solid var(--line-dark); }
.section--portfolio, .section--philosophy { padding-block: clamp(34px, 4.4vw, 48px); }
.portfolio { display: grid; gap: clamp(32px, 4.5vw, 52px); }
.portfolio__lead { display: grid; gap: var(--s-5); }
.portfolio__statement { max-width: 32ch; font-size: clamp(20px, 1.45vw, 25px); line-height: 1.3; }

.metric { display: grid; gap: clamp(14px, 1.2vw, 20px); align-content: start; }
.metric__value {
  display: grid;
  justify-items: start;
  align-items: baseline;
  color: var(--bronze);
  font-size: clamp(48px, 4.1vw, 70px);
  line-height: 0.92;
  letter-spacing: -0.01em;
}
.metric__unit { font-size: 0.52em; letter-spacing: 0.01em; }
/* optional currency mark, stacked flush-left above the figure — never resizes it */
.metric__currency {
  margin-bottom: -0.3em;
  font-family: var(--font-ui);
  font-size: max(10.5px, 0.19em);
  font-weight: 500;
  letter-spacing: 0.18em;
  line-height: 1;
  text-transform: uppercase;
  color: inherit;
}
.metric__label {
  font-family: var(--font-ui);
  font-size: clamp(11px, 0.78vw, 13.5px);
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ivory);
  line-height: 1.75;
}
.metric .note { margin-top: clamp(6px, 0.6vw, 12px); }

/* platform cards (reusable across portfolio pages) */
.cards {
  display: grid;
  gap: clamp(14px, 1.1vw, 20px);
  grid-template-columns: 1fr;
  align-items: stretch;
}
.cards > li { display: flex; container-type: inline-size; }
.card {
  display: flex;
  flex-direction: column;
  width: 100%;
  background: var(--surface-dark-lift);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-card);
  overflow: hidden;
  transition: border-color 0.25s var(--ease), transform 0.25s var(--ease),
              background-color 0.25s var(--ease);
}
a.card { color: var(--on-dark); }
a.card:hover { color: var(--on-dark); border-color: var(--line-dark-strong); transform: translateY(-3px); }
.card__media {
  aspect-ratio: 16 / 9;
  background: var(--deep);
  overflow: hidden;
}
.card__media img { width: 100%; height: 100%; object-fit: cover; }
.card__body {
  display: flex;
  flex-direction: column;
  gap: clamp(10px, 0.9vw, 14px);
  flex: 1;
  padding: min(26px, 7.5cqi) clamp(15px, 8.2cqi, 30px) min(24px, 7cqi);
}
.card__title {
  font-family: var(--font-ui);
  font-size: clamp(11.5px, 5.9cqi, 17px);
  font-weight: 400;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  line-height: 1.4;
  color: var(--ivory);
}
.card__text { font-size: clamp(13.5px, 6.3cqi, 17.5px); line-height: 1.45; color: var(--on-dark-soft); }
.card__foot {
  display: flex; align-items: center; gap: 12px;
  margin-top: auto;
  padding-top: min(34px, 9cqi);
  font-family: var(--font-ui);
  font-size: clamp(10px, 4.5cqi, 12.5px);
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sand);
  line-height: 1;
}
.card__foot .icon { width: clamp(16px, 8cqi, 22px); height: clamp(16px, 8cqi, 22px); stroke-width: 1.3; color: var(--bronze); }

/* 10. Philosophy / feature list ---------------------------------------- */
.philosophy { display: grid; gap: clamp(32px, 4.5vw, 52px); align-items: start; }
.philosophy__lead { display: grid; gap: clamp(16px, 1.6vw, 22px); container-type: inline-size; }
/* one section-heading style, shared by every mid-page heading */
.philosophy__title,
.leadership__title {
  font-size: clamp(22px, 1.75vw, 32px);
  font-weight: 400;
  line-height: 1.14;
  letter-spacing: -0.01em;
}
.philosophy__text { font-size: clamp(13px, 0.85vw, 15.5px); line-height: 1.5; }

.features { display: grid; gap: clamp(26px, 3vw, 40px); }
.feature {
  position: relative;
  display: grid;
  --feat-title-fs: clamp(18px, 4.4vw, 22px);
  grid-template-columns: clamp(38px, 11vw, 46px) minmax(0, 1fr);
  align-items: start;
  column-gap: clamp(9px, 0.85vw, 15px);
  row-gap: clamp(8px, 0.8vw, 13px);
}
.feature__icon {
  grid-row: 1;
  align-self: center;
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  stroke-width: 1.15;
  color: var(--bronze);
}
.feature__title { grid-column: 2; grid-row: 1; align-self: center; }
.feature__text { grid-column: 2; grid-row: 2; }
.feature__title { font-size: var(--feat-title-fs); font-weight: 400; line-height: 1.22; color: var(--pacific); }
.feature__text { font-size: clamp(15px, 3.8vw, 17px); line-height: 1.45; color: var(--ink-soft); }

.section--pacific .feature__title, .section--deep .feature__title { color: var(--ivory); }
.section--pacific .feature__text, .section--deep .feature__text { color: var(--on-dark-soft); }
.section--pacific .philosophy__title, .section--deep .philosophy__title { color: var(--ivory); }

/* 11. Partner / CTA blocks --------------------------------------------- */
.partner {
  display: grid;
  gap: clamp(12px, 1vw, 16px);
  padding: clamp(20px, 1.5vw, 26px);
  background: var(--pacific);
  color: var(--on-dark);
  border-radius: var(--radius-card);
}
.partner__head {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start;
  gap: clamp(12px, 1.1vw, 18px);
}
.partner__icon { width: clamp(34px, 2.3vw, 44px); height: clamp(34px, 2.3vw, 44px); stroke-width: 1; color: var(--bronze); }
.partner__copy { display: grid; gap: clamp(6px, 0.5vw, 9px); }
.partner__text { font-size: clamp(14.5px, 0.95vw, 18px); line-height: 1.35; }
.partner .btn {
  justify-content: center;
  width: 100%;
  white-space: nowrap;
  gap: clamp(7px, 0.6vw, 10px);
  padding-inline: clamp(14px, 1.2vw, 26px);
  font-size: clamp(10.5px, 0.68vw, 12.5px);
  letter-spacing: 0.12em;
  min-height: 0;
  padding-block: 11px;
}
.partner .btn .icon { width: clamp(12px, 0.8vw, 15px); height: clamp(12px, 0.8vw, 15px); }

/* 12. Footer ------------------------------------------------------------ */
.site-footer { background: var(--deep); color: var(--on-dark-soft); }
.site-footer__top {
  display: grid;
  gap: clamp(28px, 3.5vw, 48px);
  align-items: center;
  padding-block: clamp(36px, 4vw, 56px);
}
.footer-brand { display: grid; gap: clamp(10px, 1vw, 14px); justify-items: start; }
.footer-brand__logo { height: clamp(46px, 4.4vw, 74px); width: auto; }
.footer-brand__parent {
  padding-top: clamp(10px, 1vw, 14px);
  border-top: 1px solid var(--line-dark);
  font-family: var(--font-ui);
  font-size: clamp(9px, 0.6vw, 11px);
  font-weight: 500;
  letter-spacing: 0.19em;
  text-transform: uppercase;
  color: var(--sand);
  width: 100%;
}
.footer-nav__list {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(16px, 2.4vw, 44px);
  align-items: center;
}
.footer-nav a {
  font-family: var(--font-ui);
  font-size: clamp(11px, 0.78vw, 13.5px);
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ivory);
}
.footer-nav a:hover { color: var(--bronze); }

.social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--bronze);
  border-radius: var(--radius);
  color: var(--bronze);
  transition: background-color 0.22s var(--ease), color 0.22s var(--ease);
}
.social:hover { background: var(--bronze); color: var(--deep); }
.social .icon { width: 22px; height: 22px; stroke: none; fill: currentColor; }

.site-footer__bar {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-3) clamp(16px, 2vw, 32px);
  align-items: center;
  justify-content: center;
  padding-block: clamp(18px, 1.8vw, 26px);
  border-top: 1px solid var(--line-dark);
  font-family: var(--font-ui);
  font-size: clamp(13px, 0.9vw, 16px);
  font-weight: 300;
  letter-spacing: 0.005em;
  text-transform: none;
  color: var(--on-dark-soft);
  text-align: center;
}
.site-footer__bar a { color: var(--on-dark-soft); }
.site-footer__bar a:hover { color: var(--bronze); }
.site-footer__legal { display: flex; align-items: center; gap: clamp(14px, 1.6vw, 26px); }
.site-footer__legal span { color: var(--line-dark-strong); }

/* 13. Utilities --------------------------------------------------------- */
.visually-hidden {
  position: absolute !important; width: 1px; height: 1px;
  margin: -1px; padding: 0; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap;
}
.divider { border: 0; border-top: 1px solid var(--line-dark); margin: 0; }
.section--ivory .divider { border-color: var(--line-light); }
.stack-4 { display: grid; gap: var(--s-4); }
.stack-5 { display: grid; gap: var(--s-5); }
.stack-6 { display: grid; gap: var(--s-6); }

/* ---------- Responsive: ≥600px ---------- */
@media (min-width: 620px) {
  .hero__line--nowrap { white-space: nowrap; }
}

@media (min-width: 700px) {
  .hero__veil {
    background:
      linear-gradient(to right, rgba(4, 29, 40, 0.92) 0%, rgba(6, 42, 56, 0.55) 45%, rgba(6, 42, 56, 0.12) 78%);
  }
}

@media (min-width: 600px) {
  .cards { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .features { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: var(--s-7); }
  .partner { padding: clamp(22px, 1.6vw, 28px); }
}

/* ---------- Responsive: ≥900px (tablet landscape) ---------- */
@media (min-width: 900px) {
  .site-header__inner { min-height: var(--header-h); }
  .brand__parent { display: block; }
  .header__actions .btn { display: inline-flex; }
  .portfolio { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); align-items: start; }
  .portfolio .cards { grid-column: 1 / -1; }
  .metric { padding-left: clamp(24px, 3vw, 48px); border-left: 1px solid var(--line-dark); align-self: stretch; }
  .philosophy { grid-template-columns: 1fr; }
  .features {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    column-gap: 0;
    row-gap: clamp(24px, 2.4vw, 34px);
  }
  .features { align-items: stretch; align-content: center; }
  .feature { padding-left: clamp(16px, 1vw, 22px); align-content: start; }
  .feature::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8%;
    bottom: 8%;
    width: 1px;
    background: var(--line-light);
  }
  .features .feature:first-child::before { content: none; }
  .site-footer__top { grid-template-columns: auto minmax(0, 1fr) auto; }
  .footer-nav__list { justify-content: center; }
  .site-footer__bar { justify-content: space-between; text-align: left; }
}

/* ---------- Responsive: ≥1100px (desktop) ---------- */
@media (min-width: 1100px) {
  .nav { display: block; margin-left: auto; }
  .header__actions { margin-left: clamp(28px, 2.6vw, 48px); }
  .nav-toggle, .nav-drawer, .nav-scrim { display: none; }

  .hero__veil {
    background:
      linear-gradient(to right,
        var(--pacific) 0%,
        rgba(6, 42, 56, 0.97) 20%,
        rgba(6, 42, 56, 0.72) 34%,
        rgba(6, 42, 56, 0.26) 50%,
        rgba(6, 42, 56, 0) 66%);
  }
  .hero__body {
    min-height: max(320px, calc(var(--band-w) * var(--hero-ratio)));
    padding: clamp(26px, 2.1vw, 40px) clamp(40px, 4vw, 72px) clamp(24px, 2vw, 38px) 0;
    padding-left: var(--band-left);
  }
  .hero__inner { max-width: min(980px, 64vw); }

  .hero--split .hero__bg {
    left: calc(var(--band-left) + var(--band-w) * var(--hero-split));
    right: auto;
    width: calc(100% - var(--band-left) - var(--band-w) * var(--hero-split));
  }
  .hero--split .hero__veil {
    background:
      linear-gradient(to right,
        var(--pacific) 0,
        var(--pacific) calc(var(--band-left) + var(--band-w) * var(--hero-split)),
        rgba(6, 42, 56, 0.9) calc(var(--band-left) + var(--band-w) * (var(--hero-split) + 0.041)),
        rgba(6, 42, 56, 0.45) calc(var(--band-left) + var(--band-w) * (var(--hero-split) + 0.106)),
        rgba(6, 42, 56, 0.08) calc(var(--band-left) + var(--band-w) * (var(--hero-split) + 0.196)),
        rgba(6, 42, 56, 0) calc(var(--band-left) + var(--band-w) * (var(--hero-split) + 0.276))),
      linear-gradient(to top, rgba(4, 29, 40, 0.45) 0%, rgba(4, 29, 40, 0) 40%);
  }
  .hero--split .hero__body {
    min-height: max(320px, calc(var(--band-w) * var(--hero-ratio)));
    padding-block: clamp(26px, 2.1vw, 40px) clamp(24px, 2vw, 38px);
  }
  .hero--split .hero__inner { max-width: calc(var(--band-w) * 0.46); }
  .hero--split .hero__title { font-size: clamp(34px, 3.25vw, 58px); margin-bottom: var(--s-3); }
  .hero--split .hero__rule { margin-bottom: var(--s-4); }
  .hero--split .hero__sub { margin-bottom: var(--s-3); }
  .hero--split .hero__line {
    max-width: 25em;
    margin-bottom: clamp(22px, 1.8vw, 32px);
    font-size: clamp(15px, 0.98vw, 19px);
    line-height: 1.45;
  }
  .hero--portfolio .hero__title { font-size: clamp(34px, 3.45vw, 60px); }
  .hero--portfolio .hero__rule { margin-bottom: var(--s-5); }
  .hero--portfolio .hero__line {
    max-width: 21.5em;
    text-wrap: wrap;
    margin-bottom: 0;
    font-size: clamp(15px, 1.15vw, 20px);
  }

  .portfolio {
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.62fr) minmax(0, 2.35fr);
    gap: clamp(28px, 2.6vw, 52px);
    align-items: stretch;
  }
  .portfolio__lead { align-content: center; }
  .metric { align-content: center; }
  .portfolio .cards { grid-column: auto; }
  .portfolio .card__media { aspect-ratio: 2 / 1; }
  .portfolio .card__body { padding: min(20px, 6cqi) clamp(15px, 8.2cqi, 30px) min(18px, 5.5cqi); }
  .metric { padding-left: clamp(20px, 1.8vw, 34px); }
  .cards { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .philosophy {
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 2.55fr);
    gap: clamp(14px, 1.05vw, 20px);
    align-items: stretch;
  }
  .philosophy__lead { align-content: center; }
  .section--portfolio, .section--philosophy { padding-block: clamp(20px, 1.35vw, 24px); }
  .section--portfolio .portfolio { gap: clamp(24px, 2.1vw, 40px); }
  .partner {
    grid-column: 1 / -1;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: clamp(24px, 3vw, 48px);
  }
  .partner .btn { width: auto; }
  .philosophy__lead { padding-right: clamp(16px, 1.4vw, 28px); }
  .feature { grid-template-columns: clamp(34px, 3.1vw, 54px) minmax(0, 1fr); }
  .feature { --feat-title-fs: clamp(15.5px, 1.02vw, 22px); }
  .feature { column-gap: clamp(12px, 1.1vw, 20px); }
  .feature__text { font-size: clamp(13px, 0.72vw, 16px); }
  .features .feature:first-child::before { content: ""; }
}

/* ---------- Responsive: ≥1400px (partner card joins the row) ---------- */
@media (min-width: 1400px) {
  .philosophy { grid-template-columns: minmax(0, 0.85fr) minmax(0, 2.55fr) minmax(0, 0.92fr); }
  .partner {
    grid-column: auto;
    grid-template-columns: 1fr;
    align-items: stretch;
    align-content: space-between;
    gap: clamp(12px, 1vw, 16px);
  }
  .partner .btn { width: 100%; }
}

/* ---------- Responsive: ≥1500px ---------- */
@media (min-width: 1500px) {
  .metric__value { font-size: 92px; }
}

@media (min-width: 1780px) {
  .philosophy { grid-template-columns: minmax(0, 0.95fr) minmax(0, 2.35fr) minmax(0, 0.95fr); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

@media print {
  .site-header, .nav-drawer, .nav-scrim { position: static; }
  body { background: var(--ivory); color: var(--pacific); }
}

/* 14. Inline arrow links ------------------------------------------------ */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-ui);
  font-size: clamp(10.5px, 0.7vw, 12px);
  font-weight: 500;
  letter-spacing: var(--tracking-caps);
  text-transform: uppercase;
  color: var(--bronze);
  transition: gap 0.22s var(--ease), color 0.22s var(--ease);
}
.link-arrow:hover { gap: 15px; color: var(--sand); }
.link-arrow .icon { width: 15px; height: 15px; }
.section--ivory .link-arrow, .section--sand .link-arrow { color: var(--pacific); }
.section--ivory .link-arrow .icon, .section--sand .link-arrow .icon { color: var(--bronze); }
.section--ivory .link-arrow:hover, .section--sand .link-arrow:hover { color: var(--bronze); }

/* 15. Bleed bands (content + edge image) -------------------------------- */
.bleed { display: grid; }
.bleed__inner {
  display: grid;
  gap: clamp(26px, 3vw, 44px);
  padding: clamp(26px, 2.1vw, 40px) var(--gutter);
}
.bleed__media { position: relative; min-height: clamp(220px, 34vw, 300px); }
.bleed__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

/* 16. Market columns (flag + claims) ------------------------------------ */
.markets { display: grid; gap: clamp(26px, 3vw, 38px); }
.market { position: relative; display: grid; gap: clamp(12px, 1.1vw, 18px); align-content: start; }
.market__head {
  display: grid;
  justify-items: center;
  justify-self: start;
  width: fit-content;
  gap: clamp(12px, 1.1vw, 18px);
}
.market__flag { width: clamp(38px, 3vw, 44px); height: clamp(38px, 3vw, 44px); }
.market__title {
  font-family: var(--font-ui);
  font-size: clamp(11.5px, 0.78vw, 13.5px);
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--bronze);
}
.market__claims { display: grid; gap: 3px; font-size: clamp(14px, 0.95vw, 17.5px); line-height: 1.45; color: var(--on-dark); }
.market .link-arrow { margin-top: var(--s-1); }

/* 17. Leadership / person cards ----------------------------------------- */
.leadership { display: grid; gap: clamp(28px, 3.2vw, 44px); }
.leadership__lead { display: grid; gap: clamp(14px, 1.4vw, 22px); align-content: start; }

.people { display: grid; gap: clamp(12px, 0.9vw, 16px); }
.person {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(12px, 1vw, 18px);
  padding: clamp(9px, 0.7vw, 13px);
  background: rgba(6, 42, 56, 0.03);
  border: 1px solid var(--line-light);
  border-radius: var(--radius-card);
}
.person__media { border-radius: var(--radius); overflow: hidden; background: var(--deep); }
.person__media img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 3 / 4; }
.person__body { display: grid; gap: clamp(8px, 0.7vw, 11px); align-content: start; padding: clamp(6px, 0.6vw, 10px) clamp(4px, 0.5vw, 8px) clamp(6px, 0.6vw, 10px) 0; }
.person__name { font-size: clamp(17px, 1.15vw, 21px); font-weight: 400; line-height: 1.2; color: var(--pacific); }
.person__role { font-size: clamp(13.5px, 0.85vw, 15.5px); color: var(--pacific); }
.person__bio {
  position: relative;
  padding-top: clamp(11px, 0.9vw, 15px);
  font-size: clamp(13px, 0.85vw, 15.5px);
  line-height: 1.4;
  color: var(--ink-soft);
}
.person__bio::before {
  content: "";
  position: absolute; left: 0; top: 0;
  width: 30px; height: 1px;
  background: var(--bronze);
}
.person .link-arrow { margin-top: auto; }

/* 18. Journey timeline -------------------------------------------------- */
.journey { display: grid; gap: clamp(14px, 1.2vw, 20px); align-content: start; }
.journey__track { display: grid; gap: clamp(16px, 1.6vw, 24px); }
.journey .link-arrow { margin-top: clamp(8px, 0.9vw, 16px); }
.milestone { display: grid; gap: clamp(8px, 0.8vw, 12px); align-content: start; }
.milestone__year {
  font-family: var(--font-display);
  font-size: clamp(18px, 1.35vw, 24px);
  line-height: 1;
  color: var(--sand);
}
.milestone__dot {
  position: relative;
  display: block;
  height: 1px;
  margin-bottom: clamp(8px, 0.8vw, 13px);
  background: var(--line-dark);
}
.milestone__dot::before {
  content: "";
  position: absolute;
  left: 0;
  top: -3.5px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--bronze);
}
.milestone__title {
  font-family: var(--font-ui);
  font-size: clamp(10.5px, 0.7vw, 12px);
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ivory);
}
.milestone__text { font-size: clamp(12.5px, 0.8vw, 14px); line-height: 1.3; color: var(--on-dark-soft); }

/* journey on a light ground (panel bands) */
.section--ivory .milestone__year,
.section--ivory .milestone__title { color: var(--pacific); }
.section--ivory .milestone__text { color: var(--ink-soft); }
.section--ivory .milestone__dot { background: var(--sand); }

/* 19. Panel bands (dark copy + light edge panel) ------------------------ */
.panel-band { display: grid; }
.panel-band__main,
.panel-band__aside { padding: clamp(24px, 1.9vw, 36px) var(--gutter); }

/* ---------- Responsive additions: inner pages ---------- */
@media (min-width: 600px) {
  .markets { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .journey__track { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (min-width: 900px) {
  .markets { grid-template-columns: repeat(3, minmax(0, 1fr)); column-gap: 0; }
  .market { --market-pad: clamp(18px, 2.1vw, 34px); padding-left: var(--market-pad); border-left: 1px solid var(--line-dark); }
  .people { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .journey__track { grid-template-columns: repeat(5, minmax(0, 1fr)); column-gap: clamp(8px, 0.7vw, 12px); }
  .milestone__dot { margin-right: calc(-1 * clamp(8px, 0.7vw, 12px)); }
  .philosophy--about .features { grid-template-columns: repeat(2, minmax(0, 1fr)); row-gap: clamp(22px, 2.2vw, 34px); }
  .philosophy--about .feature:nth-child(2n+1)::before { content: none; }
  .philosophy--about .feature:nth-child(2n+1) { padding-left: clamp(16px, 1vw, 22px); }
}

@media (min-width: 1100px) {
  .bleed { grid-template-columns: calc(var(--band-left) + var(--band-w) * 0.744) minmax(0, 1fr); }
  .bleed__inner {
    grid-template-columns: clamp(230px, 17.6vw, 340px) minmax(0, 1fr);
    align-items: start;
    gap: clamp(24px, 2.4vw, 44px);
    padding: clamp(26px, 2.1vw, 40px) 0 clamp(26px, 2.1vw, 40px) var(--band-left);
  }
  .bleed__inner .portfolio__statement { font-size: clamp(17px, 1.1vw, 21px); max-width: 31ch; }
  .bleed__media { min-height: 100%; }
  .people { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .leadership { grid-template-columns: minmax(0, 0.85fr) minmax(0, 3.4fr); gap: clamp(20px, 2vw, 34px); }
  .leadership__lead { align-content: start; }

  .panel-band__aside { padding-block: clamp(26px, 2vw, 38px); }
}

/* panel band splits: dark copy left, light panel bleeding to the right edge */
@media (min-width: 1400px) {
  .panel-band { grid-template-columns: calc(var(--band-left) + var(--band-w) * 0.472) minmax(0, 1fr); }
  .philosophy--about { grid-template-columns: minmax(0, 0.72fr) minmax(0, 1fr); gap: clamp(14px, 1.15vw, 18px); }
  .philosophy--about .eyebrow { font-size: clamp(11px, 0.62vw, 12px); }
  .philosophy--about .features {
    column-gap: clamp(10px, 0.7vw, 12px);
    padding-left: clamp(16px, 1.3vw, 22px);
    border-left: 1px solid var(--line-dark);
  }
  .philosophy--about .feature::before { content: none; }
  .philosophy--about .feature,
  .philosophy--about .feature:nth-child(2n+1) {
    --feat-title-fs: clamp(14.5px, 0.86vw, 19px);
    grid-template-columns: clamp(36px, 2.7vw, 50px) minmax(0, 1fr);
    column-gap: clamp(9px, 0.6vw, 11px);
    padding-left: 0;
  }
  .philosophy--about .feature__title { text-wrap: balance; }
  .philosophy--about .feature__text { font-size: clamp(13px, 0.66vw, 14.5px); }
  .panel-band__main {
    padding-right: clamp(12px, 0.9vw, 18px);
    padding-left: var(--band-left);
  }
  .panel-band__aside {
    padding-left: clamp(28px, 2.7vw, 46px);
    padding-right: max(clamp(28px, 2.7vw, 46px), calc(100vw - var(--band-left) - var(--band-w)));
  }
}

/* 20. Feature-row modifiers -------------------------------------------- */
/* .features--flat drops the column hairlines; .features--five runs 5 across */
.features--flat .feature,
.features--flat .feature:nth-child(2n+1) { padding-left: 0; }
.features--flat .feature::before,
.features--flat .feature:first-child::before,
.features--flat .feature:nth-child(2n+1)::before { content: none; }

@media (min-width: 900px) {
  .features--five { grid-template-columns: repeat(5, minmax(0, 1fr)); column-gap: clamp(16px, 1.7vw, 28px); }
}
@media (min-width: 1100px) {
  .features--five .feature {
    --feat-title-fs: clamp(15.5px, 1.15vw, 21px);
    grid-template-columns: clamp(32px, 2.9vw, 46px) minmax(0, 1fr);
    column-gap: clamp(11px, 1.05vw, 18px);
  }
  .features--five .feature__text { font-size: clamp(13px, 0.82vw, 15.5px); }
}

/* 21. Sector tiles ------------------------------------------------------ */
.sector-tiles { display: grid; grid-template-columns: 1fr; gap: clamp(10px, 0.95vw, 16px); }
.sector-tiles > li { display: flex; container-type: inline-size; }
.sector-tile {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  background: var(--surface-dark-lift);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-card);
  overflow: hidden;
}
.sector-tile__media { position: relative; aspect-ratio: 2 / 1; background: var(--deep); }
.sector-tile__media img { width: 100%; height: 100%; object-fit: cover; }
.sector-tile__media::after {
  content: "";
  position: absolute; inset: 0;
  /* photo dissolves into the tile ground — no visible seam at the body edge */
  background: linear-gradient(to bottom,
    rgba(6, 42, 56, 0.28) 0%,
    rgba(4, 29, 40, 0.42) 40%,
    color-mix(in srgb, var(--ivory) 4.5%, var(--pacific)) 92%,
    color-mix(in srgb, var(--ivory) 4.5%, var(--pacific)) 100%);
}
.sector-tile__badge {
  position: absolute;
  left: 50%; top: 76%;
  z-index: 1;
  transform: translate(-50%, -50%);
  display: grid;
  place-items: center;
  width: clamp(52px, 34cqi, 78px);
  aspect-ratio: 1;
  border: 1px solid var(--line-bronze);
  border-radius: 50%;
  background: rgba(4, 29, 40, 0.45);
}
.sector-tile__badge .icon { width: 52%; height: 52%; stroke-width: 1.15; color: var(--ivory); }
.sector-tile__body {
  display: grid;
  gap: clamp(5px, 0.5vw, 8px);
  padding: clamp(17px, 10cqi, 30px) clamp(12px, 7cqi, 22px) clamp(13px, 7.5cqi, 22px);
  text-align: center;
}
.sector-tile__title {
  font-family: var(--font-ui);
  font-size: clamp(10.5px, 6cqi, 13px);
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ivory);
}
.sector-tile__text {
  font-family: var(--font-ui);
  font-size: clamp(12.5px, 7cqi, 14.5px);
  font-weight: 300;
  line-height: 1.45;
  color: var(--on-dark-soft);
}

/* 22. Checklists -------------------------------------------------------- */
.checklist { display: grid; gap: clamp(13px, 1.15vw, 20px); }
.check {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: clamp(11px, 1vw, 16px);
}
.check .icon {
  width: clamp(18px, 1.45vw, 23px);
  height: clamp(18px, 1.45vw, 23px);
  stroke-width: 1.2;
  color: var(--bronze);
}
.check__text {
  font-family: var(--font-ui);
  font-size: clamp(12.5px, 0.9vw, 14.5px);
  font-weight: 300;
  line-height: 1.4;
  color: var(--ivory);
}

/* 23. Split bands ------------------------------------------------------- */
.split-band { display: grid; gap: clamp(26px, 3vw, 44px); }
.split-band__aside { display: grid; gap: clamp(14px, 1.3vw, 20px); align-content: start; }

/* 24. Process track ----------------------------------------------------- */
.process {
  --process-gap: clamp(12px, 1.25vw, 20px);
  display: grid;
  grid-template-columns: 1fr;
  column-gap: var(--process-gap);
  row-gap: clamp(26px, 2.8vw, 40px);
}
.step { display: grid; gap: clamp(15px, 1.5vw, 24px); align-content: start; }
.step__head { display: flex; align-items: center; gap: clamp(10px, 0.95vw, 15px); }
.step__num {
  display: grid;
  place-items: center;
  flex: none;
  width: clamp(28px, 2.2vw, 34px);
  aspect-ratio: 1;
  border: 1px solid var(--bronze);
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: clamp(14px, 1.05vw, 18px);
  line-height: 1;
  color: var(--bronze);
}
.step__icon {
  flex: none;
  width: clamp(30px, 2.7vw, 42px);
  height: auto;
  aspect-ratio: 1;
  stroke-width: 1.15;
  color: var(--bronze);
}
.step__line { display: none; }
.step__body { display: grid; gap: clamp(7px, 0.65vw, 11px); }
.step__title {
  font-family: var(--font-ui);
  font-size: clamp(10.5px, 0.78vw, 13px);
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ivory);
}
.step__text {
  font-family: var(--font-ui);
  font-size: clamp(12.5px, 0.88vw, 14.5px);
  font-weight: 300;
  line-height: 1.45;
  color: var(--on-dark-soft);
}

/* 25. Anchor bars ------------------------------------------------------- */
.anchor-bar {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: clamp(16px, 1.8vw, 28px);
}
.anchor-bar__head {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: clamp(14px, 1.4vw, 22px);
}
.anchor-bar__icon {
  width: clamp(26px, 2.1vw, 33px);
  height: auto;
  aspect-ratio: 1;
  stroke-width: 1.15;
  color: var(--bronze);
}
.anchor-bar__text { font-size: clamp(15px, 1vw, 18.5px); line-height: 1.35; color: var(--pacific); }

/* ---------- Responsive additions: approach page ---------- */
@media (min-width: 600px) {
  .sector-tiles { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .process { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .anchor-bar { grid-template-columns: minmax(0, 1fr) auto; }
}

@media (min-width: 900px) {
  .process { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .step__line {
    display: block;
    flex: 1 1 auto;
    min-width: 0;
    height: 1px;
    margin-right: calc(6px - var(--process-gap));
    background: var(--line-bronze);
  }
  .step:nth-child(3n) .step__line, .step:last-child .step__line { display: none; }
}

@media (min-width: 1100px) {
  .sector-tiles { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .split-band {
    grid-template-columns: minmax(0, 808fr) minmax(0, 430fr);
    column-gap: clamp(20px, 2.4vw, 34px);
    align-items: start;
  }
  .split-band__aside {
    align-self: stretch;
    padding-left: clamp(24px, 3vw, 42px);
    border-left: 1px solid var(--line-dark);
  }
  .process { grid-template-columns: repeat(6, minmax(0, 1fr)); }
  .step:nth-child(3n) .step__line { display: block; }
  .step:last-child .step__line { display: none; }
}

/* 26. Filter bar (platform tabs + view switch) -------------------------- */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-2) clamp(20px, 2.4vw, 40px);
  margin-bottom: clamp(14px, 1.4vw, 22px);
  padding-bottom: var(--s-2);
  border-bottom: 1px solid var(--line-dark);
}
.filter-tabs { display: flex; flex-wrap: wrap; align-items: center; gap: clamp(16px, 3.6vw, 60px); }
.filter-tab {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  font-family: var(--font-ui);
  font-size: clamp(11px, 0.78vw, 13px);
  font-weight: 500;
  letter-spacing: var(--tracking-caps);
  text-transform: uppercase;
  color: var(--on-dark-soft);
  transition: color 0.22s var(--ease);
}
.filter-tab::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: 0;
  height: 2px; background: var(--bronze);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.25s var(--ease);
}
.filter-tab:hover { color: var(--ivory); }
.filter-tab[aria-pressed="true"] { color: var(--ivory); }
.filter-tab[aria-pressed="true"]::after { transform: scaleX(1); }
.filter-tabs__sep {
  align-self: stretch;
  width: 1px;
  margin-block: 12px;
  margin-inline: calc(-0.33 * clamp(16px, 3.6vw, 60px));
  background: var(--line-dark-strong);
}

.view-switch { display: flex; align-items: center; gap: clamp(10px, 1vw, 20px); }
.view-switch__label {
  font-family: var(--font-ui);
  font-size: clamp(10.5px, 0.7vw, 12px);
  font-weight: 500;
  letter-spacing: var(--tracking-caps);
  text-transform: uppercase;
  color: var(--sand);
}
.view-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 44px;
  font-family: var(--font-ui);
  font-size: clamp(10.5px, 0.7vw, 12px);
  font-weight: 500;
  letter-spacing: var(--tracking-caps);
  text-transform: uppercase;
  color: var(--on-dark-soft);
  transition: color 0.22s var(--ease);
}
.view-btn .icon { width: 16px; height: 16px; stroke-width: 1.3; }
.view-btn:hover { color: var(--ivory); }
.view-btn[aria-pressed="true"] { color: var(--ivory); }
.view-btn[aria-pressed="true"] .icon { color: var(--bronze); }

/* 27. Platform cards ---------------------------------------------------- */
.cards > li[hidden] { display: none; }
.cards--platform { gap: clamp(14px, 1.4vw, 24px); }
.cards--platform .card__media { aspect-ratio: 5 / 2; }
.card--platform .card__body {
  gap: clamp(9px, 0.8vw, 13px);
  padding: min(22px, 6cqi) clamp(14px, 5.2cqi, 22px) min(20px, 5.5cqi);
}
.card--platform .card__title {
  font-family: var(--font-display);
  font-size: clamp(17px, 8cqi, 30px);
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1.14;
  color: var(--ivory);
}
.card--platform .card__text {
  font-family: var(--font-ui);
  font-weight: 300;
  font-size: clamp(12.5px, 4.3cqi, 16px);
  line-height: 1.5;
}
.card--platform .card__foot { justify-content: space-between; padding-top: min(26px, 7cqi); }
.card__tag { display: flex; align-items: center; gap: 12px; }
.card__go { width: clamp(16px, 5.5cqi, 20px); height: clamp(16px, 5.5cqi, 20px); color: var(--bronze); transition: transform 0.25s var(--ease); }
a.card:hover .card__go { transform: translateX(4px); }

/* list view — same card, laid on its side */
.cards--list { grid-template-columns: minmax(0, 1fr); gap: clamp(12px, 1vw, 16px); }
.cards--list .card { flex-direction: row; }
.cards--list .card__media { flex: none; width: clamp(150px, 30%, 400px); aspect-ratio: auto; }
.cards--list .card__body {
  justify-content: center;
  gap: clamp(8px, 0.7vw, 12px);
  padding: clamp(18px, 1.8vw, 30px) clamp(18px, 2vw, 34px);
}
.cards--list .card__title { font-size: clamp(19px, 1.5vw, 28px); }
.cards--list .card__text { font-size: clamp(13px, 0.9vw, 16px); max-width: 62ch; }
.cards--list .card__foot { padding-top: clamp(14px, 1.2vw, 20px); }
.cards--list .card__go { width: 20px; height: 20px; }

/* 28. Glance band ------------------------------------------------------- */
.section--glance { padding-block: clamp(30px, 2.7vw, 46px); }
.glance { display: grid; gap: clamp(26px, 3vw, 42px); text-wrap: wrap; }
.glance__lead { display: grid; gap: clamp(11px, 1vw, 16px); align-content: start; justify-items: start; }
.glance__title { width: 100%; font-size: clamp(24px, 1.85vw, 32px); line-height: 1.12; color: var(--pacific); }
.glance__text { font-size: clamp(13px, 0.88vw, 15.5px); line-height: 1.45; color: var(--ink-soft); max-width: 17em; }
.glance__lead .btn { margin-top: clamp(4px, 0.6vw, 10px); }

.gmetric {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  column-gap: clamp(12px, 1.1vw, 20px);
  row-gap: clamp(7px, 0.7vw, 12px);
  align-content: start;
}
.gmetric__badge {
  grid-row: 1 / span 2;
  display: grid;
  place-items: center;
  width: clamp(46px, 3.7vw, 62px);
  aspect-ratio: 1;
  border: 1px solid var(--line-bronze);
  border-radius: 50%;
}
.gmetric__badge .icon { width: 54%; height: 54%; stroke-width: 1.15; color: var(--bronze); }
.gmetric__value {
  grid-column: 2;
  align-self: center;
  font-size: clamp(30px, 2.7vw, 46px);
  line-height: 1;
  color: var(--bronze);
}
.gmetric__unit { font-size: 0.55em; letter-spacing: 0.01em; }
.gmetric__label {
  grid-column: 2;
  font-family: var(--font-ui);
  font-size: clamp(10.5px, 0.7vw, 11.7px);
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--pacific);
  line-height: 1.5;
}
.gmetric__note {
  grid-column: 2;
  font-size: clamp(12.5px, 0.85vw, 15px);
  line-height: 1.4;
  color: var(--ink-soft);
}

/* 29. Partner band ------------------------------------------------------ */
.partner--outline { background: transparent; border: 1px solid var(--line-bronze); }
.section--pacific .anchor-bar__text,
.section--deep .anchor-bar__text { color: var(--ivory); }
.anchor-bar--partner { text-wrap: wrap; }
.anchor-bar--partner .anchor-bar__icon { width: clamp(30px, 2.7vw, 44px); }

@media (min-width: 600px) {
  .anchor-bar--partner { grid-template-columns: minmax(0, 1fr); }
  .glance { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (min-width: 900px) {
  .glance { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .glance__lead { grid-column: 1 / -1; }
}

@media (min-width: 1100px) {
  .glance {
    grid-template-columns: minmax(0, 1.2fr) repeat(4, minmax(0, 1fr));
    grid-template-rows: 1fr auto auto auto 1fr;
    column-gap: 0;
  }
  .glance__lead { grid-column: 1; grid-row: 1 / -1; padding-right: clamp(20px, 2.4vw, 40px); }
  .gmetric {
    grid-row: 1 / -1;
    grid-template-rows: subgrid;
    padding-left: clamp(20px, 2.4vw, 40px);
  }
  /* content rides the middle three rows so it centres between the flexible ends */
  .gmetric__badge { grid-row: 2 / span 2; }
  .gmetric__value { grid-row: 2; }
  .gmetric__label { grid-row: 3; }
  .gmetric__note { grid-row: 4; }
  .gmetric::before {
    content: "";
    position: absolute;
    left: 0; top: 1%; bottom: 1%;
    width: 1px;
    background: var(--line-light);
  }
  .anchor-bar--partner { grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr); column-gap: clamp(28px, 3vw, 56px); }
  .anchor-bar--partner .partner {
    grid-column: auto;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    align-content: center;
    gap: clamp(20px, 2.2vw, 40px);
    padding: clamp(16px, 1.3vw, 22px) clamp(18px, 1.5vw, 26px);
  }
  .anchor-bar--partner .partner .btn { width: auto; }
}

/* 30. Insights hero ----------------------------------------------------- */
/* eyebrow and rule sit above the headline; lede is Jost in Bronze */
/* --lead-lap = how far the photo runs on under the featured row, as a
   fraction of the content-band width. The hero grows by it and pulls the
   band below back up by the same amount, so the next two cards sit over the
   bottom sliver of the photo (.section--lead is positioned, so it paints
   above it). */
.hero--insights,
.section--lead { --lead-lap: 0px; }
.hero--insights {
  --hero-split: 0.41;
  --hero-ratio: 0.203;
  padding-bottom: var(--lead-lap);
  margin-bottom: calc(var(--lead-lap) * -1);
}
/* The photo dissolves into Pacific over a tall vertical ramp that lands exactly
   on the hero's bottom edge — the band below picks Pacific up at the same value,
   so there is no seam. A hint of water still reads through the lap. */
.hero--insights .hero__veil::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: calc(var(--lead-lap) + var(--band-w) * 0.052);
  background: linear-gradient(to top,
    rgba(6, 42, 56, 0.97) 0%,
    rgba(6, 42, 56, 0.88) 12%,
    rgba(6, 42, 56, 0.68) 30%,
    rgba(6, 42, 56, 0.44) 50%,
    rgba(6, 42, 56, 0.22) 70%,
    rgba(6, 42, 56, 0.07) 86%,
    rgba(6, 42, 56, 0) 100%);
}
.hero--insights .hero__sub { margin-bottom: var(--s-3); }
.hero--insights .hero__rule { margin-bottom: var(--s-1); }
.hero--insights .hero__title {
  margin-bottom: var(--s-4);
  font-size: clamp(29px, 5.4vw, 46px);
  line-height: 1.16;
}
.hero--insights .hero__line {
  max-width: 30em;
  margin-bottom: 0;
  font-family: var(--font-ui);
  font-weight: 400;
  font-size: clamp(14px, 0.9vw + 11px, 16px);
  line-height: 1.45;
  color: var(--bronze);
}

@media (min-width: 1100px) {
  .hero--insights .hero__body { padding-block: clamp(22px, 1.55vw, 27px); }
  .hero--insights .hero__sub { margin-bottom: var(--s-4); }
  .hero--insights .hero__title {
    margin-bottom: var(--s-4);
    font-size: clamp(34px, 3.17vw, 61px);
    line-height: 1.16;
  }
  .hero--insights .hero__line {
    max-width: 32em;
    font-size: clamp(15px, 1.06vw, 18px);
    line-height: 1.45;
  }
}

/* 31. Featured insight row ---------------------------------------------- */
/* the top --lead-lap of the band lets the hero photo through around the two
   cards, ramping to Pacific across the lap — a graded blend, never a stop line */
.section--lead {
  position: relative;
  padding-block: 0 clamp(14px, 1.4vw, 22px);
  color: var(--on-dark);
  background: linear-gradient(to bottom,
    rgba(6, 42, 56, 0) 0,
    rgba(6, 42, 56, 0.2) calc(var(--lead-lap) * 0.4),
    rgba(6, 42, 56, 0.6) calc(var(--lead-lap) * 0.75),
    var(--pacific) var(--lead-lap));
}
.lead-row { display: grid; gap: clamp(11px, 0.95vw, 16px); align-items: stretch; }

.ifeature {
  display: grid;
  background: var(--pacific);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-card);
  overflow: hidden;
}
.ifeature__media { position: relative; min-height: clamp(190px, 44vw, 280px); background: var(--deep); }
.ifeature__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ifeature__badge {
  position: absolute;
  left: 0;
  top: clamp(13px, 1.4vw, 21px);
  padding: 9px clamp(13px, 1.25vw, 19px);
  background: var(--bronze);
  color: var(--deep);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-family: var(--font-ui);
  font-size: clamp(10.5px, 0.66vw, 11px);
  font-weight: 500;
  letter-spacing: var(--tracking-caps);
  text-transform: uppercase;
  line-height: 1;
}
.ifeature__body {
  display: flex;
  flex-direction: column;
  gap: clamp(10px, 0.85vw, 14px);
  padding: clamp(16px, 1.55vw, 26px) clamp(18px, 2.4vw, 40px) clamp(16px, 1.35vw, 22px);
}
.ifeature__title {
  font-weight: 400;
  font-size: clamp(20px, 1.85vw, 30px);
  line-height: 1.22;
  color: var(--ivory);
}
.ifeature__text {
  max-width: 34em;
  font-family: var(--font-ui);
  font-weight: 300;
  font-size: clamp(13px, 0.92vw, 15px);
  line-height: 1.55;
  color: var(--on-dark-soft);
}
.ifeature .link-arrow { margin-top: auto; padding-top: clamp(9px, 0.9vw, 15px); }

/* category · date line — featured card and index cards */
.meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: clamp(8px, 0.72vw, 12px);
  font-family: var(--font-ui);
  font-size: clamp(10.5px, 0.72vw, 11.5px);
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  line-height: 1;
}
.meta__cat { color: var(--bronze); }
.meta__dot { color: var(--line-dark-strong); }
.meta__date { color: var(--sand); }

.subscribe {
  display: flex;
  flex-direction: column;
  gap: clamp(8px, 0.65vw, 11px);
  padding: clamp(18px, 1.65vw, 26px) clamp(18px, 2.65vw, 42px) clamp(16px, 1.4vw, 23px);
  background: var(--pacific);
  border: 1px solid var(--line-bronze);
  border-radius: var(--radius-card);
}
.subscribe__badge {
  display: grid;
  place-items: center;
  width: clamp(44px, 3.3vw, 54px);
  aspect-ratio: 1;
  margin-bottom: var(--s-1);
  border: 1px solid var(--line-bronze);
  border-radius: 50%;
}
.subscribe__badge .icon { width: 48%; height: 48%; stroke-width: 1.2; color: var(--bronze); }
.subscribe__title { font-weight: 400; font-size: clamp(22px, 1.75vw, 29px); line-height: 1.1; color: var(--ivory); }
.subscribe__text { max-width: 23em; font-size: clamp(13.5px, 0.92vw, 15px); line-height: 1.4; color: var(--on-dark-soft); }
.subscribe__fields { display: grid; gap: var(--s-2); margin-top: clamp(5px, 0.55vw, 9px); }
.subscribe__note {
  font-family: var(--font-ui);
  font-weight: 300;
  font-size: clamp(10.5px, 0.7vw, 12px);
  text-align: center;
  color: var(--on-dark-soft);
}
.subscribe .btn { width: 100%; justify-content: center; min-height: 40px; padding-block: 10px; }

.field {
  width: 100%;
  min-height: 40px;
  padding: 10px 14px;
  background: var(--surface-dark-lift);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  color: var(--on-dark);
  font-family: var(--font-ui);
  font-weight: 300;
  font-size: 13.5px;
  transition: border-color 0.22s var(--ease);
}
.field::placeholder { color: var(--on-dark-soft); }
.field:hover { border-color: var(--line-dark-strong); }
.field:focus { outline: none; border-color: var(--bronze); }

@media (min-width: 600px) {
  .ifeature { grid-template-columns: minmax(0, 623fr) minmax(0, 505fr); }
  .ifeature__media { min-height: 100%; }
}

@media (min-width: 1100px) {
  .hero--insights,
  .section--lead { --lead-lap: calc(var(--band-w) * 0.026); }
  .lead-row { grid-template-columns: minmax(0, 1130fr) minmax(0, 358fr); }
  /* the article card alone sets the row height; the panel matches it exactly */
  .lead-row > .subscribe { height: 0; min-height: 100%; }
  .subscribe__fields { margin-top: auto; }
}

/* 32. Chip filter bar --------------------------------------------------- */
.chip-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-3) clamp(18px, 1.9vw, 32px);
}
.chip-bar__group { display: flex; flex-wrap: wrap; align-items: center; gap: var(--s-2) clamp(12px, 1.3vw, 21px); }
.chip-bar__label,
.sort__label {
  font-family: var(--font-ui);
  font-size: clamp(10.5px, 0.7vw, 11.5px);
  font-weight: 500;
  letter-spacing: var(--tracking-caps);
  text-transform: uppercase;
  color: var(--bronze);
}
.chips { display: flex; flex-wrap: wrap; gap: clamp(8px, 0.65vw, 10px); }
.chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 7px clamp(11px, 1vw, 16px);
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  font-family: var(--font-ui);
  font-size: clamp(10.5px, 0.7vw, 11.5px);
  font-weight: 500;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  line-height: 1;
  color: var(--pacific);
  transition: background-color 0.22s var(--ease), border-color 0.22s var(--ease), color 0.22s var(--ease);
}
.chip:hover { border-color: var(--line-bronze); background: rgba(6, 42, 56, 0.04); }
.chip[aria-pressed="true"] { background: var(--pacific); border-color: var(--pacific); color: var(--ivory); }

.sort { display: flex; align-items: center; gap: clamp(10px, 1.05vw, 18px); }
.sort__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 34px;
  font-family: var(--font-ui);
  font-size: clamp(10.5px, 0.7vw, 11.5px);
  font-weight: 500;
  letter-spacing: var(--tracking-caps);
  text-transform: uppercase;
  color: var(--pacific);
  transition: gap 0.22s var(--ease);
}
.sort__btn .icon { width: 16px; height: 16px; color: var(--bronze); }
.sort__btn:hover { gap: 15px; }

/* 33. Insight cards ----------------------------------------------------- */
.section--index { padding-block: clamp(12px, 1.05vw, 16px) clamp(28px, 2.8vw, 44px); }
.section--index .insights { margin-top: clamp(12px, 1.1vw, 17px); }
.section--index .statement { margin-top: clamp(10px, 0.9vw, 14px); }

.insights { display: grid; grid-template-columns: 1fr; gap: clamp(11px, 0.95vw, 16px); }
.insights > li { display: flex; container-type: inline-size; }
.insights > li[hidden] { display: none; }
.insight {
  display: flex;
  flex-direction: column;
  width: 100%;
  background: var(--pacific);
  border-radius: var(--radius-card);
  overflow: hidden;
  transition: transform 0.25s var(--ease);
}
.section--ivory a.insight { color: var(--on-dark); }
.section--ivory a.insight:hover { color: var(--on-dark); transform: translateY(-3px); }
.insight__media { aspect-ratio: 12 / 5; background: var(--deep); }
.insight__media img { width: 100%; height: 100%; object-fit: cover; }
.insight__body {
  display: flex;
  flex-direction: column;
  gap: clamp(9px, 3.4cqi, 13px);
  flex: 1;
  padding: clamp(13px, 5.5cqi, 17px) clamp(13px, 5.8cqi, 18px) clamp(16px, 7.6cqi, 23px);
}
.insight .meta { font-size: clamp(10.5px, 3.6cqi, 11.5px); gap: clamp(8px, 3cqi, 11px); }
.insight__title {
  font-weight: 400;
  font-size: clamp(16px, 7.2cqi, 22px);
  line-height: 1.2;
  color: var(--ivory);
}
.insight .link-arrow { margin-top: auto; padding-top: clamp(10px, 4.6cqi, 17px); }
.section--ivory .insight .link-arrow { color: var(--bronze); }
.section--ivory .insight .link-arrow .icon { color: var(--bronze); }
.section--ivory a.insight:hover .link-arrow { gap: 15px; }

/* 34. Statement band ---------------------------------------------------- */
.statement {
  display: grid;
  align-items: center;
  gap: clamp(18px, 2vw, 30px);
  padding: clamp(20px, 1.65vw, 28px) clamp(20px, 2.2vw, 36px);
  border: 1px solid var(--line-bronze);
  border-radius: var(--radius-card);
  text-wrap: wrap;
}
.statement__lead { display: grid; gap: clamp(4px, 0.5vw, 8px); }
.statement__title { font-size: clamp(23px, 1.85vw, 32px); line-height: 1.1; color: var(--pacific); }
.statement__text { max-width: 24em; font-size: clamp(13px, 0.9vw, 15px); line-height: 1.36; color: var(--ink-soft); }
.statement__cta { justify-self: start; }

@media (min-width: 900px) {
  .statement { grid-template-columns: minmax(0, 414fr) minmax(0, 518fr); column-gap: clamp(24px, 2.6vw, 44px); }
  .statement__cta { grid-column: 1 / -1; }
}

@media (min-width: 1100px) {
  .insights { grid-template-columns: repeat(5, minmax(0, 1fr)); }
  .statement {
    grid-template-columns: minmax(0, 414fr) minmax(0, 518fr) minmax(0, 572fr);
    column-gap: 0;
    padding-block: clamp(20px, 1.65vw, 28px);
    padding-inline: 0;
  }
  .statement__lead { padding-left: calc(var(--band-w) * 0.082); padding-right: clamp(16px, 1.4vw, 26px); }
  .statement__text {
    align-self: stretch;
    display: grid;
    align-content: center;
    max-width: calc(23em + var(--band-w) * 0.037);
    padding-left: calc(var(--band-w) * 0.037);
    border-left: 1px solid var(--line-bronze);
  }
  .statement__cta { grid-column: auto; margin-left: calc(var(--band-w) * 0.039); }
}

@media (min-width: 600px) and (max-width: 1099px) {
  .insights { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (min-width: 900px) and (max-width: 1099px) {
  .insights { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 899px) {
  .chip { min-height: 40px; }
}

/* 35. Contact hero ------------------------------------------------------ */
/* Tallest hero on the site: the copy column carries two enquiry cards and
   the message panel sits in the right column, both over the photo. */
.hero--contact { --hero-split: 0.232; --hero-ratio: 0.418; }
.hero--contact .hero__bg { object-position: 50% 50%; }
.hero--contact .hero__title { margin-bottom: var(--s-5); }
.hero--contact .hero__sub {
  margin-bottom: var(--s-5);
  font-size: clamp(11px, 0.62vw + 8px, 15px);
  letter-spacing: 0.2em;
}
.hero--contact .hero__rule { margin-bottom: var(--s-5); }
.hero--contact .hero__line { max-width: 24em; margin-bottom: 0; }

.contact-hero { display: grid; gap: clamp(28px, 3.2vw, 46px); align-items: center; }
.contact-hero__lead { display: grid; align-content: center; justify-items: start; }

.enquiries {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(12px, 1.7vw, 26px);
  width: 100%;
  margin-top: clamp(24px, 2.6vw, 40px);
}
.ecard {
  display: grid;
  align-content: start;
  padding: clamp(18px, 2vw, 31px) clamp(16px, 1.7vw, 26px) clamp(18px, 1.9vw, 30px);
  background: rgba(4, 29, 40, 0.5);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-card);
}
.ecard__head { display: flex; align-items: center; gap: clamp(14px, 2.1vw, 32px); }
.ecard__icon {
  flex: none;
  width: clamp(24px, 2.1vw, 32px);
  height: auto;
  aspect-ratio: 1;
  stroke-width: 1.15;
  color: var(--bronze);
}
.ecard__title {
  font-family: var(--font-ui);
  font-size: clamp(11px, 0.82vw, 13px);
  font-weight: 500;
  letter-spacing: var(--tracking-caps);
  text-transform: uppercase;
  line-height: 1.3;
  color: var(--bronze);
}
.ecard__text {
  margin-top: clamp(14px, 1.5vw, 23px);
  font-family: var(--font-ui);
  font-weight: 300;
  font-size: clamp(13px, 0.98vw, 15.5px);
  line-height: 1.5;
  color: var(--on-dark-soft);
}
.ecard__rule { margin-top: clamp(11px, 1.2vw, 18px); }
.ecard__rows { display: grid; gap: clamp(9px, 1vw, 15px); margin-top: clamp(12px, 1.35vw, 20px); }
.crow {
  display: flex;
  align-items: center;
  gap: clamp(9px, 0.9vw, 13px);
  font-family: var(--font-ui);
  font-weight: 400;
  font-size: clamp(13px, 0.98vw, 15.5px);
  line-height: 1.3;
  color: var(--ivory);
}
a.crow:hover { color: var(--sand); }
.crow .icon { width: clamp(17px, 1.45vw, 22px); height: auto; aspect-ratio: 1; color: var(--bronze); }

/* solid glyphs — contact lines only (see brand guideline, 06) */
.icon--solid { fill: currentColor; stroke: none; }

/* 36. Message panel ----------------------------------------------------- */
.mform {
  display: grid;
  align-content: start;
  gap: clamp(14px, 1.4vw, 21px);
  padding: clamp(18px, 1.75vw, 28px) clamp(16px, 1.6vw, 25px) clamp(18px, 1.8vw, 28px);
  background: rgba(6, 42, 56, 0.92);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-card);
}
.mform__label {
  font-family: var(--font-ui);
  font-size: clamp(11px, 0.82vw, 13px);
  font-weight: 500;
  letter-spacing: var(--tracking-caps);
  text-transform: uppercase;
  color: var(--bronze);
}
.field-grid { display: grid; grid-template-columns: 1fr; gap: clamp(12px, 1.35vw, 20px); }
.field--lg {
  min-height: clamp(40px, 2.85vw, 44px);
  padding: 11px clamp(12px, 1.1vw, 16px);
  font-size: clamp(13px, 0.92vw, 14px);
}
.field--area {
  min-height: clamp(90px, 7.4vw, 110px);
  padding-top: 12px;
  line-height: 1.5;
  resize: vertical;
}

.checkfield {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start;
  gap: clamp(10px, 0.9vw, 13px);
}
.checkfield__box {
  appearance: none;
  -webkit-appearance: none;
  flex: none;
  width: clamp(17px, 1.35vw, 20px);
  height: clamp(17px, 1.35vw, 20px);
  margin: 2px 0 0;
  background: var(--surface-dark-lift);
  border: 1px solid var(--line-dark-strong);
  border-radius: var(--radius);
  cursor: pointer;
  transition: background-color 0.22s var(--ease), border-color 0.22s var(--ease);
}
.checkfield__box:hover { border-color: var(--bronze); }
.checkfield__box:checked { background: var(--bronze); border-color: var(--bronze); }
.checkfield__box:checked::after {
  content: "";
  display: block;
  width: 30%;
  height: 54%;
  margin: 8% auto 0;
  border: solid var(--deep);
  border-width: 0 2px 2px 0;
  transform: rotate(43deg);
}
.checkfield__label {
  font-family: var(--font-ui);
  font-weight: 300;
  font-size: clamp(12px, 0.88vw, 13.5px);
  line-height: 1.45;
  color: var(--on-dark-soft);
}

.mform__actions { display: grid; grid-template-columns: 1fr; gap: clamp(12px, 1.35vw, 20px); }
.mform__actions .btn {
  width: 100%;
  justify-content: center;
  min-height: 40px;
  padding-block: 11px;
}
.mform__note { font-size: clamp(11.5px, 0.85vw, 13px); line-height: 1.4; color: var(--on-dark-soft); }

/* 37. Offices band ------------------------------------------------------ */
.section--offices { padding-block: clamp(18px, 1.45vw, 24px) clamp(24px, 2vw, 34px); }
.offices-band { display: grid; gap: clamp(24px, 2.6vw, 40px); align-items: start; }
.offices-band__main { position: relative; padding-top: clamp(6px, 0.8vw, 14px); }

.offices { display: grid; grid-template-columns: 1fr; margin-top: clamp(16px, 1.7vw, 26px); }
.office {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: clamp(14px, 1.6vw, 24px);
  align-items: start;
  padding-bottom: clamp(18px, 1.9vw, 30px);
}
.office__badge {
  display: grid;
  place-items: center;
  width: clamp(56px, 4.9vw, 84px);
  aspect-ratio: 1;
  border: 1px solid var(--line-bronze);
  border-radius: 50%;
}
.office__badge .icon { width: 72%; height: 72%; stroke-width: 1.4; color: var(--bronze); }
.office__name {
  font-family: var(--font-ui);
  font-size: clamp(12px, 0.92vw, 14px);
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  line-height: 1.2;
  color: var(--pacific);
}
.office__addr {
  margin-top: clamp(8px, 0.9vw, 14px);
  font-size: clamp(14px, 1.08vw, 16.5px);
  line-height: 1.35;
  color: var(--pacific);
}
.office__phone {
  margin-top: clamp(9px, 1vw, 15px);
  font-size: clamp(14px, 1.08vw, 16.5px);
  line-height: 1.35;
  color: var(--ink-soft);
}

.office-note {
  display: flex;
  align-items: center;
  gap: clamp(12px, 1.2vw, 18px);
  padding-top: clamp(14px, 1.35vw, 21px);
  font-size: clamp(13px, 0.98vw, 15px);
  line-height: 1.35;
  color: var(--ink-soft);
}
.office-note .icon { flex: none; width: clamp(18px, 1.45vw, 22px); height: auto; aspect-ratio: 1; color: var(--bronze); }

/* 38. Access card ------------------------------------------------------- */
.access-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  column-gap: clamp(16px, 2.6vw, 38px);
  align-items: start;
  padding: clamp(24px, 3.2vw, 47px) clamp(20px, 3.1vw, 46px) clamp(20px, 1.95vw, 30px);
  background: var(--pacific);
  border-radius: var(--radius-card);
}
.access-card__icon {
  width: clamp(24px, 2.2vw, 33px);
  height: auto;
  aspect-ratio: 1;
  stroke-width: 1.2;
  color: var(--bronze);
  transform: translateY(clamp(1px, 0.3vw, 5px));
}
.access-card__body { display: grid; justify-items: start; }
.access-card__title {
  font-weight: 400;
  font-size: clamp(20px, 1.65vw, 26px);
  line-height: 1.16;
  color: var(--ivory);
}
.access-card__text {
  margin-top: clamp(10px, 1.1vw, 17px);
  max-width: 27em;
  font-size: clamp(14px, 1.1vw, 17px);
  line-height: 1.38;
  color: var(--on-dark-soft);
}
.access-card .btn {
  margin-top: clamp(16px, 1.95vw, 30px);
  gap: clamp(12px, 1.6vw, 24px);
  padding-inline: clamp(24px, 3.4vw, 52px);
  min-height: 42px;
}
.section--ivory .access-card .btn--primary { color: var(--deep); }
.section--ivory .access-card .btn--primary:hover { color: var(--deep); }

/* ---------- Responsive additions: contact page ---------- */
@media (min-width: 600px) {
  .enquiries { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .field-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .field-grid > .field--wide { grid-column: 1 / -1; }
  .mform__actions { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .mform__actions .btn { grid-column: 2; }
}

@media (min-width: 900px) {
  .offices { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .office + .office { padding-left: clamp(18px, 3.1vw, 46px); border-left: 1px solid var(--line-light); }
}

@media (min-width: 1100px) {
  .hero--contact .hero__body {
    padding-inline: var(--band-left);
    padding-block: clamp(30px, 2.9vw, 50px) clamp(16px, 1.6vw, 26px);
  }
  .hero--contact .hero__inner { max-width: none; width: 100%; }
  .hero--contact .hero__veil {
    background:
      linear-gradient(to right,
        var(--pacific) 0,
        var(--pacific) calc(var(--band-left) + var(--band-w) * var(--hero-split)),
        rgba(6, 42, 56, 0.72) calc(var(--band-left) + var(--band-w) * (var(--hero-split) + 0.03)),
        rgba(6, 42, 56, 0.28) calc(var(--band-left) + var(--band-w) * (var(--hero-split) + 0.075)),
        rgba(6, 42, 56, 0.1) calc(var(--band-left) + var(--band-w) * (var(--hero-split) + 0.13))),
      linear-gradient(to bottom, rgba(4, 29, 40, 0.34) 0%, rgba(4, 29, 40, 0.12) 45%, rgba(4, 29, 40, 0.5) 100%);
  }
  .hero--contact .hero__title {
    margin-bottom: var(--s-5);
    font-size: clamp(40px, 4.6vw, 82px);
    line-height: 1;
  }
  .hero--contact .hero__line {
    max-width: 24em;
    margin-bottom: 0;
    font-size: clamp(16px, 1.24vw, 21px);
    line-height: 1.45;
  }
  .contact-hero { grid-template-columns: minmax(0, 50.9fr) minmax(0, 39.4fr); column-gap: 9.4%; }

  .offices-band { grid-template-columns: minmax(0, 55.6fr) minmax(0, 39.1fr); column-gap: 4.8%; }
  .offices-band__main { padding-right: clamp(20px, 4.5vw, 68px); }
  .offices-band__main::after {
    content: "";
    position: absolute;
    right: 0;
    top: clamp(24px, 2.7vw, 43px);
    bottom: 0;
    width: 1px;
    background: var(--line-light);
  }
}
