/* ============================================================
   78 DIGITAL — CONSOLIDATED PRODUCTION STYLESHEET (78.css)

   Combines the prior five CSS files into a single file, retaining
   shared global styles at the top and page-specific blocks below.
   Original per-page files are preserved as tbd_*.css.

     1. SHARED / GLOBAL            (was styles.css)
     2. ABOUT-US PAGE              (was about.css)
     3. SERVICES PAGE              (was services.css)
     4. CLIENT-WORK PAGE           (was client-work.css)
     5. CONTACT-US PAGE            (was contact-us.css)
   ============================================================ */


/* ============================================================
   ============================================================
   1. SHARED / GLOBAL
   ============================================================
   ============================================================ */

/* ----- Fonts (self-hosted Lato) ----- */
@font-face {
  font-family: 'Lato'; font-style: normal; font-weight: 300; font-display: swap;
  src: url('fonts/Lato-Light.ttf') format('truetype');
}
@font-face {
  font-family: 'Lato'; font-style: normal; font-weight: 400; font-display: swap;
  /* No Regular file provided — map 400 to Light to preserve the airy brand register. */
  src: url('fonts/Lato-Light.ttf') format('truetype');
}
@font-face {
  font-family: 'Lato'; font-style: normal; font-weight: 700; font-display: swap;
  src: url('fonts/Lato-Bold.ttf') format('truetype');
}
@font-face {
  font-family: 'Lato'; font-style: normal; font-weight: 900; font-display: swap;
  src: url('fonts/Lato-Black.ttf') format('truetype');
}
@font-face {
  font-family: 'Lato'; font-style: italic; font-weight: 300; font-display: swap;
  src: url('fonts/Lato-Light.ttf') format('truetype');
}

/* ----- Design tokens ----- */
:root {
  /* Blues */
  --color-sky:       #529BD4;
  --color-sky-soft:  #7FB6DF;
  --color-sky-pale:  #E8F2FA;
  --color-blue:      #2C79B2;
  --color-navy:      #205882;
  --color-navy-deep: #15334C;

  /* Neutrals */
  --color-ink:        #272827;
  --color-ink-soft:   #515253;
  --color-ink-mute:   #7A7B7C;
  --color-rule:       #D9D9D9;
  --color-cloud:      #F2F2F2;
  --color-cloud-warm: #F7F6F2;
  --color-paper:      #FFFFFF;

  /* Foreground shortcuts */
  --fg-1: var(--color-ink);
  --fg-2: var(--color-ink-soft);
  --fg-3: var(--color-ink-mute);
  --fg-accent: var(--color-sky);

  /* Type */
  --font-sans: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  --font-display: var(--font-sans);

  /* Motion */
  --ease-standard: cubic-bezier(0.4, 0.0, 0.2, 1);
  --dur-base: 220ms;

  /* Layout */
  --container-wide: 1280px;
  --side-pad: 56px;
}

/* ----- Base ----- */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  
}


[id]{
  scroll-margin-top:80px;
}

body {
  background: #fff;
  color: var(--fg-1);
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { display: block; max-width: 100%; }
button { font-family: inherit; }
a { color: inherit; text-decoration: none; }

/* ============================================================
   HEADER — "pronounced" two-row nav
   Utility band on navy collapses when the page is scrolled.
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  transition: box-shadow var(--dur-base) ease;
}
.site-header.is-stuck {
  box-shadow:
    0 1px 0 rgba(32, 88, 130, 0.08),
    0 8px 24px rgba(32, 88, 130, 0.06);
}

/* Utility band */
.util-band {
  background: var(--color-navy-deep);
  color: rgba(255, 255, 255, 0.85);
  height: 36px;
  overflow: hidden;
  transition: height 240ms var(--ease-standard);
  display: flex;
  align-items: center;
  padding: 0 var(--side-pad);
  font-size: 12px;
  letter-spacing: 0.04em;
}
.site-header.is-stuck .util-band { height: 0; }
.util-band__group { display: flex; align-items: center; gap: 24px; }
.util-band__group--right { margin-left: auto; gap: 18px; }
.util-item { display: inline-flex; align-items: center; gap: 8px; }
.util-item svg { stroke: var(--color-sky); }
.util-follow-label {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-sky);
}
.util-socials { display: flex; gap: 12px; align-items: center; }
.util-socials a { color: rgba(255, 255, 255, 0.7); transition: color 200ms ease; }
.util-socials a:hover { color: #fff; }
.util-socials svg { width: 14px; height: 14px; }

/* Main nav bar */
.main-nav {
  position: relative;
  height: 80px;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--color-rule);
  display: flex;
  align-items: center;
  padding: 0 var(--side-pad);
}
.main-nav__logo { height: 62px; width: auto; margin-right: 24px; transition: height var(--dur-base) ease; }
/*.main-nav__links { display: flex; align-items: center; gap: 36px; margin-left: 32px; }*/
.main-nav__links { display: flex; align-items: center; gap: 36px; margin:auto; }
.nav-link {
  position: relative;
  display: inline-block;
  font-weight: 700;
  font-size: 13px;
  line-height: 1;
  color: var(--color-ink);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 6px 0;
  cursor: pointer;
  transition: color 200ms ease;
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 3px;
  background: var(--color-sky);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 280ms var(--ease-standard);
}
.nav-link:hover { color: var(--color-sky); }
.nav-link:hover::after { transform: scaleX(1); }


.nav-link.currentpage{
  color: var(--color-sky);
}


/*.main-nav__right { margin-left: auto; display: flex; align-items: center; gap: 18px; }*/
.main-nav__right {display: flex; align-items: center; gap: 18px; }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 22px;
  font-weight: 700;
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: var(--color-sky);
  color: #fff;
  border: 0;
  cursor: pointer;
  transition: background var(--dur-base) ease;
}
.nav-cta:hover { background: var(--color-blue); }
.nav-cta__arrow { transition: transform var(--dur-base) ease; }
.nav-cta:hover .nav-cta__arrow { transform: translateX(3px); }

/* Hamburger — hidden by default; shown below 960px where the inline
   nav links + CTA no longer comfortably fit. Wired in app.js to toggle
   the .mobile-menu sheet. */
.burger {
  display: none;
  flex-direction: column;
  gap: 4px;
  width: 28px;
  height: 22px;
  justify-content: center;
  background: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;
}
.burger span { height: 1.5px; background: var(--color-ink-soft); display: block; }

/* Scroll progress hairline along the bottom of the main bar */
.scroll-progress {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  background: linear-gradient(90deg, var(--color-sky) 0%, var(--color-blue) 100%);
  transition: width 80ms linear;
  pointer-events: none;
}

/* ============================================================
   HERO — editorial split + animated CTA card
   ============================================================ */
.hero {
  background: #fff;
  padding: 120px var(--side-pad) 110px;
  border-bottom: 1px solid var(--color-rule);
}
.hero__inner {
  max-width: var(--container-wide);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 80px;
  align-items: center;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 13px;
  line-height: 1;
  color: var(--color-sky);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 32px;
}
.hero-eyebrow::before {
  content: "";
  width: 32px;
  height: 1px;
  background: var(--color-sky);
}
.hero-title {
  font-weight: 300;
  font-size: 64px;
  line-height: 1.08;
  letter-spacing: -0.015em;
  color: var(--color-ink);
  margin: 0 0 32px;
}
.hero-title em {
  color: var(--color-sky);
  font-style: italic;
  font-weight: 300;
}
.hero-lead {
  font-weight: 300;
  font-size: 19px;
  line-height: 1.7;
  color: var(--fg-2);
  max-width: 580px;
  margin: 0 0 44px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* Outline brand button */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-weight: 400;
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: all var(--dur-base) var(--ease-standard);
}
.btn--sky { border: 1px solid var(--color-sky); color: var(--color-sky); }
.btn--sky.btn--solid { background: var(--color-sky); color: #fff; }
.btn--sky.btn--solid:hover { background: var(--color-blue); border-color: var(--color-blue); }
.btn--ink { border: 1px solid var(--color-ink); color: var(--color-ink); }
.btn--ink:hover { background: var(--color-ink); color: #fff; }
.btn--white { border: 1px solid #fff; color: #fff; }
.btn--white:hover { background: #fff; color: var(--color-sky); }

/* ----- Hero CTA card (right column) ----- */
.hero-cta {
  position: relative;
  overflow: hidden;
  background: linear-gradient(155deg, #2C79B2 0%, #3D8BC5 50%, #529BD4 100%);
  color: #fff;
  padding: 56px 48px 52px;
  min-height: 460px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  isolation: isolate;
}
.hero-cta__dots {
  position: absolute; inset: 0; z-index: 0;
  background-image: radial-gradient(rgba(255,255,255,0.12) 1px, transparent 1px);
  background-size: 16px 16px;
  opacity: 0.9;
  -webkit-mask-image: linear-gradient(135deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0.2) 70%, transparent 100%);
          mask-image: linear-gradient(135deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0.2) 70%, transparent 100%);
}
.hero-cta__big78 {
  position: absolute; right: -40px; top: -60px; z-index: 0;
  font: 900 360px/0.8 var(--font-display);
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,0.30);
  letter-spacing: -0.04em;
  pointer-events: none;
  user-select: none;
  opacity: 0.55;
}
.hero-cta__blob {
  position: absolute; left: -90px; bottom: -90px; z-index: 0;
  width: 320px; height: 320px;
  background: rgba(255,255,255,0.18);
  filter: blur(0.5px);
  animation: hc-blob 12s ease-in-out infinite;
}
.hero-cta__ring,
.hero-cta__ring--inner {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
.hero-cta__ring {
  right: -120px; bottom: -120px;
  width: 360px; height: 360px;
  border: 1px dashed rgba(255,255,255,0.28);
  animation: hc-spin 80s linear infinite;
}
.hero-cta__ring--inner {
  right: -60px; bottom: -60px;
  width: 240px; height: 240px;
  border: 1px solid rgba(255,255,255,0.30);
  opacity: 0.6;
  animation: hc-spin 120s linear infinite reverse;
}
.hero-cta__kicker {
  position: absolute; left: 36px; top: 36px; z-index: 0;
  display: flex; align-items: center; gap: 10px;
  animation: hc-float 5s ease-in-out infinite;
}
.hero-cta__kicker-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(255,255,255,0.18);
  animation: hc-pulse 2.4s ease-in-out infinite;
}
.hero-cta__kicker-label {
  font-size: 11px;
  line-height: 1;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.92);
}
.hero-cta__body { position: relative; z-index: 1; margin-top: 56px; }
.hero-cta__title {
  font-weight: 300;
  font-size: 44px;
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: #fff;
  margin: 0;
  max-width: 460px;
}
.hero-cta__title em {
  font-style: italic;
  font-weight: 300;
  color: #fff;
  position: relative;
  display: inline-block;
}
.hero-cta__title em svg {
  position: absolute; left: 0; right: 0; bottom: -6px;
  width: 100%; height: 10px;
}
.hero-cta__sub {
  font-weight: 300;
  font-size: 15px;
  line-height: 1.75;
  color: rgba(255,255,255,0.82);
  margin: 28px 0 0;
  max-width: 420px;
}
.hero-cta__foot { position: relative; z-index: 1; margin-top: 36px; }
.hero-cta__trust {
  margin-top: 22px;
  display: flex; align-items: center; gap: 14px;
  font-weight: 300;
  font-size: 12px;
  line-height: 1.5;
  color: rgba(255,255,255,0.82);
}

.hero-cta__btn {
  display: inline-flex; align-items: center; gap: 14px;
  padding: 18px 28px;
  font-weight: 700;
  font-size: 13px;
  line-height: 1;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: #fff;
  color: var(--color-navy);
  border: 0;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(0,0,0,0.18);
  transition: transform var(--dur-base) var(--ease-standard), background var(--dur-base);
}
.hero-cta__btn:hover {
  background: #F7FAFC;
  transform: translateX(2px);
}
.hero-cta__btn-circle {
  display: inline-flex; align-items: center; justify-content: center;
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--color-navy);
  color: #fff;
  transition: transform 280ms var(--ease-standard);
}
.hero-cta__btn:hover .hero-cta__btn-circle { transform: translateX(4px); }

