/* =========================================================================
   Iceberg Public Affairs — Brand Stylesheet
   Palette: Primary #004aad · White #ffffff · Black #000000
   Type:    Source Serif 4 (display) + Inter (body)
   ========================================================================= */

:root {
  --blue:        #004aad;
  --blue-700:    #003a87;
  --blue-800:    #002a63;
  --blue-300:    #6fa3e0;
  --blue-100:    #d8e6fa;
  --blue-50:     #eef4fc;

  --ink:         #0b1b34;   /* near-black navy for headings/body */
  --ink-2:       #43536e;   /* muted body text */
  --ink-3:       #5a6880;   /* captions/eyebrows — darkened for WCAG AA (4.5:1) on white */

  --black:       #000000;
  --white:       #ffffff;

  --bg:          #ffffff;
  --bg-soft:     #f5f8fd;
  --bg-navy:     #06142c;   /* dark sections / footer */
  --line:        #e3e9f2;
  --line-strong: #cdd8e8;

  --container:   1180px;
  --radius:      14px;
  --radius-sm:   10px;
  --shadow-sm:   0 1px 2px rgba(11,27,52,.06), 0 1px 3px rgba(11,27,52,.05);
  --shadow-md:   0 10px 30px -12px rgba(11,27,52,.22);
  --shadow-lg:   0 30px 60px -24px rgba(6,20,44,.35);

  --serif: "Source Serif 4", Georgia, "Times New Roman", serif;
  --sans:  "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ----------------------------------------------------------------- Reset */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-2);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: var(--blue); text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--blue-700); }
ul { list-style: none; padding: 0; }
button { font-family: inherit; cursor: pointer; }
:focus-visible { outline: 3px solid var(--blue-300); outline-offset: 2px; border-radius: 4px; }

/* ------------------------------------------------------------ Typography */
h1, h2, h3, h4 {
  font-family: var(--serif);
  color: var(--ink);
  line-height: 1.12;
  font-weight: 600;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.4rem, 1.6rem + 3.4vw, 4.1rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.9rem, 1.4rem + 2.1vw, 2.9rem); }
h3 { font-size: clamp(1.25rem, 1.1rem + 0.7vw, 1.55rem); }
h4 { font-size: 1.12rem; }
p { margin: 0 0 1rem; }
strong { color: var(--ink); font-weight: 600; }

.lead { font-size: clamp(1.08rem, 1rem + .4vw, 1.3rem); line-height: 1.6; color: var(--ink-2); }
.eyebrow {
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: var(--sans); font-size: .78rem; font-weight: 600;
  letter-spacing: .16em; text-transform: uppercase; color: var(--blue);
  margin-bottom: 1.1rem;
}
.eyebrow::before {
  content: ""; width: 26px; height: 2px; background: var(--blue); display: inline-block;
}
.eyebrow--center { justify-content: center; }

/* -------------------------------------------------------------- Layout */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 24px; }
.section { padding: clamp(48px, 3.5vw + 20px, 84px) 0; }
.section--soft { background: var(--bg-soft); }
.section--tight { padding-top: clamp(40px, 4vw, 72px); }

.section-head { max-width: 720px; margin-bottom: 40px; }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head p { color: var(--ink-2); font-size: 1.08rem; margin-top: .9rem; }

.grid { display: grid; gap: 28px; }
.cols-2 { grid-template-columns: repeat(2, 1fr); }
.cols-3 { grid-template-columns: repeat(3, 1fr); }
.split { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(40px, 5vw, 84px); align-items: center; }

