:root {
  --green: #3da873;
  --green-dark: #268d5b;
  --black: #000;
  --white: #fff;
  --light: #f1f3f4;
  --muted: #6c7278;
  --max: 1210px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  overflow-x: hidden;
  max-width: 100%;
}

body {
  margin: 0;
  color: var(--black);
  background: var(--white);
  font-family: "Inter", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  font-weight: 500;
}

img,
iframe,
video {
  max-width: 100%;
}

iframe,
video {
  height: auto;
}

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

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

p {
  margin: 0 0 18px;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  font-family: "Exo 2", Arial, sans-serif;
  font-weight: 800;
  line-height: 1.03;
}

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

.innerin {
  width: min(var(--max), calc(100% - 190px));
  margin: 0 auto;
}

.site-header {
  position: relative;
  z-index: 20;
  height: 145px;
  background: var(--white);
}

.site-header .innerin {
  position: relative;
  height: 145px;
}

.site-branding {
  position: absolute;
  top: 22px;
  left: 0;
  width: 235px;
  height: 100px;
  display: flex;
  align-items: center;
}

.brand-mark {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  width: 232px;
  min-height: 88px;
  color: #000;
  letter-spacing: 0;
  text-transform: uppercase;
}

.brand-line {
  display: block;
  font-family: "Exo 2", Arial, sans-serif;
  font-weight: 900;
  line-height: .78;
  letter-spacing: .02em;
}

.brand-line.one {
  font-size: 20px;
}

.brand-line.two {
  font-size: 36px;
}

.brand-line.two span {
  color: var(--green);
}

.brand-line.three {
  font-size: 17px;
  letter-spacing: .07em;
}

.site-navigation.__top {
  position: absolute;
  top: 0;
  right: 0;
  height: 60px;
  min-width: 735px;
  padding-left: 88px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  background: var(--black);
  color: var(--white);
  clip-path: polygon(68px 0, 100% 0, 100% 100%, 0 100%);
}

.site-navigation.__top > ul,
.site-navigation.__main > ul {
  display: flex;
  align-items: stretch;
  height: 100%;
}

.site-navigation.__top a {
  display: flex;
  align-items: center;
  height: 60px;
  padding: 0 21px;
  font-weight: 800;
  font-size: 15px;
  transition: color .3s ease, background-color .3s ease;
}

.site-navigation.__top a:hover,
.site-navigation.__main a:hover,
.site-navigation.__main li.active > a {
  color: var(--green);
}

.site-navigation.__main {
  position: absolute;
  right: 0;
  bottom: 0;
  height: 85px;
  display: flex;
  align-items: stretch;
  justify-content: flex-end;
  color: var(--black);
}

.site-navigation.__main > ul > li {
  position: relative;
}

.site-navigation.__main > ul > li > a {
  display: flex;
  align-items: center;
  height: 85px;
  padding: 0 22px;
  font-size: 16px;
  font-weight: 700;
  transition: background-color .3s ease, color .3s ease;
}

.site-navigation.__main > ul > li:hover > a,
.site-navigation.__main > ul > li.active > a {
  background: #f1f3f4;
}

.has-dropdown > a::after {
  content: "";
  width: 6px;
  height: 6px;
  margin-left: 10px;
  border-right: 2px solid var(--green);
  border-bottom: 2px solid var(--green);
  transform: rotate(45deg) translateY(-2px);
}

.sub-menu-wrap {
  position: absolute;
  top: 85px;
  left: 0;
  width: min(520px, calc(100vw - 48px));
  padding: 0;
  display: none;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  background: var(--white);
  box-shadow: 0 22px 44px rgba(0, 0, 0, .14);
  transition: opacity .24s ease, transform .24s ease;
  overflow: hidden;
}

.site-navigation.__main > ul > li:nth-last-child(-n + 3) .sub-menu-wrap {
  right: 0;
  left: auto;
}

.has-dropdown:hover .sub-menu-wrap {
  display: block;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.sub-menu-wrap ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
  height: auto;
}

.sub-menu-wrap li {
  min-width: 0;
}

