*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --bg: 		#dde3ec;
  --hero-bg:	#23417a;
  --navy-deep:  #081d47;
  --navy:       #0b306f;
  --navy-mid:   #1b3974;
  --steel:      #4d6e9a;
  --slate:      #7a93b5;
  --blue-tint:  #dce8f5;
  --bg-light:   #f3f5f9;
  --white:      #ffffff;
  --text-dark:  #0b1f40;
  --text-body:  #3a4c6a;
  --text-muted: #6b7a96;
  --rule:       #cdd7e8;
  --gold:       #B78F58;

}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  font-size: 17px;
  line-height: 1.7;
  padding-top: 72px;
}

/* ── PAGE WRAPPER ── */
.page {
  max-width: 1600px;
  margin: 0 auto;
  background: var(--white);
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 80px rgba(0,0,0,0.14), 0 0 30px rgba(0,0,0,0.06);
}

/* ── TYPE ── */
.serif { font-family: 'Scope One', serif; }
.nobr  { white-space: nowrap; }
.mobile-br { display: none; }

.wp-conversion-content {
  display: none;
}
.desktop-br { display: block; }

@media (max-width: 768px) {
  .mobile-br { display: block; }
  .desktop-br { display: none; }
}

.eyebrow {
  display: block;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--steel);
  margin-bottom: 1.5rem;
}
.eyebrow--light { color: var(--slate); }
.eyebrow--white { color: rgba(255,255,255,0.85); }

h1, h2, h3 { font-family: 'Scope One', serif; color: var(--navy); line-height: 1.13; }

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  padding: 15px 34px;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.2s;
}
.btn-solid  { background: var(--gold); color: var(--white); }
.btn-solid:hover { background: #a47d4c; }
.btn-outline-navy  { border-color: var(--navy); color: var(--navy); }
.btn-outline-navy:hover { background: var(--navy); color: var(--white); }
.btn-outline-gold  { border-color: var(--gold); color: var(--gold); }
.btn-outline-gold:hover { background: var(--gold); color: var(--white); }
.btn-ghost  {
  border-color: rgba(255,255,255,0.28);
  color: rgba(255,255,255,0.88);
  position: relative;
  padding-right: 48px;
}
.btn-ghost:hover { border-color: rgba(255,255,255,0.55); color: var(--white); }
.btn-ghost::after {
  content: '→';
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%) translateX(-10px);
  opacity: 0;
  transition: all 0.4s ease;
}
.btn-ghost:hover::after {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

/* ═══════════════════════════
   NAV
═══════════════════════════ */
.site-nav {
  position: fixed; top: 0; z-index: 200;
  background: var(--white);
  border-bottom: 1px solid var(--rule);
  padding: 0 100px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1600px;
  left: 0;
  right: 0;
  margin: 0 auto;
}
.nav-logo svg { height: 20px; width: auto; display: block; }
a.nav-logo { text-decoration: none; display: flex; align-items: center; }
.nav-links {
  display: flex; align-items: center; gap: 2.5rem;
  font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-muted); font-weight: 400;
}
.nav-links span { cursor: pointer; transition: color 0.2s; }
.nav-links span:hover { color: var(--navy); }
.nav-links .nav-active { color: var(--navy-deep); font-weight: 500; }
.nav-links span.nav-active { pointer-events: none; }

/* Nav <a> tag equivalents */
.nav-links > a {
  text-decoration: none;
  color: var(--text-muted);
  cursor: pointer;
  transition: color 0.2s;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 400;
}
.nav-links > a:hover { color: var(--navy); }
.nav-links > a.nav-active { color: var(--navy-deep); font-weight: 500; pointer-events: none; }
.nav-links > a.nav-cta { color: var(--white) !important; }
.nav-cta {
  color: var(--white) !important; background: var(--navy);
  padding: 11px 26px; font-weight: 500;
}
.nav-cta:hover { background: var(--navy-deep) !important; }

/* Hamburger button (hidden by default) */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}
.nav-hamburger span {
  width: 24px;
  height: 2px;
  background: var(--navy);
  display: block;
  transition: all 0.3s;
}

/* Mobile menu dropdown */
.nav-links.mobile-open {
  display: flex !important;
  flex-direction: column;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--rule);
  padding: 1.5rem 1rem;
  gap: 0.5rem;
  z-index: 199;
  font-size: 16px;
}

.nav-links.mobile-open span {
  padding: 0.75rem 0;
}

.nav-links.mobile-open span.nav-cta {
  padding: 15px 34px;
}

/* Hamburger animation when menu is open */
.nav-hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translateY(11px);
}

.nav-hamburger.open span:nth-child(2) {
  visibility: hidden;
}

.nav-hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translateY(-11px);
}

/* Dropdown menu */
.nav-item.dropdown {
  position: relative;
}

.nav-item.dropdown .nav-label {
  cursor: pointer;
  position: relative;
  color: inherit;
  text-decoration: none;
}
.nav-item.dropdown a.nav-label:hover { color: var(--navy); }

.nav-item.dropdown .nav-label::after {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  margin-left: 8px;
  transform: rotate(-45deg) translateY(-2px);
  transition: transform 0.3s;
}

.nav-item.dropdown:hover .nav-label::after {
  transform: rotate(-225deg) translateY(2px);
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: 4px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.3s;
  z-index: 300;
  min-width: 220px;
  padding: 0;
}

.nav-item.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu span,
.dropdown-menu a {
  display: block;
  padding: 12px 16px;
  white-space: nowrap;
  transition: all 0.2s;
  cursor: pointer;
  color: var(--text-muted);
  text-decoration: none;
}

.dropdown-menu span:hover,
.dropdown-menu a:hover {
  background: var(--blue-tint);
  color: var(--navy);
}

.dropdown-menu span:first-child,
.dropdown-menu a:first-child {
  border-radius: 3px 3px 0 0;
}

.dropdown-menu span:last-child,
.dropdown-menu a:last-child {
  border-radius: 0 0 3px 3px;
}

/* Mobile dropdown handling */
.nav-links.mobile-open .nav-item.dropdown {
  display: contents;
}

.nav-links.mobile-open .nav-label {
  display: none;
}

.nav-links.mobile-open .dropdown-menu {
  position: static;
  opacity: 1;
  visibility: visible;
  transform: none;
  border: none;
  box-shadow: none;
  background: none;
  margin: 0;
  padding: 0;
  display: contents;
}

.nav-links.mobile-open .dropdown-menu span,
.nav-links.mobile-open .dropdown-menu a {
  text-align: center;
}
.nav-links.mobile-open > a {
  padding: 0.75rem 0;
  display: block;
  font-size: 16px;
}
.nav-links.mobile-open > a.nav-cta {
  padding: 15px 34px;
}

/* ═══════════════════════════
   HERO  — split panel
═══════════════════════════ */
.hero {
  display: grid;
  grid-template-columns: 56% 44%;
  min-height: 720px;
  background: var(--white);
  /* No section clip — stats band creates the transition below */
}

.hero-left {
  padding: 8rem 4rem 8rem 100px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-left h1 {
  font-size: clamp(46px, 4vw, 64px);
  color: var(--navy);
  margin-bottom: 1rem;
  letter-spacing: -0.015em;
  /* Bleed h1 past the column edge into the image area */
  width: calc(100% + 7rem);
  position: relative;
  z-index: 5;
}
.hero-tagline {
  font-family: 'Scope One', serif;
  font-size: clamp(17px, 1.4vw, 21px);
  font-style: italic;
  font-weight: bold;
  color: var(--gold);
  opacity: 1;
  letter-spacing: 0.01em;
  margin-bottom: 2.5rem;
  padding-left: 1.1rem;
  border-left: 2px solid var(--gold);
  max-width: 480px;
}
.hero-left .lede {
  font-size: 18px;
  line-height: 1.8;
  color: var(--text-body);
  max-width: 640px;
  margin-bottom: 3rem;
}
.hero-left .lede--secondary {
  font-size: 16px;
  color: var(--text-muted, #6b7280);
  margin-top: -1.5rem;
  margin-bottom: 3rem;
}
.btn-row { display: flex; gap: 1rem; }
.hero .btn-outline-navy { border-color: var(--gold); color: var(--gold); }
.hero .btn-outline-navy:hover { background: var(--gold); color: var(--white); }

/* Hero image — angular parallelogram clip */
.hero-right {
  position: relative;
  overflow: hidden;
  align-self: start;
  height: calc(100% - 6.75rem);
  min-height: 560px;
}
.hero-img {
  position: absolute; inset: 0;
  /* Brand blue (RGB 35,65,122) + luminosity blend = monochromatic treatment matching reference aesthetic */
  background-color: var(--hero-bg);
  background-image: url('images/hero.webp');
  background-size: cover;
  background-position: center 35%;
  background-blend-mode: luminosity;
  filter: contrast(1.18) brightness(1.0);
  clip-path: polygon(12% 0, 100% 0, 100% 100%, 0 100%);
}
/* Depth vignette — brand blue */
.hero-img::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 62% 44%, transparent 28%, rgba(35,65,122,0.35) 72%, rgba(35,65,122,0.60) 100%),
    linear-gradient(160deg, rgba(35,65,122,0.55) 0%, transparent 42%);
  z-index: 1;
}
/* Soft bottom fade — brand blue */
.hero-img::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 48%, rgba(35,65,122,0.32) 76%, var(--hero-bg) 100%);
  z-index: 1;
}

/* Plain variant — show the uploaded image in its original colours (no blue treatment). */
.hero-img--plain {
  background-color: transparent;
  background-blend-mode: normal;
  filter: none;
}
.hero-img--plain::before,
.hero-img--plain::after {
  display: none;
}

/* ═══════════════════════════
   STATS BAND
═══════════════════════════ */
.stats {
  background: var(--navy);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  /* Pull up to meet the bottom of the hero image (hero-right is 6.75rem
     short of the hero), then move that breathing room below the band. */
  margin-top: -6.75rem;
  margin-bottom: 5.2rem;
  position: relative; z-index: 10;
}
.stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 0 100px;
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}
.stat {
  padding: 2.5rem 3rem;
  border-right: 1px solid rgba(255,255,255,0.1);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.stat:nth-child(even) { border-right: 1px solid rgba(255,255,255,0.1); }
.stat:nth-child(3) { border-top: none; }
.stat:nth-child(4) { border-top: none; border-right: none; }
.stat-n {
  font-family: 'Scope One', serif;
  font-size: 56px; color: var(--white); line-height: 1; margin-bottom: 0.6rem;
}
.stat-n sup { font-size: 26px; font-family: 'Inter'; font-weight: 300; }
.stat-lbl {
  font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.48); line-height: 1.6;
}

/* ═══════════════════════════
   SERVICES
═══════════════════════════ */
.services {
  background: var(--white);
  padding: 0.75rem 100px;
  /* Bottom slopes DOWN-RIGHT: left side raised, right at full height */
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 calc(100% - 70px));
  padding-bottom: calc(0.75rem + 30px);
  /* Pull up to halve the empty strip the (removed) stats band used to fill. */
  margin-top: -3.4rem;
  position: relative; z-index: 8;
}
/* Stacked header: eyebrow / h2 / intro each on own row */
.svc-header {
  max-width: 75%;
  margin-bottom: 0;
}
.svc-header .eyebrow { margin-bottom: 1rem; }
.svc-header h2 { font-size: clamp(32px, 2.8vw, 44px); margin-bottom: 1.25rem; }
.svc-header .intro {
  font-size: 17px;
  line-height: 1.85;
  color: var(--text-body);
  margin-bottom: 0;
}

/* Open editorial columns — 2x2, no card boxes */
.svc-cols {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 1rem;
}
.svc-col { padding: 2.5rem 4rem 3rem 0; }
.svc-col:nth-child(even) { padding-left: 4rem; position: relative; }
.svc-col:nth-child(even)::before {
  content: '';
  position: absolute;
  left: 0;
  top: 2rem;
  bottom: 0;
  width: 1px;
  background: rgba(183,143,88,0.3);
}
.svc-col:nth-child(n+3) { border-top: 1px solid rgba(183,143,88,0.3); }
.svc-col:nth-child(4)::before { top: 0; bottom: 3rem; }
.svc-col h3 { font-size: 20px; color: var(--navy); margin-bottom: 1.25rem; line-height: 1.25; }
.svc-col p  { font-size: 15.5px; line-height: 1.85; color: var(--text-body); margin-bottom: 1.5rem; }
.svc-link {
  font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--navy); font-weight: 600; cursor: pointer;
  transition: color 0.3s; text-decoration: none; display: inline-block;
}
.svc-link::after {
  content: ' →';
  display: inline-block;
  transition: transform 0.3s ease;
}
.svc-link:hover::after { transform: translateX(4px); }

/* ═══════════════════════════
   WHY CROSBIE
═══════════════════════════ */
.why {
  background: var(--white);
  margin-top: calc(0px - 70px);
  position: relative; z-index: 7;
}
.why-inner {
  display: grid;
  grid-template-columns: 1.18fr 0.75fr;
  min-height: 0;
}

/* Left — differentiators */
.why-left { padding: 4rem 5rem 4rem 100px; }
.why-left h2 { font-size: clamp(36px, 3vw, 48px); margin-bottom: 0.5rem; }
.diffs { margin-top: 3.5rem; }
.diff {
  display: block; padding: 2rem 0;
  border-bottom: 1px solid var(--rule); align-items: flex-start;
  border-left: 3px solid transparent;
  padding-left: 1rem;
  margin-left: -1rem;
  transition: all 0.3s ease;
}
.diff:first-child { border-top: 1px solid var(--rule); }
.diff:hover {
  border-left-color: var(--steel);
  padding-left: 1.5rem;
  margin-left: -1.5rem;
}
.diff-n {
  display: none;
  font-family: 'Scope One', serif; font-size: 12px;
  color: var(--slate); flex-shrink: 0; padding-top: 4px; min-width: 24px;
}
.diff-ttl {
  font-family: 'Scope One', serif;
  font-size: clamp(21px, 1.55vw, 26px);
  font-weight: 600;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 0.75rem;
}
.diff-body { font-size: 15.5px; line-height: 1.8; color: var(--text-body); }

/* Right — navy CTA panel, diagonal goes / direction:
   left edge inset 8% at top, flush at bottom */
.why-right {
  /* Navy luminosity treatment over the owner-focused image panel */
  background-color: var(--navy);
  background-image: url('images/confidential.webp');
  background-size: cover;
  background-position: center;
  background-blend-mode: luminosity;
  padding: 3rem 100px 3rem 7rem;
  padding-top: 5rem;
  position: relative; overflow: hidden;
  display: flex; flex-direction: column; justify-content: center;
  /* Left edge: 8% inset at top, 0% at bottom → diagonal goes / direction */
  clip-path: polygon(8% 0, 100% 0, 100% 100%, 0 100%);
}
/* Navy cover keeps the image present without competing with the copy */
.why-right::before {
  content: ''; position: absolute; inset: 0;
  background: rgba(11, 48, 111, 0.88);
  z-index: 0; pointer-events: none;
}
.why-right::after {
  content: ''; position: absolute;
  bottom: -155px; right: -100px;
  width: 500px; height: 500px;
  border: 1px solid rgba(255,255,255,0.03);
  transform: rotate(45deg); pointer-events: none;
}
.why-right .eyebrow { margin-bottom: 0.5rem; position: relative; z-index: 1; }
.why-right .btn { position: relative; z-index: 1; }
.why-heading {
  font-family: 'Scope One', serif; font-size: clamp(22px, 1.9vw, 30px);
  font-weight: 700; color: #fff; line-height: 1.25;
  margin-top: 0; margin-bottom: 2rem;
  position: relative; z-index: 1;
}
.why-pullquote {
  font-family: 'Scope One', serif; font-size: 26px; line-height: 1.62;
  color: #fff; margin-bottom: 2rem; position: relative; z-index: 1;
}
.why-subtext {
  font-size: 16px; line-height: 1.85; color: rgba(255,255,255,0.55);
  margin-bottom: 1.25rem; position: relative; z-index: 1;
}
.why-subtext:last-of-type {
  margin-bottom: 3.5rem;
}

/* ═══════════════════════════
   TESTIMONIALS — single large carousel
═══════════════════════════ */
.testimonials {
  background: var(--white);
  padding: 0;
  clip-path: polygon(0 70px, 100% 0, 100% calc(100% - 70px), 0 100%);
  padding-top: calc(4rem + 70px);
  padding-bottom: calc(4rem + 70px);
  padding-left: 4rem;
  padding-right: 4rem;
  margin-top: calc(0px - 70px);
  position: relative; z-index: 6;
}

/* Subtle diagonal atmosphere */
.testimonials::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background:
    linear-gradient(108deg, transparent 38%, rgba(0,0,0,0.018) 39%, rgba(0,0,0,0.018) 40.5%, transparent 41.5%),
    linear-gradient(108deg, transparent 55%, rgba(0,0,0,0.012) 56%, rgba(0,0,0,0.012) 57.5%, transparent 58.5%);
}

.testi-header {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 3rem;
  position: relative; z-index: 1;
}
.testi-header h2 { font-size: clamp(34px, 3vw, 48px); color: var(--navy); }

/* Carousel */
.testi-carousel {
  max-width: 880px;
  margin: 0 auto;
  position: relative; z-index: 1;
}

.testi-slide {
  display: none;
  flex-direction: column;
  animation: fadeIn 0.4s ease;
}
.testi-slide.active { display: flex; }

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.testi-mark {
  display: block;
  margin-bottom: -2.75rem;
}

.testi-mark::before {
  content: '\201C';
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 220px;
  line-height: 0.6;
  letter-spacing: -0.04em;
  color: rgba(0,0,0,0.07);
  display: block;
  letter-spacing: -0.02em;
}
.testi-slide blockquote {
  font-family: 'Scope One', serif;
  font-size: clamp(22px, 2.2vw, 28px);
  line-height: 1.65;
  color: var(--navy);
  font-style: italic;
  margin-bottom: 1.5rem;
}
.testi-rule { width: 40px; height: 1.5px; background: var(--steel); margin-bottom: 1rem; }
.testi-name { font-size: 16px; font-weight: 600; color: var(--navy); margin-bottom: 0.2rem; }
.testi-role { font-size: 14px; color: var(--text-body); line-height: 1.4; }

/* Navigation */
.testi-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 2rem;
  position: relative; z-index: 1;
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
}
.testi-btn {
  width: 48px; height: 48px;
  border: 1.5px solid var(--rule);
  background: transparent;
  color: var(--text-muted);
  font-size: 18px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s;
  flex-shrink: 0;
}
.testi-btn:hover { border-color: var(--navy); color: var(--navy); }
.testi-dots {
  display: flex; gap: 8px; align-items: center;
}
.testi-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--rule);
  transition: all 0.25s;
  cursor: pointer;
}
.testi-dot.active { background: var(--navy); width: 24px; border-radius: 3px; }

.testi-footer {
  text-align: center;
  margin-top: 2.5rem;
  position: relative; z-index: 1;
}

/* ═══════════════════════════
   GLOBAL  — SVG world map
═══════════════════════════ */
.global {
  background: var(--white);
  padding: 11rem 100px 8rem;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  column-gap: 6rem;
  row-gap: 3rem;
  align-items: center;
  position: relative; z-index: 5;
  margin-top: calc(0px - 70px);
}
.global .eyebrow { margin-bottom: 1rem; }
.global-heading {
  grid-column: 1 / -1;
}
.global h2 {
  font-size: clamp(36px, 3vw, 48px);
  line-height: 1.05;
  margin-bottom: 0;
  white-space: nowrap;
}
.global .body { font-size: 17px; line-height: 1.85; color: var(--text-body); margin-bottom: 1.1rem; }
.global .body:last-of-type { margin-bottom: 2.5rem; }

/* Map sits open on the white section — no box or mask */
.map-wrap { position: relative; }
.map-box  { /* no background, no clip */ }
.map-box img, .map-box svg { display: block; width: 100%; height: auto; }

