/* ============================================================
   ATB CORPORATE — SHARED STYLESHEET
   Slate & Antique Gold · Cormorant Garamond + Inter
   Used by every page of the site.
   ============================================================ */

/* ---------- DESIGN TOKENS ---------- */
:root {
  /* Brand */
  --primary:       #27394E;
  --primary-dark:  #121E2B;
  --hero-navy:     #081E3D;
  --hero-navy-top: #0A2143;
  --hero-navy-base:#06192F;
  --hero-min:      560px;
  --primary-mid:   #364B63;
  --accent:        #B8912A;
  --accent-text:   #836A22;
  --accent-light:  #D4AE60;
  --accent-faint:  rgba(184,145,42,0.09);
  --accent-rule:   rgba(184,145,42,0.28);

  /* Text */
  --text:          #1F2733;
  --text-mid:      #5A6573;
  --text-light:    #6A727C;

  /* Surfaces */
  --bg:            #F6F4F1;
  --bg-white:      #FFFFFF;
  --bg-section:    #F1EFEB;
  --border:        #E2DED7;
  --border-mid:    #C8C2BA;

  /* On-dark */
  --on-dark:       rgba(255,255,255,0.74);
  --on-dark-dim:   rgba(255,255,255,0.56);
  --on-dark-faint: rgba(255,255,255,0.10);

  /* Type */
  --font-display: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-body:    'Inter', system-ui, -apple-system, Segoe UI, sans-serif;

  /* Scale */
  --fs-hero:  clamp(2.55rem, 1.6rem + 3.4vw, 3.85rem);
  --fs-h1:    clamp(2.05rem, 1.5rem + 2.1vw, 2.85rem);
  --fs-h2:    clamp(1.8rem, 1.4rem + 1.5vw, 2.4rem);
  --fs-h3:    1.4rem;
  --fs-lead:  1.175rem;
  --fs-body:  1.0625rem;
  --fs-sm:    0.9375rem;

  /* Spacing */
  --container:  1200px;
  --gutter:     1.75rem;

  /* Motion */
  --ease:  cubic-bezier(0.25,0.46,0.45,0.94);
  --trans: 220ms var(--ease);

  /* Shadow */
  --sh-sm: 0 1px 3px rgba(22,34,48,0.07);
  --sh-md: 0 8px 28px rgba(22,34,48,0.10);
  --sh-lg: 0 20px 56px rgba(22,34,48,0.16);
}

/* ---------- RESET & BASE ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.7;
  color: var(--text);
  background: var(--bg-white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; }
::selection { background: var(--accent); color: #fff; }
:focus-visible { outline: 2px solid var(--accent-text); outline-offset: 3px; }
.closing :focus-visible, .why :focus-visible, .site-footer :focus-visible, .page-hero :focus-visible, .mobile-nav :focus-visible, .hero :focus-visible { outline-color: var(--accent-light); }

/* Skip to main content — visible only on keyboard focus */
.skip-link {
  position: absolute;
  left: 8px;
  top: -56px;
  z-index: 1000;
  background: var(--primary-dark);
  color: #fff;
  padding: 0.7rem 1.15rem;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  transition: top var(--trans);
}
.skip-link:focus { top: 8px; }

/* ---------- LAYOUT HELPERS ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.container--narrow { max-width: 820px; }

.section        { padding: 4.5rem 0; }
.section--white { background: var(--bg-white); }
.section--warm  { background: var(--bg); }
.section--grey  { background: var(--bg-section); }

.section-header { margin-bottom: 2.5rem; }
.section-header--center { text-align: center; }
.section-header--center .gold-rule { margin-left: auto; margin-right: auto; }
.section-header--center .section-sub { margin-left: auto; margin-right: auto; }

/* ---------- TYPOGRAPHY HELPERS ---------- */
.overline {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-text);
  margin-bottom: 1.1rem;
}
.overline--dim   { color: var(--text-light); }
.overline--light { color: var(--accent-light); }

.gold-rule {
  width: 46px; height: 2px;
  background: linear-gradient(90deg, var(--accent), rgba(184,145,42,0.15));
  margin-bottom: 1.5rem;
}
.gold-rule--center { margin-left: auto; margin-right: auto; }

.section-heading {
  font-family: var(--font-display);
  font-size: var(--fs-h2);
  font-weight: 500;
  line-height: 1.16;
  letter-spacing: -0.02em;
  color: var(--primary);
  margin-bottom: 1rem;
}
.section-heading--center { text-align: center; }

.section-sub {
  font-size: var(--fs-lead);
  font-weight: 300;
  line-height: 1.65;
  color: var(--text-mid);
  max-width: 60ch;
}
.section-sub--center { text-align: center; }

/* ---------- BUTTONS & LINKS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.95rem 2rem;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1.5px solid transparent;
  transition: background var(--trans), color var(--trans), border-color var(--trans);
}
.btn--primary { background: var(--primary); color: #fff; }
.btn--primary:hover { background: var(--accent); color: var(--primary-dark); }

.link-arr {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--primary);
  transition: gap var(--trans), color var(--trans);
}
.link-arr::after { content: '\2192'; transition: transform var(--trans); }
.link-arr:hover { gap: 0.7rem; color: var(--accent-text); }
.link-arr:hover::after { transform: translateX(3px); }
.link-arr--gold  { color: var(--accent-light); }
.link-arr--gold:hover { color: #fff; }
.link-arr--light { color: rgba(255,255,255,0.7); }
.link-arr--light:hover { color: #fff; }

/* ============================================================
   TOP BAR
   ============================================================ */
.topbar {
  background: var(--primary-dark);
  padding: 0.45rem 0;
  border-bottom: 1px solid var(--on-dark-faint);
}
.topbar__inner { display: flex; justify-content: space-between; align-items: center; }
.topbar__hours {
  font-size: 0.76rem;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.7);
}
.topbar__right { display: flex; align-items: center; gap: 1.25rem; }
.topbar__linkedin { display: flex; color: rgba(255,255,255,0.7); transition: color var(--trans); }
.topbar__linkedin:hover { color: var(--accent); }
.topbar__linkedin svg { width: 15px; height: 15px; }

/* ============================================================
   HEADER / NAVIGATION
   ============================================================ */
.site-header {
  background: var(--bg-white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  transition: box-shadow var(--trans);
}
.site-header.scrolled { box-shadow: 0 4px 22px rgba(36,53,69,0.10); }

.nav {
  display: flex;
  align-items: center;
  height: 82px;
  gap: 1.5rem;
  transition: height var(--trans);
}
.site-header.scrolled .nav { height: 70px; }

/* Logo */
.logo { display: flex; align-items: center; gap: 13px; flex-shrink: 0; }
.logo__mark {
  width: 54px; height: 54px;
  background: var(--primary);
  display: flex; align-items: center; justify-content: center;
  transition: width var(--trans), height var(--trans);
}
.site-header.scrolled .logo__mark { width: 46px; height: 46px; }
.logo__mark span {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--accent-light);
  letter-spacing: 0.04em;
}
.logo__text { display: flex; flex-direction: column; line-height: 1.12; }
.logo__name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--primary);
  letter-spacing: -0.01em;
  transition: font-size var(--trans);
}
.logo__sub {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-light);
  max-height: 1.4em; overflow: hidden;
  transition: opacity var(--trans), max-height var(--trans);
}
.site-header.scrolled .logo__name { font-size: 1.32rem; }
.site-header.scrolled .logo__sub { opacity: 0; max-height: 0; }

