@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Fira+Sans:ital,wght@0,300;0,400;0,500;1,400&display=swap');

.visually-hidden{
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

:root{
  --brown-light: #a78053;
  --brown-lighter: #b68150;
  --brown-dark: #8e673a;
  --blue-dark: #172a3c;
  --blue-darker: #0f1e2b;
  --blue-light: #3368d6;
  --blue-lighter: #8eafcf;
  --gray-light: #f1f1f1;
  --yellow-light: #fbf4eb;
  --paper-white: #ffffff;
  --ink-black: #000000;
  --body-gray: #212529;

  --font-display: 'Bebas Neue', sans-serif;
  --font-body: 'Fira Sans', sans-serif;

  --radius-sm: 3px;
  --radius-md: 12px;
  --radius-pill: 9999px;

  --container-max: 1320px;
  --header-h: 81px;


  --page-hero-h-base: 240px;
  --page-hero-h-lg: 300px;
}

*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin: 0;
  font-family: var(--font-body);
  color: var(--body-gray);
  background: var(--paper-white);
  line-height: 1.77;
  -webkit-font-smoothing: antialiased;
}
img{ max-width: 100%; display: block; }
a{ color: inherit; text-decoration: none; }
a:focus-visible,
button:focus-visible{ outline: 2px solid var(--brown-light); outline-offset: 2px; }
ul{ margin: 0; padding: 0; list-style: none; }
button{ font-family: inherit; cursor: pointer; background: none; border: none; padding: 0; }

.container{
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

.site-header{
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--blue-dark);
  box-shadow: 0 2px 5px rgba(0,0,0,.13);
}
.header-inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-h);
  padding-top: 12px;
  padding-bottom: 12px;
}
.brand{ display: inline-flex; }
.brand-logo{ height: 30px; width: auto; }

.nav-toggle{ display: none; }

.main-nav ul{
  display: flex;
  align-items: center;
  gap: 32px;
}
.main-nav a{
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--paper-white);
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: .5px;
  font-weight: 400;
  transition: opacity .15s ease;
}
.main-nav a:hover{ opacity: .75; }
.has-dropdown{ position: relative; }
.has-dropdown .chevron{ width: 10px; height: 10px; color: var(--brown-light); transition: transform .2s ease; }
.has-dropdown:hover .chevron,
.has-dropdown:focus-within .chevron{ transform: rotate(180deg); }

.dropdown{
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 300px;
  background: var(--paper-white);
  border: 1px solid rgba(23, 42, 60, .07);
  border-radius: var(--radius-md);
  box-shadow: 0 24px 48px -16px rgba(23, 42, 60, .28), 0 4px 12px rgba(23, 42, 60, .08);
  opacity: 0;
  visibility: hidden;
  transform: translateY(4px);
  transition: opacity .2s ease, transform .2s ease, visibility .2s;
}

.nav-contact{ display: none; }

@media (min-width: 861px){
  .has-dropdown:hover .dropdown,
  .has-dropdown:focus-within .dropdown{
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}

.dropdown-eyebrow{
  padding: 14px 20px 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--blue-light);
  border-bottom: 1px solid var(--gray-light);
}
.dropdown-inner{ display: flex; flex-direction: column; padding: 8px; gap: 2px; }
.dropdown a{
  position: relative;
  display: flex;
  align-items: center;
  color: var(--ink-black);
  text-transform: none;
  padding: 12px 14px 12px 18px;
  letter-spacing: normal;
  border-radius: 8px;
  transition: background .15s ease;
}
.dropdown a img{ height: 24px; width: auto; display: block; }
.dropdown a span{ display: none; }

.dropdown a::before{
  content: '';
  position: absolute;
  left: 4px; top: 8px; bottom: 8px;
  width: 3px;
  border-radius: var(--radius-pill);
  background: var(--brown-light);
  transform: scaleY(0);
  transition: transform .15s ease;
}
.dropdown a:hover,
.dropdown a:focus-visible{ background: var(--gray-light); opacity: 1; }
.dropdown a:hover::before,
.dropdown a:focus-visible::before{ transform: scaleY(1); }

.nav-close{ display: none; }

@media (max-width: 860px){
  .nav-toggle{
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  .main-nav{
    position: fixed;
    inset: 0 0 0 auto;
    width: 100%;
    height: 100%;
    background: var(--blue-dark);
    display: flex;
    flex-direction: column;
    padding: 24px;
    transform: translateX(100%);
    transition: transform .3s ease;
    overflow-y: auto;
    z-index: 110;
  }
  .main-nav.is-open{ transform: translateX(0); }
  .nav-close{
    display: inline-flex;
    align-self: flex-end;
    margin-bottom: 24px;
  }
  .main-nav ul{
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }
  .main-nav > ul > li{
    border-bottom: 1px solid rgba(255,255,255,.12);
  }
  .main-nav > ul > li > a{
    padding: 16px 4px;
    justify-content: space-between;
  }
  .has-dropdown .chevron{ transition: transform .2s ease; }
  .has-dropdown.is-expanded .chevron{ transform: rotate(180deg); }

  .dropdown{
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    border-radius: 0;
    background: transparent;
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows .25s ease;
  }
  .dropdown-inner{ overflow: hidden; min-height: 0; }
  .has-dropdown.is-expanded .dropdown{ grid-template-rows: 1fr; }

  .dropdown-eyebrow{
    color: var(--blue-lighter);
    border-bottom-color: rgba(255, 255, 255, .12);
  }
  .dropdown a{
    color: var(--paper-white);
    padding: 12px 4px 12px 18px;
  }
  .dropdown a img{ display: none; }
  .dropdown a span{ display: inline; }
  .dropdown a:hover,
  .dropdown a:focus-visible{ background: rgba(255,255,255,.06); }

  .nav-contact{
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: auto;
    padding-top: 24px;
  }
  .nav-contact-item{
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--paper-white);
    font-size: 14px;
  }

}