/* ═══════════════════════════
   FOOTER
═══════════════════════════ */
footer {
  background: var(--navy-deep);
  padding: 3rem 100px;
  display: flex; align-items: center; justify-content: space-between;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-brand { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.75); }
.footer-copy { font-size: 12px; color: rgba(255,255,255,0.5); }
.footer-links { display: flex; gap: 2rem; font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.6); cursor: pointer; }
.footer-links span:hover { color: var(--white); }

/* ═══════════════════════════
   RESPONSIVE — Mobile & Tablet
═══════════════════════════ */

/* Tablet: 600px - 1199px */
@media (max-width: 1199px) {
  .site-nav {
    padding: 0 2rem;
  }

  .nav-links {
    gap: 1.5rem;
    font-size: 10px;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  /* Stacked layout: the image sits directly above the band, so drop the
     desktop pull-up / spacer that were tuned to the side-by-side hero. */
  .stats {
    margin-top: 0;
    margin-bottom: 0;
  }

  .hero-left {
    padding: 5rem 2rem 3rem;
  }

  .hero-left h1 {
    width: 100%;
  }

  .hero-right {
    height: 400px;
    min-height: 400px;
  }
  
  .hero-img {
      clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }

  .stats-inner {
    grid-template-columns: repeat(2, 1fr);
    padding: 0 2rem;
  }

  .stat {
    padding: 2rem 2rem 2rem 0;
  }

  .stat:nth-child(3),
  .stat:nth-child(4) {
      border-top: 1px solid rgba(255,255,255,0.1);
  }
  
  .stat:nth-child(2),
  .stat:nth-child(4) {
      border-right: none;
  }
  
  .services {
    padding: 5rem 2rem;
    padding-bottom: calc(5rem + 30px);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 calc(100% - 40px));
  }    
 
  .svc-cols {
    grid-template-columns: 1fr 1fr;
  }
  .svc-col, .svc-col + .svc-col {
    padding: 2rem 1.5rem 2rem 0;
  }
  .svc-col + .svc-col {
    padding-left: 1.5rem;
  }

  .why-inner {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .why-left {
    padding: 7rem 2rem 3rem;
  }

  .why-right {
    padding: 5rem 2rem;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }

  .testimonials {
      clip-path: polygon(0 70px, 100% 0, 100% calc(100% - 30px), 0 100%); 
  }
  
  .global {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 8rem 2rem 5rem;
    margin-top: calc(0px - 70px);
  }

  .global h2 {
    white-space: normal;
  }

  footer {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }

  .footer-links {
    justify-content: center;
  }


  .about-stat-number,
  .about-stat-label {
    text-align: center;
  }
}

/* Mobile: max-width 599px */
@media (max-width: 599px) {
  body {
    font-size: 15px;
  }

  body {
    padding-top: 60px;
  }

  .site-nav {
    padding: 0 1rem;
    height: 60px;
  }

  .nav-logo svg {
    height: 16px;
  }

  .nav-links {
    display: none;
    font-size: 16px;
  }

  .nav-links.mobile-open {
    top: 60px;
  }

  .nav-links.mobile-open span.nav-cta {
    font-size: 16px;
  }

  .nav-hamburger {
    display: flex;
  }

  .hero-left {
    padding: 3rem 1rem 2rem;
  }

  .hero-left h1 {
    font-size: clamp(28px, 6vw, 46px);
    margin-bottom: 1.5rem;
  }

  .hero-left .lede {
    font-size: 15px;
    margin-bottom: 2rem;
  }
  .hero-left .lede--secondary {
    font-size: 14px;
    margin-top: -1rem;
    margin-bottom: 2rem;
  }

  .hero-img {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
  
  .btn-row {
    flex-direction: column;
  }

  .btn {
    width: 100%;
    text-align: center;
  }

  .hero-right {
    height: 300px;
    min-height: 300px;
  }

  .stats-inner {
    grid-template-columns: repeat(2, 1fr);
    padding: 0 1rem;
  }

  .stat {
    padding: 1.5rem 1rem;
    border-right: 1px solid rgba(255,255,255,0.1);
  }

  .stat:nth-child(odd) {
    padding-left: 0;
  }

  .stat:nth-child(even) {
    padding-left: 1rem;
  }

  .stat:nth-child(3),
  .stat:nth-child(4) {
    border-top: 1px solid rgba(255,255,255,0.1);
  }

  .stat:nth-child(2),
  .stat:nth-child(4) {
    border-right: none;
  }

  .stat-n {
    font-size: 40px;
  }

  .services {
    padding: 3rem 1rem;
    padding-bottom: calc(3rem + 30px);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 calc(100% - 40px));
  }
  
  .svc-cols {
    grid-template-columns: 1fr;
  }
  .svc-col, .svc-col + .svc-col {
    padding: 1.75rem 0;
    border-left: none;
  }
  .svc-col + .svc-col {
    padding-left: 0;
    border-top: 1px solid var(--rule);
  }

  .why-left {
    padding: 5rem 1rem 3rem 1rem;
  }

  .why-left h2 {
    font-size: clamp(24px, 5vw, 36px);
  }
  
  .diffs {
    margin-top: 2rem;
  }

  .diff {
    padding: 1.5rem 0 1.5rem 1rem;
    gap: 1rem;
  }

  .diff-ttl {
    font-size: 20px;
  }

  .diff-body {
    font-size: 14px;
  }

  .why-right {
    padding: 3rem 1.5rem;
  }

  .why-pullquote {
    font-size: 20px;
    margin-bottom: 1.5rem;
  }

  .why-subtext {
    font-size: 14px;
    margin-bottom: 2rem;
  }

  .testimonials {
    background: var(--white);
    clip-path: polygon(0 70px, 100% 0, 100% calc(100% - 30px), 0 100%);    
    padding-left: 1rem;
    padding-right: 1rem;
    padding-top: calc(0.5rem + 70px);
    padding-bottom: calc(0.5rem + 70px);
    margin-top: calc(0px - 35px);
  }

  .testi-header h2 {
    font-size: clamp(24px, 5vw, 34px);
    color: var(--navy);
  }

  .testi-carousel {
    max-width: 100%;
  }

  .testi-slide blockquote {
    font-size: clamp(18px, 4vw, 22px);
    margin-bottom: 1.5rem;
  }

  .testi-mark { margin-bottom: -1.5rem; }
  .testi-mark::before { font-size: 120px; }

  .testi-nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
  }

  .testi-btn {
    width: 40px;
    height: 40px;
    font-size: 14px;
  }

  .global {
    padding: 5rem 1rem;
    margin-top: calc(0px - 35px);
  }

  .global h2 {
    font-size: clamp(24px, 5vw, 32px);
  }

  .global .body {
    font-size: 14px;
  }

  footer {
    padding: 2rem 1rem;
    font-size: 10px;
  }

  .footer-links {
    gap: 1rem;
    font-size: 10px;
  }
}

/* ── MAP ANIMATION ── */
#map-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

#map-box-inner svg {
  width: 100%;
  height: auto;
  display: block;
}

#location-dots circle {
  fill: #1f5ed8;
  opacity: 0;
  filter: drop-shadow(0 0 0 #1f5ed8);
}

#location-dots.animate circle {
  animation: dotPopIn 0.7s ease-out forwards;
}

@media (scripting: none) {
  #location-dots circle {
    opacity: 0.6;
    filter: none;
  }
}

@keyframes dotPopIn {
  0% {
    opacity: 0;
    filter: drop-shadow(0 0 0 #1f5ed8);
  }
  50% {
    opacity: 1;
    filter: drop-shadow(0 0 4px #1f5ed8);
  }
  100% {
    opacity: 1;
    filter: drop-shadow(0 0 0 #1f5ed8);
  }
}

/* ═══════════════════════════
   SECTORS PAGE
═══════════════════════════ */

.sectors-intro {
  background: var(--white);
  border-bottom: 1px solid var(--rule);
}

.sectors-intro-inner {
  display: grid;
  grid-template-columns: 1fr 0.715fr;
  gap: 0;
  align-items: start;
}

.sectors-intro-content {
  padding: 3rem 5rem 6rem 100px;
}

.sectors-intro h1 {
  font-size: clamp(34px, 3vw, 48px);
  margin-bottom: 1.25rem;
}

.sectors-intro p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-body);
}

/* Sectors intro image — same diagonal clip as about */
.sectors-intro-visual {
  position: relative;
  overflow: hidden;
  align-self: stretch;
  min-height: 320px;
}

.sectors-intro-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
  filter: brightness(0.92) contrast(1.08);
  clip-path: polygon(8% 0, 100% 0, 100% 100%, 0 100%);
}

/* Sectors callout fact */
.sectors-callout {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  margin-top: 2rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--rule);
}

.sectors-callout-stat {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.sectors-callout-divider {
  width: 1px;
  height: 48px;
  background: var(--rule);
  flex-shrink: 0;
}

.sectors-callout-number {
  font-family: 'Scope One', serif;
  font-size: clamp(42px, 3.5vw, 56px);
  color: var(--navy);
  line-height: 1;
  flex-shrink: 0;
}

.sectors-callout-text {
  font-size: 14px;
  line-height: 1.55;
  color: var(--text-muted);
  max-width: 210px;
}

/* Sectors Grid Section */
.sectors-section {
  background: var(--bg-light);
  padding: 4rem 100px;
  clip-path: polygon(0 3.5rem, 100% 0, 100% 100%, 0 100%);
  margin-top: -3.5rem;
  padding-top: calc(4rem + 3.5rem);
}

.sectors-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  max-width: 1400px;
  margin: 0 auto;
}

/* Sector Card */
.sector-card {
  background: #fff;
  border: 1px solid #c4d8ec;
  border-radius: 10px;
  padding: 2rem 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
  position: relative;
}

.sector-card:hover {
  transform: translateY(-3px);
  background: #edf4fa;
  border-color: var(--slate);
  box-shadow: 0 8px 24px rgba(11, 30, 64, 0.08);
}

/* Icon */
.sector-icon {
  width: 40px;
  height: 40px;
  color: var(--steel);
  margin-bottom: 1.25rem;
  flex-shrink: 0;
}

.sector-icon svg {
  width: 100%;
  height: 100%;
}

/* Card Title */
.sector-title {
  font-family: 'Scope One', serif;
  font-size: 18px;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 0.85rem;
}

/* Card Blurb */
.sector-blurb {
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--text-body);
  flex: 1;
  margin-bottom: 1.5rem;
}

/* Card Link */
.sector-link {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--steel);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.15s, gap 0.15s;
}

.sector-link span {
  transition: transform 0.2s ease;
  display: inline-block;
}

.sector-link:hover {
  color: var(--navy);
}

.sector-link:hover span {
  transform: translateX(4px);
}

/* Responsive */
@media (max-width: 960px) {
  .sectors-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .sectors-section {
    padding: 3rem 2rem;
  }
  .sectors-intro-inner,
  .about-intro-inner {
    grid-template-columns: 1fr;
  }
  .sectors-intro-visual {
    display: none;
  }
  .sectors-intro-content,
  .about-intro-content {
    padding: 2.5rem 2rem;
  }
  .about-stats-panel {
    clip-path: none;
    flex-direction: row;
    flex-wrap: wrap;
    padding: 2rem 2rem 3rem;
    gap: 0;
  }
  .about-stat-block {
    flex: 1;
    min-width: 140px;
    border-top: 1px solid rgba(11,48,111,0.14);
    border-bottom: none;
  }
  .team-intro-inner {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .team-intro-heading {
    padding: 2.75rem 2rem 0.75rem;
  }
  .team-intro-heading h1 {
    white-space: normal;
  }
  .team-intro-right {
    clip-path: none;
    padding: 1rem 2rem 2.75rem;
    justify-content: flex-start;
  }
  .team-intro-left {
    padding: 1rem 2rem 1.5rem;
  }
  .advisory-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .sectors-grid {
    grid-template-columns: 1fr;
  }
  .sectors-section {
    padding: 2rem 1.5rem;
  }
  .advisory-grid {
    grid-template-columns: 1fr;
  }
}

/* ═══════════════════════════
   ABOUT PAGE
═══════════════════════════ */
.about-intro {
  background: var(--white);
  padding: 0;
  margin: 0;
}

.about-intro-inner {
  display: grid;
  grid-template-columns: 0.72fr 0.6fr;
  gap: 0;
  align-items: stretch;
}

.about-intro-content {
  padding: 5rem 3rem 5rem 100px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-intro h1 {
  margin-bottom: 1.25rem;
  font-size: clamp(34px, 3vw, 48px);
}

/* Stats — light blue panel, angled left edge */
.about-stats-panel {
  background: var(--bg-light);
  clip-path: polygon(8% 0, 100% 0, 100% 100%, 0 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
  padding: 2.5rem 100px 2.5rem 6rem;
}

.about-stat-block {
  padding: 1.75rem 0;
}

.about-stat-block:not(:first-child) {
  border-top: 1px solid rgba(11, 48, 111, 0.14);
}

.about-stat-number {
  font-family: 'Scope One', serif;
  font-size: clamp(38px, 3.2vw, 52px);
  color: var(--navy);
  line-height: 1;
  margin-bottom: 0.35rem;
}

.about-stat-label {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--slate);
}

.intro-text-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 1rem;
}

.intro-text-cols p {
  font-size: 18px;
  line-height: 1.8;
  color: var(--text-body);
  margin-bottom: 0;
}

.about-intro p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 1rem;
  color: var(--text-body);
  margin-bottom: 1rem;
}

.about-intro p:last-child {
  margin-bottom: 2rem;
}

/* ── About Values ── */
.about-values {
  background: var(--white);
  position: relative;
  z-index: 4;
}

.about-values-inner {
  padding: 6rem 100px 6rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.about-values-card {
  padding: 0;
  border-top: 1px solid rgba(183,143,88,0.3);
  padding-top: 2.75rem;
}

.about-values-icon {
  margin-bottom: 1.5rem;
  opacity: 0.75;
}

.about-values-card h3 {
  font-family: 'Scope One', serif;
  font-size: clamp(22px, 1.8vw, 28px);
  color: var(--navy);
  margin-bottom: 1.25rem;
  line-height: 1.2;
}

.about-values-card p {
  font-size: 16px;
  line-height: 1.85;
  color: var(--text-body);
  margin-bottom: 1rem;
}

.about-values-card p:last-child {
  margin-bottom: 0;
}

/* ── About Experience ── */
.about-experience {
  background: var(--bg-light);
  clip-path: polygon(0 60px, 100% 0, 100% 100%, 0 100%);
  margin-top: -60px;
  padding-top: 60px;
  position: relative;
  z-index: 5;
}

.about-experience.about-experience--white {
  background: var(--white);
  clip-path: none;
  margin-top: 0;
  padding-top: 0;
}

.about-exp-inner {
  padding: 5rem 100px 5.5rem;
}

.about-exp-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.about-exp-header h2 {
  font-family: 'Scope One', serif;
  font-size: clamp(26px, 2.2vw, 35px);
  color: var(--navy);
  margin-top: 0.5rem;
  line-height: 1.25;
}

.about-exp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}

.adv-acquisition-body {
  max-width: 780px;
}

.adv-acquisition-body p {
  font-size: 16px;
  line-height: 1.82;
  color: var(--text-body);
  margin-bottom: 1.25rem;
}

.adv-acquisition-body p:last-child { margin-bottom: 0; }

.about-exp-tag {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.about-exp-item p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--text-body);
  margin-bottom: 0.85rem;
}

.about-exp-item p:last-child {
  margin-bottom: 0;
}

/* ── About Principles (replaces exp grid on about.php) ── */
.about-principles-inner {
  padding: 5rem 100px 5.5rem;
}

.about-principles-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 6rem;
  align-items: start;
}

.about-principles-quote {
  position: relative;
}

.about-principles-quote::before {
  content: '\201C';
  display: block;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 220px;
  line-height: 0.6;
  color: var(--gold);
  opacity: 0.45;
  margin-bottom: -2.75rem;
  letter-spacing: -0.04em;
}

.about-principles-quote p {
  font-family: 'Scope One', serif;
  font-size: clamp(17px, 1.5vw, 22px);
  line-height: 1.75;
  color: var(--navy);
  font-style: italic;
  margin: 0;
}

.about-principles-body h3 {
  font-family: 'Scope One', serif;
  font-size: clamp(20px, 1.7vw, 26px);
  color: var(--navy);
  line-height: 1.25;
  margin-bottom: 1.5rem;
}

.about-principles-body p {
  font-size: 15px;
  line-height: 1.82;
  color: var(--text-body);
  margin-bottom: 1.1rem;
}

.about-principles-body p:last-child { margin-bottom: 0; }

/* Stats Row */
.intro-stats {
  display: flex;
  gap: 0;
  margin-top: 2rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--rule);
}

.stat-item {
  flex: 1;
  padding-right: 2rem;
}

.stat-item + .stat-item {
  padding-left: 2rem;
  padding-right: 2rem;
  border-left: 1px solid var(--rule);
}

.stat-item:last-child {
  padding-right: 0;
}

.stat-number {
  font-family: 'Scope One', serif;
  font-size: clamp(28px, 2.5vw, 40px);
  color: var(--navy);
  line-height: 1;
  margin-bottom: 0.4rem;
}

.stat-label {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--text-muted);
}

/* ═══════════════════════════
   TEAM PAGE — INTRO
═══════════════════════════ */

.team-intro {
  background: var(--white);
  padding: 0;
}

.team-intro-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
}

.team-intro-left {
  padding: 3.25rem 5rem 3.25rem 100px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.team-intro-left .eyebrow {
  margin-bottom: 1rem;
}

.team-intro-left h1 {
  font-size: clamp(34px, 3vw, 48px);
  line-height: 1.15;
  margin-bottom: 1.75rem;
}

.team-intro-left p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-body);
  margin-bottom: 1.1rem;
}

.team-intro-left p:last-child { margin-bottom: 0; }

.team-intro-right {
  background: var(--bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3.25rem 100px 3.25rem 6rem;
  clip-path: polygon(8% 0, 100% 0, 100% 100%, 0 100%);
}

.team-intro-quote {
  font-family: 'Scope One', serif;
  font-size: clamp(19px, 1.7vw, 26px);
  line-height: 1.55;
  color: var(--navy);
  font-style: italic;
  max-width: 380px;
  position: relative;
  padding-top: 3rem;
}
.team-intro-quote::before {
  content: '\201C';
  font-family: Georgia, 'Times New Roman', serif;
  font-style: normal;
  font-size: 220px;
  line-height: 0.6;
  color: var(--gold);
  opacity: 0.45;
  display: block;
  margin-bottom: -2.75rem;
  letter-spacing: -0.04em;
}

/* Team Section */
.team-section {
  background: var(--white);
  padding: 3.75rem 100px 6rem;
  position: relative;
  z-index: 2;
}

.team-header p {
  font-size: 16px;
  color: var(--text-body);
  max-width: 750px;
  margin: 0 auto;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.team-member {
  cursor: pointer;
  text-align: center;
}

.member-photo {
  position: relative;
  overflow: hidden;
  margin-bottom: 1rem;
  border-radius: 4px;
  aspect-ratio: 4/5;
}

.member-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(100%);
  transition: transform 0.4s ease;
}

.team-member:hover .member-photo img {
  transform: scale(1.05);
}

.member-info h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.3rem;
  font-family: 'Inter', sans-serif;
}

.member-title {
  font-size: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--slate);
  font-weight: 500;
}

/* Contact CTA */
.contact-cta {
  background: var(--white);
  padding: 7rem 100px;
  text-align: center;
}

.contact-cta h3 {
  font-size: clamp(18px, 1.6vw, 22px);
  margin-bottom: 1.25rem;
  color: var(--navy);
}

/* Advisory Section */
.advisory-section {
  background: var(--bg-light);
  padding: 6rem 100px;
  clip-path: polygon(0 70px, 100% 0, 100% 100%, 0 100%);
  padding-top: calc(6rem + 70px);
  margin-top: calc(0px - 70px);
  position: relative;
  z-index: 6;
}

.advisory-header {
  max-width: 900px;
  margin: 0 auto 4rem;
  text-align: center;
}