@keyframes hc-blob {
  0%, 100% { transform: translate3d(0,0,0) scale(1); border-radius: 58% 42% 60% 40% / 50% 55% 45% 50%; }
  33%      { transform: translate3d(-12px,18px,0) scale(1.04); border-radius: 50% 50% 40% 60% / 60% 40% 60% 40%; }
  66%      { transform: translate3d(14px,-10px,0) scale(0.97); border-radius: 45% 55% 65% 35% / 40% 55% 45% 60%; }
}
@keyframes hc-spin  { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes hc-pulse { 0%,100% { opacity: 0.7; } 50% { opacity: 1; } }
@keyframes hc-float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }

/* ============================================================
   PROOF STRIP — client logos grouped by sector
   ============================================================ */
.proof {
  background: #fff;
  padding: 96px var(--side-pad);
  border-bottom: 1px solid var(--color-rule);
}
.proof__inner { max-width: var(--container-wide); margin: 0 auto; }
.proof__eyebrow {
  display: flex; align-items: center; gap: 14px;
  font-size: 12px;
  color: var(--color-sky);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.proof__eyebrow::before {
  content: ""; width: 24px; height: 1px; background: currentColor;
}
.proof__title {
  font-weight: 300;
  font-size: 44px;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--color-ink);
  margin: 0 0 16px;
  max-width: 720px;
}
.proof__lead {
  font-weight: 300;
  font-size: 17px;
  line-height: 1.75;
  color: var(--fg-2);
  max-width: 580px;
  margin: 0 0 64px;
}

.sectors {
  display: flex;
  flex-direction: column;
  gap: 72px;
}
.sector {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 64px;
  align-items: start;
}
.sector__head h3 {
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-sky);
  margin: 0 0 10px;
}
.sector__count {
  font-weight: 300;
  font-size: 13px;
  line-height: 1.55;
  color: var(--color-ink-mute);
  letter-spacing: 0.04em;
  margin: 0;
}
.sector__note {
  font-weight: 300;
  font-size: 13px;
  line-height: 1.6;
  color: var(--fg-2);
  margin: 10px 0 0;
}
.sector__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--color-rule);
  border-left: 1px solid var(--color-rule);
}
.sector__cell {
  height: 100px;
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  border-right: 1px solid var(--color-rule);
  border-bottom: 1px solid var(--color-rule);
  transition: background 280ms ease;
}
.sector__cell img {
  max-height: 60%;
  max-width: 88%;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(100%) opacity(0.6);
  transition: filter 280ms ease, transform 280ms ease;
}
.sector__cell:hover { background: var(--color-sky-pale); }
.sector__cell:hover img {
  filter: grayscale(0%) opacity(1);
  transform: scale(1.05);
}

/* ============================================================
   WHY US — 2×2 card grid with brand stamp
   ============================================================ */
.why-us {
  position: relative;
  background: var(--color-cloud-warm);
  padding: 120px var(--side-pad);
  overflow: hidden;
}
.why-us__stamp {
  position: absolute;
  right: -3%; bottom: -12%;
  font: 900 540px/0.8 var(--font-display);
  color: transparent;
  -webkit-text-stroke: 1px rgba(82,155,212,0.18);
  letter-spacing: -0.04em;
  pointer-events: none;
  user-select: none;
}
.why-us__ribbon {
  position: absolute;
  left: 0; top: 80px;
  width: 360px; height: 360px;
  background: var(--color-sky-pale);
  border-radius: 50%;
  filter: blur(20px);
  opacity: 0.6;
  pointer-events: none;
}
.why-us__inner { position: relative; max-width: var(--container-wide); margin: 0 auto; }

.why-us__header {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  margin-bottom: 64px;
}
.section-eyebrow {
  display: flex; align-items: center; gap: 14px;
  font-weight: 400;
  font-size: 12px;
  line-height: 1;
  color: var(--color-sky);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.section-eyebrow::before {
  content: "";
  width: 24px;
  height: 1px;
  background: currentColor;
}
.section-title {
  font-weight: 300;
  font-size: 44px;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--color-ink);
  margin: 0;
}
.section-title .scribble {
  position: relative;
  display: inline-block;
}
.section-title .scribble svg {
  position: absolute; left: 0; right: 0; bottom: -6px;
  width: 100%; height: 10px;
}
.why-us__lead {
  font-weight: 300;
  font-size: 17px;
  line-height: 1.75;
  color: var(--fg-2);
  max-width: 560px;
  margin: 0;
  align-self: end;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.why-card {
  position: relative;
  background: #fff;
  padding: 48px 44px 40px;
  min-height: 280px;
  overflow: hidden;
  border: 1px solid var(--color-rule);
  box-shadow: 0 1px 2px rgba(39,40,39,0.04);
  transition: transform 320ms var(--ease-standard), box-shadow 320ms var(--ease-standard);
}
.why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px rgba(32,88,130,0.12), 0 4px 12px rgba(39,40,39,0.05);
}
.why-card__bignum {
  position: absolute;
  right: -16px; top: -36px;
  font: 900 220px/1 var(--font-display);
  color: transparent;
  -webkit-text-stroke: 1px rgba(82,155,212,0.18);
  letter-spacing: -0.04em;
  pointer-events: none;
  user-select: none;
  transition: -webkit-text-stroke 320ms var(--ease-standard);
}
.why-card:hover .why-card__bignum {
  -webkit-text-stroke: 1px rgba(82,155,212,0.55);
}
.why-card__badge {
  position: absolute;
  top: 28px; right: 28px;
  display: flex; flex-direction: column; align-items: flex-end;
  gap: 4px;
  transition: transform 320ms var(--ease-standard);
}
.why-card:hover .why-card__badge { transform: translateY(-2px); }
.why-card__badge-value {
  font-weight: 700;
  font-size: 22px;
  line-height: 1;
  color: var(--color-sky);
  letter-spacing: -0.01em;
}
.why-card__badge-label {
  font-weight: 400;
  font-size: 10px;
  line-height: 1;
  color: var(--color-ink-mute);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.why-card__body { position: relative; }
.why-card__icon {
  width: 44px; height: 44px;
  border-radius: 4px;
  border: 1px solid var(--color-rule);
  background: #fff;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 28px;
  transition: background 280ms var(--ease-standard), border-color 280ms;
}
.why-card__icon svg { stroke: var(--color-sky); transition: stroke 280ms ease; }
.why-card:hover .why-card__icon { background: var(--color-sky); border-color: var(--color-sky); }
.why-card:hover .why-card__icon svg { stroke: #fff; }
.why-card__title {
  font-weight: 700;
  font-size: 22px;
  line-height: 1.3;
  letter-spacing: -0.005em;
  color: var(--color-ink);
  margin: 0 0 14px;
  max-width: 85%;
}
.why-card__text {
  font-weight: 300;
  font-size: 15px;
  line-height: 1.7;
  color: var(--fg-2);
  margin: 0;
  max-width: 95%;
}
.why-card__progress {
  position: absolute;
  left: 0; bottom: 0;
  height: 3px;
  width: 0;
  background: linear-gradient(90deg, var(--color-sky) 0%, var(--color-blue) 100%);
  transition: width 380ms var(--ease-standard);
}
.why-card:hover .why-card__progress { width: 100%; }

/* ============================================================
   SERVICES — two-column list of rows with hover treatments
   ============================================================ */
.services {
  background: #fff;
  padding: 120px var(--side-pad);
}
.services__inner { max-width: var(--container-wide); margin: 0 auto; }
.services__header {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  margin-bottom: 64px;
  align-items: end;
}
.services__lead {
  font-weight: 300;
  font-size: 17px;
  line-height: 1.75;
  color: var(--fg-2);
  max-width: 600px;
  margin: 0;
}
.services__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 56px;
  border-top: 1px solid var(--color-rule);
}
.service-row {
  position: relative;
  display: grid;
  grid-template-columns: 56px 1fr 80px;
  gap: 24px;
  align-items: start;
  padding: 32px 0;
  border-bottom: 1px solid var(--color-rule);
  cursor: pointer;
  transition: transform 280ms var(--ease-standard);
}
.service-row:hover { transform: translateX(4px); }
.service-row__icon {
  width: 44px; height: 44px;
  margin: -4px 0 0 -4px;
  display: flex; align-items: center; justify-content: center;
  background: transparent;
  transition: background var(--dur-base) ease;
}
.service-row:hover .service-row__icon { background: var(--color-sky-pale); }
.service-row__icon svg { stroke: var(--color-sky); transition: stroke var(--dur-base) ease; }
.service-row:hover .service-row__icon svg { stroke: var(--color-blue); }
.service-row__title {
  font-weight: 700;
  font-size: 17px;
  line-height: 1.3;
  color: var(--color-ink);
  margin: 0 0 8px;
  transition: color var(--dur-base) ease;
}
.service-row:hover .service-row__title { color: var(--color-sky); }
.service-row__blurb {
  font-weight: 300;
  font-size: 14px;
  line-height: 1.65;
  color: var(--fg-2);
  margin: 0;
  transition: color var(--dur-base) ease;
}
.service-row:hover .service-row__blurb { color: var(--fg-1); }
.service-row__index {
  display: inline-flex; align-items: center; justify-content: flex-end;
  gap: 8px;
  font-weight: 400;
  font-size: 11px;
  line-height: 1;
  color: var(--color-sky);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  align-self: center;
  white-space: nowrap;
  transition: color var(--dur-base) ease;
}
.service-row:hover .service-row__index { color: var(--color-blue); }
.service-row__arrow {
  display: inline-block;
  transition: transform 280ms var(--ease-standard);
}
.service-row:hover .service-row__arrow { transform: translateX(4px); }
.service-row__underline {
  position: absolute;
  left: 0; bottom: -1px;
  height: 2px;
  width: 0;
  background: var(--color-sky);
  transition: width 360ms var(--ease-standard);
}
.service-row:hover .service-row__underline { width: 100%; }

/* ============================================================
   INDUSTRIES — sky-pale callout band
   ============================================================ */
.industries {
  background: var(--color-sky-pale);
  padding: 96px var(--side-pad);
}
.industries__inner {
  max-width: var(--container-wide);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
}
.industries__title {
  font-weight: 300;
  font-size: 36px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--color-ink);
  margin: 0;
}
.industries__list {
  display: flex;
  flex-direction: column;
}
.industry-row {
  display: grid;
  grid-template-columns: 60px 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 22px 0;
  border-top: 1px solid rgba(32, 88, 130, 0.18);
}
.industry-row:last-child { border-bottom: 1px solid rgba(32, 88, 130, 0.18); }
.industry-row__num {
  font-weight: 300;
  font-size: 13px;
  line-height: 1;
  color: var(--color-blue);
  letter-spacing: 0.18em;
}
.industry-row__name {
  font-weight: 300;
  font-size: 22px;
  line-height: 1.3;
  color: var(--color-ink);
}
.industry-row svg { stroke: var(--color-blue); }