/* -------------------------------------------------------------- Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font-family: var(--sans); font-weight: 600; font-size: .98rem; line-height: 1;
  padding: 15px 26px; border-radius: 999px; border: 1.5px solid transparent;
  cursor: pointer; transition: all .22s var(--ease); white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; transition: transform .22s var(--ease); }
.btn:hover svg { transform: translateX(3px); }
.btn-primary { background: var(--blue); color: #fff; box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--blue-700); color: #fff; transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-outline { background: transparent; color: var(--ink); border-color: var(--line-strong); }
.btn-outline:hover { border-color: var(--blue); color: var(--blue); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--blue); padding: 8px 0; font-weight: 600; }
.btn-ghost:hover { color: var(--blue-700); }
.btn-white { background: #fff; color: var(--blue); }
.btn-white:hover { background: var(--blue-50); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-on-navy-outline { background: transparent; color: #fff; border-color: rgba(255,255,255,.4); }
.btn-on-navy-outline:hover { border-color: #fff; background: rgba(255,255,255,.08); color:#fff; }
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }

/* ----------------------------------------------------------- Brand logo */
.brand { display: inline-flex; align-items: center; }
.brand-logo { height: 52px; width: auto; display: block; }
.brand-logo--footer { height: 56px; }

/* --------------------------------------------------------------- Header */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.85); backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .25s var(--ease), background .25s var(--ease);
}
.site-header.scrolled { box-shadow: 0 6px 24px -16px rgba(11,27,52,.4); }
.nav { display: flex; align-items: center; justify-content: space-between; height: 76px; gap: 24px; }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  font-size: .97rem; font-weight: 500; color: var(--ink-2); padding: 9px 14px; border-radius: 8px;
  transition: color .18s var(--ease), background .18s var(--ease);
}
.nav-links a:hover { color: var(--blue); background: var(--blue-50); }
.nav-links a.active { color: var(--blue); font-weight: 600; }
.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-toggle {
  display: none; width: 44px; height: 44px; border: 1px solid var(--line-strong);
  border-radius: 10px; background: #fff; flex-direction: column; align-items: center;
  justify-content: center; gap: 5px;
}
.nav-toggle span { width: 20px; height: 2px; background: var(--ink); transition: all .25s var(--ease); border-radius: 2px; }
.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* -------------------------------------------------------------- Hero */
.hero { position: relative; padding: clamp(56px, 5vw, 104px) 0 clamp(60px, 5vw, 110px); overflow: hidden; }
.hero h1 { color: var(--ink); }
.hero h1 .accent { color: var(--blue); }
.hero .lead { margin: 1.4rem 0 2rem; max-width: 33ch; }
.hero-cta { margin-bottom: 2.2rem; }

/* ------------------------------------------------------- Trust / logos */
.logo-wall { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; align-items: stretch; }
.logo-wall.is-page { grid-template-columns: repeat(4, 1fr); gap: 22px; }
.logo-cell {
  display: flex; align-items: center; justify-content: center;
  /* Per-cell override: add style="--cell-bg:#0b1b34" on a .logo-cell to give a
     dark backdrop to clients whose logo is white/light (otherwise invisible). */
  background: var(--cell-bg, var(--bg-soft)); border: 1px solid var(--line); border-radius: 12px;
  padding: 18px; min-height: 96px; transition: transform .22s var(--ease), box-shadow .22s var(--ease), border-color .22s var(--ease);
}
.logo-cell:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--line-strong); }
.logo-cell img { max-height: 56px; width: auto; object-fit: contain; }
.logo-wall.is-page .logo-cell { min-height: 140px; }
.logo-wall.is-page .logo-cell img { max-height: 92px; }

/* --------------------------------------------------------------- Cards */
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 32px; transition: transform .24s var(--ease), box-shadow .24s var(--ease), border-color .24s var(--ease);
  height: 100%;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--line-strong); }
.card h3 { margin-bottom: .55rem; }
.card p { font-size: .98rem; margin-bottom: 0; }
.card-icon {
  width: 52px; height: 52px; border-radius: 13px; display: grid; place-items: center;
  background: var(--blue-50); color: var(--blue); margin-bottom: 20px;
}
.card-icon svg { width: 26px; height: 26px; }
.card-link { display: inline-flex; align-items: center; gap: 6px; margin-top: 18px; font-weight: 600; font-size: .95rem; }
.card-link svg { width: 16px; height: 16px; transition: transform .2s var(--ease); }
.card-link:hover svg { transform: translateX(3px); }