.advisory-header h2 {
  font-size: clamp(28px, 2.5vw, 42px);
  margin-bottom: 1rem;
}

.advisory-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}

.advisor-member {
  padding: 1.75rem 0;
  text-align: center;
}

.advisor-info h3 {
  font-family: 'Scope One', serif;
  font-size: clamp(19px, 1.4vw, 24px);
  line-height: 1.15;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.35rem;
}

.advisor-title {
  font-size: 11px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--slate);
  font-weight: 500;
}

/* Advisory list — two-column card layout (3 left, 2 right) */
.advisory-list {
  max-width: 1040px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: repeat(3, auto);
  grid-auto-flow: column;
  column-gap: 4.5rem;
}

.advisory-row {
  display: block;          /* stack: name → title → description → tags */
  padding: 1.875rem 0;
  border-top: 1px solid var(--rule);
}

.advisory-row:last-child {
  border-bottom: none;
}

.advisory-row-name {
  margin-bottom: 0.7rem;
}

@media (max-width: 860px) {
  .advisory-list {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    grid-auto-flow: row;
    column-gap: 0;
    max-width: 620px;
  }
}

.advisory-row-name h3 {
  font-family: 'Scope One', serif;
  font-size: clamp(16px, 1.15vw, 18px);
  font-weight: 400;
  color: var(--navy);
  line-height: 1.25;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.advisory-linkedin {
  display: inline-flex;
  align-items: center;
  color: rgba(11, 48, 111, 0.3);
  transition: color 0.2s;
  flex-shrink: 0;
  text-decoration: none;
}

.advisory-linkedin:hover { color: var(--navy); }

.advisory-linkedin svg {
  width: 14px;
  height: 14px;
  display: block;
}

/* The envelope is a lighter mark than the LinkedIn square, so run it a touch
   larger to sit optically level beside it. */
.advisory-email svg {
  width: 15px;
  height: 15px;
}

.advisory-row-titles {
  margin-bottom: 0.625rem;
}

.advisory-row-titles p {
  font-size: 13.5px;
  color: var(--text-body);
  line-height: 1.55;
  margin: 0 0 0.1rem;
}

.advisory-row-titles p:first-child {
  font-weight: 500;
  color: var(--navy);
}

.advisory-row-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.advisory-tag {
  font-size: 10.5px;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--navy);
  background: rgba(11, 48, 111, 0.07);
  padding: 0.25rem 0.65rem;
  border-radius: 2px;
}

/* Bio Modal */
.bio-modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  animation: fadeIn 0.2s ease;
}

.bio-modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

.bio-modal-content {
  background-color: var(--white);
  border-radius: 8px;
  max-width: 700px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
  position: relative;
  animation: slideIn 0.3s ease;
}

.bio-modal-close {
  position: absolute;
  top: 1.125rem;
  right: 1.125rem;
  width: 34px;
  height: 34px;
  border: none;
  outline: none;
  background: transparent;
  font-size: 24px;
  color: var(--text-muted);
  cursor: pointer;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  border-radius: 50%;
  transition: background 0.15s, color 0.15s;
}
.bio-modal-close:hover { background: rgba(11,48,111,0.06); color: var(--navy); }
.bio-modal-close:focus { outline: none; }
.bio-modal-close:focus-visible { box-shadow: 0 0 0 2px rgba(11,48,111,0.25); }

.bio-modal-body {
  display: grid;
  grid-template-columns: 40% 60%;
  gap: 2rem;
  padding: 3rem;
}

.bio-modal-body img {
  width: 100%;
  height: auto;
  border-radius: 4px;
  aspect-ratio: 3/4;
  object-fit: cover;
}

.bio-modal-text h2 {
  font-size: 24px;
  margin-bottom: 0.5rem;
  color: var(--navy);
}

.bio-modal-title {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--slate);
  font-weight: 500;
  margin-bottom: 1rem;
  display: block;
}

#bioModalBio {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-body);
  margin: 1.5rem 0;
}

.bio-modal-actions {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.bio-modal-icon-link {
  width: 38px;
  height: 38px;
  border: 1px solid var(--rule);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  text-decoration: none;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}

.bio-modal-icon-link svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.bio-modal-icon-link:hover {
  color: var(--steel);
  border-color: rgba(75,95,125,0.42);
  background: var(--bg-light);
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Footer */
/* Available to screen readers and search engines, invisible on screen. Used to
   give repeated "Learn More" links a meaningful accessible name. */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.footer {
  --footer-x: 4rem;
  display: block;
  background: var(--navy);
  color: var(--white);
  padding: 0;
  border-top: none;
  margin-top: 0;
  text-align: left;
}

.footer-main {
  max-width: 1400px;
  margin: 0 auto;
  padding: 3.5rem var(--footer-x) 3rem;
  display: grid;
  grid-template-columns: 200px 1fr 215px;
  gap: 3.5rem;
  align-items: start;
}

/* Brand / logo column */
.footer-logo-link {
  display: block;
  text-decoration: none;
  margin-bottom: 0.875rem;
}

.footer-wordmark {
  height: 20px;
  width: auto;
  display: block;
}

.footer-emd {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.55;
  margin: 0;
}

/* Nav link columns */
.footer-nav {
  display: flex;
  gap: 2.75rem;
  padding-top: 0.1rem; /* optical alignment with logo top */
}

.footer-nav-col {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.footer-nav-col a {
  display: block;
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  font-size: 13px;
  line-height: 1;
  padding-bottom: 0.8rem;
  transition: color 0.2s;
  white-space: nowrap;
}

.footer-nav-col a:hover {
  color: var(--white);
}

/* Phone-only column heading. Higher specificity than `.footer-nav-col a`,
   which would otherwise force it back to display:block. */
.footer-nav-col a.footer-nav-heading {
  display: none;
}

/* Contact: social icons + address */
.footer-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-self: end;
  width: 100%;
  padding-top: 0.1rem;
  text-align: right;
}

.footer-icons {
  display: flex;
  gap: 1.25rem;
  align-items: center;
  justify-content: flex-end;
  margin-bottom: 1rem;
}

.footer-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  color: rgba(255, 255, 255, 0.72);
  transition: color 0.2s;
}

.footer-icon:hover {
  color: var(--white);
}

.footer-icon svg {
  width: 100%;
  height: 100%;
}

.footer-address {
  font-style: normal;
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
  margin: 0;
  text-align: right;
}

.footer-bottom {
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.5rem var(--footer-x);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
  text-align: center;
}

.footer-bottom p {
  margin: 0;
}

/* ═══════════════════════════
   GLOBAL CAPABILITIES PAGE
═══════════════════════════ */

.global-intro {
  background: var(--white);
  padding: 0;
}

.global-intro-inner {
  display: grid;
  grid-template-columns: 1fr 0.68fr;
  gap: 0;
  align-items: stretch;
}

.global-intro-content {
  padding: 3rem 5rem 8rem 100px;
}

.global-intro h1 {
  font-size: clamp(34px, 3vw, 48px);
  margin-bottom: 1.25rem;
}

.global-intro p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-body);
  margin-bottom: 1rem;
}

.global-intro p:last-of-type { margin-bottom: 0; }

.global-intro-visual {
  position: relative;
  overflow: hidden;
  align-self: stretch;
  min-height: 360px;
}

.global-intro-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
  filter: brightness(0.92) contrast(1.08);
  clip-path: polygon(8% 0, 100% 0, 100% 100%, 0 100%);
}

.global-stat {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin: 2rem 0 1.5rem;
  padding: 1.25rem 0;
  border-top: 1px solid rgba(183,143,88,0.3);
  border-bottom: 1px solid rgba(183,143,88,0.3);
}

.global-stat-number {
  font-family: 'Scope One', serif;
  font-size: clamp(42px, 3.5vw, 58px);
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -0.01em;
  flex-shrink: 0;
}

.global-stat-label {
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  line-height: 1.7;
  color: var(--gold);
}

.reach-link-row {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.reach-link-label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  flex-shrink: 0;
}

.reach-link-label strong {
  color: var(--navy);
  font-weight: 600;
}

/* Approach / REACH detail section */
.reach-approach {
  background: var(--bg-light);
  padding: 5.5rem 100px;
  position: relative;
  clip-path: polygon(0 0, 100% 3.5rem, 100% 100%, 0 100%);
  margin-top: -3.5rem;
  padding-top: calc(5.5rem + 3.5rem);
}

.reach-approach-inner {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 7rem;
  align-items: center;
}

.reach-approach-pullquote {
  position: relative;
  padding-top: 0;
}

.reach-approach-pullquote::before {
  content: '\201C';
  display: block;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 220px;
  line-height: 0.6;
  color: var(--gold);
  opacity: 0.45;
  margin-bottom: -2.75rem;
  letter-spacing: -0.04em;
}

.reach-approach-pullquote p {
  font-family: 'Scope One', serif;
  font-size: clamp(18px, 1.7vw, 24px);
  line-height: 1.6;
  color: var(--navy);
  font-style: italic;
}

.reach-approach-right .eyebrow {
  color: var(--text-muted);
}

.reach-approach-right h2 {
  font-size: clamp(22px, 2vw, 32px);
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.reach-approach-right p {
  font-size: 16px;
  line-height: 1.82;
  color: var(--text-body);
  margin-bottom: 1.25rem;
}

.reach-approach-right p:last-child { margin-bottom: 0; }

/* Map / Network section */
.global-map-section {
  background: var(--white);
  padding: 5rem 100px;
  text-align: center;
}

.global-map-section h2 {
  font-size: clamp(26px, 2.5vw, 38px);
  margin-bottom: 0.85rem;
}

.global-map-section .map-intro {
  font-size: 15px;
  line-height: 1.75;
  color: var(--text-muted);
  max-width: 580px;
  margin: 0 auto 3rem;
}

.global-map-img {
  display: block;
  width: 100%;
  max-width: 1060px;
  margin: 0 auto;
  opacity: 0.7;
}

.global-map-regions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.4rem 2.5rem;
  margin-top: 2.5rem;
}

.global-map-region {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.global-map-region::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--steel);
  flex-shrink: 0;
}

/* Responsive */
@media (max-width: 960px) {
  .global-intro-inner {
    grid-template-columns: 1fr;
  }
  .global-intro-visual {
    display: none;
  }
  .global-intro-content {
    padding: 2.5rem 2rem;
  }
  .reach-approach-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .reach-approach {
    padding: 4rem 2rem;
  }
  .global-map-section {
    padding: 4rem 2rem;
  }
}

/* Responsive */
@media (max-width: 1024px) {
  .about-intro-inner {
    grid-template-columns: 1fr;
  }

  .about-intro-content {
    padding: 4rem 2rem;
  }

  .about-intro-visual {
    min-height: 225px;
  }

  .about-values {
    clip-path: polygon(0 0, 100% 30px, 100% 100%, 0 100%);
    margin-top: -30px;
    padding-top: 20px;
  }

  .about-values-inner {
    padding: 4rem 2rem 3.5rem;
    gap: 1.5rem;
  }

  .about-exp-inner {
    padding: 5rem 2rem 4rem;
  }

  .about-exp-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .contact-cta {
    padding: 3rem 1.5rem;
  }

  .about-intro-content {
    padding: 3rem 1.5rem 3rem !important;
  }

  .about-values-inner {
    grid-template-columns: 1fr;
    padding: 4rem 1.5rem 3rem;
  }

  .about-exp-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-exp-inner {
    padding: 4.5rem 1.5rem 3rem;
  }
}

/* ═════════════════════════��══════════════════
   ADVISORY SERVICE PAGES
═══════════════════════���════════════════════ */

/* ── Intro hero ── */
.service-intro {
  display: grid;
  grid-template-columns: 1fr 0.68fr;
  min-height: 540px;
  overflow: hidden;
}

.service-intro-content {
  padding: 7rem 5rem 8rem 100px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.service-intro-content h1 {
  font-family: 'Scope One', serif;
  font-size: clamp(32px, 3vw, 48px);
  color: var(--navy);
  line-height: 1.18;
  margin-bottom: 1.5rem;
}

.service-intro-content p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.service-intro-content p:last-child {
  margin-bottom: 0;
}

.service-intro-visual {
  position: relative;
  overflow: hidden;
}

.service-intro-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.55;
  clip-path: polygon(8% 0, 100% 0, 100% 100%, 0 100%);
}

/* ── Service panels ── */
.service-panels {
  background: var(--bg-light);
  padding: 5.5rem 100px;
  clip-path: polygon(0 0, 100% 3.5rem, 100% 100%, 0 100%);
  margin-top: -3.5rem;
  padding-top: calc(5.5rem + 3.5rem);
}

.service-panels--alt {
  clip-path: polygon(0 3.5rem, 100% 0, 100% 100%, 0 100%);
}

.service-panels-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.service-panels-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.service-panels-header h2 {
  font-family: 'Scope One', serif;
  font-size: clamp(24px, 2.2vw, 36px);
  color: var(--navy);
  margin-bottom: 0.75rem;
}

.service-panels-header p {
  font-size: 15px;
  color: var(--text-muted);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.75;
}

.service-panels-grid {
  display: grid;
  gap: 2rem;
}

.service-panels-grid.cols-2 {
  grid-template-columns: repeat(2, 1fr);
}

.service-panels-grid.cols-3 {
  grid-template-columns: repeat(3, 1fr);
}

.service-panel {
  background: #fff;
  padding: 2.5rem;
  border-top: 3px solid var(--navy);
}

.service-panel-icon {
  width: 36px;
  height: 36px;
  color: var(--steel);
  margin-bottom: 1.5rem;
}

.service-panel h3 {
  font-family: 'Scope One', serif;
  font-size: 20px;
  color: var(--navy);
  margin-bottom: 0.85rem;
  line-height: 1.3;
}

.service-panel p {
  font-size: 14.5px;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 0.9rem;
}

.service-panel p:last-child {
  margin-bottom: 0;
}

/* ── Approach band (navy) ── */
.service-approach {
  background: var(--navy);
  padding: 5.5rem 100px;
}

.service-approach-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 7rem;
  align-items: start;
}

.service-approach-quote {
  position: relative;
}

.service-approach-quote::before {
  content: '\201C';
  display: block;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 220px;
  line-height: 0.6;
  letter-spacing: -0.04em;
  color: rgba(255, 255, 255, 0.18);
  margin-bottom: -2.75rem;
}

.service-approach-quote p {
  font-family: 'Scope One', serif;
  font-style: italic;
  font-size: clamp(18px, 1.8vw, 24px);
  line-height: 1.55;
  color: #fff;
}

.service-approach-right .eyebrow--white {
  display: block;
  margin-bottom: 1.5rem;
}

.service-approach-right p {
  font-size: 16px;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.62);
  margin-bottom: 1.25rem;
}

.service-approach-right p:last-child {
  margin-bottom: 0;
}

/* ── Process steps ── */
.service-process {
  background: #fff;
  padding: 5.5rem 100px;
}

.service-process-inner {
  max-width: 860px;
  margin: 0 auto;
}

.service-process h2 {
  font-family: 'Scope One', serif;
  font-size: clamp(24px, 2.2vw, 36px);
  color: var(--navy);
  margin-bottom: 3.5rem;
  text-align: center;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem 4.5rem;
}

.process-step {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 1.25rem;
  align-items: start;
}

.process-step-num {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--steel);
  padding-top: 5px;
  border-top: 2px solid var(--rule);
}

.process-step h4 {
  font-family: 'Scope One', serif;
  font-size: 17px;
  color: var(--navy);
  margin-bottom: 0.6rem;
}

.process-step p {
  font-size: 14px;
  line-height: 1.75;
  color: var(--text-muted);
}

/* ── Advisory page responsive ── */
@media (max-width: 960px) {
  .service-intro {
    grid-template-columns: 1fr;
  }
  .service-intro-visual {
    display: none;
  }
  .service-intro-content {
    padding: 4rem 2.5rem;
  }
  .service-panels-grid.cols-2,
  .service-panels-grid.cols-3 {
    grid-template-columns: 1fr;
  }
  .service-approach-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .service-approach {
    padding: 4rem 2rem;
  }
  .service-panels {
    padding: 4rem 2rem;
  }
  .process-steps {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .service-process {
    padding: 4rem 2rem;
  }
}

/* ═══════════════════════════
   INSIGHTS PAGE
═══════════════════════════ */

.insights-header {
  padding: 0;
}

.insights-header-inner {
  max-width: 1400px;
  margin: 0 auto;
}

/* ── Insights top band: intro (left) + light-blue angled panel (right) ── */
.insights-header-grid {
  display: grid;
  grid-template-columns: 52% 48%;
  align-items: stretch;
}
.insights-header-left {
  padding: 3.25rem 4rem 2rem 100px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.insights-header-panel {
  background: var(--bg-light);
  clip-path: polygon(8% 0, 100% 0, 100% 100%, 0 100%);
  padding: 3.25rem 100px 2.5rem 6rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.ins-report-heading {
  font-family: 'Scope One', serif;
  font-size: clamp(22px, 1.9vw, 30px);
  font-weight: 600;
  color: var(--navy);
  margin: 0 0 1.5rem;
}

/* Newsletter signup (sits under the intro, left column — label stacked on top) */
.ins-newsletter {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.6rem;
  margin-top: 1.9rem;
  max-width: 380px;
}
.ins-newsletter-label {
  font-size: 13px;
  letter-spacing: 0.02em;
  color: var(--navy);
  font-weight: 500;
  white-space: nowrap;
}
.ins-newsletter-form {
  display: flex;
  flex: 1;
  min-width: 220px;
  border: 1px solid var(--rule);
  border-radius: 3px;
  background: #fff;
  overflow: hidden;
}
.ins-newsletter-form input {
  flex: 1;
  border: 0;
  padding: 0.7rem 0.9rem;
  font-size: 13px;
  font-family: 'Inter', sans-serif;
  color: var(--navy);
  background: transparent;
}
.ins-newsletter-form input:focus { outline: none; }
.ins-newsletter-form button {
  border: 0;
  background: var(--navy);
  color: #fff;
  padding: 0 0.9rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  transition: background 0.2s ease;
}
.ins-newsletter-form button:hover { background: var(--hero-bg); }
.ins-newsletter-msg {
  margin: 0.5rem 0 0;
  font-size: 12px;
  line-height: 1.4;
  color: #993e1f;
}

/* Newsletter thank-you popup */
.nl-thanks {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background: rgba(11, 30, 64, 0.5);
}
.nl-thanks[hidden] { display: none; }
.nl-thanks-box {
  position: relative;
  width: 100%;
  max-width: 400px;
  background: #fff;
  border-radius: 6px;
  padding: 2.6rem 2rem 2.25rem;
  text-align: center;
  box-shadow: 0 20px 60px rgba(7, 20, 48, 0.3);
  outline: none;
}
.nl-thanks-close {
  position: absolute;
  top: 0.55rem;
  right: 0.85rem;
  background: none;
  border: 0;
  font-size: 26px;
  line-height: 1;
  color: var(--slate);
  cursor: pointer;
}
.nl-thanks-close:hover { color: var(--navy); }
.nl-thanks-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--gold);
  color: #fff;
  margin-bottom: 1.1rem;
}
.nl-thanks-box h3 {
  font-family: 'Scope One', serif;
  font-size: 22px;
  color: var(--navy);
  margin: 0 0 0.6rem;
}
.nl-thanks-box p {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--text-body);
  margin: 0;
}

/* Report promo: description stacked over a full-width box */
.ins-report-promo {
  display: block;
}
.ins-report-blurb {
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--text-body);
  margin: 0 0 1.25rem;
}

/* Paper-stock box holding the report cover: sharp corners, thin rule, and a
   ragged torn bottom edge (clip-path reused verbatim from the July original).
   drop-shadow() rather than box-shadow so the shadow follows the torn
   silhouette instead of being clipped square with the element. */
