/* ==========================================================================
   Universal Consulting Experts: Design System
   Visual language modelled on dreyfus.com.au
   ========================================================================== */

/* ---------- Tokens: Premium refinement ---------- */
:root {
  /* Brand */
  --navy: #0e1b35;
  --navy-deep: #0a1226;
  --navy-90: rgba(14, 27, 53, 0.92);
  --navy-80: rgba(14, 27, 53, 0.82);
  --white: #ffffff;
  --cream: #f7f4ef;
  --green: #4cbd8f;
  --green-dark: #3aa477;
  --blue: #33a5dd;
  --orange: #f5854e;
  --gold: #c9a14a;          /* refined accent for premium feel */
  --gold-soft: #e3c787;
  --ink: #0e1b35;
  --ink-soft: #2a3b5c;
  --muted: #6b7385;
  --line: #e5e7eb;
  --line-soft: rgba(14,27,53,.08);
  --bg: #ffffff;
  --bg-alt: #f7f5f0;        /* warm cream alt instead of cool grey */
  --bg-deep: #0e1b35;

  /* Type: Inter for UI, Fraunces for editorial display (variable opsz/SOFT) */
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  --font-display: "Fraunces", "Source Serif 4", "EB Garamond", Georgia, "Times New Roman", serif;

  /* Sharp corners: everywhere */
  --radius-sharp: 0;

  /* Scale */
  --container: 1200px;
  --container-narrow: 920px;
  --space-1: .5rem;
  --space-2: 1rem;
  --space-3: 1.5rem;
  --space-4: 2rem;
  --space-5: 3rem;
  --space-6: 4.5rem;
  --space-7: 6rem;
  --space-8: 8rem;
  --radius: 0;
  --transition: 220ms cubic-bezier(.2,.7,.2,1);
}

/* ---------- Reset ---------- */
*,*::before,*::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-soft);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "ss01", "cv11";
}
img, picture, video, canvas, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold); }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
ul, ol { padding-left: 1.25em; }
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-sans);
  font-weight: 500;
  line-height: 1.15;
  margin: 0 0 .5em;
  color: var(--navy);
  letter-spacing: -.02em;
}
h1 { font-size: clamp(2.2rem, 5vw, 4rem); font-weight: 500; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 500; }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); font-weight: 600; }
p { margin: 0 0 1em; }
p, li { color: var(--ink-soft); }
strong { color: var(--ink); font-weight: 600; }

/* ---------- Layout ----------
   Sections are full bleed. Edge padding scales with viewport so content
   stretches end to end on large screens while staying readable on mobile. */
.container {
  width: 100%;
  padding-inline: clamp(1.25rem, 4vw, 4rem);
  margin-inline: auto;
}
.container--narrow {
  width: 100%;
  max-width: var(--container-narrow);
  padding-inline: clamp(1.25rem, 4vw, 3rem);
  margin-inline: auto;
}
.section { padding-block: clamp(3rem, 8vw, 6rem); }
.section--alt { background: var(--bg-alt); }
.section--navy { background: var(--navy); color: var(--white); }
.section--navy h1, .section--navy h2, .section--navy h3 { color: var(--white); }

/* ---------- Header ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; justify-content: space-between; align-items: center;
  min-height: 112px;
  padding: 1rem clamp(1.25rem, 3vw, 2rem);
  transition: background var(--transition), box-shadow var(--transition);
}
.site-header--scrolled,
.site-header--solid {
  background: var(--navy);
  box-shadow: 0 2px 16px rgba(0,0,0,.15);
}
.brand {
  display: inline-flex; align-items: center; gap: 1rem;
  color: var(--white);
  font-weight: 500;
  font-size: 1.4rem;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.brand__logo {
  display: block;
  width: clamp(230px, 26vw, 340px);
  height: auto;
  aspect-ratio: 1680 / 508;
  flex: 0 0 auto;
}
.brand__logo--nav {
  width: clamp(240px, 42vw, 360px);
  height: auto;
}
.brand__mark {
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 0;
}
.brand__mark img {
  height: 64px; width: auto;
  display: block;
  border-radius: 0;
}
@media (min-width: 700px) {
  .brand__mark img { height: 76px; }
}
.brand__name { display: none; }
@media (min-width: 900px) { .brand__name { display: inline; font-size: 1.4rem; } }
@media (max-width: 599px) {
  .site-header {
    min-height: 88px;
    padding-block: .75rem;
  }
  .brand__mark img { height: 56px; }
  .brand__logo { width: min(58vw, 230px); }
  .brand__logo--nav { width: min(58vw, 230px); }
  .brand { font-size: 1rem; }
}

.nav-toggle {
  width: 92px; height: 92px;
  display: grid; place-items: center;
  color: var(--white);
  border-radius: 4px;
}
.nav-toggle:hover { background: rgba(255,255,255,.12); }
.nav-toggle__bars { width: 48px; height: 3px; background: currentColor; position: relative; display: block; }
.nav-toggle__bars::before, .nav-toggle__bars::after {
  content: ""; position: absolute; left: 0; right: 0; height: 3px; background: currentColor;
  transition: transform var(--transition);
}
.nav-toggle__bars::before { top: -14px; }
.nav-toggle__bars::after  { top: 14px; }
@media (max-width: 599px) {
  .nav-toggle { width: 64px; height: 64px; }
  .nav-toggle__bars { width: 36px; height: 3px; }
  .nav-toggle__bars::before { top: -11px; }
  .nav-toggle__bars::after  { top: 11px; }
}

/* ---------- Liquid Glass Nav Overlay ---------- */
.nav-overlay {
  position: fixed; inset: 0; z-index: 200;
  background: linear-gradient(135deg, rgba(14,27,53,.65) 0%, rgba(10,18,38,.78) 100%);
  backdrop-filter: blur(28px) saturate(160%);
  -webkit-backdrop-filter: blur(28px) saturate(160%);
  display: flex; flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transition: opacity 420ms cubic-bezier(.2,.7,.2,1), visibility 0s 420ms;
}
.nav-overlay[aria-hidden="false"] {
  opacity: 1;
  visibility: visible;
  transition: opacity 420ms cubic-bezier(.2,.7,.2,1), visibility 0s 0s;
}
/* Subtle inner glow / refraction */
.nav-overlay::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(201,161,74,.12) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(76,189,143,.08) 0%, transparent 50%);
  pointer-events: none;
}
.nav-overlay::after {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.02) 1px, transparent 1px);
  background-size: 80px 80px;
  background-position: center;
  pointer-events: none;
}
.nav-overlay__top {
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.25rem 1.5rem;
  position: relative; z-index: 2;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.nav-overlay__top .brand {
  margin-left: auto;
}
.nav-overlay__body { position: relative; z-index: 2; }
.nav-close {
  order: -1;
  flex: 0 0 auto;
  width: 56px; height: 56px;
  display: grid; place-items: center;
  color: var(--white); font-size: 1.5rem; line-height: 1;
  border: 1px solid rgba(255,255,255,.15);
  background: rgba(255,255,255,.04);
  backdrop-filter: blur(8px);
  transition: all var(--transition);
}
.nav-close:hover {
  color: var(--gold);
  border-color: var(--gold);
  background: rgba(201,161,74,.08);
}
/* Stagger nav items in */
.nav-overlay[aria-hidden="false"] .nav-group__title {
  animation: navFadeIn 600ms cubic-bezier(.2,.7,.2,1) both;
}
.nav-overlay[aria-hidden="false"] .nav-group:nth-child(1) .nav-group__title { animation-delay: 120ms; }
.nav-overlay[aria-hidden="false"] .nav-group:nth-child(2) .nav-group__title { animation-delay: 200ms; }
.nav-overlay[aria-hidden="false"] .nav-group li {
  animation: navFadeIn 600ms cubic-bezier(.2,.7,.2,1) both;
}
.nav-overlay[aria-hidden="false"] .nav-group:nth-child(1) li:nth-child(1) { animation-delay: 200ms; }
.nav-overlay[aria-hidden="false"] .nav-group:nth-child(1) li:nth-child(2) { animation-delay: 260ms; }
.nav-overlay[aria-hidden="false"] .nav-group:nth-child(1) li:nth-child(3) { animation-delay: 320ms; }
.nav-overlay[aria-hidden="false"] .nav-group:nth-child(1) li:nth-child(4) { animation-delay: 380ms; }
.nav-overlay[aria-hidden="false"] .nav-group:nth-child(2) li:nth-child(odd)  { animation-delay: 280ms; }
.nav-overlay[aria-hidden="false"] .nav-group:nth-child(2) li:nth-child(even) { animation-delay: 360ms; }
@keyframes navFadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

.nav-overlay__body {
  flex: 1; overflow-y: auto;
  padding: 2rem 2rem 4rem;
  display: grid; grid-template-columns: 1fr; gap: 2.5rem;
}
@media (min-width: 800px) {
  .nav-overlay__body {
    grid-template-columns: repeat(2, 1fr);
    padding: 3rem 4rem 5rem;
    column-gap: 4rem;
  }
}
.nav-group__title {
  display: inline-flex; align-items: center; gap: .85rem;
  font-family: var(--font-sans);
  font-size: .72rem; text-transform: uppercase; letter-spacing: .35em;
  color: var(--gold); margin-bottom: 1.5rem;
  font-weight: 500;
}
.nav-group__title--spaced { margin-top: 2.5rem; }
.nav-group__title::before { content: ""; width: 24px; height: 1px; background: var(--gold); }
.nav-group ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 1rem; }
.nav-group a {
  color: var(--white);
  font-family: var(--font-sans);
  font-size: clamp(1.25rem, 2.4vw, 1.65rem);
  font-weight: 500;
  letter-spacing: -.01em;
  display: inline-flex; align-items: center; gap: .65em;
  transition: color var(--transition), padding-left var(--transition);
  position: relative;
  padding-left: 0;
}
.nav-group a:hover { color: var(--gold); padding-left: .5em; }
.nav-group a::after {
  content: "→"; opacity: 0; transform: translateX(-10px);
  transition: opacity var(--transition), transform var(--transition);
  font-family: var(--font-sans);
  font-size: .8em;
}
.nav-group a:hover::after { opacity: 1; transform: translateX(0); }

