
:root {
  --blue-900: #04173a;
  --blue-800: #062250;
  --blue-700: #032c78;
  --blue-600: #003399;
  --blue-500: #1a4fbf;
  --blue-300: #7fa3e8;
  --blue-100: #e6edfb;
  --blue-050: #f3f6fd;

  --red-700: #9d0000;
  --red-600: #cc0000;
  --red-500: #e01717;
  --red-050: #fdeeee;

  --ink-900: #10151f;
  --ink-700: #2c3444;
  --ink-600: #4a5468;
  --ink-500: #667187;
  --ink-300: #aab3c4;
  --line:    #dfe4ee;
  --line-2:  #eef1f7;
  --paper:   #ffffff;
  --paper-2: #f6f8fc;

  --ok-600:  #12784f;
  --ok-050:  #e8f6ef;

  --font-display: "Barlow Condensed", "Arial Narrow", Impact, sans-serif;
  --font-body: "Source Sans 3", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;

  --wrap: 1200px;
  --gutter: 24px;
  --radius: 4px;
  --radius-lg: 8px;

  --shadow-sm: 0 1px 2px rgba(16, 21, 31, .06), 0 2px 6px rgba(16, 21, 31, .05);
  --shadow-md: 0 4px 10px rgba(16, 21, 31, .07), 0 12px 28px rgba(16, 21, 31, .08);
  --shadow-lg: 0 10px 24px rgba(4, 23, 58, .12), 0 28px 60px rgba(4, 23, 58, .14);

  --section-y: clamp(56px, 7vw, 104px);
  --ease: cubic-bezier(.4, 0, .2, 1);
}

/* --- 2. Reset ------------------------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-700);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, svg { max-width: 100%; height: auto; display: block; }
button, input, select, textarea { font: inherit; color: inherit; }
a { color: var(--blue-600); text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--red-600); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--blue-900);
  line-height: 1.12;
  letter-spacing: .002em;
  margin: 0 0 .5em;
  text-wrap: balance;
}

h1 { font-size: clamp(2.4rem, 5.2vw, 3.9rem); }
h2 { font-size: clamp(1.95rem, 3.6vw, 2.85rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); }
h4 { font-size: 1.15rem; }
p  { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }

:focus-visible {
  outline: 3px solid var(--blue-500);
  outline-offset: 2px;
  border-radius: 2px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 999;
  background: var(--blue-900);
  color: #fff;
  padding: 12px 20px;
}
.skip-link:focus { left: 0; color: #fff; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* --- 3. Layout primitives ------------------------------------------------ */
.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.wrap--narrow { max-width: 880px; }

.section { padding-block: var(--section-y); }
.section--tint { background: var(--paper-2); }
.section--line { border-top: 1px solid var(--line-2); }

.section-head { max-width: 760px; margin-bottom: clamp(32px, 4vw, 52px); }
.section-head--center { margin-inline: auto; text-align: center; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--red-600);
  margin: 0 0 14px;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--red-600);
}
.section-head--center .eyebrow::after {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--red-600);
}

.lede {
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  color: var(--ink-600);
}