.ins-report-box {
  align-self: stretch;
  background: #fff;
  border: 1px solid var(--rule);
  /* Even paper margin around the cover, with extra at the foot to clear the
     torn edge. The download button overlays the cover, so no room is
     reserved for it here. */
  padding: 0.9rem 0.9rem 1.6rem;
  filter: drop-shadow(0 8px 18px rgba(11, 48, 111, 0.12));
  /* Same tooth sequence as the original, but the vertical offsets are pixels
     measured from the bottom rather than percentages of height. The original
     box was short copy; this one wraps a tall cover image, and percentage
     offsets would scale the teeth up into a pinking-shear zigzag. */
  clip-path: polygon(
    0 0, 100% 0,
    100% calc(100% - 10px), 97% calc(100% - 4px), 94% calc(100% - 12px),
    91% calc(100% - 2px), 88% calc(100% - 10px), 85% calc(100% - 2px),
    82% calc(100% - 12px), 79% calc(100% - 4px), 76% calc(100% - 10px),
    73% calc(100% - 2px), 70% calc(100% - 12px), 67% calc(100% - 4px),
    64% calc(100% - 10px), 61% calc(100% - 2px), 58% calc(100% - 12px),
    55% calc(100% - 4px), 52% calc(100% - 10px), 49% calc(100% - 2px),
    46% calc(100% - 12px), 43% calc(100% - 4px), 40% calc(100% - 10px),
    37% calc(100% - 2px), 34% calc(100% - 12px), 31% calc(100% - 4px),
    28% calc(100% - 10px), 25% calc(100% - 2px), 22% calc(100% - 12px),
    19% calc(100% - 4px), 16% calc(100% - 10px), 13% calc(100% - 2px),
    10% calc(100% - 12px), 7% calc(100% - 4px), 4% calc(100% - 10px),
    0 calc(100% - 2px)
  );
}

/* Client-supplied report cover image, with the download button overlaid.
   The artwork is prepared with the button area already blurred, and is sized
   to a height that suits the panel. */
.ins-report-figure {
  position: relative;
  display: block;
  line-height: 0;
}
.ins-report-figure img {
  display: block;
  width: 100%;
  height: auto;
}
.ins-report-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
  padding: 0.7rem 1.4rem;
  background: var(--gold);
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.2;
  border-radius: 3px;
  text-decoration: none;
  box-shadow: 0 6px 16px rgba(11, 48, 111, 0.28);
  transition: background 0.2s ease;
}
.ins-report-btn:hover { background: #a67c47; }
/* Sit the button over the cover, near the bottom of the artwork. */
.ins-report-figure .ins-report-btn {
  position: absolute;
  left: 50%;
  bottom: 1.4rem;
  transform: translateX(-50%);
}

@media (max-width: 1024px) {
  .insights-header-grid { grid-template-columns: 1fr; }
  .insights-header-left { padding: 3rem 2rem 1.5rem; }
  .insights-header-panel {
    clip-path: none;
    padding: 2.5rem 2rem;
  }
}

.insights-header h1 {
  font-family: 'Scope One', serif;
  font-size: clamp(34px, 3vw, 48px);
  color: var(--navy);
  line-height: 1.1;
  margin-top: 0.6rem;
  margin-bottom: 1.25rem;
}

.insights-intro {
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-muted);
  max-width: 620px;
}

/* ── Filters ── */
.insights-filters {
  background: #fff;
  padding: 2rem 100px 2.5rem;
  border-bottom: 1px solid var(--rule);
}

.insights-filters-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: flex-end;
  gap: 2rem;
}

.insights-filter-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.insights-filter-group--search {
  flex: 1;
  max-width: 320px;
}

.insights-filter-group label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
  color: var(--text-muted);
}

.insights-filter-group select,
.insights-filter-group input {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--navy);
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: 4px;
  padding: 0.5rem 0.75rem;
  outline: none;
  transition: border-color 0.15s;
  appearance: none;
  -webkit-appearance: none;
  min-width: 160px;
}

.insights-filter-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%234d6e9a' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  padding-right: 2.25rem;
}

.insights-filter-group select:focus,
.insights-filter-group input:focus {
  border-color: var(--steel);
}

.insights-search-wrap {
  position: relative;
}

.insights-search-icon {
  position: absolute;
  left: 0.65rem;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  color: var(--steel);
  pointer-events: none;
}

.insights-search-wrap input {
  width: 100%;
  padding-left: 2.1rem;
}

/* ── Shared inner wrapper ── */
.insights-inner {
  max-width: 1400px;
  margin: 0 auto;
}

/* ── Featured section ── */
.insights-featured {
  background: var(--bg-light);
  padding: 3.5rem 100px 6rem;
}

.insights-section-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.insights-featured-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.insight-card {
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: 6px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.insight-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(11, 30, 64, 0.08);
}

.insight-card-img {
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.insight-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.insight-card:hover .insight-card-img img {
  transform: scale(1.03);
}

.insight-card-body {
  padding: 1.5rem 1.75rem 1.75rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* ── Archive section ── */
.insights-archive {
  background: #fff;
  padding: 3.5rem 100px 2.5rem;
}

.insights-archive-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.insight-archive-card {
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: 6px;
  padding: 1.5rem 1.75rem;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.insight-archive-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(11, 30, 64, 0.08);
}

/* ── Shared card elements ── */
.insight-meta {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 0.75rem;
}

.insight-type {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-weight: 500;
  padding: 3px 8px;
  border-radius: 3px;
  white-space: nowrap;
}

.insight-type--news {
  background: #e4eaf6;
  color: var(--navy);
}

.insight-type--pub {
  background: #e6f0e8;
  color: #2a5230;
}

.insight-date {
  font-size: 12px;
  color: var(--text-muted);
}

.insight-title {
  font-family: 'Scope One', serif;
  font-size: 17px;
  color: var(--navy);
  line-height: 1.35;
  margin-bottom: 0.75rem;
  flex: 1;
}

.insight-card .insight-title {
  font-size: 19px;
}

.insight-excerpt {
  font-size: 14px;
  line-height: 1.72;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.insight-read {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  font-weight: 500;
  color: var(--steel);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: auto;
  transition: color 0.15s, gap 0.15s;
}

.insight-read span {
  transition: transform 0.2s ease;
  display: inline-block;
}

.insight-read:hover {
  color: var(--navy);
}

.insight-read:hover span {
  transform: translateX(4px);
}

/* ── Case study checkbox filter ── */
.exp-cs-filter {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding-bottom: 2px;
  cursor: pointer;
  user-select: none;
}

.exp-cs-filter input[type="checkbox"] {
  width: 15px;
  height: 15px;
  border: 1.5px solid var(--rule);
  border-radius: 3px;
  background: #fff;
  accent-color: var(--navy);
  cursor: pointer;
  flex-shrink: 0;
}

.exp-cs-filter-label {
  font-size: 12px;
  font-weight: 500;
  color: var(--navy);
  white-space: nowrap;
}

.insights-no-results {
  text-align: center;
  padding: 3rem 0;
  font-size: 15px;
  color: var(--text-muted);
}

/* ── Responsive ── */
@media (max-width: 960px) {
  .insights-header { padding: 3rem 2rem 2rem; }
  .insights-filters { padding: 1.25rem 2rem; }
  .insights-filters-inner { flex-wrap: wrap; gap: 1rem; }
  .insights-filter-group--search { max-width: 100%; }
  .insights-featured { padding: 2.5rem 2rem 3rem; padding-top: calc(2.5rem + 3rem); clip-path: none; margin-top: 0; }
  .insights-featured-grid { grid-template-columns: 1fr; }
  .insights-archive { padding: 3rem 2rem 4rem; }
  .insights-archive-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════
   EXPERIENCE PAGE
═══════════════════════════ */

/* ── Intro header — matches insights-header layout ── */
.experience-intro {
  background: #fff;
  padding: 4.5rem 100px 3.5rem;
}

.experience-intro-content {
  max-width: 1400px;
  margin: 0 auto;
}

.experience-intro-content h1 {
  font-family: 'Scope One', serif;
  font-size: clamp(34px, 3vw, 48px);
  color: var(--navy);
  line-height: 1.1;
  margin-top: 0.6rem;
  margin-bottom: 1.25rem;
}

.experience-intro-content p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-muted);
  max-width: 620px;
  margin-bottom: 0;
}

/* ── Featured case studies — light blue angled bg ── */
.experience-featured {
  background: var(--bg-light);
  padding: 3.5rem 100px 5rem;
  clip-path: polygon(0 3rem, 100% 0, 100% 100%, 0 100%);
  margin-top: -3rem;
  padding-top: calc(3.5rem + 3rem);
}

.experience-featured--flat {
  background: var(--bg-light);
  clip-path: polygon(0 5rem, 100% 0, 100% 100%, 0 100%);
  margin-top: 0;
  padding-top: 8rem;
  padding-bottom: 10rem;
}

/* ── Filters — white, sits below featured ── */
.experience-filters {
  background: #fff;
  padding: 2.5rem 100px 2.5rem;
  border-bottom: 1px solid var(--rule);
}

.experience-filters-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: flex-end;
  gap: 2rem;
  flex-wrap: wrap;
}

.experience-featured-inner {
  max-width: 1400px;
  margin: 0 auto;
}

.experience-section-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}
.exp-featured-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.exp-case-card {
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: 6px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

/* ── Featured card photo strip ── */
.exp-case-img {
  width: 100%;
  height: 160px;
  overflow: hidden;
  flex-shrink: 0;
}
.exp-case-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  display: block;
  transition: transform 0.4s ease;
}

/* ── Clickable txn-card (non-case-study) ── */
.txn-card--clickable {
  cursor: pointer;
}
.txn-card--clickable:hover {
  box-shadow: 0 8px 24px rgba(11, 30, 64, 0.08);
  transform: translateY(-3px);
}

/* ── Transaction modal ── */
.txn-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(7, 20, 48, 0.65);
  backdrop-filter: blur(3px);
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  outline: none;
}
.txn-modal-overlay[hidden] { display: none; }

/* ════════════════════════════════════════════════════════════
   CASE STUDY MODAL — Full design
   ════════════════════════════════════════════════════════════ */

.cs-overlay {
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(7, 20, 48, 0.85);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 3rem 1.5rem;
  overflow-y: auto;
  outline: none;
}
.cs-overlay[hidden] { display: none; }

.cs-panel {
  background: #fff;
  border-radius: 10px;
  width: 100%;
  max-width: 960px;
  position: relative;
  overflow: hidden;
  margin: auto;
  box-shadow: 0 20px 80px rgba(7,20,48,0.5);
}

.cs-close {
  position: absolute;
  top: 1.125rem;
  right: 1.125rem;
  width: 34px;
  height: 34px;
  border: none;
  outline: none;
  background: transparent;
  font-size: 24px;
  color: var(--text-muted);
  cursor: pointer;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  border-radius: 50%;
  transition: background 0.15s, color 0.15s;
}
.cs-close:hover { background: rgba(11,48,111,0.06); color: var(--navy); }
.cs-close:focus { outline: none; }
.cs-close:focus-visible { box-shadow: 0 0 0 2px rgba(11,48,111,0.25); }

/* ── Main 2-column grid: tombstone left (navy), details right ── */
.cs-main-grid {
  display: grid;
  grid-template-columns: 360px 1fr;
}

.cs-tombstone-col {
  background: #f5f7fa;
  border-right: 1px solid var(--rule);
  padding: 3.13rem 2.03rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}

.cs-details-col {
  padding: 2.5rem 3rem 2.5rem 2.375rem;
  display: flex;
  flex-direction: column;
}

.cs-header-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.875rem;
}
.cs-pill {
  display: inline-block;
  font-size: 10px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy);
  background: rgba(11, 48, 111, 0.08);
  padding: 0.3rem 0.7rem;
  border-radius: 2px;
}
.cs-sector-tag {
  font-size: 12px;
  font-family: 'Inter', sans-serif;
  color: var(--text-muted);
  letter-spacing: 0.03em;
}
.cs-modal-title {
  font-family: 'Scope One', serif;
  font-size: clamp(17px, 1.75vw, 23px);
  color: var(--navy);
  line-height: 1.25;
  margin: 0 0 1.375rem;
  padding-right: 2.5rem;
  padding-bottom: 1.375rem;
  border-bottom: 1px solid var(--rule);
}
.cs-overview {
  font-size: 14.5px;
  line-height: 1.82;
  color: var(--text-body);
  margin-bottom: 1.25rem;
}
.cs-bullets {
  list-style: none;
  padding: 0;
  margin: 0;
}
.cs-bullets li {
  position: relative;
  padding: 0.6rem 0 0.6rem 1.25rem;
  border-top: 1px solid var(--rule);
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-body);
}
.cs-bullets li:last-child { border-bottom: 1px solid var(--rule); }
.cs-bullets li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
}

/* ── Quote — inline within details col ── */
.cs-quote-section {
  margin-top: 3rem;
  padding-top: 0;
}
.cs-quote-block { position: relative; }
.cs-quote-block::before {
  content: '\201C';
  display: block;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 80px;
  line-height: 0.6;
  color: var(--gold);
  opacity: 0.6;
  margin-bottom: -1rem;
  letter-spacing: -0.04em;
}
.cs-quote-text {
  font-family: 'Scope One', serif;
  font-size: clamp(13px, 1.1vw, 14.5px);
  line-height: 1.78;
  color: var(--navy);
  font-style: italic;
  margin: 0 0 0.625rem;
}
.cs-quote-attr {
  display: block;
  font-size: 11px;
  font-family: 'Inter', sans-serif;
  font-style: normal;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

/* ── Tombstone card ── */
.cs-tombstone {
  position: relative;
  width: 100%;
  max-width: 295px;
  background: #fff;
  border: 1px solid rgba(11,48,111,0.15);
  border-radius: 2px;
  box-shadow: 0 6px 28px rgba(7,20,48,0.12);
  text-align: center;
  padding: 2.03rem 1.72rem 1.56rem;
}
.cs-ts-rule {
  width: 100%;
  height: 1px;
  background: var(--gold);
  border: none;
  margin: 1.5rem 0 0.94rem;
  opacity: 0.6;
}
.cs-ts-logo-box {
  width: 85px;
  height: 55px;
  border: 1px solid rgba(11,48,111,0.12);
  border-radius: 2px;
  margin: 0 auto 0.31rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f5f7fa;
}
.cs-ts-logo-box svg { width: 40px; height: auto; opacity: 0.35; }
.cs-ts-client-name {
  font-family: 'Scope One', serif;
  font-size: 15.6px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.31rem;
  line-height: 1.3;
}
.cs-ts-client-desc {
  font-size: 12.5px;
  font-family: 'Inter', sans-serif;
  color: var(--text-muted);
  font-style: italic;
  line-height: 1.4;
  margin-bottom: 0;
}
.cs-ts-action {
  font-size: 10.6px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-style: normal;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 1.3rem 0;
  line-height: 1.45;
}
.cs-ts-party { margin-top: 0.35rem; }
.cs-ts-secondary-action {
  font-size: 10.6px;
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(183,143,88,0.85);
  margin: 1rem 0 0.3rem;
}
.cs-ts-date {
  font-size: 11.9px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 0.31rem;
}
.cs-ts-crosbie {
  margin-top: 1.09rem;
  opacity: 0.25;
}
.cs-ts-crosbie svg {
  width: 98px;
  height: auto;
  display: block;
  margin: 0 auto;
}
/* Services + sectors under the gold rule (replaces the old date/logo). */
.cs-ts-tags {
  margin-top: 0.1rem;
}
.cs-ts-services {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.35rem;
  margin-bottom: 0.6rem;
}
.cs-ts-service {
  font-family: 'Inter', sans-serif;
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(183, 143, 88, 0.45);
  border-radius: 2px;
  padding: 0.22rem 0.5rem;
  line-height: 1.3;
}
.cs-ts-sectors {
  font-family: 'Inter', sans-serif;
  font-size: 11.5px;
  color: var(--text-muted);
  line-height: 1.45;
}

/* Download icon — subtle corner of tombstone */
.cs-ts-download {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  width: 22px;
  height: 22px;
  border: none;
  background: transparent;
  color: var(--text-muted);
  opacity: 0.35;
  cursor: pointer;
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: opacity 0.15s, background 0.15s, color 0.15s;
}
.cs-ts-download:hover {
  opacity: 1;
  background: rgba(11,48,111,0.06);
  color: var(--navy);
}

.txn-modal-panel {
  background: #fff;
  border-radius: 10px;
  max-width: 560px;
  width: 100%;
  padding: 2.5rem 2.75rem 3rem;
  position: relative;
  box-shadow: 0 24px 64px rgba(7, 20, 48, 0.3);
  max-height: 90vh;
  overflow-y: auto;
}

.txn-modal-close {
  position: absolute;
  top: 1.125rem;
  right: 1.125rem;
  width: 34px;
  height: 34px;
  border: none;
  outline: none;
  background: transparent;
  font-size: 24px;
  color: var(--text-muted);
  cursor: pointer;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  border-radius: 50%;
  transition: background 0.15s, color 0.15s;
}
.txn-modal-close:hover { background: rgba(11,48,111,0.06); color: var(--navy); }
.txn-modal-close:focus { outline: none; }
.txn-modal-close:focus-visible { box-shadow: 0 0 0 2px rgba(11,48,111,0.25); }

.txn-modal-logos {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.75rem;
}
.txn-modal-logos .txn-logo-box {
  height: 60px;
  min-width: 120px;
  padding: 0 0.75rem;
}
.txn-modal-logos .txn-logo-sep {
  font-size: 18px;
  color: #b0c4d8;
}

.txn-modal-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}
.txn-modal-tag {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
  color: var(--steel);
  background: rgba(74, 115, 161, 0.08);
  border-radius: 3px;
  padding: 0.3rem 0.65rem;
}
.txn-modal-tag--year {
  color: var(--text-muted);
  background: var(--bg-light);
}

.txn-modal-title {
  font-family: 'Scope One', serif;
  font-size: 22px;
  line-height: 1.4;
  color: var(--navy);
  margin-bottom: 1rem;
  font-weight: 400;
  padding-right: 1.5rem;
}

.txn-modal-desc {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-body);
}

.exp-case-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(11, 30, 64, 0.08);
}

.exp-case-card:hover .exp-case-img img {
  transform: scale(1.03);
}

/* ── Featured card meta row (service tag — matches insight-meta) ── */
.exp-case-meta {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 0.75rem;
}

.exp-case-pill {
  display: inline-block;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-weight: 500;
  color: var(--navy);
  background: #e4eaf6;
  padding: 3px 8px;
  border-radius: 3px;
  white-space: nowrap;
}

.exp-case-card-body {
  padding: 1.5rem 1.75rem 1.75rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.exp-case-logos {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1.25rem;
  padding-top: 1.1rem;
  border-top: 1px solid var(--rule);
  min-height: 48px;
}

.exp-logo-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  width: 96px;
  height: 58px;
  background: var(--bg-light);
  border: 1px dashed #b8c8db;
  border-radius: 5px;
  padding: 0 0.5rem;
  flex-shrink: 0;
}

.exp-logo-box svg {
  display: block;
  flex-shrink: 0;
}

.exp-logo-box span {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--steel);
  text-transform: uppercase;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 80px;
}

.exp-logo-sep {
  font-size: 16px;
  color: #b8c8db;
  font-weight: 300;
  flex-shrink: 0;
}

/* sector label — styled like insight-date (muted, same size) */
.exp-case-sector {
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.75rem;
}

.exp-case-title {
  font-family: 'Scope One', serif;
  font-size: 19px;
  color: var(--navy);
  line-height: 1.35;
  margin-bottom: 0.85rem;
}

.exp-case-desc {
  font-size: 14px;
  line-height: 1.72;
  color: var(--text-body);
  margin-bottom: 1.25rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}

.exp-case-link {
  background: none;
  border: none;
  padding: 0;
  margin-bottom: 1rem;
  cursor: pointer;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
  color: var(--steel);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: color 0.15s;
}

.exp-case-link span {
  transition: transform 0.2s ease;
  display: inline-block;
}

.exp-case-link:hover {
  color: var(--navy);
}

.exp-case-link:hover span {
  transform: translateX(4px);
}

/* ── Transaction results grid ── */
.experience-results {
  background: #fff;
  padding: 3.5rem 100px 2.75rem;
}