body.nav-open { overflow: hidden; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  color: var(--white);
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-deep) 100%);
  overflow: hidden;
  padding-bottom: 0;
}

/* Premium hero: full-bleed video centerpiece + editorial type */
.hero--premium {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: clamp(6rem, 11vh, 8.5rem) 1.5rem clamp(1.75rem, 4vw, 2.5rem);
  min-height: 100svh;
  gap: clamp(.9rem, 2vw, 1.4rem);
}
.hero__bg {
  position: absolute; inset: 0; pointer-events: none; z-index: 0;
  overflow: hidden;
}
.hero__video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.08) contrast(1.02);
  /* Tiny upward drift to feel cinematic without distracting */
  transform: scale(1.02);
}
.hero__overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 50% 40%, rgba(8,12,28,.32) 0%, rgba(8,12,28,.55) 55%, rgba(8,12,28,.78) 100%),
    linear-gradient(180deg, rgba(8,12,28,.6) 0%, rgba(8,12,28,.18) 28%, rgba(8,12,28,.55) 78%, rgba(8,12,28,.92) 100%);
}
.hero__grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 80px 80px;
  background-position: center;
  mask-image: radial-gradient(ellipse at center, rgba(0,0,0,.6) 0%, rgba(0,0,0,0) 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, rgba(0,0,0,.6) 0%, rgba(0,0,0,0) 70%);
  opacity: .5;
}
.hero__glow {
  position: absolute; left: 50%; top: 40%; transform: translate(-50%, -50%);
  width: min(92vw, 980px); height: min(92vw, 980px);
  border-radius: 50%;
  background:
    radial-gradient(circle at center, rgba(201, 161, 74, .16) 0%, rgba(201, 161, 74, .05) 32%, rgba(201, 161, 74, 0) 64%);
  filter: blur(20px);
}
.hero--video .hero__glow { display: none; } /* video carries the atmosphere */
.hero__inner {
  position: relative; z-index: 2;
  max-width: 980px;
  margin-inline: auto;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  flex: 0 1 auto;
  width: 100%;
}
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 1.1rem;
  font-family: var(--font-sans);
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .38em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: clamp(1.1rem, 2.4vw, 1.6rem);
}
.hero__eyebrow .rule {
  width: 52px; height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--gold) 100%);
}
.hero__eyebrow .rule:last-child {
  background: linear-gradient(90deg, var(--gold) 0%, transparent 100%);
}
.hero__lead {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.1rem, 4.3vw, 3.3rem);
  line-height: 1.16;
  letter-spacing: -.012em;
  color: var(--white);
  max-width: 24ch;
  margin: 0 auto;
  text-wrap: balance;
  text-shadow: 0 1px 30px rgba(0,0,0,.35);
  /* Fraunces variable axes — push optical size to display, soften the serifs slightly */
  font-variation-settings: "opsz" 144, "SOFT" 30;
  font-feature-settings: "ss01" on; /* alternative 'a' / 'g' if available */
}
.hero__lead em {
  font-style: italic;
  color: var(--gold-soft);
  font-weight: 400;
  font-variation-settings: "opsz" 144, "SOFT" 50;
}
.hero__sub {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: clamp(.98rem, 1.35vw, 1.08rem);
  line-height: 1.55;
  letter-spacing: .005em;
  color: rgba(255,255,255,.78);
  max-width: 46ch;
  margin: clamp(1rem, 1.8vw, 1.5rem) auto 0;
  text-wrap: balance;
}
/* Hero CTAs: refined, smaller than xl */
.hero__actions {
  position: relative;
  z-index: 3;
  display: flex; flex-wrap: wrap; gap: .85rem;
  justify-content: center;
  width: 100%;
  max-width: 560px;
  flex: 0 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
}
.hero--premium .btn {
  min-height: 52px;
  padding: 1.05em 1.95em;
  font-size: clamp(.86rem, 1vw, .95rem);
  letter-spacing: .13em;
}
.hero--premium .btn--xl {
  min-height: 56px;
  padding: 1.1em 2.1em;
  font-size: clamp(.9rem, 1.1vw, 1rem);
  letter-spacing: .14em;
}
@media (max-width: 599px) {
  .hero__actions {
    flex-direction: column;
    align-items: stretch;
    padding: 0 1.25rem;
    max-width: 380px;
    gap: .75rem;
  }
  .hero__actions .btn { width: 100%; }
  .hero--premium .btn {
    min-height: 58px;
    padding: 1.2em 1.7em;
    font-size: 1rem;
    letter-spacing: .12em;
  }
  .hero--premium {
    min-height: 100svh;
    padding: 5rem 1.25rem 2rem;
    gap: 1.1rem;
    justify-content: center;
  }
  .hero__eyebrow {
    font-size: .62rem;
    letter-spacing: .32em;
    gap: .7rem;
    margin-bottom: 1rem;
  }
  .hero__eyebrow .rule { width: 28px; }
  .hero__lead {
    font-size: clamp(1.65rem, 6.6vw, 2.1rem);
    line-height: 1.2;
    letter-spacing: -.012em;
    max-width: 20ch;
  }
  .hero__sub {
    font-size: 1.04rem;
    line-height: 1.5;
    max-width: 30ch;
    margin-top: 1.1rem;
    color: rgba(255,255,255,.82);
  }
  /* Mobile: ensure video covers and stays sharp */
  .hero__video { object-position: 50% 45%; }
  /* On mobile the scroll arrow can compete with CTAs — sit it a bit lower */
  .hero__scroll { margin-top: 1.2rem; opacity: .55; }
}
/* Tablet tweak */
@media (min-width: 600px) and (max-width: 1023px) {
  .hero__lead { font-size: clamp(2.4rem, 6vw, 3.6rem); max-width: 16ch; }
  .hero__sub { font-size: 1rem; max-width: 40ch; }
}
/* Honour reduced motion: hide the video, lean on the poster + overlay */
@media (prefers-reduced-motion: reduce) {
  .hero__video {
    /* Browsers should already pause; we also kill the subtle scale */
    transform: none;
    animation: none;
  }
}

/* Hero scroll arrow: circular, centered below CTAs */
.hero__scroll {
  position: relative;
  z-index: 4;
  width: 50px; height: 50px;
  margin: clamp(.1rem, .8vw, .5rem) auto 0;
  flex: 0 0 auto;
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 50%;
  display: grid; place-items: center;
  color: rgba(255,255,255,.85);
  background: transparent;
  opacity: .7;
  transition: border-color var(--transition), color var(--transition), opacity var(--transition), transform var(--transition);
}
.hero__scroll:hover {
  border-color: var(--gold);
  color: var(--gold);
  opacity: 1;
  transform: translateY(2px);
}
.hero__scroll svg {
  width: 22px; height: 22px;
  display: block;
}
@media (max-width: 599px) {
  .hero__scroll { order: 99; }
}