/* Nav links */
.nav__links {
  display: flex;
  align-items: center;
  gap: 0.1rem;
  height: 100%;
  margin-left: 1.75rem;
}
.nav__links > li { position: relative; }
.nav__links > li > a {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.55rem 0.8rem;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  text-transform: none;
  color: var(--text-mid);
  transition: color var(--trans);
  white-space: nowrap;
}
.nav__links > li > a:hover,
.nav__links > li.has-drop:hover > a,
.nav__links > li > a[aria-current="page"] { color: var(--primary); }
.nav__links > li > a::after {
  content: '';
  position: absolute;
  left: 0.95rem; right: 0.95rem;
  bottom: 0.35rem;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--trans);
}
.nav__links > li > a:hover::after,
.nav__links > li.has-drop:hover > a::after,
.nav__links > li > a[aria-current="page"]::after { transform: scaleX(1); }
.nav__caret { width: 9px; height: 9px; opacity: 0.6; }

/* Dropdown */

/* ============================================================
   SERVICES MEGA MENU (approved spec — June 2026)
   Markets (India, UAE) are plain links; all children live here.
   ============================================================ */
/* .mega anchors to .site-header (position: sticky) for full-bleed width */
.nav__links > li.has-mega { position: static; align-self: stretch; display: flex; align-items: center; }
.mega {
  position: absolute; top: 100%; left: 0; right: 0;
  max-height: calc(100vh - 96px);
  min-height: 33rem;
  overflow-y: auto;
  overscroll-behavior: contain;
  background: var(--bg-white);
  box-shadow: var(--sh-md);
  padding: 2rem var(--gutter) 0;
  padding-inline: max(var(--gutter), calc((100% - var(--container)) / 2 + var(--gutter)));
  opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: opacity 0.22s var(--ease) 0.28s, transform 0.22s var(--ease) 0.28s, visibility 0s linear 0.5s;
  z-index: 200;
}
.nav__links > li.has-mega:hover .mega,
.nav__links > li.has-mega:focus-within .mega { opacity: 1; visibility: visible; transform: translateY(0); transition-delay: 0s, 0s, 0s; }
.nav__links > li.has-mega:hover > a,
.nav__links > li.has-mega:focus-within > a { color: var(--primary); }
.nav__links > li.has-mega:hover > a::after,
.nav__links > li.has-mega:focus-within > a::after { transform: scaleX(1); }
.mega__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.2rem 2.4rem; }
.mega__group:has(> .mega__title[href$="global-capability-centres.html"]) { grid-row: span 2; }
/* ^ tall GCC group spans rows 2-3 so Market Intelligence / Outsourced Finance sit
   directly under Trade / Transaction Advisory. Revisit when the Saudi group activates. */
.mega__title {
  display: inline-block;
  font-size: 0.82rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--primary);
  padding-bottom: 0.4rem; margin-bottom: 0.7rem;
  border-bottom: 1px solid var(--accent-rule);
  transition: color var(--trans), border-color var(--trans);
}
.mega__title:hover { color: var(--accent-text); border-bottom-color: var(--accent); }
.mega__group ul li a {
  display: inline-block; padding: 0.27rem 0;
  font-size: 0.85rem; letter-spacing: 0.01em;
  color: var(--text-mid);
  position: relative;
  transition: color var(--trans);
}
.mega__group ul li a::after {
  content: ''; position: absolute; left: 0; bottom: 0.05rem;
  width: 100%; height: 1px; background: var(--accent);
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--trans);
}
.mega__group ul li a:hover { color: var(--primary); }
.mega__group ul li a:hover::after { transform: scaleX(1); }
.mega__foot {
  margin-top: 1.1rem; padding: 0.4rem 0 1.1rem;
  display: flex; justify-content: flex-end;
}
@media (max-width: 1080px) { .mega { display: none; } }
@media (max-height: 800px) {
  .mega { padding-top: 1.4rem; }
  .mega__grid { gap: 1.5rem 2.6rem; }
  .mega__group ul li a { padding: 0.22rem 0; font-size: 0.82rem; }
  .mega__title { margin-bottom: 0.5rem; }
  .mega__foot { margin-top: 1rem; padding: 0.6rem 0 0.7rem; }
}
/* Mobile: third level inside the existing slide-in panel */
.m-sub2 { padding-left: 1.05rem; }
.m-sub2 li a { opacity: 0.85; }

/* Hamburger takes over where the mega panel ends (audit A3) */
@media (max-width: 1080px) {
  .nav__links { display: none; }
  .nav__toggle { display: block; }
}

/* Mobile toggle */
.nav__toggle {
  display: none;
  margin-left: auto;
  background: none; border: none;
  padding: 0.7rem;
  color: var(--primary);
}

/* ============================================================
   HERO — HOMEPAGE
   ============================================================ */
.hero {
  position: relative;
  background: var(--hero-navy);
  overflow: hidden;
  padding: 4.75rem 0 3.75rem;
  min-height: var(--hero-min);
}
.hero__grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 48px 48px;
}
.hero__glow {
  position: absolute;
  top: -140px; right: -120px;
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(184,145,42,0.20), transparent 68%);
}
.hero__inner { position: relative; max-width: 600px; }
.hero__eyebrow { display: flex; align-items: center; gap: 0.85rem; margin-bottom: 1.6rem; }
.hero__eyebrow-line { width: 42px; height: 2px; background: var(--accent); }
.hero__eyebrow-text {
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  color: var(--accent-light);
}
.hero__h1 {
  font-family: var(--font-display);
  font-size: var(--fs-hero);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: -0.035em;
  color: #fff;
  margin-bottom: 1.5rem;
}
.hero__h1 em { font-style: italic; color: var(--accent-light); font-weight: 400; }
.hero__sub {
  font-size: 1.16rem;
  font-weight: 300;
  line-height: 1.62;
  color: var(--on-dark);
  max-width: 42ch;
  margin-bottom: 2rem;
}
.hero__cta { display: flex; flex-wrap: wrap; gap: 1.75rem; align-items: center; }
.hero__stats {
  position: relative;
  display: flex;
  gap: 2.75rem;
  margin-top: 2.5rem;
  padding-top: 1.9rem;
  border-top: 1px solid var(--on-dark-faint);
  max-width: 480px;
}
.hero__stat { display: flex; flex-direction: column; }
.stat-val {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 500;
  color: var(--accent-light);
  line-height: 1;
  margin-bottom: 0.45rem;
}
.stat-lbl {
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--on-dark-dim);
  line-height: 1.45;
}
.hero__media {
  position: absolute;
  right: -24px;
  bottom: 0;
  width: clamp(660px, 76vw, 1240px);
  pointer-events: none;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 46%);
  mask-image: linear-gradient(to right, transparent 0%, #000 46%);
}
.hero__media img { display: block; width: 100%; height: auto; }
@media (max-width: 1080px) {
  .hero { padding: 4rem 0 3.5rem; min-height: 0; }
  .hero__inner { max-width: none; }
  .hero__media {
    position: static;
    right: auto;
    width: 100%;
    max-width: 560px;
    margin: 2.25rem 0 0;
    -webkit-mask-image: none;
    mask-image: none;
  }
}