/* ============================================================
   FEATURED WORK — 3 large editorial tiles
   ============================================================ */
.work {
  padding: 120px var(--side-pad) 96px;
  background: #fff;
}
.work__inner { max-width: var(--container-wide); margin: 0 auto; }
.work__header {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 56px;
}
.work__more {
  font-weight: 400;
  font-size: 12px;
  line-height: 1;
  color: var(--color-sky);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  border-bottom: 1px solid var(--color-sky);
  padding-bottom: 4px;
}
.work__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.work-tile__image {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  position: relative;
  margin-bottom: 22px;
  background: var(--color-cloud);
}
.work-tile__image img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
.work-tile__tag {
  font-weight: 400;
  font-size: 11px;
  line-height: 1;
  color: var(--color-sky);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.work-tile__title {
  font-weight: 700;
  font-size: 22px;
  line-height: 1.25;
  color: var(--color-ink);
  margin: 0 0 10px;
}
.work-tile__sub {
  font-weight: 300;
  font-size: 14px;
  line-height: 1.65;
  color: var(--fg-2);
  margin: 0;
}

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band {
  background: var(--color-sky);
  color: #fff;
  padding: 96px var(--side-pad);
}
.cta-band__inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}
.cta-band__title {
  font-weight: 300;
  font-size: 44px;
  line-height: 1.15;
  letter-spacing: -0.005em;
  color: #fff;
  margin: 0 0 24px;
}
.cta-band__lead {
  font-weight: 300;
  font-size: 18px;
  line-height: 1.75;
  color: rgba(255,255,255,0.88);
  max-width: 640px;
  margin: 0 auto 40px;
}
.cta-band__actions {
  display: flex; gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--color-navy-deep);
  color: #fff;
  padding: 64px var(--side-pad) 32px;
}
.site-footer__inner {
  max-width: var(--container-wide);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
}
.site-footer__logo { 
  height: 63px; width: auto; margin-bottom: 24px; 
}

.site-footer__about {
  font-weight: 300;
  font-size: 13px;
  line-height: 1.85;
  color: rgba(255,255,255,0.7);
  max-width: 320px;
  margin: 0;
}
.footer-group__title {
  font-weight: 400;
  font-size: 12px;
  line-height: 1;
  color: var(--color-sky);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin: 0 0 22px;
}
.footer-group a {
  font-weight: 300;
  font-size: 13px;
  line-height: 1.95;
  color: rgba(255,255,255,0.82);
  display: block;
  cursor: pointer;
}
.site-footer__bottom {
  max-width: var(--container-wide);
  margin: 48px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  font-weight: 400;
  font-size: 11px;
  line-height: 1;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.06em;
}

/* ============================================================
   CONTACT MODAL
   ============================================================ */
.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(21, 51, 76, 0.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
}
.modal-backdrop.is-open {
  opacity: 1;
  pointer-events: auto;
}
.modal-card {
  background: #fff;
  width: min(560px, 100%);
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  position: relative;
  box-shadow: 0 40px 80px rgba(15, 50, 80, 0.35);
  border-top: 4px solid var(--color-sky);
  transform: translateY(12px);
  opacity: 0;
  transition: opacity 320ms ease, transform 320ms var(--ease-standard);
}
.modal-backdrop.is-open .modal-card {
  transform: translateY(0);
  opacity: 1;
}
.modal-close {
  position: absolute;
  top: 18px; right: 18px;
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 0; background: transparent;
  cursor: pointer;
  color: var(--color-ink-soft);
  font: 300 20px/1 var(--font-sans);
}
.modal-body { padding: 48px 48px 40px; }
.modal__eyebrow {
  font-weight: 400;
  font-size: 11px;
  line-height: 1;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-sky);
  margin-bottom: 18px;
}
.modal__title {
  font-weight: 300;
  font-size: 32px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--color-ink);
  margin: 0 0 12px;
}
.modal__lead {
  font-weight: 300;
  font-size: 14px;
  line-height: 1.65;
  color: var(--fg-2);
  margin: 0 0 32px;
}
.modal-field { display: block; margin-bottom: 20px; }
.modal-field__label {
  display: block;
  font-weight: 400;
  font-size: 11px;
  line-height: 1;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-ink-mute);
  margin-bottom: 10px;
}
.modal-field input,
.modal-field textarea {
  width: 100%;
  padding: 12px 0;
  font: 300 16px/1.5 var(--font-sans);
  color: var(--color-ink);
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--color-rule);
  outline: none;
  resize: vertical;
  transition: border-color 220ms;
}
.modal-field input:focus,
.modal-field textarea:focus {
  border-bottom-color: var(--color-sky);
}
.modal-submit {
  display: inline-flex; align-items: center; gap: 12px;
  margin-top: 12px;
  padding: 16px 28px;
  font-weight: 700;
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: var(--color-sky);
  color: #fff;
  border: 0;
  cursor: pointer;
  transition: filter 220ms;
}
.modal-submit:hover { filter: brightness(1.08); }

/* ============================================================
   MOBILE MENU — navy sheet that drops from the top
   Triggered by .burger; closes via the × button inside, ESC,
   or any anchor link inside the sheet. Wired in app.js.
   ============================================================ */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: var(--color-navy-deep);
  color: #fff;
  transform: translateY(-100%);
  transition: transform 460ms var(--ease-standard);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  visibility: hidden;
}
.mobile-menu.is-open {
  transform: translateY(0);
  visibility: visible;
}

/* Ghost "78" stamp that anchors the sheet to the brand */
.mobile-menu__78 {
  position: absolute;
  right: -60px; bottom: -120px;
  font: 900 420px/0.8 var(--font-display);
  color: transparent;
  -webkit-text-stroke: 1px rgba(82, 155, 212, 0.28);
  letter-spacing: -0.04em;
  pointer-events: none;
  user-select: none;
  z-index: 1;
}

.mobile-menu__top {
  position: relative; z-index: 2;
  height: 80px;
  display: flex;
  align-items: center;
  padding: 0 var(--side-pad);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.mobile-menu__logo { height: 28px; width: auto; }
.mobile-menu__close {
  margin-left: auto;
  background: transparent;
  border: 0;
  cursor: pointer;
  padding: 8px;
  color: rgba(255,255,255,0.85);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
}
.mobile-menu__close svg { width: 22px; height: 22px; }
.mobile-menu__close:hover { color: #fff; }

.mobile-menu__inner {
  position: relative; z-index: 2;
  flex: 1;
  padding: 56px var(--side-pad) 40px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  overflow-y: auto;
  max-width: 720px;
  width: 100%;
  margin: 0 auto;
}

.mobile-menu__eyebrow {
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-sky);
  display: flex;
  align-items: center;
  gap: 14px;
}
.mobile-menu__eyebrow::before {
  content: "";
  width: 24px;
  height: 1px;
  background: currentColor;
}

.mobile-menu__nav {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.mobile-menu__item {
  font-weight: 300;
  font-size: 36px;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: #fff;
  text-decoration: none;
  padding: 18px 0;
  display: flex;
  align-items: baseline;
  gap: 20px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  cursor: pointer;
  opacity: 0;
  transform: translateY(12px);
  transition:
    opacity 480ms var(--ease-standard),
    transform 480ms var(--ease-standard),
    color 220ms ease,
    padding-left 220ms ease;
}
.mobile-menu__item:last-child { border-bottom: 0; }
.mobile-menu__item-num {
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 0.22em;
  color: var(--color-sky);
  flex-shrink: 0;
}
.mobile-menu__item:hover {
  color: var(--color-sky);
  padding-left: 8px;
}

/* Stagger items in once the sheet has started dropping */
.mobile-menu.is-open .mobile-menu__item:nth-child(1) { opacity: 1; transform: translateY(0); transition-delay: 180ms; }
.mobile-menu.is-open .mobile-menu__item:nth-child(2) { opacity: 1; transform: translateY(0); transition-delay: 240ms; }
.mobile-menu.is-open .mobile-menu__item:nth-child(3) { opacity: 1; transform: translateY(0); transition-delay: 300ms; }
.mobile-menu.is-open .mobile-menu__item:nth-child(4) { opacity: 1; transform: translateY(0); transition-delay: 360ms; }

.mobile-menu__cta-card {
  margin-top: auto;
  padding: 28px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
}
.mobile-menu__cta-card .mobile-menu__eyebrow { margin-bottom: 14px; }
.mobile-menu__cta-title {
  font-size: 22px;
  line-height: 1.3;
  font-weight: 700;
  color: #fff;
  margin: 0 0 22px;
  letter-spacing: -0.005em;
}
.mobile-menu__cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 16px 22px;
  background: var(--color-sky);
  color: #fff;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  border: 0;
  cursor: pointer;
  font-family: inherit;
  transition: background 220ms ease;
}
.mobile-menu__cta-btn:hover { background: var(--color-blue); }

/* ============================================================
   RESPONSIVE — light pass; the design is desktop-led but we
   keep the page legible down to ~720px.
   ============================================================ */
@media (max-width: 1100px) {
  .hero__inner,
  .why-us__header,
  .services__header,
  .industries__inner { grid-template-columns: 1fr; gap: 48px; }
  .work__grid { grid-template-columns: 1fr 1fr; }
  .services__list,
  .why-grid { grid-template-columns: 1fr; }
  .logo-panel { display: none; }
  .sector { grid-template-columns: 1fr; gap: 24px; }
  .sector__head { display: grid; grid-template-columns: 1fr auto; gap: 12px; align-items: baseline; }
  .sector__head h3 { grid-column: 1; }
  .sector__count { grid-column: 2; text-align: right; }
  .sector__note { grid-column: 1 / -1; }
  .sector__grid { grid-template-columns: repeat(3, 1fr); }
  .site-footer__inner { grid-template-columns: 1fr 1fr; }
}

/* Nav cutover — below 960px the inline nav links and "Start a project"
   CTA can't comfortably share the bar, so we collapse them into the
   hamburger-driven mobile sheet. */
@media (max-width: 960px) {
  .main-nav__links { display: none; }
  .nav-cta { display: none; }
  .burger { display: flex; }
  .main-nav__right {margin-left:auto; }
  .main-nav__logo { height: 44px; }
  .util-band {display: none; }
}
@media (max-width: 720px) {
  :root { --side-pad: 24px; }
  .sector__grid { grid-template-columns: repeat(2, 1fr); }
  .hero { padding: 72px var(--side-pad) 64px; }
  .hero-title { font-size: 44px; }
  .hero-cta { padding: 40px 28px; min-height: 380px; }
  .hero-cta__title, .section-title, .proof__title, .cta-band__title { font-size: 32px; }
  .util-band { display: none; }
  .main-nav { padding: 0 var(--side-pad); }
  .work__grid { grid-template-columns: 1fr; }
  .site-footer__inner { grid-template-columns: 1fr; }
}


/* ============================================================
   ============================================================
   2. ABOUT-US PAGE
   ============================================================
   ============================================================ */

/* ============================================================
   HERO — sky-blue band with ghost "78" stamp
   Mirrors the .cu-v3 hero language so the site has one
   recognisable "blue hero" for interior pages.
   ============================================================ */
.about-hero {
  position: relative;
  background: var(--color-sky);
  color: #fff;
  padding: 120px var(--side-pad) 120px;
  overflow: hidden;
}
.about-hero__78 {
  position: absolute;
  right: -50px;
  bottom: -140px;
  font: 900 480px/0.8 var(--font-display);
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.22);
  letter-spacing: -0.04em;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}
