:root {
  --color-primary: #1f87ad;
  --color-accent: #239cc7;
  --color-bg: #edf4f8;
  --color-bg-strong: #e2eef3;
  --color-text: #242c2d;
  --color-muted: #56666a;
  --color-border: #c8dde6;
  --color-white: #ffffff;
  --shadow: 0 20px 45px rgba(31, 135, 173, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(180deg, rgba(226, 238, 243, 0.95), rgba(237, 244, 248, 0.72) 34rem),
    var(--color-bg);
  color: var(--color-text);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

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

figure {
  margin: 0;
}

a {
  color: var(--color-primary);
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

a:hover {
  color: #176a88;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--color-border);
  backdrop-filter: blur(14px);
}

.header-inner,
.container {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 4.5rem;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.15;
  text-decoration: none;
  overflow-wrap: break-word;
}

.nav-toggle {
  display: inline-grid;
  place-items: center;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  border: 1px solid var(--color-border);
  border-radius: 0.45rem;
  background: var(--color-white);
  color: var(--color-text);
  cursor: pointer;
}

.nav-toggle span,
.nav-toggle::before,
.nav-toggle::after {
  content: "";
  display: block;
  width: 1.25rem;
  height: 0.125rem;
  background: currentColor;
  border-radius: 999px;
}

.nav-toggle span {
  margin: 0.24rem 0;
}

.site-nav {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  display: none;
  background: var(--color-white);
  border-bottom: 1px solid var(--color-border);
}

.nav-open .site-nav {
  display: block;
}

.site-nav ul {
  display: grid;
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 0.75rem 0 1rem;
  list-style: none;
  gap: 0.25rem;
}

.site-nav a {
  display: block;
  padding: 0.76rem 0.85rem;
  border-radius: 0.45rem;
  color: var(--color-text);
  font-weight: 700;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  background: var(--color-bg-strong);
  color: #155d78;
}

.main {
  padding: 3rem 0 0;
}

.hero {
  padding: clamp(2rem, 8vw, 6rem) 0 clamp(2.25rem, 5vw, 4rem);
}

.hero-grid,
.split {
  display: grid;
  gap: clamp(1.5rem, 4vw, 3rem);
}

.hero-copy {
  max-width: 48rem;
}

.eyebrow {
  margin: 0 0 0.7rem;
  color: #176a88;
  font-size: 0.83rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--color-text);
  line-height: 1.12;
  letter-spacing: 0;
  overflow-wrap: break-word;
}

h1 {
  max-width: none;
  font-size: 2rem;
}

.page-title {
  max-width: none;
  font-size: 2.2rem;
}

h2 {
  font-size: 1.65rem;
}

h3 {
  font-size: 1.08rem;
}

.lead {
  max-width: 42rem;
  margin: 1.25rem 0 0;
  color: var(--color-muted);
  font-size: 1.1rem;
}

.contact-panel,
.card,
.info-panel {
  border: 1px solid var(--color-border);
  border-radius: 0.5rem;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow);
}

.contact-panel {
  align-self: end;
  padding: 1.25rem;
}

.contact-panel h2,
.info-panel h2 {
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.contact-list {
  display: grid;
  gap: 0.55rem;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--color-muted);
}

.contact-list a {
  font-weight: 700;
}

.section {
  padding: clamp(2.5rem, 6vw, 4.5rem) 0;
}

.section.alt {
  background: rgba(226, 238, 243, 0.66);
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.4rem;
}

.cards {
  display: grid;
  gap: 1rem;
}

.card {
  overflow: hidden;
  color: inherit;
  text-decoration: none;
}

.card-media {
  display: grid;
  min-height: 8.5rem;
  place-items: center;
  background:
    radial-gradient(circle at 30% 20%, rgba(35, 156, 199, 0.18), transparent 34%),
    linear-gradient(135deg, #ffffff, var(--color-bg-strong));
}

.card-media img {
  width: 5.5rem;
  height: 5.5rem;
  border-radius: 50%;
  object-fit: cover;
  border: 0.35rem solid var(--color-white);
  box-shadow: 0 10px 24px rgba(36, 44, 45, 0.14);
}

.card-body {
  padding: 1.25rem;
}

.card-body p,
.text-block p {
  margin: 0.8rem 0 0;
  color: var(--color-muted);
}

.brand-strip {
  display: grid;
  gap: 1rem;
}

.logos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(9rem, 1fr));
  gap: 0.75rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.logos li {
  display: grid;
  min-height: 5.5rem;
  place-items: center;
  padding: 1rem;
  border: 1px solid var(--color-border);
  border-radius: 0.5rem;
  background: var(--color-white);
}

.logos img {
  max-height: 3rem;
  object-fit: contain;
}

.wide-photo {
  margin-top: 2rem;
  overflow: hidden;
  border-radius: 0.5rem;
  background: var(--color-white);
  box-shadow: var(--shadow);
}

.wide-photo img {
  width: 100%;
  object-fit: cover;
}

.split {
  align-items: start;
}

.text-block {
  max-width: 46rem;
}

.text-block p:first-of-type {
  margin-top: 1.25rem;
}

.photo-panel {
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: 0.5rem;
  background: var(--color-white);
  box-shadow: var(--shadow);
}

.photo-panel img {
  width: 100%;
  object-fit: cover;
}

.photo-panel.small img {
  max-height: 18rem;
  object-fit: contain;
  padding: 2rem;
  background: linear-gradient(135deg, #ffffff, var(--color-bg-strong));
}

.info-panel {
  padding: clamp(1.25rem, 3vw, 2rem);
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.button {
  display: inline-flex;
  align-items: center;
  min-height: 2.75rem;
  padding: 0.75rem 1rem;
  border-radius: 0.45rem;
  background: var(--color-primary);
  color: var(--color-white);
  font-weight: 800;
  text-decoration: none;
}

.button.secondary {
  background: var(--color-white);
  color: var(--color-primary);
  border: 1px solid var(--color-border);
}

.button:hover {
  background: #176a88;
  color: var(--color-white);
}

.button.secondary:hover {
  background: var(--color-bg-strong);
  color: #155d78;
}

.site-footer {
  margin-top: clamp(2rem, 5vw, 4rem);
  background: #174f66;
  color: rgba(255, 255, 255, 0.88);
}

.footer-inner {
  display: grid;
  gap: 1rem;
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 2rem 0;
}

.footer-title {
  margin: 0;
  color: var(--color-white);
  font-weight: 800;
}

.footer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-contact a,
.site-footer a {
  color: var(--color-white);
}

.copyright {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.94rem;
}

@media (min-width: 760px) {
  .brand {
    font-size: 1.18rem;
  }

  h1 {
    max-width: 20ch;
    font-size: 3rem;
  }

  .page-title {
    font-size: 3.4rem;
  }

  h2 {
    font-size: 2.2rem;
  }

  .lead {
    font-size: 1.2rem;
  }

  .nav-toggle {
    display: none;
  }

  .site-nav {
    position: static;
    display: block;
    border: 0;
    background: transparent;
  }

  .site-nav ul {
    display: flex;
    width: auto;
    margin: 0;
    padding: 0;
    gap: 0.15rem;
  }

  .site-nav a {
    padding: 0.65rem 0.8rem;
  }

  .cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .split {
    grid-template-columns: minmax(0, 1.1fr) minmax(16rem, 0.9fr);
  }

  .footer-inner {
    grid-template-columns: 1fr auto;
    align-items: end;
  }

  .copyright {
    text-align: right;
  }
}

@media (min-width: 1120px) {
  .main {
    padding-top: 4rem;
  }

  h1 {
    font-size: 4rem;
  }

  .page-title {
    font-size: 3.85rem;
  }
}

@media (min-width: 1000px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr) 20rem;
    align-items: end;
  }
}

.brand-logo {
  height: 40px;
  width: 40px;
  object-fit: contain;
  margin-right: 0.6rem;
  vertical-align: middle;
}
.brand {
  display: inline-flex;
  align-items: center;
}