/* ============================================================
   INTERIOR HERO + BREADCRUMB
   ============================================================ */
.page-hero {
  position: relative;
  background: var(--hero-navy);
  overflow: hidden;
  padding: 4.5rem 0 4rem;
}
.page-hero__grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 52px 52px;
}
.page-hero__glow {
  position: absolute;
  top: -140px; right: -100px;
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(184,145,42,0.20), transparent 70%);
}
.page-hero__inner { position: relative; max-width: 760px; }
.page-hero h1 {
  font-family: var(--font-display);
  font-size: var(--fs-h1);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -0.025em;
  color: #fff;
  margin-bottom: 1.1rem;
}
.page-hero h1 em { font-style: italic; color: var(--accent-light); }
.page-hero__sub {
  font-size: var(--fs-lead);
  font-weight: 300;
  line-height: 1.6;
  color: var(--on-dark);
  max-width: 60ch;
}
/* Interior-hero with a fixed-size skyline bleeding off the right edge (UAE pillar page) */
.page-hero--skyline .page-hero__inner { max-width: 480px; }
.page-hero__media {
  position: absolute;
  right: -40px;
  bottom: 0;
  width: 720px;
  pointer-events: none;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 24%);
  mask-image: linear-gradient(to right, transparent 0%, #000 24%);
}
.page-hero__media img { display: block; width: 100%; height: auto; }
@media (max-width: 1080px) {
  .page-hero__media {
    position: static;
    right: auto;
    width: 100%;
    max-width: 420px;
    margin-top: 1.75rem;
    -webkit-mask-image: none;
    mask-image: none;
  }
  .page-hero--skyline .page-hero__inner { max-width: none; }
}
/* Wider variant for the multi-skyline triptych (ADGM / DIFC / GIFT City page) */
.page-hero--skyline-wide .page-hero__media { width: 880px; }
@media (max-width: 1200px) {
  .page-hero--skyline-wide .page-hero__media {
    position: static;
    right: auto;
    width: 100%;
    max-width: 480px;
    margin-top: 1.75rem;
    -webkit-mask-image: none;
    mask-image: none;
  }
  .page-hero--skyline-wide .page-hero__inner { max-width: none; }
}
/* Inline-SVG explanatory diagram */
.diagram {
  margin: 2.75rem 0 0.5rem;
  background: #fff;
  border: 1px solid var(--border);
  
  padding: 1.9rem 1.9rem 1.5rem;
}
.diagram svg { display: block; width: 100%; height: auto; }
.diagram figcaption {
  margin-top: 1rem;
  padding-top: 0.9rem;
  border-top: 1px solid var(--bg-section);
  font-size: 0.84rem;
  line-height: 1.6;
  color: var(--text-mid);
}
@media (max-width: 600px) {
  .diagram { padding: 1.1rem 1.1rem 1rem; }
}
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.76rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--on-dark-dim);
  margin-bottom: 1.5rem;
}
.breadcrumb a { color: var(--on-dark-dim); transition: color var(--trans); }
.breadcrumb a:hover { color: var(--accent-light); }
.breadcrumb span[aria-current] { color: var(--accent-light); }
.breadcrumb .sep { opacity: 0.5; }

/* ============================================================
   POSITIONING STATEMENT
   ============================================================ */
.positioning { background: var(--bg); padding: 5rem 0; }
.positioning__inner { max-width: 880px; margin: 0 auto; text-align: center; }
.positioning__inner h2 {
  font-family: var(--font-display);
  font-size: var(--fs-h2);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--primary);
  margin-bottom: 1.25rem;
}
.positioning__inner > p {
  font-size: var(--fs-lead);
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.7;
  margin: 0 auto;
  max-width: 68ch;
}
.proof-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-top: 3.5rem;
  text-align: left;
}
.proof-col__icon {
  width: 46px; height: 46px;
  color: var(--accent);
  margin-bottom: 1.1rem;
}
.proof-col__icon svg { width: 100%; height: 100%; }
.proof-col h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--primary);
  margin-bottom: 0.5rem;
}
.proof-col p { font-size: var(--fs-sm); color: var(--text-mid); }

/* ============================================================
   SERVICES GRID
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.svc-card {
  position: relative;
  background: var(--bg-white);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  transition: background var(--trans);
}
.svc-card::after {
  content: '';
  position: absolute;
  left: 2rem; bottom: 0;
  width: 0; height: 2px;
  background: var(--accent);
  transition: width var(--trans);
}
.svc-card:hover::after { width: calc(100% - 4rem); }
.svc-card__num {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--accent-text);
  margin-bottom: 1rem;
}
.svc-card h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.22;
  color: var(--primary);
  margin-bottom: 0.7rem;
}
.svc-card p {
  font-size: var(--fs-sm);
  color: var(--text-mid);
  margin-bottom: 1.5rem;
  flex: 1;
}
.svc-card--featured { background: var(--primary); }
.svc-card--featured h3 { color: #fff; }
.svc-card--featured .svc-card__num { color: var(--accent-light); }
.svc-card--featured p { color: rgba(255,255,255,0.6); }


.services-strip {
  margin-top: 2rem;
  background: var(--bg-section);
  padding: 1.1rem 1.75rem;
  text-align: center;
  font-size: var(--fs-sm);
  color: var(--text-mid);
}
.services-strip a { color: var(--primary); font-weight: 500; transition: color var(--trans); }
.services-strip a:hover { color: var(--accent-text); }
.services-cta { text-align: center; margin-top: 2.25rem; }
.services-cta .link-arr { justify-content: center; }

/* ============================================================
   WHO WE ARE
   ============================================================ */