.sub-menu-wrap a {
  display: flex;
  align-items: center;
  min-height: 78px;
  padding: 14px 24px;
  border-right: 1px solid rgba(0, 0, 0, .07);
  border-bottom: 1px solid rgba(0, 0, 0, .07);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.25;
  overflow-wrap: anywhere;
  word-break: normal;
  transition: background-color .2s ease, color .2s ease;
}

.sub-menu-wrap a:hover {
  color: var(--black);
  background: #f1f3f4;
}

.mobile-topbar,
.mobile-drawer {
  display: none;
}

.hero-section,
.career-section {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  display: flex;
  align-items: center;
  color: var(--white);
  background: var(--green);
}

.career-section {
  min-height: 372px;
}

.hero-bg,
.career-section .hero-bg {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  filter: saturate(.82);
}

.hero-section .hero-bg::after,
.career-section .hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(61, 168, 115, .76), rgba(61, 168, 115, .92));
}

.hero-section .hero-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, .08) 0 48%, rgba(61, 168, 115, .2) 48% 100%);
  z-index: 1;
}

.hero-section .innerin,
.career-section .innerin {
  position: relative;
  z-index: 2;
}

.hero-copy {
  width: min(540px, 100%);
  margin-left: auto;
}

.career-section .hero-copy {
  margin-left: 0;
}

.label-heading {
  display: inline;
  color: var(--white);
  background: var(--black);
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  padding: 4px 14px 8px;
  font-family: "Exo 2", Arial, sans-serif;
  font-size: clamp(42px, 4.2vw, 72px);
  line-height: 1.16;
  font-weight: 400;
  letter-spacing: 0;
}

.career-section .label-heading {
  font-size: clamp(42px, 4.2vw, 66px);
}

.hero-copy p {
  margin-top: 34px;
  max-width: 565px;
  color: var(--white);
  font-size: 17px;
  line-height: 1.55;
  font-weight: 800;
}

.btns {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 45px;
  padding: 0 23px;
  border: 0;
  color: var(--white);
  background: var(--green);
  font-family: "Inter", Arial, sans-serif;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
  transition: color .25s ease, background-color .25s ease, transform .25s ease;
}

.btns:hover {
  transform: translateY(-2px);
  background: var(--black);
}

.black-btn {
  background: var(--black);
}

.black-btn:hover {
  color: var(--black);
  background: var(--white);
}

.section-title-row {
  position: relative;
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 58px;
}

.section-title-row::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--black);
}

.section-title-row h2 {
  display: inline-block;
  padding: 1px 10px 6px;
  color: var(--white);
  background: var(--black);
  font-size: clamp(30px, 3.5vw, 44px);
  font-weight: 400;
}

.capabilities-section {
  padding: 90px 0 110px;
  background: var(--white);
}

.capability-grid {
  display: grid;
  grid-template-columns: .95fr 1.2fr;
  gap: 82px;
  align-items: start;
}

.capability-intro h3 {
  margin-bottom: 22px;
  font-size: clamp(34px, 3vw, 48px);
}

.capability-intro p {
  max-width: 430px;
  font-weight: 600;
}

.check-list li {
  position: relative;
  margin: 14px 0;
  padding-left: 30px;
  font-weight: 800;
  font-size: 15px;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--green);
  font-weight: 900;
}

.service-card-list {
  display: grid;
  gap: 30px;
}

.service-tile,
.listing-card {
  position: relative;
  min-height: 150px;
  padding: 34px 44px;
  overflow: hidden;
  background: #edf0f1;
  transition: transform .25s ease, box-shadow .25s ease;
}

.service-tile::before,
.listing-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--tile-image);
  background-size: cover;
  background-position: center;
  opacity: .14;
  filter: grayscale(1);
  transition: opacity .25s ease, transform .35s ease;
}

.service-tile:hover,
.listing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 46px rgba(0, 0, 0, .12);
}

.service-tile:hover::before,
.listing-card:hover::before {
  opacity: .22;
  transform: scale(1.04);
}

.service-tile > *,
.listing-card > * {
  position: relative;
  z-index: 1;
}

.service-title {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
  font-family: "Exo 2", Arial, sans-serif;
  font-size: clamp(28px, 2.5vw, 38px);
  line-height: 1.05;
  font-weight: 900;
}

.service-title::after,
.arrow-link::after {
  content: "→";
  color: var(--black);
  font-weight: 700;
  transition: transform .25s ease, color .25s ease;
}

