:root {
  --blue: #075da8;
  --blue-dark: #123b68;
  --green: #3d9634;
  --orange: #f58220;
  --ink: #172033;
  --muted: #5c687a;
  --line: #dde5ee;
  --paper: #ffffff;
  --soft: #f5f8f7;
  --soft-blue: #eef6fb;
  --shadow: 0 18px 50px rgba(23, 32, 51, 0.1);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body.nav-open {
  overflow: hidden;
}

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

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

a:hover {
  color: var(--blue-dark);
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 20;
  padding: 0.6rem 0.8rem;
  border-radius: var(--radius);
  color: #fff;
  background: var(--blue-dark);
}

.skip-link:focus {
  top: 1rem;
}

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

.narrow {
  width: min(820px, calc(100% - 2rem));
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid rgba(221, 229, 238, 0.9);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  min-width: 0;
  color: var(--ink);
  text-decoration: none;
}

.brand img {
  width: 4.25rem;
  height: 4.25rem;
  object-fit: contain;
  flex: 0 0 auto;
}

.brand-text {
  display: grid;
  line-height: 1.1;
}

.brand-name {
  color: var(--blue);
  font-weight: 800;
  font-size: 1.08rem;
}

.brand-subtitle {
  color: var(--muted);
  font-size: 0.84rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 2.5rem;
  padding: 0.35rem 0.65rem;
  border-radius: var(--radius);
  color: var(--ink);
  font-size: 0.94rem;
  font-weight: 650;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--blue);
  background: var(--soft-blue);
}

.nav-toggle {
  display: none;
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
}

.nav-toggle-lines,
.nav-toggle-lines::before,
.nav-toggle-lines::after {
  display: block;
  width: 1.2rem;
  height: 2px;
  margin: 0 auto;
  border-radius: 999px;
  background: currentColor;
  content: "";
}

.nav-toggle-lines::before {
  transform: translateY(-0.42rem);
}

.nav-toggle-lines::after {
  transform: translateY(0.28rem);
}

.hero {
  border-bottom: 1px solid var(--line);
  background: var(--soft);
}

.hero-inner {
  display: grid;
  justify-items: center;
  gap: 1.35rem;
  padding: 3.5rem 0 2.8rem;
  text-align: center;
}

.hero-logo {
  width: min(18rem, 76vw);
  height: auto;
}

.eyebrow {
  margin: 0;
  color: var(--green);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.14;
  letter-spacing: 0;
}

h1 {
  max-width: 780px;
  color: var(--blue-dark);
  font-size: 2.75rem;
}

h2 {
  color: var(--blue-dark);
  font-size: 1.75rem;
}

h3 {
  color: var(--ink);
  font-size: 1.18rem;
}

p {
  margin: 0;
}

.lead {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.18rem;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 0.25rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.8rem;
  padding: 0.65rem 1rem;
  border: 2px solid var(--blue);
  border-radius: var(--radius);
  background: var(--blue);
  color: #fff;
  font-weight: 750;
  text-decoration: none;
  cursor: pointer;
}

.button:hover {
  border-color: var(--blue-dark);
  background: var(--blue-dark);
  color: #fff;
}

.button.secondary {
  background: #fff;
  color: var(--blue);
}

.button.secondary:hover {
  background: var(--soft-blue);
  color: var(--blue-dark);
}

.section {
  padding: 3.5rem 0;
}

.section.alt {
  background: var(--soft);
}

.section-header {
  display: grid;
  gap: 0.55rem;
  margin-bottom: 1.45rem;
}

.section-header p {
  max-width: 760px;
  color: var(--muted);
}

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

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

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

.card {
  display: grid;
  gap: 0.75rem;
  min-height: 100%;
  padding: 1.1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 8px 28px rgba(23, 32, 51, 0.05);
}

.card p,
.muted {
  color: var(--muted);
}

.kicker {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.tag {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 1.85rem;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  background: #eef8ed;
  color: #26721f;
  font-size: 0.84rem;
  font-weight: 800;
}

.fact-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
  box-shadow: var(--shadow);
}

.fact {
  display: grid;
  gap: 0.15rem;
  padding: 1rem;
  background: #fff;
}