.who__layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 4rem;
  align-items: center;
}
.who__text p { color: var(--text-mid); margin-bottom: 1rem; }
.who__highlights { margin: 2rem 0; display: flex; flex-direction: column; gap: 1.35rem; }
.who__highlight { display: flex; gap: 1rem; }
.who__highlight-dot {
  width: 9px; height: 9px;
  background: var(--accent);
  margin-top: 0.55rem;
  flex-shrink: 0;
}
.who__highlight h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 0.25rem;
}
.who__highlight p { font-size: var(--fs-sm); color: var(--text-mid); }
.who__image-frame {
  aspect-ratio: 4 / 5;
  background: var(--bg-section);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Who-frame artwork — one etched plate image in each former photo
   slot (homepage team frame, About office frame). Swap the src for
   commissioned photography if it ever arrives; markup is identical. */
.who__img { display: block; width: 100%; height: 100%; object-fit: cover; }
.who__image-frame--bare { background: transparent; border: none; }
/* ^ both who-frames: each artwork's ground is flattened to its section's
   exact colour (home: --bg #F6F4F1; About: #FFFFFF) with feathered edges,
   so the box dissolves into the page. */
/* Centre the artwork on the paragraph block — the heading sits above it
   in the same column, so the visual midpoint shifts down by half the
   heading block's height. Tune the value to taste. */
.who__image { transform: translateY(5.2rem); }
@media (max-width: 1080px) { .who__image { transform: none; } }

/* ============================================================
   WHY ATB
   ============================================================ */
.why { background: var(--primary); padding: 5.5rem 0; }
.why h2 {
  font-family: var(--font-display);
  font-size: var(--fs-h2);
  font-weight: 500;
  color: #fff;
  text-align: center;
  letter-spacing: -0.02em;
  margin-bottom: 3rem;
}
.why__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--on-dark-faint);
  border: 1px solid var(--on-dark-faint);
}
.why__item { background: var(--primary); padding: 2.25rem 1.75rem; }
.why__icon { width: 40px; height: 40px; color: var(--accent-light); margin-bottom: 1.1rem; }
.why__icon svg { width: 100%; height: 100%; }
.why__item h3 {
  font-family: var(--font-display);
  font-size: 1.32rem;
  font-weight: 500;
  color: #fff;
  margin-bottom: 0.55rem;
}
.why__item p { font-size: var(--fs-sm); color: var(--on-dark); }

/* ============================================================
   INDUSTRIES
   ============================================================ */
.industries { background: var(--bg-section); }
.industries h2 {
  font-family: var(--font-display);
  font-size: var(--fs-h2);
  font-weight: 500;
  color: var(--primary);
  text-align: center;
  letter-spacing: -0.02em;
  margin-bottom: 2.5rem;
}
.industry-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  max-width: 920px;
  margin: 0 auto;
}
.pill {
  padding: 0.6rem 1.3rem;
  background: var(--bg-white);
  border: 1px solid var(--border-mid);
  font-size: 0.88rem;
  color: var(--text-mid);
  transition: color var(--trans), border-color var(--trans);
}
.pill:hover { color: var(--primary); border-color: var(--accent); }

/* ============================================================
   PROCESS
   ============================================================ */
.process h2 {
  font-family: var(--font-display);
  font-size: var(--fs-h2);
  font-weight: 500;
  color: var(--primary);
  text-align: center;
  letter-spacing: -0.02em;
  margin-bottom: 3rem;
}
.process__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.process__step { position: relative; }
.process__step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 0.7rem; right: -1rem;
  width: 2rem; height: 1px;
  background: var(--border-mid);
}
.step-num {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 300;
  color: var(--accent-text);
  line-height: 1;
  margin-bottom: 0.85rem;
}
.process__step h3 {
  font-family: var(--font-display);
  font-size: 1.32rem;
  font-weight: 500;
  color: var(--primary);
  margin-bottom: 0.5rem;
}
.process__step p { font-size: var(--fs-sm); color: var(--text-mid); }

/* ============================================================
   CLOSING CTA
   ============================================================ */
.closing {
  background: var(--primary-dark);
  text-align: center;
  padding: 5rem 0;
}
.closing h2 {
  font-family: var(--font-display);
  font-size: var(--fs-h2);
  font-weight: 300;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}
.closing__divider { width: 46px; height: 2px; background: var(--accent); margin: 0 auto 1.5rem; }
.closing p {
  font-size: 1.03rem;
  font-weight: 300;
  color: var(--on-dark);
  max-width: 60ch;
  margin: 0 auto 1.75rem;
}

/* ============================================================
   PROSE / INTERIOR CONTENT
   ============================================================ */
.prose > * + * { margin-top: 1.15rem; }
.prose p { color: var(--text); }
.prose .lead {
  font-size: var(--fs-lead);
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.65;
}
.prose h2 {
  font-family: var(--font-display);
  font-size: 1.95rem;
  font-weight: 500;
  color: var(--primary);
  letter-spacing: -0.02em;
  margin-top: 2.75rem;
}
.prose h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--primary);
  margin-top: 2rem;
}
.prose ul, .prose ol { padding-left: 1.3rem; }
.prose ul { list-style: none; padding-left: 0; }
.prose ul li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.6rem;
  color: var(--text);
}
.prose ul li::before {
  content: '';
  position: absolute;
  left: 0; top: 0.62rem;
  width: 7px; height: 7px;
  background: var(--accent);
}
.prose ol { color: var(--text); }
.prose ol li { margin-bottom: 0.6rem; padding-left: 0.4rem; }
.prose a:not(.link-arr):not(.btn) {
  color: var(--accent-text);
  border-bottom: 1px solid var(--accent-rule);
  transition: border-color var(--trans);
}
.prose a:not(.link-arr):not(.btn):hover { border-color: var(--accent); }
.prose strong { font-weight: 600; color: var(--primary); }
.prose table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.75rem 0;
}
.prose table th,
.prose table td {
  text-align: left;
  padding: 0.8rem 1rem;
  font-size: var(--fs-sm);
  vertical-align: top;
}
.prose table th {
  background: var(--primary);
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.03em;
}
.prose table td {
  border-bottom: 1px solid var(--border);
  color: var(--text-mid);
}
.prose table tr:nth-child(even) td { background: var(--bg); }

/* Article hero meta line */
.article-meta {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--on-dark-dim);
  margin-top: 0.7rem;
}

/* Table of contents (long-form sub-pages) */
.toc {
  background: var(--bg);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  padding: 1.6rem 1.85rem;
  margin: 2.25rem 0;
}
.toc__label {
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-text);
  margin-bottom: 0.9rem;
}
.toc ul {
  list-style: none;
  columns: 2;
  column-gap: 2.5rem;
}
.toc li { margin-bottom: 0.55rem; break-inside: avoid; }
.toc a {
  display: flex;
  align-items: baseline;
  font-size: var(--fs-sm);
  color: var(--text-mid);
  border-bottom: none;
  transition: color var(--trans);
}
.toc a::before { content: '\2192'; color: var(--accent-text); margin-right: 0.5rem; flex-shrink: 0; }
.toc a:hover { color: var(--accent-text); }
@media (max-width: 620px) { .toc ul { columns: 1; } }
@media (min-width: 1300px) { .toc { display: none; } }

/* Floating side rail — a cloned index that fades in once the inline
   table of contents has scrolled out of view (wide screens only). */