.service-title:hover::after,
.arrow-link:hover::after {
  color: var(--green);
  transform: translateX(5px);
}

.service-tile p,
.listing-card p {
  color: #1d2529;
  font-weight: 600;
}

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

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

.background-light-gray {
  background: var(--light);
}

.quote-band {
  padding: 70px 0;
  color: var(--white);
  background: var(--black);
}

.quote-band p {
  width: min(820px, 100%);
  margin: 0 auto;
  text-align: center;
  font-family: "Exo 2", Arial, sans-serif;
  font-size: clamp(26px, 2.5vw, 36px);
  line-height: 1.22;
  font-weight: 700;
  font-style: italic;
}

.split-section {
  padding: 84px 0 96px;
}

.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 86px;
  align-items: center;
}

.split-grid h2,
.detail-copy h2,
.contact-panel h2 {
  margin-bottom: 28px;
  font-size: clamp(34px, 3vw, 48px);
}

.media-frame {
  position: relative;
  min-height: 540px;
  background-image: var(--media-image);
  background-size: cover;
  background-position: center;
  box-shadow: 0 24px 54px rgba(0, 0, 0, .13);
}

.media-frame.short {
  min-height: 380px;
}

.market-band {
  padding: 58px 0 52px;
  color: var(--white);
  background: var(--black);
}

.market-grid {
  display: grid;
  grid-template-columns: .9fr 1fr 1fr;
  gap: 40px 70px;
  align-items: start;
}

.market-grid h2 {
  font-size: 29px;
}

.market-links {
  display: grid;
  gap: 22px;
}

.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 28px;
  color: var(--green);
  font-family: "Exo 2", Arial, sans-serif;
  font-size: 15px;
  font-weight: 900;
  text-transform: uppercase;
}

.light-two-col {
  padding: 72px 0;
  background: var(--light);
}

.light-two-col .split-grid {
  align-items: start;
}

.green-cta {
  padding: 70px 0;
  color: var(--white);
  background: var(--green);
}

.green-cta .split-grid {
  align-items: start;
}

.green-cta h2 {
  margin-bottom: 20px;
  font-size: 34px;
}

.listing-section {
  padding: 90px 0 110px;
}

.listing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.listing-card {
  min-height: 230px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.listing-card h3 {
  margin-bottom: 18px;
  font-size: 28px;
}

.listing-card .card-kicker {
  margin-top: 20px;
  color: var(--green);
  font-family: "Exo 2", Arial, sans-serif;
  font-weight: 900;
  text-transform: uppercase;
}

.detail-section {
  padding: 90px 0 110px;
}

.detail-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 88px;
  align-items: start;
}

.detail-copy p {
  font-weight: 600;
}

.detail-aside {
  padding: 46px;
  background: var(--light);
}

.detail-aside h3 {
  margin-bottom: 24px;
  font-size: 34px;
}

.related-links {
  display: grid;
  gap: 14px;
}

.related-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid rgba(0, 0, 0, .14);
  font-family: "Exo 2", Arial, sans-serif;
  font-weight: 800;
}

.related-links a::after {
  content: "→";
  color: var(--green);
}

.locations-panel {
  padding: 90px 0;
  background: var(--light);
}

.office-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 42px;
  margin-top: 50px;
}

.office h3 {
  margin-bottom: 10px;
  color: var(--green);
  font-size: 24px;
  text-transform: uppercase;
}

.office p {
  margin: 0;
  font-weight: 800;
}

.map-surface {
  position: relative;
  min-height: 500px;
  margin-top: 72px;
  overflow: hidden;
  background:
    linear-gradient(45deg, transparent 24%, rgba(0,0,0,.03) 25%, rgba(0,0,0,.03) 26%, transparent 27%, transparent 74%, rgba(0,0,0,.03) 75%, rgba(0,0,0,.03) 76%, transparent 77%),
    linear-gradient(135deg, transparent 24%, rgba(0,0,0,.035) 25%, rgba(0,0,0,.035) 26%, transparent 27%, transparent 74%, rgba(0,0,0,.035) 75%, rgba(0,0,0,.035) 76%, transparent 77%),
    #e5e8ea;
  background-size: 74px 74px;
}