/* --- 4. Buttons ---------------------------------------------------------- */
.btn {
  --btn-bg: var(--blue-600);
  --btn-fg: #fff;
  --btn-bd: var(--blue-600);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 26px;
  border: 1px solid var(--btn-bd);
  border-radius: var(--radius);
  background: var(--btn-bg);
  color: var(--btn-fg);
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease);
}
.btn:hover { color: var(--btn-fg); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn:active { transform: translateY(0); }
.btn svg { width: 18px; height: 18px; fill: currentColor; }

.btn--accent { --btn-bg: var(--red-600); --btn-bd: var(--red-600); }
.btn--accent:hover { --btn-bg: var(--red-700); --btn-bd: var(--red-700); }

.btn--ghost {
  --btn-bg: transparent;
  --btn-fg: #fff;
  --btn-bd: rgba(255, 255, 255, .5);
}
.btn--ghost:hover { --btn-bg: #fff; --btn-fg: var(--blue-900); --btn-bd: #fff; }

.btn--outline { --btn-bg: transparent; --btn-fg: var(--blue-600); --btn-bd: var(--line); }
.btn--outline:hover { --btn-bg: var(--blue-600); --btn-fg: #fff; --btn-bd: var(--blue-600); }

.btn--sm { padding: 10px 20px; font-size: .85rem; }
.btn--block { width: 100%; }

/* --- 5. Top bar + header ------------------------------------------------- */
.topbar {
  background: var(--blue-900);
  color: rgba(255, 255, 255, .72);
  font-size: .84rem;
}
.topbar__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 28px;
  align-items: center;
  justify-content: space-between;
  min-height: 40px;
}
.topbar__note { margin: 0; letter-spacing: .02em; }
.topbar__contact {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 24px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.topbar__contact a { color: rgba(255, 255, 255, .85); font-weight: 600; }
.topbar__contact a:hover { color: #fff; }
.topbar__contact li + li { position: relative; }
.topbar__contact li + li::before {
  content: "";
  position: absolute;
  left: -12px;
  top: 50%;
  width: 1px;
  height: 12px;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, .25);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, .97);
  backdrop-filter: saturate(160%) blur(8px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .25s var(--ease);
}
.site-header.is-stuck { box-shadow: var(--shadow-sm); }

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 78px;
}

.brand { display: flex; align-items: center; gap: 14px; }
.brand img { width: auto; height: 46px; }
.brand__text { display: flex; flex-direction: column; line-height: 1.05; }
.brand__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--blue-900);
  letter-spacing: .01em;
}
.brand__name em { font-style: normal; color: var(--red-600); }
.brand__tag {
  font-size: .66rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--ink-500);
  margin-top: 3px;
}

.site-nav ul {
  display: flex;
  align-items: center;
  gap: 4px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.site-nav__link {
  display: block;
  position: relative;
  padding: 10px 14px;
  font-weight: 600;
  font-size: .95rem;
  color: var(--ink-700);
}
.site-nav__link::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 2px;
  height: 2px;
  background: var(--red-600);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s var(--ease);
}
.site-nav__link:hover { color: var(--blue-900); }
.site-nav__link:hover::after,
.site-nav__link.is-active::after { transform: scaleX(1); }
.site-nav__link.is-active { color: var(--blue-900); }
.site-nav li:last-child { margin-left: 12px; }

.nav-toggle {
  display: none;
  width: 46px;
  height: 42px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--blue-900);
  border-radius: 2px;
  transition: transform .25s var(--ease), opacity .2s var(--ease);
}
.nav-toggle span + span { margin-top: 5px; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* --- 6. Hero ------------------------------------------------------------- */
.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(1100px 620px at 78% 8%, rgba(0, 51, 153, .55), transparent 62%),
    linear-gradient(150deg, #04173a 0%, #062250 46%, #021029 100%);
  color: #fff;
  padding-block: clamp(68px, 9vw, 128px);
}
.hero::before {
  /* engineering grid */
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .05) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(circle at 70% 30%, #000 10%, transparent 72%);
  -webkit-mask-image: radial-gradient(circle at 70% 30%, #000 10%, transparent 72%);
}
.hero::after {
  /* red accent sweep */
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--red-600) 0 28%, var(--blue-600) 28% 62%, transparent 62%);
}
.hero .wrap { position: relative; z-index: 1; }

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr);
  gap: clamp(36px, 5vw, 72px);
  align-items: center;
}

