:root {
  --navy: #041f31;
  --navy-soft: #0b344a;
  --green: #4ea12d;
  --white: #ffffff;
  --neutral: #f6f8f6;
  --line: #dce3df;
  --text: #24333b;
  --muted: #5b686e;
  --max-width: 1240px;
  --side-padding: clamp(1.25rem, 4vw, 4rem);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--white);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

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

h1,
h2,
h3 {
  color: var(--navy);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1.08;
}

h1 {
  max-width: 720px;
  margin-bottom: 1.75rem;
  font-size: clamp(2.75rem, 5.4vw, 5.25rem);
}

h2 {
  max-width: 850px;
  margin-bottom: 1.75rem;
  font-size: clamp(2.15rem, 4.2vw, 4rem);
}

h3 {
  font-size: clamp(1.45rem, 2.2vw, 2rem);
}

p {
  margin-bottom: 1.25rem;
}

.container {
  width: min(100%, calc(var(--max-width) + (2 * var(--side-padding))));
  margin-inline: auto;
  padding-inline: var(--side-padding);
}

.narrow {
  max-width: 980px;
  margin-inline: auto;
}

.section {
  padding-block: clamp(5rem, 10vw, 9rem);
}

.section-neutral {
  background: var(--neutral);
}

.eyebrow {
  margin-bottom: 1.25rem;
  color: var(--green);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.eyebrow-light {
  color: #87c46c;
}

.skip-link {
  position: fixed;
  top: 0;
  left: 1rem;
  z-index: 1000;
  padding: 0.75rem 1rem;
  color: var(--white);
  background: var(--navy);
  transform: translateY(-120%);
}

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

.site-header {
  position: relative;
  z-index: 20;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.97);
}

.header-inner {
  min-height: 94px;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.brand {
  flex: 0 0 auto;
}

.brand img {
  width: 190px;
  height: auto;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2vw, 2rem);
  margin-left: auto;
}

.primary-nav a,
.footer-nav a {
  text-decoration: none;
}

.primary-nav a {
  color: var(--navy);
  font-size: 0.9rem;
}

.primary-nav a:hover,
.primary-nav a:focus-visible,
.footer-nav a:hover,
.footer-nav a:focus-visible,
.text-link:hover,
.text-link:focus-visible {
  color: var(--green);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.85rem 1.45rem;
  border: 1px solid transparent;
  text-decoration: none;
  font-size: 0.87rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease;
}

.button-small {
  min-height: 44px;
  padding: 0.65rem 1rem;
  white-space: nowrap;
}

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

.button-primary:hover,
.button-primary:focus-visible {
  background: #3f8725;
}

.button-outline {
  color: var(--navy);
  border-color: var(--navy);
}

.button-outline:hover,
.button-outline:focus-visible {
  color: var(--white);
  background: var(--navy);
}

.hero {
  overflow: hidden;
  padding-block: clamp(4.5rem, 8vw, 7.5rem);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  align-items: center;
  gap: clamp(3rem, 6vw, 7rem);
}