.toc-rail {
  position: fixed;
  top: auto;
  bottom: 6rem;
  left: calc(50vw - 642px);
  width: 202px;
  max-height: min(62vh, calc(100vh - 170px));
  overflow-y: auto;
  z-index: 40;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-8px);
  transition: opacity 240ms var(--ease), transform 240ms var(--ease), visibility 240ms;
}
.toc-rail.visible { opacity: 1; visibility: visible; transform: translateX(0); }
.toc-rail__label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-text);
  margin-bottom: 0.7rem;
  padding-bottom: 0.55rem;
  border-bottom: 1px solid var(--border);
}
.toc-rail ul { list-style: none; }
.toc-rail li { margin: 0; }
.toc-rail a {
  display: block;
  font-size: 0.82rem;
  line-height: 1.3;
  color: var(--text-light);
  padding: 0.4rem 0 0.4rem 0.85rem;
  border-left: 2px solid var(--border);
  transition: color var(--trans), border-color var(--trans);
}
.toc-rail a:hover { color: var(--primary); border-left-color: var(--border-mid); }
.toc-rail a.active { color: var(--primary); font-weight: 500; border-left-color: var(--accent); }
@media (max-width: 1299px) { .toc-rail { display: none; } }

/* ---- Long-form layout: article flanked by TOC + related rails ---- */
.article-layout { display: grid; grid-template-columns: 188px minmax(0, 1fr) 212px; gap: clamp(1.6rem, 3vw, 3.25rem); align-items: start; }
.article-layout--wide { grid-template-columns: minmax(0, 1fr) 212px; }
.rail { position: sticky; top: 54vh; margin-top: 14rem; max-height: calc(46vh - 1rem); overflow-y: auto; }
.rail__label { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent-text); margin-bottom: 0.7rem; padding-bottom: 0.5rem; border-bottom: 1px solid var(--border); }
.rail ul { list-style: none; margin: 0; padding: 0; }
.rail--toc a { display: block; font-size: 0.8rem; line-height: 1.3; color: var(--text-light); padding: 0.34rem 0 0.34rem 0.8rem; border-left: 2px solid var(--border); transition: color var(--trans), border-color var(--trans); }
.rail--toc a:hover { color: var(--primary); border-left-color: var(--border-mid); }
.rail--toc a.active { color: var(--primary); font-weight: 500; border-left-color: var(--accent); }
.rail--related a { display: block; font-size: 0.84rem; line-height: 1.3; color: var(--text-mid); padding: 0.38rem 0; transition: color var(--trans); }
.rail--related a:hover { color: var(--accent-text); }
.rail__group { margin-top: 1.5rem; }
@media (max-width: 1080px) {
  .article-layout { grid-template-columns: minmax(0, 780px); justify-content: center; }
  .rail--toc { display: none; }
  .rail--related { position: static; margin-top: 3rem; padding-top: 1.5rem; border-top: 1px solid var(--border); max-height: none; overflow: visible; }
  .rail--related ul { columns: 2; column-gap: 1.75rem; }
  .rail--related .rail__group { margin-top: 1.25rem; break-inside: avoid; }
}

/* Callout */
.callout {
  background: var(--bg);
  border-left: 3px solid var(--accent);
  padding: 1.5rem 1.75rem;
}
.callout__label {
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-text);
  margin-bottom: 0.5rem;
}
.callout p { font-size: var(--fs-sm); color: var(--text-mid); }

/* Content layout: main + sidebar */
.sidebar { position: sticky; top: 110px; display: flex; flex-direction: column; gap: 1.5rem; }
.sidebar__card { background: var(--bg); border: 1px solid var(--border); padding: 1.75rem; }
.sidebar__card--navy { background: var(--primary); border-color: var(--primary); }
.sidebar__card h4 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 0.85rem;
}
.sidebar__card--navy h4 { color: #fff; }
.sidebar__card--navy p { color: var(--on-dark); font-size: var(--fs-sm); margin-bottom: 1.1rem; }

/* Feature grid (cards) */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}
.feature-grid--3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 900px) { .feature-grid--3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .feature-grid--3 { grid-template-columns: 1fr; } }
.feature-card {
  position: relative;
  background: var(--bg-white);
  border: 1px solid var(--border);
  padding: 2rem 1.75rem;
  transition: border-color var(--trans), box-shadow var(--trans), transform var(--trans);
}
.feature-card:hover { border-color: var(--accent); box-shadow: var(--sh-md); transform: translateY(-3px); }
.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.46rem;
  font-weight: 600;
  line-height: 1.22;
  color: var(--primary);
  margin-bottom: 0.5rem;
}
.feature-card p { font-size: var(--fs-sm); color: var(--text-mid); }

/* Whole-card click target — the inner link-arr stretches to cover the card.
   "Learn more" stays navy at rest; gold appears only on hover. */
.svc-card .link-arr::before,
.feature-card .link-arr::before,
.article-card .link-arr::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
}
.svc-card:hover .link-arr,
.feature-card:hover .link-arr,
.article-card:hover .link-arr { gap: 0.7rem; color: var(--accent-text); }
.svc-card:hover .link-arr::after,
.feature-card:hover .link-arr::after,
.article-card:hover .link-arr::after { transform: translateX(3px); }
.svc-card--featured:hover .link-arr { color: var(--accent-light); }

/* ============================================================
   SERVICE CARD HOVER — service & feature tiles adopt the
   featured scheme (B5, June 2026)
   ============================================================ */
.svc-card h3,
.svc-card .svc-card__num,
.svc-card p { transition: color var(--trans); }
.svc-card:hover { background: var(--primary); }
.svc-card:hover h3 { color: #fff; }
.svc-card:hover .svc-card__num { color: var(--accent-light); }
.svc-card:hover p { color: rgba(255,255,255,0.6); }
.svc-card:hover .link-arr { color: var(--accent-light); }
.feature-card { transition: background var(--trans), border-color var(--trans), box-shadow var(--trans), transform var(--trans); }
.feature-card h3,
.feature-card p { transition: color var(--trans); }
.feature-card:hover { background: var(--primary); }
.feature-card:hover h3 { color: #fff; }
.feature-card:hover p { color: rgba(255,255,255,0.6); }
.feature-card:hover .link-arr { color: var(--accent-light); }
/* Only one navy card at a time: the featured tile yields while a sibling is hovered */
.services-grid:has(.svc-card:not(.svc-card--featured):hover) .svc-card--featured { background: var(--bg-white); }
.services-grid:has(.svc-card:not(.svc-card--featured):hover) .svc-card--featured h3 { color: var(--primary); }
.services-grid:has(.svc-card:not(.svc-card--featured):hover) .svc-card--featured .svc-card__num { color: var(--accent-text); }
.services-grid:has(.svc-card:not(.svc-card--featured):hover) .svc-card--featured p { color: var(--text-mid); }

/* Responsive table wrapper (audit A7) */
.prose .table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; margin: 1.2rem 0; }
.prose .table-wrap table { margin: 0; min-width: 480px; }

/* ============================================================
   RELATED PAGES
   ============================================================ */
.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(238px, 1fr));
  gap: 1.5rem;
}
.related-card {
  display: flex;
  flex-direction: column;
  background: var(--bg-white);
  border: 1px solid var(--border);
  padding: 1.65rem 1.6rem 1.5rem;
  text-decoration: none;
  transition: border-color var(--trans), box-shadow var(--trans), transform var(--trans);
}
.related-card:hover {
  border-color: var(--accent);
  box-shadow: var(--sh-md);
  transform: translateY(-3px);
}
.related-card__label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-text);
  margin-bottom: 0.7rem;
}
.related-card__title {
  font-family: var(--font-display);
  font-size: 1.32rem;
  font-weight: 600;
  line-height: 1.24;
  color: var(--primary);
  margin-bottom: 0.5rem;
}
.related-card__desc {
  font-size: var(--fs-sm);
  color: var(--text-mid);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 1.15rem;
}
.related-card__more {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.73rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-mid);
  transition: color var(--trans), gap var(--trans);
}
.related-card__more::after {
  content: '\2192';
  font-size: 0.95rem;
  transition: transform var(--trans);
}
.related-card:hover .related-card__more { color: var(--accent-text); gap: 0.6rem; }
.related-card:hover .related-card__more::after { transform: translateX(3px); }

