@font-face {
  font-family: "Neue Regrade";
  src: url("assets/fonts/Neue-Regrade-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Neue Regrade";
  src: url("assets/fonts/Neue-Regrade-Semibold.otf") format("opentype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

:root {
  --navy: #122847;
  --green: #6ea143;
  --dark-green: #0f231b;
  --dark-green-2: #152e24;
  --clay: #a8463f;
  --muted: #758696;
  --line: rgba(110, 161, 67, 0.5);
  --white: #ffffff;
  --soft: #f7f8f6;
  --gutter: 50px;
  --max: 1400px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--navy);
  background: var(--white);
  font-family: Manrope, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.3;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

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

h1,
h2,
h3,
.display {
  font-family: "Neue Regrade", Manrope, sans-serif;
  font-weight: 400;
  letter-spacing: 0;
}

.page-wrapper {
  overflow: hidden;
}

.container {
  width: min(var(--max), 100%);
  margin: 0 auto;
  padding: 0 var(--gutter) 100px;
}

.container.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 40px;
  padding-bottom: 40px;
}

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

.section.dark {
  color: var(--white);
  background: var(--dark-green);
}

.site-header {
  position: relative;
  z-index: 10;
}

.site-header.overlay {
  position: absolute;
  inset: 0 0 auto;
  color: var(--white);
}

.brand-logo {
  --brand-mark-image: url("assets/current/logo-color.png");
  --brand-mark-height: 72px;
  --brand-mark-width: 84px;
  --brand-word-size: 30px;
  --brand-sub-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  width: 329px;
  max-width: 44vw;
  color: var(--navy);
  line-height: 1;
}

.brand-logo-white {
  --brand-mark-image: url("assets/current/logo-white.png");
  --brand-mark-height: 62px;
  --brand-mark-width: 110px;
  --brand-word-size: 28px;
  --brand-sub-size: 14px;
  color: var(--white);
}

.hero .brand-logo {
  width: 330px;
}

.brand-mark {
  flex: 0 0 var(--brand-mark-width);
  width: var(--brand-mark-width);
  height: var(--brand-mark-height);
  background-image: var(--brand-mark-image);
  background-position: left center;
  background-repeat: no-repeat;
  background-size: auto var(--brand-mark-height);
}

.brand-text {
  display: grid;
  gap: 4px;
  font-family: Manrope, ui-sans-serif, system-ui, sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  white-space: nowrap;
}

.brand-text span:first-child {
  color: inherit;
  font-size: var(--brand-word-size);
  line-height: 0.92;
}

.brand-text span:last-child {
  color: var(--green);
  font-size: var(--brand-sub-size);
  line-height: 1;
}

.brand-logo-white .brand-text span {
  color: var(--white);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 75px;
  color: inherit;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
}

.nav-links a {
  transition: color 180ms ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--green);
}

.site-header.overlay .nav-links a:hover,
.site-header.overlay .nav-links a.active {
  color: var(--white);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid currentColor;
  border-radius: 0;
  color: inherit;
  background: transparent;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
  box-shadow: 0 6px 0 currentColor, 0 -6px 0 currentColor;
}

.hero {
  position: relative;
  min-height: 100svh;
  color: var(--white);
  background: var(--dark-green);
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(15, 35, 27, 0.82), rgba(15, 35, 27, 0.42), rgba(15, 35, 27, 0.74)),
    linear-gradient(0deg, rgba(15, 35, 27, 0.86), rgba(15, 35, 27, 0.08));
  content: "";
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.38fr);
  gap: 40px;
  align-items: end;
  min-height: 100svh;
  padding: 190px var(--gutter) 90px;
}

.hero h1 {
  max-width: 620px;
  font-size: 112px;
  line-height: 0.9;
}

.hero-copy {
  max-width: 250px;
  margin-left: auto;
  color: rgba(255, 255, 255, 0.86);
  font-size: 16px;
}

.eyebrow {
  border-top: 1px solid var(--line);
  padding-top: 18px;
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
  text-transform: none;
}

.eyebrow.light {
  border-top-color: rgba(255, 255, 255, 0.16);
  color: var(--white);
}

.intro-block {
  display: grid;
  grid-template-columns: minmax(160px, 0.28fr) minmax(0, 1fr);
  gap: 40px;
  padding-top: 30px;
}

