.hero-logo {
  position: absolute;
  top: 25px;
  width: min(440px, 90%);
  height: auto;
  aspect-ratio: 1;
  object-fit: contain;
  border-radius: 50%;
  z-index: 1;
}

.brand-mark {
  overflow: hidden;
  padding: 0;
}

.brand-mark img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.site-header {
  gap: 24px;
  position: fixed;
  background: rgba(8, 63, 42, .97);
  box-shadow: 0 6px 24px rgba(0, 0, 0, .12);
  backdrop-filter: blur(10px);
}

html {
  scroll-padding-top: 88px;
}

.site-header .brand,
.header-call {
  flex-shrink: 0;
}

.site-header nav {
  margin-left: auto;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 7px;
}

.social-links a,
.social-links .is-disabled {
  width: 32px;
  height: 32px;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 50%;
  display: grid;
  place-items: center;
  transition: background .2s, border-color .2s, color .2s, transform .2s;
}

.social-links svg {
  width: 15px;
  height: 15px;
  fill: currentColor;
}

.social-links a:hover,
.social-links a:focus-visible {
  background: var(--green);
  border-color: var(--green);
  color: var(--deep);
  transform: translateY(-2px);
}

.social-links a:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}

.social-links .is-disabled {
  opacity: .38;
  cursor: not-allowed;
}

@media (max-width: 1080px) {
  .site-header nav {
    display: none;
  }
}

@media (max-width: 520px) {
  html {
    scroll-padding-top: 74px;
  }

  .site-header {
    gap: 10px;
  }

  .site-header .brand strong {
    font-size: 16px;
  }

  .site-header .brand small {
    font-size: 8px;
    letter-spacing: 1.8px;
  }

  .site-header .brand-mark {
    width: 36px;
    height: 36px;
  }

  .social-links {
    gap: 3px;
    margin-left: auto;
  }

  .social-links a,
  .social-links .is-disabled {
    width: 27px;
    height: 27px;
  }

  .social-links svg {
    width: 13px;
    height: 13px;
  }
}

@media (max-width: 390px) {
  .site-header .brand > span:last-child {
    display: none;
  }
}

.cta {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(480px, 1.15fr);
  align-items: center;
  gap: clamp(60px, 8vw, 140px);
  padding-inline: 7vw;
  text-align: left;
}

.cta .contact-copy {
  max-width: 620px;
}

.cta .contact-copy .eyebrow {
  justify-content: flex-start;
}

.cta .contact-copy > a {
  display: inline-block;
  margin: 35px 0 20px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--green);
  font: 600 clamp(28px, 4vw, 56px) Oswald;
}

.cta .contact-copy > a span {
  color: var(--green);
}

.cta .contact-copy > p:last-child {
  max-width: 520px;
  color: #92a199;
  font-size: 14px;
  line-height: 1.7;
}

.contact-form {
  padding: clamp(28px, 4vw, 52px);
  background: #fff;
  color: var(--ink);
  box-shadow: 0 25px 70px rgba(0, 0, 0, .3);
}

.contact-form .eyebrow {
  justify-content: flex-start;
  margin-bottom: 12px;
  color: var(--deep);
}

.contact-form h3 {
  margin: 0 0 30px;
  font: 600 clamp(28px, 3vw, 40px) Oswald;
  text-transform: uppercase;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.contact-form label > span {
  display: block;
  margin-bottom: 8px;
  color: #4f5954;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .5px;
  text-transform: uppercase;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid #cfd6d1;
  border-radius: 0;
  background: #f6f7f4;
  color: var(--ink);
  font: inherit;
  outline: none;
}

.contact-form input,
.contact-form select {
  height: 48px;
  padding: 0 14px;
}

.contact-form textarea {
  min-height: 120px;
  padding: 13px 14px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(34, 227, 109, .16);
}

.form-address,
.form-message {
  grid-column: 1 / -1;
}

.contact-form .form-consent {
  display: grid;
  grid-template-columns: 18px 1fr;
  align-items: start;
  gap: 10px;
  margin: 20px 0;
}

.contact-form .form-consent input {
  width: 18px;
  height: 18px;
  margin: 1px 0 0;
  accent-color: var(--green);
}

.contact-form .form-consent span {
  margin: 0;
  color: #68716c;
  font-size: 11px;
  line-height: 1.5;
  letter-spacing: 0;
  text-transform: none;
}

.contact-form .form-consent a {
  color: var(--deep);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

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

.contact-form button {
  width: 100%;
  border: 0;
  padding: 16px 20px;
  background: var(--green);
  color: var(--deep);
  cursor: pointer;
  font: 700 14px "DM Sans", sans-serif;
}

.contact-form button:hover,
.contact-form button:focus-visible {
  background: #46ed82;
}

.contact-form button span {
  margin-left: 14px;
}

.form-status {
  min-height: 20px;
  margin: 12px 0 0;
  color: var(--deep);
  font-size: 12px;
  line-height: 1.5;
}

@media (max-width: 1000px) {
  .cta {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .cta .contact-copy {
    text-align: center;
    margin-inline: auto;
  }

  .cta .contact-copy .eyebrow {
    justify-content: center;
  }
}

@media (max-width: 600px) {
  .cta {
    padding-inline: 20px;
  }

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

  .form-address,
  .form-message {
    grid-column: auto;
  }
}
