:root {
  color-scheme: light;
  --green: #046533;
  --green-dark: #034c27;
  --charcoal: #3a3a3a;
  --gray: #666666;
  --mid-gray: #c9c9c9;
  --light-gray: #f3f5f3;
  --white: #ffffff;
  --page-width: 1300px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

[id] {
  scroll-margin-top: 96px;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--white);
  color: var(--charcoal);
  font-family: Helvetica, Arial, sans-serif;
  font-size: 17px;
  line-height: 1.7;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
}

body.menu-is-open {
  overflow: hidden;
}

.top-anchor {
  display: block;
  width: 0;
  height: 0;
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

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

button {
  font: inherit;
}

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

h1,
h2,
h3 {
  letter-spacing: 0;
}

h1 {
  font-size: 48px;
  line-height: 1.2;
}

h2 {
  margin-bottom: 28px;
  color: var(--green);
  font-size: 34px;
  line-height: 1.35;
}

h3 {
  margin-bottom: 20px;
  color: var(--green);
  font-size: 22px;
  line-height: 1.45;
  text-transform: uppercase;
}

p {
  margin-bottom: 22px;
}

.page-width {
  width: min(calc(100% - 40px), var(--page-width));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 8px;
  left: 8px;
  padding: 10px 14px;
  background: var(--white);
  color: var(--charcoal);
  transform: translateY(-160%);
}

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

.site-header {
  position: fixed;
  z-index: 40;
  top: 0;
  right: 0;
  left: 0;
  color: var(--white);
  background: rgba(53, 53, 53, 0.24);
  transition: background-color 180ms ease, box-shadow 180ms ease;
}

.site-header-scrolled,
.legal-page .site-header {
  background: rgba(53, 53, 53, 0.94);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.14);
}

.header-inner {
  display: flex;
  min-height: 96px;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--white);
  text-decoration: none;
}

.brand img {
  width: 64px;
  height: 64px;
}

.brand span {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.brand strong {
  font-size: 21px;
}

.brand small {
  margin-top: 4px;
  color: #e4e4e4;
  font-size: 14px;
}

.menu-button {
  display: grid;
  width: 46px;
  height: 46px;
  padding: 11px 8px;
  align-content: space-between;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 30px;
  height: 3px;
  background: currentColor;
}

.menu-button:focus-visible,
.menu-close:focus-visible,
.back-to-top:focus-visible {
  outline: 3px solid #8fd0ad;
  outline-offset: 4px;
}

.menu-overlay {
  position: fixed;
  z-index: 70;
  inset: 0;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease, visibility 180ms ease;
}

.menu-overlay-open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.menu-backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  border: 0;
  background: rgba(0, 0, 0, 0.52);
  cursor: pointer;
}

.menu-panel {
  position: relative;
  width: min(360px, 88vw);
  height: 100%;
  overflow-y: auto;
  padding: 80px 34px 38px;
  background: #535353;
  box-shadow: 10px 0 35px rgba(0, 0, 0, 0.2);
  transform: translateX(-100%);
  transition: transform 220ms ease;
  overscroll-behavior: contain;
}

.menu-overlay-open .menu-panel {
  transform: translateX(0);
}

.menu-close {
  position: absolute;
  top: 23px;
  right: 24px;
  width: 40px;
  height: 40px;
  border: 0;
  background: transparent;
  color: var(--white);
  cursor: pointer;
}

.menu-close::before,
.menu-close::after {
  position: absolute;
  top: 19px;
  left: 7px;
  width: 27px;
  height: 2px;
  background: currentColor;
  content: "";
}

.menu-close::before {
  transform: rotate(45deg);
}

.menu-close::after {
  transform: rotate(-45deg);
}

.menu-panel nav {
  display: flex;
  flex-direction: column;
}

.menu-panel nav a {
  padding: 9px 0;
  color: var(--white);
  font-size: 25px;
  font-weight: 700;
  line-height: 1.35;
  text-decoration: none;
}

.menu-panel nav a:hover,
.menu-panel nav a:focus-visible {
  color: #8fd0ad;
}

.menu-panel nav a.sub-link {
  padding-left: 18px;
  color: #d7d7d7;
  font-size: 18px;
  font-weight: 600;
}

.menu-login {
  display: inline-block;
  margin-top: 35px;
  padding-top: 22px;
  border-top: 1px solid #777777;
  color: var(--white);
  font-weight: 700;
}

.hero {
  position: relative;
  display: flex;
  height: 88svh;
  min-height: 640px;
  max-height: 780px;
  align-items: center;
  overflow: hidden;
  background: #525855;
  color: var(--white);
}

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

.hero-media {
  z-index: 0;
  display: block;
}

.hero-media img {
  object-fit: cover;
  object-position: center 46%;
}