/* Compact hero used on inner pages */
.hero--inner {
  min-height: clamp(420px, 48vh, 560px);
  align-items: center;
  padding-bottom: 0;
  background: radial-gradient(circle at 50% 35%, rgba(201,161,74,.12) 0%, rgba(201,161,74,0) 42%), linear-gradient(180deg, var(--navy) 0%, var(--navy-deep) 100%);
}
.hero--inner .hero__panel {
  margin: 0 auto;
  text-align: center;
  border: 1px solid rgba(201,161,74,.42);
  background: rgba(10, 18, 38, .38);
  padding: 2.75rem 3.25rem;
  max-width: 640px;
}
.hero--inner .hero__title { color: var(--white); font-size: clamp(2rem, 4vw, 3rem); margin: 0; }
@media (max-width: 599px) {
  .hero--inner {
    min-height: 480px;
  }
  .hero--inner .hero__panel {
    width: calc(100% - 2.5rem);
    padding: 2rem 1.25rem;
  }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .6em;
  padding: 1.05em 2.2em;
  min-height: 48px;
  font-weight: 500;
  font-size: clamp(.95rem, 1.5vw, 1.05rem);
  letter-spacing: .12em;
  text-transform: uppercase;
  border-radius: 0;
  transition: background var(--transition), color var(--transition), transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,.15) 50%, transparent 100%);
  transform: translateX(-110%);
  transition: transform 700ms cubic-bezier(.2,.7,.2,1);
  pointer-events: none;
}
.btn:hover::before { transform: translateX(110%); }
.btn--lg { padding: 1.25em 2.6em; font-size: clamp(1rem, 1.6vw, 1.1rem); min-height: 56px; }
.btn--xl {
  padding: 1.55em 3.4em;
  font-size: clamp(1.1rem, 1.9vw, 1.35rem);
  min-height: 72px;
  letter-spacing: .08em;
}
@media (max-width: 599px) {
  .btn { padding: 1em 1.6em; }
  .btn--lg { padding: 1.15em 2rem; }
  .btn--xl { padding: 1.35em 2.4em; font-size: 1.1rem; min-height: 64px; }
}
.btn--green {
  background: var(--green);
  color: var(--white);
}
.btn--green:hover { background: var(--green-dark); color: var(--white); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(76,189,143,.35); }
.btn--ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,.5);
}
.btn--ghost:hover { background: rgba(255,255,255,.1); color: var(--white); }
.btn--ghost-light {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,.25);
  box-shadow: none;
}
.btn--ghost-light:hover {
  background: rgba(255,255,255,.06);
  color: var(--gold);
  border-color: var(--gold);
  transform: translateY(-2px);
}
.btn--gold {
  background: var(--gold);
  color: var(--navy);
}
.btn--gold:hover { background: var(--gold-soft); color: var(--navy); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,161,74,.3); }
.btn--navy {
  background: var(--navy);
  color: var(--white);
}
.btn--navy:hover { background: #1d3260; color: var(--white); }
.btn--text {
  padding: 0;
  min-height: 0;
  background: none;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .25em;
  font-weight: 500;
  font-size: .8rem;
  box-shadow: none;
  border-bottom: 1px solid transparent;
  border-radius: 0;
}
.btn--text:hover { color: var(--gold-soft); border-bottom-color: var(--gold); transform: none; box-shadow: none; }
.btn--text::after { content: "→"; transition: transform var(--transition); margin-left: .35em; }
.btn--text:hover::after { transform: translateX(4px); }
.mt-3 { margin-top: 2rem; }

/* ---------- Intro section ---------- */
.intro {
  text-align: center;
  padding-block: clamp(4rem, 8vw, 6rem) clamp(2rem, 4vw, 3rem);
  position: relative;
}
.intro__eyebrow {
  display: inline-flex; align-items: center; gap: 1rem;
  font-size: .75rem; text-transform: uppercase; letter-spacing: .35em;
  color: var(--gold); font-weight: 500;
}
.intro__eyebrow::before, .intro__eyebrow::after {
  content: ""; width: 32px; height: 1px; background: var(--gold);
}
.intro__title {
  margin-top: 1.5rem;
  margin-bottom: 2rem;
  max-width: 22ch;
  margin-inline: auto;
  font-size: clamp(2rem, 4.5vw, 3.4rem);
}
.intro__body {
  color: var(--ink-soft);
  max-width: 60ch;
  margin-inline: auto;
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  line-height: 1.7;
}
.intro__divider {
  width: 1px;
  height: 24px;
  background: linear-gradient(180deg, var(--gold) 0%, transparent 100%);
  margin: 1.5rem auto 0;
}

/* ---------- Section heading ---------- */
.section-head {
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
  text-align: center;
}
.section-head__eyebrow {
  display: inline-flex; align-items: center; gap: 1rem;
  font-size: .75rem; text-transform: uppercase; letter-spacing: .35em;
  color: var(--gold); font-weight: 500; margin-bottom: 1.25rem;
}
.section-head__eyebrow::before, .section-head__eyebrow::after {
  content: ""; width: 28px; height: 1px; background: var(--gold);
}
.section-head__title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  max-width: 28ch;
  margin-inline: auto;
  font-family: var(--font-sans);
  font-weight: 500;
}

/* ---------- Industries grid ---------- */
/* Industries: 1col mobile → 2col tablet → 3col desktop (3x2 layout) */
.industries-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  max-width: 1500px;
  margin-inline: auto;
}
@media (min-width: 640px) { .industries-grid { grid-template-columns: repeat(2, 1fr); gap: 1.25rem; } }
@media (min-width: 1000px) { .industries-grid { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; } }

.industry-card {
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
  text-align: center;
  color: var(--white);
  min-height: 240px;
  padding: 4rem 1.5rem 2.5rem;
  background: var(--navy);
  border: 1px solid rgba(255,255,255,.08);
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}
@media (min-width: 640px) {
  .industry-card { min-height: 280px; padding: 4rem 1.5rem 2.5rem; }
}
@media (min-width: 1000px) {
  .industry-card { min-height: 320px; padding: 4.5rem 1.75rem 2.75rem; }
}
.industry-card__img { display: none; }
.industry-card--photo .industry-card__img {
  display: block;
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  filter: saturate(1.04);
  transition: transform 700ms cubic-bezier(.2,.7,.2,1);
}
.industry-card--photo:hover .industry-card__img { transform: scale(1.04); }
.industry-card--photo .industry-card__veil {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(8,12,28,.25) 0%, rgba(8,12,28,.45) 50%, rgba(8,12,28,.85) 100%);
  z-index: 1;
  transition: background var(--transition);
}
.industry-card--photo:hover .industry-card__veil {
  background: linear-gradient(180deg, rgba(8,12,28,.2) 0%, rgba(8,12,28,.4) 50%, rgba(8,12,28,.88) 100%);
}
/* Shimmer sweep: same as .btn::before */
.industry-card::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(115deg, transparent 0%, rgba(201,161,74,.08) 50%, transparent 100%);
  transform: translateX(-110%);
  transition: transform 900ms cubic-bezier(.2,.7,.2,1);
  pointer-events: none;
  z-index: 1;
}
.industry-card:hover::before { transform: translateX(110%); }
/* Bottom hairline that brightens to gold on hover */
.industry-card::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--gold) 50%, transparent 100%);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 500ms cubic-bezier(.2,.7,.2,1);
  z-index: 2;
}
.industry-card:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0,0,0,.2);
}
.industry-card:hover::after { transform: scaleX(1); }
/* Icon: pinned to top-left of card, half-sized */
.industry-card__icon {
  position: absolute;
  top: 1.25rem; left: 1.25rem;
  z-index: 3;
  width: 36px; height: 36px;
  color: rgba(255,255,255,.7);
  display: grid; place-items: center;
  transition: color 350ms ease, transform 350ms ease;
}
.industry-card__icon svg {
  width: 100%; height: 100%;
  stroke-width: 1.5;
}
.industry-card:hover .industry-card__icon {
  color: var(--gold);
}
@media (min-width: 1000px) {
  .industry-card__icon { width: 44px; height: 44px; top: 1.5rem; left: 1.5rem; }
}
.industry-card__label {
  position: relative; z-index: 3;
  margin: 0;
  padding: 0;
  color: var(--white);
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: clamp(1.25rem, 3vw, 1.85rem);
  line-height: 1.2;
  letter-spacing: -.01em;
  width: 100%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: clamp(1rem, 2vw, 1.75rem);
  text-align: center;
}
.industry-card__label-text {
  display: block;
  text-align: center;
  width: 100%;
  transform-origin: center;
  transition: transform 350ms cubic-bezier(.2,.7,.2,1);
}
.industry-card:hover .industry-card__label-text {
  transform: scale(1.06);
}
.industry-card__label-text { display: block; }
.industry-card__arrow {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px;
  background: transparent;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 0;
  transition: transform var(--transition), background var(--transition), border-color var(--transition);
}
.industry-card__arrow svg { width: 14px; height: 14px; color: rgba(255,255,255,.85); transition: color var(--transition); }
.industry-card:hover .industry-card__arrow {
  background: transparent;
  border-color: var(--gold);
  transform: translateX(4px);
}
.industry-card:hover .industry-card__arrow svg { color: var(--gold); }

/* CTA tile in industries grid: gold variant */
.industry-card--cta {
  background: linear-gradient(135deg, var(--gold) 0%, #b8902e 100%);
  border-color: var(--gold);
}
.industry-card--cta:hover {
  border-color: var(--gold-soft);
}
.industry-card--cta .industry-card__icon { color: var(--navy); opacity: .85; }
.industry-card--cta:hover .industry-card__icon {
  color: var(--navy); opacity: 1;
}
.industry-card--cta .industry-card__label { color: var(--navy); }
.industry-card--cta:hover .industry-card__label { color: var(--navy); }
.industry-card--cta::after { display: none; }
.industry-card--cta::before {
  background: linear-gradient(115deg, transparent 0%, rgba(255,255,255,.18) 50%, transparent 100%);
}
.industry-card--cta .industry-card__arrow {
  background: var(--navy);
  border-color: var(--navy);
}
.industry-card--cta .industry-card__arrow svg { color: var(--gold); }
.industry-card--cta:hover .industry-card__arrow {
  background: var(--navy);
  border-color: var(--navy);
}
.industry-card--cta:hover .industry-card__arrow svg { color: var(--white); }
.industry-card__kicker {
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .22em;
  color: rgba(14, 27, 53, .78);
  margin-bottom: .4rem;
  font-weight: 600;
}
.industry-card--cta:hover .industry-card__kicker { color: var(--navy); }
.industry-card__arrow--green { background: var(--green); }

/* ---------- Difference / stats ---------- */
.stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  max-width: 1500px;
  margin-inline: auto;
}
@media (min-width: 600px) { .stats { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; } }
@media (min-width: 960px) { .stats { grid-template-columns: repeat(4, 1fr); gap: 1.75rem; } }