.map-surface::before {
  content: "Chicago";
  position: absolute;
  left: 46%;
  top: 44%;
  color: rgba(0,0,0,.18);
  font-family: "Exo 2", Arial, sans-serif;
  font-size: 42px;
  font-weight: 900;
}

.location-carousel {
  position: relative;
  width: 100%;
  min-height: 500px;
  margin-top: 72px;
  overflow: hidden;
}

.location-carousel-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(290px, 78%);
  gap: 18px;
  height: 100%;
  min-height: 500px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: 0;
  padding: 0 0 12px;
  scrollbar-width: thin;
  scrollbar-color: var(--green) rgba(0, 0, 0, .12);
}

.location-carousel-track::-webkit-scrollbar {
  height: 8px;
}

.location-carousel-track::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, .1);
}

.location-carousel-track::-webkit-scrollbar-thumb {
  background: var(--green);
}

.location-slide {
  position: relative;
  min-height: 500px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  color: var(--white);
  background: var(--black);
  scroll-snap-align: start;
  isolation: isolate;
}

.location-slide::before,
.location-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
}

.location-slide::before {
  background-image: var(--slide-image);
  background-size: cover;
  background-position: center;
  filter: grayscale(.28);
  transform: scale(1.03);
  transition: transform .35s ease, filter .35s ease;
}

.location-slide::after {
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, .06), rgba(0, 0, 0, .78)),
    linear-gradient(90deg, rgba(0, 0, 0, .55), rgba(0, 0, 0, .08));
}

.location-slide:hover::before {
  transform: scale(1.08);
  filter: grayscale(.06);
}

.location-slide span {
  margin-bottom: 10px;
  color: var(--green);
  font-family: "Exo 2", Arial, sans-serif;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.location-slide h3 {
  max-width: 330px;
  margin-bottom: 14px;
  font-size: clamp(27px, 3vw, 39px);
  line-height: 1;
}

.location-slide p {
  max-width: 360px;
  margin: 0;
  color: rgba(255, 255, 255, .88);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.45;
}

.location-carousel-controls {
  position: absolute;
  right: 18px;
  bottom: 28px;
  display: flex;
  gap: 10px;
}

.carousel-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border: 2px solid var(--white);
  border-radius: 50%;
  color: var(--white);
  background: rgba(0, 0, 0, .48);
  font-size: 21px;
  font-weight: 900;
  cursor: pointer;
  transition: background-color .2s ease, border-color .2s ease, color .2s ease;
}

.carousel-btn:hover {
  border-color: var(--green);
  color: var(--black);
  background: var(--green);
}

.pin {
  position: absolute;
  width: 32px;
  height: 32px;
  border: 6px solid var(--green);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  background: var(--white);
}

.pin::after {
  content: "";
  position: absolute;
  inset: 7px;
  border-radius: 50%;
  background: var(--green);
}

.pin.one { left: 42%; top: 42%; }
.pin.two { left: 54%; top: 36%; }
.pin.three { left: 61%; top: 51%; }
.pin.four { left: 35%; top: 58%; }

.contact-panel {
  padding: 84px 0 100px;
}

.contact-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 74px;
  align-items: start;
}

.contact-card {
  padding: 38px 0;
  border-top: 1px solid rgba(0,0,0,.18);
  border-bottom: 1px solid rgba(0,0,0,.18);
}

.contact-card strong {
  display: block;
  margin-bottom: 8px;
  font-family: "Exo 2", Arial, sans-serif;
  font-size: 20px;
}

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

.contact-form label {
  display: grid;
  gap: 7px;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  min-height: 50px;
  border: 1px solid rgba(0,0,0,.28);
  padding: 12px 14px;
  font: inherit;
  background: var(--white);
}

.contact-form textarea,
.contact-form .full {
  grid-column: 1 / -1;
}

.contact-form textarea {
  min-height: 142px;
  resize: vertical;
}

.site-footer {
  padding: 70px 0 42px;
  color: var(--white);
  background: var(--black);
}

.footer-grid {
  display: grid;
  grid-template-columns: .75fr .9fr 2fr;
  gap: 72px;
}

.site-footer h3 {
  margin-bottom: 28px;
  color: var(--white);
  font-size: 19px;
  text-transform: uppercase;
}