.about-hero__inner {
  position: relative;
  z-index: 1;
  max-width: var(--container-wide);
  margin: 0 auto;
}
.about-hero__text { max-width: 880px; }
.about-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 700;
  margin-bottom: 28px;
}
.about-hero__eyebrow::before {
  content: "";
  width: 32px;
  height: 1px;
  background: currentColor;
  opacity: 0.7;
}
.about-hero__title {
  font-weight: 300;
  font-size: clamp(48px, 7vw, 96px);
  line-height: 1.02;
  letter-spacing: -0.022em;
  color: #fff;
  margin: 0 0 28px;
  text-wrap: balance;
}
.about-hero__title em {
  font-style: italic;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.78);
}
.about-hero__lead {
  font-weight: 300;
  font-size: clamp(17px, 1.4vw, 19px);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.92);
  max-width: 640px;
  margin: 0 0 48px;
}

/* Quick-facts strip */
.about-hero__stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  max-width: 760px;
}
.about-hero__stat {
  padding: 22px 24px 0 0;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
}
.about-hero__stat:last-child { border-right: 0; padding-right: 0; }
.about-hero__stat dt {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 8px;
  font-weight: 700;
}
.about-hero__stat dd {
  margin: 0;
  font-weight: 700;
  font-size: 17px;
  line-height: 1.2;
  letter-spacing: -0.005em;
  color: #fff;
}



.about-section--people-v1 {
  background: #fff;
  border-bottom: 1px solid var(--color-rule);
}

.people-v1-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
}

/* ---------- Card ---------- */
.person-v1 {
  background: #fff;
  border: 1px solid var(--color-rule);
  display: flex;
  flex-direction: column;
  text-align: left;
  font: inherit;
  color: inherit;
  padding: 0;
  cursor: pointer;
  width: 100%;
  transition: transform 320ms var(--ease-standard),
              box-shadow 320ms var(--ease-standard),
              border-color 320ms var(--ease-standard);
}
.person-v1:hover,
.person-v1:focus-visible {
  transform: translateY(-4px);
  border-color: var(--color-sky);
  box-shadow: 0 24px 48px rgba(32, 88, 130, 0.10),
              0 4px 12px rgba(39, 40, 39, 0.04);
}
.person-v1:focus-visible {
  outline: 2px solid var(--color-sky);
  outline-offset: 2px;
}

/* Square portrait placeholder — uses the same navy-pinstripe
   treatment as the existing .leader__portrait so the page reads
   as one family. */
.person-v1__photo {
  position: relative;
  aspect-ratio: 1 / 1;
  background-color: var(--color-navy-deep);
  background-image:
    repeating-linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.04) 0 2px,
      transparent 2px 12px
    );
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.person-v1__monogram {
  font-weight: 900;
  font-size: clamp(56px, 5vw, 84px);
  line-height: 1;
  letter-spacing: -0.04em;
  color: rgba(255, 255, 255, 0.92);
  user-select: none;
}
.person-v1__photo-tag {
  position: absolute;
  left: 14px;
  bottom: 12px;
  font: 400 10px/1 ui-monospace, "SF Mono", Menlo, Consolas, monospace;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.person-v1__body {
  padding: 24px 24px 26px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.person-v1__name {
  font-weight: 700;
  font-size: 19px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--color-ink);
  margin: 0;
}
.person-v1__role {
  font-weight: 400;
  font-size: 11px;
  line-height: 1;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-sky);
  margin: 0 0 6px;
}
.person-v1__bio {
  font-weight: 300;
  font-size: 14px;
  line-height: 1.65;
  color: var(--fg-2);
  margin: 0;
  flex: 1;
}
.person-v1__readmore {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--color-rule);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-sky);
  transition: gap 240ms var(--ease-standard), color 220ms ease;
}
.person-v1__readmore svg {
  transition: transform 240ms var(--ease-standard);
}
.person-v1:hover .person-v1__readmore,
.person-v1:focus-visible .person-v1__readmore { color: var(--color-blue); }
.person-v1:hover .person-v1__readmore svg,
.person-v1:focus-visible .person-v1__readmore svg { transform: translateX(4px); }

/* ============================================================
   LIGHTBOX DIALOG  (shared by both variations, V1 version)
   ============================================================ */
.person-dialog {
  border: 0;
  padding: 0;
  background: transparent;
  max-width: 960px;
  width: calc(100% - 48px);
  max-height: calc(100vh - 48px);
  color: var(--color-ink);
}
.person-dialog::backdrop {
  background: rgba(21, 51, 76, 0.55);
  backdrop-filter: blur(4px);
}
.person-dialog__card {
  background: #fff;
  display: grid;
  grid-template-columns: 360px 1fr;
  position: relative;
  max-height: calc(100vh - 48px);
  overflow: hidden;
}
.person-dialog__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--color-rule);
  background: #fff;
  color: var(--color-ink);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 200ms ease, color 200ms ease, border-color 200ms ease;
  z-index: 2;
}
.person-dialog__close:hover {
  background: var(--color-sky);
  color: #fff;
  border-color: var(--color-sky);
}
.person-dialog__photo {
  position: relative;
  background-color: var(--color-navy-deep);
  background-image:
    repeating-linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.04) 0 2px,
      transparent 2px 12px
    );
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.person-dialog__photo img {
  display: block;
 /*width: 100%;
  height: 100%;
  object-fit: cover;*/
}
.person-dialog__monogram {
  font-weight: 900;
  font-size: 160px;
  line-height: 1;
  letter-spacing: -0.04em;
  color: rgba(255, 255, 255, 0.92);
}
.person-dialog__photo-tag {
  position: absolute;
  left: 18px;
  bottom: 16px;
  font: 400 10px/1 ui-monospace, "SF Mono", Menlo, Consolas, monospace;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}
.person-dialog__body {
  padding: 56px 56px 48px;
  overflow-y: auto;
}
.person-dialog__eyebrow {
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-sky);
  margin: 0 0 18px;
}
.person-dialog__name {
  font-weight: 300;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: var(--color-ink);
  margin: 0 0 6px;
}
.person-dialog__role {
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-ink-mute);
  margin: 0 0 28px;
}
.person-dialog__divider {
  width: 48px;
  height: 1px;
  background: var(--color-sky);
  margin: 0 0 24px;
}
.person-dialog__longbio {
  font-weight: 300;
  font-size: 16px;
  line-height: 1.75;
  color: var(--fg-2);
  margin: 0;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .people-v1-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .person-dialog__card { grid-template-columns: 1fr; }
  .person-dialog__photo { aspect-ratio: 16 / 9; }
  .person-dialog__monogram { font-size: 96px; }
  .person-dialog__body { padding: 36px 32px 40px; }
}
@media (max-width: 720px) {
  .people-v1-grid { grid-template-columns: 1fr; gap: 20px; }
}
















/* ============================================================
   INTRO NARRATIVE — editorial split
   ============================================================ */
.about-intro {
  background: #fff;
  padding: 112px var(--side-pad) 96px;
  border-bottom: 1px solid var(--color-rule);
}
.about-intro__inner {
  max-width: var(--container-wide);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}
.about-intro__pull {
  font-weight: 300;
  font-style: italic;
  font-size: clamp(26px, 2.4vw, 34px);
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--color-sky);
  margin: 0;
  padding-left: 24px;
  border-left: 1px solid var(--color-sky);
  max-width: 360px;
}
.about-intro__body {
  font-weight: 300;
  font-size: 17px;
  line-height: 1.75;
  color: var(--fg-2);
}
.about-intro__body p { margin: 0 0 24px; }
.about-intro__body p:last-child { margin-bottom: 0; }

/* ============================================================
   SECTION SHELL — used by every below-hero section
   ============================================================ */
.about-section {
  background: #fff;
  padding: 112px var(--side-pad);
}
.about-section__inner {
  max-width: var(--container-wide);
  margin: 0 auto;
}
.about-section__header {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 56px;
}
.about-section__lead {
  font-weight: 300;
  font-size: 17px;
  line-height: 1.75;
  color: var(--fg-2);
  margin: 0;
  max-width: 580px;
}
.about-section__body {
  font-weight: 300;
  font-size: 17px;
  line-height: 1.8;
  color: var(--fg-2);
  max-width: 660px;
}
.about-section__body p { margin: 0 0 20px; }
.about-section__body p:last-child { margin-bottom: 0; }
.about-section__body em {
  font-style: italic;
  color: var(--color-sky);
  font-weight: 400;
}

/* "How we work" sits inside a sky-pale band for visual rhythm */
.about-section--how {
  background: var(--color-sky-pale);
  border-bottom: 1px solid rgba(32, 88, 130, 0.08);
}
.about-section--how .about-section__header { margin-bottom: 0; align-items: start; }

/* ============================================================
   WHAT SETS US APART — card grid
   ============================================================ */
.about-section--apart {
  background: #fff;
  border-bottom: 1px solid var(--color-rule);
}
.apart-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid var(--color-rule);
  border-left: 1px solid var(--color-rule);
}
.apart-card {
  position: relative;
  padding: 36px 32px 40px;
  border-right: 1px solid var(--color-rule);
  border-bottom: 1px solid var(--color-rule);
  background: #fff;
  transition: background 280ms ease;
  overflow: hidden;
}
.apart-card:hover { background: var(--color-sky-pale); }
.apart-card__num {
  display: block;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--color-sky);
  margin-bottom: 28px;
}
.apart-card__title {
  font-weight: 700;
  font-size: 18px;
  line-height: 1.3;
  letter-spacing: -0.005em;
  color: var(--color-ink);
  margin: 0 0 12px;
}
.apart-card__text {
  font-weight: 300;
  font-size: 14px;
  line-height: 1.7;
  color: var(--fg-2);
  margin: 0;
}