.experience-results-inner {
  max-width: 1400px;
  margin: 0 auto;
}

.experience-results-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 2rem;
}

.experience-count {
  font-size: 13px;
  color: var(--text-muted);
}

.txn-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

/* ── Tombstone alignment across a row (subgrid) ──
   Each tombstone card spans four shared rows — parties / rule / tags / CS
   link — so every card in a visual row inherits the same track heights. The
   gold rules line up, the tag blocks start at the same y, and the case-study
   links sit on the same baseline, without forcing a global fixed height:
   each row still sizes to its own tallest card. Row gap is zeroed so the
   shared tracks don't inherit the grid gutter; cards carry their own bottom
   margin for row separation instead. */
.txn-grid:has(.txn-card--tombstone) {
  row-gap: 0;
}
.txn-card--tombstone {
  grid-row: span 4;
  grid-template-rows: subgrid;
  margin-bottom: 1.25rem;
}
.txn-card--tombstone .cs-tombstone--grid {
  display: grid;
  grid-row: span 3;
  grid-template-rows: subgrid;
}
/* Zone alignment within the shared tracks. */
.cs-tombstone--grid .cs-ts-parties {
  display: flex;
  flex-direction: column;
  justify-content: center;   /* logos + action lines centred in their track */
  align-items: center;
  width: 100%;
}
.txn-card--tombstone .cs-ts-tags { align-self: start; }   /* hang from the rule */
.txn-card--tombstone .txn-cs-trigger { align-self: end; } /* pinned to the bottom */

/* Fallback for browsers without subgrid: fall back to the previous flex
   stack with min-height floors, so cards are roughly even even if the rules
   don't align exactly. */
@supports not (grid-template-rows: subgrid) {
  .txn-grid:has(.txn-card--tombstone) { row-gap: 1.25rem; }
  .txn-card--tombstone {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 0;
  }
  .txn-card--tombstone .cs-tombstone--grid { display: block; }
  .cs-tombstone--grid .cs-ts-parties { min-height: 190px; }
  .txn-card--tombstone .cs-ts-tags { min-height: 56px; }
  .txn-card--tombstone .txn-cs-trigger { margin-top: auto; }
}

.txn-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: 6px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

/* Only clickable (case-study) cards lift on hover; static tombstones don't. */
.txn-card--clickable:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(11, 30, 64, 0.08);
}

/* ── Results rendered as tombstones (mirror of the popup, smaller) ── */
.txn-card--tombstone {
  display: grid;              /* overrides .txn-card's flex — needed for subgrid */
  align-items: stretch;
  padding: 1.7rem 1.4rem 1.5rem;
  text-align: center;
}
/* The .txn-card is the box; strip the inner tombstone's own frame. */
.txn-card--tombstone .cs-tombstone--grid {
  position: static;
  width: 100%;
  max-width: none;
  background: none;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  padding: 0;
}
.cs-tombstone--grid .cs-ts-logo-box { width: 130px; height: 80px; margin: 0 auto; }
/* Logo boxes hug the logo (capped height) so there's no internal whitespace —
   spacing then comes only from the even connector margins. Placeholder boxes
   keep the fixed height above. */
.cs-tombstone--grid .cs-ts-logo-box--has-logo { height: auto; }
.cs-tombstone--grid .cs-ts-logo-box img { max-height: 54px; }
.cs-tombstone--grid .cs-ts-logo-box svg { width: 56px; }
.cs-tombstone--grid .cs-ts-client-name { font-size: 13px; margin: 0.3rem 0 0; }
/* Connectors: all use the action-line treatment, with room around them so
   logos (whose baked-in whitespace varies) don't crowd the text. */
.cs-tombstone--grid .cs-ts-action { margin: 1rem 0; font-size: 10px; }
.cs-tombstone--grid .cs-ts-rule { margin: 1.1rem 0 0.8rem; }
.txn-card--tombstone .txn-cs-trigger {
  margin-top: 1rem;
  background: none;
  border: 0;
  padding: 0;
  color: var(--gold);
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.03em;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  transition: color 0.2s ease;
}
.txn-card--tombstone .txn-cs-trigger:hover { color: var(--navy); }
.txn-card--cs { cursor: pointer; }
/* Case-study marker: gold folded corner with a star, top-right. */
.txn-card--cs::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 46px 46px 0;
  border-color: transparent var(--gold) transparent transparent;
  z-index: 2;
  pointer-events: none;
}
.txn-card--cs::after {
  content: '★';
  position: absolute;
  top: 3px;
  right: 5px;
  color: #fff;
  font-size: 13px;
  line-height: 1;
  z-index: 3;
  pointer-events: none;
}

/* ── txn pill tag (replaces header bar) ── */
.txn-meta {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 0.75rem;
}

.txn-pill {
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 3px 8px;
  border-radius: 3px;
  background: #e4eaf6;
  color: var(--navy);
  white-space: nowrap;
}

/* Amber variant for cards that have a case study */
.txn-pill--cs {
  background: #f5e8cc;
  color: #6b4200;
}

.txn-card-body {
  padding: 1.1rem 1.25rem 1.4rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.txn-logos {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 0.85rem;
  padding-top: 0.8rem;
  padding-bottom: 0.75rem;
  border-top: 1px solid var(--rule);
  min-height: 38px;
}

.txn-logo-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  width: 72px;
  height: 46px;
  background: var(--bg-light);
  border: 1px dashed #b8c8db;
  border-radius: 4px;
  padding: 0 0.25rem;
  flex-shrink: 0;
}

.txn-logo-box svg {
  display: block;
  flex-shrink: 0;
}

.txn-logo-box span {
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--steel);
  text-transform: uppercase;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 64px;
}

.txn-logo-sep {
  font-size: 13px;
  color: #b8c8db;
  flex-shrink: 0;
}

.txn-sector-tag {
  font-size: 9.5px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
  color: var(--steel);
  margin-bottom: 0.35rem;
}

.txn-title {
  font-family: 'Scope One', serif;
  font-size: 17px;
  color: var(--navy);
  line-height: 1.4;
  margin-bottom: 0.6rem;
  flex: 1;
}

.txn-desc {
  font-size: 14px;
  line-height: 1.68;
  color: var(--text-muted);
  margin-bottom: 0.85rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.txn-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 0.6rem;
  border-top: 1px solid var(--rule);
}

.txn-date {
  font-size: 11px;
  color: var(--text-muted);
}

.txn-cs-link {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-weight: 500;
  color: var(--steel);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: color 0.15s;
}

.txn-cs-link span {
  display: inline-block;
  transition: transform 0.2s ease;
}

.txn-cs-link:hover {
  color: var(--navy);
}

.txn-cs-link:hover span {
  transform: translateX(3px);
}

/* ── Info icon on non-case-study clickable cards ── */
.txn-info-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  border: 1.5px solid var(--slate);
  color: var(--slate);
  font-size: 9px;
  font-style: italic;
  font-family: Georgia, serif;
  line-height: 1;
  margin-left: auto;
  opacity: 0.6;
  flex-shrink: 0;
}
.txn-info-icon::before {
  content: 'i';
}
.txn-card--clickable:hover .txn-info-icon {
  opacity: 1;
  border-color: var(--steel);
  color: var(--steel);
}

.experience-no-results {
  text-align: center;
  padding: 3rem 0;
  font-size: 15px;
  color: var(--text-muted);
}

/* ── Case study detail page ── */
.cs-page-header {
  background: var(--navy);
  padding: 4.5rem 100px 3.5rem;
}

.cs-page-header-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.cs-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  margin-bottom: 2rem;
  transition: color 0.15s;
}

.cs-back:hover {
  color: #fff;
}

.cs-page-header h1 {
  font-family: 'Scope One', serif;
  font-size: clamp(28px, 2.8vw, 42px);
  color: #fff;
  line-height: 1.15;
  margin: 0.6rem 0 0;
  max-width: 720px;
}

.cs-page-header .eyebrow--white {
  margin-bottom: 0.25rem;
}

.cs-body {
  background: #fff;
  padding: 4rem 100px 6rem;
}

.cs-body-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 5rem;
  align-items: start;
}

.cs-left {
  position: sticky;
  top: 2rem;
}

.cs-logos-panel {
  background: var(--bg-light);
  border: 1px solid var(--rule);
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.25rem;
}

.cs-logos-panel .exp-logo-box {
  height: 48px;
  min-width: 100px;
  font-size: 13px;
}

.cs-deal-meta {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cs-meta-row {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.cs-meta-label {
  font-size: 9.5px;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  font-weight: 500;
  color: var(--text-muted);
}

.cs-meta-value {
  font-size: 14px;
  color: var(--navy);
  font-weight: 500;
}

.cs-right h2 {
  font-family: 'Scope One', serif;
  font-size: clamp(20px, 2vw, 28px);
  color: var(--navy);
  line-height: 1.25;
  margin-bottom: 1.5rem;
}

.cs-right h3 {
  font-family: 'Scope One', serif;
  font-size: 16px;
  color: var(--navy);
  margin: 2rem 0 0.75rem;
}

.cs-right p {
  font-size: 15px;
  line-height: 1.82;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.cs-right ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.cs-right ul li {
  font-size: 15px;
  line-height: 1.65;
  color: #3d526a;
  padding-left: 1.35rem;
  position: relative;
}

.cs-right ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--steel);
}

.cs-pr-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 500;
  color: var(--steel);
  text-decoration: none;
  border: 1px solid var(--rule);
  border-radius: 4px;
  padding: 0.6rem 1rem;
  margin-top: 1rem;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}

.cs-pr-link:hover {
  background: var(--bg-light);
  border-color: var(--steel);
  color: var(--navy);
}

/* ── Experience page responsive ── */
@media (max-width: 960px) {
  .experience-intro {
    padding: 3rem 2rem 2.5rem;
  }
  .experience-filters {
    padding: 1.5rem 2rem 2rem;
  }
  .experience-filters-inner {
    gap: 1rem;
  }
  .experience-featured {
    clip-path: polygon(0 2rem, 100% 0, 100% 100%, 0 100%);
    margin-top: -2rem;
    padding: 2rem 2rem 3.5rem;
    padding-top: calc(2rem + 2rem);
  }
  .exp-featured-grid {
    grid-template-columns: 1fr;
  }
  .exp-case-img {
    height: 130px;
  }
  .txn-modal-panel {
    padding: 2rem 1.5rem 2.5rem;
    max-height: 85vh;
  }
  .txn-modal-overlay {
    padding: 1rem;
    align-items: flex-end;
  }
  .txn-modal-panel {
    border-radius: 10px 10px 0 0;
    max-width: 100%;
  }
  .experience-results {
    padding: 3rem 2rem 4rem;
  }
  .txn-grid {
    grid-template-columns: 1fr;
  }
  .cs-body-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .cs-left {
    position: static;
  }
  .cs-body {
    padding: 2.5rem 2rem 4rem;
  }
  .cs-page-header {
    padding: 3rem 2rem 2.5rem;
  }
}

/* ═══════════════════════════
   INSIGHT DETAIL PAGES
═══════════════════════════ */

/* ── Shared header ── */
.ins-header {
  background: var(--bg-light);
  padding: 4rem 100px 5rem;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 3.5rem), 0 100%);
}

.ins-header-inner {
  max-width: 860px;
  margin: 0 auto;
}

.ins-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
  color: var(--steel);
  text-decoration: none;
  margin-bottom: 2rem;
  transition: color 0.15s;
}

.ins-back:hover { color: var(--navy); }

.ins-header-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.ins-type-badge {
  font-size: 9.5px;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  font-weight: 600;
  padding: 4px 9px;
  border-radius: 3px;
  white-space: nowrap;
}

/* Badge colour variants — navy/steel on light bg */
.ins-type-badge--news     { background: var(--navy);  color: #fff; }
.ins-type-badge--media    { background: var(--steel); color: #fff; }
.ins-type-badge--article  { background: var(--navy);  color: #fff; }
.ins-type-badge--nl       { background: var(--navy);  color: #fff; }
.ins-type-badge--report   { background: var(--steel); color: #fff; }
.ins-type-badge--pr       { background: var(--navy);  color: #fff; }
.ins-type-badge--ye       { background: var(--navy);  color: #fff; }

.ins-header-date {
  font-size: 12px;
  color: var(--text-muted);
}

.ins-header h1 {
  font-family: 'Scope One', serif;
  font-size: clamp(34px, 3vw, 48px);
  color: var(--navy);
  line-height: 1.2;
  margin: 0 0 0.75rem;
}

.ins-header-subtitle {
  font-size: 16px;
  line-height: 1.6;
  color: var(--steel);
  max-width: 680px;
  margin: 0;
}

.ins-header-author {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 1.25rem;
}

.ins-author-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--text-muted);
}

.ins-author-name {
  font-size: 13px;
  font-weight: 500;
  color: var(--navy);
}

.ins-header-source {
  margin-top: 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.ins-source-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--text-muted);
}

.ins-source-link {
  font-size: 13px;
  font-weight: 500;
  color: var(--steel);
  text-decoration: none;
  border-bottom: 1px solid rgba(77,110,154,0.3);
  transition: color 0.15s, border-color 0.15s;
}

.ins-source-link:hover {
  color: var(--navy);
  border-color: var(--steel);
}

/* ── Shared body ── */
.ins-body {
  background: #fff;
  padding: 4rem 100px 6rem;
}

.ins-body-inner {
  max-width: 860px;
  margin: 0 auto;
}

/* ── PDF download card ── */
.ins-pdf-card {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.1rem 1.5rem;
  border: 1px solid var(--rule);
  border-radius: 6px;
  background: var(--bg-light);
  margin-bottom: 3rem;
  text-decoration: none;
  transition: background 0.15s, border-color 0.15s, box-shadow 0.15s;
}

.ins-pdf-card:hover {
  background: #e8eef8;
  border-color: var(--steel);
  box-shadow: 0 3px 12px rgba(11, 30, 64, 0.07);
}

.ins-pdf-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background: var(--navy);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.ins-pdf-info {
  flex: 1;
  min-width: 0;
}

.ins-pdf-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  font-weight: 500;
  margin-bottom: 0.2rem;
}

.ins-pdf-name {
  font-size: 14px;
  font-weight: 500;
  color: var(--navy);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ins-pdf-dl {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-weight: 500;
  color: var(--steel);
  flex-shrink: 0;
}

/* ── Article / Report copy ── */
.ins-copy h2 {
  font-family: 'Scope One', serif;
  font-size: clamp(18px, 1.8vw, 24px);
  color: var(--navy);
  margin: 2.5rem 0 0.85rem;
  line-height: 1.3;
}

.ins-copy h2:first-child { margin-top: 0; }

.ins-copy p {
  font-size: 15.5px;
  line-height: 1.85;
  color: #3d526a;
  margin-bottom: 1.25rem;
}

.ins-copy p:last-child { margin-bottom: 0; }

.ins-copy blockquote {
  border-left: 3px solid var(--steel);
  margin: 2rem 0;
  padding: 0.5rem 0 0.5rem 1.5rem;
  font-family: 'Scope One', serif;
  font-size: 17px;
  font-style: italic;
  color: var(--navy);
  line-height: 1.55;
}
.ins-copy blockquote p {
  font-family: inherit;
  font-size: inherit;
  font-style: inherit;
  line-height: inherit;
  color: inherit;
  margin: 0 0 0.6rem;
}
.ins-copy blockquote p:last-child { margin-bottom: 0; }

.ins-copy hr {
  border: none;
  border-top: 1px solid var(--rule);
  margin: 2.5rem 0;
}

.ins-copy ul,
.ins-copy ol {
  margin: 0 0 1.25rem 1.4rem;
  padding: 0;
}
.ins-copy li {
  font-size: 15.5px;
  line-height: 1.7;
  color: #3d526a;
  margin-bottom: 0.55rem;
  padding-left: 0.35rem;
}
.ins-copy li::marker {
  color: var(--gold);
}
.ins-copy ul ul,
.ins-copy ol ol {
  margin-top: 0.55rem;
  margin-bottom: 0;
}

/* ── Media / Video ── */
.ins-blurb {
  font-size: 17px;
  line-height: 1.75;
  color: #3d526a;
  margin-bottom: 2.5rem;
  max-width: none;
}

.ins-video-wrap {
  display: block;
  position: relative;
  aspect-ratio: 16 / 9;
  background: var(--navy);
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  margin-bottom: 1.25rem;
}

.ins-video-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.65;
  transition: opacity 0.3s;
}

.ins-video-wrap:hover .ins-video-thumb { opacity: 0.5; }

.ins-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 72px;
  height: 72px;
  background: rgba(255,255,255,0.92);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s, background 0.2s;
}

.ins-video-wrap:hover .ins-play-btn {
  transform: translate(-50%, -50%) scale(1.08);
  background: #fff;
}

.ins-play-btn svg {
  margin-left: 4px; /* optical centering of play triangle */
}

.ins-video-caption {
  font-size: 12px;
  color: var(--text-muted);
  text-align: center;
}

.ins-video-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  color: var(--steel);
  text-decoration: none;
  margin-top: 1rem;
  transition: color 0.15s;
}

.ins-video-link:hover { color: var(--navy); }

/* ── Responsive ── */
@media (max-width: 768px) {
  .ins-header { padding: 3rem 2rem 3.5rem; clip-path: polygon(0 0, 100% 0, 100% calc(100% - 2rem), 0 100%); }
  .ins-body   { padding: 2.5rem 2rem 4rem; }
}


/* ═══════════════════════════
   CONTACT PAGE
═══════════════════════════ */

/* ── Hero / intro ── */
.contact-intro {
  display: grid;
  grid-template-columns: 1fr 0.715fr;
  min-height: 480px;
  background: #fff;
}

.contact-intro-content {
  padding: 5.5rem 3rem 5rem 100px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-intro-content h1 {
  font-family: 'Scope One', serif;
  font-size: clamp(34px, 3vw, 48px);
  color: var(--navy);
  line-height: 1.2;
  margin: 0.5rem 0 1rem;
}

.contact-intro-content > p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 2.25rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  font-size: 14px;
  color: var(--navy);
  line-height: 1.5;
}

.contact-detail svg {
  flex-shrink: 0;
  margin-top: 1px;
  color: var(--steel);
}

.contact-detail a {
  color: var(--navy);
  text-decoration: none;
  border-bottom: 1px solid rgba(11,48,111,0.15);
  transition: color 0.15s, border-color 0.15s;
}

.contact-detail a:hover {
  color: var(--steel);
  border-color: var(--steel);
}

/* ── Image column (mirrors sectors/experience pattern) ── */
.contact-intro-visual {
  position: relative;
  overflow: hidden;
  align-self: stretch;
  min-height: 380px;
}

/* Angled clip on the LEFT edge (original look). */
.contact-intro-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.72;
  filter: brightness(0.9) contrast(1.05);
  clip-path: polygon(8% 0, 100% 0, 100% 100%, 0 100%);
}

.contact-intro-visual svg.contact-map {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  clip-path: polygon(8% 0, 100% 0, 100% 100%, 0 100%);
}

/* The iframe is shifted up (with extra height) so Google's own top-left place
   card is pushed above the visible crop and hidden, while its required
   bottom attribution stays in view. The left diagonal clip is restored. */
.contact-intro-visual iframe.contact-gmap {
  position: absolute;
  left: 0;
  right: 0;
  top: -100px;
  width: 100%;
  height: calc(100% + 100px);
  border: 0;
  clip-path: polygon(8% 0, 100% 0, 100% 100%, 0 100%);
}

/* Branded office card, pinned to the right of the map (clear of the slant). */
.contact-map-card {
  position: absolute;
  top: calc(50% - 40px);   /* track the marker, which shifts up with the iframe offset */
  right: 22px;
  transform: translateY(-50%);
  z-index: 2;
  max-width: 215px;
  background: #fff;
  padding: 1rem 1.15rem;
  border-radius: 4px;
  box-shadow: 0 8px 26px rgba(11, 48, 111, 0.2);
  font-size: 13px;
  line-height: 1.5;
}
.contact-map-card-name {
  font-family: 'Scope One', serif;
  font-weight: 600;
  color: var(--navy);
  margin: 0 0 0.35rem;
}
.contact-map-card address {
  font-style: normal;
  color: var(--text-body);
  margin: 0 0 0.55rem;
}
.contact-map-card a {
  font-size: 12px;
  font-weight: 500;
  color: var(--navy);
  text-decoration: none;
}
.contact-map-card a:hover { text-decoration: underline; }

