:root {
  --navy: #002e5b;
  --navy-deep: #002141;
  --navy-dark: #021946;
  --yellow: #fde428;
  --yellow-deep: #ECD423;
  --ink: #222222;
  --muted: #5a6570;
  --line: #e4e7eb;
  --paper: #ffffff;
  --mist: #f5f5f5;
  --blue: #6c98e1;
  --max: 1140px;
}
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Poppins, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.7;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--navy); }
.wrap { width: min(var(--max), calc(100% - 2rem)); margin-inline: auto; }
.skip { position: absolute; left: -999px; top: 0; }
.skip:focus { left: 1rem; top: 1rem; background: #fff; padding: .5rem 1rem; z-index: 200; }

/* Top bar */
.topbar {
  background: var(--navy-deep);
  color: #d7e2ee;
  font-size: .78rem;
  letter-spacing: .02em;
}
.topbar-inner {
  display: flex; justify-content: space-between; gap: 1rem;
  align-items: center; min-height: 38px; flex-wrap: wrap;
  padding: .35rem 0;
}
.topbar a { color: var(--yellow); text-decoration: none; font-weight: 600; }
.topbar a:hover { color: #fff; }
.top-offices { display: flex; gap: 1.6rem; flex-wrap: wrap; }
.top-offices span { color: #9eb0c2; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: var(--navy-dark);
  box-shadow: 0 2px 14px rgba(0, 17, 40, .25);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; min-height: 82px;
}
.logo img { height: 48px; width: auto; }
.nav { display: flex; align-items: center; gap: 1.45rem; }
.nav a, .nav .has-sub > span {
  text-decoration: none; font-weight: 600; letter-spacing: .04em;
  font-size: .86rem; color: #fff; text-transform: uppercase;
  cursor: pointer;
}
.nav a:hover, .nav .has-sub:hover > span { color: var(--yellow); }
.nav a.is-active, .has-sub.is-active > a { color: var(--yellow); }
.has-sub { position: relative; }
.has-sub .sub {
  display: none; position: absolute; top: 100%; left: 0;
  background: #fff; min-width: 260px; padding: .5rem 0;
  box-shadow: 0 12px 30px rgba(2, 25, 70, .16);
  border-top: 3px solid var(--yellow);
}
.has-sub:hover .sub { display: block; }
.has-sub .sub a {
  display: block; color: var(--navy); text-transform: none;
  font-size: .86rem; padding: .55rem 1rem; letter-spacing: 0;
  font-weight: 500;
}
.has-sub .sub a:hover { background: var(--mist); color: var(--navy-deep); }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--yellow); color: var(--navy-dark) !important;
  font-weight: 700; text-decoration: none; border: 0;
  padding: .72rem 1.2rem; border-radius: 2px; letter-spacing: .04em;
  text-transform: uppercase; font-size: .82rem; cursor: pointer;
}
.btn:hover { background: var(--yellow-deep); }
.btn-ghost {
  background: transparent; color: #fff !important;
  border: 1px solid rgba(255,255,255,.45);
}
.menu-toggle {
  display: none; background: none; border: 0; color: #fff;
  font-size: 1.7rem; cursor: pointer; line-height: 1;
}

/* Hero */
.hero { position: relative; min-height: 42vh; color: #fff; overflow: hidden; background: var(--navy); }
.slides { position: absolute; inset: 0; }
.slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0; transition: opacity 1s ease;
}
.slide.is-on { opacity: 1; z-index: 1; }
.hero-mask {
  position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(90deg, rgba(2,25,70,.82) 8%, rgba(0,46,91,.42) 62%, rgba(0,0,0,.28));
  pointer-events: none;
}
.hero-copy {
  position: relative; z-index: 3; min-height: 42vh;
  display: flex; flex-direction: column; justify-content: center;
  padding: 5rem 0 6rem;
}
.kicker {
  color: var(--yellow); font-weight: 700; letter-spacing: .22em;
  text-transform: uppercase; font-size: .78rem; margin: 0 0 .75rem;
}
h1, h2, h3, h4 { line-height: 1.2; color: var(--navy-dark); }
.hero h1 {
  color: #fff; font-size: clamp(1.35rem, 3.2vw, 2.55rem);
  margin: 0 0 1.2rem; font-weight: 700;
  max-width: none;
  overflow-wrap: normal;
  word-break: keep-all;
}
.hero h1 .nowrap { white-space: nowrap; }
@media (min-width: 700px) {
  .hero h1 { white-space: nowrap; }
}
.hero-break { display: none; }
.hero-actions { display: flex; gap: .8rem; flex-wrap: wrap; }
.hero-dots {
  position: absolute; bottom: 1.4rem; left: 50%; transform: translateX(-50%);
  display: flex; gap: .45rem; z-index: 4;
}
.hero-dots button {
  width: 10px; height: 10px; border-radius: 50%; border: 0;
  background: rgba(255,255,255,.4); cursor: pointer;
}
.hero-dots button.is-on { background: var(--yellow); }