.hero-overlay {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: rgba(45, 45, 45, 0.52);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 80px;
}

.hero-kicker {
  margin-bottom: 18px;
  color: #e5e5e5;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 680px;
  margin-bottom: 44px;
  color: var(--white);
}

.hero-actions {
  display: flex;
  gap: 18px;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 10px 22px;
  border: 2px solid transparent;
  border-radius: 2px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  transition: background-color 150ms ease, border-color 150ms ease, color 150ms ease;
}

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

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

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

.button-green:hover,
.button-green:focus-visible {
  background: var(--charcoal);
}

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

.button-light:hover,
.button-light:focus-visible {
  background: var(--white);
  color: var(--green-dark);
}

.section {
  position: relative;
  padding: 96px 0;
}

.section-wedge {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 76px;
  pointer-events: none;
}

.hero-wedge {
  background: var(--white);
  clip-path: polygon(0 12%, 34% 76%, 100% 14%, 100% 100%, 0 100%);
}

.wedge-down {
  background: var(--light-gray);
  clip-path: polygon(0 72%, 42% 72%, 50% 15%, 58% 72%, 100% 72%, 100% 100%, 0 100%);
}

.wedge-up {
  background: var(--white);
  clip-path: polygon(0 22%, 42% 22%, 50% 78%, 58% 22%, 100% 22%, 100% 100%, 0 100%);
}

.section-label {
  margin-bottom: 10px;
  color: var(--gray);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
}

.section-label-light {
  color: #cae1d4;
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(340px, 0.75fr);
  gap: 64px;
  align-items: center;
}

.section-copy {
  max-width: 730px;
}

.about-image {
  width: 100%;
  max-width: 560px;
  overflow: hidden;
  margin: 0 0 0 auto;
  border-radius: 6px;
  box-shadow: 0 16px 45px rgba(30, 53, 41, 0.16);
}

.about-image img {
  width: 100%;
  max-height: 390px;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center 47%;
}

.facts {
  display: grid;
  max-width: 660px;
  margin: 42px 0 0;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid #d9d9d9;
}

.facts div {
  padding: 25px 18px 0 0;
}

.facts dt {
  color: var(--green);
  font-size: 30px;
  font-weight: 700;
  line-height: 1.2;
}

.facts dd {
  margin: 7px 0 0;
  color: var(--gray);
  font-size: 14px;
  line-height: 1.45;
}

.services {
  padding-top: 112px;
  background: var(--light-gray);
}

.service-grid {
  display: grid;
  margin-top: 46px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 56px;
}

.service-block {
  padding: 0 26px 25px;
}

.service-icon {
  width: 132px;
  height: 132px;
  margin: 0 auto 24px;
  object-fit: contain;
}

.service-block h3 {
  text-align: center;
}

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

.service-block li {
  position: relative;
  margin-bottom: 10px;
  padding-left: 25px;
}

.service-block li::before {
  position: absolute;
  top: 10px;
  left: 0;
  width: 9px;
  height: 9px;
  background: var(--green);
  content: "";
  transform: rotate(45deg);
}

.service-note {
  max-width: 960px;
  margin: 20px auto 38px;
  padding-top: 32px;
  border-top: 1px solid #d5d8d5;
  font-size: 19px;
  text-align: center;
}

.sales {
  padding-block: 96px;
}

.sales-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(360px, 1.15fr);
  gap: 90px;
  align-items: start;
}

.sales-copy {
  padding-top: 34px;
  border-top: 2px solid var(--mid-gray);
}

.text-link {
  color: var(--green);
  font-weight: 700;
}

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

.faq {
  padding-block: 90px;
  border-top: 1px solid #e3e6e3;
}

.faq-inner {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1.25fr);
  gap: 90px;
  align-items: start;
}

.faq-heading p:last-child {
  max-width: 460px;
  color: var(--gray);
}

.faq-list {
  border-top: 1px solid var(--mid-gray);
}

.faq-list details {
  border-bottom: 1px solid var(--mid-gray);
}