.hero h1 { color: #fff; margin-bottom: 20px; }
.hero h1 em { font-style: normal; color: var(--blue-300); }
.hero__eyebrow { color: #fff; }
.hero__eyebrow::before { background: var(--red-500); }
.hero__lede {
  font-size: clamp(1.06rem, 1.5vw, 1.24rem);
  color: rgba(255, 255, 255, .82);
  max-width: 58ch;
  margin-bottom: 32px;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; }

.hero-card {
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: var(--radius-lg);
  padding: 30px;
  backdrop-filter: blur(6px);
}
.hero-card h2 {
  color: #fff;
  font-size: 1.3rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding-bottom: 14px;
  margin-bottom: 6px;
  border-bottom: 1px solid rgba(255, 255, 255, .18);
}
.hero-card ul { margin: 0; padding: 0; list-style: none; }
.hero-card li {
  display: flex;
  gap: 14px;
  padding: 15px 0;
  border-bottom: 1px dashed rgba(255, 255, 255, .16);
  color: rgba(255, 255, 255, .85);
  font-size: .97rem;
}
.hero-card li:last-child { border-bottom: 0; padding-bottom: 0; }
.hero-card li b {
  flex: none;
  width: 34px;
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--blue-300);
  letter-spacing: .06em;
}

/* --- 7. Stat strip ------------------------------------------------------- */
.stats {
  background: var(--blue-700);
  color: #fff;
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.stat {
  padding: 34px 26px;
  border-left: 1px solid rgba(255, 255, 255, .14);
}
.stat:first-child { border-left: 0; }
.stat__num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 3.4vw, 2.8rem);
  font-weight: 700;
  line-height: 1;
  color: #fff;
}
.stat__num span { color: var(--red-500); }
.stat__label {
  display: block;
  margin-top: 8px;
  font-size: .86rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .72);
}

/* --- 8. Intro / prose ---------------------------------------------------- */
.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(36px, 5vw, 72px);
  align-items: start;
}
.split--aside { grid-template-columns: minmax(0, 1.25fr) minmax(0, .75fr); }

.prose p { color: var(--ink-600); }
.prose p + p { margin-top: 1.1em; }
.prose strong { color: var(--ink-900); font-weight: 600; }
.prose blockquote {
  margin: 28px 0;
  padding: 4px 0 4px 26px;
  border-left: 3px solid var(--red-600);
  font-size: 1.12rem;
  font-style: italic;
  color: var(--blue-800);
}

.callout {
  background: var(--blue-050);
  border: 1px solid var(--blue-100);
  border-left: 4px solid var(--blue-600);
  border-radius: var(--radius);
  padding: 28px 30px;
}
.callout h3 { font-size: 1.2rem; margin-bottom: .55em; }
.callout p { font-size: .98rem; color: var(--ink-600); }

.tick-list { margin: 0; padding: 0; list-style: none; }
.tick-list li {
  position: relative;
  padding: 0 0 0 34px;
  margin-bottom: 14px;
  color: var(--ink-600);
}
.tick-list li:last-child { margin-bottom: 0; }
.tick-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .42em;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--blue-600) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23fff'%3E%3Cpath d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E") center/12px no-repeat;
}

/* --- 9. Service cards ---------------------------------------------------- */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 34px 30px;
  overflow: hidden;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
}
.card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: var(--red-600);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform .3s var(--ease);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--blue-100);
}
.card:hover::before { transform: scaleY(1); }

.card__icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 20px;
  border-radius: var(--radius);
  background: var(--blue-050);
  color: var(--blue-600);
  border: 1px solid var(--blue-100);
}
.card__icon svg { width: 26px; height: 26px; fill: currentColor; }
.card h3 { margin-bottom: .6em; }
.card p { font-size: .97rem; color: var(--ink-600); }
.card__no {
  position: absolute;
  top: 22px;
  right: 26px;
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--line-2);
  line-height: 1;
}

/* --- 10. Principals (partner) cards -------------------------------------- */
.principals {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 24px;
}

.principal {
  display: flex;
  flex-direction: column;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
}
.principal:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--blue-100);
}

.principal__logo {
  display: grid;
  place-items: center;
  height: 132px;
  padding: 22px 26px;
  background: #fff;
  border-bottom: 1px solid var(--line-2);
}
.principal__logo img {
  max-height: 88px;
  width: auto;
  object-fit: contain;
  filter: saturate(1);
  transition: transform .3s var(--ease);
}
.principal:hover .principal__logo img { transform: scale(1.04); }

