/* ============ Shared chrome for inner pages ============
   Homepage (index.html) keeps its own inline stylesheet (it has a
   dedicated one-scroll-per-section paging system tightly coupled to its
   fixed set of section ids and a transparent-over-hero header). Inner
   pages scroll normally, so they share this stylesheet instead: same
   tokens/type/buttons/rail/footer, a header that is solid navy from the
   start (no hero photo behind it to be transparent over), and a set of
   reusable content patterns (banner, split layout, photo cards, stat
   band, icon grid, profile cards) used across About/Leadership/Services/
   Sectors/Contact. */
:root{
  --navy-950:#101f38;
  --navy-900:#213a5e;
  --navy-700:#2f4d7a;
  --navy-500:#44608f;
  --gold-600:#9c8158;
  --gold-500:#c1a971;
  --gold-300:#ddc79d;
  --cream-50:#f3f0e8;
  --cream-100:#ece7da;
  --paper:#fbfaf6;
  --ink-900:#141c28;
  --ink-600:#3d4956;
  --slate-500:#6b7684;
  --line:#d8d2c0;
  --maxw:1240px;
}

*{box-sizing:border-box}
body{
  margin:0;
  padding-top:88px;
  background:var(--paper);
  color:var(--ink-900);
  font-family:"IBM Plex Sans", ui-sans-serif, system-ui, sans-serif;
  font-size:16px;
  line-height:1.55;
  -webkit-font-smoothing:antialiased;
}
h1,h2,h3,h4{
  font-family:"Newsreader", ui-serif, Georgia, serif;
  font-weight:600;
  line-height:1.15;
  letter-spacing:-0.01em;
  text-wrap:balance;
  margin:0;
  color:var(--navy-900);
}
p{margin:0}
a{color:inherit;text-decoration:none}
img,svg{display:block;max-width:100%}
ul{margin:0;padding:0}
.mono{font-family:"IBM Plex Mono", ui-monospace, monospace;font-variant-numeric:tabular-nums}
.eyebrow{
  font-family:"IBM Plex Mono", ui-monospace, monospace;
  font-size:0.72rem;
  font-weight:500;
  letter-spacing:0.14em;
  text-transform:uppercase;
  color:var(--gold-600);
}
.wrap{width:100%;max-width:var(--maxw);margin:0 auto;padding:0 32px;box-sizing:border-box}
@media (max-width:760px){.wrap{padding:0 20px}}