/* ============================================================
   LEADERSHIP
   ============================================================ */
.about-section--leaders {
  background: var(--color-cloud-warm);
  border-bottom: 1px solid var(--color-rule);
}
.leaders-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
.leader {
  background: #fff;
  border: 1px solid var(--color-rule);
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 0;
  overflow: hidden;
  transition: transform 320ms var(--ease-standard),
              box-shadow 320ms var(--ease-standard);
}
.leader:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px rgba(32, 88, 130, 0.10),
              0 4px 12px rgba(39, 40, 39, 0.04);
}

/* Tasteful initials-on-navy placeholder (no real photos yet).
   Uses a subtle diagonal pinstripe so it reads as "placeholder",
   not as a real portrait. */
.leader__portrait {
  position: relative;
  margin: 0;
  background-color: var(--color-navy-deep);
  background-image:
    repeating-linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.04) 0 2px,
      transparent 2px 12px
    );
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 260px;
}
.leader__monogram {
  font-weight: 900;
  font-size: 88px;
  line-height: 1;
  letter-spacing: -0.04em;
  color: rgba(255, 255, 255, 0.92);
  user-select: none;
}
.leader__placeholder-label {
  position: absolute;
  left: 16px;
  bottom: 14px;
  font: 400 10px/1 ui-monospace, "SF Mono", Menlo, Consolas, monospace;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}
.leader__body {
  padding: 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.leader__head {
  border-bottom: 1px solid var(--color-rule);
  padding-bottom: 14px;
}
.leader__name {
  font-weight: 700;
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--color-ink);
  margin: 0 0 4px;
}
.leader__role {
  font-weight: 400;
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-sky);
  margin: 0;
}
.leader__bio {
  font-weight: 300;
  font-size: 15px;
  line-height: 1.7;
  color: var(--fg-2);
  margin: 0;
}

/* ============================================================
   THE TEAM
   ============================================================ */
.about-section--team {
  background: #fff;
  border-bottom: 1px solid var(--color-rule);
}
.team-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}
.team-member {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 32px 28px 28px;
  background: var(--color-cloud-warm);
  border: 1px solid var(--color-rule);
  transition: background 280ms ease, border-color 280ms ease;
}
.team-member:hover {
  background: #fff;
  border-color: var(--color-sky);
}
.team-member__avatar {
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--color-sky);
  color: #fff;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.04em;
  border-radius: 50%;
}
.team-member__avatar--plus {
  background: transparent;
  color: var(--color-sky);
  border: 1px dashed var(--color-sky);
  font-weight: 300;
  font-size: 28px;
}
.team-member__body { display: flex; flex-direction: column; gap: 4px; }
.team-member__name {
  font-weight: 700;
  font-size: 16px;
  line-height: 1.3;
  color: var(--color-ink);
  margin: 0;
}
.team-member__role {
  font-weight: 300;
  font-size: 13px;
  line-height: 1.55;
  color: var(--fg-2);
  margin: 0;
}

/* ============================================================
   CERTIFICATIONS & PARTNERSHIPS
   ============================================================ */
.about-section--certs {
  background: var(--color-cloud-warm);
}
.certs-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid var(--color-rule);
  border-left: 1px solid var(--color-rule);
  background: #fff;
}
.cert {
  position: relative;
  padding: 36px 32px 40px;
  border-right: 1px solid var(--color-rule);
  border-bottom: 1px solid var(--color-rule);
  background: #fff;
  transition: background 280ms ease;
}
.cert::before {
  content: "";
  position: absolute;
  left: 0; top: 0;
  width: 3px;
  height: 0;
  background: var(--color-sky);
  transition: height 320ms var(--ease-standard);
}
.cert:hover::before { height: 100%; }
.cert:hover { background: var(--color-sky-pale); }
.cert__kind {
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-sky);
  margin-bottom: 16px;
}
.cert__title {
  font-weight: 700;
  font-size: 18px;
  line-height: 1.3;
  letter-spacing: -0.005em;
  color: var(--color-ink);
  margin: 0 0 10px;
}
.cert__note {
  font-weight: 300;
  font-size: 14px;
  line-height: 1.65;
  color: var(--fg-2);
  margin: 0;
}

/* ----- About-Us Responsive ----- */
@media (max-width: 1100px) {
  .about-intro__inner,
  .about-section__header { grid-template-columns: 1fr; gap: 40px; }
  .apart-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .leaders-grid { grid-template-columns: 1fr; gap: 32px; }
  .team-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .certs-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .about-hero__stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .about-hero__stat:nth-child(2) { border-right: 0; padding-right: 0; }
  .about-hero__stat:nth-child(3),
  .about-hero__stat:nth-child(4) {
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
  }
}

@media (max-width: 720px) {
  .about-hero { padding: 72px var(--side-pad) 80px; }
  .about-hero__78 { font-size: 280px; right: -30px; bottom: -90px; }
  .about-intro { padding: 64px var(--side-pad); }
  .about-intro__pull { padding-left: 18px; }
  .about-section { padding: 64px var(--side-pad); }
  .apart-grid,
  .certs-grid { grid-template-columns: 1fr; }
  .team-list { grid-template-columns: 1fr; }
  .leader { grid-template-columns: 1fr; }
  .leader__portrait { min-height: 200px; }
  .leader__body { padding: 24px 24px 28px; }
}


/* ============================================================
   ============================================================
   3. SERVICES PAGE
   Reuses .cw-intro (hero) from CLIENT-WORK section and
   .service-row (list) / .services (section) from SHARED section.
   ============================================================
   ============================================================ */

/* ----- Page-specific tweaks to the shared hero -------------- */
.svc-intro .cw-intro__blurb {
  max-width: 760px;
  font-size: 18px;
  line-height: 1.7;
}

/* ============================================================
   V1 — Two-column row list (extends .services from SHARED)
   ============================================================ */
.services--svc {
  padding: 96px var(--side-pad);
}
.services--svc .services__header {
  margin-bottom: 56px;
}
/* Make .service-row clickable as a <button>; reset native styles */
.service-row.is-trigger {
  appearance: none;
  border: 0;
  border-bottom: 1px solid var(--color-rule);
  background: transparent;
  cursor: pointer;
  text-align: left;
  font: inherit;
  width: 100%;
}
.service-row.is-trigger:focus-visible {
  outline: 2px solid var(--color-sky);
  outline-offset: -2px;
}

/* ============================================================
   V2 — Card grid
   ============================================================ */
.svc-grid {
  background: #fff;
  padding: 96px var(--side-pad) 120px;
}
.svc-grid__inner {
  max-width: var(--container-wide);
  margin: 0 auto;
}
.svc-grid__header {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
  margin-bottom: 64px;
  align-items: end;
}
.svc-grid__lead {
  font-weight: 300;
  font-size: 17px;
  line-height: 1.7;
  color: var(--color-ink-soft);
  max-width: 560px;
  margin: 0;
}
.svc-grid__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--color-rule);
  border: 1px solid var(--color-rule);
}
.svc-card {
  appearance: none;
  border: 0;
  background: #fff;
  cursor: pointer;
  text-align: left;
  font: inherit;
  padding: 36px 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  transition: background var(--dur-base) ease;
  min-height: 280px;
}
.svc-card:hover {
  background: var(--color-sky-pale);
}
.svc-card:focus-visible {
  outline: 2px solid var(--color-sky);
  outline-offset: -2px;
}
.svc-card__index {
  position: absolute;
  top: 20px; right: 24px;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-ink-mute);
  transition: color var(--dur-base) ease;
}
.svc-card:hover .svc-card__index {
  color: var(--color-blue);
}
.svc-card__icon {
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--color-sky-pale);
  border: 1px solid var(--color-sky-pale);
  transition: background var(--dur-base) ease, border-color var(--dur-base) ease;
}
.svc-card__icon svg {
  stroke: var(--color-sky);
  transition: stroke var(--dur-base) ease;
}
.svc-card:hover .svc-card__icon {
  background: var(--color-sky);
  border-color: var(--color-sky);
}
.svc-card:hover .svc-card__icon svg {
  stroke: #fff;
}
.svc-card__title {
  font-weight: 700;
  font-size: 20px;
  line-height: 1.25;
  letter-spacing: -0.005em;
  color: var(--color-ink);
  margin: 0;
  transition: color var(--dur-base) ease;
}
.svc-card:hover .svc-card__title {
  color: var(--color-blue);
}
.svc-card__blurb {
  font-weight: 300;
  font-size: 14px;
  line-height: 1.6;
  color: var(--color-ink-soft);
  margin: 0;
}
.svc-card__more {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-sky);
}
.svc-card__more-arrow {
  display: inline-block;
  transition: transform 280ms var(--ease-standard);
}
.svc-card:hover .svc-card__more-arrow {
  transform: translateX(4px);
}

/* ============================================================
   Service panel — shared between V1 and V2
   (Same DOM/visual language as the case-study panel.)
   ============================================================ */
.service-panel {
  position: fixed;
  inset: 0;
  background: rgba(39, 40, 39, 0.55);
  display: flex;
  align-items: stretch;
  justify-content: flex-end;
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: opacity 260ms ease;
}
.service-panel.is-open {
  opacity: 1;
  pointer-events: auto;
}
.service-panel__card {
  background: #fff;
  width: min(720px, 100%);
  max-height: 100vh;
  overflow-y: auto;
  position: relative;
  transform: translateY(24px);
  opacity: 0;
  transition: opacity 320ms ease, transform 320ms var(--ease-standard);
}
.service-panel.is-open .service-panel__card {
  transform: translateY(0);
  opacity: 1;
}
.service-panel__close {
  position: absolute;
  top: 18px; right: 18px;
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid var(--color-rule);
  background: #fff;
  color: var(--color-ink-mute);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: color 220ms ease, background 220ms ease, border-color 220ms ease;
  z-index: 2;
}
.service-panel__close:hover {
  color: #fff;
  background: var(--color-ink);
  border-color: var(--color-ink);
}
.service-panel__close svg { width: 16px; height: 16px; }

.service-panel__hero {
  background: var(--color-sky);
  color: #fff;
  padding: 48px 48px 40px;
}
.service-panel__head {
  display: flex;
  align-items: center;
  gap: 24px;
}
.service-panel__icon {
  width: 72px; height: 72px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.32);
}
.service-panel__icon svg {
  width: 36px;
  height: 36px;
 /* stroke: #fff !important;*/
 
}
.service-panel__eyebrow {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 700;
  margin: 0 0 8px;
}
.service-panel__title {
  font-weight: 300;
  font-size: 34px;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: #fff;
  margin: 0;
}

