@charset "UTF-8";
/* =========================================================================
   WeConsulting. — Design System
   Editorial minimalism. Black / white / olive (#38590A, sampled from the mark).
   Author: build system. Single stylesheet, no dependencies.
   ========================================================================= */

/* ---------- 1. Tokens ---------------------------------------------------- */
:root {
  /* Brand */
  --ink:            #0A0A0A;
  --ink-90:         #1C1C1C;
  --ink-70:         #4A4A4A;
  --ink-55:         #6E6E6E;
  --ink-40:         #9B9B9B;   /* decorative only — fails 4.5:1, never use for text */
  --ink-20:         #D6D6D6;
  --paper:          #FFFFFF;
  --paper-2:        #F6F5F1;   /* warm off-white */
  --paper-3:        #EDEBE4;
  --olive:          #38590A;   /* sampled from the logo dot */
  --olive-mid:      #52810E;
  --olive-bright:   #86B534;   /* for dark backgrounds — 6.1:1 on ink */
  --olive-wash:     #F0F3E7;

  --rule:           rgba(10, 10, 10, .13);
  --rule-strong:    rgba(10, 10, 10, .28);
  --rule-invert:    rgba(255, 255, 255, .18);

  /* Type */
  --font-display: "Playfair Display", "Iowan Old Style", "Times New Roman", serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;

  --fs-micro:   .6875rem;  /* 11 */
  --fs-tiny:    .75rem;    /* 12 */
  --fs-small:   .8125rem;  /* 13 */
  --fs-base:    1rem;      /* 16 */
  --fs-lead:    1.125rem;  /* 18 */

  --track-label: .18em;

  /* Space (8pt rhythm) */
  --s-1: 4px;   --s-2: 8px;   --s-3: 12px;  --s-4: 16px;  --s-5: 24px;
  --s-6: 32px;  --s-7: 48px;  --s-8: 64px;  --s-9: 96px;  --s-10: 128px;

  --gutter: clamp(20px, 4.2vw, 56px);
  --maxw: 1560px;
  --measure: 68ch;

  /* Motion */
  --ease-out: cubic-bezier(.22, 1, .36, 1);
  --ease-in-out: cubic-bezier(.65, 0, .35, 1);
  --dur-micro: 200ms;
  --dur-mid: 420ms;
  --dur-reveal: 900ms;

  /* Layers */
  --z-canvas: 0;  --z-base: 10;  --z-sticky: 40;
  --z-header: 100; --z-menu: 110; --z-overlay: 1000;

  --header-h: 82px;
}

@media (max-width: 900px) { :root { --header-h: 66px; } }

/* ---------- 2. Reset ----------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: var(--fs-base);
  line-height: 1.6;
  font-feature-settings: "kern" 1, "liga" 1, "cv11" 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
body.is-locked { overflow: hidden; }

img, svg, video, canvas { display: block; max-width: 100%; }
img { height: auto; }
button, input, select, textarea { font: inherit; color: inherit; }
button { background: none; border: 0; padding: 0; cursor: pointer; }
a { color: inherit; text-decoration: none; }
ul, ol { margin: 0; padding: 0; list-style: none; }
figure, blockquote, p, h1, h2, h3, h4, h5, h6 { margin: 0; }
hr { border: 0; border-top: 1px solid var(--rule); margin: 0; }
:focus-visible {
  outline: 2px solid var(--olive);
  outline-offset: 3px;
  border-radius: 1px;
}
::selection { background: var(--olive); color: #fff; }

/* ---------- 3. Layout ---------------------------------------------------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.wrap--narrow { max-width: 1080px; }
.wrap--reading { max-width: 780px; }

.section { padding-block: clamp(72px, 10vw, 152px); position: relative; }
.section--tight { padding-block: clamp(56px, 7vw, 96px); }
.section--flush-top { padding-top: 0; }
.section--paper2 { background: var(--paper-2); }
.section--ink { background: var(--ink); color: var(--paper); }
.section--ink hr, .section--ink .rule { border-color: var(--rule-invert); }

.grid { display: grid; gap: var(--s-6); }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.grid-12 { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); gap: var(--s-6); }
@media (max-width: 1024px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .grid-12 { grid-template-columns: repeat(6, minmax(0, 1fr)); }
}
@media (max-width: 680px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: minmax(0, 1fr); }
  .grid-12 { grid-template-columns: minmax(0, 1fr); }
}

.rule { border-top: 1px solid var(--rule); }
.stack > * + * { margin-top: var(--s-5); }
.flow > * + * { margin-top: 1.1em; }

/* ---------- 4. Typography ------------------------------------------------ */
.display,
h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: -.018em;
  line-height: 1.02;
  text-wrap: balance;
}
.d1 { font-size: clamp(2.5rem, 5.6vw, 5.4rem); line-height: .98; letter-spacing: -.026em; }
.d2 { font-size: clamp(2.2rem, 4.6vw, 4.4rem); line-height: 1.02; letter-spacing: -.022em; }
.d3 { font-size: clamp(1.65rem, 2.7vw, 2.6rem); line-height: 1.1;  letter-spacing: -.018em; }
.d4 { font-size: clamp(1.3rem, 1.8vw, 1.7rem);  line-height: 1.2;  letter-spacing: -.012em; }
.d5 { font-size: clamp(1.12rem, 1.35vw, 1.32rem); line-height: 1.28; letter-spacing: -.008em; }
.italic { font-style: italic; }
.olive { color: var(--olive); }
.section--ink .olive { color: var(--olive-bright); }

.lead {
  font-size: clamp(1.06rem, 1.35vw, 1.3rem);
  line-height: 1.58;
  color: var(--ink-70);
  max-width: var(--measure);
  text-wrap: pretty;
}
.section--ink .lead, .film .lead, .footer .lead { color: rgba(255,255,255,.75); }

