:root {
  --c-main: #000;
  --c-dark-blue: #02568a;
  --c-energy-blue: #2da2db;
  --c-energy-blue-ada: #49b6eb;
  --c-lt-blue: #b9e5fb;
  --c-dark-grey: #333;
  --c-lt-grey: #bcbcbc;
  --c-bright-grey: #f2f2f2;
  --c-white: #fff;
  --font-header: "aktiv-grotesk-extended", Arial Black, Impact, sans-serif;
  --font-header-alt: "aktiv-grotesk", Arial, sans-serif;
  --font-body: "aktiv-grotesk", Arial, sans-serif;
  --width-content: 120rem;
  --width-wide: 160rem;
  --width-medium: 99.2rem;
  --width-small: 54rem;
  --col-gap: 2.4rem;
}

* {
  box-sizing: border-box;
}

html {
  font-size: 10px;
  background: #000;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: #000;
  color: #fff;
  font-family: var(--font-body);
  font-size: 1.7rem;
  line-height: 1.55;
}

body.mobile-nav-open,
body.mega-nav-open {
  overflow: hidden;
}

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

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

iframe,
video {
  height: auto;
}

table {
  max-width: 100%;
  display: block;
  overflow-x: auto;
}

pre {
  max-width: 100%;
  overflow-x: auto;
}

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

p {
  margin: 0 0 1.6rem;
}

h1,
h2,
h3,
h4,
.h4,
.h5,
.h6 {
  margin: 0 0 1.8rem;
  font-family: var(--font-header);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.94;
  text-transform: uppercase;
}

h1 {
  font-size: clamp(5.2rem, 9vw, 13rem);
}

h2 {
  font-size: clamp(3.2rem, 5vw, 7.2rem);
}

h3,
.h4 {
  font-size: clamp(2rem, 2vw, 3.2rem);
}

strong {
  color: var(--c-energy-blue);
}

.container,
.container--narrow,
.container--medium,
.container--wide {
  margin: 0 auto;
  padding-left: 2.4rem;
  padding-right: 2.4rem;
  width: 100%;
}

.container {
  max-width: var(--width-content);
}

.container--narrow {
  max-width: 105rem;
}

.container--medium {
  max-width: var(--width-medium);
}

.container--wide {
  max-width: var(--width-wide);
}

.skip-to-content,
.show-for-sr {
  clip: rect(1px, 1px, 1px, 1px);
  height: 1px;
  overflow: hidden;
  position: absolute !important;
  width: 1px;
}

.btn {
  align-items: center;
  background: linear-gradient(-120deg, var(--c-dark-blue) 0%, var(--c-dark-blue) 50%, var(--c-energy-blue) 50%, var(--c-energy-blue) 100%);
  background-position-x: 100%;
  background-size: calc(200% + 6rem);
  border: 0;
  color: #fff;
  display: inline-flex;
  font-family: var(--font-header);
  font-size: 1.3rem;
  font-weight: 700;
  gap: 1rem;
  justify-content: center;
  line-height: 1;
  min-height: 4.4rem;
  padding: 1.4rem 2rem;
  text-transform: uppercase;
  transition: background-position-x 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.btn:hover,
.btn:focus {
  background-position-x: 0;
  color: #000;
}

.btn--sm {
  font-size: 1.1rem;
  min-height: 3.6rem;
  padding: 1.1rem 1.5rem;
}

.btn--primary-inv {
  background-image: linear-gradient(-120deg, #fff 0%, #fff 50%, var(--c-energy-blue) 50%, var(--c-energy-blue) 100%);
  color: var(--c-dark-blue);
}

.btn--secondary,
.btn--secondary-inv,
.btn--secondary-dark {
  background: transparent;
  border: 2px solid currentColor;
  color: var(--c-energy-blue);
  position: relative;
}

.btn--secondary-inv {
  color: #fff;
}

.btn--secondary-dark {
  color: var(--c-dark-blue);
}

.btn--secondary:hover,
.btn--secondary:focus,
.btn--secondary-inv:hover,
.btn--secondary-inv:focus,
.btn--secondary-dark:hover,
.btn--secondary-dark:focus {
  background: transparent;
  color: var(--c-energy-blue);
}

.site-header {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0) 100%);
  left: 0;
  padding: 3rem 0;
  position: fixed;
  right: 0;
  top: 0;
  transition: background 0.25s ease, transform 0.25s ease;
  z-index: 80;
}

.site-header.is-scrolled,
.site-header.has-open-mobile-menu,
.mega-nav-open .site-header {
  background: rgba(0, 0, 0, 0.92);
}

.site-header[data-scroll-direction="down"] {
  transform: translateY(-102%);
}