.service-panel__body {
  padding: 40px 48px 56px;
}
.service-panel__paragraphs p {
  font-weight: 300;
  font-size: 15px;
  line-height: 1.75;
  color: var(--color-ink-soft);
  margin: 0 0 18px;
}
.service-panel__paragraphs p:last-child { margin-bottom: 0; }

/* ----- Services Responsive ----- */
@media (max-width: 1080px) {
  .svc-grid__list { grid-template-columns: repeat(2, 1fr); }
  .svc-grid__header { grid-template-columns: 1fr; gap: 24px; }
}
@media (max-width: 720px) {
  .services--svc { padding: 64px var(--side-pad); }
  .svc-grid { padding: 64px var(--side-pad) 80px; }
  .svc-grid__list { grid-template-columns: 1fr; }
  .svc-card { min-height: 0; padding: 28px 24px; }
  .service-panel__hero { padding: 36px 24px 32px; }
  .service-panel__body { padding: 32px 24px 40px; }
  .service-panel__icon { width: 56px; height: 56px; }
  .service-panel__icon svg { width: 28px; height: 28px; }
  .service-panel__title { font-size: 26px; }
  .service-panel__head { gap: 16px; }
}


/* ============================================================
   ============================================================
   4. CLIENT-WORK PAGE
   ============================================================
   ============================================================ */

/* ----- Page intro ------------------------------------------ */
.cw-intro {
  position: relative;
  padding: 120px var(--side-pad) 96px;
  background: var(--color-sky);
  color: #fff;
  overflow: hidden;
  border-bottom: 1px solid var(--color-rule);
}
/* Giant outline "78" watermark anchored to the right */
.cw-intro__stamp {
  position: absolute;
  right: -3%; top: 50%;
  transform: translateY(-58%);
  font: 900 clamp(320px, 42vw, 600px)/0.85 var(--font-display);
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.22);
  letter-spacing: -0.04em;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}
.cw-intro__inner {
  position: relative; z-index: 1;
  max-width: var(--container-wide); margin: 0 auto;
}
.cw-intro__eyebrow {
  display: inline-flex; align-items: center; gap: 14px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.92);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 36px;
}
.cw-intro__eyebrow::before {
  content: ""; width: 32px; height: 1px; background: currentColor;
}
.cw-intro__title {
  font-weight: 300;
  font-size: clamp(64px, 9vw, 132px);
  line-height: 1;
  letter-spacing: -0.025em;
  color: #fff;
  margin: 0 0 18px;
}
.cw-intro__title .period { color: rgba(255, 255, 255, 0.55); }
.cw-intro__sub {
  font-style: italic;
  font-weight: 300;
  font-size: clamp(20px, 1.8vw, 26px);
  line-height: 1.3;
  letter-spacing: -0.005em;
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 36px;
}
.cw-intro__blurb {
  font-weight: 300;
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.92);
  max-width: 560px;
  margin: 0 0 64px;
}
.cw-intro__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
}
.cw-intro__stat {
  padding: 0 28px;
  border-left: 1px solid rgba(255, 255, 255, 0.22);
}
.cw-intro__stat:first-child {
  padding-left: 0;
  border-left: 0;
}
.cw-intro__stat-value {
  display: block;
  font-weight: 900;
  font-size: 36px;
  line-height: 1;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 10px;
}
.cw-intro__stat-label {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 700;
}

/* ----- Featured work --------------------------------------- */
.cw-featured {
  padding: 120px var(--side-pad);
  background: #fff;
}
.cw-featured__inner { max-width: var(--container-wide); margin: 0 auto; }
.cw-featured__header {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  margin-bottom: 64px;
  align-items: end;
}
.cw-featured__lead {
  font-weight: 300;
  font-size: 17px;
  line-height: 1.75;
  color: var(--fg-2);
  max-width: 600px;
  margin: 0;
}

.cw-featured__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

/* --- Featured tile (placeholder image + hover overlay) --- */
.case-tile {
  position: relative;
  display: block;
  background: var(--color-cloud);
  cursor: pointer;
  overflow: hidden;
  border: 0;
  padding: 0;
  text-align: left;
  font-family: inherit;
  color: inherit;
  width: 100%;
}
.case-tile__thumb {
  display: block;
  width: 100%;
  /*aspect-ratio: 4 / 3;*/
  object-fit: cover;
  object-position: center;
  transition: transform 480ms var(--ease-standard);
}
.case-tile:hover .case-tile__thumb { transform: scale(1.04); }

.case-tile__hover {
  position: absolute; inset: 0;
  background: rgba(82, 155, 212, 0.92);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 24px;
  padding: 24px;
  opacity: 0;
  transition: opacity 280ms ease;
}
.case-tile:hover .case-tile__hover,
.case-tile:focus-visible .case-tile__hover { opacity: 1; }

.case-tile__hover-logo {
  max-width: 70%;
  max-height: 64px;
  width: auto;
  height: auto;
  object-fit: contain;
  /* Brand logos are mostly dark on color — force a knock-out so they
     read clearly against the sky tint. */
  /*filter: brightness(0) invert(1);*/
  transform: translateY(8px);
  opacity: 0;
  transition: opacity 320ms ease 80ms, transform 320ms var(--ease-standard) 80ms;
}
.case-tile:hover .case-tile__hover-logo,
.case-tile:focus-visible .case-tile__hover-logo {
  opacity: 1;
  transform: translateY(0);
}

.case-tile__hover-link {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 10px 16px;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.7);
  transform: translateY(8px);
  opacity: 0;
  transition: opacity 320ms ease 160ms, transform 320ms var(--ease-standard) 160ms;
}
.case-tile:hover .case-tile__hover-link,
.case-tile:focus-visible .case-tile__hover-link {
  opacity: 1;
  transform: translateY(0);
}

/* Tile caption below image */
.case-tile__caption {
  padding: 14px;
}
.case-tile__name {
  font-weight: 700;
  font-size: 16px;
  line-height: 1.3;
  color: var(--color-ink);
  margin: 0 0 6px;
}
.case-tile__tagline {
  font-weight: 300;
  font-size: 13px;
  line-height: 1.55;
  color: var(--fg-2);
  margin: 0;
}

/* ----- More to explore ------------------------------------- */
.cw-explore {
  padding: 120px var(--side-pad);
  background: var(--color-cloud-warm);
  border-top: 1px solid var(--color-rule);
}
.cw-explore__inner { max-width: var(--container-wide); margin: 0 auto; }
.cw-explore__header {
  margin-bottom: 48px;
  max-width: 800px;
}
.cw-explore__title {
  font-weight: 300;
  font-size: 44px;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--color-ink);
  margin: 0 0 16px;
}
.cw-explore__blurb {
  font-weight: 300;
  font-size: 17px;
  line-height: 1.75;
  color: var(--fg-2);
  margin: 0;
}

/* Filter strip — stat cards.
   Header row (eyebrow + results counter) sits on a hairline above the
   "All" utility chip and the 6-up grid of sector cards. */
.cw-filters {
  margin-bottom: 56px;
}
.cw-filters__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 0 16px;
  border-bottom: 1px solid var(--color-rule);
  margin-bottom: 24px;
}
.cw-filters__title {
  display: flex; align-items: center; gap: 14px;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--color-sky);
}
.cw-filters__title::before {
  content: ""; width: 24px; height: 1px; background: currentColor;
}
.cw-filters__counter {
  font-size: 13px;
  color: var(--color-ink-soft);
  letter-spacing: 0.02em;
  font-weight: 300;
}
.cw-filters__counter strong {
  font-weight: 700;
  color: var(--color-ink);
  margin: 0 2px;
}

/* The "All" chip — quiet utility toggle above the grid. */
.cw-stats-all {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  padding: 8px 14px;
  margin-bottom: 16px;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-ink-soft);
  background: transparent;
  border: 1px solid var(--color-rule);
  cursor: pointer;
  font-family: inherit;
  transition: all 220ms var(--ease-standard);
}
.cw-stats-all__count {
  font-size: 11px;
  font-weight: 400;
  color: var(--color-ink-mute);
  letter-spacing: 0.04em;
}
.cw-stats-all:hover { border-color: var(--color-sky); color: var(--color-sky); }
.cw-stats-all.is-active {
  background: var(--color-ink);
  color: #fff;
  border-color: var(--color-ink);
}
.cw-stats-all.is-active .cw-stats-all__count { color: rgba(255,255,255,0.7); }

/* 6-up stat-card grid. */
.cw-stats {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}
.cw-stat {
  position: relative;
  display: flex; flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  min-height: 132px;
  padding: 20px;
  background: var(--color-cloud-warm);
  border: 1px solid var(--color-rule);
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  transition:
    background 280ms var(--ease-standard),
    border-color 280ms var(--ease-standard),
    transform 320ms var(--ease-standard),
    box-shadow 320ms var(--ease-standard);
  overflow: hidden;
}
.cw-stat::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--color-sky);
  transform: scaleY(0);
  transform-origin: bottom center;
  transition: transform 320ms var(--ease-standard);
}
.cw-stat:hover {
  transform: translateY(-2px);
  background: #fff;
  box-shadow: 0 4px 16px rgba(32, 88, 130, 0.08);
}
.cw-stat:hover::before { transform: scaleY(1); transform-origin: top center; }
.cw-stat__count {
  font-weight: 900;
  font-size: 36px;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--color-sky);
}
.cw-stat__label {
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-ink-soft);
  margin-top: 14px;
  line-height: 1.35;
}
.cw-stat.is-active {
  background: var(--color-navy-deep);
  border-color: var(--color-navy-deep);
  color: #fff;
}
.cw-stat.is-active::before { transform: scaleY(1); transform-origin: top center; }
.cw-stat.is-active .cw-stat__count { color: var(--color-sky); }
.cw-stat.is-active .cw-stat__label { color: rgba(255,255,255,0.85); }

/* Explore grid */
.cw-explore__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.cw-explore__cell {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 16px;
  padding: 36px 24px;
  background: #fff;
  border: 0;
  cursor: pointer;
  font-family: inherit;
  text-align: center;
  transition: background 220ms ease, transform 320ms var(--ease-standard);
}
.cw-explore__cell:hover {
  background: var(--color-sky-pale);
  transform: translateY(-2px);
}
.cw-explore__cell-logo {
  height: 48px;
  max-width: 70%;
  width: auto;
  object-fit: contain;
  filter: grayscale(100%) opacity(0.65);
  transition: filter 280ms ease;
}
.cw-explore__cell:hover .cw-explore__cell-logo {
  filter: grayscale(0%) opacity(1);
}
.cw-explore__cell-name {
  font-weight: 400;
  font-size: 12px;
  line-height: 1.35;
  letter-spacing: 0.04em;
  color: var(--color-ink-soft);
  transition: color 220ms ease;
}
.cw-explore__cell:hover .cw-explore__cell-name {
  color: var(--color-sky);
}
.cw-explore__cell.is-hidden { display: none; }

.cw-explore__empty {
  display: none;
  padding: 64px 0;
  text-align: center;
  color: var(--color-ink-mute);
  font-size: 14px;
  letter-spacing: 0.04em;
}
.cw-explore__empty.is-shown { display: block; }