.stat {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line-soft);
  padding: clamp(2rem, 3.5vw, 3rem) clamp(1.5rem, 3vw, 2.5rem);
  text-align: left;
  display: flex; flex-direction: column;
  min-height: 220px;
  overflow: hidden;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.stat::before {
  content: ""; position: absolute; left: 0; top: 0; right: 0; height: 2px;
  background: var(--gold);
  transform: scaleX(.3);
  transform-origin: left;
  transition: transform 500ms cubic-bezier(.2,.7,.2,1);
}
.stat::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(115deg, transparent 0%, rgba(201,161,74,.05) 50%, transparent 100%);
  transform: translateX(-110%);
  transition: transform 900ms cubic-bezier(.2,.7,.2,1);
  pointer-events: none;
}
.stat:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(14,27,53,.08);
}
.stat:hover::before { transform: scaleX(1); }
.stat:hover::after { transform: translateX(110%); }

.stat__index {
  display: block;
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.stat__value {
  font-family: var(--font-sans);
  font-size: clamp(2.8rem, 5vw, 3.8rem);
  font-weight: 500;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 1rem;
  letter-spacing: -.03em;
}
.stat__value-decimal {
  color: var(--gold);
  font-weight: 400;
}
.stat__label {
  font-size: clamp(.9rem, 1.4vw, 1rem);
  color: var(--ink-soft);
  line-height: 1.55;
  max-width: 26ch;
  margin: 0;
  font-weight: 400;
  flex: 1;
}
.stat__divider {
  width: 28px; height: 1px;
  background: var(--gold);
  margin-top: auto;
  margin-bottom: 1.25rem;
  opacity: .5;
}

/* ---------- Capability tiles ---------- */
.capabilities {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  max-width: 1500px;
  margin-inline: auto;
}
@media (min-width: 800px) { .capabilities { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; } }
.capability { min-height: 280px; padding: clamp(1.75rem, 3vw, 2.75rem) clamp(1.5rem, 3vw, 2.5rem); }
@media (min-width: 800px) { .capability { min-height: 340px; } }
.capability {
  padding: clamp(2rem, 3.5vw, 3rem) clamp(1.75rem, 3vw, 2.5rem);
  color: var(--white);
  display: flex; flex-direction: column;
  min-height: 280px;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition);
  border: 1px solid var(--line-soft);
  background: var(--white);
  color: var(--ink);
}
.capability:hover {
  transform: translateY(-6px);
  border-color: rgba(201,161,74,.4);
  box-shadow: 0 28px 50px rgba(14,27,53,.12);
}
.capability::after {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
  background: var(--gold);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 400ms cubic-bezier(.2,.7,.2,1);
}
.capability:hover::after { transform: scaleY(1); }
.capability--blue, .capability--green, .capability--orange {
  background: var(--white);
  color: var(--ink);
}
.capability--blue .capability__icon   { color: var(--navy); }
.capability--green .capability__icon  { color: var(--navy); }
.capability--orange .capability__icon { color: var(--navy); }
.capability__icon {
  width: 56px; height: 56px;
  display: grid; place-items: center;
  margin-bottom: 1.75rem;
  color: var(--gold);
}
@media (min-width: 800px) { .capability__icon { width: 64px; height: 64px; } }
.capability__icon svg { width: 100%; height: 100%; stroke-width: 1.5; }
.capability__title {
  color: var(--navy);
  font-family: var(--font-sans);
  font-size: clamp(1.25rem, 1.9vw, 1.45rem);
  font-weight: 600;
  margin: 0 0 1rem;
  line-height: 1.25;
  letter-spacing: -.01em;
}
.capability__desc {
  color: var(--ink-soft);
  font-size: clamp(.95rem, 1.4vw, 1.05rem);
  line-height: 1.65;
  margin-bottom: 1.75rem;
  flex: 1;
}
.capability__more {
  color: var(--gold);
  font-weight: 500;
  display: inline-flex; align-items: center; gap: .65em;
  font-size: .8rem; text-transform: uppercase; letter-spacing: .2em;
  align-self: flex-start;
}
.capability__more::after {
  content: "→"; transition: transform var(--transition);
}
.capability:hover .capability__more::after { transform: translateX(4px); }

.capabilities--service-tiles .capability {
  min-height: 320px;
  padding: 4.5rem 1.75rem 2.75rem;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 1rem;
  text-align: center;
  background: var(--navy);
  color: var(--white);
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: none;
}
.capabilities--service-tiles .capability::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 0%, rgba(201,161,74,.08) 50%, transparent 100%);
  transform: translateX(-110%);
  transition: transform 900ms cubic-bezier(.2,.7,.2,1);
  pointer-events: none;
  z-index: 1;
}
.capabilities--service-tiles .capability:hover::before {
  transform: translateX(110%);
}
.capabilities--service-tiles .capability::after {
  left: 0;
  right: 0;
  top: auto;
  bottom: 0;
  width: auto;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--gold) 50%, transparent 100%);
  transform: scaleX(0);
  transform-origin: center;
  z-index: 2;
}
.capabilities--service-tiles .capability:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0,0,0,.2);
}
.capabilities--service-tiles .capability:hover::after {
  transform: scaleX(1);
}
.capabilities--service-tiles .capability__icon {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 3;
  width: 44px;
  height: 44px;
  margin: 0;
  color: rgba(255,255,255,.7);
  transition: color 350ms ease;
}
.capabilities--service-tiles .capability:hover .capability__icon {
  color: var(--gold);
}
.capabilities--service-tiles .capability__title,
.capabilities--service-tiles .capability__desc,
.capabilities--service-tiles .capability__more {
  position: relative;
  z-index: 3;
}
.capabilities--service-tiles .capability__title {
  color: var(--white);
  font-size: clamp(1.35rem, 2.2vw, 1.85rem);
  font-weight: 500;
  max-width: 12ch;
  margin: 0;
}
.capabilities--service-tiles .capability__desc {
  color: rgba(255,255,255,.72);
  max-width: 34ch;
  margin: 0;
  flex: initial;
}
.capabilities--service-tiles .capability__more {
  color: var(--white);
  align-self: center;
  justify-self: center;
  margin-top: .35rem;
}
.capabilities--service-tiles .capability:hover .capability__title,
.capabilities--service-tiles .capability:hover .capability__more {
  color: var(--gold);
}
@media (max-width: 799px) {
  .capabilities--service-tiles .capability {
    min-height: 280px;
    padding: 4rem 1.5rem 2.5rem;
  }
  .capabilities--service-tiles .capability__icon {
    width: 36px;
    height: 36px;
    top: 1.25rem;
    left: 1.25rem;
  }
}

/* ---------- Testimonials (premium grid) ---------- */
.testimonial-block {
  background: var(--bg-deep);
  color: var(--white);
  padding-block: clamp(5rem, 12vw, 9rem);
  position: relative;
  overflow: hidden;
}
.testimonial-block .section-head__title {
  color: var(--white);
}
.testimonial-block::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.02) 1px, transparent 1px);
  background-size: 80px 80px;
  background-position: center;
  mask-image: radial-gradient(ellipse at center, rgba(0,0,0,.6) 0%, rgba(0,0,0,0) 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, rgba(0,0,0,.6) 0%, rgba(0,0,0,0) 70%);
  pointer-events: none;
}
.testimonial-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 1400px;
  margin-inline: auto;
  margin-top: 4rem;
}
@media (min-width: 800px) { .testimonial-grid { grid-template-columns: repeat(3, 1fr); gap: 2rem; } }

.testimonial-card {
  position: relative;
  padding: 3rem 2.25rem 2.5rem;
  background: rgba(255,255,255,.02);
  border: 1px solid rgba(255,255,255,.08);
  display: flex; flex-direction: column;
  text-align: left;
  transition: border-color var(--transition), transform var(--transition), background var(--transition);
}
.testimonial-card:hover {
  background: rgba(201,161,74,.04);
  border-color: rgba(201,161,74,.35);
  transform: translateY(-6px);
}
.testimonial-card::before {
  content: "";
  position: absolute;
  left: 2.25rem;
  top: 1rem;
  font-family: Georgia, serif;
  font-size: 4rem;
  line-height: 1;
  color: var(--gold);
  opacity: .3;
  pointer-events: none;
  font-weight: 400;
}
.testimonial-card[data-mark="quote"]::before { content: "\201C"; }
.testimonial-card__stars {
  color: var(--gold);
  letter-spacing: .25em;
  font-size: .85rem;
  margin-bottom: 1.5rem;
  margin-top: 0;
}
.testimonial-card__quote {
  font-family: var(--font-sans);
  font-size: clamp(.95rem, 1.4vw, 1.05rem);
  line-height: 1.65;
  color: rgba(255,255,255,.88);
  font-weight: 400;
  font-style: normal;
  margin: 0 0 2rem;
  flex: 1;
  letter-spacing: 0;
}
.testimonial-card__divider {
  width: 32px; height: 1px;
  background: var(--gold);
  margin-bottom: 1.25rem;
}
.testimonial-card__author {
  font-weight: 600;
  color: var(--white);
  margin: 0 0 .25rem;
  font-size: .95rem;
  letter-spacing: .03em;
  text-transform: uppercase;
}
.testimonial-card__role {
  color: rgba(255,255,255,.55);
  font-size: .8rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin: 0;
}