/* Light marks that would disappear on white get a dark tile instead. */
.principal__logo--dark {
  background: #0f1114;
  padding: 14px 18px;
  border-bottom-color: #0f1114;
}
.principal__logo--dark img { max-height: 104px; }

.principal__logo--cover {
  padding: 0;
  height: 132px;
  background: #111;
}
.principal__logo--cover img {
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: cover;
}

.principal__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 26px 26px 22px;
}
.principal__country {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  align-self: flex-start;
  margin-bottom: 10px;
  padding: 4px 11px;
  border-radius: 999px;
  background: var(--red-050);
  color: var(--red-700);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.principal__name {
  font-size: 1.32rem;
  margin-bottom: .5em;
}
.principal__desc {
  font-size: .95rem;
  line-height: 1.65;
  color: var(--ink-600);
  margin-bottom: 18px;
}
.principal__desc strong { color: var(--ink-900); font-weight: 600; }

.principal__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 20px;
  padding: 0;
  list-style: none;
}
.principal__tags li {
  padding: 3px 10px;
  border: 1px solid var(--line);
  border-radius: 3px;
  background: var(--paper-2);
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .04em;
  color: var(--ink-500);
  text-transform: uppercase;
}

.principal__foot {
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px dashed var(--line);
}
.learn-more {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-weight: 700;
  font-size: .84rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--red-600);
}
.learn-more svg {
  width: 15px;
  height: 15px;
  fill: currentColor;
  transition: transform .25s var(--ease);
}
.learn-more:hover { color: var(--blue-600); }
.learn-more:hover svg { transform: translateX(4px); }

/* --- 11. CTA band -------------------------------------------------------- */
.cta-band {
  position: relative;
  overflow: hidden;
  background: linear-gradient(120deg, var(--blue-900) 0%, var(--blue-700) 100%);
  color: #fff;
  padding-block: clamp(52px, 6vw, 84px);
}
.cta-band::before {
  content: "";
  position: absolute;
  right: -80px;
  top: -80px;
  width: 420px;
  height: 420px;
  border: 60px solid rgba(255, 255, 255, .04);
  border-radius: 50%;
}
.cta-band .wrap { position: relative; z-index: 1; }
.cta-band__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 28px 40px;
  align-items: center;
  justify-content: space-between;
}
.cta-band h2 { color: #fff; margin-bottom: .35em; }
.cta-band p { color: rgba(255, 255, 255, .8); max-width: 62ch; }
.cta-band__actions { display: flex; flex-wrap: wrap; gap: 14px; }

/* --- 12. Page banner ----------------------------------------------------- */
.page-banner {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(760px 420px at 82% 0%, rgba(0, 51, 153, .5), transparent 62%),
    linear-gradient(140deg, #04173a 0%, #062250 100%);
  color: #fff;
  padding-block: clamp(52px, 6.5vw, 92px);
}
.page-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .045) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(circle at 78% 40%, #000 5%, transparent 70%);
  -webkit-mask-image: radial-gradient(circle at 78% 40%, #000 5%, transparent 70%);
}
.page-banner .wrap { position: relative; z-index: 1; }
.page-banner h1 { color: #fff; margin-bottom: .3em; }
.page-banner p { color: rgba(255, 255, 255, .8); max-width: 62ch; }

.crumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  font-size: .86rem;
  color: rgba(255, 255, 255, .6);
}
.crumbs a { color: rgba(255, 255, 255, .8); }
.crumbs a:hover { color: #fff; }
.crumbs li + li::before { content: "/"; margin-right: 8px; color: rgba(255, 255, 255, .4); }

/* --- 13. Leadership ------------------------------------------------------ */
.leader {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 3.4vw, 46px);
  box-shadow: var(--shadow-sm);
}
.leader + .leader { margin-top: 30px; }
.leader--feature { border-top: 4px solid var(--red-600); }

.leader__aside { position: sticky; top: 110px; }

.leader__portrait {
  position: relative;
  display: grid;
  place-items: center;
  aspect-ratio: 4 / 4.4;
  border-radius: var(--radius);
  background: linear-gradient(150deg, var(--blue-800), var(--blue-600));
  color: #fff;
  overflow: hidden;
}
.leader__portrait::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .06) 1px, transparent 1px);
  background-size: 34px 34px;
}
.leader__initials {
  position: relative;
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 6vw, 4.4rem);
  font-weight: 700;
  letter-spacing: .06em;
  line-height: 1;
}
.leader__portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Headshots: keep the head, crop from the bottom. */
  object-position: center top;
}