.lead {
  max-width: 950px;
  margin-left: auto;
  color: var(--navy);
  font-family: "Neue Regrade", Manrope, sans-serif;
  font-size: 76px;
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: 0;
}

.lead.pale {
  color: rgba(18, 40, 71, 0.14);
}

.contact-intro {
  max-width: 820px;
  margin-left: auto;
  color: var(--navy);
  font-family: Manrope, ui-sans-serif, system-ui, sans-serif;
  font-size: 36px;
  font-weight: 600;
  line-height: 1.18;
}

.split-copy {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px;
  max-width: 950px;
  margin: 48px 0 0 auto;
  font-weight: 700;
}

.section-image {
  width: 100%;
  height: 500px;
  margin-top: 70px;
  object-fit: cover;
}

.section-image.tall {
  height: 620px;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 40px;
}

.button {
  appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  min-height: 50px;
  border: 1px solid var(--navy);
  border-top-color: var(--green);
  padding: 0 18px 0 20px;
  color: var(--green);
  background: transparent;
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  transition: border-radius 180ms ease;
}

.button:hover {
  border-radius: 20px;
}

.button img {
  width: 16px;
}

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

.marquee {
  width: 100vw;
  margin-left: calc(var(--gutter) * -1);
  padding: 30px 0;
  overflow: hidden;
  white-space: nowrap;
}

.marquee-track {
  display: inline-flex;
  gap: 70px;
  align-items: center;
  animation: marquee 28s linear infinite;
}

.marquee span {
  color: var(--navy);
  font-family: "Neue Regrade", Manrope, sans-serif;
  font-size: 153px;
  font-style: italic;
  line-height: 1;
  letter-spacing: 0;
}

.marquee i {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--clay);
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.focus-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
  max-width: 970px;
  margin: 70px 0 0 auto;
}

.focus-card {
  min-height: 280px;
  border-top: 1px solid var(--green);
  padding-top: 12px;
}

.focus-number {
  display: inline-block;
  margin-bottom: 34px;
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
}

.focus-card h3,
.accordion-item h3 {
  max-width: 620px;
  color: var(--navy);
  font-family: Manrope, sans-serif;
  font-size: 24px;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: 0;
}

.focus-card p {
  margin-top: 24px;
  color: var(--navy);
  font-weight: 700;
}

.strategy-copy {
  display: grid;
  gap: 42px;
  max-width: 950px;
  margin: 0 0 0 auto;
  padding-top: 35px;
  color: var(--white);
}

.strategy-copy h2 {
  max-width: 950px;
  font-size: 78px;
  line-height: 1.04;
}

.strategy-copy p {
  max-width: 640px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
}

.accordion {
  max-width: 970px;
  margin: 70px 0 0 auto;
}

.accordion-item {
  border-top: 1px solid var(--navy);
  padding: 38px 0;
}

.accordion-item:last-child {
  border-bottom: 1px solid rgba(168, 70, 63, 0.26);
}

.accordion-item p {
  max-width: 720px;
  margin-top: 24px;
  color: var(--navy);
  font-size: 18px;
  font-weight: 700;
}

.contact-strip {
  display: grid;
  grid-template-columns: minmax(220px, 0.32fr) minmax(0, 1fr);
  gap: 70px;
}

.contact-details {
  display: grid;
  align-content: start;
  gap: 18px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
  font-weight: 700;
}

.contact-details a {
  color: var(--white);
  overflow-wrap: anywhere;
}

.site-form {
  width: 100%;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px 90px;
}

.field {
  display: grid;
  grid-template-columns: 26px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  padding: 0 0 28px;
}

.field.full {
  grid-column: 1 / -1;
}

.field-number {
  color: rgba(255, 255, 255, 0.4);
  font-size: 14px;
  font-weight: 700;
}

.field label {
  display: grid;
  gap: 4px;
  color: var(--white);
  font-size: 18px;
  font-weight: 800;
}

.field input,
.field textarea {
  width: 100%;
  border: 0;
  padding: 0;
  color: var(--white);
  background: transparent;
  font-size: 16px;
  font-weight: 600;
  outline: none;
}

.field textarea {
  min-height: 120px;
  resize: vertical;
}

.field input::placeholder,
.field textarea::placeholder {
  color: rgba(255, 255, 255, 0.38);
}

.form-actions {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-top: 40px;
}

.form-status {
  min-height: 22px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 14px;
  font-weight: 700;
}

.footer {
  color: var(--white);
  background: var(--dark-green);
}