@media (prefers-reduced-motion: reduce){
  .main-nav, .dropdown, .has-dropdown .chevron{ transition: none; }
}

.site-footer{
  background: var(--blue-dark);
  padding: 48px 24px;
}
.footer-inner{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.footer-brand{
  display: flex;
  align-items: center;
  gap: 24px;
}
.footer-brand img{ height: 27px; width: auto; }
.footer-copyright{ color: var(--blue-lighter); font-size: 14px; }

.footer-contact{
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.footer-contact-item{
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--paper-white);
  font-size: 15px;
}

@media (max-width: 640px){
  .footer-inner{ flex-direction: column; align-items: flex-start; }
}

.eyebrow{
  color: var(--blue-light);
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin: 0 0 12px;
}

.btn-pill{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: var(--radius-pill);
  padding: 8px 24px;
  font-size: 16px;
  font-weight: 400;
  align-self: flex-start;
  transition: opacity .15s ease;
}
.btn-pill:hover{ opacity: .85; }

.btn-pill--brown{ background: #916f48; color: var(--paper-white); }
.btn-pill--white{ background: var(--paper-white); color: var(--blue-dark); }
.btn-pill--navy{ background: var(--blue-dark); color: var(--paper-white); }

.btn-pill svg{ width: 16px; height: 16px; flex-shrink: 0; fill: currentColor; }

.hero-photo{ position: relative; }
.hero-photo-img{ width: 100%; height: auto; display: block; }
.hero-caption{
  margin: 0;
  padding: 20px 24px;
  background: var(--blue-dark);
  color: var(--paper-white);
  text-align: center;
  font-size: 14px;
  line-height: 1.6;
}

@media (min-width: 900px){
  .hero-caption{
    position: absolute;
    left: 50%;
    bottom: 3%;
    transform: translateX(-50%);
    max-width: 670px;
    width: 100%;
    padding: 0 24px;
    background: none;
    font-size: 16px;
    line-height: 1.77;
  }
}

.legacies{ background: var(--gray-light); padding: 64px 0; }
.legacies-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  padding-bottom: 48px;
}
.legacies-lead{ font-size: 24px; font-weight: 400; line-height: 1.5; color: var(--blue-dark); margin: 0 0 12px; }
.legacies-body{ font-size: 20px; font-weight: 300; line-height: 1.5; color: var(--blue-dark); margin: 0; }
.legacies-media img{ width: 100%; height: auto; }

.service-grid{ display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.service-tile{ position: relative; display: block; overflow: hidden; color: var(--paper-white); }
.service-tile img{ width: 100%; height: auto; min-height: 260px; object-fit: cover; display: block; }
.service-tile-overlay{
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px;
  text-align: center;
}
.service-tile-title{ font-family: var(--font-display); font-size: 36px; line-height: 1.1; letter-spacing: 1px; }

.service-tile-overlay .btn-pill,
.service-tile-details .btn-pill{ align-self: center; padding: 8px 16px; }
.service-tile-details{
  position: absolute; inset: 0;
  background: #916f48;
  color: var(--paper-white);
  padding: 24px;
  display: flex; flex-direction: column;
  align-items: center;
  overflow-y: auto;
  opacity: 0; visibility: hidden;
  transition: opacity .25s ease, visibility .25s;
}
.service-tile:hover .service-tile-details,
.service-tile:focus-visible .service-tile-details{ opacity: 1; visibility: visible; }
.service-tile-details p{ flex-grow: 1; margin: 0; font-weight: 300; font-size: 15px; line-height: 1.6; }
.service-tile-details .btn-pill{ flex-shrink: 0; align-self: center; margin-top: 12px; }

@media (max-width: 900px){
  .service-tile img{ min-height: 340px; }
  .service-tile-details{ padding: 20px; }
  .service-tile-details p{ font-size: 14px; line-height: 1.5; }
}

.cta-band{ background: var(--blue-dark); padding: 48px 0; }
.cta-inner{ display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 24px; }
.cta-inner > span{ font-family: var(--font-display); font-size: 48px; line-height: 1.1; color: var(--paper-white); font-weight: 300; }

.environment{ background: var(--gray-light); padding: 64px 0; }
.environment-grid{ display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.environment-lead{ font-size: 24px; font-weight: 400; color: var(--blue-dark); margin: 0 0 12px; }
.environment-body{ font-size: 20px; font-weight: 300; color: var(--blue-dark); line-height: 1.5; margin: 0 0 24px; }
.environment-media img{ width: 100%; height: auto; }

.our-brands{ padding: 96px 0; }
.our-brands-inner{ display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 48px; }
.our-brands-title{ font-family: var(--font-display); font-size: 70px; line-height: 1.1; color: var(--brown-light); text-transform: uppercase; font-weight: 300; margin: 0; }
.our-brands-logos{ display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 40px; flex: 1; }
.our-brands-logos img{ height: 48px; width: auto; }

@media (max-width: 900px){
  .legacies-grid, .environment-grid{ grid-template-columns: 1fr; }
  .service-grid{ grid-template-columns: 1fr; }
  .cta-inner > span{ font-size: 32px; }
  .our-brands-title{ font-size: 48px; }
}

.lead-copy{ font-size: 24px; font-weight: 400; line-height: 1.5; color: var(--blue-dark); margin: 0 0 12px; }
.body-copy{ font-size: 20px; font-weight: 300; line-height: 1.5; color: var(--blue-dark); margin: 0; }

.about-hero{
  position: relative;
  display: flex;
  align-items: center;
  min-height: var(--page-hero-h-base);
  overflow: hidden;
}
.about-hero img{ position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.about-hero .container{ position: relative; z-index: 1; width: 100%; }
.about-hero h1{
  font-family: var(--font-display);
  font-size: 75px;
  font-weight: 500;
  line-height: 84px;
  text-align: left;
  color: var(--paper-white);
  margin: 0;
}
@media (min-width: 1441px){
  .about-hero{ min-height: var(--page-hero-h-lg); }
  .about-hero h1{ font-size: 150px; line-height: 168px; }
}

@media (max-width: 639px){
  .about-hero h1{ font-size: 56px; line-height: 64px; }
}

.experience-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: stretch;
  padding: 64px 0;
}
.experience-media img{ width: 100%; height: 100%; object-fit: cover; display: block; }

.solutions{ background: var(--gray-light); padding: 64px 0; }
.solutions-heading{
  font-family: var(--font-display);
  font-size: 70px;
  font-weight: 500;
  color: var(--blue-dark);
  margin: 0 0 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(23, 42, 60, .12);
}
.solutions-row{
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  gap: 24px;
  padding: 32px 0;
  border-bottom: 1px solid rgba(23, 42, 60, .12);
}
.solutions-row h3{ font-family: var(--font-display); font-size: 60px; line-height: 1.1; font-weight: 400; color: var(--brown-lighter); margin: 0; }
.solutions-row-logo{ display: block; }
.solutions-row-logo img{ height: 44px; width: auto; }
.solutions-row-photo img{ width: 100%; height: auto; display: block; }

.next-step{ background: var(--blue-dark); }
.next-step-inner{ display: grid; grid-template-columns: 5fr 7fr; align-items: stretch; }
.next-step-media img{ width: 100%; height: 100%; object-fit: cover; display: block; }
.next-step-content{
  padding: 48px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 32px;
}
.next-step-content h2{
  font-family: var(--font-display);
  font-size: 70px;
  font-weight: 600;
  letter-spacing: 3px;
  line-height: 1.12;
  color: var(--paper-white);
  margin: 0;
}

@media (min-width: 1200px){
  .next-step-content h2{ font-size: 80px; }
}
@media (min-width: 1400px){
  .next-step-content h2{ font-size: 100px; line-height: 86px; }
}

.founders{ padding: 32px 0 64px; }
.founder{ max-width: 900px; margin: 0 auto; padding: 32px 0; border-top: 1px solid rgba(23, 42, 60, .12); }
.founder:first-child{ border-top: none; }
.founder-name{ font-size: 24px; font-weight: 400; line-height: 1.4; color: var(--blue-dark); margin: 8px 0 16px; }

.mission{ background: #996c43; color: var(--paper-white); padding: 64px 0 32px; }
.mission-grid{ display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.mission-grid h2{ font-weight: 400; font-size: 25px; text-align: center; margin: 0 0 16px; }
.mission-grid p{ font-size: 20px; font-weight: 300; line-height: 1.5; margin: 0 0 16px; }

.values{ padding: 64px 0; }
.values-heading{ font-weight: 500; font-size: 25px; color: var(--blue-dark); margin: 0 0 32px; }
.values-grid{ display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.value-item{ display: flex; gap: 16px; align-items: flex-start; }
.value-icon{ flex-shrink: 0; width: 40px; height: 40px; color: var(--brown-light); }
.value-item p{ margin: 0; font-size: 16px; color: var(--blue-dark); line-height: 1.6; }
.value-item strong{ display: block; margin-bottom: 4px; font-size: 17px; }

@media (max-width: 900px){
  .experience-grid{ grid-template-columns: 1fr; }
  .solutions-heading{ font-size: 48px; }
  .solutions-row{ grid-template-columns: 1fr 1fr; }
  .solutions-row h3{ font-size: 40px; grid-column: 1 / -1; }
  .next-step-inner{ grid-template-columns: 1fr; }
  .mission-grid{ grid-template-columns: 1fr; }
  .values-grid{ grid-template-columns: 1fr; }
}

@media (max-width: 640px){
  .solutions-row{ grid-template-columns: 1fr; justify-items: start; }
  .solutions-row h3{ grid-column: auto; }
}

:root{
  --teal-muted: #4d6d7a;
}

.env-hero{
  background-image: url('/img/environment/env-hero-xs.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  min-height: var(--page-hero-h-base);
  display: flex;
  align-items: center;
}
.env-hero .container{ width: 100%; }
.env-hero h1{
  font-family: var(--font-display);
  font-size: 70px;
  font-weight: 500;
  line-height: 72px;
  text-align: left;
  color: var(--paper-white);
  margin: 0;
}

@media (max-width: 639px){
  .env-hero h1{ font-size: 52px; line-height: 58px; }
}

.env-intro-grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: stretch;
  padding: 64px 0;
}
.env-intro-copy h2{ font-size: 24px; font-weight: 400; line-height: 1.5; color: var(--blue-dark); margin: 0 0 12px; }
.env-intro-media img{ width: 100%; height: 100%; object-fit: cover; display: block; }

.env-panel{ display: flex; flex-direction: column; align-items: center; padding: 48px 16px 0; position: relative; }
.env-panel--light-blue{ background: #cfecff; }

.env-panel--teal{ background: #278472; padding-bottom: 48px; overflow: hidden; }
#env-panel-2{ min-height: 512px; }

#env-panel-6{ min-height: 797px; overflow: hidden; padding-left: 0; padding-right: 0; }
.env-panel--slate{ background: #335566; padding: 0; justify-content: center; min-height: 592px; position: relative; }
.env-panel--gold{ background: #a3884a; padding: 48px 0; }
.env-panel--green-dark{ background: #186b5b; padding: 48px 0; }

.env-panel-title-1{ font-family: var(--font-display); font-size: 40px; font-weight: 400; line-height: 36.4px; text-align: center; color: var(--teal-muted); margin-bottom: 12px; }
.env-panel-title-2{ font-family: var(--font-display); font-size: 60px; font-weight: 500; line-height: 57.6px; text-align: center; color: var(--teal-muted); margin: 0 0 32px; }
.env-tree{ width: 162px; height: auto; }

.env-panel2-inner{ display: flex; flex-direction: column; align-items: center; justify-content: center; flex: 1 1 auto; padding: 48px; position: relative; width: 100%; }

.env-sheets{ display: contents; }
.env-sheets img{ position: absolute; inset: 0; margin: auto; width: 75%; max-width: 1189px; height: auto; display: block; }
.env-panel2-title{ display: flex; flex-direction: column; align-items: center; text-align: center; position: relative; z-index: 1; }
.env-subtitle-1{ font-family: var(--font-display); font-size: 41px; font-weight: 400; line-height: 37.31px; color: var(--paper-white); margin-bottom: 8px; }
.env-subtitle-2{ font-family: var(--font-display); font-size: 60px; font-weight: 400; line-height: 54.6px; color: var(--paper-white); margin-bottom: 8px; }

.env-book{ position: absolute; left: 0; right: 0; margin-left: auto; margin-right: auto; width: 55%; max-width: 607px; height: auto; top: -45px; z-index: 2; }
.env-panel3-copy{ display: flex; flex-direction: column; align-items: center; text-align: center; padding: 230px 16px 160px; }
.env-panel-subtitle{ font-family: var(--font-body); font-size: 21px; color: var(--paper-white); margin: 0 0 16px; }
.env-panel-title{ font-family: var(--font-display); font-size: 50px; font-weight: 500; line-height: 48px; color: var(--paper-white); margin: 0; max-width: 900px; }
.env-people{ display: block; width: 100%; position: absolute; bottom: 0; left: 0; }
.env-people img{ width: 100%; height: auto; display: block; }

.env-panel4-lead{ font-family: var(--font-body); font-size: 21px; font-weight: 300; color: var(--paper-white); text-align: center; margin: 0 0 32px; }
.env-panel4-row{ display: flex; flex-direction: column; align-items: center; gap: 24px; }
.env-stat{ display: flex; flex-direction: column; align-items: center; margin-bottom: 24px; }
.env-number{ font-family: var(--font-display); font-size: 60px; font-weight: 400; line-height: 65.4px; color: var(--paper-white); }
.env-panel-subtitle-lg{ font-family: var(--font-display); font-size: 41px; font-weight: 400; line-height: 44.69px; color: var(--paper-white); text-align: center; }

.env-panel-heading{ font-family: var(--font-display); font-size: 60px; font-weight: 500; line-height: 57.6px; color: var(--paper-white); text-align: center; margin: 0; max-width: 900px; padding: 0 16px; }

.env-panel6-label{ font-family: var(--font-display); font-size: 60px; font-weight: 400; line-height: 54.6px; color: var(--teal-muted); text-align: center; margin-bottom: 48px; }
#env-panel-6 .env-number,
#env-panel-6 .env-panel-subtitle-lg{ color: var(--teal-muted); }
#env-panel-6 .env-number{ font-size: 60px; line-height: 57px; }
.env-divider{ width: 40px; height: 26px; }

.env-panel6-trees{ position: absolute; bottom: 0; left: 0; width: 100%; height: 0; }
.env-panel6-trees picture{ display: block; width: 100%; position: absolute; bottom: 0; left: 0; }
.env-panel6-trees img{ width: 100%; height: auto; display: block; }

.env-partner{ padding: 64px 0; }
.env-partner-card{ background: var(--gray-light); display: flex; flex-direction: column; }
.env-partner-photo img{ width: 100%; height: auto; display: block; }
.env-partner-copy{ display: flex; flex-direction: column; padding: 24px; }
.env-partner-logo{ width: 177px; height: auto; margin-bottom: 24px; }
.env-partner-copy h2{ font-family: var(--font-body); font-size: 25px; font-weight: 400; line-height: 1.45; color: var(--blue-dark); margin: 0 0 16px; }
.env-partner-copy p{ font-family: var(--font-body); font-size: 16px; line-height: 1.84; color: var(--blue-dark); margin: 0 0 24px; }
.env-partner-copy .btn-pill{ align-self: flex-start; display: inline-flex; align-items: center; gap: 8px; }

.js-reveal{ opacity: 0; transform: translate3d(0, 25px, 0); transition: opacity 1.5s ease-out, transform 1.5s ease-out; }
.js-reveal.js-reveal--from-bottom{ transform: translate3d(0, -25px, 0); }
.js-reveal.is-visible{ opacity: 1; transform: translate3d(0, 0, 0); }
.env-tree.js-reveal{ opacity: 1; transform: translate3d(0, 25px, 0); transition: transform 1.5s ease-out; }
.env-tree.js-reveal.is-visible{ transform: translate3d(0, 3px, 0); }

@media (min-width: 769px){
  .env-hero{ background-image: url('/img/environment/env-hero-m.jpg'); }
  .env-hero h1{ font-size: 70px; line-height: 67.2px; }
  #env-panel-2{ min-height: 588px; }
  .env-panel--slate{ min-height: 873px; }
  #env-panel-6{ min-height: 861px; }
  .env-panel4-lead{ font-size: 25px; line-height: 36.25px; }
  .env-number{ font-size: 70px; line-height: 67.2px; }
  .env-panel-subtitle-lg{ font-size: 45px; line-height: 54px; }
  .env-panel-heading{ font-size: 65px; line-height: 62.4px; }
  .env-panel6-label{ font-size: 75px; line-height: 68.25px; }
  #env-panel-6 .env-number{ font-size: 70px; line-height: 62.2px; }
  #env-panel-6 .env-panel-subtitle-lg{ font-size: 45px; line-height: 48.6px; }
}

@media (min-width: 900px){
  .env-intro-grid{ grid-template-columns: 1fr 1fr; }
  .env-panel2-title{ flex-direction: row; align-items: baseline; gap: 16px; }
  .env-panel2-title span{ margin-bottom: 0; }
  .env-panel3-copy{ flex-direction: row; padding: 32px; }
  .env-panel-title{ max-width: 700px; }
  .env-panel4-row{ flex-direction: row; justify-content: center; }
  .env-partner-card{ flex-direction: row; }
  .env-partner-photo{ flex: 0 0 40%; }
  .env-partner-photo img{ height: 100%; object-fit: cover; }
  .env-partner-copy{ padding: 48px; justify-content: center; }
}

@media (min-width: 993px){
  .env-hero{ background-image: url('/img/environment/env-hero-l.jpg'); }
  #env-panel-6{ min-height: 716px; }
  .env-panel-subtitle{ font-size: 25px; }
  .env-panel-title{ font-size: 70px; line-height: 67.2px; }
  .env-panel6-label{ font-size: 75px; margin-top: 48px; }
  #env-panel-6 .env-number{ font-size: 75px; line-height: 71.25px; }
  #env-panel-6 .env-panel-subtitle-lg{ font-size: 50px; line-height: 60px; }
}

@media (min-width: 1201px){
  .env-hero{ background-image: url('/img/environment/env-hero-xl.jpg'); }
  .env-hero h1{ font-size: 85px; line-height: 95.2px; }
  #env-panel-2{ min-height: 457px; }
  .env-subtitle-1{ font-size: 46px; }
  .env-subtitle-2{ font-size: 68px; }
  .env-panel--slate{ min-height: 823px; }
  #env-panel-6{ min-height: 806px; }
  .env-panel-subtitle{ font-size: 28px; }
  .env-panel-title{ font-size: 75px; }
  .env-panel4-lead{ font-size: 28px; line-height: 40.6px; }
  .env-number{ font-size: 75px; line-height: 71.25px; }
  .env-panel-subtitle-lg{ font-size: 50px; line-height: 60px; }
  .env-panel-heading{ font-size: 70px; line-height: 70px; }
  #env-panel-6 .env-number{ font-size: 75px; line-height: 71.25px; }
  .env-partner-copy h2{ font-size: 28px; line-height: 40.6px; }
}

@media (min-width: 1441px){
  .env-hero{ background-image: url('/img/environment/env-hero-xxl.jpg'); min-height: var(--page-hero-h-lg); }
  .env-hero h1{ font-size: 150px; line-height: 168px; }
  #env-panel-2{ min-height: 629px; }
  .env-subtitle-1{ font-size: 55px; }
  .env-subtitle-2{ font-size: 77px; }
  .env-panel--slate{ min-height: 1013px; }
  .env-panel-subtitle{ font-size: 40px; }
  .env-panel-title{ font-size: 85px; }
  .env-panel4-lead{ font-size: 40px; line-height: 36.4px; }
  .env-number{ font-size: 85px; line-height: 80.75px; }
  .env-panel-heading{ font-size: 80px; line-height: 80.8px; }
  .env-panel6-label{ font-size: 130px; line-height: 118.3px; }
  #env-panel-6 .env-number{ font-size: 85px; line-height: 80.75px; }
  .env-partner-copy h2{ font-size: 35px; line-height: 50.75px; }
  .env-partner-copy p{ font-size: 18px; line-height: 33.12px; }
}

@media (prefers-reduced-motion: reduce){
  .js-reveal,
  .env-tree.js-reveal{ transition: none; opacity: 1; transform: none; }
}

.brand-hero{ display: flex; flex-direction: row; min-height: 136px; }

.brand-hero-logo{
  flex-shrink: 0;
  width: 136px;
  height: 136px;
  background: var(--gray-light);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 48px;
}
.brand-hero-logo img{ max-width: 100%; max-height: 100%; width: auto; height: auto; object-fit: contain; }
.brand-hero-name{
  position: relative;
  flex-grow: 1;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.brand-hero-cover{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-hero-name::before{
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, .6);
}
.brand-hero-name h1{
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  margin: 0;
  padding-left: 16px;
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 500;
  line-height: 1;
  text-transform: uppercase;
  color: var(--brown-light);
}

.brand-hero-cta{ font-size: 13px; padding: 8px 20px; }
@media (min-width: 576px){
  .brand-hero-name h1{ padding-left: 24px; }
}
@media (min-width: 768px){
  .brand-hero{ min-height: 169px; }
  .brand-hero-logo{ width: 169px; height: 169px; }
  .brand-hero-name h1{ font-size: 60px; padding-left: 32px; }
}
@media (min-width: 992px){
  .brand-hero{ min-height: 188px; }
  .brand-hero-logo{ width: 188px; height: 188px; }
  .brand-hero-name h1{ font-size: 85px; padding-left: 40px; }
  .brand-hero-cta{ font-size: 16px; padding: 8px 24px; }
}
@media (min-width: 1200px){
  .brand-hero{ min-height: 211px; }
  .brand-hero-logo{ width: 211px; height: 211px; }
  .brand-hero-name h1{ font-size: 100px; padding-left: 48px; }
}
@media (min-width: 1440px){
  .brand-hero{ min-height: 368px; }
  .brand-hero-logo{ width: 368px; height: 368px; }
}

.stats-title,
.stat-number,
.services-title,
.specialties-title,
.consultation-title,
.explore-title,
.process-title{
  font-family: var(--font-display);
  line-height: 1.1;
  margin: 0;
}

.stats-band{ background: var(--brown-light); color: var(--paper-white); padding: 64px 0; }

.stats-title,
.explore-title{ font-size: 70px; }
.stats-title{
  font-weight: 500;
  text-align: center;
  color: var(--paper-white);
  margin-bottom: 48px;
}
.stats-grid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 24px;
  text-align: center;
}
.stat{ display: flex; flex-direction: column; align-items: center; }
.stat-icon{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--brown-dark);
  margin-bottom: 16px;
}
.stat-icon svg{ width: 55%; height: auto; }
.stat-number{ font-size: 70px; font-weight: 500; }

.stat-label{ font-family: var(--font-body); font-size: 20px; font-weight: 700; margin-top: 4px; }
@media (min-width: 992px){
  .stats-grid{ grid-template-columns: repeat(4, 1fr); }
}
@media (min-width: 1200px){
  .stats-title,
  .explore-title{ font-size: 80px; }
  .stat-number{ font-size: 85px; }
  .stat-label{ font-size: 22px; }
}
@media (min-width: 1401px){
  .stats-title,
  .explore-title{ font-size: 100px; }
  .stat-number{ font-size: 100px; }
  .stat-label{ font-size: 24px; }
}

.services-band{ background: var(--gray-light); padding: 64px 0; }
.services-grid{ display: grid; grid-template-columns: 1fr; gap: 32px; }
.services-title{
  font-size: 70px;
  font-weight: 400;
  color: var(--brown-light);
  text-align: center;
}
.service-block{ margin-bottom: 32px; }
.service-block:last-child{ margin-bottom: 0; }

.service-block h3{ font-family: var(--font-body); font-size: 24px; font-weight: 400; line-height: 1.4; color: var(--blue-dark); margin: 0 0 8px; }
.service-block p{ font-family: var(--font-body); font-size: 17px; font-weight: 300; line-height: 1.5; color: var(--blue-dark); margin: 0; }
@media (min-width: 992px){
  .services-grid{ grid-template-columns: 1fr 1.4fr; align-items: center; }
  .services-title{ font-size: 85px; text-align: left; }
}
@media (min-width: 1200px){
  .services-title{ font-size: 100px; }
  .service-block h3{ font-size: 28px; }
  .service-block p{ font-size: 20px; }
}

.specialties-band{ padding: 64px 0; }
.specialties-title{
  font-size: 70px;
  font-weight: 500;
  letter-spacing: 2px;
  color: var(--blue-dark);
  margin-bottom: 32px;
}
.specialties-grid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px 16px;
}
.specialty-tile{ display: flex; flex-direction: column; align-items: center; text-align: center; }
.specialty-tile img{ width: 100%; height: auto; aspect-ratio: 448 / 299; object-fit: cover; border-radius: var(--radius-sm); }
.specialty-tile span{ font-family: var(--font-body); font-size: 16px; font-weight: 500; color: var(--blue-dark); margin-top: 12px; }
@media (min-width: 768px){
  .specialty-tile span{ font-size: 20px; }
}
@media (min-width: 992px){
  .specialties-grid{ grid-template-columns: repeat(3, 1fr); }
}

.consultation-band{
  display: flex;
  flex-direction: column;
  background: var(--blue-dark);
  color: var(--paper-white);
}
.consultation-media{ width: 100%; height: 220px; object-fit: cover; display: block; }
.consultation-content{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  padding: 40px 24px;
}
.consultation-title{
  font-size: 70px;
  font-weight: 400;
  letter-spacing: 2px;
  color: var(--paper-white);
}

.consultation-content p{ font-family: var(--font-body); font-size: 18px; font-weight: 300; margin: 0; }

.consultation-band--brown{ background: var(--brown-light); }

.consultation-band--brown .consultation-content p{ font-size: 24px; }
@media (min-width: 768px){
  .consultation-band{ flex-direction: row; }
  .consultation-media{ width: 45%; height: auto; }
  .consultation-content{ padding: 40px; justify-content: center; }
}
@media (min-width: 992px){
  .consultation-title{ font-size: 80px; }
}
@media (min-width: 1200px){
  .consultation-title{ font-size: 100px; }
}

.explore-band{ background: var(--brown-light); color: var(--paper-white); padding: 64px 0; text-align: center; }
.explore-title{
  font-weight: 500;
  color: var(--paper-white);
  margin-bottom: 32px;
}
.explore-cta{ margin: 0 auto; }

.explore-band--navy{ background: var(--blue-dark); }

@media (min-width: 1401px){
  .explore-band--navy .explore-title{ font-size: 96px; }
}

.explore-band-narrow{ max-width: 880px; }
.explore-copy{
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.5;
  color: var(--paper-white);
  margin: 0;
}

.options-band{ background: var(--yellow-light); padding: 64px 0 0; }
.options-title{
  font-family: var(--font-display);
  font-size: 60px;
  line-height: 0.96;
  font-weight: 500;
  text-align: center;
  color: var(--brown-light);
  margin: 0 0 32px;
}
.option{ background: var(--yellow-light); }

.option + .option{ margin-top: 48px; }

.option-top{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
  padding: 32px 0;
}
.option-number{
  font-family: var(--font-display);
  font-size: 100px;
  line-height: 0.96;
  font-weight: 500;
  color: var(--brown-light);
}
.option-image{ width: 60%; max-width: 260px; height: auto; }
.option-description h3{ font-family: var(--font-body); font-size: 25px; line-height: 1.45; font-weight: 400; color: var(--body-gray); margin: 0 0 12px; }
.option-description p{ font-family: var(--font-body); font-size: 16px; line-height: 1.84; font-weight: 400; color: var(--body-gray); margin: 0; }

.option-detail{ background: #196962; color: var(--paper-white); padding: 40px 0; }
.option-detail-inner{ display: flex; flex-direction: column; gap: 32px; }

.progress-meter{ display: flex; flex-direction: column; gap: 12px; width: 100%; max-width: 320px; margin: 0 auto; }
.progress-row{ display: flex; align-items: center; gap: 12px; }
.progress-label{ flex-shrink: 0; width: 90px; font-size: 15px; font-weight: 700; }
.progress-track{
  flex-grow: 1;
  height: 19px;
  padding: 3px 5px;
  border-radius: var(--radius-pill);
  background: #004f46;
}

.progress-fill{
  display: block;
  height: 9px;
  width: var(--target-width);
  border-radius: var(--radius-pill);
  transform: scaleX(0);
  transform-origin: left;

  transition: opacity 1.5s ease-out, transform 1.1s ease-out;
}
.progress-fill.is-visible{ transform: scaleX(1); }

.progress-fill--cash{ background: #42b9d4; }
.progress-fill--yield{ background: #f1d24a; }
.benefits{ width: 100%; max-width: 420px; margin: 0 auto; text-align: left; }
.benefits h4{ font-family: var(--font-body); font-size: 18px; line-height: 1.84; font-weight: 600; margin: 0 0 12px; }
.benefits-list{ display: flex; flex-direction: column; gap: 8px; }
.benefits-list li{
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 16px;
  line-height: 1.84;
}
.benefits-list li::before{
  content: '';
  flex-shrink: 0;
  width: 10px; height: 10px;
  margin-top: 6px;
  background: var(--paper-white);
  clip-path: polygon(9% 47%, 32% 21%, 43% 32%, 68% 3%, 90% 15%, 43% 66%);
}
@media (min-width: 768px){
  .options-title{ font-size: 70px; }
  .option-number{ font-weight: 700; }

  .option-description{ padding: 0 24px; }
}
@media (min-width: 992px){

  .option-top{
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 0;
    text-align: left;
    padding: 0;
    height: 280px;
  }
  .option-number{ font-size: 135px; line-height: 0.6; align-self: flex-end; }

  .option-image{ width: auto; max-width: none; height: 100%; flex-shrink: 0; align-self: flex-end; object-fit: contain; }

  .option-description{ max-width: 512px; }
  .option-detail-inner{ flex-direction: row; align-items: flex-start; justify-content: center; gap: 64px; }
  .progress-meter{ margin: 0; padding-top: 8px; }
  .benefits{ margin: 0; }
}
@media (min-width: 1200px){
  .options-title{ font-size: 85px; line-height: 1.05; }
  .option-top{ height: 320px; }
  .option-description h3{ font-size: 28px; }
}
@media (min-width: 1401px){
  .options-title{ font-size: 88px; line-height: 0.8; }
  .option-top{ height: 360px; }
  .option-number{ font-size: 220px; }
  .option-description{ max-width: 600px; }
  .option-description h3{ font-size: 35px; }
  .option-description p,
  .benefits-list li{ font-size: 18px; }
}

.trust-band{ padding: 64px 0; }

.trust-title{ margin-bottom: 32px; }

.trust-grid{ display: grid; grid-template-columns: 1fr; gap: 24px; }
.trust-card{
  background: var(--gray-light);
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.trust-icon-wrap{ flex-shrink: 0; padding: 48px 8px; align-self: center; }
.trust-card-copy{ display: flex; flex-direction: column; flex-grow: 1; text-align: center; padding: 0 24px; }
.trust-card h3{ font-family: var(--font-body); font-size: 24px; font-weight: 400; color: var(--blue-dark); margin: 0 0 12px; }
.trust-card p{ font-family: var(--font-body); font-size: 16px; font-weight: 300; line-height: 1.5; color: var(--blue-dark); margin: 0; }

@media (min-width: 768px) and (max-width: 991px){
  .trust-card{ flex-direction: row; }
}
@media (min-width: 992px){
  .trust-grid{ grid-template-columns: repeat(3, 1fr); }
}

.process-band{ padding: 64px 0; }
.process-grid{ display: grid; grid-template-columns: 1fr; gap: 32px; align-items: center; }
.process-title{ font-size: 70px; font-weight: 500; color: var(--blue-dark); margin-bottom: 32px; }
.process-steps{ display: flex; flex-direction: column; gap: 20px; }
.process-step{ display: flex; align-items: flex-start; gap: 16px; }
.process-number{
  font-family: var(--font-display);
  font-size: 70px;
  line-height: 0.85;
  font-weight: 400;
  color: var(--brown-light);
  flex-shrink: 0;
  width: 52px;
}
.process-step-content h3{ font-family: var(--font-body); font-size: 24px; font-weight: 400; color: var(--blue-dark); margin: 0 0 4px; }
.process-step-content p{ font-family: var(--font-body); font-size: 16px; font-weight: 300; line-height: 1.5; color: var(--blue-dark); margin: 0; }
.process-media img{ width: 100%; height: 100%; object-fit: cover; display: block; border-radius: var(--radius-sm); }
@media (min-width: 992px){
  .process-grid{ grid-template-columns: 1fr 1fr; gap: 48px; }
  .process-title{ font-size: 85px; }
}
@media (min-width: 1200px){
  .process-title{ font-size: 100px; }
  .process-step-content h3{ font-size: 28px; }
  .process-step-content p{ font-size: 18px; }
}

.contact-hero{
  position: relative;
  display: flex;
  align-items: center;
  min-height: var(--page-hero-h-base);
  overflow: hidden;
}
.contact-hero img{ position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

.contact-hero::before{
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, .55);
}
.contact-hero .container{ position: relative; z-index: 1; }
.contact-hero h1{
  font-family: var(--font-display);
  font-size: 70px;
  font-weight: 500;
  text-transform: uppercase;
  line-height: 1.1;
  color: var(--blue-dark);
  margin: 0 0 12px;
}
.contact-hero p{
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 300;
  line-height: 1.6;
  color: rgba(23, 42, 60, .8);
  max-width: 560px;
  margin: 0;
}
@media (min-width: 992px){
  .contact-hero h1{ font-size: 85px; }
}
@media (min-width: 1200px){
  .contact-hero h1{ font-size: 100px; }
}
@media (min-width: 1441px){
  .contact-hero{ min-height: var(--page-hero-h-lg); }
}

.contact-section{ padding: 64px 0; }
.contact-grid{ display: grid; grid-template-columns: 1fr; gap: 48px; }
@media (min-width: 992px){
  .contact-grid{ grid-template-columns: 0.85fr 1.15fr; gap: 64px; align-items: start; }
}

.contact-info{ display: flex; flex-direction: column; gap: 20px; }
.contact-info-lead{ font-family: var(--font-body); font-size: 20px; font-weight: 400; line-height: 1.5; color: var(--blue-dark); margin: 0; }
.contact-info-body{ font-family: var(--font-body); font-size: 16px; font-weight: 300; line-height: 1.6; color: var(--blue-dark); margin: 0; }
.contact-info-list{ display: flex; flex-direction: column; gap: 16px; margin-top: 8px; }
.contact-info-item{
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 400;
  color: var(--blue-dark);
}
a.contact-info-item{ transition: color .15s ease; }
a.contact-info-item:hover{ color: var(--brown-light); }
.contact-info-item-icon{
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gray-light);
}
.contact-info-item-icon img{ width: 20px; height: 20px; }

.contact-brands{ margin-top: 8px; }
.contact-brands-label{ font-family: var(--font-body); font-size: 13px; font-weight: 600; letter-spacing: .5px; text-transform: uppercase; color: var(--blue-dark); opacity: .6; margin: 0 0 12px; }
.contact-brands-list{ display: flex; flex-wrap: wrap; gap: 10px; }
.contact-brand-pill{
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  background: var(--gray-light);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--blue-dark);
  transition: background .15s ease, color .15s ease;
}
.contact-brand-pill:hover{ background: var(--brown-light); color: var(--paper-white); }

.contact-form-card{
  background: var(--paper-white);
  border: 1px solid rgba(23, 42, 60, .1);
  border-radius: var(--radius-md);
  box-shadow: 0 24px 48px -16px rgba(23, 42, 60, .12), 0 4px 12px rgba(23, 42, 60, .06);
  padding: 28px 20px;
}
@media (min-width: 768px){
  .contact-form-card{ padding: 40px; }
}

.form-banner{ margin: 0 0 20px; padding: 13px 16px; border-radius: var(--radius-sm); font-family: var(--font-body); font-size: 14px; line-height: 1.5; }
.form-banner--success{ background: rgba(22, 163, 74, .12); border: 1px solid #16a34a; color: #166534; }
.form-banner--error{ background: rgba(220, 38, 38, .12); border: 1px solid #dc2626; color: #991b1b; }

.contact-form{ display: flex; flex-direction: column; gap: 20px; }
.form-field-hp{ position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; overflow: hidden; }
.form-row{ display: grid; grid-template-columns: 1fr; gap: 20px; }
@media (min-width: 560px){
  .form-row{ grid-template-columns: 1fr 1fr; }
}
.form-field{ display: flex; flex-direction: column; gap: 6px; }
.form-field label{ font-family: var(--font-body); font-size: 14px; font-weight: 500; color: var(--blue-dark); }
.form-field .required{ color: #c0392b; }
.form-field input,
.form-field select,
.form-field textarea{
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--blue-dark);
  padding: 12px 14px;
  border: 1px solid rgba(23, 42, 60, .18);
  border-radius: var(--radius-sm);
  background: var(--paper-white);
  transition: border-color .15s ease;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus{ outline: none; border-color: var(--brown-light); }
.form-field select{
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M4 6l4 4 4-4' stroke='%23172a3c' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}
.form-field textarea{ resize: vertical; min-height: 120px; }
.char-counter{ align-self: flex-end; font-family: var(--font-body); font-size: 12px; color: rgba(23, 42, 60, .5); }
.contact-form .btn-pill{ align-self: flex-start; border: none; cursor: pointer; }