/* Real photograph: drop the placeholder gradient and its grid overlay. */
.leader__portrait--photo { background: var(--ink-900); }
.leader__portrait--photo::before { content: none; }

.leader__meta { margin-top: 22px; }
.leader__meta dl { margin: 0; }
.leader__meta dt {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-500);
}
.leader__meta dd {
  margin: 3px 0 16px;
  font-size: .97rem;
  color: var(--ink-700);
  font-weight: 600;
}
.leader__meta dd:last-child { margin-bottom: 0; }

.leader__name { font-size: clamp(1.7rem, 2.6vw, 2.25rem); margin-bottom: .18em; }
.leader__role {
  display: block;
  margin-bottom: 22px;
  font-weight: 700;
  font-size: .86rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--red-600);
}
.leader__body p { color: var(--ink-600); }
.leader__body p + p { margin-top: 1.05em; }

.highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 14px;
  margin-top: 28px;
  padding-top: 26px;
  border-top: 1px solid var(--line-2);
  list-style: none;
  padding-inline: 0;
}
.highlights li {
  padding: 16px 18px;
  border-radius: var(--radius);
  background: var(--paper-2);
  border: 1px solid var(--line-2);
  font-size: .92rem;
  line-height: 1.5;
  color: var(--ink-600);
}
.highlights li b {
  display: block;
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 600;
  color: var(--blue-800);
  letter-spacing: .02em;
  margin-bottom: 2px;
}

/* --- 14. Timeline -------------------------------------------------------- */
.timeline { position: relative; margin: 0; padding: 0 0 0 34px; list-style: none; }
.timeline::before {
  content: "";
  position: absolute;
  left: 7px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(var(--blue-600), var(--blue-100));
}
.timeline li { position: relative; padding-bottom: 30px; }
.timeline li:last-child { padding-bottom: 0; }
.timeline li::before {
  content: "";
  position: absolute;
  left: -34px;
  top: .45em;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--blue-600);
}
.timeline b {
  display: block;
  font-family: var(--font-display);
  font-size: 1.22rem;
  color: var(--red-600);
  letter-spacing: .04em;
}
.timeline span { color: var(--ink-600); font-size: .97rem; }

/* --- 15. Contact page ---------------------------------------------------- */
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, .75fr);
  gap: clamp(32px, 4vw, 56px);
  align-items: start;
}

.form-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(26px, 3vw, 42px);
  box-shadow: var(--shadow-sm);
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}
.field { display: flex; flex-direction: column; gap: 7px; }
.field--full { grid-column: 1 / -1; }

.field label {
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--ink-700);
}
.field label .req { color: var(--red-600); }

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 13px 15px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink-900);
  font-size: 1rem;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.field textarea { resize: vertical; min-height: 150px; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--blue-600);
  box-shadow: 0 0 0 3px rgba(0, 51, 153, .12);
}
.field input[aria-invalid="true"],
.field textarea[aria-invalid="true"],
.field select[aria-invalid="true"] { border-color: var(--red-600); }

.field__error {
  font-size: .84rem;
  font-weight: 600;
  color: var(--red-600);
}
.field__hint { font-size: .84rem; color: var(--ink-500); }

