/* Empower Partners — site styles
   Brand: navy #072246 · slate #8C94A3 · tint #F5F6F8 · rule #E3E6EC
   Type: Playfair Display (display) · Inter (body) */

:root {
  --navy: #072246;
  --navy-deep: #04162e;
  --slate: #8C94A3;
  --ink: #1A1A1A;
  --mute: #5B6270;
  --tint: #F5F6F8;
  --rule: #E3E6EC;
  --white: #FFFFFF;
  --display: "Playfair Display", Georgia, "Times New Roman", serif;
  --body: "Inter", "Helvetica Neue", Arial, sans-serif;
  --max: 1240px;
  --gutter: clamp(20px, 5vw, 64px);
  --ease: cubic-bezier(.2,.7,.2,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { font-family: var(--display); font-weight: 500; color: var(--navy); margin: 0; letter-spacing: -0.01em; line-height: 1.1; }
p { margin: 0 0 1em; }
ul { margin: 0; padding: 0; list-style: none; }
button, input, select, textarea { font: inherit; color: inherit; }
::selection { background: var(--navy); color: #fff; }

.wrap { width: min(var(--max), 100% - 2 * var(--gutter)); margin-inline: auto; }

/* Eyebrow — the "PARTNERS" treatment */
.eyebrow {
  font-family: var(--body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--slate);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.eyebrow::before { content: ""; width: 28px; height: 1px; background: var(--navy); flex: none; }
.on-navy .eyebrow { color: rgba(255,255,255,.6); }
.on-navy .eyebrow::before { background: rgba(255,255,255,.5); }

.h-xl { font-size: clamp(38px, 6vw, 76px); line-height: 1.02; letter-spacing: -0.02em; }
.h-l  { font-size: clamp(32px, 4.2vw, 52px); }
.h-m  { font-size: clamp(24px, 2.6vw, 32px); }
.h-s  { font-size: 21px; }
.lead { font-size: clamp(18px, 1.5vw, 21px); line-height: 1.5; color: var(--mute); max-width: 56ch; }
.mute { color: var(--mute); }
em.serif { font-family: var(--display); font-style: italic; font-weight: 400; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px;
  font-size: 14px; font-weight: 600; letter-spacing: 0.02em;
  border: 1px solid var(--navy);
  background: var(--navy); color: #fff;
  transition: background .25s var(--ease), color .25s var(--ease), transform .25s var(--ease);
  white-space: nowrap;
}
.btn:hover { background: var(--navy-deep); transform: translateY(-1px); }
.btn.ghost { background: transparent; color: var(--navy); }
.btn.ghost:hover { background: var(--navy); color: #fff; }
.btn.light { background: #fff; color: var(--navy); border-color: #fff; }
.btn.light:hover { background: var(--tint); }
.btn.ghost-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.5); }
.btn.ghost-light:hover { border-color: #fff; background: rgba(255,255,255,.08); }
.btn svg { width: 14px; height: 14px; transition: transform .25s var(--ease); }
.btn:hover svg { transform: translateX(3px); }

.link {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 600; color: var(--navy);
  border-bottom: 1px solid transparent;
  transition: border-color .2s, gap .2s;
}
.link:hover { border-bottom-color: var(--navy); gap: 12px; }
.link svg { width: 12px; height: 12px; }

/* ---------- Header ---------- */
/* Transparent over the navy hero at the top of every page; solid once scrolled or when the mobile menu is open (JS adds .scrolled). */
.site-header {
  position: sticky; top: 0; z-index: 50;
  margin-bottom: -76px; /* the hero slides under the bar; heroes add 76px top padding to compensate */
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background-color .3s, border-color .3s;
}
.site-header.scrolled {
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(160%) blur(10px);
  -webkit-backdrop-filter: saturate(160%) blur(10px);
  border-bottom-color: var(--rule);
}
/* Opaque bar while the mobile menu is open: backdrop-filter would make the header the containing block of the fixed menu panel. */
body.nav-open .site-header { background: #fff; backdrop-filter: none; -webkit-backdrop-filter: none; }
.brand .logo-navy { display: none; }
.site-header.scrolled .brand .logo-navy { display: block; }
.site-header.scrolled .brand .logo-white { display: none; }
.site-header:not(.scrolled) .nav-links > li > a, .site-header:not(.scrolled) .nav-links > li > button { color: rgba(255,255,255,.88); }
.site-header:not(.scrolled) .nav-links > li > a:hover, .site-header:not(.scrolled) .nav-links > li > button:hover, .site-header:not(.scrolled) .nav-links > li.open > button { color: #fff; background: rgba(255,255,255,.12); }
.site-header:not(.scrolled) .nav-cta .btn { background: #fff; color: var(--navy); border-color: #fff; }
.site-header:not(.scrolled) .nav-cta .btn:hover { background: var(--tint); }
.site-header:not(.scrolled) .nav-toggle span { background: #fff; }
section[id], [id^="news-"] { scroll-margin-top: 76px; }
.nav {
  display: flex; align-items: center; justify-content: space-between;
  height: 76px; gap: 32px;
}
.brand { display: inline-flex; align-items: center; line-height: 1; color: var(--navy); }
.brand img { height: 36px; width: auto; }
.brand .w1 { font-family: var(--display); font-size: 22px; letter-spacing: 0.06em; font-weight: 500; }
.brand .w2 { font-family: var(--body); font-size: 9px; letter-spacing: 0.42em; font-weight: 600; margin-top: 4px; padding-left: 2px; }
.on-navy .brand { color: #fff; }

.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links > li { position: relative; }
.nav-links a, .nav-links button {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 10px 14px; font-size: 14px; font-weight: 500; color: var(--ink);
  background: none; border: 0; cursor: pointer;
  border-radius: 2px;
  transition: color .2s, background .2s;
}
.nav-links a:hover, .nav-links button:hover, .nav-links > li.open > button { color: var(--navy); background: var(--tint); }
.nav-links button svg { width: 10px; height: 10px; transition: transform .2s; }
.nav-links > li.open > button svg { transform: rotate(180deg); }

.menu {
  position: absolute; top: calc(100% + 10px); left: 0;
  min-width: 300px;
  background: #fff; border: 1px solid var(--rule);
  box-shadow: 0 20px 50px -20px rgba(7,34,70,.25);
  padding: 10px;
  opacity: 0; visibility: hidden; transform: translateY(6px);
  transition: opacity .2s var(--ease), transform .2s var(--ease), visibility .2s;
}
.menu.wide { min-width: 620px; display: grid; grid-template-columns: 1fr 1fr; gap: 6px; }
.nav-links > li.open > .menu { opacity: 1; visibility: visible; transform: none; }
.menu .group-label { font-size: 10px; letter-spacing: .18em; text-transform: uppercase; color: var(--slate); padding: 10px 12px 4px; font-weight: 600; }
.menu a { display: block; padding: 9px 12px; font-size: 14px; font-weight: 500; }
.menu a small { display: block; font-size: 12px; color: var(--mute); font-weight: 400; margin-top: 1px; }

.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--navy); margin: 5px 0; transition: transform .25s, opacity .25s; }

/* Mobile nav */
@media (max-width: 960px) {
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .nav-cta .btn { display: none; }
  body.nav-open .nav-links {
    display: flex; flex-direction: column; align-items: stretch; gap: 0;
    position: fixed; inset: 76px 0 0 0; background: #fff; padding: 20px var(--gutter) 40px;
    overflow-y: auto; z-index: 49; border-top: 1px solid var(--rule);
  }
  body.nav-open { overflow: hidden; }
  body.nav-open .nav-links a, body.nav-open .nav-links button { width: 100%; font-size: 18px; padding: 14px 0; justify-content: space-between; border-bottom: 1px solid var(--rule); border-radius: 0; }
  body.nav-open .nav-links a:hover, body.nav-open .nav-links button:hover { background: none; }
  body.nav-open .menu { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: 0; padding: 0 0 8px 16px; min-width: 0; display: none; }
  body.nav-open .menu.wide { grid-template-columns: 1fr; }
  body.nav-open li.open > .menu { display: block; }
  body.nav-open .menu a { font-size: 15px; padding: 10px 0; border: 0; }
  body.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
  body.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  body.nav-open .nav-links .mobile-cta { margin-top: 24px; }
}
.mobile-cta { display: none; }
@media (max-width: 960px) { body.nav-open .mobile-cta { display: block; } body.nav-open .mobile-cta .btn { display: inline-flex; width: auto; border: 1px solid var(--navy); justify-content: center; } }

/* ---------- Sections ---------- */
section { padding: clamp(72px, 9vw, 128px) 0; }
section.tight { padding: clamp(48px, 6vw, 80px) 0; }
.section-head { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: end; margin-bottom: clamp(40px, 5vw, 72px); }
.section-head .lead { margin: 0; }
@media (max-width: 800px) { .section-head { grid-template-columns: 1fr; gap: 16px; } }

.on-navy { background: var(--navy); color: #fff; }
.on-navy h1, .on-navy h2, .on-navy h3, .on-navy h4 { color: #fff; }
.on-navy .lead, .on-navy .mute { color: rgba(255,255,255,.72); }
.on-tint { background: var(--tint); }

/* ---------- Hero (home): full-bleed navy with crossfading sector photography ---------- */
.hero {
  position: relative; overflow: hidden; background: var(--navy); color: #fff;
  min-height: min(100vh, 936px);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: calc(clamp(96px, 12vw, 160px) + 76px) 0 clamp(40px, 5vw, 64px);
}
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-media img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  opacity: 0; transform: scale(1.06);
  transition: opacity 1.6s var(--ease), transform 9s linear;
  filter: saturate(.7);
}
.hero-media img.active { opacity: .5; transform: scale(1); }
.hero-media::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(7,34,70,.96) 0%, rgba(7,34,70,.82) 42%, rgba(7,34,70,.35) 100%),
    linear-gradient(0deg, rgba(7,34,70,.9) 0%, rgba(7,34,70,0) 45%);
}
.hero .hero-main { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); gap: clamp(32px, 6vw, 96px); align-items: end; }
.hero .eyebrow { color: rgba(255,255,255,.6); }
.hero .eyebrow::before { background: rgba(255,255,255,.5); }
.hero h1 { max-width: 14ch; color: #fff; }
.hero h1 em { color: rgba(255,255,255,.55); }
.hero .lead { margin: 28px 0 36px; color: rgba(255,255,255,.78); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero .btn { background: #fff; color: var(--navy); border-color: #fff; }
.hero .btn:hover { background: var(--tint); }
.hero .btn.ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.5); }
.hero .btn.ghost:hover { background: rgba(255,255,255,.1); border-color: #fff; }

.hero-panel {
  background: rgba(7,34,70,.55); border: 1px solid rgba(255,255,255,.14);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  padding: 28px 28px 8px;
}
.hero-panel .eyebrow { margin-bottom: 8px; }
.hero-index li { display: grid; grid-template-columns: 36px 1fr auto; gap: 16px; align-items: baseline; padding: 18px 0; border-bottom: 1px solid rgba(255,255,255,.14); transition: padding-left .25s var(--ease); }
.hero-index li:last-child { border-bottom: 0; }
.hero-index li:hover { padding-left: 6px; }
.hero-index .n { font-family: var(--display); font-size: 14px; color: rgba(255,255,255,.5); }
.hero-index a { display: contents; }
.hero-index strong { font-family: var(--display); font-weight: 500; font-size: 22px; color: #fff; }
.hero-index span.d { font-size: 13px; color: rgba(255,255,255,.6); display: block; margin-top: 2px; }
.hero-index .arr { color: #fff; }
.hero-index .arr svg { width: 16px; height: 16px; }

.hero-caption {
  position: relative; z-index: 1; margin-top: clamp(32px, 5vw, 64px);
  display: flex; align-items: center; gap: 16px; font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.55); font-weight: 600;
}
.hero-caption .dots { display: flex; gap: 8px; }
.hero-caption .dots button { width: 28px; height: 2px; padding: 0; border: 0; background: rgba(255,255,255,.3); cursor: pointer; transition: background .3s; }
.hero-caption .dots button.active { background: #fff; }
.hero-caption a { color: #fff; border-bottom: 1px solid rgba(255,255,255,.4); }
.hero-caption a:hover { border-bottom-color: #fff; }
@media (max-width: 900px) { .hero .hero-main { grid-template-columns: 1fr; } .hero { min-height: 0; } .hero-panel { padding: 20px 20px 4px; } }
@media (prefers-reduced-motion: reduce) { .hero-media img { transition: none; transform: none; } }

/* ---------- Client strip ---------- */
.clients { border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); padding: 32px 0; overflow: hidden; }
.clients .label { font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: var(--slate); font-weight: 600; text-align: center; margin-bottom: 22px; }
.marquee { display: flex; gap: 64px; width: max-content; animation: marquee 60s linear infinite; }
.marquee:hover { animation-play-state: paused; }
.marquee img { height: 38px; width: auto; filter: grayscale(1) contrast(.9); opacity: .55; transition: opacity .3s, filter .3s; }
.marquee img:hover { filter: none; opacity: 1; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee { animation: none; flex-wrap: wrap; width: auto; justify-content: center; gap: 32px; } }

/* ---------- Expertise rows ---------- */
.rows { border-top: 1px solid var(--navy); }
.row {
  display: grid; grid-template-columns: 80px minmax(0, 1.1fr) minmax(0, 1fr) 60px;
  gap: 32px; align-items: start;
  padding: 40px 0; border-bottom: 1px solid var(--rule);
  transition: background .3s;
  position: relative;
}
.row:hover { background: var(--tint); box-shadow: -24px 0 0 var(--tint), 24px 0 0 var(--tint); }
.row .n { font-family: var(--display); font-size: 15px; color: var(--slate); padding-top: 8px; }
.row h3 { font-size: clamp(24px, 2.6vw, 34px); }
.row p { color: var(--mute); margin: 0 0 14px; }
.row ul li { font-size: 14px; padding: 6px 0; border-top: 1px solid var(--rule); }
.row ul li:first-child { border-top: 0; }
.row .go { padding-top: 8px; color: var(--navy); }
.row .go svg { width: 22px; height: 22px; transition: transform .25s var(--ease); }
.row:hover .go svg { transform: translate(4px, -4px); }
.row a.cover { position: absolute; inset: 0; }
@media (max-width: 800px) { .row { grid-template-columns: 40px 1fr; } .row ul { grid-column: 2; } .row .go { display: none; } }

/* ---------- Services grid ---------- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border-top: 1px solid var(--navy); border-left: 1px solid var(--rule); }
.cell { padding: 36px 28px 36px 0; border-bottom: 1px solid var(--rule); border-right: 1px solid var(--rule); padding-left: 28px; position: relative; transition: background .3s; }
.cell:hover { background: var(--tint); }
.cell .n { font-family: var(--display); font-size: 13px; color: var(--slate); margin-bottom: 26px; display: block; }
.cell h3 { font-size: 22px; margin-bottom: 10px; }
.cell p { color: var(--mute); font-size: 15px; margin-bottom: 20px; }
.cell a.cover { position: absolute; inset: 0; }
@media (max-width: 900px) { .grid-3 { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .grid-3 { grid-template-columns: 1fr; } }

/* ---------- Sectors ---------- */
.sectors-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; }
.sector { position: relative; overflow: hidden; background: var(--navy); color: #fff; padding: 28px 24px; min-height: 260px; display: flex; flex-direction: column; justify-content: space-between; isolation: isolate; }
.sector .bg { position: absolute; inset: 0; z-index: -1; }
.sector .bg img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.6); transform: scale(1.02); transition: transform 1.2s var(--ease), filter .6s; }
.sector .bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(7,34,70,.94) 0%, rgba(7,34,70,.72) 55%, rgba(7,34,70,.45) 100%); transition: background .5s; }
.sector:hover .bg img { transform: scale(1.08); filter: saturate(.9); }
.sector:hover .bg::after { background: linear-gradient(0deg, rgba(7,34,70,.92) 0%, rgba(7,34,70,.5) 60%, rgba(7,34,70,.2) 100%); }
.sector .n { font-family: var(--display); font-size: 13px; color: rgba(255,255,255,.55); }
.sector h3 { font-size: 23px; margin: 0 0 6px; color: #fff; }
.sector p { font-size: 14px; color: rgba(255,255,255,.72); margin: 0; }
.sector .go { position: absolute; right: 22px; top: 24px; color: #fff; opacity: 0; transform: translate(-6px, 6px); transition: opacity .3s, transform .3s var(--ease); }
.sector .go svg { width: 18px; height: 18px; }
.sector:hover .go { opacity: 1; transform: none; }
.sector a.cover { position: absolute; inset: 0; }
@media (max-width: 1000px) { .sectors-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .sectors-grid { grid-template-columns: 1fr; } .sector { min-height: 200px; } }

/* ---------- Diaspora band ---------- */
.diaspora .wrap { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: clamp(32px, 6vw, 96px); }
.diaspora .h-l { max-width: 12ch; }
.diaspora ol { list-style: none; margin: 0; padding: 0; border-top: 1px solid rgba(255,255,255,.25); }
.diaspora ol li { display: grid; grid-template-columns: 48px 1fr; gap: 20px; padding: 28px 0; border-bottom: 1px solid rgba(255,255,255,.18); }
.diaspora ol .n { font-family: var(--display); color: rgba(255,255,255,.5); font-size: 15px; padding-top: 4px; }
.diaspora ol h3 { font-size: 24px; margin-bottom: 6px; }
.diaspora ol p { color: rgba(255,255,255,.72); margin: 0; font-size: 15px; }
@media (max-width: 800px) { .diaspora .wrap { grid-template-columns: 1fr; } }

/* ---------- People ---------- */
.people { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.people.three { grid-template-columns: repeat(3, 1fr); max-width: 940px; }
.person { position: relative; }
.person .photo { aspect-ratio: 4 / 5; overflow: hidden; background: var(--tint); margin-bottom: 16px; }
.person .photo img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(1); transition: filter .4s var(--ease), transform .6s var(--ease); }
.person:hover .photo img { filter: none; transform: scale(1.03); }
.person h3 { font-size: 21px; margin-bottom: 4px; }
.person p { font-size: 13px; color: var(--mute); margin: 0; }
.person a.cover { position: absolute; inset: 0; }
.people-split { display: grid; grid-template-columns: 1fr; gap: clamp(48px, 6vw, 80px); }
.people-block .eyebrow { margin-bottom: 28px; }
@media (max-width: 900px) { .people, .people.three { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .people, .people.three { grid-template-columns: 1fr 1fr; gap: 16px; } .person h3 { font-size: 17px; } }

/* ---------- News ---------- */
.news-list { border-top: 1px solid var(--navy); }
.news-item { display: grid; grid-template-columns: 140px 1fr 40px; gap: 32px; padding: 28px 0; border-bottom: 1px solid var(--rule); align-items: baseline; position: relative; transition: background .3s; }
.news-item:hover { background: var(--tint); box-shadow: -24px 0 0 var(--tint), 24px 0 0 var(--tint); }
.news-item time { font-size: 13px; color: var(--slate); font-weight: 600; letter-spacing: .04em; }
.news-item h3 { font-size: 22px; margin-bottom: 6px; }
.news-item p { color: var(--mute); font-size: 15px; margin: 0; }
.news-item .go { color: var(--navy); }
.news-item .go svg { width: 18px; height: 18px; }
.news-item a.cover { position: absolute; inset: 0; }
@media (max-width: 640px) { .news-item { grid-template-columns: 1fr; gap: 8px; } .news-item .go { display: none; } }

/* ---------- Contact ---------- */
.contact .wrap { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: clamp(40px, 6vw, 96px); }
.contact-details { margin-top: 40px; border-top: 1px solid var(--rule); }
.contact-details li { display: grid; grid-template-columns: 90px 1fr; gap: 16px; padding: 14px 0; border-bottom: 1px solid var(--rule); font-size: 15px; }
.contact-details li span { font-size: 11px; letter-spacing: .18em; text-transform: uppercase; color: var(--slate); font-weight: 600; padding-top: 4px; }
.contact-details a { color: var(--navy); font-weight: 500; }
.form { display: grid; grid-template-columns: 1fr 1fr; gap: 22px 24px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--slate); font-weight: 600; }
.field input, .field select, .field textarea {
  width: 100%; padding: 14px 0; border: 0; border-bottom: 1px solid var(--rule); background: transparent; outline: none;
  transition: border-color .2s; font-size: 16px; border-radius: 0;
}
.field input:focus, .field select:focus, .field textarea:focus { border-bottom-color: var(--navy); }
.field textarea { min-height: 120px; resize: vertical; }
.form .actions { grid-column: 1 / -1; display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; margin-top: 8px; }
.form .actions small { color: var(--mute); font-size: 13px; max-width: 46ch; }
.form-status.ok { color: var(--navy); font-weight: 500; }
.form-status.err { color: #8a2a2a; }
.form .hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form { position: relative; }
.btn:disabled { opacity: .6; cursor: wait; transform: none; }
@media (max-width: 860px) { .contact .wrap { grid-template-columns: 1fr; } }
@media (max-width: 560px) { .form { grid-template-columns: 1fr; } }

/* ---------- Footer ---------- */
footer { background: var(--navy); color: rgba(255,255,255,.75); padding: 64px 0 32px; }
.foot-grid { display: grid; grid-template-columns: minmax(0, 2fr) repeat(3, minmax(0, 1fr)); gap: 40px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,.15); }
.foot-logo { display: inline-block; margin-bottom: 24px; } .foot-logo img { width: 190px; height: auto; }
.foot-grid p { font-size: 14px; max-width: 32ch; }
.foot-grid h4 { font-family: var(--body); font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: rgba(255,255,255,.5); margin-bottom: 18px; font-weight: 600; }
.foot-grid li { font-size: 14px; padding: 5px 0; }
.foot-grid li a { color: rgba(255,255,255,.85); transition: color .2s; }
.foot-grid li a:hover { color: #fff; text-decoration: underline; text-underline-offset: 4px; }
.foot-bottom { display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; padding-top: 24px; font-size: 13px; color: rgba(255,255,255,.5); }
.foot-bottom a { color: rgba(255,255,255,.7); }
@media (max-width: 800px) { .foot-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .foot-grid { grid-template-columns: 1fr; } }

/* ---------- Subpage shells: navy hero with photography behind ---------- */
.page-hero { position: relative; overflow: hidden; background: var(--navy); color: #fff; padding: calc(clamp(72px, 9vw, 130px) + 76px) 0 clamp(48px, 6vw, 80px); isolation: isolate; }
.page-hero .bg { position: absolute; inset: 0; z-index: -1; }
.page-hero .bg img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.65); opacity: .55; }
.page-hero .bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(7,34,70,.97) 0%, rgba(7,34,70,.85) 45%, rgba(7,34,70,.45) 100%), linear-gradient(0deg, rgba(7,34,70,.9) 0%, rgba(7,34,70,0) 50%); }
.page-hero .wrap { display: grid; grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); gap: clamp(32px, 6vw, 96px); align-items: end; }
.page-hero h1 { max-width: 16ch; color: #fff; }
.page-hero .lead { margin-top: 24px; color: rgba(255,255,255,.78); }
.page-hero .eyebrow { color: rgba(255,255,255,.6); }
.page-hero .eyebrow::before { background: rgba(255,255,255,.5); }
.page-hero .side { border-top: 1px solid rgba(255,255,255,.3); padding-top: 18px; font-size: 14px; color: rgba(255,255,255,.85); }
.page-hero .side dt { font-size: 11px; letter-spacing: .18em; text-transform: uppercase; color: rgba(255,255,255,.5); font-weight: 600; margin-bottom: 6px; }
.page-hero .side dd { margin: 0 0 18px; }
.page-hero .side dd a { color: #fff; font-weight: 500; border-bottom: 1px solid rgba(255,255,255,.35); }
.page-hero .crumbs { color: rgba(255,255,255,.5); }
.page-hero .crumbs a:hover { color: #fff; }
.crumbs { font-size: 12px; color: var(--slate); margin-bottom: 28px; display: flex; gap: 8px; align-items: center; letter-spacing: .04em; }
.crumbs a:hover { color: var(--navy); }
@media (max-width: 860px) { .page-hero .wrap { grid-template-columns: 1fr; } .page-hero { padding-top: calc(56px + 76px); } }

.split { display: grid; grid-template-columns: minmax(0, 4fr) minmax(0, 8fr); gap: clamp(32px, 6vw, 96px); }
.split .sticky { position: sticky; top: 100px; align-self: start; }
@media (max-width: 860px) { .split { grid-template-columns: 1fr; } .split .sticky { position: static; } }

.blocks { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border-top: 1px solid var(--navy); }
.block { padding: 32px 32px 32px 0; border-bottom: 1px solid var(--rule); }
.block:nth-child(odd) { border-right: 1px solid var(--rule); }
.block:nth-child(even) { padding-left: 32px; }
.block h3 { font-size: 22px; margin-bottom: 8px; }
.block p { color: var(--mute); font-size: 15px; }
.block ul li { font-size: 14px; padding: 7px 0; border-top: 1px solid var(--rule); display: flex; gap: 12px; }
.block ul li::before { content: "—"; color: var(--slate); flex: none; }
@media (max-width: 720px) { .blocks { grid-template-columns: 1fr; } .block, .block:nth-child(even) { padding: 28px 0; border-right: 0; } }

.principles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; border-top: 1px solid var(--navy); padding-top: 32px; }
.principles .n { font-family: var(--display); font-size: 13px; color: var(--slate); display: block; margin-bottom: 18px; }
.principles h3 { font-size: 22px; margin-bottom: 10px; }
.principles p { color: var(--mute); font-size: 15px; margin: 0; }
@media (max-width: 720px) { .principles { grid-template-columns: 1fr; gap: 28px; } }

.numlist { border-top: 1px solid var(--navy); }
.numlist li { display: grid; grid-template-columns: 48px 1fr; gap: 16px; padding: 16px 0; border-bottom: 1px solid var(--rule); font-size: 16px; }
.numlist li .n { font-family: var(--display); font-size: 14px; color: var(--slate); padding-top: 3px; }

.cta-band { padding: clamp(64px, 8vw, 110px) 0; }
.cta-band .wrap { display: grid; grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); gap: 40px; align-items: center; }
.cta-band .h-l { max-width: 16ch; }
.cta-band .actions { display: flex; gap: 12px; flex-wrap: wrap; justify-content: flex-end; }
@media (max-width: 760px) { .cta-band .wrap { grid-template-columns: 1fr; } .cta-band .actions { justify-content: flex-start; } }

.related { padding: clamp(48px, 6vw, 80px) 0; border-top: 1px solid var(--rule); }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.related-grid a { display: block; padding: 22px 0; border-top: 1px solid var(--navy); font-family: var(--display); font-size: 20px; color: var(--navy); transition: padding-left .25s var(--ease); }
.related-grid a small { display: block; font-family: var(--body); font-size: 11px; letter-spacing: .18em; text-transform: uppercase; color: var(--slate); font-weight: 600; margin-bottom: 8px; }
.related-grid a:hover { padding-left: 8px; }
@media (max-width: 720px) { .related-grid { grid-template-columns: 1fr; gap: 0; } }

/* Profile: navy hero, portrait framed, same portrait blurred as atmosphere */
.profile-hero .wrap { grid-template-columns: minmax(0, 7fr) minmax(0, 4fr); align-items: end; }
.profile-hero .bg img { filter: blur(48px) saturate(.5); opacity: .45; transform: scale(1.2); }
.profile-hero .photo { position: relative; aspect-ratio: 4 / 5; overflow: hidden; background: var(--navy-deep); box-shadow: 0 40px 80px -30px rgba(0,0,0,.6); }
.profile-hero .photo img { width: 100%; height: 100%; object-fit: cover; }
.profile-hero .photo::before { content: ""; position: absolute; inset: 0; border: 1px solid rgba(255,255,255,.25); transform: translate(12px, 12px); pointer-events: none; }
.profile-hero .role { font-size: 15px; color: rgba(255,255,255,.7); margin-top: 14px; }
.profile-hero .actions { display: flex; gap: 12px; margin-top: 32px; flex-wrap: wrap; }
.profile-hero .actions .btn { background: #fff; color: var(--navy); border-color: #fff; }
.profile-hero .actions .btn.ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.5); }
.profile-hero .actions .btn.ghost:hover { background: rgba(255,255,255,.1); border-color: #fff; }
.profile-hero .lead { max-width: 60ch; }
@media (max-width: 860px) {
  /* .profile-hero .wrap is declared after the generic .page-hero mobile rule with equal specificity, so it kept two columns on phones. */
  .profile-hero .wrap { grid-template-columns: 1fr; }
  .profile-hero .photo { max-width: 240px; order: -1; margin: 0 auto 28px; }
  .profile-hero .photo::before { transform: translate(8px, 8px); }
  .profile-hero .lead { max-width: none; }
}
.prose h3 { font-size: 22px; margin: 28px 0 8px; }
.prose h3:first-child { margin-top: 0; }
.prose p { color: var(--mute); }
.prose ul li { padding: 8px 0; border-top: 1px solid var(--rule); display: flex; gap: 12px; font-size: 15px; }
.prose ul li::before { content: "—"; color: var(--slate); flex: none; }
.prose ul li:last-child { border-bottom: 1px solid var(--rule); }

/* News page */
.article { display: grid; grid-template-columns: minmax(0, 4fr) minmax(0, 8fr); gap: clamp(32px, 6vw, 96px); padding: clamp(48px, 6vw, 80px) 0; border-bottom: 1px solid var(--rule); }
.article:first-child { padding-top: 0; }
.article .meta { position: sticky; top: 100px; align-self: start; }
.article .meta time { display: block; font-size: 13px; color: var(--slate); font-weight: 600; letter-spacing: .04em; margin-bottom: 14px; }
.article .meta .tags { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 24px; }
.article .meta .tags span { font-size: 11px; letter-spacing: .12em; text-transform: uppercase; border: 1px solid var(--rule); padding: 5px 10px; color: var(--mute); font-weight: 600; }
.article .meta img { width: 100%; aspect-ratio: 4/3; object-fit: cover; background: var(--tint); }
.article h2 { font-size: clamp(26px, 3vw, 36px); margin-bottom: 20px; }
.article p { color: var(--mute); }
.article .share { margin-top: 24px; display: flex; gap: 18px; font-size: 13px; }
.article .share a { color: var(--navy); font-weight: 600; border-bottom: 1px solid var(--rule); }
.article .share a:hover { border-bottom-color: var(--navy); }
@media (max-width: 860px) { .article { grid-template-columns: 1fr; } .article .meta { position: static; } }

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

.skip { position: absolute; left: -9999px; top: 8px; background: var(--navy); color: #fff; padding: 10px 14px; z-index: 100; }
.skip:focus { left: 8px; }

/* ---------- Photography (uniform navy tint so mixed sources read as one set) ---------- */
.photo-band { position: relative; overflow: hidden; aspect-ratio: 21 / 8; max-height: 520px; background: var(--navy); }
.photo-band img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.55) contrast(1.05); }
.photo-band::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(7,34,70,.55), rgba(7,34,70,.15)); mix-blend-mode: multiply; }
@media (max-width: 720px) { .photo-band { aspect-ratio: 16 / 9; } }

.about .wrap { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 6fr); gap: clamp(32px, 6vw, 96px); align-items: center; }
.about-photo { position: relative; aspect-ratio: 4 / 3; overflow: hidden; background: var(--navy); }
.about-photo img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.6); }
.about-photo::after { content: ""; position: absolute; inset: 0; background: rgba(7,34,70,.35); mix-blend-mode: multiply; }
.about-photo::before { content: ""; position: absolute; inset: 0; border: 1px solid var(--navy); transform: translate(-16px, 16px); pointer-events: none; z-index: 1; }
.about-photo { margin-left: 16px; }
.about .link { margin-top: 8px; }
@media (max-width: 860px) { .about .wrap { grid-template-columns: 1fr; } }

.has-bg { position: relative; background-size: cover; background-position: center; }
.has-bg::before { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(7,34,70,.96) 0%, rgba(7,34,70,.86) 55%, rgba(7,34,70,.72) 100%); }
.has-bg > .wrap { position: relative; }