.fact strong {
  color: var(--blue-dark);
  line-height: 1.25;
}

.fact span {
  color: var(--muted);
  font-size: 0.9rem;
}

.person-card {
  gap: 0;
  overflow: hidden;
  padding: 0;
}

.avatar {
  display: grid;
  place-items: center;
  width: 4.75rem;
  height: 4.75rem;
  overflow: hidden;
  border: 3px solid #fff;
  border-radius: 50%;
  background: var(--soft-blue);
  box-shadow: 0 0 0 1px var(--line);
  color: var(--blue);
  font-weight: 900;
  font-size: 1.2rem;
}

.person-media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--soft-blue);
}

.person-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.person-content {
  display: grid;
  gap: 0.75rem;
  padding: 1.1rem;
}

.mandate {
  color: var(--blue-dark);
  font-weight: 750;
}

.avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fact-list {
  display: grid;
  gap: 0.45rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.fact-list li {
  position: relative;
  padding-left: 1.05rem;
  color: var(--muted);
}

.fact-list li::before {
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: var(--orange);
  content: "";
}

.focus-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0.2rem 0 0;
  padding: 0;
  list-style: none;
}

.focus-list li {
  padding: 0.22rem 0.5rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--blue-dark);
  font-size: 0.82rem;
  font-weight: 700;
}

.empty-state {
  padding: 1.1rem;
  border: 1px dashed #c6d4e3;
  border-radius: var(--radius);
  background: #fff;
  color: var(--muted);
}

.page-title {
  padding: 3.25rem 0 2.25rem;
  border-bottom: 1px solid var(--line);
  background: var(--soft);
}

.page-title .container {
  display: grid;
  gap: 0.75rem;
}

.content {
  display: grid;
  gap: 1.4rem;
}

.content h2 {
  margin-top: 0.8rem;
}

.content ul {
  margin: 0;
  padding-left: 1.25rem;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 1.25rem;
  align-items: start;
}

.form {
  display: grid;
  gap: 0.85rem;
}

.field {
  display: grid;
  gap: 0.3rem;
}

.field label {
  font-weight: 750;
}

.field input,
.field textarea {
  width: 100%;
  min-height: 2.8rem;
  padding: 0.7rem 0.8rem;
  border: 1px solid #b9c7d6;
  border-radius: var(--radius);
  font: inherit;
  color: var(--ink);
  background: #fff;
}

.field textarea {
  min-height: 10rem;
  resize: vertical;
}

.field input:focus,
.field textarea:focus {
  outline: 3px solid rgba(7, 93, 168, 0.2);
  border-color: var(--blue);
}

.form-note {
  color: var(--muted);
  font-size: 0.92rem;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: var(--blue-dark);
  color: #fff;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  align-items: center;
  padding: 1.5rem 0;
}

.footer-inner a {
  color: #fff;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: flex-end;
}

@media (max-width: 900px) {
  .grid.three,
  .fact-strip,
  .contact-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .header-inner {
    min-height: 4.5rem;
  }

  .brand img {
    width: 3.5rem;
    height: 3.5rem;
  }

  .brand-subtitle {
    display: none;
  }

  .nav-toggle {
    display: inline-grid;
    place-items: center;
  }

  .site-nav {
    position: fixed;
    inset: 4.5rem 0 auto;
    display: none;
    padding: 0.75rem 1rem 1rem;
    border-bottom: 1px solid var(--line);
    background: #fff;
    box-shadow: var(--shadow);
  }

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

  .site-nav a {
    min-height: 2.75rem;
    padding: 0.55rem 0.75rem;
  }

  h1 {
    font-size: 2.1rem;
  }

  h2 {
    font-size: 1.45rem;
  }

  .hero-inner,
  .section {
    padding: 2.4rem 0;
  }

  .lead {
    font-size: 1.05rem;
  }

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

  .footer-inner {
    grid-template-columns: 1fr;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 430px) {
  .container,
  .narrow {
    width: min(100% - 1rem, 1120px);
  }

  .brand-name {
    font-size: 1rem;
  }

  .actions {
    display: grid;
    width: 100%;
  }

  .button {
    width: 100%;
  }

  .card {
    padding: 0.95rem;
  }
}