/* Stat row */

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.faq { border-top: 1px solid var(--border); }
.faq__item { border-bottom: 1px solid var(--border); }
.faq__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.5rem 0;
  background: none; border: none;
  text-align: left;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--primary);
}
.faq__icon {
  position: relative;
  width: 18px; height: 18px;
  flex-shrink: 0;
}
.faq__icon::before, .faq__icon::after {
  content: '';
  position: absolute;
  background: var(--accent);
  transition: transform var(--trans);
}
.faq__icon::before { top: 8px; left: 0; width: 18px; height: 2px; }
.faq__icon::after  { left: 8px; top: 0; width: 2px; height: 18px; }
.faq__item.open .faq__icon::after { transform: rotate(90deg); }
.faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 320ms var(--ease);
}
.faq__item.open .faq__a { max-height: 1500px; }
.faq__a-inner { padding: 0 0 1.5rem; }
.faq__a-inner p { color: var(--text-mid); font-size: var(--fs-body); }

/* ============================================================
   GENERIC CARDS (insights, etc.)
   ============================================================ */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.75rem;
}
.article-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--bg-white);
  border: 1px solid var(--border);
  transition: border-color var(--trans), box-shadow var(--trans), transform var(--trans);
}
.article-card:hover { border-color: var(--accent); box-shadow: var(--sh-md); transform: translateY(-3px); }
.article-card__top {
  background: var(--primary);
  padding: 1.5rem 1.6rem 1.25rem;
}
.article-card__cat {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-light);
}
.article-card__body { padding: 1.5rem 1.6rem; display: flex; flex-direction: column; flex: 1; }
.article-card h3 {
  font-family: var(--font-display);
  font-size: 1.52rem;
  font-weight: 600;
  line-height: 1.22;
  color: var(--primary);
  margin-bottom: 0.6rem;
}
.article-card p { font-size: var(--fs-sm); color: var(--text-mid); margin-bottom: 1.25rem; flex: 1; }
.article-card__meta {
  font-size: 0.74rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 1rem;
}

/* ============================================================
   FEATURED ARTICLE + CATEGORY FILTER (Insights page)
   ============================================================ */
.featured-article {
  position: relative;
  background: var(--primary);
  overflow: hidden;
  padding: 2.85rem clamp(1.75rem, 4vw, 3.25rem);
  margin-bottom: 3.25rem;
}
.featured-article::before {
  content: '';
  position: absolute;
  top: -130px; right: -90px;
  width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(184,145,42,0.22), transparent 70%);
  pointer-events: none;
}
.featured-article__inner { position: relative; max-width: 720px; }
.featured-article__flags {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-bottom: 1.15rem;
}
.featured-article__label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-light);
}
.featured-article__tag {
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: #fff;
  padding: 0.32rem 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.34);
}
.featured-article h3,
.featured-article__title {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 1.15rem + 1.7vw, 2.35rem);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 0.9rem;
}
.featured-article__summary {
  font-size: 1.06rem;
  font-weight: 300;
  line-height: 1.62;
  color: var(--on-dark);
  margin-bottom: 1.1rem;
  max-width: 60ch;
}
.featured-article__meta {
  font-size: 0.74rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--on-dark-dim);
  margin-bottom: 1.4rem;
}

/* Insights subject filter — sticky sidebar + mobile dropdown */
.insights-layout {
  display: grid;
  grid-template-columns: 224px 1fr;
  gap: clamp(2rem, 4vw, 3.75rem);
  align-items: start;
}
.subject-rail {
  position: sticky;
  top: 96px;
}
.subject-rail__label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-light);
  padding-bottom: 0.85rem;
  margin-bottom: 0.45rem;
  border-bottom: 1px solid var(--border);
}
.subject-rail ul { list-style: none; margin: 0; padding: 0; }
.subject-rail__item {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.7rem;
  width: 100%;
  text-align: left;
  padding: 0.62rem 0 0.62rem 0.9rem;
  background: none;
  border: none;
  border-left: 2px solid transparent;
  font-family: inherit;
  font-size: 0.93rem;
  color: var(--text-mid);
  cursor: pointer;
  transition: color var(--trans), border-color var(--trans);
}
.subject-rail__item:hover { color: var(--primary); }
.subject-rail__item.active {
  color: var(--primary);
  font-weight: 600;
  border-left-color: var(--accent);
}
.subject-rail__count {
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--text-light);
  font-variant-numeric: tabular-nums;
}
.subject-rail__item.active .subject-rail__count { color: var(--accent-text); }
.insights-main .card-grid { grid-template-columns: repeat(2, 1fr); }

/* Mobile subject dropdown — hidden on desktop */
.subject-dropdown { display: none; margin-bottom: 2rem; }
.subject-dropdown label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 0.5rem;
}
.subject-dropdown select {
  width: 100%;
  padding: 0.72rem 1rem;
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--primary);
  background: var(--bg-white);
  border: 1px solid var(--border-mid);
  cursor: pointer;
}
.filter-empty {
  display: none;
  padding: 2.5rem 0;
  text-align: center;
  color: var(--text-mid);
  font-size: var(--fs-sm);
}
@media (max-width: 880px) {
  .insights-layout { grid-template-columns: 1fr; }
  .subject-rail { display: none; }
  .subject-dropdown { display: block; }
  .insights-main .card-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   NUMBERED CARDS (mistakes, considerations, steps)
   ============================================================ */
.num-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.num-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  padding: 1.9rem 1.75rem;
  transition: border-color var(--trans), box-shadow var(--trans);
}
.num-card:hover { border-color: var(--accent); box-shadow: var(--sh-sm); }
.num-card__n {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--accent-text);
  margin-bottom: 0.7rem;
}
.num-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1.3;
  color: var(--primary);
  margin-bottom: 0.55rem;
}
.num-card p { font-size: var(--fs-sm); color: var(--text-mid); }

/* Stacked consideration blocks */
.consideration { padding: 2.25rem 0; border-top: 1px solid var(--border); }
.consideration:first-child { padding-top: 0; border-top: none; }
.consideration h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--primary);
  margin-bottom: 0.7rem;
}
.consideration p { color: var(--text-mid); }
.consideration p + p { margin-top: 0.85rem; }

/* ============================================================
   TEAM PROFILES
   ============================================================ */