.site-footer li {
  margin-bottom: 13px;
}

.site-footer a,
.site-footer p {
  color: var(--white);
  font-size: 15px;
  font-weight: 600;
}

.footer-offices {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px 64px;
}

.footer-office strong {
  display: block;
  margin-bottom: 8px;
  font-weight: 900;
}

.footer-bottom {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-top: 50px;
}

.footer-bottom .brand-mark {
  width: 200px;
  color: rgba(255,255,255,.55);
}

.footer-bottom .brand-line.two span {
  color: var(--green);
}

.footer-legal {
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
}

@media (max-width: 1180px) {
  .innerin {
    width: min(100% - 60px, var(--max));
  }

  .site-navigation.__top {
    min-width: 675px;
  }

  .site-navigation.__top a {
    padding: 0 16px;
  }

  .site-navigation.__main > ul > li > a {
    padding: 0 13px;
  }
}

@media (max-width: 991px) {
  .site-header {
    height: 141px;
  }

  .site-header .innerin,
  .site-navigation.__top,
  .site-navigation.__main {
    display: none;
  }

  .mobile-topbar {
    display: block;
    height: 141px;
    background: var(--white);
  }

  .mobile-blackbar {
    height: 26px;
    background: var(--black);
  }

  .menu-toggle {
    position: absolute;
    top: 50%;
    left: 14px;
    transform: translateY(-50%);
    margin-top: 13px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 48px;
    height: 48px;
    border: 0;
    border-radius: 8px;
    padding: 0;
    background: var(--black);
    cursor: pointer;
    z-index: 51;
  }

  .menu-toggle span,
  .menu-toggle::before,
  .menu-toggle::after {
    content: "";
    display: block;
    width: 26px;
    height: 3px;
    margin: 0;
    border-radius: 2px;
    background: var(--white);
  }

  .mobile-logo {
    height: 115px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .mobile-logo .brand-mark {
    width: 152px;
    min-height: 58px;
  }

  .mobile-logo .brand-line.one { font-size: 13px; }
  .mobile-logo .brand-line.two { font-size: 24px; }
  .mobile-logo .brand-line.three { font-size: 11px; }

  .mobile-drawer {
    position: fixed;
    z-index: 60;
    top: 0;
    left: 0;
    display: block;
    width: 86vw;
    max-width: 370px;
    height: 100vh;
    height: 100dvh;
    padding: 18px 22px 28px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    color: var(--white);
    background: var(--black);
    box-shadow: 0 0 40px rgba(0, 0, 0, .5);
    transform: translateX(-100%);
    transition: transform .3s ease;
  }

  .drawer-open .mobile-drawer {
    transform: translateX(0);
  }

  .drawer-overlay {
    position: fixed;
    inset: 0;
    z-index: 55;
    display: block;
    opacity: 0;
    visibility: hidden;
    background: rgba(0, 0, 0, .5);
    transition: opacity .3s ease, visibility .3s ease;
  }

  .drawer-open .drawer-overlay {
    opacity: 1;
    visibility: visible;
  }

  .drawer-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, .18);
  }

  .drawer-title {
    font-family: "Exo 2", Arial, sans-serif;
    font-size: 18px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .04em;
    color: var(--white);
  }

  .drawer-close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 8px;
    padding: 0;
    color: var(--white);
    background: rgba(255, 255, 255, .12);
    font-size: 30px;
    line-height: 1;
    font-weight: 700;
    cursor: pointer;
    transition: background-color .2s ease, color .2s ease;
  }

  .drawer-close:hover {
    color: var(--black);
    background: var(--green);
  }

  .mobile-drawer a {
    display: block;
    padding: 14px 4px;
    min-height: 48px;
    border-bottom: 1px solid rgba(255,255,255,.12);
    font-family: "Exo 2", Arial, sans-serif;
    font-size: 17px;
    font-weight: 800;
  }

  .mobile-drawer a:hover {
    color: var(--green);
  }

  .mobile-drawer a.drawer-phone {
    margin-top: 18px;
    border: 0;
    border-radius: 6px;
    padding: 15px 18px;
    text-align: center;
    color: var(--white);
    background: var(--green);
    text-transform: uppercase;
    letter-spacing: .03em;
  }

  .mobile-drawer a.drawer-phone:hover {
    color: var(--white);
    background: var(--green-dark);
  }

  .hero-section {
    min-height: 300px;
  }

  .career-section {
    min-height: 340px;
  }

  .hero-copy,
  .career-section .hero-copy {
    margin-left: 0;
  }

  .label-heading,
  .career-section .label-heading {
    font-size: 35px;
  }

  .hero-copy p {
    margin-top: 24px;
    font-size: 15px;
  }

  .capabilities-section,
  .listing-section,
  .detail-section,
  .split-section,
  .contact-panel,
  .locations-panel {
    padding: 62px 0;
  }

  .capability-grid,
  .split-grid,
  .detail-grid,
  .contact-grid,
  .market-grid,
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .listing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .office-grid,
  .footer-offices {
    grid-template-columns: 1fr 1fr;
  }

  .location-carousel {
    margin-top: 0;
  }
}