.site-header.has-open-mobile-menu,
.mega-nav-open .site-header {
  /* Use 'none' (not translateY(0)) so the header does not become a containing
     block / stacking context for the now body-level fixed nav panels. */
  transform: none;
}

.site-header__container {
  align-items: flex-start;
  display: flex;
  gap: 2.4rem;
  justify-content: space-between;
  position: relative;
}

.site-header__logo,
.site-footer__logo {
  color: #fff;
  display: inline-block;
  flex: 0 0 auto;
  font-family: var(--font-header);
  font-style: italic;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.78;
  text-transform: uppercase;
}

.logo-main {
  display: block;
  font-size: clamp(2.2rem, 2.3vw, 3.6rem);
  white-space: nowrap;
}

.logo-sub {
  color: #fff;
  display: block;
  font-family: var(--font-header-alt);
  font-size: 1rem;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0;
  margin-top: 0.4rem;
}

.site-header__navs {
  margin-left: auto;
}

.main-nav ul,
.secondary-nav ul {
  align-items: center;
  display: flex;
  gap: 3.2rem;
  justify-content: flex-end;
  list-style: none;
  margin: 0;
  padding: 0;
}

.secondary-nav ul {
  gap: 2.4rem;
  margin-bottom: 1.4rem;
}

.main-nav__link,
.secondary-nav__link {
  color: #fff;
  font-family: var(--font-header);
  font-size: 1.25rem;
  font-weight: 900;
  text-transform: uppercase;
  transition: color 0.2s ease;
}

.secondary-nav__link {
  font-size: 1rem;
}

.main-nav__link:hover,
.secondary-nav__link:hover {
  color: var(--c-energy-blue);
}

.mobile-nav__toggle,
.mega-nav__toggle {
  align-items: center;
  background: transparent;
  border: 0;
  cursor: pointer;
  position: relative;
  z-index: 86;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  height: 4rem;
  justify-content: center;
  padding: 0;
  width: 4.8rem;
}

.mobile-nav__toggle span,
.mega-nav__toggle span {
  background: #fff;
  display: block;
  height: 0.2rem;
  transition: transform 0.25s ease, opacity 0.25s ease;
  width: 3.6rem;
}

.mobile-nav__toggle {
  display: none;
}

/* Hamburger drawer close (X) button — injected by site.js, shown only inside the open mobile drawer */
.mobile-nav__close {
  align-items: center;
  background: rgba(255, 255, 255, 0.08);
  border: 0.2rem solid rgba(255, 255, 255, 0.55);
  border-radius: 50%;
  color: #fff;
  cursor: pointer;
  display: none;
  height: 5rem;
  justify-content: center;
  line-height: 1;
  padding: 0;
  position: absolute;
  right: 2rem;
  top: 2.4rem;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
  width: 5rem;
  z-index: 5;
}

.mobile-nav__close svg {
  display: block;
  height: 2.2rem;
  width: 2.2rem;
}

.mobile-nav__close:hover,
.mobile-nav__close:focus {
  background: var(--c-energy-blue);
  border-color: var(--c-energy-blue);
  transform: rotate(90deg);
}

.mobile-nav-open .mobile-nav__close {
  display: flex;
}

/* Dimming overlay behind the open drawer / mega menu (sits under the fixed header) */
.nav-overlay {
  background: rgba(0, 0, 0, 0.6);
  inset: 0;
  opacity: 0;
  pointer-events: none;
  position: fixed;
  transition: opacity 0.25s ease;
  z-index: 70;
}

body.mobile-nav-open .nav-overlay {
  opacity: 1;
  pointer-events: auto;
}

.mega-nav {
  background: rgba(0, 0, 0, 0.98);
  bottom: 0;
  left: 0;
  overflow-y: auto;
  padding: 16rem 6vw 7rem;
  position: fixed;
  right: 0;
  top: 0;
  /* Above page content but below the fixed header (z80) so the mega toggle in
     the header stays clickable to close the menu. Was z-index:-1 (a bug that
     rendered the panel behind page content). */
  z-index: 60;
}

.mega-nav__listing {
  display: grid;
  gap: 3rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  list-style: none;
  margin: 0 auto;
  max-width: 120rem;
  padding: 0;
}

.mega-nav__link {
  color: #fff;
  display: block;
  font-family: var(--font-header);
  font-size: clamp(2.8rem, 4vw, 5.6rem);
  font-weight: 900;
  margin-bottom: 2rem;
  text-transform: uppercase;
}