.footer-heading {
  max-width: 950px;
  margin-left: auto;
  padding-top: 100px;
  font-size: 76px;
  line-height: 1.04;
}

.footer .site-form {
  margin-top: 70px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  margin-top: 80px;
  padding-top: 50px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  font-weight: 700;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  color: var(--white);
}

.powered a {
  color: #316dff;
  text-decoration: underline;
}

.powered {
  overflow-wrap: anywhere;
}

.contact-cta {
  display: grid;
  grid-template-columns: minmax(0, 0.5fr) minmax(0, 1fr);
  gap: 60px;
  align-items: start;
}

.contact-cta p {
  max-width: 620px;
  color: var(--navy);
  font-size: 28px;
  font-weight: 500;
}

.contact-cta > img {
  width: 100%;
  margin-top: 50px;
}

.legal-copy {
  max-width: 900px;
  margin-left: auto;
  color: var(--navy);
  font-size: 22px;
  font-weight: 600;
  overflow-wrap: anywhere;
}

.legal-copy p + p {
  margin-top: 24px;
}

.legal-copy h1 {
  margin-bottom: 18px;
  font-size: 48px;
  line-height: 1.05;
}

.hidden-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

@media (max-width: 991px) {
  :root {
    --gutter: 28px;
  }

  .container.nav-container {
    padding-top: 28px;
    padding-bottom: 28px;
  }

  .brand-logo,
  .hero .brand-logo {
    --brand-mark-height: 54px;
    --brand-mark-width: 62px;
    --brand-word-size: 23px;
    --brand-sub-size: 12px;
    width: 250px;
    max-width: 72vw;
  }

  .brand-logo-white {
    --brand-mark-width: 96px;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .nav-links {
    position: absolute;
    top: 86px;
    right: var(--gutter);
    left: var(--gutter);
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 18px;
    color: var(--navy);
    background: var(--white);
    box-shadow: 0 24px 60px rgba(18, 40, 71, 0.18);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 14px 0;
    border-bottom: 1px solid rgba(18, 40, 71, 0.12);
  }

  .site-header.overlay .nav-links a:hover,
  .site-header.overlay .nav-links a.active {
    color: var(--green);
  }

  .hero-inner,
  .intro-block,
  .contact-strip,
  .contact-cta {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    gap: 28px;
    padding-top: 150px;
    padding-bottom: 70px;
  }

  .hero-copy {
    max-width: 320px;
    margin-left: 0;
  }

  .hero h1 {
    font-size: 82px;
  }

  .lead {
    font-size: 56px;
    margin-left: 0;
  }

  .contact-intro {
    max-width: 760px;
    margin-left: 0;
    font-size: 32px;
  }

  .marquee span {
    font-size: 104px;
  }

  .strategy-copy h2,
  .footer-heading {
    font-size: 58px;
  }

  .split-copy,
  .focus-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .section-image,
  .section-image.tall {
    height: 420px;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (max-width: 600px) {
  :root {
    --gutter: 16px;
  }

  body {
    font-size: 14px;
  }

  .container {
    padding-bottom: 76px;
  }

  .brand-logo,
  .hero .brand-logo {
    --brand-mark-height: 42px;
    --brand-mark-width: 48px;
    --brand-word-size: 18px;
    --brand-sub-size: 10px;
    gap: 9px;
    width: 195px;
  }

  .brand-logo-white {
    --brand-mark-width: 76px;
  }

  .hero {
    min-height: 720px;
  }

  .hero-inner {
    min-height: 720px;
  }

  .hero h1 {
    font-size: 54px;
  }

  .lead {
    font-size: 38px;
  }

  .contact-intro {
    font-size: 28px;
    line-height: 1.2;
  }

  .marquee span {
    font-size: 64px;
  }

  .strategy-copy h2 {
    font-size: 42px;
  }

  .split-copy {
    gap: 24px;
    margin-top: 34px;
  }

  .marquee {
    padding: 18px 0;
  }

  .section-image,
  .section-image.tall {
    height: 300px;
  }

  .focus-card {
    min-height: auto;
  }

  .footer-heading {
    padding-top: 72px;
    font-size: 38px;
  }

  .legal-copy h1 {
    font-size: 38px;
  }

  .field {
    grid-template-columns: 20px minmax(0, 1fr);
    gap: 14px;
  }

  .button {
    width: 100%;
  }
}