/* honeypot — hidden from humans, visible to bots */
.hp-field {
  position: absolute !important;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-foot {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
  align-items: center;
  justify-content: space-between;
  margin-top: 26px;
  padding-top: 24px;
  border-top: 1px solid var(--line-2);
}
.form-foot p { font-size: .86rem; color: var(--ink-500); max-width: 46ch; }

.alert {
  display: flex;
  gap: 14px;
  padding: 18px 20px;
  margin-bottom: 26px;
  border-radius: var(--radius);
  border: 1px solid;
  font-size: .96rem;
}
.alert svg { flex: none; width: 22px; height: 22px; fill: currentColor; }
.alert h3 { font-size: 1.1rem; margin-bottom: .25em; color: inherit; }
.alert p { margin: 0; }
.alert--ok  { background: var(--ok-050); border-color: #b5e0cb; color: var(--ok-600); }
.alert--err { background: var(--red-050); border-color: #f2c2c2; color: var(--red-700); }

.info-card {
  background: var(--blue-900);
  color: rgba(255, 255, 255, .82);
  border-radius: var(--radius-lg);
  padding: clamp(26px, 3vw, 38px);
}
.info-card h2 { color: #fff; font-size: 1.5rem; }
.info-card > p { font-size: .96rem; }
.info-list { margin: 26px 0 0; padding: 0; list-style: none; }
.info-list li {
  display: flex;
  gap: 16px;
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, .13);
}
.info-list .ico {
  flex: none;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .08);
  color: var(--blue-300);
}
.info-list .ico svg { width: 19px; height: 19px; fill: currentColor; }
.info-list b {
  display: block;
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .55);
  margin-bottom: 3px;
}
.info-list a { color: #fff; font-weight: 600; }
.info-list a:hover { color: var(--blue-300); }

/* --- 16. Legal pages ----------------------------------------------------- */
.legal { display: grid; grid-template-columns: 260px minmax(0, 1fr); gap: clamp(32px, 4vw, 64px); align-items: start; }

.legal-toc {
  position: sticky;
  top: 110px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--paper-2);
}
.legal-toc h2 {
  font-size: .8rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-500);
  margin-bottom: 14px;
}
.legal-toc ol { margin: 0; padding: 0; list-style: none; counter-reset: toc; }
.legal-toc li { counter-increment: toc; }
.legal-toc a {
  display: block;
  padding: 7px 0;
  font-size: .93rem;
  color: var(--ink-600);
  border-bottom: 1px solid var(--line-2);
}
.legal-toc li:last-child a { border-bottom: 0; }
.legal-toc a::before { content: counter(toc) ". "; color: var(--blue-300); font-weight: 700; }
.legal-toc a:hover { color: var(--blue-600); }

.legal-body h2 {
  font-size: clamp(1.4rem, 2.2vw, 1.75rem);
  margin-top: 2.2em;
  padding-top: 1.1em;
  border-top: 1px solid var(--line-2);
}
.legal-body > h2:first-child { margin-top: 0; padding-top: 0; border-top: 0; }
.legal-body h3 { font-size: 1.15rem; margin-top: 1.6em; }
.legal-body p, .legal-body li { color: var(--ink-600); }
.legal-body ul { padding-left: 22px; }
.legal-body li { margin-bottom: 9px; }

.legal-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 30px;
  padding: 18px 22px;
  margin-bottom: 34px;
  border-radius: var(--radius);
  background: var(--blue-050);
  border: 1px solid var(--blue-100);
  font-size: .9rem;
}
.legal-meta b { color: var(--blue-800); }

/* --- 17. Footer ---------------------------------------------------------- */
.site-footer {
  background: var(--blue-900);
  color: rgba(255, 255, 255, .68);
  padding-top: clamp(48px, 6vw, 76px);
  font-size: .95rem;
  border-top: 4px solid var(--red-600);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.4fr 1.2fr;
  gap: 36px 40px;
  padding-bottom: 44px;
}

.footer-logo {
  height: 52px;
  width: auto;
  background: #fff;
  padding: 6px 10px;
  border-radius: var(--radius);
  margin-bottom: 18px;
}
.footer-blurb { font-size: .93rem; line-height: 1.7; }

.footer-head {
  color: #fff;
  font-size: 1.02rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, .14);
}