.mega-nav__children,
.mobile-nav__submenu {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mega-nav__child-link {
  color: var(--c-lt-grey);
  display: block;
  font-weight: 700;
  padding: 0.7rem 0;
  transition: color 0.2s ease;
}

.mega-nav__child-link:hover {
  color: var(--c-energy-blue);
}

.hero-heading {
  align-items: flex-end;
  background: #000;
  color: #fff;
  display: flex;
  min-height: 64rem;
  overflow: hidden;
  padding: 22rem 0 6rem;
  position: relative;
}

.hero-heading.home-centered {
  align-items: center;
  height: 100vh;
  min-height: 72rem;
  text-align: center;
}

.hero-heading::after {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.28), rgba(0, 0, 0, 0.72));
  bottom: 0;
  content: "";
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
}

.hero-heading__img {
  height: 100%;
  left: 0;
  object-fit: cover;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 0;
}

.hero-heading .container,
.hero-heading .container--narrow {
  position: relative;
  z-index: 2;
}

.hero-heading h1 {
  max-width: 110rem;
}

.hero-heading.home-centered h1 {
  margin-left: auto;
  margin-right: auto;
}

.hero-kicker,
.breadcrumbs {
  color: #fff;
  font-family: var(--font-header);
  font-size: 1.4rem;
  font-weight: 900;
  margin: 0 0 2rem;
  text-transform: uppercase;
}

.breadcrumbs a {
  color: #fff;
}

.breadcrumbs__separator {
  color: var(--c-energy-blue);
  display: inline-block;
  padding: 0 0.8rem;
}

.scroll-down {
  animation: bounce 2s infinite;
  bottom: 5vh;
  height: 20px;
  left: calc(50% - 20px);
  opacity: 0;
  pointer-events: none;
  position: fixed;
  transition: opacity 0.2s ease;
  width: 40px;
  z-index: 10;
}

.scroll-down.is-visible {
  opacity: 1;
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-20px);
  }
  60% {
    transform: translateY(-10px);
  }
}

.subnav {
  background: #000;
  padding: 3.2rem 0;
  position: relative;
}

.subnav::before,
.content-simple.bg-black--grunge-top::after,
.project-carousel.bg-black--grunge-3::before,
.index-section.bg-black--grunge-3::before {
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.18), transparent 45%), linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08), transparent);
  content: "";
  height: 6rem;
  left: 0;
  opacity: 0.32;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
}

.subnav__list {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-evenly;
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
  z-index: 2;
}

.subnav__list a {
  color: #fff;
  display: block;
  font-family: var(--font-header);
  font-size: 1.3rem;
  font-weight: 700;
  padding: 0.4rem 1.2rem;
  position: relative;
  text-transform: uppercase;
}

.subnav__list a:hover,
.subnav__list a.active-node {
  color: var(--c-energy-blue);
}

.subnav__list a.active-node::after {
  background: var(--c-energy-blue);
  clip-path: polygon(0 0, 100% 0, 100% 100%);
  content: "";
  height: 1.2rem;
  position: absolute;
  right: 0;
  top: 0;
  width: 1.2rem;
}

.content-simple,
.stats-grid,
.detail-copy,
.index-section {
  background: #000;
  color: #fff;
  padding: 10rem 0;
  position: relative;
}

.content-simple {
  text-align: center;
}

.content-simple.bg-blue {
  background: var(--c-dark-blue);
}

.full_width__rich-text {
  position: relative;
  z-index: 2;
}

.full_width__rich-text p {
  font-size: clamp(1.7rem, 2vw, 2.2rem);
  margin-left: auto;
  margin-right: auto;
  max-width: 76rem;
}

.cards-carousel,
.project-carousel {
  background: #000;
  color: #fff;
  overflow: hidden;
  padding: 6rem 0 11rem;
  position: relative;
}

.cards-carousel__inner,
.project-carousel__inner {
  align-items: center;
  display: grid;
  gap: 5rem;
  grid-template-columns: minmax(28rem, 46rem) minmax(0, 1fr);
}

.cards-carousel__block,
.project-carousel__block {
  padding: 2.4rem;
  position: relative;
  z-index: 2;
}

.cards-carousel__rich-text h2,
.project-carousel__rich-text h2 {
  color: #fff;
  font-size: clamp(3.2rem, 4vw, 5.2rem);
}

.cards-carousel__carousel,
.project-carousel__carousel {
  overflow: visible;
  position: relative;
}

.cards-carousel__track,
.project-carousel__track {
  display: flex;
  gap: 2.4rem;
  transition: transform 0.55s ease;
  will-change: transform;
}

.cards-carousel__item,
.project-carousel__item {
  color: #fff;
  display: block;
  flex: 0 0 34rem;
  height: 48rem;
  overflow: hidden;
  position: relative;
}

.cards-carousel__item::after,
.project-carousel__item::after,
.index-card::after {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.45) 34%, transparent 78%);
  bottom: 0;
  content: "";
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
}

