:root {
  --ink: #172231;
  --muted: #586575;
  --line: #d9e0eb;
  --paper: #f4f7fb;
  --white: #ffffff;
  --blue: #4674b8;
  --blue-dark: #2f5593;
  --blue-soft: #eaf1fb;
  --warm: #8a6f3d;
  --charcoal: #111a28;
  --shadow: 0 22px 52px rgba(17, 26, 40, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

.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;
}

.site-header {
  position: sticky;
  z-index: 10;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 82px;
  padding: 10px clamp(22px, 4vw, 56px);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(217, 224, 235, 0.9);
  backdrop-filter: blur(12px);
}

.site-header.is-scrolled {
  box-shadow: 0 12px 34px rgba(17, 26, 40, 0.09);
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  min-width: 0;
  text-decoration: none;
}

.brand-logo {
  width: clamp(138px, 14vw, 176px);
  height: auto;
  max-height: 62px;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 6px;
}

.site-nav a {
  min-height: 42px;
  padding: 10px 13px;
  border-radius: 4px;
  color: var(--ink);
  text-decoration: none;
  font-size: 0.94rem;
  font-weight: 750;
}

.site-nav a:hover {
  color: var(--blue-dark);
  background: var(--blue-soft);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--ink);
  background: var(--white);
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 680px;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: var(--charcoal);
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(17, 26, 40, 0.94) 0%, rgba(17, 26, 40, 0.75) 43%, rgba(17, 26, 40, 0.3) 100%),
    linear-gradient(0deg, rgba(17, 26, 40, 0.48), rgba(17, 26, 40, 0));
}

.hero-content {
  position: relative;
  width: min(760px, calc(100% - 40px));
  margin-left: clamp(22px, 7vw, 92px);
  padding: 78px 0 72px;
  color: var(--white);
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--warm);
  font-size: 0.8rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
  overflow-wrap: break-word;
}

h1 {
  max-width: 780px;
  margin-bottom: 22px;
  font-size: 4.85rem;
  line-height: 1.02;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 20px;
  font-size: 3rem;
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.35rem;
  line-height: 1.18;
}

.lede {
  max-width: 680px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.28rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 850;
}

.button.primary {
  background: var(--blue);
  color: var(--white);
}

.button.primary:hover {
  background: var(--blue-dark);
}

.button.secondary {
  border: 1px solid rgba(255, 255, 255, 0.56);
  color: var(--white);
}

.button.secondary:hover {
  background: rgba(255, 255, 255, 0.12);
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 1px;
  width: min(620px, 100%);
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
}

.hero-proof span {
  flex: 1 1 160px;
  min-height: 82px;
  padding: 16px 18px;
  background: rgba(17, 26, 40, 0.38);
}

.hero-proof strong,
.hero-proof small {
  display: block;
}

.hero-proof strong {
  color: var(--white);
  font-size: 1.2rem;
  line-height: 1.1;
}

.hero-proof small {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.8rem;
  font-weight: 750;
  text-transform: uppercase;
}

.section {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
  padding: 92px 0;
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(280px, 1fr);
  gap: clamp(30px, 7vw, 90px);
  align-items: start;
}

.intro p:last-child,
.profile-copy p,
.leadership-copy {
  color: var(--muted);
  font-size: 1.08rem;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.work-section {
  width: 100%;
  max-width: none;
  padding-inline: max(20px, calc((100vw - 1160px) / 2));
  background: var(--white);
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.work-item {
  min-height: 420px;
  padding: 30px;
  border: 1px solid var(--line);
  border-top: 5px solid var(--blue);
  border-radius: 6px;
  background: var(--white);
  box-shadow: 0 16px 38px rgba(17, 26, 40, 0.08);
}

.item-number {
  display: inline-block;
  margin-bottom: 44px;
  color: var(--blue);
  font-weight: 900;
}

.work-item p {
  color: var(--muted);
}

dl {
  margin: 28px 0 0;
}

dl div {
  padding: 14px 0;
  border-top: 1px solid var(--line);
}

dt {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

dd {
  margin: 4px 0 0;
  font-weight: 780;
}

.profile-section {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 420px);
  gap: clamp(30px, 7vw, 90px);
  align-items: start;
}

.facts {
  display: grid;
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
  box-shadow: var(--shadow);
}

.facts div {
  padding: 22px;
  background: var(--white);
}

.facts span {
  display: block;
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.facts strong {
  display: block;
  font-size: 1.2rem;
}

.leadership-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 1fr);
  gap: clamp(30px, 7vw, 90px);
  align-items: start;
  border-top: 1px solid var(--line);
}

.credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.credentials span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 7px 12px;
  border: 1px solid rgba(70, 116, 184, 0.22);
  border-radius: 4px;
  color: var(--blue-dark);
  background: var(--blue-soft);
  font-size: 0.92rem;
  font-weight: 800;
}