.footer-links, .footer-contact { margin: 0; padding: 0; list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: rgba(255, 255, 255, .68); font-size: .93rem; }
.footer-links a:hover { color: #fff; padding-left: 4px; }

.footer-contact li { margin-bottom: 16px; line-height: 1.5; }
.footer-contact a { color: rgba(255, 255, 255, .85); }
.footer-contact a:hover { color: #fff; }
.footer-contact__label {
  display: block;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .45);
  margin-bottom: 2px;
}

.footer-reps {
  margin: 0;
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, .12);
  text-align: center;
  font-size: .9rem;
  color: rgba(255, 255, 255, .6);
}
.footer-reps strong { color: rgba(255, 255, 255, .88); font-weight: 600; }

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 28px;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0 26px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  font-size: .87rem;
}
.footer-bottom p { margin: 0; }
.footer-legal { display: flex; gap: 22px; margin: 0; padding: 0; list-style: none; }
.footer-legal a { color: rgba(255, 255, 255, .68); }
.footer-legal a:hover { color: #fff; }

/* --- 18. Back to top ----------------------------------------------------- */
.to-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 90;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: var(--radius);
  background: var(--blue-600);
  color: #fff;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity .25s var(--ease), transform .25s var(--ease), background .2s var(--ease), visibility .25s;
  box-shadow: var(--shadow-md);
}
.to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.to-top:hover { background: var(--red-600); }
.to-top svg { width: 20px; height: 20px; fill: currentColor; }

/* --- 19. Reveal-on-scroll ------------------------------------------------ */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .6s var(--ease), transform .6s var(--ease);
}
.reveal.is-in { opacity: 1; transform: none; }

/* --- 20. Responsive ------------------------------------------------------ */
@media (max-width: 1080px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .split, .split--aside, .contact-grid { grid-template-columns: minmax(0, 1fr); }
  .legal { grid-template-columns: minmax(0, 1fr); }
  .legal-toc { position: static; }
}

@media (max-width: 940px) {
  .hero__grid { grid-template-columns: minmax(0, 1fr); }
  .stats__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .stat:nth-child(3) { border-left: 0; }
  .stat:nth-child(n+3) { border-top: 1px solid rgba(255, 255, 255, .14); }
  .leader { grid-template-columns: minmax(0, 1fr); }
  .leader__aside { position: static; max-width: 280px; }
}

@media (max-width: 860px) {
  .nav-toggle { display: block; }

  .site-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md);
    display: none;
  }
  .site-nav.is-open { display: block; }
  .site-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px var(--gutter) 22px;
  }
  .site-nav__link { padding: 14px 0; border-bottom: 1px solid var(--line-2); }
  .site-nav__link::after { left: 0; right: 0; bottom: 0; }
  .site-nav li:last-child { margin: 16px 0 0; }
  .site-nav .btn { width: 100%; }

  .topbar__note { display: none; }
  .topbar__inner { justify-content: center; }
}

@media (max-width: 620px) {
  body { font-size: 16px; }
  .stats__grid { grid-template-columns: minmax(0, 1fr); }
  .stat { border-left: 0; border-top: 1px solid rgba(255, 255, 255, .14); padding: 24px; }
  .stat:first-child { border-top: 0; }
  .footer-grid { grid-template-columns: minmax(0, 1fr); }
  .field-grid { grid-template-columns: minmax(0, 1fr); }
  .principals { grid-template-columns: minmax(0, 1fr); }
  .brand__text { display: none; }
  .brand img { height: 42px; }
  .hero__actions .btn, .cta-band__actions .btn { flex: 1 1 100%; }
  .highlights { grid-template-columns: minmax(0, 1fr); }
}

/* --- 21. Motion & print -------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    transition-duration: .001ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

@media print {
  .topbar, .site-header, .site-footer, .to-top, .cta-band, .hero__actions { display: none !important; }
  body { color: #000; font-size: 12pt; }
  .card, .principal, .leader { break-inside: avoid; border: 1px solid #999; }
}