.cards-carousel__featured-image,
.project-carousel__featured-image {
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
  width: 100%;
}

.cards-carousel__item:hover img,
.project-carousel__item:hover img,
.index-card:hover img {
  transform: scale(1.06);
}

.cards-carousel__card-info,
.project-carousel__location-info {
  bottom: 0;
  left: 0;
  padding: 2.4rem;
  position: absolute;
  right: 0;
  z-index: 2;
}

.card-carousel__active-info {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.45s ease, opacity 0.45s ease;
}

.cards-carousel__item:hover .card-carousel__active-info,
.cards-carousel__item.is-selected .card-carousel__active-info {
  max-height: 20rem;
  opacity: 1;
}

.cards-carousel__nav,
.project-carousel__nav {
  align-items: center;
  display: flex;
  gap: 1.6rem;
  justify-content: flex-end;
  margin-top: 3.2rem;
}

.cards-carousel__nav-count,
.project-carousel__nav-count {
  color: var(--c-energy-blue);
  font-family: var(--font-header-alt);
  font-weight: 700;
}

.cards-carousel__nav-arrow,
.project-carousel__nav-arrow {
  align-items: center;
  background: var(--c-energy-blue);
  border: 0;
  color: #fff;
  cursor: pointer;
  display: flex;
  height: 4rem;
  justify-content: center;
  width: 4rem;
}

.cards-carousel__nav-arrow svg,
.project-carousel__nav-arrow svg {
  display: block;
}

.cards-carousel__nav-arrow:first-of-type svg,
.project-carousel__nav-arrow:first-of-type svg {
  transform: rotate(180deg);
}

.stats-grid {
  text-align: center;
}

.stats-grid__stats {
  display: grid;
  gap: var(--col-gap);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  list-style: none;
  margin: 4rem 0 0;
  padding: 0;
}

.stats-grid__stat {
  color: var(--c-energy-blue);
  display: block;
  font-family: var(--font-header);
  font-size: clamp(3.6rem, 7vw, 8rem);
  font-weight: 900;
  line-height: 0.95;
  text-transform: uppercase;
}

.stats-grid__stat-label {
  display: block;
  font-family: var(--font-header);
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.25;
  margin: 1.2rem auto 0;
  max-width: 26rem;
  text-transform: uppercase;
}

.content-wimg {
  background: var(--c-dark-blue);
  color: #fff;
  overflow: hidden;
  position: relative;
}

.content-wimg__wrap {
  align-items: center;
  display: grid;
  gap: 6rem;
  grid-template-columns: 1fr 1fr;
  min-height: 62rem;
  padding-bottom: 8rem;
  padding-top: 8rem;
}

.content-wimg.img-left .content-wimg__content-col {
  order: 2;
}

.content-wimg__img-col {
  height: 48rem;
  position: relative;
}

.content-wimg__img-col::before,
.cards-carousel__carousel::before {
  background: linear-gradient(135deg, transparent 0 48%, var(--c-energy-blue) 48% 52%, transparent 52%);
  content: "";
  height: 18rem;
  opacity: 0.8;
  position: absolute;
  right: -4rem;
  top: -5rem;
  width: 18rem;
  z-index: 1;
}

.content-wimg__img-col img {
  height: 100%;
  object-fit: cover;
  position: relative;
  width: 100%;
  z-index: 2;
}

.project-carousel {
  padding-bottom: 12rem;
}

.project-carousel__item {
  flex-basis: 32rem;
  height: 42rem;
}

.index-section {
  padding-top: 7rem;
}