.team-profile {
  display: grid;
  grid-template-columns: 230px 1fr;
  gap: 3rem;
  padding: 3.25rem 0;
  border-top: 1px solid var(--border);
  align-items: start;
}
.team-profile:first-of-type { border-top: none; padding-top: 0.5rem; }
.team-photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
}
.team-photo span {
  font-family: var(--font-display);
  font-size: 3.6rem;
  font-weight: 500;
  color: var(--accent-light);
}
.team-profile__role {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-text);
  margin-bottom: 0.5rem;
}
.team-profile h3 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 500;
  color: var(--primary);
  line-height: 1.2;
  margin-bottom: 1rem;
}
.team-profile p { color: var(--text-mid); margin-bottom: 0.9rem; }
.team-profile h4 {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-mid);
  margin: 1.6rem 0 0.8rem;
}
.team-profile__core { list-style: none; }
.team-profile__core li {
  position: relative;
  padding-left: 1.4rem;
  margin-bottom: 0.55rem;
  font-size: var(--fs-sm);
  color: var(--text-mid);
}
.team-profile__core li::before {
  content: '';
  position: absolute;
  left: 0; top: 0.55rem;
  width: 7px; height: 7px;
  background: var(--accent);
}
.chips { display: flex; flex-wrap: wrap; gap: 0.55rem; }
.chip-sm {
  padding: 0.45rem 0.95rem;
  background: var(--bg);
  border: 1px solid var(--border-mid);
  font-size: 0.82rem;
  color: var(--text-mid);
}

/* ============================================================
   BOUNDARY PANELS (What we will / will not do)
   ============================================================ */
.boundary-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.75rem;
}
.boundary-col {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-top: 3px solid var(--accent);
  padding: 2.1rem 1.9rem;
}
.boundary-col--not { border-top-color: var(--border-mid); }
.boundary-col h3 {
  font-family: var(--font-display);
  font-size: 1.42rem;
  font-weight: 500;
  color: var(--primary);
  margin-bottom: 1.2rem;
}
.boundary-col ul { list-style: none; }
.boundary-col li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.85rem;
  font-size: var(--fs-sm);
  color: var(--text-mid);
}
.boundary-col li:last-child { margin-bottom: 0; }
.boundary-col li::before {
  content: '';
  position: absolute;
  left: 0; top: 0.5rem;
  width: 7px; height: 7px;
  background: var(--accent);
}
.boundary-col--not li::before {
  top: 0.62rem;
  width: 10px; height: 2px;
  background: var(--border-mid);
}

/* ============================================================
   PART DIVIDER (long multi-part sub-pages)
   ============================================================ */
.part-divider {
  background: var(--primary);
  padding: 2.75rem 0;
  text-align: center;
}
.part-divider__eyebrow {
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: 0.55rem;
}
.part-divider__title {
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 1.1rem + 1.4vw, 2.1rem);
  font-weight: 500;
  line-height: 1.2;
  color: #fff;
}
.part-divider__sub {
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.6;
  color: var(--on-dark-dim);
  max-width: 64ch;
  margin: 0.7rem auto 0;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
}
.contact-office { margin-bottom: 2rem; }
.contact-office__country {
  display: inline-block;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-text);
  margin-bottom: 0.6rem;
}
.contact-office h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 0.5rem;
}
.contact-office p { font-size: var(--fs-sm); color: var(--text-mid); }
.contact-office a { color: var(--primary); font-weight: 500; }
.contact-office a:hover { color: var(--accent-text); }

.form-field { margin-bottom: 1.35rem; }
.form-field label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-mid);
  margin-bottom: 0.5rem;
}
.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  padding: 0.85rem 1rem;
  font-family: inherit;
  font-size: var(--fs-body);
  color: var(--text);
  background: var(--bg-white);
  border: 1px solid var(--border-mid);
  transition: border-color var(--trans), box-shadow var(--trans);
}
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(184,145,42,0.32);
}
.form-field textarea { resize: vertical; min-height: 130px; }
.form-note { font-size: 0.8rem; color: var(--text-light); margin-top: 1rem; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--primary-dark); padding: 4rem 0 0; }
.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.4fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
}
.footer__brand-name {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 500;
  color: #fff;
  margin-bottom: 0.5rem;
}
.footer__brand-sub {
  font-size: var(--fs-sm);
  color: var(--on-dark-dim);
  line-height: 1.6;
  max-width: 30ch;
  margin-bottom: 1.25rem;
}
.footer__linkedin {
  display: inline-flex;
  width: 36px; height: 36px;
  align-items: center; justify-content: center;
  border: 1px solid var(--on-dark-faint);
  color: var(--on-dark);
  transition: color var(--trans), border-color var(--trans);
}
.footer__linkedin:hover { color: var(--accent); border-color: var(--accent); }
.footer__linkedin svg { width: 16px; height: 16px; }
.footer__col-head {
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.1rem;
}
.footer__nav li { margin-bottom: 0.6rem; }
.footer__nav li a {
  font-size: var(--fs-sm);
  color: rgba(255,255,255,0.58);
  transition: color var(--trans);
}
.footer__nav li a:hover { color: #fff; }
.footer__nav--quiet li a { color: var(--on-dark-dim); font-size: 0.84rem; }
.footer__contact-item { margin-bottom: 1.1rem; }
.footer__country {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 0.3rem;
}
.footer__addr {
  font-size: 0.86rem;
  color: rgba(255,255,255,0.52);
  line-height: 1.6;
}
.footer__addr a { color: rgba(255,255,255,0.52); transition: color var(--trans); }
.footer__addr a:hover { color: var(--accent-light); }
.footer__disclaimer {
  margin: 0;
  padding-top: 1.35rem;
  border-top: 1px solid var(--on-dark-faint);
  font-size: var(--fs-sm);
  line-height: 1.6;
  color: var(--on-dark);
}
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 1.5rem 0;
  font-size: 0.82rem;
  color: var(--on-dark-dim);
}
.footer__legal { display: flex; gap: 1.5rem; }
.footer__legal a { color: var(--on-dark-dim); transition: color var(--trans); }
.footer__legal a:hover { color: var(--accent-light); }

/* ============================================================
   FLOATING ACTION BUTTON
   ============================================================ */
.fab { position: fixed; right: 2rem; bottom: 2rem; z-index: 500; }
.fab__panel {
  position: absolute;
  right: 4px; bottom: 70px;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(10px) scale(0.96);
  transition: opacity var(--trans), transform var(--trans), visibility var(--trans);
}
.fab.open .fab__panel { opacity: 1; visibility: visible; pointer-events: auto; transform: translateY(0) scale(1); }
.fab__action { display: flex; align-items: center; gap: 0.6rem; justify-content: flex-end; }
.fab__label {
  background: var(--primary-dark);
  color: #fff;
  font-size: 0.72rem;
  padding: 0.4rem 0.75rem;
  white-space: nowrap;
  box-shadow: var(--sh-sm);
}
.fab__icon {
  width: 40px; height: 40px;
  background: var(--primary-dark);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  box-shadow: var(--sh-sm);
}
.fab__icon svg { width: 18px; height: 18px; fill: #fff; }
.fab__action:hover .fab__icon { background: var(--accent); }
.fab__trigger {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--primary);
  border: none;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--sh-md);
  margin-left: auto;
  transition: background var(--trans);
}
.fab__trigger svg {
  width: 22px; height: 22px;
  fill: none; stroke: #fff; stroke-width: 2.5; stroke-linecap: round;
}
.fab__ico-close { display: none; }
.fab.open .fab__trigger { background: var(--accent); }
.fab.open .fab__ico-chat { display: none; }
.fab.open .fab__ico-close { display: block; }