@media (max-width: 768px) {
  .contact-map-card {
    top: auto;
    bottom: 14px;
    right: 14px;
    left: 14px;
    transform: none;
    max-width: none;
  }
}

/* ── Form section ── */
.contact-form-section {
  background: var(--bg-light);
  padding: 4.5rem 100px 6.5rem;
}

.contact-form-inner {
  max-width: 760px;
  margin: 0 auto;
}

.contact-form-heading {
  font-family: 'Scope One', serif;
  font-size: clamp(22px, 2.2vw, 30px);
  color: var(--navy);
  margin: 0 0 0.4rem;
}

.contact-form-sub {
  font-size: 14.5px;
  color: var(--text-muted);
  margin: 0 0 2.5rem;
  line-height: 1.65;
}

/* ── Intent selector ── */
.contact-intent-q {
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  color: var(--steel);
  margin-bottom: 0.85rem;
}

.contact-intent-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.contact-intent-btn {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.3rem;
  padding: 1.4rem 1.5rem;
  background: #fff;
  border: 1.5px solid var(--rule);
  border-radius: 8px;
  cursor: pointer;
  text-align: left;
  transition: border-color 0.15s, box-shadow 0.15s;
}

.contact-intent-btn:hover {
  border-color: var(--steel);
}

.contact-intent-btn.active {
  border-color: var(--navy);
  box-shadow: 0 0 0 1px var(--navy);
}

.contact-intent-icon {
  width: 34px;
  height: 34px;
  background: var(--bg-light);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.5rem;
  color: var(--steel);
  transition: background 0.15s, color 0.15s;
}

.contact-intent-btn.active .contact-intent-icon {
  background: rgba(11,48,111,0.08);
  color: var(--navy);
}

.contact-intent-btn strong {
  font-size: 14.5px;
  color: var(--navy);
  font-weight: 600;
  display: block;
}

.contact-intent-btn span {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ── Subforms ── */
.contact-subform {
  display: none;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.contact-subform.is-visible {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

/* Intent select */
.form-select {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  padding: 0.65rem 0.9rem;
  border: 1.5px solid var(--rule);
  border-radius: 5px;
  background: #fff;
  color: var(--navy);
  outline: none;
  transition: border-color 0.15s;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%230b306f' stroke-width='1.6' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.9rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

.form-select:focus { border-color: var(--steel); }

/* Placeholder option */
.form-select option[value=""] { color: var(--text-muted); }
.form-select:invalid,
.form-select.unset { color: var(--text-muted); }

/* Intent description line */
.contact-intent-desc {
  font-size: 14px;
  color: var(--text-muted);
  margin: 0.25rem 0 1.5rem;
  padding-top: 0.25rem;
}

/* Shared fields block — hidden until intent chosen when JavaScript is available */
.js .contact-fields-hidden {
  display: none;
}

/* Half-width row (phone only) */
.form-row--half {
  grid-template-columns: 1fr;
  max-width: 50%;
}

/* ── Form fields ── */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1rem;
}

.form-row .form-group { margin-bottom: 0; }

.form-group label {
  font-size: 11.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--navy);
}

.form-optional {
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  font-size: 11px;
  color: var(--text-muted);
}

.form-required {
  color: var(--navy);
  font-weight: 600;
}

.form-group input,
.form-group textarea {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  padding: 0.65rem 0.9rem;
  border: 1.5px solid var(--rule);
  border-radius: 5px;
  background: #fff;
  color: var(--navy);
  outline: none;
  resize: vertical;
  transition: border-color 0.15s;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--steel);
}

.form-group textarea { min-height: 110px; }

/* ── File upload area ── */
.form-upload {
  position: relative;
  border: 1.5px dashed var(--rule);
  border-radius: 8px;
  padding: 1.75rem 1.5rem;
  text-align: center;
  background: #fff;
  margin-bottom: 1.75rem;
  cursor: pointer;
  transition: border-color 0.15s;
}

.form-upload:hover { border-color: var(--steel); }

.form-upload input[type="file"] {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
  width: 100%;
  height: 100%;
}

.form-upload-icon {
  color: var(--steel);
  margin-bottom: 0.6rem;
}

.form-upload strong {
  display: block;
  font-size: 14px;
  color: var(--navy);
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.form-upload small {
  font-size: 12px;
  color: var(--text-muted);
}

.contact-submit {
  padding: 0.85rem 2.5rem;
  font-size: 14px;
  letter-spacing: 0.03em;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .contact-intro { grid-template-columns: 1fr; }
  .contact-intro-visual { min-height: 260px; }
  .contact-intro-visual img,
  .contact-intro-visual iframe.contact-gmap { clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%); }
}

@media (max-width: 768px) {
  .contact-intro-content { padding: 3.5rem 2rem 3rem; }
  .contact-form-section { padding: 3rem 2rem 5rem; }
  .contact-intent-options { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}


/* ═══════════════════════════
   MOBILE-SPECIFIC FIXES ≤599px
═══════════════════════════ */
@media (max-width: 599px) {

  /* ── Footer ── */
  .footer {
    --footer-x: 1.5rem;
  }
  .footer-main {
    padding: 2.25rem var(--footer-x) 2rem;
    grid-template-columns: 1fr;
    gap: 1.75rem;
    text-align: left;
  }
  .footer-nav {
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 1.5rem 2.25rem;
  }
  .footer-contact {
    align-items: center;
    text-align: center;
  }
  .footer-icons {
    justify-content: center;
  }
  .footer-address {
    text-align: center;
  }
  .footer-bottom {
    padding-left: var(--footer-x);
    padding-right: var(--footer-x);
  }

  /* ── Global: remove quote section overlap with intro ── */
  .reach-approach {
    clip-path: none;
    margin-top: 0;
    padding: 3rem 1.5rem;
  }

  /* ── Sectors: remove grid section overlap with intro ── */
  .sectors-section {
    clip-path: none;
    margin-top: 0;
    padding: 2.5rem 1.5rem;
  }

  /* ── About: remove clip overlap so advisory header isn't cut off ── */
  .advisory-section {
    clip-path: none;
    margin-top: 0;
    padding: 4rem 1.5rem;
    border-top: 1px solid var(--rule);
    position: static;
    z-index: auto;
  }

  /* ── About: stack stat cards vertically on small screens ── */
  .about-stats-panel {
    flex-direction: column;
    align-items: center;
    padding: 0 1.5rem 3rem;
  }
  .about-stat-block {
    max-width: 100%;
    width: 100%;
  }

  .insights-filters {
    padding: 1.75rem 1.5rem;
  }

  /* ── Insights: remove archive section overlap with featured cards above ── */
  .insights-archive {
    clip-path: none;
    margin-top: 0;
    padding: 2rem 1.5rem 3rem;
  }

  /* ── Contact: remove diagonal clip from map on mobile ── */
  .contact-intro-visual svg.contact-map {
    clip-path: none;
  }

  /* ── Allow forced non-wrapping spans to wrap freely on mobile ── */
  .nobr { white-space: normal; }

  /* ── Sectors: wrap callout stats so they don't overflow narrow screens ── */
  .sectors-callout {
    flex-wrap: wrap;
    gap: 1.25rem 2rem;
  }
  .sectors-callout-divider {
    display: none;
  }

  .contact-cta {
    padding: 3rem 1.5rem;
  }
}

/* ═══════════════════════════
   ADVISORY PAGES — SHARED
═══════════════════════════ */

/* Page intro — two-column: content left, image right */
.adv-intro { background: var(--white); padding: 0; }

.adv-intro-inner {
  display: grid;
  grid-template-columns: 1fr 0.62fr;
  gap: 0;
  align-items: stretch;
}

.adv-intro-content {
  padding: 4rem 5rem 5.5rem 100px;
}

.adv-intro-content h1 {
  font-size: clamp(34px, 3vw, 48px);
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

.adv-intro-content p {
  font-size: 16px;
  line-height: 1.78;
  color: var(--text-body);
  margin-bottom: 1.1rem;
}

.adv-intro-content p:last-child { margin-bottom: 0; }

.adv-intro-content .btn-row { margin-top: 2.5rem; }

.adv-intro-visual {
  position: relative;
  overflow: hidden;
  background: var(--bg-light);
  clip-path: polygon(8% 0, 100% 0, 100% 100%, 0 100%);
  min-height: 440px;
}

.adv-intro-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.65;
  filter: brightness(0.9) contrast(1.05);
}

/* subtle diagonal line overlay on image panels */
.adv-intro-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -48deg,
    transparent,
    transparent 38px,
    rgba(255,255,255,0.025) 38px,
    rgba(255,255,255,0.025) 39px
  );
  z-index: 1;
}

/* Approach — white, straight top and bottom */
.adv-approach {
  background: var(--white);
  padding: 6rem 100px;
  position: relative;
  z-index: 5;
}

.adv-approach-inner {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: 5rem;
}

.adv-approach-quote { position: relative; padding-top: 0.5rem; }

.adv-approach-quote::before {
  content: '\201C';
  display: block;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 220px;
  line-height: 0.6;
  letter-spacing: -0.04em;
  color: rgba(0,0,0,0.07);
  margin-bottom: -2.75rem;
}

.adv-approach-quote p {
  font-family: 'Scope One', serif;
  font-size: clamp(17px, 1.55vw, 22px);
  color: var(--navy);
  line-height: 1.7;
}

.adv-approach-text .eyebrow { color: var(--steel); }

.adv-approach-text h2 {
  font-size: clamp(22px, 1.9vw, 30px);
  color: var(--navy);
  margin: 0.75rem 0 1.5rem;
  line-height: 1.2;
}

.adv-approach-text p {
  font-size: 15.5px;
  line-height: 1.85;
  color: var(--text-body);
  margin-bottom: 1.25rem;
}

.adv-approach-text p:last-child { margin-bottom: 0; }

/* ═══════════════════════════
   ADVISORY HUB — SERVICE CARDS
═══════════════════════════ */

.adv-cards-section {
  background: var(--bg-light);
  padding: 5.5rem 100px 5rem;
  clip-path: polygon(0 60px, 100% 0, 100% 100%, 0 100%);
  margin-top: -60px;
  position: relative;
  z-index: 4;
}

.adv-cards-header {
  max-width: 900px;
  margin: 0 auto 2.5rem;
  padding-top: 50px;
  text-align: center;
}

.adv-cards-header h2 {
  font-size: clamp(26px, 2.2vw, 35px);
  margin-bottom: 0.75rem;
  line-height: 1.2;
}

.adv-cards-header p {
  font-size: 15.5px;
  line-height: 1.75;
  color: var(--text-body);
  margin-top: 1rem;
}

.adv-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  padding-top: 50px;
}

.adv-card { padding: 3rem 3rem 3rem 0; }

.adv-card:nth-child(even) {
  padding-left: 3rem;
  border-left: 1px solid var(--rule);
}

.adv-card:nth-child(n+3) {
  border-top: 1px solid var(--rule);
  padding-top: 3rem;
}

.adv-card .adv-situation-index {
  display: block;
  margin-bottom: 0.75rem;
}

.adv-card-tag {
  font-size: clamp(20px, 1.6vw, 26px);
  font-weight: 600;
  letter-spacing: normal;
  text-transform: none;
  color: var(--navy);
  display: block;
  margin: 0 0 1rem;
}

.adv-card h3 {
  font-size: 22px;
  color: var(--navy);
  margin-bottom: 1.25rem;
  line-height: 1.25;
}

.adv-card p {
  font-size: 15px;
  line-height: 1.82;
  color: var(--text-body);
  margin-bottom: 2rem;
}

.adv-card-link {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--navy);
  font-weight: 500;
  text-decoration: none;
  transition: opacity 0.2s;
}

.adv-card-link::after {
  content: ' →';
  display: inline-block;
  transition: transform 0.3s ease;
}

.adv-card-link:hover::after { transform: translateX(4px); }

/* Special Situations — centered floating CTA */
.adv-special-footnote {
  padding: 3.5rem 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
  text-align: center;
}

.adv-special-footnote-label {
  font-size: 9px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--text-muted);
  opacity: 0.5;
  margin-bottom: 0.1rem;
}

.adv-special-footnote-name {
  font-size: 15px;
  color: var(--text-body);
}

.adv-special-footnote-link {
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  opacity: 0.65;
  text-decoration: none;
  margin-top: 0.5rem;
  transition: all 0.2s;
}

.adv-special-footnote-link:hover { opacity: 1; color: var(--navy); }

/* ═══════════════════════════
   ADVISORY SUB-PAGES — BODY
═══════════════════════════ */

.adv-body {
  background: var(--white);
  padding: 5rem 100px 5.5rem;
}

.adv-body-inner { max-width: 820px; }

.adv-body h2 {
  font-size: clamp(22px, 1.9vw, 32px);
  color: var(--navy);
  margin-bottom: 1.5rem;
  margin-top: 3rem;
  line-height: 1.2;
}

.adv-body h2:first-child { margin-top: 0; }

.adv-body p {
  font-size: 16px;
  line-height: 1.85;
  color: var(--text-body);
  margin-bottom: 1.4rem;
}

.adv-body p:last-child { margin-bottom: 0; }

/* Global reach section on advisory hub */
.adv-reach {
  background: var(--bg-light);
  padding: 6rem 100px 5.5rem;
  position: relative;
  z-index: 6;
  clip-path: polygon(0 0, 100% 60px, 100% 100%, 0 100%);
  margin-top: -60px;
}

.adv-reach-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: start;
  padding-top: 40px;
}

.adv-reach-left h2 {
  font-size: clamp(20px, 1.9vw, 30px);
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.adv-reach-left .eyebrow { margin-bottom: 1rem; }

.adv-reach-link {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--navy);
  font-weight: 500;
  text-decoration: none;
  margin-top: 0.5rem;
  transition: opacity 0.2s;
}

.adv-reach-link::after {
  content: ' →';
  display: inline-block;
  transition: transform 0.3s ease;
}

.adv-reach-link:hover::after { transform: translateX(4px); }

.adv-reach-right {
  padding-top: 2.1rem;
}

.adv-reach-right p {
  font-size: 15.5px;
  line-height: 1.82;
  color: var(--text-body);
  margin-bottom: 1.25rem;
}

.adv-reach-right p:last-child { margin-bottom: 0; }

/* Capital page sub-sections — side by side columns */
.adv-subsection-wrap {
  background: var(--bg-light);
  clip-path: polygon(0 60px, 100% 0, 100% 100%, 0 100%);
  margin-top: -60px;
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.adv-subsection {
  padding: 5rem 100px;
  border-right: 1px solid var(--rule);
}

.adv-subsection:first-child { padding-top: calc(5rem + 60px); }
.adv-subsection:last-child { border-right: none; }

.adv-subsection-tag {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  display: block;
  margin-bottom: 0.85rem;
}

.adv-subsection h2 {
  font-size: clamp(22px, 2vw, 34px);
  color: var(--navy);
  margin-bottom: 1.1rem;
  line-height: 1.2;
}

.adv-subsection p {
  font-size: 16px;
  line-height: 1.82;
  color: var(--text-body);
  margin-bottom: 1.25rem;
  max-width: 780px;
}

.adv-subsection p:last-child { margin-bottom: 0; }

/* Capital advisory — 2-column Types / Uses layout */
.adv-capital-services {
  background: var(--bg-light);
  clip-path: polygon(0 60px, 100% 0, 100% 100%, 0 100%);
  margin-top: -60px;
  position: relative;
  z-index: 4;
  padding: 0 100px 6rem;
}

.adv-capital-cols-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  padding-top: calc(5rem + 60px);
}

.adv-capital-col-heading {
  font-family: 'Scope One', serif;
  font-size: clamp(20px, 1.8vw, 26px);
  font-weight: 700;
  color: var(--navy);
  padding-bottom: 1.25rem;
  border-bottom: 2px solid var(--navy);
  margin-bottom: 0;
}

.adv-capital-item {
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(11,48,111,0.12);
}

.adv-capital-item:last-child {
  border-bottom: none;
}

.adv-capital-item-title {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.6rem;
  letter-spacing: 0.01em;
}

.adv-capital-item p {
  font-size: 15px;
  line-height: 1.82;
  color: var(--text-body);
  margin-bottom: 0.75rem;
}

.adv-capital-item p:last-child { margin-bottom: 0; }

/* Board advisory representative engagements section */
.adv-board-engagements {
  background: var(--bg-light);
  padding: 6rem 100px 5.5rem;
  clip-path: polygon(0 60px, 100% 0, 100% 100%, 0 100%);
  margin-top: -60px;
  position: relative;
  z-index: 4;
}

.adv-board-engagements-inner {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  padding-top: 60px;
}

.adv-board-engagements-heading {
  padding-top: 0;
}

.adv-board-engagements-heading .eyebrow { margin-bottom: 1rem; }

.adv-board-engagements-heading h2 {
  font-size: clamp(28px, 2.4vw, 40px);
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

.adv-board-engagements-heading p {
  font-size: 15px;
  line-height: 1.82;
  color: var(--text-body);
}

.adv-board-engagements-grid {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 3.5rem;
  align-self: start;
}

.adv-board-list-panel {
  background: transparent;
  padding: 0;
  border-top: 2px solid var(--navy);
  padding-top: 2rem;
}

.adv-board-list-label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--navy);
  opacity: 0.55;
  margin-bottom: 2rem;
}

.adv-board-list-panel ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.adv-board-list-panel li {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-size: 15px;
  line-height: 1.5;
  color: var(--navy);
  padding: 1.1rem 0;
  border-top: 1px solid rgba(11,48,111,0.15);
}

.adv-board-list-panel li:last-child {
  border-bottom: 1px solid rgba(11,48,111,0.15);
}

.adv-board-list-panel li::before {
  content: '';
  display: block;
  width: 4px;
  height: 4px;
  background: var(--navy);
  opacity: 0.4;
  border-radius: 50%;
  flex-shrink: 0;
}

.adv-board-list-panel--navy {
  background: transparent;
}

/* Board advisory — integrated content column */
.adv-board-content {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 0;
  align-self: start;
  max-width: 984px;
}

.adv-board-content-block:first-child {
  padding-right: 4rem;
  border-right: 1px solid var(--rule);
}

.adv-board-content-block:last-child {
  padding-left: 4rem;
}

.adv-board-list-heading {
  font-family: 'Scope One', serif;
  font-size: clamp(24px, 2.2vw, 32px);
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 1rem;
}

.adv-board-content-block {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: none;
}

.adv-board-content-block:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.adv-board-content-block > p {
  font-size: 15px;
  line-height: 1.82;
  color: var(--text-body);
  margin-bottom: 1.5rem;
}

.adv-board-content-block ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.adv-board-content-block li {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-size: 15px;
  line-height: 1.5;
  color: var(--navy);
  padding: 1rem 0;
  border-top: 1px solid rgba(11,48,111,0.12);
}

.adv-board-content-block li:last-child {
  border-bottom: 1px solid rgba(11,48,111,0.12);
}

.adv-board-content-block li::before {
  content: '';
  display: block;
  width: 4px;
  height: 4px;
  background: var(--navy);
  opacity: 0.4;
  border-radius: 50%;
  flex-shrink: 0;
}

/* Acquisition advisory situations section */
.adv-situations {
  background: var(--bg-light);
  padding: 6rem 100px 5.5rem;
  clip-path: polygon(0 60px, 100% 0, 100% 100%, 0 100%);
  margin-top: -60px;
  position: relative;
  z-index: 4;
}

.adv-situations-inner {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-top: 60px;
}

.adv-situations-inner .eyebrow { margin-bottom: 1rem; }