.btn{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-family:"IBM Plex Sans", sans-serif;
  font-weight:600;
  font-size:0.92rem;
  padding:13px 24px;
  border-radius:6px;
  border:1px solid transparent;
  cursor:pointer;
  white-space:nowrap;
}
.btn svg{width:15px;height:15px}
.btn-gold{background:var(--gold-500);color:var(--navy-950)}
.btn-gold:hover{background:var(--gold-300)}
.btn-line{border-color:rgba(255,255,255,0.4);color:#fff}
.btn-line:hover{border-color:var(--gold-500);color:var(--gold-300)}
.btn-line-dark{border-color:var(--navy-900);color:var(--navy-900)}
.btn-line-dark:hover{border-color:var(--gold-600);color:var(--gold-600)}

/* ---------- section dot-nav (inner pages) ---------- */
.section-dots{
  position:fixed;
  right:22px;
  top:50%;
  transform:translateY(-50%);
  z-index:40;
  display:flex;
  flex-direction:column;
  gap:12px;
  align-items:center;
  padding:14px 9px;
  border-radius:999px;
  background:rgba(16,31,56,0.5);
  backdrop-filter:blur(6px);
  -webkit-backdrop-filter:blur(6px);
}
.section-dots a{
  width:7px;height:7px;
  border-radius:50%;
  background:rgba(255,255,255,0.4);
  display:block;
  transition:background .25s ease, width .25s ease, height .25s ease, box-shadow .25s ease;
}
.section-dots a:hover{background:var(--gold-300)}
.section-dots a.active{
  background:var(--gold-500);
  width:9px;height:9px;
  box-shadow:0 0 0 3px rgba(193,169,113,0.28);
}
@media (max-width:980px){.section-dots{display:none}}

/* ---------- one-scroll-per-section full-height cards (inner pages) ----------
   Applied per-section via .paged-section rather than by id (unlike index.html,
   which lists ids directly) so it works generically across every inner page's
   own section id names. Disabled below 760px to match the homepage. */
.paged-section{
  position:relative;
  min-height:100vh;
  min-height:100dvh;
  display:flex;
  flex-direction:column;
  justify-content:center;
}
@media (max-width:760px){.paged-section{min-height:0}}

/* ---------- scroll cue (inner pages): mirrors homepage's pulsing line.
   Fixed to the viewport (not absolute within its section) because inner
   pages have a page-banner above the first paged-section that pushes it
   below the initial viewport, which put the old absolutely-positioned
   cue out of view. Carries a frosted pill background (matching
   .section-dots) since, unlike the homepage hero, some inner-page first
   sections run real content close to the bottom of the viewport and the
   cue needs to stay legible over it. JS toggles is-hidden once the
   visitor pages past the first section. Default colouring suits
   light/cream sections; add scroll-cue--dark on a navy-section hero. */
.scroll-cue{
  position:fixed;left:50%;bottom:22px;z-index:45;
  transform:translateX(-50%);
  display:flex;flex-direction:column;align-items:center;gap:6px;
  background:rgba(251,250,246,0.92);
  backdrop-filter:blur(8px);-webkit-backdrop-filter:blur(8px);
  border:0;border-radius:999px;padding:12px 18px 10px;cursor:pointer;
  box-shadow:0 6px 20px rgba(16,31,56,0.1);
  opacity:1;transition:opacity .3s ease, background .2s ease;
}
.scroll-cue.is-hidden{opacity:0;pointer-events:none}
.scroll-cue-line{
  width:1px;height:26px;
  background:linear-gradient(var(--gold-600), rgba(156,129,88,0));
  animation:scrollCuePulse 1.8s ease-in-out infinite;
}
.scroll-cue-label{
  font-family:"IBM Plex Mono",monospace;
  font-size:0.62rem;letter-spacing:0.2em;text-transform:uppercase;
  color:var(--slate-500);
}
.scroll-cue:hover{background:rgba(251,250,246,1)}
.scroll-cue:hover .scroll-cue-label{color:var(--gold-600)}
.scroll-cue--dark{background:rgba(16,31,56,0.6)}
.scroll-cue--dark:hover{background:rgba(16,31,56,0.82)}
.scroll-cue--dark .scroll-cue-line{background:linear-gradient(var(--gold-500), rgba(193,169,113,0))}
.scroll-cue--dark .scroll-cue-label{color:rgba(255,255,255,0.7)}
.scroll-cue--dark:hover .scroll-cue-label{color:var(--gold-300)}
@keyframes scrollCuePulse{
  0%,100%{transform:scaleY(1);opacity:1}
  50%{transform:scaleY(0.6);opacity:0.4}
}
@media (prefers-reduced-motion:reduce){.scroll-cue-line{animation:none}}
@media (max-width:760px){.scroll-cue{display:none}}

/* ---------- scroll reveal ---------- */
.reveal{opacity:0;transform:translateY(28px);transition:opacity .7s ease, transform .7s ease}
.reveal.in-view{opacity:1;transform:translateY(0)}
@media (prefers-reduced-motion:reduce){.reveal{opacity:1;transform:none;transition:none}}

/* ---------- staggered grid reveal: give each direct .reveal child of a
   .stagger container an increasing transition-delay, so a row of cards
   fades in one after another instead of all at once ---------- */
.stagger > .reveal:nth-child(1){transition-delay:0s}
.stagger > .reveal:nth-child(2){transition-delay:.07s}
.stagger > .reveal:nth-child(3){transition-delay:.14s}
.stagger > .reveal:nth-child(4){transition-delay:.21s}
.stagger > .reveal:nth-child(5){transition-delay:.28s}
.stagger > .reveal:nth-child(6){transition-delay:.35s}
.stagger > .reveal:nth-child(7){transition-delay:.42s}
.stagger > .reveal:nth-child(8){transition-delay:.49s}
@media (prefers-reduced-motion:reduce){.stagger > .reveal{transition-delay:0s}}

/* ---------- header: solid navy always (no hero photo to sit over) ----------
   position:fixed so it stays visible while scrolling, instead of scrolling
   away with the page; body's padding-top (set above) keeps that fixed
   header from covering the top of the page banner underneath it. */
header{background:var(--navy-950);padding:22px 0;position:fixed;top:0;left:0;right:0;z-index:100;box-shadow:0 4px 24px rgba(0,0,0,0.2)}
.nav-inner{display:flex;align-items:center;justify-content:space-between;gap:32px}
.logo{display:flex;align-items:center;gap:14px}
.logo-img{height:42px;width:auto;display:block}
nav.primary{display:flex;gap:38px}
nav.primary li{list-style:none;margin:0;padding:0}
nav.primary a{font-size:0.92rem;font-weight:500;color:#c9d3de;padding-bottom:6px;border-bottom:2px solid transparent}
nav.primary a:hover{color:#fff}
nav.primary a.active,nav.primary li.current-menu-item>a,nav.primary li.current_page_item>a{color:var(--gold-300);border-bottom-color:var(--gold-500)}
.nav-cta{display:flex;align-items:center;gap:20px}

/* ---------- mobile nav: hamburger toggle + slide-in panel ---------- */
.nav-toggle{
  display:none;flex-direction:column;justify-content:center;gap:5px;
  width:34px;height:34px;padding:0;background:none;border:0;cursor:pointer;flex:none;
}
.nav-toggle span{display:block;width:24px;height:2px;background:#fff;transition:transform .25s ease, opacity .25s ease}
.nav-toggle.open span:nth-child(1){transform:translateY(7px) rotate(45deg)}
.nav-toggle.open span:nth-child(2){opacity:0}
.nav-toggle.open span:nth-child(3){transform:translateY(-7px) rotate(-45deg)}
.nav-scrim{position:fixed;inset:0;background:rgba(16,31,56,0.5);z-index:98;opacity:0;pointer-events:none;transition:opacity .3s ease}
.nav-scrim.open{opacity:1;pointer-events:auto}
.mobile-nav{
  position:fixed;top:0;right:0;bottom:0;z-index:99;
  width:min(320px,84vw);background:var(--navy-950);
  padding:96px 32px 32px;display:flex;flex-direction:column;
  transform:translateX(100%);transition:transform .3s ease;overflow-y:auto;
}
.mobile-nav.open{transform:translateX(0)}
.mobile-nav li{list-style:none;margin:0;padding:0}
.mobile-nav a{font-size:1.05rem;font-weight:500;color:#fff;padding:14px 0;border-bottom:1px solid rgba(255,255,255,0.1);display:block}
.mobile-nav a.active,.mobile-nav li.current-menu-item>a,.mobile-nav li.current_page_item>a{color:var(--gold-300)}
.mobile-nav .btn{margin-top:24px;width:100%;justify-content:center}
@media (max-width:980px){
  nav.primary{display:none}
  .nav-cta{display:none}
  .nav-toggle{display:flex}
}
@media (min-width:981px){.mobile-nav,.nav-scrim{display:none}}
@media (max-width:480px){.logo-img{height:32px}}

/* ---------- page banner (inner-page hero) ---------- */
.page-banner{
  position:relative;
  background:var(--navy-950) center/cover no-repeat;
  color:#fff;
  overflow:hidden;
  padding:72px 0 64px;
}
.page-banner::after{
  content:"";
  position:absolute;inset:0;
  background:linear-gradient(90deg, rgba(16,31,56,.94) 0%, rgba(16,31,56,.86) 45%, rgba(16,31,56,.62) 100%);
}
.page-banner .wrap{position:relative;z-index:2;max-width:900px}
.page-banner h1{font-size:clamp(2rem,3.8vw,2.9rem);color:#fff}
.page-banner p{margin-top:18px;font-size:1.05rem;color:#c3cbd6;max-width:62ch}
.crumb{display:flex;align-items:center;gap:8px;font-size:0.8rem;color:#9fabb9;margin-bottom:18px}
.crumb a:hover{color:var(--gold-300)}
.crumb .sep{color:#4a5a70}

/* ---------- section scaffolding ---------- */
section{padding:88px 0}
.section-head{display:flex;justify-content:space-between;align-items:flex-end;gap:24px;margin-bottom:44px;flex-wrap:wrap}
.section-head .eyebrow{display:block;margin-bottom:10px}
.section-head h2{font-size:clamp(1.6rem,2.4vw,2.2rem)}
.cream-section{background:var(--cream-50)}
.navy-section{background:var(--navy-950);color:#fff}
.navy-section h2{color:#fff}
.navy-section .eyebrow{color:var(--gold-300)}
.navy-section p{color:#c3cbd6}
/* dark-theme variants for components that default to light-bg colors,
   so a whole page (e.g. About/Services, matching the reference) can be
   built entirely on navy sections instead of alternating cream/navy */
.navy-section .split-copy p{color:#c3cbd6}
.navy-section .pillar b{color:#fff}
.navy-section .pillar span{color:#c3cbd6}
.navy-section .service-row-copy h3{color:#fff}
.navy-section .service-row-copy p{color:#c3cbd6}
.navy-section .service-row-list li{color:#c3cbd6}
.navy-section .service-row-copy .link{color:var(--gold-300)}
.navy-section .service-row-copy .link:hover{color:var(--gold-500)}
.navy-section .icon-circle{background:rgba(255,255,255,0.08)}
.navy-section .process-step{background:var(--navy-900);border-color:rgba(255,255,255,0.1)}
.navy-section .process-step h3{color:#fff}
.navy-section .process-step p{color:#c3cbd6}
.navy-section .process-step .step-no{color:var(--gold-300)}
.navy-section .btn-line-dark{border-color:rgba(255,255,255,0.4);color:#fff}
.navy-section .btn-line-dark:hover{border-color:var(--gold-500);color:var(--gold-300)}

/* ---------- split layout (copy + figure), used on About / Contact ---------- */
.split-grid{display:grid;grid-template-columns:1.1fr 0.9fr;gap:72px;align-items:center}
.split-copy p{color:var(--ink-600);font-size:1.02rem;max-width:58ch}
.split-copy p + p{margin-top:14px}
.split-figure{position:relative;aspect-ratio:4/5;background-size:cover;background-position:center;clip-path:polygon(0 0,100% 0,100% 82%,78% 100%,0 100%)}
.split-figure::before{content:"";position:absolute;inset:0;background:linear-gradient(200deg, rgba(16,31,56,0) 45%, rgba(16,31,56,.55) 100%)}
.split-figure .tag{position:absolute;left:24px;bottom:24px;background:var(--gold-500);color:var(--navy-950);font-family:"IBM Plex Mono",monospace;font-size:0.7rem;letter-spacing:0.06em;padding:6px 12px;text-transform:uppercase;display:inline-flex;align-items:center;gap:8px}
.split-figure .tag img{height:13px;width:auto;display:block}
.split-figure .tag.tag-rics{padding:9px 16px}
.split-figure .tag.tag-rics img{height:24px}
@media (max-width:860px){.split-grid{grid-template-columns:1fr;gap:40px}}

/* ---------- pillars (2x2 fact grid) ---------- */
.pillars{display:grid;grid-template-columns:1fr 1fr;gap:24px 32px}
.pillar b{display:block;font-size:0.95rem;color:var(--navy-900);margin-bottom:4px}
.pillar span{font-size:0.86rem;color:var(--slate-500)}
.pillars-3col{grid-template-columns:repeat(3,1fr)}
@media (max-width:760px){.pillars-3col{grid-template-columns:1fr 1fr}}
@media (max-width:600px){.pillars{grid-template-columns:1fr}}

/* ---------- stat band ---------- */
.stat-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:1px;background:rgba(255,255,255,0.14)}
.stat-cell{background:rgba(16,31,56,0.62);padding:32px 28px}
.stat-cell .num{font-family:"IBM Plex Mono",monospace;font-size:2rem;color:var(--gold-300);font-weight:600}
.stat-cell .num img{height:32px;width:auto;display:block}
.stat-cell .num img.rics-stat-logo{height:42px}
.stat-cell .lbl{font-size:0.92rem;color:#c3cbd6;margin-top:8px}
@media (max-width:760px){.stat-grid{grid-template-columns:1fr 1fr}}
@media (max-width:480px){.stat-grid{grid-template-columns:1fr}}

/* ---------- photo cards (services / experience style) ---------- */
.card-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:20px}
.card-grid-4{display:grid;grid-template-columns:repeat(4,1fr);gap:20px}
.card-grid-4 .photo-card{min-height:360px}
@media (max-width:980px){.card-grid-4{grid-template-columns:1fr 1fr}}
@media (max-width:560px){.card-grid-4{grid-template-columns:1fr}}
.photo-card{position:relative;overflow:hidden;min-height:300px;background-size:cover;background-position:center;transition:transform .35s ease}
.photo-card::before{content:"";position:absolute;inset:0;background:linear-gradient(0deg, rgba(16,31,56,.88) 0%, rgba(16,31,56,.15) 55%, rgba(16,31,56,0) 75%)}
.photo-card:hover{transform:translateY(-4px)}
.photo-card .card-body{position:absolute;left:0;right:0;bottom:0;padding:24px 22px;z-index:2}
.photo-card h3{font-size:1.2rem;color:#fff;margin-bottom:6px;line-height:1.22}
.photo-card p{font-size:0.86rem;color:#dfe4ea}
@media (max-width:900px){.card-grid{grid-template-columns:1fr}}

/* ---------- primary service cards: photo-card + a numbered badge ---------- */
.idx-badge{
  position:absolute;top:16px;right:16px;z-index:2;
  width:34px;height:34px;border-radius:50%;
  background:rgba(16,31,56,0.55);border:1px solid rgba(255,255,255,0.35);
  display:flex;align-items:center;justify-content:center;
  font-size:0.78rem;color:var(--gold-300);letter-spacing:0.02em;
  backdrop-filter:blur(3px);-webkit-backdrop-filter:blur(3px);
}
.idx-badge svg{width:16px;height:16px;color:var(--gold-300)}
.photo-card .card-body .kw-tags{margin-top:12px}
.photo-card .kw-tag{background:rgba(255,255,255,0.12);border-color:rgba(255,255,255,0.25);color:#fff}

/* ---------- keyword pill tags (shown inside photo-card bodies) ---------- */
.kw-tags{display:flex;flex-wrap:wrap;gap:6px;margin-top:18px}
.kw-tag{
  font-family:"IBM Plex Mono",monospace;font-size:0.66rem;letter-spacing:0.01em;
  color:var(--navy-700);background:#fff;border:1px solid var(--line);
  padding:4px 10px;border-radius:999px;white-space:nowrap;
}

/* ---------- sector icon list ---------- */
.sector-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1px;background:var(--line);border:1px solid var(--line)}
.sector-cell{background:var(--paper);padding:26px;display:flex;align-items:center;gap:14px}
.sector-cell .icon{width:26px;height:26px;color:var(--navy-700);flex:none}
.sector-cell span{font-size:0.92rem;font-weight:500;color:var(--navy-900)}
@media (max-width:760px){.sector-grid{grid-template-columns:repeat(2,1fr)}}
@media (max-width:480px){.sector-grid{grid-template-columns:1fr}}

/* ---------- sector photo grid (Services page "Sectors We Serve";
   same pattern as the homepage's Sectors card) ---------- */
.sector-photo-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:12px}
.sector-photo{
  position:relative;overflow:hidden;border-radius:4px;
  aspect-ratio:1/1;background-size:cover;background-position:center;
  transition:transform .35s ease, background-size .5s ease;
  cursor:pointer;
}
.sector-photo:hover{transform:translateY(-4px);background-size:114%}
.sector-photo::before{
  content:"";position:absolute;inset:0;
  background:linear-gradient(0deg, rgba(16,31,56,.85) 0%, rgba(16,31,56,.1) 55%, rgba(16,31,56,0) 75%);
}
.sector-photo span{position:absolute;left:16px;bottom:14px;z-index:2;color:#fff;font-weight:600;font-size:1.05rem}
@media (max-width:980px){.sector-photo-grid{grid-template-columns:repeat(3,1fr)}}
@media (max-width:760px){.sector-photo-grid{grid-template-columns:repeat(2,1fr)}}
@media (max-width:480px){.sector-photo-grid{grid-template-columns:1fr}}

/* ---------- profile cards (leadership) ---------- */
.lead-grid{display:grid;grid-template-columns:1fr 1fr;gap:56px}
.lead-card{display:grid;grid-template-columns:180px 1fr;gap:26px}
.lead-card img{width:100%;aspect-ratio:3/4;object-fit:cover}
.lead-card h3{font-size:1.3rem;color:var(--navy-900)}
.lead-card .role{font-size:0.86rem;color:var(--gold-600);margin-top:4px;font-weight:600}
.lead-card .creds{font-size:0.78rem;color:var(--ink-600);margin-top:4px;letter-spacing:0.02em}
.lead-card .bio{font-size:0.9rem;color:var(--ink-600);margin-top:14px}
@media (max-width:760px){.lead-grid{grid-template-columns:1fr;gap:36px}.lead-card{grid-template-columns:130px 1fr}}

/* ---------- final CTA band ---------- */
.cta-band{background:var(--navy-950);color:#fff;text-align:center;padding:96px 0}
.cta-band h2{color:#fff;font-size:clamp(1.8rem,3vw,2.6rem);max-width:20ch;margin:0 auto}
.cta-band p{color:#c3cbd6;margin-top:16px}
.cta-band .cta-row{display:flex;gap:16px;justify-content:center;margin-top:32px;flex-wrap:wrap}

/* ---------- contact page ---------- */
.contact-grid{display:grid;grid-template-columns:0.9fr 1.1fr;gap:64px;align-items:start}
.contact-facts{display:grid;gap:22px}
.contact-fact{display:flex;gap:14px;align-items:flex-start}
.contact-fact .icon{width:22px;height:22px;color:var(--gold-600);flex:none;margin-top:2px}
.contact-fact b{display:block;font-size:0.95rem;color:var(--navy-900)}
.contact-fact span{font-size:0.88rem;color:var(--ink-600)}
.trust-note{margin-top:28px;padding:18px 20px;background:var(--cream-50);border-left:3px solid var(--gold-500);font-size:0.86rem;color:var(--ink-600)}
.form-card{background:#fff;border:1px solid var(--line);padding:36px;border-radius:4px}
.field{display:grid;gap:6px;margin-bottom:18px}
.field label{font-size:0.8rem;font-weight:600;color:var(--navy-900)}
.field input,.field select,.field textarea{
  font-family:inherit;font-size:0.92rem;padding:11px 13px;
  border:1px solid var(--line);border-radius:4px;background:var(--paper);color:var(--ink-900);
}
.field-row{display:grid;grid-template-columns:1fr 1fr;gap:16px}
.form-section{margin:34px 0}
.form-section:first-child{margin-top:0}
.form-section h4{font-size:0.98rem;color:var(--navy-900);padding-bottom:10px;margin-bottom:18px;border-bottom:1px solid var(--line)}
.check-grid{display:grid;grid-template-columns:1fr 1fr;gap:9px 20px;margin-top:2px}
.check-item{display:flex;align-items:center;gap:8px;font-size:0.85rem;font-weight:400;color:var(--ink-600);cursor:pointer}
.check-item input{width:auto;margin:0;flex:none}
@media (max-width:900px){.contact-grid{grid-template-columns:1fr}.field-row{grid-template-columns:1fr}.check-grid{grid-template-columns:1fr}}

/* ---------- footer: floating rounded card on a dark backdrop ---------- */
footer{background:var(--navy-950);padding:0 32px 40px;position:relative;z-index:3}
.footer-card{max-width:1400px;margin:0 auto;background:var(--navy-900);border-radius:28px;padding:52px 48px 28px}
.footer-grid{display:grid;grid-template-columns:1.5fr 1fr 1fr 1.2fr;gap:32px;padding-bottom:40px}
.footer-brand .mark{font-family:"Newsreader",serif;font-size:1.4rem;color:#fff;font-weight:600}
.footer-brand p{font-size:0.86rem;color:#aab4c0;margin-top:14px;max-width:34ch}
.footer-rics{margin-top:18px}
.footer-rics img{height:34px;width:auto;display:block}
.footer-rics a, .tag-rics a, .stat-cell .num a{display:inline-block;line-height:0}
.footer-social{display:flex;gap:10px;margin-top:20px;flex-wrap:wrap}
.footer-social a{
  width:36px;height:36px;
  display:flex;align-items:center;justify-content:center;
  background:rgba(255,255,255,0.06);
  border:1px solid rgba(255,255,255,0.14);
  border-radius:6px;color:#fff;
  transition:background .15s ease,border-color .15s ease,color .15s ease;
}
.footer-social a:hover{background:var(--gold-500);border-color:var(--gold-500);color:var(--navy-950)}
.footer-social svg{width:15px;height:15px}
.footer-col h4{color:#fff;font-family:"IBM Plex Sans",sans-serif;font-size:0.8rem;letter-spacing:0.06em;text-transform:uppercase;font-weight:600;margin-bottom:18px}
.footer-col ul{list-style:none;margin:0;padding:0;display:grid;gap:11px}
.footer-col a,.footer-col li span{font-size:0.86rem;color:#aab4c0}
.footer-col a:hover{color:var(--gold-300)}
.footer-contact{display:grid;gap:14px}
.footer-contact-row{display:flex;align-items:flex-start;gap:10px;font-size:0.86rem;color:#aab4c0;line-height:1.5}
.footer-contact-row svg{width:15px;height:15px;color:var(--gold-500);flex:none;margin-top:2px}
.footer-contact-row a:hover{color:var(--gold-300)}
.footer-bottom{display:flex;justify-content:space-between;align-items:center;padding-top:22px;border-top:1px solid rgba(255,255,255,0.08);font-size:0.8rem;color:#7c8794;flex-wrap:wrap;gap:12px}
.footer-bottom a{color:#7c8794}
.footer-bottom a:hover{color:var(--gold-300)}
@media (max-width:980px){.footer-grid{grid-template-columns:1fr 1fr}.footer-card{padding:40px 28px 24px}}
@media (max-width:640px){.footer-grid{grid-template-columns:1fr}}

/* ---------- leader cards (About page "Meet Our Leaders"): photo-top,
   hover-zoom, clickable through to an individual profile page ---------- */
.leader-grid{display:grid;grid-template-columns:repeat(2,260px);gap:24px}
.leader-card{
  display:block;background:var(--navy-900);border:1px solid rgba(255,255,255,0.08);
  border-radius:6px;overflow:hidden;cursor:pointer;
  transition:border-color .3s ease, box-shadow .3s ease, transform .3s ease;
}
.leader-card:hover{
  border-color:var(--gold-500);
  box-shadow:0 0 0 1px var(--gold-500), 0 16px 36px rgba(0,0,0,0.35);
  transform:translateY(-4px);
}
.leader-photo{position:relative;aspect-ratio:4/5;overflow:hidden}
.leader-photo img{width:100%;height:100%;object-fit:cover;object-position:center top;transition:transform .5s ease}
.leader-card:hover .leader-photo img{transform:scale(1.1)}
.leader-info{padding:20px 22px 24px}
.leader-info h3{color:#fff;font-size:1.1rem}
.leader-info .role{font-size:0.82rem;color:var(--gold-300);margin-top:4px;font-weight:600}
.leader-info .link{margin-top:14px;font-size:0.8rem;font-weight:600;color:var(--gold-300);display:inline-flex;align-items:center;gap:6px}
.leader-card:hover .leader-info .link{color:var(--gold-500)}
@media (max-width:640px){.leader-grid{grid-template-columns:1fr;max-width:260px}}

/* ---------- leadership profile pages ---------- */
.profile-hero-grid{display:grid;grid-template-columns:1fr 280px;gap:48px;align-items:center}
.profile-hero-grid img{width:100%;aspect-ratio:1/1;object-fit:cover;object-position:center top;border-radius:6px}
.profile-links{display:flex;gap:20px;margin-top:24px}
.profile-links a{display:inline-flex;align-items:center;gap:8px;font-size:0.86rem;font-weight:600;color:var(--navy-900)}
.profile-links a:hover{color:var(--gold-600)}
.profile-links svg{width:16px;height:16px}
.profile-body-grid{display:grid;grid-template-columns:1.5fr 1fr;gap:56px;align-items:start}
.profile-body-grid p + p{margin-top:14px}
.credentials-list{list-style:none;margin:0;padding:0;display:grid;gap:14px}
.credentials-list li{display:flex;align-items:flex-start;gap:10px;font-size:0.86rem;color:var(--ink-600)}
.credentials-list svg{width:16px;height:16px;color:var(--gold-600);flex:none;margin-top:2px}
.cta-box{background:var(--navy-950);color:#fff;padding:26px;border-radius:6px;margin-top:24px}
.cta-box h4{color:#fff;font-size:1.02rem}
.cta-box p{font-size:0.86rem;color:#c3cbd6;margin-top:10px}
.cta-box .btn{margin-top:16px;width:100%;justify-content:center}
.sidebar-card{background:var(--cream-50);padding:24px;border-radius:6px}
.sidebar-card h4{font-size:0.8rem;letter-spacing:0.06em;text-transform:uppercase;color:var(--navy-900);margin-bottom:16px}
.timeline{border-left:2px solid var(--line);margin-top:8px}
.timeline-item{position:relative;padding:0 0 32px 28px}
.timeline-item:last-child{padding-bottom:0}
.timeline-item::before{content:"";position:absolute;left:-7px;top:2px;width:12px;height:12px;border-radius:50%;background:var(--gold-500);border:2px solid var(--paper)}
.timeline-item .when{font-family:"IBM Plex Mono",monospace;font-size:0.76rem;color:var(--gold-600)}
.timeline-item h4{font-size:1rem;margin-top:6px}
.timeline-item .where{font-size:0.84rem;color:var(--slate-500);margin-top:2px}
.timeline-item p{font-size:0.88rem;color:var(--ink-600);margin-top:8px}
@media (max-width:900px){.profile-hero-grid{grid-template-columns:1fr}.profile-hero-grid img{max-width:280px}.profile-body-grid{grid-template-columns:1fr}}

/* ---------- engagement process (Services page) ---------- */
.process-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:24px}
.process-step{background:var(--paper);border:1px solid var(--line);padding:28px 24px}
.process-step .step-no{font-family:"IBM Plex Mono",monospace;font-size:0.78rem;color:var(--gold-600)}
.process-step h3{font-size:1.05rem;margin-top:12px}
.process-step p{font-size:0.86rem;color:var(--ink-600);margin-top:10px}
@media (max-width:900px){.process-grid{grid-template-columns:1fr 1fr}}
@media (max-width:560px){.process-grid{grid-template-columns:1fr}}

/* ---------- alternating service rows (Services page) ---------- */
.service-row{display:grid;grid-template-columns:1fr 1fr;gap:56px;align-items:center}
.service-row.rev .service-row-copy{order:2}
.service-row.rev .service-row-figure{order:1}
.service-row-figure{aspect-ratio:4/3;border-radius:6px;overflow:hidden;background-size:cover;background-position:center}
.service-row-copy .icon-circle{
  width:46px;height:46px;border-radius:50%;background:var(--navy-900);
  display:flex;align-items:center;justify-content:center;margin-bottom:18px;
}
.service-row-copy .icon-circle svg{width:20px;height:20px;color:var(--gold-300)}
.service-row-copy h3{font-size:1.3rem}
.service-row-copy p{margin-top:12px;color:var(--ink-600);font-size:0.96rem}
.service-row-list{display:grid;grid-template-columns:1fr 1fr;gap:8px 20px;margin-top:18px}
.service-row-list li{font-size:0.86rem;color:var(--ink-600);list-style:none;padding-left:16px;position:relative}
.service-row-list li::before{content:"";position:absolute;left:0;top:9px;width:5px;height:5px;border-radius:50%;background:var(--gold-500)}
.service-row-copy .link{margin-top:20px;display:inline-flex;align-items:center;gap:6px;font-size:0.86rem;font-weight:600;color:var(--navy-900);border-bottom:1px solid var(--gold-500)}
.service-row-copy .link:hover{color:var(--gold-600)}

/* ---------- landmark projects list (leadership profile pages) ---------- */
.landmark-list{display:grid;grid-template-columns:1fr 1fr;gap:10px 20px;list-style:none;margin:0;padding:0}
.landmark-list li{font-size:0.88rem;color:var(--ink-900);list-style:none;padding-left:16px;position:relative;line-height:1.4}
.landmark-list li::before{content:"";position:absolute;left:0;top:7px;width:5px;height:5px;border-radius:50%;background:var(--gold-500)}
.landmark-list .landmark-loc{display:block;font-size:0.78rem;color:var(--slate-500);margin-top:2px}
@media (max-width:640px){.landmark-list{grid-template-columns:1fr}}
@media (max-width:860px){
  .service-row,.service-row.rev{grid-template-columns:1fr;gap:28px}
  .service-row.rev .service-row-copy,.service-row.rev .service-row-figure{order:initial}
}

/* ---------- legal pages (Privacy Policy) ---------- */
.legal-grid{display:grid;grid-template-columns:260px 1fr;gap:56px;align-items:start}
.legal-contents{position:sticky;top:96px;background:var(--navy-900);border:1px solid rgba(255,255,255,0.08);border-radius:6px;padding:24px}
.legal-contents h4{font-size:0.76rem;letter-spacing:0.08em;text-transform:uppercase;color:#9fabb9;margin-bottom:16px}
.legal-contents ol{list-style:none;margin:0;padding:0;display:grid;gap:12px;counter-reset:legal}
.legal-contents li{counter-increment:legal;font-size:0.86rem}
.legal-contents a{color:#c3cbd6;display:flex;gap:8px}
.legal-contents a::before{content:counter(legal)".";color:var(--gold-300);font-weight:600;flex:none}
.legal-contents a:hover{color:var(--gold-300)}
.legal-item{padding:32px 0;border-bottom:1px solid rgba(255,255,255,0.1)}
.legal-item:first-child{padding-top:0}
.legal-item:last-child{border-bottom:none}
.legal-item h2{font-size:1.3rem;color:#fff;display:flex;gap:10px;align-items:baseline}
.legal-item h2 .no{color:var(--gold-300)}
.legal-item p{margin-top:14px;font-size:0.94rem;color:#c3cbd6;line-height:1.75}
.legal-version-box{margin-top:40px;background:var(--navy-900);border:1px solid rgba(255,255,255,0.08);border-radius:6px;padding:22px 26px;display:flex;gap:16px;align-items:flex-start}
.legal-version-box .icon-badge{width:40px;height:40px;border-radius:50%;background:rgba(255,255,255,0.08);display:flex;align-items:center;justify-content:center;flex:none}
.legal-version-box .icon-badge svg{width:18px;height:18px;color:var(--gold-300)}
.legal-version-box h4{font-size:0.95rem;color:#fff;margin-bottom:6px}
.legal-version-box p{font-size:0.86rem;color:#c3cbd6}
@media (max-width:860px){.legal-grid{grid-template-columns:1fr}.legal-contents{position:static}}
