:root {
  --navy: #0b1d42;
  --navy-deep: #07152f;
  --green: #75b94a;
  --green-dark: #3d7623;
  --ink: #172033;
  --muted: #596174;
  --line: #dce2e8;
  --mist: #f3f6f2;
  --white: #fff;
  --shadow: 0 1rem 2.5rem rgb(11 29 66 / 10%);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  color-scheme: light;
}

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

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

a {
  color: var(--green-dark);
  text-underline-offset: 0.2em;
}

a:hover {
  text-decoration-thickness: 0.14em;
}

a:focus-visible {
  outline: 3px solid var(--green);
  outline-offset: 4px;
  border-radius: 0.15rem;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--navy);
  font-weight: 720;
  line-height: 1.12;
  letter-spacing: -0.025em;
}

h1 {
  margin-bottom: 1.4rem;
  font-size: clamp(2.7rem, 6vw, 5rem);
}

h2 {
  margin-bottom: 1.25rem;
  font-size: clamp(2rem, 4vw, 3.15rem);
}

h3 {
  margin-bottom: 0.75rem;
  font-size: 1.35rem;
}

.container {
  width: min(70rem, calc(100% - 2rem));
  margin-inline: auto;
}

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

.skip-link {
  position: fixed;
  z-index: 100;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.7rem 1rem;
  color: var(--navy);
  background: var(--white);
  font-weight: 700;
  transform: translateY(-200%);
}

.skip-link:focus {
  transform: translateY(0);
}

.topbar {
  color: var(--white);
  background: var(--navy);
  font-size: 0.88rem;
}

.topbar-inner {
  display: flex;
  justify-content: flex-end;
  gap: 1.4rem;
  padding-block: 0.45rem;
}

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

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  background: rgb(255 255 255 / 96%);
  box-shadow: 0 1px 0 rgb(11 29 66 / 10%);
}

.header-inner,
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.header-inner {
  min-height: 5.4rem;
}

.brand img {
  width: 13.5rem;
  height: auto;
}

.primary-nav,
.site-footer nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 3vw, 2rem);
}

.primary-nav a {
  color: var(--navy);
  font-weight: 700;
  text-decoration: none;
}

.primary-nav a:hover {
  color: var(--green-dark);
}

.hero {
  position: relative;
  display: grid;
  min-height: clamp(35rem, 75vh, 50rem);
  overflow: hidden;
  align-items: center;
  background: var(--navy);
}

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

.hero-image {
  object-fit: cover;
  object-position: center 47%;
}

.hero-overlay {
  background: linear-gradient(90deg, rgb(11 29 66 / 96%) 0%, rgb(11 29 66 / 78%) 50%, rgb(11 29 66 / 20%) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding-block: 6rem;
}

.hero-content h1 {
  max-width: 13ch;
  color: var(--white);
}

.hero-copy {
  max-width: 40rem;
  margin-bottom: 2rem;
  color: rgb(255 255 255 / 88%);
  font-size: clamp(1.1rem, 2vw, 1.3rem);
}

.eyebrow {
  margin-bottom: 0.8rem;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow-dark {
  color: var(--green-dark);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.button {
  display: inline-flex;
  min-height: 3rem;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.3rem;
  border: 2px solid var(--green);
  border-radius: 0.25rem;
  font-weight: 800;
  text-decoration: none;
}

.button-primary {
  color: var(--navy);
  background: var(--green);
}

.button-secondary {
  color: var(--white);
  background: transparent;
}

.button:hover {
  color: var(--navy);
  background: #8dcc62;
  border-color: #8dcc62;
}

.section {
  padding-block: clamp(4rem, 8vw, 7rem);
}

.split,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(2rem, 7vw, 6rem);
  align-items: start;
}

.prose {
  color: var(--muted);
  font-size: 1.1rem;
}

.prose p:last-child,
.card p:last-child {
  margin-bottom: 0;
}

.section-muted {
  background: var(--mist);
}

.section-heading {
  max-width: 45rem;
  margin-bottom: 2.7rem;
}

.section-heading > p:last-child {
  color: var(--muted);
  font-size: 1.1rem;
}

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

.card {
  padding: 2rem;
  background: var(--white);
  border-top: 0.3rem solid var(--green);
  box-shadow: var(--shadow);
}

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

.closing-statement {
  max-width: 45rem;
  margin: 2.5rem 0 0;
  color: var(--navy);
  font-size: 1.25rem;
  font-weight: 700;
}

.contact-section {
  color: rgb(255 255 255 / 82%);
  background: var(--navy);
}

.contact-section h2 {
  color: var(--white);
}

.contact-details {
  display: grid;
  gap: 1.4rem;
  font-style: normal;
}

.contact-details span {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--green);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-footer {
  padding-block: 1.5rem;
  color: rgb(255 255 255 / 72%);
  background: var(--navy-deep);
  font-size: 0.9rem;
}

.site-footer a[aria-current="page"] {
  text-decoration-thickness: 0.14em;
}

.page-intro {
  padding-block: clamp(4rem, 8vw, 6rem);
  background: var(--mist);
}

.page-intro h1 {
  margin-bottom: 1rem;
  font-size: clamp(2.7rem, 6vw, 4.5rem);
}

.page-intro p:last-child {
  max-width: 40rem;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.1rem;
}

.legal-content {
  padding-block: clamp(3rem, 7vw, 5rem);
}

.legal-content section {
  padding-block: 1rem;
}

.legal-content h2 {
  margin-bottom: 1rem;
  font-size: 1.7rem;
}

.legal-content address {
  margin-bottom: 1rem;
  font-style: normal;
}

.updated {
  margin-top: 2.5rem;
  color: var(--muted);
  font-size: 0.9rem;
}

@media (max-width: 48rem) {
  .topbar-inner {
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 0.25rem 1rem;
  }

  .header-inner {
    min-height: auto;
    align-items: flex-start;
    flex-direction: column;
    gap: 0.7rem;
    padding-block: 0.8rem;
  }

  .brand img {
    width: 10.5rem;
  }

  .primary-nav {
    width: 100%;
    gap: 1.25rem;
    overflow-x: auto;
    padding-bottom: 0.2rem;
    white-space: nowrap;
  }

  .hero {
    min-height: 38rem;
  }

  .hero-overlay {
    background: rgb(11 29 66 / 84%);
  }

  .hero-content {
    padding-block: 4rem;
  }

  .split,
  .contact-grid,
  .cards {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.75rem;
  }
}

@media (max-width: 25rem) {
  .actions,
  .button {
    width: 100%;
  }
}