/* ---------- Two-column content (now stacked + centered) ---------- */
.two-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 3rem;
  max-width: 1000px;
  margin-inline: auto;
}
.two-col__title {
  margin-bottom: 1.25rem;
  margin-inline: auto;
  max-width: 28ch;
}
.two-col__body { max-width: 65ch; margin-inline: auto; }
.two-col__body p {
  color: var(--ink-soft);
  margin-bottom: 0;
  padding: clamp(1.25rem, 3vw, 1.75rem);
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-left: 2px solid var(--gold);
  box-shadow: 0 12px 30px rgba(20,35,64,.06);
}
.two-col__body p + p { margin-top: .85rem; }
.two-col__img {
  aspect-ratio: 16 / 9;
  width: min(100%, 900px);
  background:
    linear-gradient(135deg, rgba(201,161,74,.28) 0 1px, transparent 1px 100%),
    radial-gradient(circle at 35% 35%, rgba(201,161,74,.22), transparent 36%),
    linear-gradient(135deg, var(--navy), var(--navy-deep));
  background-size: 64px 64px, auto, auto;
  background-position: center;
  margin-inline: auto;
  border: 1px solid rgba(201,161,74,.32);
}

/* ---------- Service / industry detail (centered) ---------- */
.detail-page {
  padding-block: var(--space-7);
}
.detail-page__lead {
  font-size: 1.2rem;
  color: var(--navy);
  font-weight: 500;
  max-width: 70ch;
  margin: 0 auto 2.5rem;
  line-height: 1.55;
}
.detail-page__body {
  max-width: 760px;
  margin-inline: auto;
  text-align: left;
}
.detail-page__body h3 {
  margin-top: 2.5rem;
  font-size: 1.25rem;
  color: var(--navy);
  font-weight: 500;
  text-align: left;
}
.detail-page__body p { color: #2c3650; max-width: 65ch; }
.detail-page__body .detail-page__lead {
  margin-inline: auto;
  text-align: center;
}
.detail-page__body ul {
  color: #2c3650;
  padding-left: 0;
  list-style: none;
  max-width: 50ch;
  margin: 1rem 0;
}
.detail-page__body li {
  margin-bottom: .5rem;
  position: relative;
  padding-left: 1.5em;
}
.detail-page__body li::before {
  content: "";
  position: absolute;
  left: 0; top: .65em;
  width: 8px; height: 8px;
  background: var(--green);
  border-radius: 50%;
}
.detail-page__cta {
  margin-top: 3rem;
  text-align: center;
}

.detail-page__body--premium {
  max-width: 1180px;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(1rem, 2vw, 1.25rem);
}
@media (min-width: 960px) {
  .detail-page__body--premium {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
  }
}
.detail-page__body--premium .detail-page__lead {
  grid-column: 1 / -1;
  margin: 0 auto clamp(1.5rem, 3vw, 2.25rem);
  max-width: 860px;
  text-align: center;
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  line-height: 1.28;
  letter-spacing: -.02em;
}
@media (min-width: 960px) {
  .detail-page__body--premium .detail-page__lead + p { grid-column: 1 / -1; }
}
.detail-page__body--premium > p:not(.detail-page__lead) {
  max-width: none;
  margin: 0;
  padding: clamp(1.35rem, 3vw, 2rem);
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-left: 2px solid var(--gold);
  box-shadow: 0 12px 30px rgba(20,35,64,.06);
  min-height: 100%;
}
.detail-page__body--premium h3 {
  grid-column: 1 / -1;
  margin: clamp(1.75rem, 4vw, 3rem) 0 .25rem;
  color: var(--navy);
  font-size: clamp(1.35rem, 2vw, 1.7rem);
  text-align: center;
}
.detail-page__body--premium h3 + p,
.detail-page__body--premium h3 + ul {
  margin-top: 0;
}
.detail-page__body--premium ul {
  grid-column: 1 / -1;
  display: grid;
  gap: 0;
  max-width: none;
  margin: 0;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  background: var(--navy);
  color: var(--white);
}
@media (min-width: 760px) {
  .detail-page__body--premium ul { grid-template-columns: repeat(2, minmax(0, 1fr)); column-gap: 3rem; }
}
.detail-page__body--premium li {
  margin: 0;
  padding: 1rem 0 1rem 1.8rem;
  border-top: 1px solid rgba(255,255,255,.16);
  color: rgba(255,255,255,.9);
}
.detail-page__body--premium li:nth-last-child(-n + 2) {
  border-bottom: 1px solid rgba(255,255,255,.16);
}
.detail-page__body--premium li::before {
  top: 1.7rem;
  background: var(--gold);
}
.detail-page__body--premium .detail-page__cta {
  grid-column: 1 / -1;
}
@media (max-width: 599px) {
  .detail-page__body--premium .detail-page__lead {
    max-width: none;
    text-align: left;
  }
  .detail-page__body--premium h3 { text-align: left; }
}

.detail-showcase {
  max-width: 1180px;
  margin-inline: auto;
}
.detail-showcase__intro {
  display: grid;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: stretch;
}
@media (min-width: 900px) {
  .detail-showcase__intro { grid-template-columns: minmax(0, 1.12fr) minmax(300px, .88fr); }
}
.detail-showcase__intro .detail-page__lead {
  margin: 0;
  text-align: left;
  max-width: 24ch;
  font-size: clamp(1.55rem, 3vw, 2.45rem);
  line-height: 1.18;
  letter-spacing: -.02em;
}
.detail-showcase__context {
  display: grid;
  gap: 1px;
  background: var(--line-soft);
  border: 1px solid var(--line-soft);
}
.detail-showcase__context:empty {
  min-height: 220px;
  border-left: 2px solid var(--gold);
  background:
    linear-gradient(135deg, rgba(201,161,74,.18) 0 1px, transparent 1px 100%),
    radial-gradient(circle at 35% 35%, rgba(201,161,74,.16), transparent 38%),
    linear-gradient(135deg, rgba(201,161,74,.08), rgba(14,27,53,.035));
  background-size: 48px 48px, auto, auto;
}
.detail-showcase__context p {
  margin: 0;
  padding: clamp(1.5rem, 3vw, 2.25rem);
  background: linear-gradient(135deg, rgba(201,161,74,.07), rgba(255,255,255,1) 42%);
  color: var(--ink-soft);
  max-width: none;
}
.detail-section-title {
  max-width: 1180px;
  margin: clamp(2.25rem, 5vw, 4rem) auto 1rem;
  color: var(--navy);
}
.detail-feature-grid {
  display: grid;
  gap: 1px;
  max-width: 1180px;
  margin-inline: auto;
  background: var(--line-soft);
  border: 1px solid var(--line-soft);
}
@media (min-width: 720px) {
  .detail-feature-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (min-width: 1100px) {
  .detail-feature-grid--three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .detail-feature-grid--four { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
.detail-feature-card {
  min-height: 240px;
  background: var(--white);
  padding: clamp(1.5rem, 3vw, 2.25rem);
}
.detail-feature-card p {
  margin: 0;
  color: var(--ink-soft);
  max-width: none;
}
.detail-feature-card strong {
  display: block;
  margin: 0 0 .8rem;
  color: var(--navy);
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  line-height: 1.15;
}
.detail-scope {
  display: grid;
  gap: clamp(2rem, 5vw, 4rem);
  max-width: 1180px;
  margin: clamp(2rem, 5vw, 4rem) auto 0;
  padding: clamp(2rem, 5vw, 4rem);
  background: var(--navy);
  color: var(--white);
}
@media (min-width: 960px) {
  .detail-scope { grid-template-columns: .78fr 1.22fr; }
}
.detail-scope h3 {
  color: var(--white);
  max-width: 14ch;
  margin: 0;
}
.detail-scope ul {
  list-style: none;
  margin: 0;
  padding: 0;
  max-width: none;
}
.detail-scope li {
  margin: 0;
  padding: 1rem 0 1rem 2rem;
  border-top: 1px solid rgba(255,255,255,.16);
  color: rgba(255,255,255,.9);
  position: relative;
  font-size: clamp(1rem, 1.6vw, 1.15rem);
}
.detail-scope li:last-child {
  border-bottom: 1px solid rgba(255,255,255,.16);
}
.detail-scope li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.75rem;
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
}
.detail-callout {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: center;
  justify-content: space-between;
  max-width: 1180px;
  margin: clamp(2rem, 5vw, 4rem) auto 0;
  padding: clamp(1.5rem, 4vw, 2.5rem) 0 0;
  border-top: 1px solid var(--line-soft);
}
.detail-callout p {
  margin: 0;
  color: var(--navy);
  max-width: 62ch;
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  font-weight: 500;
}
@media (max-width: 599px) {
  .detail-showcase__intro .detail-page__lead { max-width: none; }
  .detail-showcase__context:empty { min-height: 120px; }
  .detail-feature-card { min-height: 0; }
  .detail-callout .btn { width: 100%; }
}

.detail-page--advisory {
  max-width: 1320px;
}
.advisory-intro {
  display: grid;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: stretch;
  margin-inline: auto;
  max-width: 1180px;
}
@media (min-width: 900px) {
  .advisory-intro { grid-template-columns: minmax(0, 1.25fr) minmax(300px, .75fr); }
}
.advisory-intro .detail-page__lead {
  text-align: left;
  margin: .75rem 0 0;
  max-width: 22ch;
  font-size: clamp(1.6rem, 3vw, 2.55rem);
  line-height: 1.18;
  letter-spacing: -.02em;
}
.advisory-intro__note {
  border-left: 2px solid var(--gold);
  background:
    linear-gradient(135deg, rgba(201,161,74,.18) 0 1px, transparent 1px 100%),
    radial-gradient(circle at 35% 35%, rgba(201,161,74,.16), transparent 38%),
    linear-gradient(135deg, rgba(201,161,74,.08), rgba(14,27,53,.035));
  background-size: 48px 48px, auto, auto;
  padding: clamp(1.5rem, 3vw, 2.25rem);
  align-self: end;
  min-height: 220px;
}
.advisory-intro__note span,
.advisory-card__number,
.advisory-scope__list span {
  display: inline-block;
  color: var(--gold);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
}
.advisory-intro__note p {
  margin: .9rem 0 0;
  color: var(--ink-soft);
  max-width: 34ch;
}
.advisory-section-title {
  max-width: 1180px;
  margin: clamp(2rem, 5vw, 4rem) auto 1rem;
  color: var(--navy);
}
.advisory-grid {
  display: grid;
  gap: 1px;
  max-width: 1180px;
  margin: 0 auto;
  background: var(--line-soft);
  border: 1px solid var(--line-soft);
}
@media (min-width: 720px) {
  .advisory-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (min-width: 1100px) {
  .advisory-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
.advisory-card {
  min-height: 300px;
  background: var(--white);
  padding: clamp(1.5rem, 3vw, 2.25rem);
  display: flex;
  flex-direction: column;
}
.advisory-card h3 {
  margin: 0 0 .8rem;
  color: var(--navy);
  font-size: clamp(1.25rem, 2vw, 1.55rem);
}
.advisory-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: .98rem;
}
.advisory-scope {
  display: grid;
  gap: clamp(2rem, 5vw, 4rem);
  max-width: 1180px;
  margin: clamp(2rem, 5vw, 4rem) auto 0;
  padding: clamp(2rem, 5vw, 4rem);
  background: var(--navy);
  color: var(--white);
}
@media (min-width: 960px) {
  .advisory-scope { grid-template-columns: .8fr 1.2fr; }
}
.advisory-scope__head h2,
.advisory-scope__head h3 {
  color: var(--white);
  max-width: 14ch;
  margin: 0;
}
.advisory-scope__list {
  display: grid;
  gap: 0;
}
.advisory-scope__list div {
  padding: 1rem 0;
  border-top: 1px solid rgba(255,255,255,.16);
}
.advisory-scope__list div:last-child {
  border-bottom: 1px solid rgba(255,255,255,.16);
}
.advisory-scope__list p {
  margin: 0;
  color: rgba(255,255,255,.88);
  font-size: clamp(1rem, 1.6vw, 1.15rem);
}
.advisory-callout {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: center;
  justify-content: space-between;
  max-width: 1180px;
  margin: clamp(2rem, 5vw, 4rem) auto 0;
  padding: clamp(1.5rem, 4vw, 2.5rem) 0 0;
  border-top: 1px solid var(--line-soft);
}
.advisory-callout p {
  margin: 0;
  color: var(--navy);
  max-width: 58ch;
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  font-weight: 500;
}
@media (max-width: 599px) {
  .advisory-intro .detail-page__lead { max-width: none; }
  .advisory-intro__note { min-height: 120px; }
  .advisory-card { min-height: 220px; }
  .advisory-callout .btn { width: 100%; }
}

/* ==========================================================================
   Inner pages (services + industries) — plain professional
   ========================================================================== */

/* Inner hero — compact, all Inter, no serif flourishes */
.hero--inner-pro {
  min-height: clamp(360px, 48vh, 460px);
  padding: clamp(7rem, 13vh, 8.5rem) clamp(1.5rem, 5vw, 3rem) clamp(2rem, 4vw, 3rem);
  display: flex; flex-direction: column; justify-content: flex-end;
  align-items: flex-start;
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: var(--white);
  position: relative; overflow: hidden;
  text-align: left;
}
.hero--inner-pro .hero__bg { z-index: 0; }
.hero--inner-pro .container {
  position: relative; z-index: 2;
  width: 100%;
  margin: 0 auto;
  padding: 0;
}
.hero__pro-eyebrow {
  font-family: var(--font-sans);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 1rem;
}
.hero__pro-title {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: clamp(2.1rem, 4.6vw, 3.6rem);
  line-height: 1.08;
  letter-spacing: -.022em;
  color: var(--white);
  margin: 0 0 1rem;
  max-width: 24ch;
}
.hero__pro-sub {
  font-family: var(--font-sans);
  font-size: clamp(1rem, 1.3vw, 1.12rem);
  line-height: 1.55;
  color: rgba(255,255,255,.78);
  margin: 0;
  max-width: 62ch;
}
@media (max-width: 599px) {
  .hero--inner-pro {
    min-height: clamp(320px, 45svh, 420px);
    padding: 6rem 1.25rem 2.25rem;
  }
  .hero__pro-title { font-size: clamp(1.8rem, 7.4vw, 2.4rem); max-width: 18ch; }
  .hero__pro-sub { font-size: .98rem; max-width: 38ch; }
}

/* Inner page sections */
.ps-section {
  padding-block: clamp(3.5rem, 6.5vw, 5.5rem);
}
.ps-section--alt { background: var(--bg-alt); }

.ps-h2 {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  line-height: 1.2;
  letter-spacing: -.015em;
  color: var(--ink);
  margin: 0 0 1.5rem;
}
.ps-body p {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--ink-soft);
  margin: 0 0 1.1em;
  max-width: 66ch;
}
.ps-body p:last-child { margin-bottom: 0; }

/* Two-up: overview text + optional photo */
.ps-overview {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 4vw, 3rem);
  align-items: start;
}
@media (min-width: 900px) {
  .ps-overview--with-photo { grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); }
}
.ps-overview__photo {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--navy);
}
.ps-overview__photo img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
@media (max-width: 899px) {
  .ps-overview__photo { max-width: 560px; }
}