.band {
  background: var(--yellow);
  color: var(--navy-dark);
  padding: 1.1rem 1rem;
  font-weight: 600;
}
.band-inner { display: flex; justify-content: space-between; gap: 1rem; align-items: center; flex-wrap: wrap; }
.band p { margin: 0; }
.band .btn { background: var(--navy-dark); color: #fff !important; }
.band .btn:hover { background: var(--navy); }

/* Page hero */
.page-hero {
  background: var(--navy) url("../images/content-1.jpg") center/cover no-repeat;
  color: #fff; padding: 4.2rem 0 3.2rem; position: relative;
}
.page-hero::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(2,25,70,.88), rgba(0,46,91,.72));
}
.page-hero .wrap { position: relative; }
.page-hero h1 { color: #fff; margin: .3rem 0 0; font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
.crumbs { font-size: .82rem; color: #c9d6e4; }
.crumbs a { color: var(--yellow); text-decoration: none; }

/* Sections */
section { padding: 4.4rem 0; }
.section-head { text-align: center; margin-bottom: 2.4rem; }
.section-head h2 { font-size: clamp(1.7rem, 3vw, 2.3rem); margin: 0 0 .5rem; }
.section-head p { margin: .7rem auto 0; max-width: 68ch; color: var(--muted); }
.gold-rule {
  width: 58px; height: 3px; background: var(--yellow); margin: .75rem auto 0; border: 0;
}
.mist { background: var(--mist); }
.navy-block { background: var(--navy-deep); color: #fff; }
.navy-block h2, .navy-block h3, .navy-block p { color: #fff; }
.navy-block .gold-rule { background: var(--yellow); }

.split {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 2.4rem; align-items: center;
}
.split img { width: 100%; height: 100%; object-fit: cover; min-height: 280px; }
.eyebrow {
  color: var(--navy); font-weight: 700; letter-spacing: .16em;
  text-transform: uppercase; font-size: .75rem; margin: 0 0 .4rem;
}

.cards-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.cards-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; }
.cards-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.2rem; }
.card {
  background: #fff; border: 1px solid var(--line); padding: 1.5rem 1.4rem;
  min-height: 100%;
}
.card h3 { margin: 0 0 .55rem; font-size: 1.15rem; }
.card p { margin: 0; color: var(--muted); }
.why-card { border-top: 3px solid var(--yellow); }
.why-card strong { display: block; color: var(--navy); font-size: 1.15rem; margin-bottom: .4rem; }

.service {
  background: #fff; border: 1px solid var(--line); overflow: hidden;
  display: flex; flex-direction: column; min-height: 100%;
}
.service img { width: 100%; height: 190px; object-fit: cover; }
.service .pad { padding: 1.2rem 1.2rem 1.35rem; flex: 1; display: flex; flex-direction: column; }
.service h3 { margin: 0 0 .45rem; font-size: 1.08rem; }
.service h3 a { text-decoration: none; color: var(--navy-dark); }
.service h3 a:hover { color: var(--navy); }
.service p { margin: 0 0 1rem; color: var(--muted); font-size: .94rem; flex: 1; }
.read-more {
  color: var(--navy); font-weight: 700; text-decoration: none; font-size: .82rem;
  letter-spacing: .04em; text-transform: uppercase;
}
.read-more:hover { color: var(--yellow-deep); }

.industries { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.industry {
  background: var(--navy); color: #fff; padding: 1.35rem 1.2rem; min-height: 100%;
}
.industry h3 { color: var(--yellow); margin: 0 0 .45rem; font-size: 1.02rem; }
.industry p { margin: 0; color: #d7e2ee; font-size: .9rem; }

.contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.contact-card { text-align: left; background: #fff; border: 1px solid var(--line); padding: 1.4rem; }
.contact-card h3 { margin: 0 0 .4rem; }
.contact-card p, .contact-card a { margin: .15rem 0; display: block; color: var(--muted); text-decoration: none; }
.contact-card a { color: var(--navy); font-weight: 600; }
.contact-card a:hover { color: var(--blue); }

/* Inner content */
.prose { max-width: 78ch; }
.prose h2 { margin: 2rem 0 .7rem; font-size: 1.45rem; }
.prose h3 { margin: 1.5rem 0 .5rem; font-size: 1.18rem; }
.prose h4 { margin: 1.2rem 0 .4rem; font-size: 1.05rem; }
.prose p { margin: 0 0 1rem; }
.prose ul { margin: 0 0 1.1rem; padding-left: 1.15rem; }
.prose li { margin: .25rem 0; }
.layout {
  display: grid; grid-template-columns: 1fr 300px; gap: 2.2rem; align-items: start;
}
.aside {
  background: var(--navy-dark); color: #fff; padding: 1.5rem 1.3rem;
  position: sticky; top: 100px;
}
.aside h3 { color: var(--yellow); margin: 0 0 .6rem; font-size: 1.05rem; }
.aside p { margin: 0 0 1rem; color: #d7e2ee; font-size: .92rem; }
.aside .btn { width: 100%; }
.quote {
  background: var(--mist); border-left: 4px solid var(--yellow);
  padding: 1.1rem 1.2rem; margin: 1.4rem 0;
}
.quote p { margin: 0 0 .6rem; font-style: italic; }
.quote cite { font-style: normal; font-weight: 700; color: var(--navy); font-size: .9rem; }

.role {
  background: #fff; border: 1px solid var(--line); padding: 1.2rem 1.25rem; margin: 0 0 1rem;
}
.role h3 { margin: 0 0 .5rem; }
.role h4 { margin: 1rem 0 .3rem; font-size: .92rem; letter-spacing: .04em; text-transform: uppercase; color: var(--navy); }
.chips { display: flex; flex-wrap: wrap; gap: .5rem; margin: 1rem 0 1.6rem; }
.chip {
  background: var(--navy); color: #fff; padding: .4rem .7rem; font-size: .8rem; font-weight: 600;
}

.faq details {
  background: #fff; border: 1px solid var(--line); padding: .9rem 1.1rem; margin: 0 0 .7rem;
}
.faq summary { cursor: pointer; font-weight: 700; color: var(--navy-dark); }
.faq details[open] summary { color: var(--navy); }
.faq details p, .faq details ul { margin: .7rem 0 0; color: var(--muted); }

.job {
  background: #fff; border: 1px solid var(--line); padding: 1.3rem 1.3rem 1.1rem;
  display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; align-items: flex-end;
}
.job h3 { margin: 0 0 .3rem; }
.job .meta { color: var(--muted); font-size: .9rem; }
.job .date { color: var(--navy); font-weight: 700; font-size: .85rem; }

.policy h2 { font-size: 1.2rem; }
.policy p, .policy li { color: var(--ink); }

footer {
  background: var(--navy-deep); color: #c9d4e3; padding: 2.2rem 0 1.4rem; font-size: .92rem;
}
footer a { color: var(--yellow); text-decoration: none; }
footer a:hover { color: #fff; }
.foot-grid {
  display: flex; justify-content: space-between; gap: 1.4rem; flex-wrap: wrap;
  align-items: flex-start;
}
.foot-grid h3 { color: #fff; margin: 0 0 .6rem; font-size: .95rem; }
.foot-grid ul { list-style: none; margin: 0; padding: 0; }
.foot-grid li { margin: .25rem 0; }
.credit {
  margin-top: 1.4rem; border-top: 1px solid rgba(255,255,255,.12);
  padding-top: 1rem; text-align: left;
}

@media (max-width: 980px) {
  .cards-4, .industries { grid-template-columns: 1fr 1fr; }
  .layout { grid-template-columns: 1fr; }
  .aside { position: static; }
}
@media (max-width: 900px) {
  .cards-3, .contact-grid, .split { grid-template-columns: 1fr; }
  .topbar { text-align: center; }
  .topbar-inner {
    justify-content: center;
    flex-direction: column;
    text-align: center;
  }
  .top-offices {
    justify-content: center;
    flex-direction: column;
    align-items: center;
    gap: .2rem;
    width: 100%;
  }
  .header-inner {
    position: relative;
    justify-content: center;
  }
  .site-header .logo {
    display: flex;
    justify-content: center;
    width: 100%;
  }
  .site-header .logo img { margin-inline: auto; }
  footer { text-align: center; }
  .foot-grid {
    justify-content: center;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .foot-grid > div { width: 100%; }
  .footer-logo {
    display: flex;
    justify-content: center;
  }
  .footer-logo img {
    display: block;
    margin-inline: auto;
  }
  .credit { text-align: center; }
  .nav {
    display: none;
  }
  .nav.is-open {
    display: flex; flex-direction: column; position: absolute;
    inset: auto 0  auto; top: 100%;
    background: var(--navy-dark); padding: 1rem 1.2rem 1.4rem;
    align-items: center; gap: .85rem; text-align: center;
    box-shadow: 0 12px 24px rgba(0,0,0,.25);
  }
  .has-sub { width: 100%; text-align: center; }
  .has-sub .sub {
    display: block; position: static; background: transparent;
    box-shadow: none; border: 0; padding: .3rem 0 0; min-width: 0;
  }
  .has-sub .sub a { color: #d7e2ee; padding: .35rem 0; }
  .menu-toggle {
    display: block;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
  }
  .hero, .hero-copy { min-height: 36vh; }
}
@media (max-width: 640px) {
  .hero-break { display: block; }
  .cards-4, .industries, .cards-2 { grid-template-columns: 1fr; }
  .top-offices { gap: .2rem; }
  .band-inner { justify-content: center; text-align: center; }
}