/* ============================================================
   CASE STUDY PANEL — modal-style overlay
   Populated dynamically by 78.js (client-work block).
   ============================================================ */
.case-panel {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(21, 51, 76, 0.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 260ms ease;
}
.case-panel.is-open {
  opacity: 1;
  pointer-events: auto;
}
.case-panel__card {
  background: #fff;
  width: min(820px, 100%);
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  position: relative;
  box-shadow: 0 40px 80px rgba(15, 50, 80, 0.35);
  border-top: 4px solid var(--color-sky);
  transform: translateY(16px);
  opacity: 0;
  transition: opacity 320ms ease, transform 320ms var(--ease-standard);
}
.case-panel.is-open .case-panel__card {
  transform: translateY(0);
  opacity: 1;
}

.case-panel__close {
  position: absolute;
  top: 18px; right: 18px;
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 0;
  background: rgba(255,255,255,0.92);
  cursor: pointer;
  color: var(--color-ink-soft);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: color 220ms ease, background 220ms ease;
}
.case-panel__close:hover {
  color: var(--color-ink);
  background: #fff;
}
.case-panel__close svg { width: 16px; height: 16px; }

.case-panel__image {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
  background: var(--color-cloud);
}

.case-panel__body {
  padding: 40px 48px 48px;
}

.case-panel__head {
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--color-rule);
}
.case-panel__eyebrow {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-sky);
  margin: 0 0 10px;
}
.case-panel__title {
  font-weight: 300;
  font-size: 32px;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--color-ink);
  margin: 0;
}
.case-panel__subtitle {
  font-size: 15px;
  line-height: 1.4;
  color: var(--color-ink);
  margin: 6px 0 0;
  display:none;
}

.case-panel__meta {
  display: flex;
  align-items: baseline;
  gap: 14px;
  flex-wrap: wrap;
  margin: 0 0 28px;
}
.case-panel__meta-item {
  display: flex;
  align-items: baseline;
  gap: 12px;
}
.case-panel__meta-label {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-ink-mute);
  flex-shrink: 0;
  margin: 0;
}
.case-panel__meta-value {
  font-weight: 400;
  font-size: 13px;
  line-height: 1.4;
  color: var(--color-ink);
  margin: 0;
}

.case-panel__paragraphs p {
  font-weight: 300;
  font-size: 15px;
  line-height: 1.75;
  color: var(--fg-2);
  margin: 0 0 18px;
}
.case-panel__paragraphs p:last-child { margin-bottom: 0; }

.case-panel__tags {
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid var(--color-rule);
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.case-panel__tag {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-ink-soft);
  background: var(--color-sky-pale);
  font-weight: 400;
}

/* ----- Client-Work Responsive ----- */
@media (max-width: 1100px) {
  .cw-featured__header { grid-template-columns: 1fr; gap: 40px; }
  .cw-featured__grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .cw-explore__grid { grid-template-columns: repeat(3, 1fr); }
  .cw-stats { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 720px) {
  .cw-intro { padding: 72px var(--side-pad) 56px; }
  .cw-intro__title { font-size: 56px; }
  .cw-intro__sub { font-size: 18px; margin-bottom: 24px; }
  .cw-intro__blurb { font-size: 15px; margin-bottom: 40px; }
  .cw-intro__stats { gap: 24px 0; }
  .cw-intro__stat {
    padding: 0;
    border-left: 0;
    width: 50%;
  }
  .cw-intro__stat-value { font-size: 28px; }
  .cw-featured, .cw-explore { padding: 72px var(--side-pad); }
  .cw-featured__grid { grid-template-columns: 1fr; gap: 32px; }
  .cw-explore__grid { grid-template-columns: repeat(2, 1fr); }
  .cw-explore__title { font-size: 32px; }
  .case-panel__body { padding: 32px 24px; }
  .case-panel__title { font-size: 24px; }
  .cw-filters__counter { display: none; }
  .cw-stats { grid-template-columns: repeat(2, 1fr); }
  .cw-stat__count { font-size: 28px; }
}


/* ============================================================
   ============================================================
   5. CONTACT-US PAGE
   Three scoped variations share this section:
     .cu-v1 — Simple & functional
     .cu-v2 — Editorial split + locator strip
     .cu-v3 — Creative · sky-blue hero with live coordinates
   ============================================================
   ============================================================ */

/* ============================================================
   SHARED ATOMS — form, info card, subject chips
   These work the same way across all variations; visual tweaks
   per variation live in the .cu-vN scopes below.
   ============================================================ */
.cu-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.cu-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.cu-field { display: flex; flex-direction: column; }
.cu-field__label {
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-ink-mute);
  margin-bottom: 10px;
}
.cu-field input,
.cu-field select,
.cu-field textarea {
  width: 100%;
  padding: 12px 0;
  font: 300 16px/1.5 var(--font-sans);
  color: var(--color-ink);
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--color-rule);
  outline: none;
  resize: vertical;
  transition: border-color 220ms;
  appearance: none;
}
.cu-field select {
  background-image: linear-gradient(45deg, transparent 50%, var(--color-ink-soft) 50%),
                    linear-gradient(135deg, var(--color-ink-soft) 50%, transparent 50%);
  background-position: calc(100% - 14px) 50%, calc(100% - 9px) 50%;
  background-size: 5px 5px;
  background-repeat: no-repeat;
  cursor: pointer;
  padding-right: 28px;
}
.cu-field input:focus,
.cu-field select:focus,
.cu-field textarea:focus { border-bottom-color: var(--color-sky); }

/* Subject as toggleable chips (V2/V3) */
.cu-chips {
  display: flex; flex-wrap: wrap; gap: 8px;
}
.cu-chip {
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--color-ink-soft);
  background: transparent;
  border: 1px solid var(--color-rule);
  cursor: pointer;
  font-family: inherit;
  transition: all 220ms var(--ease-standard, cubic-bezier(.4,0,.2,1));
}
.cu-chip:hover {
  border-color: var(--color-sky);
  color: var(--color-sky);
}
.cu-chip.is-active {
  background: var(--color-ink);
  border-color: var(--color-ink);
  color: #fff;
}

/* Submit button */
.cu-submit {
  align-self: flex-start;
  display: inline-flex; align-items: center; gap: 14px;
  margin-top: 12px;
  padding: 16px 28px;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: var(--color-sky);
  color: #fff;
  border: 0;
  cursor: pointer;
  font-family: inherit;
  transition: background 220ms ease;
}
.cu-submit:hover { background: var(--color-blue); }

/* Inline success message (shown after fake submit) */
.cu-sent {
  display: none;
  padding: 32px;
  background: var(--color-sky-pale);
  border-left: 3px solid var(--color-sky);
}
.cu-sent.is-shown { display: block; }
.cu-sent h3 {
  font-weight: 700;
  font-size: 18px;
  color: var(--color-ink);
  margin: 0 0 8px;
}
.cu-sent p {
  font-weight: 300;
  font-size: 14px;
  line-height: 1.65;
  color: var(--color-ink-soft);
  margin: 0;
}

/* Info card atoms (used in all 3) */
.cu-info-block { margin-bottom: 36px; }
.cu-info-block:last-child { margin-bottom: 0; }
.cu-info-label {
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-sky);
  margin-bottom: 10px;
  display: flex; align-items: center; gap: 12px;
}
.cu-info-label::before {
  content: ""; width: 20px; height: 1px; background: currentColor;
}
.cu-info-value {
  font-weight: 300;
  font-size: 20px;
  line-height: 1.4;
  color: var(--color-ink);
  font-style: normal;
}
.cu-info-value a { color: inherit; }
.cu-info-value a:hover { color: var(--color-sky); }

/* ============================================================
   V1 — SIMPLE & FUNCTIONAL
   Clean white hero, traditional layout. Subject is a <select>.
   ============================================================ */
.cu-v1 .cu-hero {
  padding: 120px var(--side-pad) 64px;
  background: #fff;
  border-bottom: 1px solid var(--color-rule);
}
.cu-v1 .cu-hero__inner { max-width: var(--container-wide); margin: 0 auto; }
.cu-v1 .cu-hero__eyebrow {
  display: inline-flex; align-items: center; gap: 14px;
  font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--color-sky); font-weight: 700;
  margin-bottom: 24px;
}
.cu-v1 .cu-hero__eyebrow::before {
  content: ""; width: 32px; height: 1px; background: currentColor;
}
.cu-v1 .cu-hero__title {
  font-weight: 300;
  font-size: 72px;
  line-height: 1.05;
  letter-spacing: -0.015em;
  color: var(--color-ink);
  margin: 0 0 24px;
}
.cu-v1 .cu-hero__blurb {
  font-weight: 300;
  font-size: 18px;
  line-height: 1.7;
  color: var(--color-ink-soft);
  max-width: 600px;
  margin: 0;
}

.cu-v1 .cu-body {
  padding: 80px var(--side-pad);
  background: #fff;
}
.cu-v1 .cu-body__inner {
  max-width: var(--container-wide); margin: 0 auto;
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 80px;
  align-items: start;
}
.cu-v1 .cu-info { padding: 32px; background: var(--color-cloud-warm); }
.cu-v1 .cu-info .cu-info-value { font-size: 18px; }

/* Geo card — appears below the form/info on V1 */
.cu-v1 .cu-geo {
  background: var(--color-cloud-warm);
  border-top: 1px solid var(--color-rule);
  padding: 80px var(--side-pad);
}
.cu-v1 .cu-geo__inner {
  max-width: var(--container-wide); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px;
  align-items: center;
}
.cu-v1 .cu-geo__title {
  font-weight: 300;
  font-size: 36px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--color-ink);
  margin: 0 0 12px;
}
.cu-v1 .cu-geo__text {
  font-weight: 300;
  font-size: 15px;
  line-height: 1.7;
  color: var(--color-ink-soft);
  margin: 0 0 28px;
  max-width: 460px;
}
.cu-v1 .cu-geo__facts { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.cu-v1 .cu-geo__fact-label {
  font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--color-ink-mute); margin-bottom: 6px; font-weight: 700;
}
.cu-v1 .cu-geo__fact-value {
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.005em;
  color: var(--color-ink);
}
.cu-v1 .cu-geo__map {
  aspect-ratio: 1 / 1;
  max-width: 360px;
  margin-left: auto;
  position: relative;
}
.cu-v1 .cu-geo__map svg { width: 100%; height: 100%; display: block; }

/* ============================================================
   V2 — EDITORIAL · locator strip + bold info column
   Warm cloud background. Subject is chip pills. Big title, big
   info, horizontal city scale at the bottom.
   ============================================================ */
.cu-v2 { background: var(--color-cloud-warm); }