.adv-situations-inner h2 {
  font-size: clamp(28px, 2.4vw, 40px);
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

.adv-situations-lede {
  font-family: 'Scope One', serif;
  font-size: clamp(18px, 1.55vw, 22px);
  line-height: 1.62;
  color: var(--navy);
  margin-bottom: 3rem;
}

.adv-situations-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.adv-situation-card {
  background: transparent;
  padding: 0;
  min-height: 0;
  display: flex;
  flex-direction: column;
}

.adv-situation-card + .adv-situation-card {
  padding-left: 0;
}

.adv-situation-meta {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 2.75rem;
}

.adv-situation-index {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.adv-situation-icon {
  width: 42px;
  height: 42px;
  color: var(--navy);
  opacity: 0.58;
  flex-shrink: 0;
}

.adv-situation-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.35;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.adv-situation-card h3 {
  font-family: 'Scope One', serif;
  font-size: clamp(21px, 1.7vw, 28px);
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 1.25rem;
}

.adv-situation-card p {
  font-size: 15px;
  line-height: 1.82;
  color: var(--text-body);
}

/* Considering a Transaction section */
.adv-considering {
  background: var(--bg-light);
  padding: 6rem 100px 3.6rem;
  position: relative;
  z-index: 3;
  clip-path: polygon(0 60px, 100% 0, 100% 100%, 0 100%);
  margin-top: -60px;
}

.adv-considering-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 5rem;
  padding-top: 60px;
}

.adv-considering-left,
.adv-considering-right {
  padding-top: 0;
}

.adv-considering-eyebrow {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  display: block;
  margin-bottom: 1rem;
}

.adv-considering h2 {
  font-size: clamp(26px, 2.4vw, 40px);
  color: var(--navy);
  margin-bottom: 0.6rem;
  line-height: 1.15;
}

.adv-considering-subtitle {
  font-family: 'Scope One', serif;
  font-size: clamp(16px, 1.45vw, 20px);
  color: var(--navy);
  margin-bottom: 2rem;
  display: block;
  line-height: 1.55;
}

.adv-considering-left p {
  font-size: 15px;
  line-height: 1.82;
  color: var(--text-body);
  margin-bottom: 1.25rem;
}

.adv-considering-left p:last-of-type { margin-bottom: 0; }

.adv-considering-right-label {
  font-size: 10.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  display: block;
  margin-bottom: 1.25rem;
}

.adv-considering-right ul {
  list-style: none;
  padding: 0;
  margin: 0 0 2.5rem;
}

.adv-considering-right ul li {
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-body);
  padding: 1.12rem 0;
  border-bottom: 1px solid var(--rule);
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.adv-considering-right ul li::before {
  content: '';
  display: block;
  width: 4px;
  height: 4px;
  background: var(--navy);
  opacity: 0.35;
  border-radius: 50%;
  flex-shrink: 0;
}

.adv-considering-right ul li:first-child {
  border-top: 1px solid var(--rule);
}

/* Considering — single-column variant (buy-side) */
.adv-considering--single .adv-considering-single-inner {
  padding-top: 60px;
  max-width: 820px;
}

.adv-considering--single h2 {
  margin-bottom: 1.75rem;
}

.adv-considering--single p {
  font-size: 15px;
  line-height: 1.82;
  color: var(--text-body);
  margin-bottom: 1.25rem;
}

.adv-considering--single p:last-child { margin-bottom: 0; }

/* ═══════════════════════════
   ADVISORY PAGES — RESPONSIVE
═══════════════════════════ */

@media (max-width: 1024px) {
  .adv-intro-inner { grid-template-columns: 1fr; }
  .adv-intro-visual { display: none; }
  .adv-intro-content { padding: 3rem; }

  .adv-approach { padding: 4rem 3rem; }
  .adv-approach-inner { grid-template-columns: 1fr; gap: 3rem; padding: 0; }

  .adv-cards-section { clip-path: none; margin-top: 0; padding: 4rem 3rem; }
  .adv-cards-header { padding-top: 0; }
  .adv-cards-grid { grid-template-columns: 1fr 1fr; }

  .adv-subsection-wrap { clip-path: none; margin-top: 0; grid-template-columns: 1fr; }
  .adv-subsection:first-child { padding-top: 4rem; }
  .adv-subsection { border-right: none; border-bottom: 1px solid var(--rule); }
  .adv-subsection:last-child { border-bottom: none; }
  .adv-reach { clip-path: none; margin-top: 0; padding: 4rem 3rem; }
  .adv-reach-inner { grid-template-columns: 1fr; gap: 2.5rem; padding-top: 0; }

  .adv-board-engagements { clip-path: none; margin-top: 0; padding: 4rem 3rem; }
  .adv-board-engagements-inner { grid-template-columns: 1fr; gap: 3rem; padding-top: 0; }
  .adv-board-engagements-grid { grid-template-columns: 1fr; }

  .adv-capital-services { clip-path: none; margin-top: 0; padding: 4rem 3rem 4rem; }
  .adv-capital-services-inner { padding-top: 0; }
  .adv-capital-service { grid-template-columns: 1fr; gap: 1.5rem; }

  .adv-situations { clip-path: none; margin-top: 0; padding: 4rem 3rem; }
  .adv-situations-inner { grid-template-columns: 1fr; gap: 3rem; padding-top: 0; }
  .adv-situations-grid { grid-template-columns: 1fr; gap: 0; }
  .adv-situation-card + .adv-situation-card {
    border-left: none;
    border-top: 1px solid var(--rule);
    padding-left: 0;
    margin-top: 2.75rem;
  }

  .adv-considering { clip-path: none; margin-top: 0; padding: 4rem 3rem; }
  .adv-considering-inner { grid-template-columns: 1fr; gap: 3rem; padding-top: 0; }
}

@media (max-width: 768px) {
  .adv-intro-content { padding: 2.5rem 1.5rem; }
  .adv-approach { padding: 3.5rem 1.5rem; }
  .adv-cards-section { padding: 3rem 1.5rem; }
  .adv-cards-grid { grid-template-columns: 1fr; padding-top: 0; }
  .adv-card:nth-child(even) { border-left: none; padding-left: 0; }
  .adv-card:nth-child(n+2) { border-top: 1px solid var(--rule); padding-top: 2.5rem; }
  .adv-card:nth-child(n+3) { padding-top: 2.5rem; }
  .adv-body { padding: 3rem 1.5rem; }
  .adv-subsection { padding: 3rem 1.5rem; }
  .adv-board-engagements { padding: 3.5rem 1.5rem; }
  .adv-board-list-panel { padding: 2.25rem; }
  .adv-capital-services { padding: 3.5rem 1.5rem 3.5rem; }
  .adv-situations { padding: 3.5rem 1.5rem; }
  .adv-situation-card { padding: 2.25rem 0 0; min-height: 0; }
  .adv-situation-meta { margin-bottom: 2.5rem; }
  .adv-situation-icon { width: 40px; height: 40px; }
  .adv-considering { padding: 3.5rem 1.5rem; }
  .adv-special-footnote {
    padding: 2.5rem 1.5rem;
    gap: 0.45rem;
  }
  .adv-reach { padding: 3.5rem 1.5rem; }
}

/* ═══════════════════════════
   RESPONSIVE CONSOLIDATION PASS
   Tablet/mobile overrides only
═══════════════════════════ */

@media (max-width: 1024px) {
  html,
  body {
    overflow-x: hidden;
  }

  .page {
    max-width: 100%;
  }

  .site-nav {
    padding: 0 2rem;
  }

  .dropdown-menu {
    min-width: 200px;
  }

  .hero,
  .global,
  .why-inner,
  .about-intro-inner,
  .team-intro-inner,
  .global-intro-inner,
  .contact-intro,
  .adv-intro-inner,
  .adv-approach-inner,
  .adv-reach-inner,
  .adv-board-engagements-inner,
  .adv-considering-inner,
  .adv-situations-inner,
  .reach-approach-inner,
  .cs-body-inner {
    grid-template-columns: 1fr;
  }

  .hero-left,
  .services,
  .why-left,
  .why-right,
  .global,
  .experience-intro,
  .experience-featured,
  .experience-featured--flat,
  .experience-filters,
  .experience-results,
  .insights-header,
  .insights-filters,
  .insights-featured,
  .insights-archive,
  .about-intro-content,
  .about-values-inner,
  .about-exp-inner,
  .team-intro-heading,
  .team-intro-left,
  .team-intro-right,
  .team-section,
  .advisory-section,
  .global-intro-content,
  .reach-approach,
  .global-map-section,
  .contact-intro-content,
  .contact-form-section,
  .contact-cta,
  .adv-intro-content,
  .adv-approach,
  .adv-cards-section,
  .adv-body,
  .adv-subsection,
  .adv-reach,
  .adv-board-engagements,
  .adv-capital-services,
  .adv-situations,
  .adv-considering,
  .service-intro-content,
  .service-approach,
  .service-panels,
  .service-process,
  .ins-header,
  .ins-body,
  .cs-page-header,
  .cs-body {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .hero-left h1,
  .global h2,
  .team-intro-heading h1 {
    width: 100%;
    white-space: normal;
  }

  .hero-right,
  .adv-intro-visual,
  .global-intro-visual,
  .contact-intro-visual,
  .sectors-intro-visual {
    min-height: 320px;
  }

  .hero-img,
  .adv-intro-visual img,
  .global-intro-visual img,
  .contact-intro-visual img,
  .sectors-intro-visual img,
  .contact-intro-visual svg.contact-map,
  .contact-intro-visual iframe.contact-gmap {
    clip-path: none;
  }

  .services,
  .why-right,
  .experience-featured,
  .experience-featured--flat,
  .insights-featured,
  .about-values,
  .about-experience,
  .advisory-section,
  .reach-approach,
  .sectors-section,
  .adv-cards-section,
  .adv-subsection-wrap,
  .adv-reach,
  .adv-board-engagements,
  .adv-capital-services,
  .adv-situations,
  .adv-considering {
    clip-path: none;
    margin-top: 0;
  }

  .svc-cols,
  .about-values-inner,
  .about-exp-grid,
  .team-grid,
  .advisory-grid,
  .sectors-grid,
  .insights-featured-grid,
  .insights-archive-grid,
  .exp-featured-grid,
  .txn-grid,
  .adv-cards-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .experience-filters-inner,
  .insights-filters-inner {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
    gap: 1rem;
  }

  .experience-filters-inner .insights-filter-group--search,
  .insights-filters-inner .insights-filter-group--search,
  .insights-filter-group--search {
    grid-column: 1 / -1;
    max-width: none;
  }

  .insights-filter-group select,
  .insights-filter-group input {
    width: 100%;
    min-width: 0;
  }

  .exp-case-logos,
  .txn-logos,
  .txn-modal-logos,
  .cs-modal-logos {
    flex-wrap: wrap;
  }

  .bio-modal-body {
    grid-template-columns: 1fr;
  }

  .bio-modal-body img {
    max-width: 260px;
  }

  .footer {
    --footer-x: 2rem;
  }

  .footer-main {
    padding: 3rem var(--footer-x) 2.5rem;
    gap: 2.25rem;
    grid-template-columns: 160px 1fr 200px;
  }

  .footer-nav {
    gap: 1.5rem;
  }

  .footer-bottom {
    padding-left: var(--footer-x);
    padding-right: var(--footer-x);
  }
}

@media (max-width: 900px) {
  body {
    padding-top: 64px;
  }

  .site-nav {
    height: 64px;
  }

  .nav-hamburger {
    display: flex;
  }

  .nav-links {
    display: none;
  }

  .nav-links.mobile-open {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    max-height: calc(100vh - 64px);
    overflow-y: auto;
    background: var(--white);
    border-bottom: 1px solid var(--rule);
    padding: 1rem 1.5rem 1.5rem;
    gap: 0;
    box-shadow: 0 14px 26px rgba(8, 29, 71, 0.08);
  }

  .nav-links.mobile-open > a,
  .nav-links.mobile-open .nav-label {
    display: block;
    width: 100%;
    padding: 0.8rem 0;
    font-size: 13px;
    letter-spacing: 0.12em;
    color: var(--navy);
    text-align: center;
  }

  .nav-links.mobile-open .nav-cta {
    width: 100%;
    margin-top: 0.75rem;
    text-align: center;
    padding: 0.95rem 1.25rem;
    color: var(--white) !important;
  }

  .nav-links.mobile-open .nav-item.dropdown {
    width: 100%;
  }

  .nav-links.mobile-open .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    border-left: none;
    border-radius: 0;
    min-width: 0;
    width: 100%;
    margin: 0.25rem 0 0.6rem;
    padding-left: 0;
    text-align: center;
  }

  .nav-links.mobile-open .dropdown-menu a {
    white-space: normal;
    text-align: center;
    padding: 0.55rem 0;
    font-size: 12px;
  }
}

@media (max-width: 768px) {
  .hero-left,
  .services,
  .why-left,
  .why-right,
  .global,
  .experience-intro,
  .experience-featured,
  .experience-featured--flat,
  .experience-filters,
  .experience-results,
  .insights-header,
  .insights-filters,
  .insights-featured,
  .insights-archive,
  .about-intro-content,
  .about-values-inner,
  .about-exp-inner,
  .team-intro-heading,
  .team-intro-left,
  .team-intro-right,
  .team-section,
  .advisory-section,
  .global-intro-content,
  .reach-approach,
  .global-map-section,
  .contact-intro-content,
  .contact-form-section,
  .contact-cta,
  .adv-intro-content,
  .adv-approach,
  .adv-cards-section,
  .adv-body,
  .adv-subsection,
  .adv-reach,
  .adv-board-engagements,
  .adv-capital-services,
  .adv-situations,
  .adv-considering,
  .service-intro-content,
  .service-approach,
  .service-panels,
  .service-process,
  .ins-header,
  .ins-body,
  .cs-page-header,
  .cs-body {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .services,
  .experience-featured--flat,
  .about-values-inner,
  .about-exp-inner,
  .team-section,
  .advisory-section,
  .global-map-section,
  .contact-cta {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }

  .svc-cols,
  .about-values-inner,
  .about-exp-grid,
  .team-grid,
  .advisory-grid,
  .sectors-grid,
  .insights-featured-grid,
  .insights-archive-grid,
  .exp-featured-grid,
  .txn-grid,
  .adv-cards-grid,
  .adv-board-engagements-grid,
  .adv-situations-grid,
  .service-panels-grid.cols-2,
  .service-panels-grid.cols-3,
  .process-steps {
    grid-template-columns: 1fr;
  }

  .svc-col,
  .svc-col:nth-child(even),
  .svc-col + .svc-col,
  .adv-card,
  .adv-card:nth-child(even),
  .adv-card:nth-child(n+2),
  .adv-situation-card,
  .adv-situation-card + .adv-situation-card {
    padding-left: 0;
    border-left: none;
  }

  .svc-col:nth-child(n+2),
  .adv-card:nth-child(n+2),
  .adv-situation-card + .adv-situation-card {
    border-top: 1px solid var(--rule);
  }

  .hero-right,
  .adv-intro-visual,
  .global-intro-visual,
  .contact-intro-visual,
  .sectors-intro-visual {
    min-height: 260px;
  }

  .hero-tagline,
  .hero-left .lede,
  .hero-left .lede--secondary,
  .svc-header,
  .global-copy,
  .experience-intro-content p,
  .insights-intro,
  .about-intro p,
  .team-header p,
  .map-intro,
  .contact-intro-content > p,
  .adv-intro-content p,
  .adv-body-inner,
  .adv-situations-lede,
  .adv-considering-subtitle,
  .ins-header-subtitle,
  .ins-blurb {
    max-width: none;
  }

  .experience-results-header,
  .insight-meta,
  .exp-case-meta,
  .txn-meta,
  .txn-footer,
  .ins-header-meta,
  .ins-header-author,
  .ins-header-source,
  .global-stat,
  .reach-link-row,
  .sectors-callout,
  .contact-detail {
    flex-wrap: wrap;
  }

  .experience-results-header {
    gap: 0.5rem;
  }

  .insight-type,
  .exp-case-pill,
  .txn-pill,
  .txn-modal-tag,
  .ins-type-badge {
    white-space: normal;
  }

  .ins-pdf-card {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .ins-pdf-info {
    flex-basis: calc(100% - 56px);
  }

  .ins-pdf-name {
    white-space: normal;
  }

  .ins-pdf-dl {
    width: 100%;
    padding-left: calc(36px + 1.25rem);
  }

  .txn-modal-overlay,
  .bio-modal.active {
    align-items: flex-end;
    padding: 1rem;
  }

  .txn-modal-panel,
  .bio-modal-content {
    width: 100%;
    max-width: 100%;
    max-height: calc(100vh - 2rem);
    border-radius: 12px 12px 0 0;
  }

  #txn-modal.txn-modal-overlay,
  .bio-modal.active {
    align-items: center;
    justify-content: center;
  }

  #txn-modal .txn-modal-panel,
  .bio-modal-content {
    width: calc(100% - 2rem);
    max-width: 560px;
    border-radius: 12px;
  }

  .bio-modal-body {
    padding: 2rem 1.5rem;
  }

  .bio-modal-body img {
    width: min(100%, 260px);
    margin: 1.25rem auto 0;
    justify-self: center;
  }

  .contact-intent-options,
  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-form-inner {
    max-width: none;
  }

  .footer {
    --footer-x: 1.5rem;
  }

  .footer-main {
    padding: 2.5rem var(--footer-x) 2rem;
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: left;
  }

  .footer-nav {
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 1.5rem 2.5rem;
  }

  .footer-contact {
    align-items: center;
    text-align: center;
  }

  .footer-icons {
    justify-content: center;
  }

  .footer-address {
    text-align: center;
  }

  .footer-bottom {
    padding-left: var(--footer-x);
    padding-right: var(--footer-x);
  }
}

@media (max-width: 599px) {
  body {
    padding-top: 60px;
  }

  .site-nav {
    height: 60px;
    padding: 0 1rem;
  }

  .nav-links.mobile-open {
    top: 60px;
    max-height: calc(100vh - 60px);
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .btn,
  .contact-submit {
    width: 100%;
    text-align: center;
  }

  .hero-left,
  .services,
  .why-left,
  .why-right,
  .global,
  .experience-intro,
  .experience-featured,
  .experience-featured--flat,
  .experience-filters,
  .experience-results,
  .insights-header,
  .insights-filters,
  .insights-featured,
  .insights-archive,
  .about-intro-content,
  .about-values-inner,
  .about-exp-inner,
  .team-intro-heading,
  .team-intro-left,
  .team-intro-right,
  .team-section,
  .advisory-section,
  .global-intro-content,
  .reach-approach,
  .global-map-section,
  .contact-intro-content,
  .contact-form-section,
  .contact-cta,
  .adv-intro-content,
  .adv-approach,
  .adv-cards-section,
  .adv-body,
  .adv-subsection,
  .adv-reach,
  .adv-board-engagements,
  .adv-capital-services,
  .adv-situations,
  .adv-considering,
  .service-intro-content,
  .service-approach,
  .service-panels,
  .service-process,
  .ins-header,
  .ins-body,
  .cs-page-header,
  .cs-body,
  .sectors-section {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .hero-left {
    padding-top: 2.75rem;
  }

  .hero-right {
    height: 240px;
    min-height: 240px;
  }

  .services,
  .global,
  .experience-featured--flat,
  .about-values-inner,
  .about-exp-inner,
  .team-section,
  .advisory-section,
  .global-map-section,
  .contact-cta,
  .adv-approach,
  .adv-cards-section,
  .adv-reach,
  .adv-board-engagements,
  .adv-capital-services,
  .adv-situations,
  .adv-considering {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .global {
    row-gap: 1.5rem;
  }

  .insights-featured {
    padding-top: 2.75rem;
  }

  .diff:last-child {
    border-bottom: none;
  }

  .hero-left h1,
  .adv-intro-content h1,
  .global-intro h1,
  .contact-intro-content h1,
  .ins-header h1,
  .cs-page-header h1 {
    font-size: clamp(30px, 10vw, 42px);
  }

  .global h2,
  .why-left h2,
  .svc-header h2,
  .about-exp-header h2,
  .advisory-header h2,
  .adv-situations-inner h2,
  .adv-board-engagements-heading h2,
  .adv-card-tag {
    font-size: clamp(27px, 8vw, 36px);
  }

  .experience-filters-inner,
  .insights-filters-inner {
    grid-template-columns: 1fr;
  }

  .about-stats-panel,
  .intro-stats,
  .sectors-callout,
  .global-stat {
    flex-direction: column;
    align-items: flex-start;
  }

  .about-stat-block,
  .stat-item,
  .stat-item + .stat-item {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
    border-left: none;
  }

  .stat-item + .stat-item {
    border-top: 1px solid var(--rule);
    padding-top: 1.25rem;
    margin-top: 1.25rem;
  }

  .team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
  }

  .team-intro-right {
    clip-path: none;
    padding-top: 1.25rem;
  }

  .member-info h3 {
    font-size: 14px;
  }

  .member-title,
  .advisor-title {
    font-size: 10px;
    letter-spacing: 0.04em;
  }

  .advisory-grid {
    grid-template-columns: 1fr;
    gap: 0;
    border-top: none;
    border-bottom: none;
  }

  .advisor-member + .advisor-member {
    border-top: 1px solid var(--rule);
  }

  .map-box svg,
  .contact-map {
    max-width: 100%;
    height: auto;
  }

  .txn-card-body,
  .exp-case-card-body,
  .insight-card-body,
  .insight-archive-card,
  .sector-card,
  .adv-board-list-panel,
  .cs-logos-panel {
    padding: 1.25rem;
  }

  .txn-logos,
  .exp-case-logos {
    gap: 0.5rem;
  }

  .txn-logo-box,
  .exp-logo-box {
    max-width: 100%;
  }

  .txn-modal-panel {
    padding: 2rem 1.25rem 2.5rem;
  }


  .ins-play-btn {
    width: 58px;
    height: 58px;
  }

  .form-upload {
    padding: 1.25rem;
  }

  .footer {
    --footer-x: 1.25rem;
  }

  .footer-main {
    padding-left: var(--footer-x);
    padding-right: var(--footer-x);
    gap: 1.75rem;
  }

  /* Footer nav on phones: two fixed columns rather than a wrapping flex row,
     so the Experience / Insights group continues directly under About / Team /
     Global instead of dropping onto a row of its own. row-gap is 0 because the
     links already carry their own 0.8rem spacing — that keeps the rhythm
     unbroken across the join. */
  .footer-nav {
    display: grid;
    grid-template-columns: auto auto;
    justify-content: start;
    column-gap: 2.25rem;
    row-gap: 0;
  }
  .footer-nav > .footer-nav-col:nth-child(1) {
    grid-column: 1;
    grid-row: 1 / span 2;
  }
  .footer-nav > .footer-nav-col:nth-child(2) {
    grid-column: 2;
    grid-row: 1;
  }
  .footer-nav > .footer-nav-col:nth-child(3) {
    grid-column: 2;
    grid-row: 2;
  }

  /* On phones the advisory links sit under a bolded "Advisory Services:"
     heading that links to the services page, so each link drops its own
     trailing "Advisory". */
  .footer-nav-col a.footer-nav-heading {
    display: block;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.92);
  }
  .footer-nav-suffix {
    display: none;
  }

  .footer-wordmark {
    height: 16px;
  }

  .footer-bottom {
    padding-left: var(--footer-x);
    padding-right: var(--footer-x);
  }
}

/* ═══════════════════════════
   MOBILE CLEANUP PASS
═══════════════════════════ */

/* ── Tablet (≤1199px): fix services padding regression from desktop reduction ── */
@media (max-width: 1199px) {
  .services {
    padding-top: 2rem;
    padding-bottom: calc(2rem + 30px);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 calc(100% - 40px));
  }
  .why-left {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
  .svc-header {
    max-width: 100%;
  }
  .svc-header .intro {
    margin-bottom: 0;
  }
  .svc-cols {
    margin-top: 0.5rem;
  }
}

/* ── ≤1024px: stack layouts, remove dividers, flatten angles ── */
@media (max-width: 1024px) {
  /* Hide vertical gold divider pseudo-elements on quadrants */
  .svc-col:nth-child(even)::before,
  .svc-col:nth-child(4)::before {
    display: none;
  }

  /* Case studies block — flatten */
  .experience-featured--flat {
    clip-path: none;
    margin-top: 0;
    padding-top: 3rem;
    padding-bottom: 4rem;
  }

  /* Board advisory — stack columns, remove vertical divider */
  .adv-board-content {
    grid-template-columns: 1fr;
    max-width: none;
  }
  .adv-board-content-block:first-child {
    border-right: none;
    padding-right: 0;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--rule);
  }
  .adv-board-content-block:last-child {
    padding-left: 0;
  }

  /* Sellside considering — stack, remove vertical divider */
  .adv-considering-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  /* About principles — tighten at tablet */
  .about-principles-inner {
    padding: 4rem 3rem 4.5rem;
  }
  .about-principles-grid {
    gap: 3.5rem;
  }

  /* Capital advisory — reduce column gap at tablet */
  .adv-capital-cols-inner {
    gap: 3rem;
  }
  .adv-capital-services {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}

/* ── ≤768px: tighten padding, clean dividers ── */
@media (max-width: 768px) {
  /* Vertical dividers hidden when stacked */
  .svc-col:nth-child(even)::before,
  .svc-col:nth-child(4)::before {
    display: none;
  }

  /* Why Crosbie — compact padding */
  .why-left {
    padding-top: 2.5rem;
    padding-bottom: 2rem;
  }
  .why-right {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
    padding-top: 5rem;
  }

  /* Case studies — flat, sensible padding */
  .experience-featured--flat {
    clip-path: none;
    margin-top: 0;
    padding-top: 2.5rem;
    padding-bottom: 3rem;
  }

  /* Contact CTA — reduce 7rem to something sensible */
  .contact-cta {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }

  /* Global stat — stack vertically */
  .global-stat {
    flex-direction: column;
    gap: 0.5rem;
  }
}

/* ── ≤599px: small screen cleanup ── */
@media (max-width: 599px) {
  /* Override old conflicting clip-path on services */
  .services {
    clip-path: none;
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  /* Why Crosbie — compact */
  .why-left {
    padding-top: 2rem;
    padding-bottom: 1.5rem;
  }

  /* Remove gold horizontal divider between stacked quadrants — use plain rule */
  .svc-col:nth-child(n+2) {
    border-top: 1px solid var(--rule);
  }

  /* Compact contact CTA */
  .contact-cta {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  /* Advisory board content — already stacked, clean borders */
  .adv-board-content-block:first-child {
    margin-bottom: 0;
  }

  /* Global map section — reduce space below title */
  .global-map-section h2 {
    margin-bottom: 0.4rem;
  }

  /* Case studies — enough bottom padding so last card isn't clipped */
  .experience-featured,
  .experience-featured--flat {
    padding-bottom: 5rem;
  }
  .experience-featured {
    padding-bottom: 2.5rem;
  }
  .experience-results {
    padding-bottom: 2rem;
  }

  /* Index page — spacing after case studies block and For Business Owners panel */
  .experience-featured--flat {
    margin-bottom: 2rem;
  }
  .why-right {
    margin-bottom: 2rem;
  }

  /* First quadrant — reduce top padding */
  .svc-col:first-child {
    padding-top: 0.875rem;
  }

  /* services.php — spacing between intro and cards */
  .adv-intro-content {
    padding-bottom: 1.5625rem;
  }
  .adv-cards-section {
    padding-top: 1.125rem;
    padding-bottom: 1.5rem;
  }

  /* services.php — tighten gap between Our Expertise and CTA */
  .about-exp-inner {
    padding-bottom: 1.5rem;
  }
  .about-experience--white + .contact-cta {
    padding-top: 1.5rem;
  }

  /* Prevent iOS Safari auto-zoom on form inputs/selects (requires font-size >= 16px) */
  .form-select,
  .form-group input,
  .form-group textarea {
    font-size: 16px;
  }

  /* Board advisory — mobile cleanup */
  .adv-board-engagements {
    padding-top: 3rem;
  }
  /* gap after "Sophisticated..." h2 — reduce by 50% */
  .adv-board-engagements-inner {
    gap: 1.5rem;
  }
  .adv-board-engagements-heading h2 {
    margin-bottom: 0.75rem;
  }
  /* About — reduce gap between intro content and stats panel */
  .about-intro-content {
    padding-bottom: 1.5rem !important;
  }
  /* Stats panel — full width, no angled clip */
  .about-stats-panel {
    clip-path: none;
    padding: 1.5rem 1.25rem;
    gap: 0;
  }
  .about-stat-block:first-child {
    border-top: none;
  }
  /* Reduce gap between stats and values; remove gold card HRs */
  .about-values-inner {
    padding-top: 1.5rem;
  }
  .about-values-card {
    border-top: none;
    padding-top: 1.375rem;
  }

  /* About principles — stack on mobile, reduce top padding */
  .about-principles-inner {
    padding: 1.125rem 1.25rem 3rem;
  }
  .about-principles-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .about-principles-quote::before {
    font-size: 110px;
    margin-bottom: -1.5rem;
  }

  /* Team + global quote marks — reduce to 110px on mobile */
  .team-intro-quote::before {
    font-size: 110px;
    margin-bottom: -1.5rem;
  }
  .reach-approach-pullquote::before {
    font-size: 110px;
    margin-bottom: -1.5rem;
  }

  /* restore top divider on first bullet in both columns */
  .adv-board-content-block li:first-child {
    border-top: 1px solid var(--rule);
    padding-top: 0.9rem;
  }
  /* remove border-bottom on last bullet; reduce gap after by 50% */
  .adv-board-content-block li:last-child {
    border-bottom: none;
    padding-bottom: 0.5rem;
  }
  /* remove HR + reduce gap before "Engagement Context" by 50% */
  .adv-board-content-block:first-child {
    border-bottom: none;
    padding-bottom: 0;
  }
  .adv-board-content-block:last-child {
    border-top: none;
    margin-top: 1.75rem;
  }

  /* Sell-side — remove divider + reduce padding after last bullet by 25% */
  .adv-considering-right ul {
    margin-bottom: 0;
  }
  .adv-considering-right ul li:last-child {
    border-bottom: none;
    padding-bottom: 0.84rem;
  }

  /* Buy-side — align blue block top padding with other service pages */
  .adv-considering--single .adv-considering-single-inner {
    padding-top: 0;
  }

  /* Capital advisory — stack columns, align blue block padding */
  .adv-capital-cols-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding-top: 0;
  }
  .adv-capital-col + .adv-capital-col {
    padding-top: 0;
  }
  .adv-capital-services {
    padding-bottom: 3rem;
  }
}

@media (max-width: 768px) {
  /* Global map — reduce space after title */
  .global-map-section {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }
  .global-map-section h2 {
    margin-bottom: 0.4rem;
  }

  /* Case study modal — stack columns, reduce padding */
  .cs-overlay { padding: 1.5rem 1rem; }
  .cs-main-grid { grid-template-columns: 1fr; }
  .cs-tombstone-col { border-right: none; border-bottom: 1px solid var(--rule); padding: 2rem 1.75rem; flex-direction: row; flex-wrap: wrap; justify-content: center; gap: 1.5rem; }
  .cs-details-col { padding: 1.75rem; }
}

/* ══════════════════════════════════════════════════════════════════
   WordPress additions (not in static build)
   Contact form status messages — rendered after submission redirect.
   ══════════════════════════════════════════════════════════════════ */
.contact-form-message {
  margin: 0 0 28px;
  padding: 14px 18px;
  font-size: 14px;
  line-height: 1.5;
  border-left: 3px solid var(--navy);
  background: var(--blue-tint);
  color: var(--text-dark);
}
.contact-form-message--error {
  border-left-color: #a33;
  background: #f7e9e9;
}

/* Party logos: the static build only ever showed placeholder SVGs, so real
   <img> logos (imported into the media library) need to be constrained to the
   logo box. Aspect ratio is preserved; the box clips/centers. */
.txn-logo-box img,
.exp-logo-box img {
  display: block;
  max-width: 100%;
  object-fit: contain;
}
.txn-logo-box img { max-height: 26px; }
.txn-modal-logos .txn-logo-box img { max-height: 36px; }
.exp-logo-box img { max-height: 34px; }

/* When a real logo is present, drop the placeholder box chrome and caption and
   let the mark use the box (the placeholder treatment is kept otherwise). */
.txn-logo-box--has-logo,
.exp-logo-box--has-logo {
  background: none;
  border: none;
  padding: 0;
}
.txn-logo-box--has-logo img { max-height: 38px; max-width: 90px; }
/* Hug the logo width on the cards (the modal keeps its own min-width). */
.txn-logo-box--has-logo { width: auto; }
.txn-modal-logos .txn-logo-box--has-logo img { max-height: 45px; }
.exp-logo-box--has-logo img { max-height: 46px; max-width: 100px; }
/* Hug the logo width so narrow logos don't sit in a wide box with extra
   space before the arrow. */
.exp-logo-box--has-logo { width: auto; }

/* Phones: shrink featured-card logos so a 3-party row fits on one line
   instead of the last logo wrapping. */
@media (max-width: 600px) {
  .exp-case-logos { gap: 0.4rem; flex-wrap: nowrap; }
  .exp-logo-box img { max-height: 36px; }
  .exp-logo-box--has-logo img { max-width: 62px; max-height: 36px; }
  .exp-logo-sep { font-size: 13px; }
}

/* Case-study tombstone logos (client + counterparties) — enlarged. */
.cs-ts-logo-box {
  width: 170px;
  height: 110px;
}
.cs-ts-logo-box svg { width: 80px; }
/* Fit the logo inside a fixed-height box (centred by the flexbox) so every
   logo occupies the same vertical slot regardless of its own aspect ratio or
   baked-in whitespace — keeps the vertical rhythm even. */
.cs-ts-logo-box img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.cs-ts-logo-box--has-logo {
  background: none;
  border: none;
}

/* Card body layout: the title used flex:1 to push the logos to the bottom,
   but with a description now under every title that opened a gap between the
   header and the copy. Let title + description sit together at the top and
   pin the logo row to the bottom instead. */
.txn-title,
.exp-case-title {
  flex: 0 0 auto;
}
.txn-logos,
.exp-case-logos {
  margin-top: auto;
}

/* Audit view: every service type as a pill (all caps) on one wrapping row,
   then all sectors listed below, comma-separated, sentence case. */
.txn-meta,
.exp-case-meta {
  flex-wrap: wrap;
  row-gap: 5px;
}
.txn-sector-list {
  font-size: 12.5px;
  line-height: 1.55;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.exp-case-sector {
  text-transform: none;
  font-size: 13px;
  letter-spacing: 0;
  color: var(--gold);
}

/* Transaction popup: service tags row, then sectors on a line below (mirrors
   the card audit view). Overrides the meta row's flex so the two stack. */
.txn-modal-meta {
  display: block;
}
.txn-modal-service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}
.txn-modal-sector-list {
  font-size: 12px;
  line-height: 1.55;
  color: var(--gold);
  margin: 0;
}

/* Case-study popup: keep the service-type pill on its row, push the sector
   list onto a new line beneath it. */
.cs-header-meta {
  flex-wrap: wrap;
}
.cs-header-meta .cs-sector-tag {
  flex-basis: 100%;
  color: var(--gold);
}

/* Clickable insight-card titles inherit their look, gold on hover. */
.insight-title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.15s;
}
.insight-title a:hover {
  color: var(--gold);
}

/* Inline media embed (oEmbed iframe) — responsive 16:9. */
.ins-video-embed {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  margin: 0 0 1rem;
  border-radius: 6px;
  overflow: hidden;
  background: #000;
}
.ins-video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.ins-video-player {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  margin: 0 0 1rem;
  border-radius: 8px;
  background: #000;
}

/* Case-study body links. Inline (within a sentence): subtle branded underline.
   Standalone (a link alone on its own line): the "View Case Study" CTA look —
   uppercase, no underline, with an arrow that slides on hover. */
.cs-overview a {
  color: var(--navy);
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-color: rgba(11,48,111,0.35);
  transition: color 0.15s, text-decoration-color 0.15s;
}
.cs-overview a:hover {
  color: var(--gold);
  text-decoration-color: var(--gold);
}
.cs-overview p > a:only-child {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 0.25rem;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--steel);
}
.cs-overview p > a:only-child::after {
  content: "\2192";
  display: inline-block;
  transition: transform 0.2s ease;
}
.cs-overview p > a:only-child:hover {
  color: var(--navy);
  text-decoration: none;
}
.cs-overview p > a:only-child:hover::after {
  transform: translateX(4px);
}

/* Bio modal: biography is now rich text (multi-paragraph). */
#bioModalBio p {
  margin: 0 0 1em;
}
#bioModalBio p:last-child {
  margin-bottom: 0;
}

/* Bio modal: 20% wider on desktop; fix right padding — the original
   40% + 60% columns plus the 2rem gap exceeded 100%, pushing the text
   column over the right padding. 1fr absorbs the gap so the right edge
   matches the 3rem padding beside the photo. */
@media (min-width: 1025px) {
  .bio-modal-content {
    max-width: 840px;
  }
  .bio-modal-body {
    grid-template-columns: 40% minmax(0, 1fr);
  }
}

/* Case study modal: overview is rich text (multi-paragraph, no bullets). */
.cs-overview p {
  margin: 0 0 1.1em;
}
.cs-overview p:last-child {
  margin-bottom: 0;
}

/* Footer: legal link under the copyright — quieter than the copyright. */
.footer-legal {
  margin-top: 0.45rem !important;
  font-size: 11px;
}
.footer-legal a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer-legal a:hover {
  color: rgba(255, 255, 255, 0.6);
}

/* Regulatory disclosure block — sits ABOVE the footer rule (full width).
   Content is admin-editable and may run to several paragraphs, so the
   type styling lives on the child <p> rather than the wrapper. */
.footer-disclosure {
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  padding: 0.5rem var(--footer-x) 1.75rem;
  text-align: center;
}
.footer-emd-note {
  max-width: none;          /* full width — short copy sits on one line */
  font-size: 11px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.55);
}
.footer-emd-note p {
  margin: 0 0 0.45rem;
}
.footer-emd-note p:last-child {
  margin-bottom: 0.2rem;
}
.footer-emd-note a {
  color: rgba(255, 255, 255, 0.62);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.2s ease;
}
.footer-emd-note a:hover {
  color: rgba(255, 255, 255, 0.9);
}