.hero-intro {
  max-width: 670px;
  margin-bottom: 2.25rem;
  color: var(--muted);
  font-size: clamp(1.1rem, 1.5vw, 1.3rem);
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

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

.text-link span {
  display: inline-block;
  margin-left: 0.4rem;
}

.hero-visual {
  position: relative;
  margin: 0;
}

.hero-visual::before {
  content: "";
  position: absolute;
  left: -1.25rem;
  bottom: -1.25rem;
  z-index: -1;
  width: 65%;
  height: 65%;
  background: var(--neutral);
}

.hero-visual img {
  width: 100%;
  aspect-ratio: 1.25 / 1;
  object-fit: cover;
  object-position: 57% center;
}

.positioning {
  border-top: 1px solid var(--line);
}

.positioning-copy {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(2rem, 5vw, 5rem);
  color: var(--muted);
  font-size: 1.08rem;
}

.section-heading {
  max-width: 860px;
  margin-bottom: clamp(3.5rem, 6vw, 5.5rem);
}

.section-heading > p:last-child {
  max-width: 680px;
  color: var(--muted);
  font-size: 1.08rem;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid #cdd6d1;
}

.service {
  padding: 2rem clamp(1.25rem, 2.5vw, 2.5rem) 1rem 0;
}

.service + .service {
  padding-left: clamp(1.25rem, 2.5vw, 2.5rem);
  border-left: 1px solid #cdd6d1;
}

.number {
  display: block;
  margin-bottom: 3.5rem;
  color: var(--green);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.service h3 {
  min-height: 2.15em;
  margin-bottom: 1.25rem;
}

.service p {
  min-height: 7em;
  color: var(--muted);
}

.service h4 {
  margin: 2rem 0 0.75rem;
  color: var(--navy);
  font-size: 0.73rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.service ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.service li {
  padding-block: 0.65rem;
  border-top: 1px solid #d7dedb;
  color: var(--navy);
}

.sector-list {
  border-top: 1px solid var(--line);
}

.sector-list article {
  display: grid;
  grid-template-columns: 90px minmax(0, 1fr);
  padding-block: 2.25rem;
  border-bottom: 1px solid var(--line);
}

.sector-list .number {
  margin: 0;
}

.sector-list article > div {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(2rem, 5vw, 6rem);
}

.sector-list h3,
.sector-list p {
  margin: 0;
}

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

.about {
  color: #d9e2e5;
  background: var(--navy);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(3rem, 8vw, 9rem);
}

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

.about-copy {
  font-size: 1.08rem;
}

.about-copy blockquote {
  margin: 3rem 0 0;
  padding: 2rem 0 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  border-left: 3px solid var(--green);
  color: var(--white);
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  line-height: 1.35;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.why-grid article {
  min-height: 270px;
  padding: 2rem;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.why-grid .number {
  margin-bottom: 3rem;
}

.why-grid h3 {
  margin-bottom: 1rem;
}

.why-grid p {
  max-width: 480px;
  margin-bottom: 0;
  color: var(--muted);
}

.contact {
  color: #d9e2e5;
  background: var(--navy-soft);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(3rem, 8vw, 9rem);
}

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

.contact-copy > p {
  max-width: 660px;
  margin-bottom: 3.5rem;
  font-size: 1.08rem;
}

.contact-links {
  border-top: 1px solid rgba(255, 255, 255, 0.25);
}

.contact-links > * {
  display: grid;
  grid-template-columns: 100px minmax(0, 1fr);
  gap: 1rem;
  padding-block: 1.2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}

.contact-links a {
  text-decoration: none;
}

.contact-links a:hover strong,
.contact-links a:focus-visible strong {
  color: #9bd782;
}

.contact-links span {
  color: #9fb2bc;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-links strong {
  overflow-wrap: anywhere;
  color: var(--white);
  font-weight: 500;
}

.site-footer {
  padding-block: 4rem 2rem;
  color: #b9c6cc;
  background: var(--navy);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 4rem;
}

.footer-brand {
  margin-bottom: 1rem;
  color: var(--white);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.footer-grid p {
  max-width: 530px;
}

.seo-line {
  color: var(--white);
  font-size: 0.9rem;
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(110px, 1fr));
  align-content: start;
  gap: 0.8rem 2rem;
}

.footer-bottom {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.17);
  font-size: 0.78rem;
}

.footer-bottom p {
  margin: 0;
}

.legal-header {
  border-bottom: 1px solid var(--line);
}

.legal-header .header-inner {
  justify-content: space-between;
}

.legal-back {
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
}

.legal-back:hover,
.legal-back:focus-visible {
  color: var(--green);
}

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

.legal-content {
  max-width: 850px;
}

.legal-content h1 {
  margin-bottom: 1rem;
}

.legal-draft {
  display: inline-block;
  margin-bottom: 3rem;
  padding: 0.6rem 0.8rem;
  color: var(--navy);
  border-left: 3px solid var(--green);
  background: var(--neutral);
  font-size: 0.85rem;
  font-weight: 700;
}

.legal-content h2 {
  margin-top: 3.5rem;
  margin-bottom: 1rem;
  font-size: clamp(1.55rem, 2.5vw, 2.2rem);
}

.legal-content h3 {
  margin-top: 2.25rem;
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
  font-weight: 600;
}

.legal-content p,
.legal-content li {
  color: var(--muted);
}

.legal-content address {
  margin-bottom: 1.5rem;
  color: var(--text);
  font-style: normal;
}

.legal-content a {
  color: var(--navy);
  text-underline-offset: 0.2em;
}

.legal-content a:hover,
.legal-content a:focus-visible {
  color: var(--green);
}

.legal-content ul {
  padding-left: 1.3rem;
}

.placeholder {
  padding: 1rem 1.25rem;
  border: 1px solid #dbc67b;
  background: #fffbee;
}

:focus-visible {
  outline: 3px solid rgba(78, 161, 45, 0.55);
  outline-offset: 4px;
}

@media (max-width: 1060px) {
  .primary-nav {
    display: none;
  }

  .header-inner .button {
    margin-left: auto;
  }

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

  .hero-copy {
    max-width: 900px;
  }

  .hero-visual {
    max-width: 900px;
  }

  .hero-visual img {
    aspect-ratio: 2 / 1;
  }

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

  .service {
    padding: 2rem 0 2.5rem;
    border-bottom: 1px solid #cdd6d1;
  }

  .service + .service {
    padding-left: 0;
    border-left: 0;
  }

  .service .number,
  .service p,
  .service h3 {
    min-height: auto;
  }

  .service .number {
    margin-bottom: 1.75rem;
  }

  .sector-list article > div {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

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

  .brand img {
    width: 155px;
  }

  .header-inner .button {
    min-height: 40px;
    padding: 0.55rem 0.8rem;
    font-size: 0.75rem;
  }

  .hero {
    padding-top: 3.5rem;
  }

  .hero-grid {
    gap: 3.5rem;
  }

  .hero-visual img {
    aspect-ratio: 1.35 / 1;
  }

  .positioning-copy,
  .about-grid,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .sector-list article {
    grid-template-columns: 45px minmax(0, 1fr);
  }

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

  .why-grid article {
    min-height: 230px;
  }

  .contact-links > * {
    grid-template-columns: 1fr;
    gap: 0.25rem;
  }

  .footer-nav {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .header-inner {
    gap: 0.75rem;
  }

  .brand img {
    width: 135px;
  }

  .header-inner .button {
    max-width: 125px;
    text-align: center;
    line-height: 1.25;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .sector-list article {
    grid-template-columns: 1fr;
  }

  .sector-list .number {
    margin-bottom: 1rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