/* Locator strip at the very top of the page */
.cu-v2 .cu-locator {
  background: var(--color-navy-deep);
  color: #fff;
  padding: 16px var(--side-pad);
  display: flex; align-items: center; gap: 32px; flex-wrap: wrap;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.cu-v2 .cu-locator__item {
  display: inline-flex; align-items: center; gap: 10px;
}
.cu-v2 .cu-locator__item svg {
  width: 14px; height: 14px;
  stroke: var(--color-sky);
}
.cu-v2 .cu-locator__sep {
  width: 1px; height: 14px; background: rgba(255,255,255,0.2);
}
.cu-v2 .cu-locator__value strong {
  color: var(--color-sky);
  font-weight: 700;
}

.cu-v2 .cu-hero {
  padding: 96px var(--side-pad) 56px;
}
.cu-v2 .cu-hero__inner { max-width: var(--container-wide); margin: 0 auto; }
.cu-v2 .cu-hero__title {
  font-weight: 300;
  font-size: clamp(64px, 9vw, 120px);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--color-ink);
  margin: 0 0 20px;
}
.cu-v2 .cu-hero__title em {
  color: var(--color-sky);
  font-style: italic;
  font-weight: 300;
}
.cu-v2 .cu-hero__sub {
  font-style: italic;
  font-weight: 300;
  font-size: clamp(20px, 1.8vw, 24px);
  line-height: 1.3;
  color: var(--color-ink-soft);
  max-width: 640px;
  margin: 0;
}

.cu-v2 .cu-body {
  padding: 64px var(--side-pad) 96px;
}
.cu-v2 .cu-body__inner {
  max-width: var(--container-wide); margin: 0 auto;
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 80px;
  align-items: start;
}
.cu-v2 .cu-form-card {
  background: #fff;
  padding: 48px;
}
.cu-v2 .cu-form-card__title {
  font-weight: 300;
  font-size: 28px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--color-ink);
  margin: 0 0 8px;
}
.cu-v2 .cu-form-card__lead {
  font-weight: 300;
  font-size: 14px;
  line-height: 1.65;
  color: var(--color-ink-soft);
  margin: 0 0 32px;
}

.cu-v2 .cu-info { background: transparent; padding: 0; }
.cu-v2 .cu-info .cu-info-value {
  font-size: 28px;
  letter-spacing: -0.01em;
  font-weight: 300;
}

/* World strip — horizontal scale of cities with Toronto pinned */
.cu-v2 .cu-strip {
  background: #fff;
  border-top: 1px solid var(--color-rule);
  border-bottom: 1px solid var(--color-rule);
  padding: 56px var(--side-pad);
}
.cu-v2 .cu-strip__inner { max-width: var(--container-wide); margin: 0 auto; }
.cu-v2 .cu-strip__head {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-bottom: 32px;
  flex-wrap: wrap;
  gap: 16px;
}
.cu-v2 .cu-strip__title {
  font-weight: 300;
  font-size: 24px;
  letter-spacing: -0.005em;
  color: var(--color-ink);
  margin: 0;
}
.cu-v2 .cu-strip__cap {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-ink-mute);
}
.cu-v2 .cu-strip__rail {
  position: relative;
  height: 80px;
  margin: 0 12px;
  border-top: 1px solid var(--color-rule);
  display: flex;
  align-items: flex-start;
}
.cu-v2 .cu-strip__tick {
  position: absolute;
  top: 0;
  width: 1px;
  height: 8px;
  background: var(--color-rule);
}
.cu-v2 .cu-strip__city {
  position: absolute;
  top: 16px;
  transform: translateX(-50%);
  text-align: center;
}
.cu-v2 .cu-strip__city-dot {
  display: inline-block;
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--color-ink-mute);
  margin-bottom: 8px;
}
.cu-v2 .cu-strip__city-name {
  display: block;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-ink-soft);
  white-space: nowrap;
}
.cu-v2 .cu-strip__city--here .cu-strip__city-dot {
  background: var(--color-sky);
  width: 14px; height: 14px;
  box-shadow: 0 0 0 4px var(--color-sky-pale);
  position: relative;
  top: -3px;
}
.cu-v2 .cu-strip__city--here .cu-strip__city-name {
  color: var(--color-sky);
  font-weight: 700;
}
.cu-v2 .cu-strip__city--here .cu-strip__city-here {
  display: block;
  margin-top: 4px;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-sky);
  font-weight: 700;
}

/* ============================================================
   V3 — CREATIVE · sky-blue hero with live "you are here"
   Pulsing coordinate target, live local time, time-of-day
   greeting. Most decorative of the three.
   ============================================================ */
.cu-v3 .cu-hero {
  position: relative;
  padding: 96px var(--side-pad) 96px;
  background: var(--color-sky);
  color: #fff;
  overflow: hidden;
}
.cu-v3 .cu-hero__78 {
  position: absolute;
  right: -50px; bottom: -120px;
  font: 900 460px/0.8 var(--font-display);
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.22);
  letter-spacing: -0.04em;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}
.cu-v3 .cu-hero__inner {
  position: relative; z-index: 1;
  max-width: var(--container-wide); margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 80px;
  align-items: center;
}

.cu-v3 .cu-greeting {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 700;
  margin-bottom: 24px;
  padding: 8px 14px 8px 12px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.28);
}
.cu-v3 .cu-greeting__dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #fff;
  display: inline-block;
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.22);
  animation: cu-pulse 2.4s ease-in-out infinite;
}
@keyframes cu-pulse {
  0%, 100% { opacity: 0.65; }
  50%      { opacity: 1; }
}
.cu-v3 .cu-hero__title {
  font-weight: 300;
  font-size: clamp(56px, 8vw, 108px);
  line-height: 1;
  letter-spacing: -0.025em;
  color: #fff;
  margin: 0 0 18px;
}
.cu-v3 .cu-hero__title em {
  font-style: italic;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.78);
}
.cu-v3 .cu-hero__blurb {
  font-weight: 300;
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.92);
  max-width: 480px;
  margin: 0;
}

/* "You are here" target — pulsing crosshairs over a quiet grid */
.cu-v3 .cu-target {
  position: relative;
  width: 100%;
  max-width: 360px;
  aspect-ratio: 1 / 1;
  margin: 0 auto;
}
.cu-v3 .cu-target__svg { width: 100%; height: 100%; display: block; }
.cu-v3 .cu-target__pulse {
  transform-origin: center;
  animation: cu-ripple 2.6s ease-out infinite;
}
@keyframes cu-ripple {
  0%   { r: 6; opacity: 0.8; }
  100% { r: 60; opacity: 0; }
}
.cu-v3 .cu-target__meta {
  position: absolute;
  left: 0; right: 0; bottom: -56px;
  text-align: center;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 700;
}
.cu-v3 .cu-target__meta strong {
  display: block;
  font-size: 22px;
  letter-spacing: 0.04em;
  text-transform: none;
  color: #fff;
  margin-bottom: 4px;
  font-weight: 700;
}

/* White logo lockup (replaces the old crosshair target) */
.cu-v3 .cu-hero__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 24px;
}
.cu-v3 .cu-hero__logo img {
  width: 100%;
  max-width: 360px;
  height: auto;
  display: block;
  user-select: none;
}

.cu-v3 .cu-body {
  padding: 96px var(--side-pad) 96px;
  background: #fff;
}
.cu-v3 .cu-body__inner {
  max-width: var(--container-wide); margin: 0 auto;
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 80px;
  align-items: start;
}
.cu-v3 .cu-form-card__title {
  font-weight: 300;
  font-size: 32px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--color-ink);
  margin: 0 0 10px;
}
.cu-v3 .cu-form-card__lead {
  font-weight: 300;
  font-size: 15px;
  line-height: 1.7;
  color: var(--color-ink-soft);
  margin: 0 0 32px;
}
.cu-v3 .cu-info {
  background: var(--color-cloud-warm);
  padding: 36px;
}
.cu-v3 .cu-info .cu-info-value { font-size: 18px; }

/* ============================================================
   FINAL — combines V3 hero with V2 form-card body pattern.
   Applied via `class="cu-v3 cu-final"` on body so the V3 hero
   styling still flows (sky-blue band, target, live clock), while
   .cu-final overrides the body section to match V2's editorial
   card layout. Subject is a <select> (like V1) for simplicity.
   ============================================================ */
.cu-final .cu-body {
  padding: 96px var(--side-pad);
  background: var(--color-cloud-warm);
}
.cu-final .cu-body__inner {
  max-width: var(--container-wide); margin: 0 auto;
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 80px;
  align-items: start;
}
.cu-final .cu-form-card {
  background: #fff;
  padding: 48px;
}
.cu-final .cu-form-card__title {
  font-weight: 300;
  font-size: 32px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--color-ink);
  margin: 0 0 10px;
}
.cu-final .cu-form-card__lead {
  font-weight: 300;
  font-size: 15px;
  line-height: 1.7;
  color: var(--color-ink-soft);
  margin: 0 0 32px;
}
.cu-final .cu-info {
  background: transparent;
  padding: 0;
}
/* Replace the dash bullet with icons on the final variant */
.cu-final .cu-info-label::before { display: none; }
.cu-final .cu-info-label {
  gap: 12px;
  font-size: 19px;
  letter-spacing: 0.2em;
}
.cu-final .cu-info-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  color: var(--color-sky, currentColor);
}
.cu-final .cu-info .cu-info-value {
  font-size: 19px;
  letter-spacing: -0.005em;
  font-weight: 300;
}

@media (max-width: 720px) {
  .cu-final .cu-form-card { padding: 32px 24px; }
  .cu-final .cu-info .cu-info-value { font-size: 20px; }
}

/* ----- Contact-Us Responsive ----- */
@media (max-width: 1100px) {
  .cu-v1 .cu-body__inner,
  .cu-v2 .cu-body__inner,
  .cu-v3 .cu-body__inner,
  .cu-final .cu-body__inner,
  .cu-v3 .cu-hero__inner {
    grid-template-columns: 1fr; gap: 48px;
  }
  .cu-v1 .cu-geo__inner { grid-template-columns: 1fr; gap: 40px; }
  .cu-v1 .cu-geo__map { margin: 0 auto; }
  .cu-v3 .cu-target__meta { position: static; margin-top: 24px; }
}
@media (max-width: 720px) {
  .cu-v1 .cu-hero { padding: 64px var(--side-pad) 40px; }
  .cu-v1 .cu-hero__title { font-size: 44px; }
  .cu-v2 .cu-hero { padding: 56px var(--side-pad) 40px; }
  .cu-v2 .cu-hero__title { font-size: 48px; }
  .cu-v2 .cu-locator { padding: 12px var(--side-pad); gap: 16px; font-size: 11px; letter-spacing: 0.1em; }
  .cu-v2 .cu-locator__sep { display: none; }
  .cu-v2 .cu-form-card { padding: 32px 24px; }
  .cu-v2 .cu-info .cu-info-value { font-size: 22px; }
  .cu-v2 .cu-strip__rail { overflow-x: auto; }
  .cu-v3 .cu-hero { padding: 56px var(--side-pad) 80px; }
  .cu-v3 .cu-hero__title { font-size: 48px; }
  .cu-v3 .cu-body { padding: 56px var(--side-pad); }
  .cu-row { grid-template-columns: 1fr; gap: 16px; }
}