/* ── Legal page (page-templates/legal.php) ── */
.legal-intro {
  background: var(--white);
  padding: 4.5rem 2rem 0;
}
.legal-intro-inner {
  max-width: 860px;
  margin: 0 auto;
}
.legal-intro h1 {
  font-size: clamp(24px, 2.8vw, 34px);
  line-height: 1.3;
  margin-top: 0.85rem;
  max-width: 760px;
}
.legal-body {
  background: var(--white);
  padding: 1rem 2rem 5.5rem;
}
.legal-body-inner {
  max-width: 860px;
  margin: 0 auto;
}
.legal-body-inner h2 {
  font-size: 22px;
  margin: 3rem 0 1.1rem;
  padding-top: 2.25rem;
  border-top: 1px solid var(--rule);
}
.legal-body-inner h3 {
  font-size: 16.5px;
  margin: 1.9rem 0 0.55rem;
}
.legal-body-inner p {
  font-size: 14.5px;
  line-height: 1.85;
  color: var(--text-body);
  margin: 0 0 1.05em;
}
.legal-body-inner ul {
  margin: 0 0 1.25em;
  padding-left: 1.3rem;
}
.legal-body-inner li {
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--text-body);
  margin-bottom: 0.4em;
}
.legal-body-inner li::marker {
  color: var(--gold);
}
@media (max-width: 599px) {
  .legal-intro {
    padding: 3rem 1.5rem 0;
  }
  .legal-body {
    padding: 0.75rem 1.5rem 4rem;
  }
}