.contact-section {
  width: 100%;
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 1fr);
  gap: clamp(30px, 7vw, 90px);
  padding-inline: max(20px, calc((100vw - 1160px) / 2));
  color: var(--white);
  background: var(--charcoal);
}

.contact-list {
  display: grid;
  gap: 12px;
  align-content: start;
  font-style: normal;
}

.contact-list a,
.contact-list span {
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--white);
  text-decoration: none;
  font-size: 1.15rem;
  font-weight: 760;
  overflow-wrap: anywhere;
}

.contact-list a:hover {
  color: #b8cdf0;
}

.site-footer {
  padding: 22px 20px;
  color: rgba(255, 255, 255, 0.65);
  background: var(--charcoal);
  text-align: center;
  font-size: 0.88rem;
}

.site-footer p {
  margin: 0;
  text-wrap: balance;
}

.footer-brand {
  white-space: nowrap;
}

@media (max-width: 1180px) {
  h1 {
    font-size: 4.2rem;
  }

  h2 {
    font-size: 2.6rem;
  }
}

@media (max-width: 900px) {
  .site-header {
    min-height: 72px;
    padding-inline: 18px;
  }

  .brand-logo {
    width: 142px;
    max-height: 58px;
  }

  .nav-toggle {
    display: inline-block;
  }

  .site-nav {
    position: absolute;
    inset: 72px 16px auto 16px;
    display: none;
    padding: 10px;
    color: var(--ink);
    background: var(--white);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: grid;
  }

  .site-nav a {
    min-height: 44px;
  }

  .hero {
    min-height: 640px;
  }

  .hero-content {
    margin-left: 20px;
    padding: 60px 0;
  }

  h1 {
    font-size: 3.25rem;
  }

  h2 {
    font-size: 2.25rem;
  }

  .lede {
    font-size: 1.12rem;
  }

  .section {
    padding: 72px 0;
  }

  .intro,
  .profile-section,
  .leadership-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .work-grid {
    grid-template-columns: 1fr;
  }

  .work-item {
    min-height: auto;
  }
}

@media (max-width: 560px) {
  .site-header {
    gap: 12px;
    padding-inline: 14px;
  }

  .brand-logo {
    width: 118px;
    max-height: 52px;
  }

  .hero {
    min-height: 620px;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(17, 26, 40, 0.95) 0%, rgba(17, 26, 40, 0.86) 58%, rgba(17, 26, 40, 0.56) 100%),
      linear-gradient(0deg, rgba(17, 26, 40, 0.45), rgba(17, 26, 40, 0));
  }

  h1 {
    font-size: 2.45rem;
  }

  h2 {
    font-size: 1.9rem;
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .hero-proof {
    display: grid;
  }

  .hero-proof span {
    min-height: 68px;
  }

  .section {
    width: min(100% - 32px, 1160px);
    padding: 58px 0;
  }

  .work-section,
  .contact-section {
    padding-inline: 16px;
  }

  .work-item {
    padding: 24px;
  }

  .contact-list a,
  .contact-list span {
    font-size: 1rem;
  }
}

@media (max-width: 360px) {
  .brand-logo {
    width: 104px;
  }
}