/* Capability grid: clean list, no big numbers */
.ps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.5rem, 2.5vw, 2rem);
}
@media (min-width: 720px)  { .ps-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .ps-grid { grid-template-columns: repeat(3, 1fr); } }
.ps-item {
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
}
.ps-item h3 {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: -.008em;
  color: var(--ink);
  margin: 0 0 .5rem;
}
.ps-item p {
  font-family: var(--font-sans);
  font-size: .95rem;
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 0;
  max-width: 38ch;
}

/* Approach: clean numbered steps */
.ps-steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.5rem, 2.5vw, 2rem);
  counter-reset: ps-step;
}
@media (min-width: 720px)  { .ps-steps { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .ps-steps { grid-template-columns: repeat(4, 1fr); } }
.ps-steps li {
  counter-increment: ps-step;
  padding: 1.25rem 0 0;
  border-top: 1px solid var(--line);
  position: relative;
}
.ps-steps li::before {
  content: counter(ps-step, decimal-leading-zero);
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: .7rem;
  letter-spacing: .26em;
  color: var(--gold);
  display: block;
  margin-bottom: .5rem;
}
.ps-steps li h3 {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: -.008em;
  color: var(--ink);
  margin: 0 0 .4rem;
}
.ps-steps li p {
  font-family: var(--font-sans);
  font-size: .92rem;
  line-height: 1.5;
  color: var(--ink-soft);
  margin: 0;
}

/* ==========================================================================
   Editorial inner pages (services + industries) — DEPRECATED, kept dormant
   ========================================================================== */

/* Editorial hero — typographic, left-aligned, fills 70-80vh */
.hero--editorial {
  min-height: clamp(560px, 78vh, 760px);
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding: clamp(7rem, 14vh, 9.5rem) clamp(1.5rem, 5vw, 4rem) clamp(3rem, 5vw, 5rem);
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-deep) 100%);
}
.hero--editorial .hero__bg { z-index: 0; }
.hero--editorial .hero__inner {
  position: relative; z-index: 2;
  max-width: 1100px;
  width: 100%;
  margin: 0;
  align-items: flex-start;
  text-align: left;
}
.hero--editorial .hero__eyebrow {
  align-self: flex-start;
  font-family: var(--font-sans);
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .38em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 clamp(1.25rem, 2.6vw, 1.85rem);
  display: inline-flex; align-items: center; gap: 1.1rem;
}
.hero--editorial .hero__eyebrow .rule {
  width: 48px; height: 1px;
  background: linear-gradient(90deg, var(--gold) 0%, transparent 100%);
}
.hero--editorial .hero__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.6rem, 6.2vw, 5.25rem);
  line-height: 1.02;
  letter-spacing: -.018em;
  color: var(--white);
  margin: 0 0 clamp(1rem, 1.8vw, 1.5rem);
  max-width: 22ch;
  text-wrap: balance;
  font-variation-settings: "opsz" 144, "SOFT" 30;
  text-shadow: 0 1px 30px rgba(0,0,0,.4);
}
.hero--editorial .hero__title em {
  font-style: italic;
  color: var(--gold-soft);
  font-weight: 400;
}
.hero--editorial .hero__sub {
  font-family: var(--font-sans);
  font-size: clamp(1rem, 1.35vw, 1.15rem);
  line-height: 1.55;
  color: rgba(255,255,255,.78);
  max-width: 60ch;
  margin: 0;
}
@media (max-width: 599px) {
  .hero--editorial {
    min-height: clamp(540px, 90svh, 720px);
    padding: 6rem 1.25rem 2.5rem;
  }
  .hero--editorial .hero__title {
    font-size: clamp(2.1rem, 9vw, 2.9rem);
    line-height: 1.05;
    max-width: 16ch;
  }
  .hero--editorial .hero__sub {
    font-size: .98rem;
    max-width: 36ch;
  }
}