.index-grid {
  display: grid;
  gap: 2.4rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.index-card {
  background: #111;
  color: #fff;
  display: block;
  min-height: 36rem;
  overflow: hidden;
  position: relative;
}

.index-card img {
  height: 100%;
  left: 0;
  object-fit: cover;
  position: absolute;
  top: 0;
  transition: transform 0.45s ease;
  width: 100%;
}

.index-card__body {
  bottom: 0;
  display: block;
  left: 0;
  padding: 2.4rem;
  position: absolute;
  right: 0;
  z-index: 2;
}

.index-card strong {
  color: #fff;
  display: block;
  font-family: var(--font-header);
  font-size: 2rem;
  line-height: 1;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.index-card em {
  color: rgba(255, 255, 255, 0.88);
  display: block;
  font-style: normal;
  font-weight: 700;
  line-height: 1.35;
}

.detail-copy .container--medium {
  display: grid;
  gap: 5rem;
  grid-template-columns: minmax(0, 1fr) 32rem;
}

.detail-copy article p {
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.9rem;
}

.detail-copy aside {
  background: var(--c-dark-blue);
  padding: 3rem;
  position: sticky;
  top: 10rem;
}

.detail-copy aside h2 {
  font-size: 2.8rem;
}

.detail-panels {
  display: grid;
  gap: 2.4rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 7rem auto 0;
  max-width: var(--width-content);
  padding: 0 2.4rem;
}

.detail-panels article {
  border: 1px solid rgba(73, 182, 235, 0.35);
  padding: 2.4rem;
}

.detail-panels h3 {
  color: var(--c-energy-blue);
  font-size: 2.4rem;
}

.bof-cta {
  background: var(--c-dark-blue);
  color: #fff;
  padding: 8rem 0;
  position: relative;
}

.bof-cta__inner {
  align-items: center;
  display: grid;
  gap: 3rem;
  grid-template-columns: minmax(0, 1fr) auto;
}

.bof-cta h2 {
  margin-bottom: 1.2rem;
}

.bof-cta p {
  max-width: 72rem;
}

.contact-section {
  padding: 10rem 0;
}

.contact-grid {
  display: grid;
  gap: 5rem;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr);
}

.contact-copy dl {
  display: grid;
  gap: 0.8rem;
  margin: 3rem 0 0;
}

.contact-copy dt {
  color: var(--c-energy-blue);
  font-family: var(--font-header);
  font-size: 1.2rem;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-copy dd {
  margin: 0 0 1.6rem;
  overflow-wrap: anywhere;
}

.contact-form {
  background: #fff;
  color: #000;
  display: grid;
  gap: 1.6rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding: 3rem;
}

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

.contact-form label {
  color: #000;
  display: grid;
  font-family: var(--font-header);
  font-size: 1.1rem;
  font-weight: 900;
  gap: 0.8rem;
  text-transform: uppercase;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  border: 1px solid #c9c9c9;
  color: #000;
  font: 400 1.6rem var(--font-body);
  padding: 1.4rem;
  width: 100%;
}

.contact-form textarea {
  min-height: 14rem;
}

.contact-form button {
  cursor: pointer;
  grid-column: 1 / -1;
}

.site-footer {
  background: #000;
  color: #fff;
  padding: 9rem 0 4rem;
}

.site-footer__main {
  display: grid;
  gap: 5rem;
  grid-template-columns: minmax(24rem, 32rem) minmax(0, 1fr);
}

.site-footer__contact p,
.site-footer__contact a {
  color: rgba(255, 255, 255, 0.78);
  overflow-wrap: anywhere;
}

.site-footer__nav {
  display: grid;
  gap: 3rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer__nav-link {
  color: #fff;
  display: block;
  font-family: var(--font-header);
  font-size: 1.6rem;
  font-weight: 900;
  margin-bottom: 1.4rem;
  text-transform: uppercase;
}

.site-footer__nav-submenu {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer__nav-submenu-link {
  color: rgba(255, 255, 255, 0.7);
  display: block;
  font-weight: 700;
  padding: 0.45rem 0;
}

.site-footer__nav-submenu-link:hover {
  color: var(--c-energy-blue);
}

.site-footer__family {
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  margin: 6rem 0 3rem;
  padding: 3rem 0;
}

.site-footer__family-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 1.6rem;
  margin-bottom: 1.8rem;
}

.site-footer__family-logos a {
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #fff;
  display: inline-flex;
  font-family: var(--font-header);
  font-size: 1.2rem;
  font-weight: 900;
  padding: 1.6rem 2rem;
  text-transform: uppercase;
}

.site-footer__family h3 {
  color: var(--c-energy-blue);
  font-size: 2.4rem;
  margin: 0;
}

.site-footer__bottom {
  align-items: center;
  display: flex;
  gap: 2rem;
  justify-content: space-between;
}

.site-footer__legal-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1.8rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer__legal-nav a,
.site-footer__copyright {
  color: rgba(255, 255, 255, 0.68);
  font-size: 1.3rem;
}

@media (max-width: 1080px) {
  .site-header__navs,
  .mega-nav__toggle {
    display: none;
  }

  .mobile-nav__toggle {
    display: flex;
  }

  .mobile-nav__menu {
    background: #000;
    bottom: 0;
    left: 0;
    overflow-y: auto;
    padding: 12rem 2.4rem 5rem;
    position: fixed;
    right: 0;
    top: 0;
    /* Sit above page content (header z80, overlay z70) so the open drawer
       fully covers the page instead of rendering behind it. */
    z-index: 90;
  }

  .mobile-nav__list,
  .mobile-nav__list--secondary {
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .mobile-nav__link {
    color: #fff;
    display: block;
    font-family: var(--font-header);
    font-size: 3.4rem;
    font-weight: 900;
    padding: 1.2rem 0;
    text-transform: uppercase;
  }

  .mobile-nav__submenu {
    display: none;
    padding: 0 0 1.4rem 2rem;
  }

  .mobile-nav__item.submenu-open .mobile-nav__submenu {
    display: block;
  }

  .mobile-nav__submenu-link,
  .mobile-nav__link--secondary {
    color: rgba(255, 255, 255, 0.72);
    display: block;
    font-weight: 700;
    padding: 0.7rem 0;
  }

  .mobile-nav__cta {
    margin-top: 2rem;
  }

  .cards-carousel__inner,
  .project-carousel__inner,
  .content-wimg__wrap,
  .detail-copy .container--medium,
  .contact-grid,
  .site-footer__main,
  .bof-cta__inner {
    grid-template-columns: 1fr;
  }

  .content-wimg.img-left .content-wimg__content-col {
    order: 0;
  }

  .index-grid,
  .detail-panels,
  .stats-grid__stats,
  .site-footer__nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  html {
    font-size: 9px;
  }

  .site-header {
    padding: 2.2rem 0;
  }

  .container,
  .container--narrow,
  .container--medium,
  .container--wide {
    padding-left: 1.6rem;
    padding-right: 1.6rem;
  }

  .hero-heading,
  .hero-heading.home-centered {
    align-items: flex-end;
    height: auto;
    min-height: 74rem;
    padding: 18rem 0 8rem;
    text-align: left;
  }

  .hero-heading h1 {
    font-size: clamp(3.8rem, 11.5vw, 5.2rem);
    overflow-wrap: normal;
    word-break: normal;
  }

  .logo-main {
    font-size: 2.4rem;
  }

  .subnav__list {
    justify-content: flex-start;
  }

  .cards-carousel__item,
  .project-carousel__item {
    flex-basis: 28rem;
    height: 40rem;
  }

  .content-wimg__img-col {
    height: 34rem;
  }

  .index-grid,
  .detail-panels,
  .stats-grid__stats,
  .site-footer__nav,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .contact-form .full,
  .contact-form button {
    grid-column: auto;
  }

  .site-footer__bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* ---- Mobile tablet/phone hardening (<=768px): tap targets, stacking, readability ---- */
@media (max-width: 768px) {
  body {
    font-size: 1.7rem;
    line-height: 1.6;
  }

  /* Multi-column grids stack: dense card decks -> 2 cols, everything else -> 1 col */
  .cards-carousel__inner,
  .project-carousel__inner,
  .content-wimg__wrap,
  .detail-copy .container--medium,
  .contact-grid,
  .site-footer__main,
  .bof-cta__inner {
    grid-template-columns: 1fr;
  }

  .index-grid,
  .detail-panels,
  .stats-grid__stats,
  .site-footer__nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  /* Tighter section padding so content isn't jammed to the edges */
  .site-footer {
    padding: 6rem 0 3rem;
  }

  /* Tap targets >= 44px: nav links, buttons, form controls */
  .mobile-nav__link,
  .mobile-nav__submenu-link,
  .mobile-nav__link--secondary,
  .mega-nav__link,
  .mega-nav__child-link {
    min-height: 4.4rem;
    display: flex;
    align-items: center;
  }

  .btn,
  .btn--sm {
    min-height: 4.4rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  /* Keep the burger a comfortable tap target without changing its visibility rules */
  .mobile-nav__toggle {
    min-height: 4.4rem;
    min-width: 4.8rem;
  }

  .contact-form input,
  .contact-form select,
  .contact-form textarea {
    min-height: 4.8rem;
    font-size: 1.6rem;
  }

  .contact-form button {
    min-height: 4.8rem;
    width: 100%;
  }
}

/* ---- Narrow phones (<=480px): single-column dense grids, no overflow ---- */
@media (max-width: 480px) {
  .index-grid,
  .detail-panels,
  .stats-grid__stats,
  .site-footer__nav {
    grid-template-columns: 1fr;
  }

  .mobile-nav__link {
    font-size: 2.8rem;
  }

  .mobile-nav__menu {
    padding-top: 11rem;
  }
}

/* Fresno polish pass: header, menu, detail pages, footer, and mobile overflow. */
html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

.site-header__container {
  align-items: center;
  min-width: 0;
}

.site-header__navs {
  align-items: center;
  display: flex;
  min-width: 0;
}

.secondary-nav {
  display: none;
}

.main-nav ul {
  gap: clamp(1.1rem, 1.4vw, 2.4rem);
  margin: 0;
}

.main-nav__link {
  font-size: clamp(1rem, 0.95vw, 1.25rem);
  white-space: nowrap;
}

.main-nav__phone {
  border-left: 1px solid rgba(255, 255, 255, 0.32);
  color: var(--c-energy-blue);
  padding-left: clamp(1.2rem, 1.5vw, 2.2rem);
}

body.mega-nav-open .nav-overlay {
  opacity: 1;
  pointer-events: auto;
}

.mega-nav {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.98), rgba(5, 22, 34, 0.98));
  padding: 12rem 5vw 6rem;
  z-index: 75;
}

.mega-nav__eyebrow {
  color: var(--c-energy-blue);
  font-family: var(--font-header);
  font-size: 1.2rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  margin: 0 auto 2rem;
  max-width: 118rem;
  text-transform: uppercase;
}

.mega-nav__listing {
  gap: 1.8rem;
  max-width: 118rem;
}

.mega-nav__item {
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: clamp(1.8rem, 2vw, 2.6rem);
}

.mega-nav__link {
  font-size: clamp(2.2rem, 2.8vw, 3.6rem);
  line-height: 0.95;
  margin-bottom: 1.5rem;
}

.mega-nav__child-link {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.45rem;
  line-height: 1.25;
  padding: 1rem 0;
}

.mega-nav__contact {
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  flex-wrap: wrap;
  gap: 1.4rem;
  justify-content: space-between;
  margin: 3rem auto 0;
  max-width: 118rem;
  padding-top: 2rem;
}

.mega-nav__contact a:not(.btn) {
  color: #fff;
  font-family: var(--font-header);
  font-size: clamp(1.5rem, 1.5vw, 2rem);
  font-weight: 800;
  overflow-wrap: anywhere;
}

.mega-nav__contact a:not(.btn):hover {
  color: var(--c-energy-blue);
}

.cards-carousel__cta {
  margin-top: 2.4rem;
}

.cards-carousel__item,
.project-carousel__item {
  min-width: 0;
}

.cards-carousel__card-info,
.project-carousel__location-info {
  overflow-wrap: anywhere;
}

.cards-carousel__card-info h3,
.project-carousel__location-info h3,
.index-card strong {
  line-height: 1.05;
  overflow-wrap: anywhere;
}

.cards-carousel__item:hover .card-carousel__active-info,
.cards-carousel__item.is-selected .card-carousel__active-info {
  max-height: 28rem;
}

.stats-grid__stats {
  gap: clamp(1.8rem, 3vw, 4rem);
}

.stats-grid__stats li {
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(73, 182, 235, 0.24);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 24rem;
  padding: clamp(2rem, 3vw, 3.4rem);
}

.stats-grid__stat {
  font-size: clamp(3.8rem, 5.5vw, 6.8rem);
}

.stats-grid__stat-label {
  font-size: clamp(1.25rem, 1.2vw, 1.55rem);
  line-height: 1.45;
  max-width: 32rem;
  text-transform: none;
}

.locations-showcase {
  color: #fff;
  padding: 10rem 0;
}

.section-heading-row {
  align-items: end;
  display: flex;
  gap: 2rem;
  justify-content: space-between;
  margin-bottom: 4rem;
}

.section-heading-row h2 {
  margin: 0;
  max-width: 76rem;
}

.locations-grid {
  display: grid;
  gap: 1.6rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.location-tile {
  color: #fff;
  display: block;
  min-height: 26rem;
  overflow: hidden;
  position: relative;
}

.location-tile--1,
.location-tile--6 {
  grid-column: span 2;
}

.location-tile img {
  height: 100%;
  inset: 0;
  object-fit: cover;
  position: absolute;
  transition: transform 0.45s ease;
  width: 100%;
}

.location-tile::after {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.18));
  content: "";
  inset: 0;
  position: absolute;
}

.location-tile span {
  bottom: 2rem;
  font-family: var(--font-header);
  font-size: clamp(2rem, 2.2vw, 3.2rem);
  font-weight: 900;
  left: 2rem;
  max-width: calc(100% - 4rem);
  position: absolute;
  text-transform: uppercase;
  z-index: 2;
}

.location-tile:hover img {
  transform: scale(1.06);
}

.detail-copy .container--medium {
  align-items: start;
}

.detail-copy article.taxonomy-copy,
.detail-copy .taxonomy-copy {
  display: grid;
  gap: 1.8rem;
}

.detail-copy article p,
.taxonomy-copy p {
  line-height: 1.72;
}

.detail-copy aside,
.detail-side,
.scope-card {
  align-self: start;
  border: 1px solid rgba(73, 182, 235, 0.28);
  max-height: calc(100vh - 13rem);
  overflow: auto;
}

.scope-card__phone,
.side-phone {
  color: #fff;
  display: block;
  font-family: var(--font-header);
  font-size: 1.8rem;
  font-weight: 900;
  margin: 1.5rem 0;
  overflow-wrap: anywhere;
}

.detail-panels {
  margin-top: 5rem;
}

.faq-section {
  background: #000;
  color: #fff;
  padding: 8rem 0;
}

.faq-section .section-title,
.faq-section details {
  margin-left: auto;
  margin-right: auto;
  max-width: 96rem;
  width: min(96rem, calc(100% - 4rem));
}

.faq-section .section-title {
  margin-bottom: 2.4rem;
}

.faq-section details {
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  padding: 1.8rem 0;
}

.faq-section details:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.faq-section summary {
  cursor: pointer;
  font-family: var(--font-header);
  font-size: clamp(1.9rem, 2vw, 2.6rem);
  font-weight: 900;
}

.faq-section p {
  color: rgba(255, 255, 255, 0.78);
  margin-top: 1rem;
}

.site-footer__main {
  gap: clamp(3rem, 5vw, 7rem);
  grid-template-columns: minmax(22rem, 34rem) minmax(0, 1fr);
}

.site-footer__nav {
  gap: 2.4rem;
  grid-template-columns: repeat(auto-fit, minmax(13rem, 1fr));
}

.site-footer__nav-link {
  font-size: 1.35rem;
  line-height: 1.1;
}

.site-footer__nav-submenu-link {
  font-size: 1.35rem;
  line-height: 1.28;
  overflow-wrap: anywhere;
}

.vnzod-h-footer-map {
  border: 1px solid rgba(255, 255, 255, 0.14);
  margin-top: 2rem;
  overflow: hidden;
}

.vnzod-h-footer-map iframe {
  border: 0;
  display: block;
  height: 22rem;
  width: 100%;
}

@media (max-width: 1180px) {
  .main-nav ul {
    gap: 1rem;
  }

  .main-nav__link {
    font-size: 0.95rem;
  }

  .logo-main {
    font-size: clamp(2rem, 2.1vw, 3rem);
  }
}

@media (max-width: 1080px) {
  .site-header__container {
    align-items: center;
  }

  .site-header__logo {
    max-width: calc(100% - 7rem);
  }

  .mobile-nav__toggle {
    flex: 0 0 5.2rem;
    margin-left: auto;
    width: 5.2rem;
  }

  .mobile-nav__menu {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.98), rgba(6, 24, 36, 0.98));
    box-shadow: -2rem 0 6rem rgba(0, 0, 0, 0.45);
    left: auto;
    padding: 8.8rem 2.4rem 3rem;
    right: 0;
    width: min(44rem, 100vw);
  }

  .mobile-nav__close {
    height: 4.4rem;
    right: 1.8rem;
    top: 1.8rem;
    width: 4.4rem;
  }

  .mobile-nav__link {
    font-size: clamp(2.15rem, 6vw, 3rem);
    line-height: 1;
    padding: 1rem 0;
  }

  .mobile-nav__submenu {
    background: rgba(255, 255, 255, 0.055);
    margin: 0.2rem 0 1.2rem;
    padding: 1rem 1.3rem;
  }

  .mobile-nav__submenu-link,
  .mobile-nav__link--secondary {
    font-size: 1.55rem;
    line-height: 1.25;
    min-width: 0;
    overflow-wrap: anywhere;
  }

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

  .location-tile--1,
  .location-tile--6 {
    grid-column: span 1;
  }

  .detail-copy aside,
  .detail-side,
  .scope-card {
    max-height: none;
    position: relative;
    top: auto;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 1.4rem 0;
  }

  .logo-main {
    font-size: clamp(1.75rem, 6vw, 2.25rem);
    white-space: normal;
  }

  .logo-sub {
    font-size: 0.95rem;
  }

  .mobile-nav__toggle span {
    width: 3.2rem;
  }

  .cards-carousel,
  .project-carousel,
  .locations-showcase,
  .content-simple,
  .stats-grid,
  .detail-copy,
  .index-section {
    padding-bottom: 7rem;
    padding-top: 7rem;
  }

  .section-heading-row {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .location-tile {
    min-height: 22rem;
  }

  .cards-carousel__block,
  .project-carousel__block {
    padding: 0;
  }

  .cards-carousel__item,
  .project-carousel__item {
    flex-basis: min(84vw, 32rem);
  }

  .stats-grid__stats li {
    min-height: auto;
  }

  .site-footer__main,
  .site-footer__nav {
    grid-template-columns: 1fr;
  }
}

/* brand-logo-img */
.site-header__logo,.site-footer__logo{display:flex;align-items:center}
.brand-logo{height:32px;width:auto;display:block;max-width:320px}
@media (max-width:1080px){.brand-logo{max-width:calc(100vw - 9rem)}}