@media (max-width: 768px) {
  /* Desktop nav stays hidden, hamburger drawer is the primary nav here. */
  .site-header .innerin,
  .site-navigation.__top,
  .site-navigation.__main {
    display: none;
  }

  .mobile-topbar {
    display: block;
  }

  /* Stack every multi-column layout to a single column. */
  .capability-grid,
  .split-grid,
  .detail-grid,
  .contact-grid,
  .market-grid,
  .footer-grid,
  .office-grid,
  .footer-offices,
  .contact-form {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  /* Dense card decks drop to two columns. */
  .listing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
  }

  /* Reduce section padding so content isn't cramped. */
  .capabilities-section,
  .listing-section,
  .detail-section,
  .split-section,
  .contact-panel,
  .locations-panel,
  .green-cta,
  .light-two-col,
  .quote-band,
  .market-band {
    padding: 56px 0;
  }

  /* Hero type scales down on small screens. */
  .label-heading,
  .career-section .label-heading {
    font-size: clamp(30px, 8vw, 44px);
  }

  /* Readable body + comfortable tap targets. */
  body {
    font-size: 16px;
  }

  .contact-form input,
  .contact-form textarea,
  .contact-form select {
    min-height: 50px;
    font-size: 16px;
  }

  .btns {
    min-height: 48px;
  }

  .site-navigation.__top a,
  .related-links a,
  .site-footer a {
    min-height: 44px;
  }
}

@media (max-width: 620px) {
  body {
    font-size: 16px;
  }

  .innerin {
    width: calc(100% - 36px);
  }

  .hero-section,
  .career-section {
    min-height: 300px;
  }

  .hero-section .hero-bg::after,
  .career-section .hero-bg::after {
    background: rgba(61, 168, 115, .86);
  }

  .label-heading,
  .career-section .label-heading {
    font-size: 31px;
    line-height: 1.18;
  }

  .capability-grid,
  .split-grid,
  .detail-grid,
  .contact-grid,
  .market-grid,
  .footer-grid {
    gap: 34px;
  }

  .section-title-row {
    margin-bottom: 36px;
  }

  .section-title-row h2 {
    font-size: 25px;
  }

  .capability-intro h3,
  .split-grid h2,
  .detail-copy h2,
  .contact-panel h2 {
    font-size: 27px;
  }

  .listing-grid,
  .office-grid,
  .footer-offices,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .service-tile,
  .listing-card,
  .detail-aside {
    padding: 28px 24px;
  }

  .service-title,
  .listing-card h3 {
    font-size: 25px;
  }

  .media-frame {
    min-height: 310px;
  }

  .map-surface,
  .location-carousel,
  .location-carousel-track,
  .location-slide {
    min-height: 310px;
  }

  .location-carousel-track {
    grid-auto-columns: 88%;
  }

  .location-slide {
    padding: 24px;
  }

  .location-carousel-controls {
    right: 14px;
    bottom: 20px;
  }

  .footer-bottom {
    display: block;
  }
}

/* brand-logo-img */
.site-branding a[href="/"],.mobile-logo a[href="/"],.footer-bottom a[href="/"]{display:inline-flex;align-items:center}
.brand-logo{height:42px;width:auto;display:block;max-width:300px}
.footer-bottom .brand-logo{height:46px}