/* Editorial section scaffolding */
.page-section {
  padding-block: clamp(4rem, 7.5vw, 7rem);
  position: relative;
}
.page-section--alt { background: var(--bg-alt); }
.page-section--dark { background: var(--navy); color: var(--white); }
.page-section--quote {
  background:
    radial-gradient(ellipse at 50% 40%, rgba(201,161,74,.10) 0%, rgba(201,161,74,0) 50%),
    linear-gradient(180deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: var(--white);
}

/* Section number + eyebrow header */
.ed-section-head {
  display: flex;
  flex-direction: column;
  margin-bottom: clamp(2rem, 4vw, 3rem);
  max-width: 760px;
}
.ed-section-head__num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  font-weight: 400;
  line-height: 1;
  color: var(--gold);
  opacity: .85;
  margin: 0 0 .5rem;
  letter-spacing: -.02em;
  font-variation-settings: "opsz" 144, "SOFT" 50;
}
.ed-section-head__eyebrow {
  font-family: var(--font-sans);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 1rem;
}
.ed-section-head__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2rem, 3.6vw, 3rem);
  line-height: 1.08;
  letter-spacing: -.012em;
  color: var(--ink);
  margin: 0;
  text-wrap: balance;
  font-variation-settings: "opsz" 144;
}
.ed-section-head__title em {
  font-style: italic;
  color: var(--gold);
  font-weight: 400;
}
.page-section--dark .ed-section-head__title,
.page-section--quote .ed-section-head__title { color: var(--white); }

/* Thesis — opening paragraph block with optional photo */
.thesis {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: start;
  max-width: 1200px;
  margin-inline: auto;
}
@media (min-width: 900px) {
  .thesis--with-photo {
    grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  }
}
.thesis__body p {
  font-size: clamp(1.05rem, 1.25vw, 1.18rem);
  line-height: 1.7;
  color: var(--ink-soft);
  margin: 0 0 1.15em;
  max-width: 60ch;
}
.thesis__body p:last-child { margin-bottom: 0; }
.thesis__body p:first-of-type::first-letter {
  font-family: var(--font-display);
  font-size: 3.4em;
  font-weight: 400;
  line-height: .9;
  float: left;
  margin: .08em .14em -.05em 0;
  color: var(--gold);
  font-variation-settings: "opsz" 144;
}
.page-section--dark .thesis__body p,
.page-section--quote .thesis__body p { color: rgba(255,255,255,.82); }
.page-section--dark .thesis__body p:first-of-type::first-letter { color: var(--gold-soft); }
.thesis__photo {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--navy);
  border: 1px solid rgba(0,0,0,.05);
}
.thesis__photo img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 1.2s cubic-bezier(.2,.7,.2,1);
}
.thesis__photo:hover img { transform: scale(1.03); }
@media (max-width: 899px) {
  .thesis__photo { aspect-ratio: 16 / 11; max-width: 560px; }
}

/* Numbered capability grid (uniform tiles) */
.cap-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.5rem, 2.5vw, 2.25rem);
  max-width: 1200px;
  margin-inline: auto;
}
@media (min-width: 720px)  { .cap-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .cap-grid { grid-template-columns: repeat(3, 1fr); } }

.cap-item {
  border-top: 1px solid rgba(14, 27, 53, .14);
  padding-top: clamp(1.25rem, 2vw, 1.65rem);
  position: relative;
}
.cap-item__num {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 1.95rem;
  line-height: 1;
  color: var(--gold);
  margin: 0 0 .9rem;
  letter-spacing: -.01em;
  font-variation-settings: "opsz" 144, "SOFT" 50;
}
.cap-item__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.3rem, 1.7vw, 1.5rem);
  line-height: 1.18;
  letter-spacing: -.005em;
  color: var(--ink);
  margin: 0 0 .55rem;
}
.cap-item__desc {
  font-size: .98rem;
  line-height: 1.6;
  color: var(--ink-soft);
  margin: 0;
  max-width: 38ch;
}
.page-section--dark .cap-item,
.page-section--quote .cap-item { border-top-color: rgba(255,255,255,.18); }
.page-section--dark .cap-item__title,
.page-section--quote .cap-item__title { color: var(--white); }
.page-section--dark .cap-item__desc,
.page-section--quote .cap-item__desc { color: rgba(255,255,255,.7); }

/* Pull quote block */
.editorial-quote {
  margin: 0;
  text-align: center;
  max-width: 920px;
  margin-inline: auto;
}
.editorial-quote::before, .editorial-quote::after {
  content: ""; display: block;
  width: clamp(60px, 8vw, 100px); height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--gold) 50%, transparent 100%);
  margin: 0 auto;
}
.editorial-quote::before { margin-bottom: clamp(1.5rem, 3vw, 2.4rem); }
.editorial-quote::after  { margin-top:    clamp(1.5rem, 3vw, 2.4rem); }
.editorial-quote__text {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.55rem, 3vw, 2.5rem);
  line-height: 1.28;
  color: var(--white);
  margin: 0;
  letter-spacing: -.008em;
  text-wrap: balance;
  max-width: 28ch;
  margin-inline: auto;
  font-variation-settings: "opsz" 144, "SOFT" 50;
}
.editorial-quote__cite {
  display: block;
  margin-top: clamp(1.25rem, 2.5vw, 1.75rem);
  font-family: var(--font-sans);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--gold);
  font-style: normal;
}

/* Approach (numbered steps for services) */
.approach {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.5rem, 2.5vw, 2.25rem);
  counter-reset: step;
  max-width: 1200px;
  margin-inline: auto;
}
@media (min-width: 720px)  { .approach { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .approach { grid-template-columns: repeat(4, 1fr); } }
.approach__step {
  border-top: 1px solid rgba(255,255,255,.18);
  padding-top: clamp(1.25rem, 2vw, 1.65rem);
}
.approach__num {
  font-family: var(--font-sans);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 .8rem;
}
.approach__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.45rem;
  line-height: 1.2;
  color: var(--white);
  margin: 0 0 .55rem;
}
.approach__desc {
  font-size: .94rem;
  line-height: 1.55;
  color: rgba(255,255,255,.72);
  margin: 0;
  max-width: 28ch;
}

/* End-of-page CTA, editorial variant */
.page-cta {
  text-align: center;
  max-width: 720px;
  margin-inline: auto;
}
.page-cta__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2rem, 3.6vw, 3rem);
  line-height: 1.1;
  letter-spacing: -.012em;
  color: var(--white);
  margin: 0 0 1rem;
  text-wrap: balance;
  font-variation-settings: "opsz" 144;
}
.page-cta__title em { font-style: italic; color: var(--gold-soft); }
.page-cta__sub {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  line-height: 1.55;
  color: rgba(255,255,255,.78);
  margin: 0 0 2rem;
  max-width: 48ch;
  margin-inline: auto;
}