/* Pillar (large two-up feature) */
.pillar { position: relative; background:#fff; border:1px solid var(--line); border-radius: 18px; padding: 40px; overflow:hidden; height:100%; }
.pillar::before { content:""; position:absolute; left:0; top:0; bottom:0; width:4px; background: var(--blue); }
.pillar .card-icon { width: 58px; height: 58px; }
.pillar h3 { font-size: 1.5rem; margin-bottom: .7rem; }
.pillar-list { margin-top: 22px; display:grid; gap: 11px; }
.pillar-list li { display:flex; gap:11px; align-items:flex-start; font-size: .98rem; color: var(--ink-2); }
.pillar-list svg { width:19px; height:19px; color: var(--blue); flex:none; margin-top:3px; }

/* ------------------------------------------------------ Approach steps */
.steps { counter-reset: step; display: grid; gap: 22px; }
.step { display: grid; grid-template-columns: 56px 1fr; gap: 22px; align-items: start; padding: 26px; background:#fff; border:1px solid var(--line); border-radius: var(--radius); }
.step:hover { border-color: var(--line-strong); box-shadow: var(--shadow-sm); }
.step-num { counter-increment: step; width: 56px; height:56px; border-radius: 50%; background: var(--blue-50); color: var(--blue); display:grid; place-items:center; font-family: var(--serif); font-weight: 600; font-size: 1.5rem; }
.step-num::before { content: counter(step, decimal-leading-zero); }
.step h3 { font-size: 1.2rem; margin-bottom: .35rem; }
.step p { margin: 0; font-size: .98rem; }

/* -------------------------------------------------- Value / list items */
.value-list { display:grid; gap: 18px; }
.value-item { display:flex; gap:16px; align-items:flex-start; }
.value-item .tick { width: 30px; height:30px; border-radius: 8px; background: var(--blue-50); color: var(--blue); display:grid; place-items:center; flex:none; }
.value-item .tick svg { width:18px; height:18px; }
.value-item h4 { margin-bottom: 3px; font-family: var(--sans); font-size: 1.04rem; }
.value-item p { font-size: .96rem; margin:0; }

/* ------------------------------------------------------------ Insights */
.post-card { display:flex; flex-direction:column; background:#fff; border:1px solid var(--line); border-radius: var(--radius); overflow:hidden; height:100%; transition: transform .24s var(--ease), box-shadow .24s var(--ease), border-color .24s var(--ease); }
.post-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--line-strong); }
.post-thumb { aspect-ratio: 16/9; background: linear-gradient(150deg, var(--blue) 0%, var(--blue-800) 120%); position:relative; overflow:hidden; }
.post-thumb svg { position:absolute; inset:0; width:100%; height:100%; opacity:.9; }
.post-body { padding: 26px 26px 28px; display:flex; flex-direction:column; flex:1; }
.post-tag { font-size:.74rem; font-weight:700; letter-spacing:.12em; text-transform:uppercase; color: var(--blue); margin-bottom: 12px; }
.post-card h3 { font-size: 1.24rem; margin-bottom:.55rem; }
.post-card p { font-size:.96rem; flex:1; }
.post-meta { margin-top:18px; display:flex; gap:14px; align-items:center; font-size:.84rem; color: var(--ink-3); }
.post-meta .dot { width:3px;height:3px;border-radius:50%;background: var(--line-strong); }

/* ----------------------------------------------------------- CTA band */
.cta-band { position: relative; overflow: hidden; background: linear-gradient(120deg, var(--blue-800), var(--blue) 120%); color:#fff; border-radius: 24px; padding: clamp(40px, 5vw, 72px); text-align:center; }
.cta-band::after { content:""; position:absolute; inset:0; background: radial-gradient(600px 300px at 85% -20%, rgba(255,255,255,.12), transparent 60%); pointer-events:none; }
.cta-band h2 { color:#fff; max-width: 18ch; margin-inline:auto; }
.cta-band p { color: #cfe0f7; max-width: 52ch; margin: 1rem auto 2rem; font-size: 1.1rem; }
.cta-band .btn-row { justify-content:center; position:relative; z-index:1; }

/* --------------------------------------------------------------- Forms */
.form-card { background:#fff; border:1px solid var(--line); border-radius: 18px; padding: clamp(26px, 3vw, 42px); box-shadow: var(--shadow-md); }
.field { margin-bottom: 18px; }
.field label { display:block; font-size:.88rem; font-weight:600; color: var(--ink); margin-bottom: 7px; }
.field .req { color: var(--blue); }
.field input, .field select, .field textarea {
  width:100%; font-family: var(--sans); font-size: 1rem; color: var(--ink);
  padding: 13px 15px; border: 1.5px solid var(--line-strong); border-radius: 10px; background:#fff;
  transition: border-color .18s var(--ease), box-shadow .18s var(--ease);
}
.field input::placeholder, .field textarea::placeholder { color: #98a6bd; }
.field input:focus, .field select:focus, .field textarea:focus { outline:none; border-color: var(--blue); box-shadow: 0 0 0 4px var(--blue-50); }
.field textarea { resize: vertical; min-height: 130px; }
.field-row { display:grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-note { font-size:.82rem; color: var(--ink-3); margin-top: 6px; }

/* Contact info list */
.contact-list { display:grid; gap: 24px; }
.contact-item { display:flex; gap:16px; align-items:flex-start; }
.contact-item .ic { width:46px;height:46px;border-radius:12px;background:var(--blue-50);color:var(--blue);display:grid;place-items:center;flex:none; }
.contact-item .ic svg { width:22px;height:22px; }
.contact-item h4 { font-family:var(--sans); font-size:1rem; margin-bottom:2px; }
.contact-item p, .contact-item a { font-size:.98rem; margin:0; color: var(--ink-2); }

/* ------------------------------------------------------- Page header */
.page-hero { padding: clamp(44px, 4.5vw, 76px) 0 clamp(32px,3.5vw,52px); background:
   radial-gradient(800px 360px at 90% -30%, var(--blue-50), transparent 60%); border-bottom:1px solid var(--line); }
.page-hero .lead { max-width: 56ch; margin-top: 1.1rem; }
.crumbs { font-size:.85rem; color: var(--ink-3); margin-bottom: 1.2rem; }
.crumbs a { color: var(--ink-3); } .crumbs a:hover { color: var(--blue); }

.footer-badge { height:30px; width:auto; opacity:.9; margin-right:16px; flex:0 0 auto; }

/* prose */
.prose { max-width: 740px; }
.prose p { color: var(--ink-2); font-size: 1.07rem; line-height: 1.75; }
.prose > h2 { margin: 2.4rem 0 .8rem; }
.prose > h3 { margin: 1.7rem 0 .5rem; font-size: 1.3rem; }
.prose a { text-decoration: underline; text-underline-offset: 2px; text-decoration-thickness: 1px; text-decoration-color: var(--blue-300); }
.prose a:hover { text-decoration-color: var(--blue); }
.prose strong { color: var(--ink); }
.prose code { font-family: ui-monospace, "SFMono-Regular", Menlo, Consolas, monospace; font-size: .9em; background: var(--blue-50); color: var(--blue-700); padding: 2px 6px; border-radius: 6px; }
.prose ul, .prose ol { display:grid; gap:.6rem; margin: 1.1rem 0 1.5rem; }
.prose ul { padding-left: 0; }
.prose ul li { position:relative; padding-left: 28px; color: var(--ink-2); font-size: 1.06rem; }
.prose ul li::before { content:""; position:absolute; left:6px; top:12px; width:7px;height:7px;border-radius:50%; background: var(--blue); }
.prose ol { padding-left: 1.3rem; }
.prose ol li { padding-left: .4rem; color: var(--ink-2); font-size: 1.06rem; }
.prose ol li::marker { color: var(--blue); font-weight: 700; }
.prose hr { border: none; border-top: 1px solid var(--line); margin: 2.4rem 0; }

/* Article byline */
.byline { display:flex; flex-wrap:wrap; align-items:center; gap:10px 16px; margin-top: 1.4rem; color: var(--ink-3); font-size:.92rem; }
.byline .dot { width:3px;height:3px;border-radius:50%;background: var(--line-strong); }
.byline .avatar { width:38px;height:38px;border-radius:50%;background:var(--blue-50);color:var(--blue);display:grid;place-items:center;font-family:var(--serif);font-weight:600;font-size:.95rem; }
.article-back { display:inline-flex; align-items:center; gap:7px; font-weight:600; font-size:.92rem; margin-bottom:1.2rem; }
.article-back svg { width:16px;height:16px; }
.article-cta { max-width: 740px; margin: 56px auto 0; }

/* --------------------------------------------------------------- Footer */
.site-footer { background: var(--bg-navy); color:#9fb0c8; padding: 72px 0 32px; }
.footer-grid { display:grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; }
.footer-about { max-width: 34ch; margin-top: 18px; font-size:.96rem; color:#9fb0c8; }
.footer-col h5 { color:#fff; font-family:var(--sans); font-size:.82rem; letter-spacing:.12em; text-transform:uppercase; margin-bottom:16px; }
.footer-col a { display:block; color:#9fb0c8; font-size:.96rem; padding:5px 0; }
.footer-col a:hover { color:#fff; }
.footer-bottom { margin-top: 52px; padding-top: 24px; border-top:1px solid rgba(255,255,255,.1); display:flex; flex-wrap:wrap; gap:14px; justify-content:space-between; align-items:center; font-size:.86rem; color:#7588a3; }
.footer-social { display:flex; gap:10px; }
.footer-social a { width:38px;height:38px;border-radius:10px;border:1px solid rgba(255,255,255,.16); display:grid;place-items:center;color:#cdd8e8; }
.footer-social a:hover { background: var(--blue); border-color: var(--blue); color:#fff; }
.footer-social svg { width:18px;height:18px; }

/* ----------------------------------------------------- Reveal on scroll */
.reveal { opacity:0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity:1; transform:none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity:1 !important; transform:none !important; }
  html { scroll-behavior: auto; }
  * { transition: none !important; }
}

/* --------------------------------------------------------- Responsive */
@media (max-width: 980px) {
  .split { grid-template-columns: 1fr; }
  .logo-wall { grid-template-columns: repeat(4,1fr); }
  .logo-wall.is-page { grid-template-columns: repeat(3,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-about { grid-column: 1 / -1; }
}
@media (max-width: 760px) {
  .nav-links, .nav-cta .btn { display: none; }
  .nav-toggle { display: flex; }
  .nav-mobile {
    position: fixed; inset: 76px 0 auto 0; background:#fff; border-bottom:1px solid var(--line);
    box-shadow: var(--shadow-lg); padding: 18px 24px 26px; display:none; flex-direction:column; gap:4px; z-index:99;
  }
  .nav-open .nav-mobile { display:flex; }
  .nav-mobile a { padding:13px 12px; font-size:1.05rem; color: var(--ink); border-radius:10px; font-weight:500; }
  .nav-mobile a:hover, .nav-mobile a.active { background: var(--blue-50); color: var(--blue); }
  .nav-mobile .btn { margin-top: 12px; }
  .cols-2, .cols-3 { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .logo-wall, .logo-wall.is-page { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { justify-content:center; text-align:center; }
}
@media (min-width: 761px) { .nav-mobile { display:none !important; } }


/* ====================== Dark hero + track record (home) ====================== */
.hero--dark { position:relative; padding: clamp(64px,7vw,116px) 0 clamp(48px,5vw,76px); overflow:hidden; background:#06142c; }
.hero-photo { position:absolute; inset:0; z-index:0; background:url("../img/capitol.jpg") center/cover no-repeat; }
.hero-photo::after { content:""; position:absolute; inset:0; background:linear-gradient(180deg, rgba(6,20,44,.74), rgba(6,20,44,.93) 78%), radial-gradient(1100px 500px at 50% -10%, rgba(10,63,142,.5), transparent 60%); }
.hero-inner { position:relative; z-index:1; text-align:center; max-width:920px; margin-inline:auto; }
.hero--dark h1 { color:#fff; font-size:clamp(2.5rem,1.7rem+3.7vw,4.6rem); line-height:1.05; margin:1.5rem auto 0; max-width:20ch; }
.hero--dark h1 .accent { color:#6fa3e0; }
.hero-sub { color:#aebfd6; font-size:clamp(1.05rem,1rem+.45vw,1.28rem); max-width:60ch; margin:1.6rem auto 0; line-height:1.72; }
.hero--dark .hero-cta { justify-content:center; margin:2.3rem 0 0; }
.btn-ghost { background:rgba(255,255,255,.05) !important; color:#fff !important; border:1.5px solid rgba(255,255,255,.30) !important; border-radius:999px !important; font-family:var(--sans) !important; font-weight:600 !important; transition:background .2s ease, border-color .2s ease, transform .2s ease; }
.btn-ghost:hover { border-color:#fff !important; background:rgba(255,255,255,.12) !important; transform:translateY(-2px); }

/* ====================== Dark client strip ====================== */
.clients-dark { background:#06142c; padding: clamp(20px,3vw,40px) 0 clamp(60px,7vw,92px); }
.clients-dark .eyebrow-c { text-align:center; font-size:.78rem; letter-spacing:.14em; text-transform:uppercase; color:#8295b1; font-weight:600; margin:0 0 30px; }
.clients-dark .logo-wall { grid-template-columns:repeat(auto-fit,minmax(116px,1fr)); gap:16px; }
.clients-dark .logo-cell { background:transparent; border:none; min-height:auto; padding:0; }
.clients-dark .logo-cell:hover { background:transparent; border:none; box-shadow:none; transform:none; }
.clients-dark .logo-cell img { max-height:64px; width:auto; max-width:none; }


/* ====================== Dark page heroes (sub-pages) ====================== */
.page-hero--dark { position:relative; overflow:hidden; background:#06142c; border-bottom:none; padding: clamp(60px,7vw,104px) 0 clamp(40px,5vw,68px); }
.page-hero-photo { position:absolute; inset:0; z-index:0; background-size:cover; background-position:center; }
.page-hero-photo::after { content:""; position:absolute; inset:0; background:linear-gradient(180deg, rgba(6,20,44,.70), rgba(6,20,44,.92)); }
.page-hero--dark > .container { position:relative; z-index:1; }
.page-hero--dark h1 { color:#fff; }
.page-hero--dark .lead { color:#b3c3d9; }
.page-hero--dark .eyebrow { color:#6fa3e0; }
.page-hero--dark .crumbs, .page-hero--dark .crumbs a { color:#90a3c0; }
.page-hero--dark .btn-outline { background:rgba(255,255,255,.05) !important; color:#fff !important; border-color:rgba(255,255,255,.32) !important; }
.page-hero--dark .btn-outline:hover { border-color:#fff !important; color:#fff !important; }


/* ====================== Client logo carousel (home) ====================== */
.logo-marquee { position:relative; overflow:hidden; -webkit-mask-image:linear-gradient(90deg,transparent,#000 6%,#000 94%,transparent); mask-image:linear-gradient(90deg,transparent,#000 6%,#000 94%,transparent); }
.logo-track { display:flex; width:max-content; animation:logoscroll 40s linear infinite; }
.logo-track .logo-cell { flex:0 0 auto; width:auto; margin-right:56px; }
.logo-marquee:hover .logo-track { animation-play-state:paused; }
@keyframes logoscroll { from { transform:translateX(0); } to { transform:translateX(-50%); } }
@media (prefers-reduced-motion: reduce){ .logo-track { animation:none; } }