.body-copy { color: var(--ink-70); max-width: var(--measure); text-wrap: pretty; }
.body-copy strong { color: var(--ink); font-weight: 600; }
.section--ink .body-copy, .film .body-copy, .footer .body-copy { color: rgba(255,255,255,.75); }
.section--ink .body-copy strong { color: #fff; }

.label {
  font-family: var(--font-body);
  font-size: var(--fs-micro);
  font-weight: 600;
  letter-spacing: var(--track-label);
  text-transform: uppercase;
  color: var(--ink-55);
  display: inline-flex; align-items: baseline; gap: .75em; flex-wrap: wrap;
}
.label .num { color: var(--olive); font-variant-numeric: tabular-nums; white-space: nowrap; }
.section--ink .label, .film .label, .footer .label { color: rgba(255,255,255,.62); }
.section--ink .label .num, .film .label .num, .footer .label .num { color: var(--olive-bright); }

.eyebrow {
  display: flex; align-items: center; gap: var(--s-4);
  margin-bottom: var(--s-6);
}
.eyebrow::after { content: ""; flex: 1; height: 1px; background: var(--rule); }
.section--ink .eyebrow::after, .film .eyebrow::after, .footer .eyebrow::after { background: var(--rule-invert); }

.tnum { font-variant-numeric: tabular-nums; }

/* Dot that echoes the logo's full stop */
.dot { color: var(--olive); }
.section--ink .dot, .film .dot, .footer .dot,
.header.is-invert .dot, .cta-band .dot { color: var(--olive-bright); }
.cta-band .dot { color: #fff; }

/* ---------- 4b. Generated artwork -------------------------------------- *
 * Ink strokes in the generated SVGs use currentColor so they invert inside
 * dark sections. Olive accents are coloured here (CSS rules beat SVG
 * presentation attributes, and var() is unreliable inside them).           */
.a-os { stroke: var(--olive); }
.a-of { fill: var(--olive); }
.section--ink .a-os, .film .a-os, .footer .a-os { stroke: var(--olive-bright); }
.section--ink .a-of, .film .a-of, .footer .a-of { fill: var(--olive-bright); }
.cta-band .a-os { stroke: #fff; }
.cta-band .a-of { fill: #fff; }

/* ---------- 5. Links & buttons ------------------------------------------- */
.link {
  display: inline-flex; align-items: center; gap: .55em;
  font-size: var(--fs-small); font-weight: 600;
  letter-spacing: .09em; text-transform: uppercase;
  padding-block: 11px;
  position: relative; color: var(--ink);
}
.link::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0;
  height: 1px; background: currentColor;
  transform-origin: right; transform: scaleX(1);
  transition: transform var(--dur-mid) var(--ease-out);
}
.link:hover::after, .link:focus-visible::after { transform-origin: left; transform: scaleX(0); }
.link .arw { transition: transform var(--dur-mid) var(--ease-out); }
.link:hover .arw { transform: translateX(6px); }
.section--ink .link, .film .link, .footer .link, .cta-band .link { color: #fff; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .7em;
  min-height: 52px; padding: 0 28px;
  font-size: var(--fs-small); font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  border: 1px solid var(--ink); color: var(--ink);
  background: transparent; position: relative; overflow: hidden; isolation: isolate;
  transition: color var(--dur-mid) var(--ease-out), border-color var(--dur-mid) var(--ease-out);
  cursor: pointer;
}
.btn > * { position: relative; z-index: 1; }
.btn::before {
  content: ""; position: absolute; inset: 0; background: var(--ink); z-index: -1;
  transform: translateY(101%); transition: transform var(--dur-mid) var(--ease-out);
}
.btn:hover::before, .btn:focus-visible::before { transform: translateY(0); }
.btn:hover, .btn:focus-visible { color: var(--paper); }
.btn .arw { transition: transform var(--dur-mid) var(--ease-out); }
.btn:hover .arw { transform: translateX(5px); }

.btn--solid { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.btn--solid::before { background: var(--olive); transform: translateY(101%); }
.btn--solid:hover, .btn--solid:focus-visible { color: #fff; border-color: var(--olive); }

.btn--olive { background: var(--olive); border-color: var(--olive); color: #fff; }
.btn--olive::before { background: var(--ink); }
.btn--olive:hover { border-color: var(--ink); color: #fff; }

.section--ink .btn, .footer .btn, .film .btn { border-color: rgba(255,255,255,.4); color: #fff; }
.section--ink .btn::before, .footer .btn::before, .film .btn::before { background: #fff; }
.section--ink .btn:hover, .footer .btn:hover, .film .btn:hover { color: var(--ink); border-color: #fff; }
.section--ink .btn:focus-visible, .footer .btn:focus-visible, .film .btn:focus-visible { color: var(--ink); }
.section--ink :focus-visible, .footer :focus-visible, .film :focus-visible,
.cta-band :focus-visible { outline-color: var(--olive-bright); }
.cta-band :focus-visible { outline-color: #fff; }

.btn--sm { min-height: 42px; padding: 0 18px; font-size: var(--fs-micro); }

/* Header button has to survive the header inverting over dark sections */
.header.is-invert .btn--solid {
  background: #fff; color: var(--ink); border-color: #fff;
}
.header.is-invert .btn--solid::before { background: var(--olive-bright); }
.header.is-invert .btn--solid:hover,
.header.is-invert .btn--solid:focus-visible { color: var(--ink); border-color: var(--olive-bright); }
.btn:disabled { opacity: .45; cursor: not-allowed; }
.btn:disabled::before { transform: translateY(101%); }

.arw { display: inline-block; width: 1em; height: 1em; flex: none; }

/* ---------- 6. Header ---------------------------------------------------- */
.header {
  position: fixed; inset: 0 0 auto 0; z-index: var(--z-header);
  height: var(--header-h);
  background: rgba(255,255,255,.86);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: background var(--dur-mid) var(--ease-out),
              border-color var(--dur-mid) var(--ease-out),
              transform var(--dur-mid) var(--ease-out);
}
.header.is-scrolled { border-bottom-color: var(--rule); }
.header.is-hidden { transform: translateY(-100%); }
.header.is-invert {
  background: rgba(10,10,10,.72); color: #fff; border-bottom-color: transparent;
}
.header.is-invert.is-scrolled { border-bottom-color: var(--rule-invert); }

.header__inner {
  height: 100%; display: flex; align-items: center; justify-content: space-between;
  gap: var(--s-6);
}
.brand { display: flex; align-items: center; gap: 14px; flex: none; }
.brand__mark { width: 46px; color: var(--ink); transition: color var(--dur-mid) var(--ease-out); }
.header.is-invert .brand__mark { color: #fff; }
.brand__word {
  font-family: var(--font-display); font-size: 1.32rem; letter-spacing: -.015em;
  line-height: 1; padding-top: 2px;
}
@media (max-width: 420px) { .brand__word { font-size: 1.1rem; } .brand__mark { width: 38px; } }

.nav { display: flex; align-items: center; gap: clamp(14px, 2vw, 34px); }
.nav__item { position: relative; }
.nav__link {
  display: inline-flex; align-items: center; gap: .45em;
  font-size: var(--fs-small); font-weight: 500; letter-spacing: .04em;
  padding: 10px 0; position: relative; white-space: nowrap;
}
.nav__link::after {
  content: ""; position: absolute; left: 0; bottom: 4px; height: 1px; width: 100%;
  background: currentColor; transform: scaleX(0); transform-origin: left;
  transition: transform var(--dur-mid) var(--ease-out);
}
.nav__link:hover::after, .nav__item.is-open .nav__link::after,
.nav__link[aria-current="page"]::after { transform: scaleX(1); }
.nav__link[aria-current="page"] { color: var(--olive); }
.header.is-invert .nav__link[aria-current="page"] { color: var(--olive-bright); }
.nav__caret { width: 9px; height: 9px; transition: transform var(--dur-micro) var(--ease-out); }
.nav__item.is-open .nav__caret { transform: rotate(180deg); }

.header__actions { display: flex; align-items: center; gap: var(--s-4); flex: none; }
@media (max-width: 1180px) { .nav--main, .header__actions .btn { display: none; } }

/* Mega menu */
.mega {
  position: fixed; left: 0; right: 0; top: var(--header-h);
  background: var(--paper); border-bottom: 1px solid var(--rule);
  z-index: var(--z-menu);
  opacity: 0; visibility: hidden; transform: translateY(-8px);
  transition: opacity var(--dur-mid) var(--ease-out), transform var(--dur-mid) var(--ease-out), visibility var(--dur-mid);
  max-height: calc(100dvh - var(--header-h)); overflow-y: auto;
}
.mega.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
.mega__inner { padding-block: clamp(32px, 4vw, 56px); display: grid; grid-template-columns: 300px 1fr; gap: clamp(32px, 5vw, 80px); }
@media (max-width: 900px) { .mega__inner { grid-template-columns: 1fr; } }
.mega__aside .d4 { margin-bottom: var(--s-3); }
.mega__list { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 2px 40px; }
@media (max-width: 1100px) { .mega__list { grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (max-width: 620px)  { .mega__list { grid-template-columns: 1fr; } }
.mega__link {
  display: flex; align-items: baseline; gap: 14px;
  padding: 13px 0; border-bottom: 1px solid var(--rule);
  transition: padding-left var(--dur-mid) var(--ease-out), color var(--dur-mid) var(--ease-out);
}
.mega__link:hover { padding-left: 10px; color: var(--olive); }
.mega__link .num { font-size: var(--fs-micro); color: var(--ink-55); font-variant-numeric: tabular-nums; flex: none; }
.mega__link .txt { font-size: .95rem; font-weight: 500; }

/* Burger + mobile drawer */
.burger { width: 44px; height: 44px; display: none; position: relative; margin-right: -8px; }
@media (max-width: 1180px) { .burger { display: block; } }
/* absolutely centred so the two bars share one rotation centre and form a
   true X; grid auto-rows made them converge into a chevron instead */
.burger span {
  position: absolute; left: 50%; top: 50%; width: 24px; height: 2px;
  margin: -1px 0 0 -12px; background: currentColor;
  transition: transform var(--dur-mid) var(--ease-out), opacity var(--dur-micro);
}
.burger span:nth-child(1) { transform: translateY(-7px); }
.burger span:nth-child(3) { transform: translateY(7px); }
body.is-menu-open .burger span:nth-child(1) { transform: translateY(0) rotate(45deg); }
body.is-menu-open .burger span:nth-child(2) { opacity: 0; }
body.is-menu-open .burger span:nth-child(3) { transform: translateY(0) rotate(-45deg); }

.drawer {
  position: fixed; inset: var(--header-h) 0 0 0; z-index: var(--z-menu);
  background: var(--paper); color: var(--ink);
  overflow-y: auto; padding: var(--s-7) 0 var(--s-9);
  transform: translateY(-12px); opacity: 0; visibility: hidden;
  transition: opacity var(--dur-mid) var(--ease-out), transform var(--dur-mid) var(--ease-out), visibility var(--dur-mid);
}
.drawer.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
.drawer__group + .drawer__group { margin-top: var(--s-6); }
.drawer__top {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  font-family: var(--font-display); font-size: 1.9rem; letter-spacing: -.02em;
  padding: 14px 0; border-bottom: 1px solid var(--rule); text-align: left;
}
.drawer__top .sign { font-family: var(--font-body); font-size: 1.1rem; color: var(--olive); transition: transform var(--dur-mid) var(--ease-out); }
.drawer__group.is-open .drawer__top .sign { transform: rotate(45deg); }
.drawer__panel { display: grid; grid-template-rows: 0fr; transition: grid-template-rows var(--dur-mid) var(--ease-out); }
.drawer__group.is-open .drawer__panel { grid-template-rows: 1fr; }
.drawer__panel > div { overflow: hidden; }
.drawer__sub a { display: block; padding: 11px 0 11px 2px; border-bottom: 1px solid var(--rule); font-size: .95rem; color: var(--ink-70); }
.drawer__sub a:hover { color: var(--olive); }
.drawer__cta { margin-top: var(--s-7); display: grid; gap: var(--s-3); }

/* ---------- 7. Preloader & page transition ------------------------------- */
.preload {
  position: fixed; inset: 0; z-index: var(--z-overlay);
  background: var(--paper); display: grid; place-items: center;
  transition: opacity 620ms var(--ease-out), visibility 620ms;
}
.preload.is-done { opacity: 0; visibility: hidden; }
.preload__mark { width: min(230px, 42vw); color: var(--ink); }
.preload__mark .pc { opacity: 0; }
.preload__bar { position: absolute; left: 0; bottom: 0; height: 2px; width: 0; background: var(--olive); transition: width 900ms var(--ease-out); }

/* Draw-on animation for the WE mark */
@keyframes wipeDown { from { clip-path: inset(0 0 100% 0); } to { clip-path: inset(0 0 0 0); } }
@keyframes wipeRight { from { clip-path: inset(0 100% 0 0); } to { clip-path: inset(0 0 0 0); } }
.mark-anim .pc { opacity: 1; }
.mark-anim .pc-w1 { animation: wipeDown 620ms var(--ease-out) both; }
.mark-anim .pc-w2 { animation: wipeDown 620ms var(--ease-out) 110ms both; }
.mark-anim .pc-e1 { animation: wipeRight 520ms var(--ease-out) 320ms both; }
.mark-anim .pc-e2 { animation: wipeRight 520ms var(--ease-out) 420ms both; }
.mark-anim .pc-e3 { animation: wipeRight 520ms var(--ease-out) 520ms both; }

/* ---------- 8. Reveal system --------------------------------------------- */
[data-reveal] { opacity: 0; transform: translateY(26px); }
[data-reveal].is-in {
  opacity: 1; transform: none;
  transition: opacity var(--dur-reveal) var(--ease-out), transform var(--dur-reveal) var(--ease-out);
  transition-delay: var(--rd, 0ms);
}
[data-reveal="fade"] { transform: none; }
[data-reveal="rise"] { transform: translateY(46px); }
[data-reveal="left"] { transform: translateX(-30px); }

/* Line-by-line masked text */
.rt { display: block; }
/* padding + equal negative margin keeps descenders (y, g, p) from being
   clipped by the overflow mask without changing the line rhythm */
.rt .rt-l { display: block; overflow: hidden; padding-bottom: .16em; margin-bottom: -.16em; }
.rt .rt-i { display: block; transform: translateY(105%); }
.rt.is-in .rt-i {
  transform: translateY(0);
  transition: transform 1000ms var(--ease-out);
  transition-delay: calc(var(--i, 0) * 85ms);
}

/* Clip-reveal for media */
.clip-in { clip-path: inset(0 0 100% 0); }
.clip-in.is-in { clip-path: inset(0 0 0 0); transition: clip-path 1100ms var(--ease-out); }

/* ---------- 9. Hero ------------------------------------------------------ */
.hero {
  position: relative; min-height: min(100dvh, 940px);
  display: flex; align-items: flex-end;
  padding-top: calc(var(--header-h) + 48px); padding-bottom: clamp(40px, 6vw, 84px);
  overflow: hidden;
}
/* width/height are required: an absolutely positioned replaced element does
   not stretch to its inset box, it falls back to its 300x150 intrinsic size. */
.hero__canvas {
  position: absolute; inset: 0; width: 100%; height: 100%;
  z-index: var(--z-canvas); pointer-events: none;
  /* fade the field away from the headline so type stays the focus */
  -webkit-mask-image: linear-gradient(105deg, transparent 4%, rgba(0,0,0,.35) 34%, #000 72%);
          mask-image: linear-gradient(105deg, transparent 4%, rgba(0,0,0,.35) 34%, #000 72%);
}
.hero__inner { position: relative; z-index: var(--z-base); width: 100%; }
.hero__title { max-width: 15ch; }
.hero__meta {
  margin-top: clamp(26px, 3.4vw, 44px);
  display: grid; grid-template-columns: 1.25fr 1fr auto; gap: var(--s-6); align-items: end;
}
@media (max-width: 900px) { .hero__meta { grid-template-columns: 1fr; align-items: start; } }
.hero__scroll {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: var(--fs-micro); letter-spacing: var(--track-label); text-transform: uppercase; color: var(--ink-55);
}
.hero__scroll i { display: block; width: 1px; height: 34px; background: var(--ink-20); position: relative; overflow: hidden; }
.hero__scroll i::after {
  content: ""; position: absolute; inset: 0; background: var(--olive);
  animation: scrollTick 2.1s var(--ease-in-out) infinite;
}
@keyframes scrollTick { 0% { transform: translateY(-100%);} 55%,100% { transform: translateY(100%);} }

/* Page hero (interior pages) */
.phero { position: relative; padding-top: calc(var(--header-h) + clamp(56px, 8vw, 120px)); padding-bottom: clamp(40px, 6vw, 88px); overflow: hidden; }
.phero--ink { background: var(--ink); color: var(--paper); }
.phero__grid { display: grid; grid-template-columns: 1.35fr .9fr; gap: clamp(32px, 6vw, 96px); align-items: end; }
@media (max-width: 980px) { .phero__grid { grid-template-columns: 1fr; } }
.phero__art { position: relative; aspect-ratio: 4/3; }
.phero__art svg { width: 100%; height: 100%; }

.crumbs { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; font-size: var(--fs-tiny); color: var(--ink-55); margin-bottom: var(--s-5); }
.crumbs a:hover { color: var(--olive); }
.crumbs .sep { color: var(--ink-20); }
.phero--ink .crumbs { color: rgba(255,255,255,.5); }
.phero--ink .crumbs .sep { color: rgba(255,255,255,.25); }

/* ---------- 10. Stat / credential strip ---------------------------------- */
.stats { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 1px; background: var(--rule); border-block: 1px solid var(--rule); }
@media (max-width: 860px) { .stats { grid-template-columns: repeat(2, minmax(0,1fr)); } }
.stat { background: var(--paper); padding: clamp(24px, 3vw, 40px) clamp(16px, 2vw, 32px); }
.section--paper2 .stat { background: var(--paper-2); }
.stat__n { font-family: var(--font-display); font-size: clamp(2.4rem, 4vw, 3.6rem); line-height: 1; letter-spacing: -.03em; font-variant-numeric: tabular-nums; }
.stat__n .suf { color: var(--olive); }
.stat__t { margin-top: var(--s-3); font-size: var(--fs-small); color: var(--ink-55); line-height: 1.45; }

/* Credential chips */
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  display: inline-flex; align-items: center; gap: .5em;
  padding: 7px 14px; border: 1px solid var(--rule-strong); border-radius: 999px;
  font-size: var(--fs-tiny); font-weight: 500; letter-spacing: .04em; color: var(--ink-70);
  transition: border-color var(--dur-micro), color var(--dur-micro), background var(--dur-micro);
}
.chip:hover { border-color: var(--olive); color: var(--olive); background: var(--olive-wash); }
.section--ink .chip { border-color: var(--rule-invert); color: rgba(255,255,255,.72); }
.section--ink .chip:hover { border-color: var(--olive-bright); color: var(--olive-bright); background: rgba(134,181,52,.08); }

/* ---------- 11. Horizontal services filmstrip ---------------------------- */
.film { position: relative; background: var(--ink); color: var(--paper); }
.film__pin { position: sticky; top: 0; height: 100dvh; display: flex; flex-direction: column; justify-content: center; overflow: hidden; }
.film__head { padding-inline: var(--gutter); max-width: var(--maxw); margin-inline: auto; width: 100%; }
.film__track { display: flex; gap: clamp(18px, 2vw, 32px); padding-inline: var(--gutter); will-change: transform; margin-top: clamp(24px, 4vw, 48px); }
.film__card {
  flex: none; width: clamp(268px, 27vw, 400px);
  border: 1px solid var(--rule-invert); padding: clamp(22px, 2.2vw, 34px);
  display: flex; flex-direction: column; justify-content: space-between; gap: var(--s-8);
  min-height: clamp(320px, 44vh, 440px);
  background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,0));
  transition: border-color var(--dur-mid) var(--ease-out), background var(--dur-mid) var(--ease-out), transform var(--dur-mid) var(--ease-out);
}
.film__card:hover { border-color: var(--olive-bright); background: rgba(134,181,52,.07); transform: translateY(-4px); }
.film__card .idx { font-size: var(--fs-micro); letter-spacing: var(--track-label); color: var(--olive-bright); font-variant-numeric: tabular-nums; }
.film__card h3 { font-size: clamp(1.35rem, 1.8vw, 1.85rem); line-height: 1.12; margin-top: var(--s-4); }
.film__card p { margin-top: var(--s-4); font-size: var(--fs-small); line-height: 1.6; color: rgba(255,255,255,.62); }
.film__progress { height: 1px; background: var(--rule-invert); margin: clamp(24px,3vw,44px) var(--gutter) 0; position: relative; }
.film__progress i { position: absolute; inset: 0 auto 0 0; width: 0; background: var(--olive-bright); }
/* Fallback: plain horizontal scroll when JS/pinning is unavailable */
.no-js .film__pin, .film--fallback .film__pin { position: static; height: auto; padding-block: clamp(64px,8vw,120px); }
.film--fallback .film__track { overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: var(--s-5); }
.film--fallback .film__card { scroll-snap-align: start; }

/* ---------- 12. Sticky scroll story -------------------------------------- */
.story { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 6vw, 96px); align-items: start; }
@media (max-width: 900px) { .story { grid-template-columns: 1fr; } }
.story__sticky { position: sticky; top: calc(var(--header-h) + clamp(32px, 6vw, 88px)); }
@media (max-width: 900px) { .story__sticky { position: static; } }
.story__visual { position: relative; aspect-ratio: 1; border: 1px solid var(--rule); overflow: hidden; background: var(--paper-2); }
.story__visual svg { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0; transition: opacity 600ms var(--ease-out); }
.story__visual svg.is-active { opacity: 1; }
.story__steps > * + * { margin-top: clamp(40px, 8vw, 120px); }
.story__step { opacity: .32; transition: opacity 520ms var(--ease-out); }
.story__step.is-active { opacity: 1; }
.story__step h3 { margin-block: var(--s-3) var(--s-4); }
@media (max-width: 900px) { .story__step { opacity: 1; } }

/* ---------- 12b. Alternating art / text rows ---------------------------- */
.alt-row {
  display: grid; grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(24px, 4vw, 64px); align-items: center;
}
.alt-row__art {
  grid-column: 1 / span 5; aspect-ratio: 4 / 3; overflow: hidden;
  background: var(--paper-2); border: 1px solid var(--rule);
}
.alt-row__txt { grid-column: 8 / span 5; }
.alt-row.is-flip .alt-row__art { grid-column: 8 / span 5; }
.alt-row.is-flip .alt-row__txt { grid-column: 1 / span 5; grid-row: 1; }
@media (max-width: 900px) {
  .alt-row { grid-template-columns: minmax(0, 1fr); }
  .alt-row__art, .alt-row__txt,
  .alt-row.is-flip .alt-row__art, .alt-row.is-flip .alt-row__txt {
    grid-column: 1 / -1; grid-row: auto;
  }
}

/* ---------- 13. Cards ---------------------------------------------------- */
.cards { border-top: 1px solid var(--rule); }
.card-row {
  display: grid; grid-template-columns: 92px 1.1fr 1.4fr auto;
  gap: clamp(16px, 3vw, 48px); align-items: center;
  padding: clamp(22px, 2.4vw, 34px) 0; border-bottom: 1px solid var(--rule);
  position: relative; isolation: isolate;
  transition: color var(--dur-mid) var(--ease-out);
}
.card-row > * { position: relative; z-index: 1; }
.card-row::before {
  content: ""; position: absolute; left: calc(var(--gutter) * -0.5); right: calc(var(--gutter) * -0.5); top: 0; bottom: 0;
  background: var(--olive-wash); opacity: 0; transition: opacity var(--dur-mid) var(--ease-out); z-index: 0;
}
.card-row:hover::before { opacity: 1; }
.card-row:hover .card-row__t { color: var(--olive); }
.card-row__n { font-size: var(--fs-micro); letter-spacing: var(--track-label); color: var(--ink-55); font-variant-numeric: tabular-nums; }
.card-row__t { font-family: var(--font-display); font-size: clamp(1.25rem, 1.9vw, 1.8rem); line-height: 1.12; transition: color var(--dur-mid); }
.card-row__d { font-size: var(--fs-small); color: var(--ink-55); line-height: 1.6; }
.card-row__a { color: var(--ink-40); transition: transform var(--dur-mid) var(--ease-out), color var(--dur-mid); }
.card-row:hover .card-row__a { transform: translateX(6px); color: var(--olive); }
@media (max-width: 900px) {
  .card-row { grid-template-columns: 1fr auto; grid-template-areas: "n a" "t t" "d d"; gap: var(--s-3); }
  .card-row__n { grid-area: n; } .card-row__t { grid-area: t; } .card-row__d { grid-area: d; } .card-row__a { grid-area: a; }
}

.tile {
  display: flex; flex-direction: column; gap: var(--s-4);
  padding: clamp(24px, 2.6vw, 38px); border: 1px solid var(--rule); background: var(--paper);
  transition: border-color var(--dur-mid) var(--ease-out), transform var(--dur-mid) var(--ease-out);
  position: relative; height: 100%;
}
a.tile:hover { border-color: var(--ink); transform: translateY(-4px); }
.tile__k { font-size: var(--fs-micro); letter-spacing: var(--track-label); text-transform: uppercase; color: var(--olive); }
.tile__t { font-family: var(--font-display); font-size: clamp(1.2rem, 1.6vw, 1.55rem); line-height: 1.16; }
.tile__d { font-size: var(--fs-small); color: var(--ink-55); line-height: 1.62; }
.tile__art { aspect-ratio: 16/10; margin: calc(-1 * clamp(24px,2.6vw,38px)) calc(-1 * clamp(24px,2.6vw,38px)) 0; overflow: hidden; background: var(--paper-2); }
.tile__art svg, .tile__art img { width: 100%; height: 100%; object-fit: cover; transition: transform 900ms var(--ease-out); }
a.tile:hover .tile__art svg, a.tile:hover .tile__art img { transform: scale(1.045); }

/* Numbered feature list */
.numlist { border-top: 1px solid var(--rule); }
.numlist li { display: grid; grid-template-columns: 64px 1fr; gap: var(--s-5); padding: clamp(20px,2.2vw,30px) 0; border-bottom: 1px solid var(--rule); }
.numlist .n { font-size: var(--fs-micro); letter-spacing: var(--track-label); color: var(--olive); font-variant-numeric: tabular-nums; padding-top: .45em; }
.numlist h4, .numlist .nl-t { font-family: var(--font-display); font-size: clamp(1.1rem,1.5vw,1.4rem); font-weight: 400; line-height: 1.2; }
.numlist p { margin-top: var(--s-2); font-size: var(--fs-small); color: var(--ink-55); line-height: 1.62; max-width: 62ch; }
@media (max-width: 620px) { .numlist li { grid-template-columns: 1fr; gap: var(--s-2); } .numlist .n { padding-top: 0; } }

/* Deliverables ticks */
.ticks { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: var(--s-3) var(--s-6); }
@media (max-width: 680px) { .ticks { grid-template-columns: 1fr; } }
.ticks li { display: grid; grid-template-columns: 18px 1fr; gap: 14px; padding: 11px 0; border-bottom: 1px solid var(--rule); font-size: .94rem; color: var(--ink-70); }
.ticks svg { width: 14px; height: 14px; margin-top: .42em; color: var(--olive); }
.section--ink .ticks li { border-color: var(--rule-invert); color: rgba(255,255,255,.72); }
.section--ink .ticks svg { color: var(--olive-bright); }

/* ---------- 13b. Components on dark surfaces ---------------------------- *
 * The base olive (#38590A) is only 2.45:1 on ink and --ink-55 is 3.88:1, so
 * every component that can appear inside a dark section needs a light-side
 * palette. Verified against WCAG AA at 4.5:1 for body text.                 */
.section--ink .numlist, .film .numlist,
.section--ink .numlist li, .film .numlist li,
.section--ink .cards, .section--ink .card-row,
.section--ink .dl, .section--ink .dl__row { border-color: var(--rule-invert); }

.section--ink .numlist .n, .film .numlist .n,
.section--ink .card-row__n, .section--ink .tile__k { color: var(--olive-bright); }

.section--ink .numlist .nl-t, .film .numlist .nl-t,
.section--ink .card-row__t, .section--ink .tile__t { color: #fff; }

.section--ink .numlist p, .film .numlist p,
.section--ink .card-row__d, .section--ink .tile__d,
.section--ink .stat__t, .section--ink .form__note,
.section--ink .mat__verdict { color: rgba(255,255,255,.75); }

.section--ink .tile, .section--ink .stat { background: transparent; border-color: var(--rule-invert); }
.section--ink .card-row::before { background: rgba(134,181,52,.10); }
.section--ink .card-row:hover .card-row__t,
.section--ink .card-row:hover .card-row__a { color: var(--olive-bright); }
.section--ink .card-row__a { color: rgba(255,255,255,.5); }
.section--ink .notice { border-color: var(--rule-invert); color: rgba(255,255,255,.7); }
.section--ink .notice svg { color: var(--olive-bright); }

/* ---------- 14. Marquee -------------------------------------------------- */
.marquee { overflow: hidden; border-block: 1px solid var(--rule); padding-block: clamp(16px, 2vw, 26px); }
.marquee__track { display: flex; gap: 0; width: max-content; animation: slide 42s linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__track span {
  font-family: var(--font-display); font-size: clamp(1.4rem, 2.6vw, 2.4rem);
  padding-inline: clamp(20px, 2.4vw, 40px); white-space: nowrap; color: var(--ink);
  display: inline-flex; align-items: center; gap: clamp(20px,2.4vw,40px);
}
.marquee__track span::after { content: "\2022"; color: var(--olive); font-size: .45em; }
@keyframes slide { to { transform: translateX(-50%); } }

/* ---------- 15. Maturity check (interactive) ----------------------------- */
.mat { display: grid; grid-template-columns: 1fr 420px; gap: clamp(32px, 5vw, 80px); align-items: start; }
@media (max-width: 980px) { .mat { grid-template-columns: 1fr; } }
.mat__q + .mat__q { margin-top: var(--s-5); padding-top: var(--s-5); border-top: 1px solid var(--rule); }
.mat__q p { font-size: 1.02rem; margin-bottom: var(--s-4); max-width: 56ch; }
.mat__opts { display: flex; flex-wrap: wrap; gap: 8px; }
.mat__opt {
  border: 1px solid var(--rule-strong); padding: 9px 16px; font-size: var(--fs-small);
  transition: all var(--dur-micro) var(--ease-out); min-height: 44px;
}
.mat__opt:hover { border-color: var(--ink); }
.mat__opt[aria-pressed="true"] { background: var(--ink); border-color: var(--ink); color: #fff; }
.mat__panel { border: 1px solid var(--rule); padding: clamp(24px,3vw,36px); position: sticky; top: calc(var(--header-h) + 32px); background: var(--paper-2); }
@media (max-width: 980px) { .mat__panel { position: static; } }
.mat__score { font-family: var(--font-display); font-size: clamp(3.4rem,7vw,5.2rem); line-height: 1; font-variant-numeric: tabular-nums; letter-spacing: -.03em; }
.mat__score .den { font-size: .34em; color: var(--ink-55); }
.mat__bar { height: 3px; background: var(--ink-20); margin-block: var(--s-5) var(--s-4); position: relative; }
.mat__bar i { position: absolute; inset: 0 auto 0 0; width: 0; background: var(--olive); transition: width 700ms var(--ease-out); }
.mat__verdict { font-size: var(--fs-small); color: var(--ink-70); line-height: 1.62; min-height: 5.6em; }

/* ---------- 16. Forms --------------------------------------------------- */
.form { display: grid; gap: var(--s-5); }
.field { display: grid; gap: 7px; }
.field label { font-size: var(--fs-tiny); font-weight: 600; letter-spacing: .09em; text-transform: uppercase; color: var(--ink-55); }
.field .req { color: var(--olive); }
.field input, .field select, .field textarea {
  width: 100%; min-height: 52px; padding: 14px 0; background: transparent;
  border: 0; border-bottom: 1px solid var(--rule-strong); border-radius: 0;
  font-size: 1rem; transition: border-color var(--dur-micro);
}
.field textarea { min-height: 128px; resize: vertical; padding-top: 12px; }
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%236E6E6E' stroke-width='1.4'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 2px center; background-size: 12px; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-bottom-color: var(--olive); }
.field .hint { font-size: var(--fs-tiny); color: var(--ink-55); }
.field .err { font-size: var(--fs-tiny); color: #B3261E; min-height: 1.45em; visibility: hidden; }
.field.has-error input, .field.has-error select, .field.has-error textarea { border-bottom-color: #B3261E; }
.field.has-error .err { visibility: visible; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s-5); }
@media (max-width: 680px) { .form__row { grid-template-columns: 1fr; } }
.form__note { font-size: var(--fs-tiny); color: var(--ink-55); line-height: 1.6; }
.form > .btn { justify-self: start; }
.form__status { font-size: var(--fs-small); padding: 14px 16px; border: 1px solid var(--rule-strong); display: none; }
.form__status.is-show { display: block; }
.form__status.ok { border-color: var(--olive); background: var(--olive-wash); color: var(--olive); }

/* ---------- 17. Contact / detail lists ----------------------------------- */
.dl { border-top: 1px solid var(--rule); }
.dl__row { display: grid; grid-template-columns: 190px 1fr; gap: var(--s-5); padding: clamp(16px,1.8vw,22px) 0; border-bottom: 1px solid var(--rule); align-items: baseline; }
@media (max-width: 620px) { .dl__row { grid-template-columns: 1fr; gap: 6px; } }
.dl__k { font-size: var(--fs-micro); letter-spacing: var(--track-label); text-transform: uppercase; color: var(--ink-55); }
.dl__v { font-size: 1.02rem; }
.dl__v a { border-bottom: 1px solid var(--rule-strong); transition: border-color var(--dur-micro), color var(--dur-micro); }
.dl__v a:hover { color: var(--olive); border-color: var(--olive); }
.section--ink .dl, .section--ink .dl__row { border-color: var(--rule-invert); }
.section--ink .dl__k { color: rgba(255,255,255,.5); }

.channel { display: grid; grid-template-columns: 44px 1fr; gap: var(--s-4); align-items: center; padding: var(--s-4) 0; border-bottom: 1px solid var(--rule); }
.channel svg { width: 22px; height: 22px; color: var(--olive); }
.channel .t { font-size: var(--fs-micro); letter-spacing: var(--track-label); text-transform: uppercase; color: var(--ink-55); }
.channel .v { font-size: 1.05rem; }
.channel .v a { display: inline-block; padding-block: 7px; }

/* ---------- 18. Article -------------------------------------------------- */
.article { max-width: 760px; margin-inline: auto; }
.article > * + * { margin-top: 1.5em; }
.article h2 { font-size: clamp(1.55rem, 2.4vw, 2.15rem); margin-top: 2.2em; }
.article h3 { font-size: clamp(1.2rem, 1.7vw, 1.5rem); margin-top: 1.8em; }
.article p { color: var(--ink-70); line-height: 1.75; font-size: 1.08rem; }
.article ul { list-style: none; }
.article ul li { position: relative; padding-left: 26px; color: var(--ink-70); line-height: 1.72; margin-top: .65em; }
.article ul li::before { content: ""; position: absolute; left: 4px; top: .72em; width: 7px; height: 1px; background: var(--olive); }
.article blockquote {
  border-left: 2px solid var(--olive); padding-left: var(--s-5); margin-block: 2em;
  font-family: var(--font-display); font-size: clamp(1.3rem,2vw,1.7rem); line-height: 1.34; color: var(--ink);
}
.article__meta { display: flex; flex-wrap: wrap; gap: var(--s-5); font-size: var(--fs-tiny); color: var(--ink-55); letter-spacing: .05em; text-transform: uppercase; }
.progressbar { position: fixed; top: 0; left: 0; height: 2px; background: var(--olive); z-index: calc(var(--z-header) + 1); width: 0; }

/* ---------- 19. In-page nav (scroll spy) --------------------------------- */
.spy { position: sticky; top: calc(var(--header-h) + 40px); }
.spy a { display: block; padding: 9px 0 9px 18px; font-size: var(--fs-small); color: var(--ink-55); border-left: 1px solid var(--rule); transition: color var(--dur-micro), border-color var(--dur-micro); }
.spy a:hover { color: var(--ink-70); }
.spy a.is-active { color: var(--ink); border-left-color: var(--olive); font-weight: 500; }
@media (max-width: 980px) { .spy { display: none; } }


/* ---------- 19b. Service page: sticky index + body --------------------- */
.svc-layout { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); gap: var(--s-6); }
.svc-layout__nav  { grid-column: 1 / span 3; }
.svc-layout__body { grid-column: 5 / span 8; }
@media (max-width: 1100px) {
  .svc-layout { grid-template-columns: minmax(0, 1fr); }
  .svc-layout__nav { display: none; }
  .svc-layout__body { grid-column: 1 / -1; }
}

/* ---------- 20. Notice / draft flag -------------------------------------- */
.notice {
  display: flex; gap: var(--s-3); align-items: flex-start;
  padding: 14px 18px; border: 1px dashed var(--rule-strong);
  font-size: var(--fs-tiny); color: var(--ink-55); line-height: 1.6;
}
.notice svg { width: 15px; height: 15px; flex: none; margin-top: .2em; color: var(--olive); }

/* ---------- 21. Footer --------------------------------------------------- */
.footer { background: var(--ink); color: var(--paper); padding-block: clamp(56px, 7vw, 96px) var(--s-7); }
.footer a:hover { color: var(--olive-bright); }
.footer__top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: clamp(28px, 4vw, 64px); }
@media (max-width: 1024px) { .footer__top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px)  { .footer__top { grid-template-columns: 1fr; } }
.footer__h { font-size: var(--fs-micro); letter-spacing: var(--track-label); text-transform: uppercase; color: rgba(255,255,255,.45); margin-bottom: var(--s-4); }
.footer__list li + li { margin-top: 11px; }
.footer__list a { font-size: .92rem; color: rgba(255,255,255,.78); transition: color var(--dur-micro); }
.footer__brand .brand__mark { width: 62px; color: #fff; }
.footer__cta { margin-top: clamp(40px,5vw,72px); padding-top: var(--s-6); border-top: 1px solid var(--rule-invert); display: flex; flex-wrap: wrap; gap: var(--s-5); align-items: center; justify-content: space-between; }
.footer__legal { margin-top: var(--s-7); padding-top: var(--s-5); border-top: 1px solid var(--rule-invert); display: flex; flex-wrap: wrap; gap: var(--s-4) var(--s-6); justify-content: space-between; font-size: var(--fs-tiny); color: rgba(255,255,255,.45); }
.social { display: flex; gap: var(--s-3); }
.social a { width: 40px; height: 40px; display: grid; place-items: center; border: 1px solid var(--rule-invert); transition: border-color var(--dur-micro), background var(--dur-micro); }
.social a:hover { border-color: var(--olive-bright); background: rgba(134,181,52,.1); }
.social svg { width: 17px; height: 17px; }

/* ---------- 22. CTA band ------------------------------------------------ *
 * Reworked: no longer a flat olive slab. Ink base, a soft olive light source
 * off to one side, and two layers of generated geometry over the top.        */
.cta-band {
  position: relative; overflow: hidden; contain: paint;
  background: var(--ink); color: #fff;
  isolation: isolate;
  border-top: 1px solid rgba(255,255,255,.10);
  border-bottom: 1px solid rgba(255,255,255,.10);
}
.cta-band::before {
  content: ""; position: absolute; inset: -20%; z-index: 0;
  background:
    radial-gradient(58% 78% at 18% 14%, rgba(134,181,52,.34), transparent 64%),
    radial-gradient(64% 86% at 88% 84%, rgba(82,129,14,.46), transparent 66%),
    radial-gradient(50% 60% at 64% 42%, rgba(56,89,10,.34), transparent 70%);
  will-change: auto;
}
.cta-band::after {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(96deg, rgba(10,10,10,.52) 4%, rgba(10,10,10,.24) 46%, rgba(10,10,10,.60));
}
.cta-band .wrap { position: relative; z-index: 2; }
.cta-band__grid { display: grid; grid-template-columns: 1.4fr auto; gap: var(--s-7); align-items: center; }
@media (max-width: 860px) { .cta-band__grid { grid-template-columns: 1fr; } }
.cta-band .btn { border-color: rgba(255,255,255,.55); color: #fff; }
.cta-band .btn::before { background: #fff; }
.cta-band .btn:hover, .cta-band .btn:focus-visible { color: var(--ink); border-color: #fff; }
.cta-band__art { position: absolute; inset: 0; z-index: 1; opacity: .42; }

.cta-band .lead { color: rgba(255,255,255,.86); }

/* ---------- 23. Skip link, utilities ------------------------------------- */
.skip {
  position: absolute; left: 16px; top: -60px; z-index: var(--z-overlay);
  background: var(--ink); color: #fff; padding: 12px 18px; font-size: var(--fs-small);
  transition: top var(--dur-micro);
}
.skip:focus { top: 16px; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.mt-0 { margin-top: 0 !important; }
.mt-3 { margin-top: var(--s-3); } .mt-4 { margin-top: var(--s-4); }
.mt-5 { margin-top: var(--s-5); } .mt-6 { margin-top: var(--s-6); }
.mt-7 { margin-top: var(--s-7); } .mt-8 { margin-top: var(--s-8); }
.mt-9 { margin-top: var(--s-9); }
/* grid-column-end (not the shorthand) so span and start classes compose */
.col-span-3 { grid-column-end: span 3; } .col-span-4 { grid-column-end: span 4; }
.col-span-5 { grid-column-end: span 5; } .col-span-6 { grid-column-end: span 6; }
.col-span-7 { grid-column-end: span 7; } .col-span-8 { grid-column-end: span 8; }
.col-start-8 { grid-column-start: 8; }
@media (max-width: 1024px) {
  [class*="col-span-"] { grid-column-end: span 6; }
  .col-start-8 { grid-column-start: auto; }
}
@media (max-width: 680px) {
  [class*="col-span-"] { grid-column-end: span 1; }
  .col-start-8 { grid-column-start: auto; }
}
.cluster { display: flex; flex-wrap: wrap; gap: var(--s-4); align-items: center; }

/* ---------- 23b. No-JS fallback ----------------------------------------- *
 * `no-js` is on <html> from the server and removed by main.js on boot, so
 * everything stays visible and usable if scripting is off or fails.         */
.no-js .preload { display: none; }
.no-js [data-reveal] { opacity: 1 !important; transform: none !important; }
.no-js .rt .rt-i { transform: none !important; }
.no-js .clip-in { clip-path: none !important; }
.no-js .story__step { opacity: 1; }
.no-js .mega { position: static; opacity: 1; visibility: visible; transform: none; }
.no-js .nav__caret { display: none; }

/* ---------- 24. Reduced motion ------------------------------------------ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important; animation-iteration-count: 1 !important;
    transition-duration: .001ms !important; scroll-behavior: auto !important;
  }
  [data-reveal] { opacity: 1 !important; transform: none !important; }
  .rt .rt-i { transform: none !important; }
  .clip-in { clip-path: none !important; }
  .marquee__track { animation: none; }
  .film__pin { position: static; height: auto; padding-block: 96px; }
  .film__track { overflow-x: auto; }
  .story__step { opacity: 1; }
}

/* ---------- 25. Print ---------------------------------------------------- */
@media print {
  .header, .footer, .preload, .film__progress, .hero__canvas, .cta-band { display: none !important; }
  body { color: #000; }
  a::after { content: " (" attr(href) ")"; font-size: 10px; color: #555; }
}

/* =========================================================================
   26. Office map — stylised lower-Gulf projection
   ========================================================================= */
.mapblock { position: relative; }
.gccmap { width: 100%; height: auto; overflow: hidden; }
.m-grid   { stroke: currentColor; stroke-width: 1; opacity: .10; }
.m-land   { fill: currentColor; opacity: .07; stroke: currentColor; stroke-width: 1; }
.m-land--hot { fill: var(--olive); fill-opacity: .13; opacity: 1; stroke: var(--olive);
               stroke-width: 1.4; stroke-opacity: .55; }
.section--ink .m-land--hot { fill: var(--olive-bright); fill-opacity: .11;
                             stroke: var(--olive-bright); stroke-opacity: .7; }
.m-arc {
  stroke: var(--olive); stroke-width: 1.6; stroke-dasharray: 7 7;
  stroke-dashoffset: 0; animation: arcRun 3.4s linear infinite;
}
.section--ink .m-arc { stroke: var(--olive-bright); }
@keyframes arcRun { to { stroke-dashoffset: -140; } }
.m-dot { fill: var(--olive); }
.section--ink .m-dot { fill: var(--olive-bright); }
.m-tick { stroke: currentColor; stroke-width: 1; opacity: .5; }
.m-city {
  font-family: var(--font-display); font-size: 30px; fill: currentColor; letter-spacing: -.01em;
}
.m-role {
  font-family: var(--font-body); font-size: 13px; font-weight: 600; letter-spacing: .14em;
  text-transform: uppercase; fill: var(--olive);
}
.section--ink .m-role { fill: var(--olive-bright); }
.m-pulse {
  fill: none; stroke: var(--olive); stroke-width: 1.4; transform-origin: center;
  transform-box: fill-box; opacity: 0; animation: pinPulse 3s var(--ease-out) infinite;
  animation-delay: var(--d, 0ms);
}
.m-pulse--2 { animation-delay: calc(var(--d, 0ms) + 1.5s); }
.section--ink .m-pulse { stroke: var(--olive-bright); }
@keyframes pinPulse {
  0%   { transform: scale(.5);  opacity: .85; }
  70%  { transform: scale(3.6); opacity: 0; }
  100% { transform: scale(3.6); opacity: 0; }
}
.m-pin { opacity: 0; transform: translateY(10px); }
.is-in .m-pin, .mapblock.is-in .m-pin {
  opacity: 1; transform: none;
  transition: opacity 620ms var(--ease-out), transform 620ms var(--ease-out);
  transition-delay: calc(var(--d, 0ms) + 120ms);
}
@media (max-width: 680px) { .m-city { font-size: 40px; } }

.offices { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: var(--s-6); }
@media (max-width: 780px) { .offices { grid-template-columns: minmax(0,1fr); } }
.office { border-top: 1px solid var(--rule); padding-top: var(--s-5); }
.section--ink .office { border-color: var(--rule-invert); }
.office__role {
  font-size: var(--fs-micro); letter-spacing: var(--track-label); text-transform: uppercase;
  color: var(--olive); margin-bottom: var(--s-3);
}
.section--ink .office__role { color: var(--olive-bright); }
.office__city { font-family: var(--font-display); font-size: clamp(1.5rem,2.2vw,2rem); line-height: 1.1; }
.office__addr { margin-top: var(--s-4); font-size: .94rem; color: var(--ink-55); line-height: 1.62; }
.section--ink .office__addr { color: rgba(255,255,255,.72); }
.office__links { margin-top: var(--s-4); display: flex; flex-wrap: wrap; gap: var(--s-4); }
.office__links a { font-size: .94rem; border-bottom: 1px solid var(--rule-strong); padding-block: 4px; }
.office__links a:hover { color: var(--olive); border-color: var(--olive); }
.section--ink .office__links a { border-color: var(--rule-invert); }
.section--ink .office__links a:hover { color: var(--olive-bright); border-color: var(--olive-bright); }

/* =========================================================================
   27. Client logo wall
   ========================================================================= */
.clients {
  display: grid; grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px; background: var(--rule); border: 1px solid var(--rule);
}
@media (max-width: 1024px) { .clients { grid-template-columns: repeat(3, minmax(0,1fr)); } }
@media (max-width: 620px)  { .clients { grid-template-columns: repeat(2, minmax(0,1fr)); } }
.client {
  background: var(--paper); display: grid; place-items: center;
  padding: clamp(20px, 2.6vw, 36px); min-height: 132px;
}
.section--paper2 .client { background: var(--paper-2); }
.client img {
  max-height: 62px; width: auto; max-width: 100%; object-fit: contain;
  filter: grayscale(1) contrast(.9); opacity: .62;
  transition: filter var(--dur-mid) var(--ease-out), opacity var(--dur-mid) var(--ease-out),
              transform var(--dur-mid) var(--ease-out);
}
.client:hover img { filter: none; opacity: 1; transform: scale(1.04); }
@media (max-width: 620px) { .client img { max-height: 46px; } }

/* =========================================================================
   28. Expert Network
   ========================================================================= */
.split-cta { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 1px; background: var(--rule); }
@media (max-width: 780px) { .split-cta { grid-template-columns: minmax(0,1fr); } }
.split-cta__half {
  background: var(--paper); padding: clamp(28px, 3.4vw, 52px);
  display: flex; flex-direction: column; gap: var(--s-4);
  position: relative; overflow: hidden; isolation: isolate;
  transition: background var(--dur-mid) var(--ease-out);
}
.split-cta__half:hover { background: var(--olive-wash); }
.split-cta__art {
  position: absolute; inset: 0; z-index: -1; opacity: 0;
  transform: scale(1.08);
  transition: opacity 520ms var(--ease-out), transform 900ms var(--ease-out);
}
.split-cta__half:hover .split-cta__art,
.split-cta__half:focus-visible .split-cta__art { opacity: .22; transform: scale(1); }
.split-cta__k {
  font-size: var(--fs-micro); letter-spacing: var(--track-label);
  text-transform: uppercase; color: var(--olive);
}
.split-cta__half .btn { margin-top: auto; align-self: flex-start; }

/* =========================================================================
   29. Newsletter block
   ========================================================================= */
.news {
  display: grid; grid-template-columns: 1fr auto; gap: var(--s-6);
  align-items: center; padding: clamp(24px, 3vw, 40px);
  border: 1px solid var(--rule); background: var(--paper);
}
@media (max-width: 780px) { .news { grid-template-columns: 1fr; } }
.section--ink .news { border-color: var(--rule-invert); background: transparent; }

/* =========================================================================
   30. Extra motion
   ========================================================================= */
/* Buttons drift very slightly toward the pointer */
.btn, .tile, .client { will-change: transform; }
[data-magnetic] { transition: transform 420ms var(--ease-out); }

/* Parallax drift on decorative artwork */
[data-parallax] { will-change: transform; }

/* Chips settle in one after another */
.chips .chip { opacity: 0; transform: translateY(8px); }
.chips.is-in .chip {
  opacity: 1; transform: none;
  transition: opacity 500ms var(--ease-out), transform 500ms var(--ease-out);
  transition-delay: calc(var(--i, 0) * 38ms);
}

/* Word-by-word emphasis for the biggest statements */
.rt-w { display: inline-block; opacity: 0; transform: translateY(.5em); }
.rt-words.is-in .rt-w {
  opacity: 1; transform: none;
  transition: opacity 620ms var(--ease-out), transform 720ms var(--ease-out);
  transition-delay: calc(var(--i, 0) * 42ms);
}

/* Rule that draws itself across the section */
.eyebrow::after { transform: scaleX(0); transform-origin: left; }
.is-in .eyebrow::after, .eyebrow.is-in::after { transform: scaleX(1); transition: transform 900ms var(--ease-out) 160ms; }
.no-js .eyebrow::after { transform: scaleX(1); }

/* Section headers get a hairline that sweeps in */
.section--ink .cards, .cards { --sweep: 0; }

@media (prefers-reduced-motion: reduce) {
  .m-arc, .m-pulse { animation: none; }
  .m-pin { opacity: 1; transform: none; }
  .chips .chip, .rt-w { opacity: 1 !important; transform: none !important; }
  .eyebrow::after { transform: scaleX(1) !important; }
}

/* =========================================================================
   31. Living abstracts — each generated visual moves in a way that matches
   what it represents. All of it stops for prefers-reduced-motion.
   ========================================================================= */
@keyframes aShimmer { 0%,100% { opacity: .28; } 50% { opacity: 1; } }
@keyframes aFloat   { 0%,100% { transform: translate(0,0); } 50% { transform: translate(6px,-9px); } }
@keyframes aSlide   { 0%,100% { transform: translateX(0); }  50% { transform: translateX(14px); } }
@keyframes aFlow    { 0% { transform: translateX(0); } 100% { transform: translateX(-236px); } }
@keyframes aGrow    { 0%,100% { transform: scaleY(1); } 50% { transform: scaleY(.72); } }
@keyframes aSpin    { to { transform: rotate(360deg); } }
@keyframes aOrbit   { to { transform: rotate(360deg); } }
@keyframes aThrob   { 0%,100% { transform: scale(1); opacity: var(--o,.6); } 50% { transform: scale(1.5); opacity: 1; } }
@keyframes aWrite   { 0% { stroke-dashoffset: 1; } 55%,100% { stroke-dashoffset: 0; } }
@keyframes aTrace   { to { stroke-dashoffset: -1400; } }
@keyframes aEcho    { 0%,100% { transform: translateY(0); } 50% { transform: translateY(5px); } }

.a-shimmer { animation: aShimmer 6.5s ease-in-out infinite; animation-delay: calc(var(--i,0) * -420ms); }
.a-float   { animation: aFloat 13s ease-in-out infinite;    animation-delay: calc(var(--i,0) * -2.6s); }
.a-slide   { animation: aSlide 11s ease-in-out infinite;    animation-delay: calc(var(--i,0) * -900ms); }
.a-flow    { animation: aFlow 24s linear infinite;          animation-delay: calc(var(--i,0) * -700ms); }
.a-grow    { animation: aGrow 8s ease-in-out infinite;      animation-delay: calc(var(--i,0) * -640ms); }
.a-spin    { animation: aSpin 190s linear infinite; }
.a-orbit   { animation: aOrbit 150s linear infinite;        animation-delay: calc(var(--i,0) * -14s); }
.a-throb   { animation: aThrob 5.2s ease-in-out infinite;   animation-delay: calc(var(--i,0) * -560ms); }
.a-write   { stroke-dasharray: 1; pathLength: 1; animation: aWrite 9s ease-in-out infinite;
             animation-delay: calc(var(--i,0) * -300ms); }
.a-trace   { stroke-dasharray: 22 1400; animation: aTrace 7s linear infinite; }
.a-echo    { animation: aEcho 9s ease-in-out infinite;      animation-delay: calc(var(--i,0) * -800ms); }

/* Artwork only animates once it is on screen, and only where it is decorative */
.phero__art > svg, .tile__art > svg, .story__visual > svg, .alt-row__art > svg,
.split-cta__art > svg, .cta-band__art > svg, .mat__art > svg {
  display: block; width: 100%; height: 100%; overflow: hidden;
}
.phero__art, .tile__art, .alt-row__art, .split-cta__art, .cta-band__art { overflow: hidden; }
.split-cta__art, .cta-band__art { position: absolute; inset: 0; }

@media (prefers-reduced-motion: reduce) {
  .a-shimmer, .a-float, .a-slide, .a-flow, .a-grow, .a-spin, .a-orbit,
  .a-throb, .a-signal, .a-write, .a-trace, .a-echo { animation: none !important; }
  .a-write { stroke-dasharray: none; }
  .a-trace { stroke-dasharray: none; }
}

/* =========================================================================
   32. Photography
   ========================================================================= */
.ph { display: block; width: 100%; height: 100%; object-fit: cover; }
.ph-wrap { position: relative; overflow: hidden; background: var(--paper-2); }
.ph-wrap::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(200deg, rgba(10,10,10,0) 42%, rgba(10,10,10,.34));
  opacity: .9; transition: opacity var(--dur-mid) var(--ease-out);
}
a:hover > .ph-wrap::after, a:hover .ph-wrap::after { opacity: .55; }
.ph-wrap .ph { transition: transform 1200ms var(--ease-out), filter var(--dur-mid) var(--ease-out); }
a:hover .ph-wrap .ph { transform: scale(1.05); }

/* Industry cards: photo fills the art slot */
.tile__art.ph-wrap { aspect-ratio: 16/10; }
.story__visual .ph-wrap, .alt-row__art.ph-wrap { position: absolute; inset: 0; }
.story__visual .ph-wrap { opacity: 0; transition: opacity 600ms var(--ease-out); }
.story__visual .ph-wrap.is-active { opacity: 1; }

/* photo wrapper filling an aspect-ratio box (industry page hero) */
.ph-inner { display: block; width: 100%; height: 100%; }
.ph-inner picture, .ph-wrap picture { display: block; width: 100%; height: 100%; }
.phero__art.ph-wrap { border: 1px solid var(--rule); }
.story__visual .ph-wrap::after { opacity: .28; }
.alt-row__art.ph-wrap::after { opacity: .22; }

/* keep the map from dominating the viewport on wide screens */
.mapblock { max-width: 940px; margin-inline: auto; }

/* =========================================================================
   33. Motion vocabulary for the reworked abstracts

   Note: a CSS animation overrides the SVG `opacity` presentation attribute
   outright, so these peaks are the real ceiling. Ink elements top out well
   below 1 to keep the artwork airy; only the olive accents go to full.
   ========================================================================= */
@keyframes aDraw    { 0% { stroke-dashoffset: 1; opacity: 0; }
                      18% { opacity: .5; } 55% { stroke-dashoffset: 0; }
                      85% { stroke-dashoffset: -1; opacity: .5; }
                      100% { stroke-dashoffset: -1; opacity: 0; } }
@keyframes aDrawHot { 0% { stroke-dashoffset: 1; opacity: 0; }
                      18% { opacity: 1; } 55% { stroke-dashoffset: 0; }
                      85% { stroke-dashoffset: -1; opacity: 1; }
                      100% { stroke-dashoffset: -1; opacity: 0; } }
@keyframes aRay     { 0%,100% { stroke-dashoffset: 1; } 40%,70% { stroke-dashoffset: 0; } }
@keyframes aRing    { 0%,100% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.035); opacity: .55; } }
@keyframes aCell    { 0%,100% { opacity: .10; } 46% { opacity: .34; } }
@keyframes aCellHot { 0%,100% { opacity: .32; } 46% { opacity: .82; } }
@keyframes aSonar   { 0% { transform: scale(.35); opacity: .55; }
                      70% { transform: scale(3.4); opacity: 0; }
                      100% { transform: scale(3.4); opacity: 0; } }
@keyframes aSweep   { 0%,100% { stroke-dashoffset: 1; opacity: .12; }
                      45%,62% { stroke-dashoffset: 0; opacity: .42; } }
@keyframes aSweepHot{ 0%,100% { stroke-dashoffset: 1; opacity: .3; }
                      45%,62% { stroke-dashoffset: 0; opacity: 1; } }
@keyframes aSignal  { 0%,100% { opacity: .10; } 45% { opacity: .48; } }
@keyframes aSignalHot { 0%,100% { opacity: .25; } 45% { opacity: 1; } }

.a-draw  { stroke-dasharray: 1; pathLength: 1;
           animation: aDraw 15s ease-in-out infinite; animation-delay: calc(var(--i,0) * -1.25s); }
.a-os.a-draw { animation-name: aDrawHot; }
.a-ray   { stroke-dasharray: 1; pathLength: 1;
           animation: aRay 9s ease-in-out infinite;  animation-delay: calc(var(--i,0) * -740ms); }
.a-ring  { transform-origin: 360px 270px;
           animation: aRing 12s ease-in-out infinite; animation-delay: calc(var(--i,0) * -1.6s); }
.a-cell  { animation: aCell 8s ease-in-out infinite; animation-delay: calc(var(--i,0) * -560ms); }
.a-of.a-cell { animation-name: aCellHot; }
.a-sonar { animation: aSonar 6s var(--ease-out) infinite; animation-delay: calc(var(--i,0) * -2s); }
.a-sweep { stroke-dasharray: 1; pathLength: 1;
           animation: aSweep 11s ease-in-out infinite; animation-delay: calc(var(--i,0) * -640ms); }
.a-os.a-sweep { animation-name: aSweepHot; }
.a-signal { animation: aSignal 7s ease-in-out infinite; animation-delay: calc(var(--i,0) * -480ms); }
.a-os.a-signal { animation-name: aSignalHot; }

@media (prefers-reduced-motion: reduce) {
  .a-draw, .a-ray, .a-ring, .a-cell, .a-sonar, .a-sweep, .a-signal { animation: none !important; }
  .a-draw, .a-ray, .a-sweep { stroke-dasharray: none; }
  .a-sonar { opacity: 0; }
  .split-cta__art { opacity: .18; transform: none; }
}

/* =========================================================================
   34. Mail-handoff fallback
   mailto: fails silently when the visitor has no mail client registered,
   so the composed message is always shown with a copy button.
   ========================================================================= */
.form__status.ok { display: grid; gap: var(--s-3); }
.form__fallback { display: block; font-size: var(--fs-tiny); color: var(--ink-55); line-height: 1.6; }
.form__fallback a { border-bottom: 1px solid var(--rule-strong); }
.form__fallback a:hover { color: var(--olive); border-color: var(--olive); }
.form__preview {
  margin: 0; padding: var(--s-4);
  background: var(--paper); border: 1px solid var(--rule);
  font-family: var(--font-body); font-size: var(--fs-tiny); line-height: 1.65;
  color: var(--ink-70); white-space: pre-wrap; word-break: break-word;
  max-height: 220px; overflow-y: auto;
}
.form__copy { justify-self: start; }