/* ---------- Team / People (centered) ---------- */
.team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  justify-content: center;
  max-width: 400px;
  margin-inline: auto;
}
.team-card {
  background: var(--white);
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.team-card__photo {
  aspect-ratio: 4 / 3;
  background: var(--navy);
  background-size: cover; background-position: center;
  overflow: hidden;
}
.team-card__photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 32%;
  display: block;
}
.team-card__body {
  background: var(--orange);
  color: var(--white);
  padding: 1.25rem 1.5rem;
}
.team-card__name {
  color: var(--white);
  font-weight: 500;
  margin: 0 0 .25rem;
  font-size: 1.1rem;
}
.team-card__role {
  margin: 0;
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  opacity: .9;
}
.team-card__photo--initials {
  background: linear-gradient(135deg,#1a2c50,#0d1830);
  display: grid;
  place-items: center;
}
.team-card__initials {
  color: #fff;
  font-size: 6rem;
  font-weight: 300;
  opacity: .6;
}
.team-bio {
  max-width: 980px;
  margin: 3rem auto 0;
  text-align: left;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--line-soft);
  border: 1px solid var(--line-soft);
}
.team-bio__name {
  color: var(--white);
  background: var(--navy);
  font-size: 1.4rem;
  margin: 0;
  padding: 1.5rem 1.75rem .35rem;
}
.team-bio__credentials {
  color: rgba(255,255,255,.72);
  background: var(--navy);
  margin: 0;
  padding: 0 1.75rem 1.5rem;
  font-size: .95rem;
  letter-spacing: .02em;
}
.team-bio > p {
  margin: 0;
  background: var(--white);
  padding: clamp(1.35rem, 3vw, 1.9rem);
  color: var(--ink-soft);
}
.team-bio__actions {
  margin-top: 0;
  background: var(--white);
  padding: 1.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

/* ---------- Contact (centered) ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  text-align: center;
  max-width: 1300px;
  margin-inline: auto;
}
@media (min-width: 800px) { .contact-grid { grid-template-columns: repeat(3, 1fr); } }
.office {
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-top: 2px solid var(--gold);
  padding: 2.75rem 2rem;
  text-align: center;
  transition: all var(--transition);
}
.office:hover {
  border-top-color: var(--gold);
  border-color: rgba(201,161,74,.3);
  transform: translateY(-4px);
}
.office__country {
  font-size: .72rem; text-transform: uppercase; letter-spacing: .35em;
  color: var(--gold); font-weight: 500; margin-bottom: .75rem;
}
.office__name {
  margin: 0 0 1.25rem;
  font-size: 1.2rem;
  color: var(--navy);
  font-family: var(--font-sans);
  font-weight: 600;
  letter-spacing: -.01em;
}
.office__lines {
  font-style: normal; color: var(--ink); line-height: 1.7; font-size: .95rem;
  display: block;
}
.office__lines a { color: var(--ink); overflow-wrap: break-word; }
.office__lines a[href^="mailto:"] {
  font-size: .88rem;
  letter-spacing: -.01em;
}
.office__lines a:hover { color: var(--green); }
.office__lines strong { color: var(--navy); font-weight: 500; }
.direct-card {
  background: var(--white);
  padding: clamp(2rem, 5vw, 2.75rem);
  border-top: 3px solid var(--green);
  box-shadow: 0 1px 3px rgba(20,35,64,.08);
  text-align: center;
  max-width: 760px;
  margin-inline: auto;
}
.direct-card__name {
  font-size: 1.25rem;
  color: var(--navy);
  margin-bottom: .25rem;
}
.direct-card__credentials {
  color: var(--muted);
  font-size: .9rem;
  margin-bottom: 1rem;
  letter-spacing: .02em;
}
.direct-card__summary {
  color: var(--ink);
  margin-bottom: 1.5rem;
}
.direct-card__details {
  display: inline-grid;
  grid-template-columns: auto 1fr;
  text-align: left;
  max-width: 520px;
  margin: 0 auto;
  column-gap: 1rem;
  row-gap: .5rem;
}
.direct-card__details dt {
  font-weight: 500;
  color: var(--navy);
}
.direct-card__details dd {
  margin: 0;
  overflow-wrap: anywhere;
}
.direct-card__actions {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}
.btn--ghost-navy {
  border-color: var(--navy);
  color: var(--navy);
}
.btn--ghost-navy:hover {
  background: rgba(14,27,53,.06);
  color: var(--navy);
}
@media (max-width: 599px) {
  .direct-card__details {
    display: grid;
    grid-template-columns: 1fr;
    text-align: center;
    row-gap: .25rem;
  }
  .direct-card__details dd {
    margin-bottom: .5rem;
  }
}

/* ---------- Contact form ---------- */
.cta-band {
  background: var(--bg-alt);
  color: var(--ink);
  padding-block: clamp(5rem, 10vw, 8rem);
  text-align: center;
  position: relative;
}
.cta-band::before {
  content: ""; position: absolute; left: 50%; top: 0;
  width: 1px; height: 60px;
  background: linear-gradient(180deg, transparent 0%, var(--gold) 100%);
  transform: translateX(-50%);
}
.cta-band h2 { color: var(--navy); margin-bottom: 1rem; }
.cta-band p { color: var(--ink-soft); max-width: 55ch; margin-inline: auto; font-size: clamp(1rem, 1.4vw, 1.15rem); }

/* ---------- Footer (left-aligned) ---------- */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,.8);
  padding-block: var(--space-5) var(--space-3);
  font-size: .9rem;
  text-align: left;
}
.site-footer h4 {
  color: var(--white);
  font-size: .85rem; text-transform: uppercase; letter-spacing: .15em;
  margin-bottom: 1rem;
}
.site-footer a { color: rgba(255,255,255,.8); }
.site-footer a:hover { color: var(--green); }
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
@media (min-width: 700px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr; gap: 3rem; } }
.footer-brand {
  font-size: 1rem; font-weight: 500; color: var(--white);
  letter-spacing: .04em; text-transform: uppercase;
  display: inline-flex; flex-direction: column; align-items: flex-start; gap: .75rem;
  margin-bottom: 1rem;
}
.footer-brand__mark img {
  height: 52px; width: auto;
  display: block;
}
.footer-brand__logo {
  display: block;
  width: min(82vw, 340px);
  height: auto;
  aspect-ratio: 1680 / 508;
}
.footer-tagline {
  color: rgba(255,255,255,.65);
  font-size: .9rem;
  max-width: 48ch;
  margin: 0;
}
.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: .65rem;
  text-align: left;
}
.footer-bottom {
  padding-top: 1.5rem;
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: .5rem 1.5rem;
  font-size: .8rem; color: rgba(255,255,255,.55);
  text-align: left;
}

/* ---------- Utility ---------- */
.visually-hidden {
  position: absolute !important; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}
.text-center { text-align: center; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-0 { margin-bottom: 0; }

/* ---------- Animation system ---------- */
@media (prefers-reduced-motion: no-preference) {
  /* Hero text entrance: words rise sequentially */
  .hero__inner > .hero__eyebrow {
    animation: heroPart 700ms cubic-bezier(.2,.7,.2,1) both;
    animation-delay: 40ms;
  }
  .hero__inner > .hero__lead {
    animation: heroPart 900ms cubic-bezier(.2,.7,.2,1) both;
    animation-delay: 120ms;
  }
  .hero--premium .hero__actions {
    animation: heroPart 800ms cubic-bezier(.2,.7,.2,1) both;
    animation-delay: 180ms;
  }
  .hero__scroll {
    animation: fadeIn 600ms ease both;
    animation-delay: 260ms;
  }
  .hero__bg .hero__glow {
    animation: glowDrift 12s ease-in-out infinite;
  }
  .hero__bg .hero__grid {
    animation: gridDrift 22s linear infinite;
  }
  .hero__eyebrow .rule {
    transform-origin: center;
    animation: ruleDraw 900ms cubic-bezier(.2,.7,.2,1) both;
    animation-delay: 380ms;
  }

  /* Reveal-on-scroll: animated without hiding no-JS/full-page captures */
  [data-reveal] {
    opacity: 1;
    transform: none;
  }
  [data-reveal][data-revealed="true"] {
    animation: revealUp 700ms cubic-bezier(.2,.7,.2,1) both;
  }
  /* Stagger when used inside a parent reveal */
  [data-reveal-stagger] > * {
    opacity: 1;
    transform: none;
  }
  [data-reveal-stagger][data-revealed="true"] > * { animation: revealUp 700ms cubic-bezier(.2,.7,.2,1) both; }
  [data-reveal-stagger][data-revealed="true"] > *:nth-child(1) { animation-delay: 0ms; }
  [data-reveal-stagger][data-revealed="true"] > *:nth-child(2) { animation-delay: 100ms; }
  [data-reveal-stagger][data-revealed="true"] > *:nth-child(3) { animation-delay: 200ms; }
  [data-reveal-stagger][data-revealed="true"] > *:nth-child(4) { animation-delay: 300ms; }
  [data-reveal-stagger][data-revealed="true"] > *:nth-child(5) { animation-delay: 400ms; }
  [data-reveal-stagger][data-revealed="true"] > *:nth-child(6) { animation-delay: 500ms; }

  /* Capability lift */
  .capability { transition: transform 350ms cubic-bezier(.2,.7,.2,1), box-shadow 350ms ease; }
  .capability:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(20,35,64,.25);
  }

  /* Industry tile zoom + label slide */
  .industry-card__img { transition: transform 1.2s cubic-bezier(.2,.7,.2,1), filter 600ms ease; }
  .industry-card { transition: transform 350ms ease; }
  .industry-card:hover { transform: translateY(-3px); }
  .industry-card:hover .industry-card__img { transform: scale(1.08); filter: brightness(1.05); }

  /* Office card lift */
  .office { transition: transform 350ms ease, box-shadow 350ms ease; }
  .office:hover { transform: translateY(-4px); box-shadow: 0 16px 36px rgba(20,35,64,.15); }

  .advisory-card {
    transition: transform 350ms cubic-bezier(.2,.7,.2,1), box-shadow 350ms ease;
  }
  .advisory-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 44px rgba(20,35,64,.14);
  }

  /* Button hover already animated above */
}

@keyframes heroPart {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes revealUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes glowDrift {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
  50%      { transform: translate(-50%, -50%) scale(1.15); opacity: .7; }
}
@keyframes gridDrift {
  from { background-position: center; }
  to   { background-position: calc(50% + 80px) calc(50% + 80px); }
}
@keyframes ruleDraw {
  from { transform: scaleX(0); opacity: 0; }
  to   { transform: scaleX(1); opacity: 1; }
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}
.hero__scroll svg { animation: scrollBounce 2s ease-in-out infinite; animation-delay: 1.5s; }