/* ============================================================
   MOBILE NAV PANEL
   ============================================================ */
.mobile-nav {
  position: fixed;
  inset: 0;
  background: var(--primary-dark);
  z-index: 300;
  padding: 6rem 2rem 2rem;
  transform: translateX(100%);
  visibility: hidden;
  transition: transform 320ms var(--ease), visibility 320ms var(--ease);
  overflow-y: auto;
}
.mobile-nav.open { transform: translateX(0); visibility: visible; }
.mobile-nav__close {
  position: absolute;
  top: 1.75rem; right: 1.75rem;
  background: none; border: none;
  color: #fff;
  padding: 0.6rem;
}
.mobile-nav__close svg { width: 26px; height: 26px; stroke: #fff; stroke-width: 2; }
.mobile-nav ul li { border-bottom: 1px solid var(--on-dark-faint); }
.mobile-nav ul li > a {
  display: block;
  padding: 1rem 0;
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: #fff;
}
.mobile-nav ul li > a:hover { color: var(--accent-light); }
.mobile-nav .m-sub { padding-left: 1rem; }
.mobile-nav .m-sub li { border-bottom: none; }
.mobile-nav .m-sub li a {
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 0.45rem 0;
  color: var(--on-dark);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why__grid { grid-template-columns: repeat(2, 1fr); }
  .process__steps { grid-template-columns: repeat(2, 1fr); }
  .process__step::after { display: none; }
  .who__layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .sidebar { position: static; }
}
@media (max-width: 860px) {
  .proof-cols { grid-template-columns: 1fr; gap: 2rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .num-grid { grid-template-columns: 1fr; }
  .boundary-grid { grid-template-columns: 1fr; }
  .team-profile { grid-template-columns: 1fr; gap: 1.75rem; }
  .team-photo { max-width: 220px; }
}
@media (max-width: 620px) {
  :root { --gutter: 1.25rem; }
  .section { padding: 4rem 0; }
  .services-grid { grid-template-columns: 1fr; }
  .why__grid { grid-template-columns: 1fr; }
  .process__steps { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
  .logo__sub { display: none; }
  .fab { right: 1.25rem; bottom: 1.25rem; }
}

/* ============================================================
   REDUCED MOTION — honour the user's OS preference
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ── Industries mega — same treatment as the Services mega (flat, uppercase gold-underlined titles) ── */
.mega--industries{display:flex;flex-direction:column}
.mega--industries .mega__grid--ind{grid-template-columns:1fr 1fr;gap:2.2rem 3rem;flex:1;grid-template-rows:1fr}
.mega__market{display:flex;flex-direction:column;min-width:0;border-radius:8px;padding:1rem 1.3rem 1.2rem;transition:box-shadow .22s var(--ease)}
.mega__market:hover,.mega__market:focus-within{box-shadow:0 3px 22px rgba(36,53,69,.13)}
.mega__market-head{display:inline-block;font-size:.82rem;font-weight:600;letter-spacing:.08em;text-transform:uppercase;color:var(--primary);padding-bottom:.4rem;margin-bottom:.7rem;border-bottom:1px solid var(--accent-rule);transition:color var(--trans),border-color var(--trans)}
.mega__market-head:hover{color:var(--accent-text);border-bottom-color:var(--accent)}
.mega__market ul{list-style:none;padding:0;margin:0}
.mega__list2{column-count:2;column-gap:1.8rem;column-fill:balance}
.mega__list2 li{break-inside:avoid}
.mega__list2 a{overflow-wrap:anywhere}
@media(max-width:1080px){.mega__list2{column-count:1}}

/* dismiss mega menus on scroll (re-enabled on next mouse move) */
.site-header.mega-suppressed .mega{opacity:0 !important;visibility:hidden !important;pointer-events:none !important;transition:none !important}

/* ── dim + blur the page behind an open mega menu ── */
body::before{content:'';position:fixed;inset:0;background:rgba(22,34,48,.22);-webkit-backdrop-filter:blur(4px);backdrop-filter:blur(4px);opacity:0;visibility:hidden;pointer-events:none;transition:opacity .28s var(--ease),visibility 0s linear .28s;z-index:90;}
body:has(.site-header .has-mega:hover)::before,body:has(.site-header .has-mega:focus-within)::before{opacity:1;visibility:visible;transition:opacity .28s var(--ease);}
body:has(.site-header.mega-suppressed)::before{opacity:0 !important;visibility:hidden !important;transition:none !important;}
@media (max-width:1080px){body::before{display:none;}}
@media (prefers-reduced-motion: reduce){body::before{backdrop-filter:none;-webkit-backdrop-filter:none;}}

/* ---------- International desks: mega ---------- */
.mega__grid--desks{grid-template-columns:0.62fr 2.38fr;gap:1.4rem 2.6rem;align-items:start;padding-bottom:1.7rem}
.mega-deskhead{margin-bottom:1.1rem;padding-left:calc(1.05rem + 1px)}
.mega-eyebrow{display:block;font-family:var(--font-body);font-size:1.08rem;font-weight:600;letter-spacing:.01em;color:var(--accent-text);margin-bottom:.28rem}
.mega-deskhead .section-sub{font-size:.85rem;font-weight:300;color:var(--text-mid);white-space:nowrap}
.mega-svc__note{margin-top:1rem;font-size:.78rem;color:var(--text-light);line-height:1.5}
.mega-desks{display:grid;grid-template-columns:repeat(3,1fr);grid-template-rows:repeat(4,auto);grid-auto-flow:column;gap:.75rem}
.mega-desk{display:block;border:1px solid var(--border);border-radius:10px;padding:.9rem 1.05rem;background:var(--bg-white);transition:border-color .2s,box-shadow .2s}
a.mega-desk:hover{border-color:var(--accent);box-shadow:0 4px 18px rgba(36,53,69,.10)}
.mega-desk--soon{opacity:.5}
.mega-desk--all{background:var(--accent-faint);border-color:var(--accent-rule)}
.mega-desk__n{display:block;font-family:var(--font-display);font-size:1.3rem;font-weight:500;color:var(--primary);line-height:1.08;margin-bottom:.3rem}
.mega-desk__h{display:block;font-size:.8rem;color:var(--text-mid);line-height:1.42;margin-bottom:.55rem}
.mega-desk__lk{display:block;font-size:.74rem;font-weight:600;letter-spacing:.05em;color:var(--accent-text)}
.mega-desk__lk--soon{color:var(--text-light)}