.faq-list summary {
  position: relative;
  padding: 22px 48px 22px 0;
  color: var(--charcoal);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.45;
  list-style: none;
  cursor: pointer;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::before,
.faq-list summary::after {
  position: absolute;
  top: 34px;
  right: 9px;
  width: 18px;
  height: 2px;
  background: var(--green);
  content: "";
  transition: transform 150ms ease;
}

.faq-list summary::after {
  transform: rotate(90deg);
}

.faq-list details[open] summary::after {
  transform: rotate(0deg);
}

.faq-list summary:focus-visible {
  outline: 3px solid #8fd0ad;
  outline-offset: 4px;
}

.faq-list p {
  max-width: 760px;
  margin-bottom: 0;
  padding: 0 48px 24px 0;
  color: var(--gray);
}

.portal-faq {
  display: flex;
  padding-top: 28px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.portal-faq p {
  padding: 0;
}

.portal-faq strong {
  display: block;
  margin-bottom: 4px;
  color: var(--charcoal);
  font-size: 18px;
}

.portal-faq .button {
  flex: 0 0 auto;
}

.contact {
  padding-block: 100px 125px;
  background: #eef1ef;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(390px, 0.9fr);
  gap: 90px;
  align-items: stretch;
}

.contact-title-row {
  display: flex;
  margin-top: 36px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.contact-title-row h3 {
  margin-bottom: 0;
}

.hours-table {
  width: 100%;
  margin: 23px 0 34px;
  border-collapse: collapse;
  font-size: 16px;
}

.hours-table tr:nth-child(odd) {
  background: rgba(255, 255, 255, 0.7);
}

.hours-table th,
.hours-table td {
  padding: 9px 13px;
  text-align: left;
}

.hours-table th {
  width: 34%;
  font-weight: 700;
}

.phone-block,
.email-block {
  margin-bottom: 24px;
}

.contact-caption {
  margin-bottom: 1px;
  color: var(--gray);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.phone-block a,
.email-block a {
  color: var(--green);
  font-size: 20px;
  font-weight: 700;
}

.location-panel {
  position: relative;
  min-height: 540px;
  overflow: hidden;
  padding: 58px;
  background-color: var(--green-dark);
  color: var(--white);
}

.location-panel::before,
.location-panel::after {
  position: absolute;
  inset: 0;
  opacity: 0.13;
  content: "";
  pointer-events: none;
}

.location-panel::before {
  background-image: linear-gradient(25deg, transparent 48%, #ffffff 49%, #ffffff 51%, transparent 52%);
  background-size: 92px 70px;
}

.location-panel::after {
  background-image: linear-gradient(115deg, transparent 48%, #ffffff 49%, #ffffff 51%, transparent 52%);
  background-size: 118px 82px;
}

.location-content {
  position: relative;
  z-index: 2;
  max-width: 420px;
}

.location-content h3 {
  color: var(--white);
  font-size: 28px;
  text-transform: none;
}

.location-marker {
  position: absolute;
  z-index: 2;
  right: 70px;
  bottom: 65px;
  width: 34px;
  height: 34px;
  border: 8px solid var(--white);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
}

.site-footer {
  padding: 34px 0;
  background: #535353;
  color: var(--white);
  font-size: 14px;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.footer-inner p {
  margin-bottom: 0;
}

.footer-inner nav {
  display: flex;
  gap: 20px;
}

.footer-inner a:hover,
.footer-inner a:focus-visible {
  color: #bfe2cf;
}

.back-to-top {
  position: fixed;
  z-index: 25;
  right: 26px;
  bottom: 26px;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 3px;
  background: rgba(4, 101, 51, 0.88);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 150ms ease, transform 150ms ease;
}

.back-to-top-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.back-to-top span {
  width: 12px;
  height: 12px;
  border-top: 2px solid var(--white);
  border-left: 2px solid var(--white);
  transform: translateY(3px) rotate(45deg);
}

.legal-page main {
  min-height: 72vh;
  padding-top: 96px;
  background: var(--light-gray);
}

.legal-content {
  max-width: 900px;
  padding-block: 90px 120px;
}

.legal-content h1 {
  margin-bottom: 55px;
  color: var(--green);
}

.legal-content h2 {
  margin-top: 42px;
  margin-bottom: 12px;
  font-size: 23px;
}

.legal-content p {
  max-width: 780px;
}

.technical-version {
  color: var(--green);
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}

.legal-content a {
  color: var(--green);
}

.legal-back {
  display: inline-block;
  margin-bottom: 38px;
  color: var(--green);
  font-weight: 700;
}

@media (max-width: 980px) {
  .split-layout,
  .sales-inner,
  .contact-grid,
  .faq-inner {
    grid-template-columns: 1fr;
  }

  .split-layout,
  .contact-grid {
    gap: 48px;
  }

  .about-image {
    max-width: 680px;
    margin-inline: auto;
  }

  .sales-inner {
    gap: 20px;
  }

  .faq-inner {
    gap: 30px;
  }

  .contact-grid {
    max-width: 760px;
  }

  .location-panel {
    min-height: 460px;
  }
}

@media (max-width: 760px) {
  body {
    font-size: 16px;
    line-height: 1.62;
  }

  h1 {
    font-size: 34px;
    line-height: 1.16;
  }

  h2 {
    margin-bottom: 22px;
    font-size: 28px;
    line-height: 1.28;
  }

  .page-width {
    width: min(calc(100% - 32px), var(--page-width));
  }

  .header-inner {
    min-height: 72px;
  }

  .brand {
    gap: 10px;
  }

  .brand img {
    width: 44px;
    height: 44px;
  }

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

  .brand small {
    margin-top: 2px;
    font-size: 11px;
  }

  .menu-panel {
    width: min(340px, 94vw);
    padding: 68px 24px 32px;
  }

  .menu-panel nav a {
    padding-block: 7px;
    font-size: 21px;
  }

  .menu-panel nav a.sub-link {
    padding-left: 14px;
    font-size: 16px;
  }

  .hero {
    height: 82svh;
    min-height: 500px;
    max-height: 640px;
  }

  .hero-media img {
    object-position: center;
  }

  .hero-content {
    padding-top: 64px;
  }

  .hero-kicker {
    max-width: 280px;
    margin-bottom: 14px;
    font-size: 13px;
  }

  .hero h1 {
    max-width: 520px;
    margin-bottom: 28px;
  }

  .hero-actions {
    flex-wrap: wrap;
  }

  .button {
    min-height: 44px;
    padding: 9px 17px;
    font-size: 13px;
    line-height: 1.35;
    text-align: center;
  }

  .section {
    padding: 60px 0;
  }

  .section-wedge {
    height: 34px;
  }

  .split-layout {
    gap: 40px;
  }

  .about-image img {
    max-height: 300px;
  }

  .facts {
    margin-top: 32px;
    grid-template-columns: 1fr;
  }

  .facts div {
    display: flex;
    align-items: baseline;
    gap: 14px;
    padding-top: 16px;
  }

  .service-grid {
    margin-top: 32px;
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .service-block {
    padding-inline: 0;
  }

  .service-icon {
    width: 92px;
    height: 92px;
    margin-bottom: 18px;
  }

  .service-block h3 {
    font-size: 20px;
    overflow-wrap: anywhere;
  }

  .service-block ul {
    margin-top: 22px;
  }

  .service-note {
    margin-bottom: 24px;
    padding-top: 24px;
    font-size: 17px;
    text-align: left;
  }

  .sales {
    padding-block: 60px;
  }

  .sales-copy {
    padding-top: 24px;
  }

  .faq {
    padding-block: 60px;
  }

  .faq-inner {
    gap: 18px;
  }

  .faq-list summary {
    padding: 18px 40px 18px 0;
    font-size: 17px;
  }

  .faq-list summary::before,
  .faq-list summary::after {
    top: 30px;
    right: 6px;
  }

  .faq-list p {
    padding-right: 0;
  }

  .portal-faq {
    padding-top: 24px;
    gap: 18px;
  }

  .contact {
    padding-block: 60px 72px;
  }

  .contact-grid {
    gap: 40px;
  }

  .contact-title-row {
    margin-top: 26px;
    align-items: flex-start;
    flex-direction: column;
  }

  .portal-faq {
    align-items: flex-start;
    flex-direction: column;
  }

  .phone-block a,
  .email-block a {
    font-size: 18px;
    overflow-wrap: anywhere;
  }

  .location-panel {
    min-height: 340px;
    padding: 34px 28px;
  }

  .location-content h3 {
    font-size: 24px;
  }

  .location-marker {
    right: 32px;
    bottom: 34px;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column-reverse;
    gap: 18px;
  }

  .site-footer {
    padding-block: 28px;
  }

  .footer-inner nav {
    flex-wrap: wrap;
  }

  .back-to-top {
    right: 12px;
    bottom: 12px;
    width: 44px;
    height: 44px;
  }

  .legal-page main {
    padding-top: 88px;
  }

  .legal-content {
    padding-block: 70px 90px;
  }
}

@media (max-width: 420px) {
  .brand small {
    display: none;
  }

  .hero {
    min-height: 520px;
  }

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

  h2 {
    font-size: 26px;
  }

  h3,
  .service-block h3 {
    font-size: 19px;
  }

  .hero-actions {
    gap: 10px;
  }

  .hero-actions .button {
    flex: 1 1 140px;
  }

  .menu-panel {
    width: 100%;
  }

  .portal-faq .button,
  .contact-title-row .button {
    width: 100%;
  }

  .hours-table {
    font-size: 14px;
  }

  .hours-table th,
  .hours-table td {
    padding-inline: 6px;
  }

  .hours-table th {
    width: 31%;
  }

  .location-panel {
    min-height: 310px;
    padding: 30px 24px;
  }

  .legal-page .header-inner .button {
    padding-inline: 12px;
  }
}

@media (max-height: 600px) and (orientation: landscape) {
  .hero {
    height: calc(100svh - 32px);
    min-height: 340px;
    max-height: none;
  }

  .hero-content {
    padding-top: 52px;
  }

  .hero-kicker {
    display: none;
  }

  .hero h1 {
    max-width: 620px;
    margin-bottom: 20px;
    font-size: 30px;
  }
}

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

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