:root {
  --site-orange: #e06223;
  --site-orange-dark: #8f340c;
  --site-orange-soft: rgba(224, 98, 35, 0.14);
  --site-white: #ffffff;
  --site-ink: #111111;
  --site-ink-soft: #2d2d2d;
  --site-muted: #5f5f5f;
  --site-border: rgba(17, 17, 17, 0.14);
  --site-border-light: rgba(255, 255, 255, 0.2);
  --site-shadow: 0 18px 44px rgba(17, 17, 17, 0.16);
}

.site-header,
.site-footer {
  font-family:
    Inter, Montserrat, Arial, Helvetica, sans-serif;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  max-width: none !important;
  padding: 0 !important;
  background: rgba(17, 17, 17, 0.72);
  color: var(--site-white);
  box-shadow: 0 12px 36px rgba(17, 17, 17, 0.16);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  display: block !important;
  text-transform: none !important;
}

.site-header * {
  box-sizing: border-box;
}

.site-header .wrap,
.site-footer .wrap {
  width: min(calc(100% - 48px), 1240px);
  margin-inline: auto;
}

.site-header a,
.site-footer a {
  color: inherit;
  text-decoration: none;
}

.site-header .utility-bar {
  max-height: 36px;
  overflow: hidden;
  border-bottom: 1px solid var(--site-border-light);
  background: rgba(255, 255, 255, 0.04);
  opacity: 1;
  transition:
    max-height 200ms ease,
    opacity 200ms ease,
    border-color 200ms ease;
}

.site-header.is-scrolled .utility-bar {
  max-height: 0;
  border-color: transparent;
  opacity: 0;
}

.site-header .utility-inner {
  display: flex;
  min-height: 36px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  line-height: 1.4;
}

.site-header .utility-inner p {
  margin: 0;
}

.site-header .utility-inner a {
  color: var(--site-white);
  font-weight: 700;
}

.site-header .utility-inner span {
  color: var(--site-orange);
}

.site-header .nav-shell {
  position: relative;
  display: flex;
  min-height: 84px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.site-header .brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  border-radius: 18px;
}

.site-header .brand img {
  display: block;
  width: 142px;
  height: auto;
  max-height: 74px;
  object-fit: contain;
}

.site-header .site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
  text-transform: none !important;
}

.site-header .site-nav > a,
.site-header .services-trigger > a,
.site-header .locations-trigger > a,
.site-header .projects-trigger > a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.88);
  white-space: nowrap;
  transition:
    color 180ms ease,
    background-color 180ms ease;
}

.site-header .site-nav > a:hover,
.site-header .services-trigger:hover > a,
.site-header .locations-trigger:hover > a,
.site-header .projects-trigger:hover > a {
  color: var(--site-white);
}

.site-header .nav-cta {
  padding: 0 24px;
  background: var(--site-orange);
  color: var(--site-white) !important;
  box-shadow: 0 12px 28px rgba(224, 98, 35, 0.28);
}

.site-header .nav-cta:hover {
  background: var(--site-orange-dark);
}

.site-header .nav-services,
.site-header .nav-locations,
.site-header .nav-projects {
  position: relative;
}

.site-header .services-trigger,
.site-header .locations-trigger,
.site-header .projects-trigger {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-header .services-trigger button,
.site-header .locations-trigger button,
.site-header .projects-trigger button,
.site-header .menu-toggle {
  appearance: none;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font: inherit;
}

.site-header .services-trigger button,
.site-header .locations-trigger button,
.site-header .projects-trigger button {
  display: inline-grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.site-header .services-trigger button::before,
.site-header .locations-trigger button::before,
.site-header .projects-trigger button::before {
  width: 7px;
  height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  content: "";
  transform: translateY(-2px) rotate(45deg);
  transition: transform 180ms ease;
}

.site-header .nav-services.is-open .services-trigger button::before,
.site-header .nav-locations.is-open .locations-trigger button::before,
.site-header .nav-projects.is-open .projects-trigger button::before {
  transform: translateY(2px) rotate(225deg);
}

.site-header .mega-menu,
.site-header .locations-menu,
.site-header .projects-menu {
  position: absolute;
  top: calc(100% + 24px);
  right: 0;
  display: none;
  transform: none;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  color: var(--site-ink);
  background: var(--site-white);
  border: 1px solid var(--site-border);
  border-radius: 22px;
  box-shadow: var(--site-shadow);
}

.site-header .nav-services.is-open .mega-menu,
.site-header .nav-locations.is-open .locations-menu,
.site-header .nav-projects.is-open .projects-menu {
  display: grid;
}

.site-header .mega-menu::before,
.site-header .locations-menu::before,
.site-header .projects-menu::before {
  position: absolute;
  right: 0;
  bottom: 100%;
  left: 0;
  height: 28px;
  content: "";
}

@media (min-width: 981px) {
  .site-header .nav-services:hover .mega-menu,
  .site-header .nav-locations:hover .locations-menu {
    display: grid;
  }
}

.site-header .mega-menu {
  grid-template-columns: minmax(240px, 0.76fr) minmax(380px, 1.14fr) minmax(330px, 0.95fr);
  left: 0;
  right: auto;
  transform: translateX(-24%);
  width: min(1120px, calc(100vw - 64px));
  min-height: 390px;
  overflow: hidden;
}

.site-header .mega-menu:not(:has(.mega-categories)) {
  grid-template-columns: repeat(3, minmax(180px, 1fr));
  gap: 22px;
  padding: 26px;
}

.site-header .mega-categories {
  display: grid;
  align-content: start;
  gap: 6px;
  padding: 26px;
  background: rgba(17, 17, 17, 0.04);
}

.site-header .mega-categories button {
  width: 100%;
  padding: 14px 16px;
  border: 0;
  border-radius: 14px;
  background: transparent;
  color: var(--site-ink-soft);
  cursor: pointer;
  font: inherit;
  font-size: 14px;
  font-weight: 800;
  text-align: left;
}

.site-header .mega-categories button[aria-selected="true"],
.site-header .mega-categories button:hover {
  background: var(--site-orange);
  color: var(--site-white);
}

.site-header .mega-panels {
  position: relative;
  padding: 30px 34px;
}

.site-header .mega-service-panel {
  display: none;
  align-content: start;
  gap: 10px;
}

.site-header .mega-service-panel.is-active {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.site-header .mega-menu:not(:has(.mega-categories)) > div,
.site-header .mega-service-panel {
  min-width: 0;
}

.site-header .mega-menu a,
.site-header .locations-menu a,
.site-header .projects-menu a {
  display: block;
  border-radius: 10px;
  color: var(--site-muted);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
}

.site-header .mega-menu a {
  padding: 7px 0;
}

.site-header .mega-menu a:hover,
.site-header .locations-menu a:hover,
.site-header .projects-menu a:hover {
  color: var(--site-orange-dark);
}

.site-header .mega-menu .mega-title {
  grid-column: 1 / -1;
  margin-bottom: 8px;
  color: var(--site-ink);
  font-size: 16px;
  font-weight: 900;
}

.site-header .mega-panel-head {
  display: contents;
}

.site-header .mega-panel-toggle {
  display: none;
}

.site-header .mega-visual {
  position: relative;
  min-height: 100%;
  margin: 0;
  overflow: hidden;
  background: var(--site-ink);
}

.site-header .mega-visual img {
  width: 100%;
  height: 100%;
  min-height: 390px;
  object-fit: cover;
  opacity: 0.72;
}

.site-header .mega-visual figcaption {
  position: absolute;
  inset: auto 20px 20px;
  color: var(--site-white);
}

.site-header .mega-visual span {
  display: block;
  margin-bottom: 4px;
  color: var(--site-orange);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.site-header .mega-visual strong {
  display: block;
  font-size: 24px;
}

.site-header .locations-menu {
  grid-template-columns: repeat(2, minmax(190px, 1fr));
  gap: 16px;
  left: 50%;
  right: auto;
  transform: translateX(-50%);
  width: min(540px, calc(100vw - 48px));
  padding: 24px;
}

.site-header .projects-menu {
  grid-template-columns: 1fr;
  width: min(300px, calc(100vw - 48px));
  padding: 20px;
  gap: 2px;
}

.site-header .projects-menu a {
  padding: 8px 0;
}

.site-header .projects-all {
  margin-top: 8px;
  padding: 13px 16px !important;
  border: 1px solid var(--site-border);
  color: var(--site-ink) !important;
}

.site-header .locations-menu span {
  display: block;
  margin-bottom: 10px;
  color: var(--site-orange);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.site-header .locations-menu a {
  padding: 7px 0;
}

.site-header .locations-all {
  grid-column: 1 / -1;
  margin-top: 4px;
  padding: 13px 16px !important;
  border: 1px solid var(--site-border);
  color: var(--site-ink) !important;
}

.site-header .menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid var(--site-border-light);
  border-radius: 999px;
}

.site-header .menu-toggle span:not(.sr-only) {
  display: block;
  width: 19px;
  height: 2px;
  margin: 3px auto;
  border-radius: 99px;
  background: currentColor;
}

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

.site-footer {
  background: var(--site-ink);
  color: var(--site-white);
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
  display: block !important;
  text-transform: none !important;
}

.site-footer * {
  box-sizing: border-box;
}

.site-footer .footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr 1fr 1.1fr;
  gap: 56px;
  padding: 64px 0 44px;
}

.site-footer .footer-brand img {
  display: block;
  width: 150px;
  height: auto;
  margin-bottom: 24px;
  border-radius: 16px;
  object-fit: contain;
}

.site-footer p,
.site-footer span,
.site-footer a {
  color: rgba(255, 255, 255, 0.78);
  font-size: 16px;
  line-height: 1.85;
  text-transform: none !important;
}

.site-footer h2 {
  margin: 0 0 22px;
  color: var(--site-orange);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase !important;
}

.site-footer a,
.site-footer span {
  display: block;
}

.site-footer a:hover {
  color: var(--site-white);
}

.site-footer .footer-cta {
  padding-left: 40px;
  border-left: 1px solid var(--site-border-light);
}

.site-footer .footer-cta p {
  margin: 0 0 12px;
}

.site-footer .footer-cta a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--site-orange);
  color: var(--site-white);
  font-size: clamp(28px, 4vw, 38px);
  font-weight: 900;
  line-height: 1.05;
}

.site-footer .footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 0 28px;
  border-top: 1px solid var(--site-border-light);
}

.site-footer .footer-bottom span,
.site-footer .footer-bottom a {
  font-size: 14px;
}

@media (max-width: 1080px) {
  .site-header .site-nav {
    gap: 16px;
    font-size: 14px;
  }

  .site-header .nav-cta {
    padding-inline: 18px;
  }
}

@media (max-width: 1320px) and (min-width: 981px) {
  .site-header .wrap,
  .site-footer .wrap {
    width: min(calc(100% - 32px), 1240px);
  }

  .site-header .nav-shell {
    gap: 18px;
  }

  .site-header .site-nav {
    gap: 16px;
    font-size: 14px;
  }

  .site-header .nav-cta {
    padding-inline: 20px;
  }
}

@media (max-width: 980px) {
  body.menu-open {
    overflow: hidden;
  }

  .site-header .wrap,
  .site-footer .wrap {
    width: min(calc(100% - 32px), 1240px);
  }

  .site-header .utility-inner {
    min-height: 34px;
    justify-content: center;
    text-align: center;
  }

  .site-header .utility-inner a {
    display: none;
  }

  .site-header .nav-shell {
    min-height: 76px;
    z-index: 2;
  }

  .site-header .brand img {
    width: 126px;
  }

  .site-header .brand,
  .site-header .menu-toggle {
    position: relative;
    z-index: 3;
  }

  .site-header .menu-toggle {
    display: grid;
  }

  .site-header .site-nav {
    position: fixed;
    inset: 0;
    z-index: 2;
    display: none;
    min-height: 100dvh;
    max-height: 100dvh;
    overflow-x: hidden;
    overflow-y: scroll;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-y;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding: 128px 18px calc(96px + env(safe-area-inset-bottom));
    border: 0;
    border-radius: 0;
    background: linear-gradient(180deg, rgba(17, 17, 17, 0.98), rgba(26, 26, 26, 0.98));
    box-shadow: var(--site-shadow);
    scrollbar-gutter: stable;
  }

  .site-header .site-nav.is-open {
    display: flex;
    overflow-y: scroll !important;
  }

  .site-header .site-nav > a,
  .site-header .services-trigger,
  .site-header .locations-trigger,
  .site-header .projects-trigger {
    width: 100%;
  }

  .site-header .site-nav > a,
  .site-header .services-trigger > a,
  .site-header .locations-trigger > a,
  .site-header .projects-trigger > a {
    min-height: 48px;
    padding-inline: 14px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
  }

  .site-header .services-trigger,
  .site-header .locations-trigger,
  .site-header .projects-trigger {
    gap: 10px;
    justify-content: space-between;
  }

  .site-header .services-trigger > a,
  .site-header .locations-trigger > a,
  .site-header .projects-trigger > a {
    flex: 1 1 auto;
  }

  .site-header .services-trigger button,
  .site-header .locations-trigger button,
  .site-header .projects-trigger button {
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
    border: 1px solid rgba(255, 255, 255, 0.1);
  }

  .site-header .mega-menu,
  .site-header .locations-menu,
  .site-header .projects-menu {
    position: static;
    left: auto;
    right: auto;
    transform: none;
    width: 100%;
    margin: 2px 0 12px;
    border-color: rgba(255, 255, 255, 0.12);
    border-radius: 18px;
    box-shadow: none;
    transform-origin: top center;
    animation: site-mobile-dropdown 220ms ease both;
  }

  .site-header .mega-menu,
  .site-header .mega-menu:not(:has(.mega-categories)),
  .site-header .locations-menu,
  .site-header .projects-menu {
    grid-template-columns: 1fr;
  }

  .site-header .mega-visual {
    display: none;
  }

  .site-header .mega-menu {
    min-height: 0;
    padding: 0;
    overflow: visible;
  }

  .site-header .mega-categories {
    display: none;
  }

  .site-header .mega-panels {
    display: grid;
    gap: 18px;
  }

  .site-header .mega-service-panel,
  .site-header .mega-service-panel.is-active {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 0 0 18px;
    border-bottom: 1px solid rgba(17, 17, 17, 0.1);
  }

  .site-header .mega-service-panel:last-child {
    padding-bottom: 0;
    border-bottom: 0;
  }

  .site-header .mega-categories,
  .site-header .mega-panels,
  .site-header .locations-menu,
  .site-header .projects-menu {
    padding: 18px;
  }

  .site-header .mega-menu .mega-title {
    margin-bottom: 2px;
    padding: 0;
    color: var(--site-ink);
    font-size: 15px;
  }

  .site-header .mega-menu a:not(.mega-title),
  .site-header .locations-menu a {
    padding: 8px 0;
    font-size: 13px;
  }

  .site-header .locations-menu {
    gap: 18px;
    overflow: visible;
  }

  .site-header .site-nav::-webkit-scrollbar {
    width: 6px;
  }

  .site-header .site-nav::-webkit-scrollbar-thumb {
    border-radius: 999px;
    background: rgba(224, 98, 35, 0.72);
  }

  .site-header .site-nav::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
  }

  .site-footer .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 34px;
  }

  .site-footer .footer-cta {
    padding-left: 0;
    border-left: 0;
  }
}

@media (max-width: 640px) {
  .site-footer .footer-grid,
  .site-footer .footer-bottom {
    grid-template-columns: 1fr;
  }

  .site-footer .footer-grid {
    display: grid;
    gap: 28px;
    padding-top: 48px;
  }

  .site-footer .footer-bottom {
    display: grid;
  }
}

.site-header.dynamic-header .nav-services > .mega-menu:has(.mega-categories) {
  left: 0 !important;
  right: auto !important;
  width: min(1120px, calc(100vw - 64px)) !important;
  min-height: 390px !important;
  padding: 0 !important;
  transform: translateX(-24%) !important;
  grid-template-columns: minmax(240px, 0.76fr) minmax(380px, 1.14fr) minmax(330px, 0.95fr) !important;
  gap: 0 !important;
  overflow: hidden !important;
  background: var(--site-white) !important;
}

.site-header.dynamic-header .nav-services > .mega-menu:has(.mega-categories) > .mega-categories {
  padding: 26px !important;
  background: rgba(17, 17, 17, 0.04) !important;
}

.site-header.dynamic-header .nav-services > .mega-menu:has(.mega-categories) > .mega-panels {
  padding: 30px 34px !important;
  background: var(--site-white) !important;
}

.site-header.dynamic-header .nav-services .mega-service-panel.is-active {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 10px !important;
}

.site-header.dynamic-header .nav-locations > .locations-menu {
  left: 50% !important;
  right: auto !important;
  transform: translateX(-50%) !important;
}

@media (max-width: 980px) {
  .site-header.dynamic-header .nav-services > .mega-menu:has(.mega-categories),
  .site-header.dynamic-header .nav-locations > .locations-menu {
    left: auto !important;
    right: auto !important;
    width: 100% !important;
    min-height: 0 !important;
    transform: none !important;
    grid-template-columns: 1fr !important;
  }

  .site-header.dynamic-header .nav-services > .mega-menu:has(.mega-categories) {
    padding: 0 !important;
    overflow: visible !important;
  }

  .site-header.dynamic-header .nav-services > .mega-menu:has(.mega-categories) > .mega-categories,
  .site-header.dynamic-header .nav-services > .mega-menu:has(.mega-categories) > .mega-visual {
    display: none !important;
  }

  .site-header.dynamic-header .nav-services > .mega-menu:has(.mega-categories) > .mega-panels {
    display: grid !important;
    gap: 18px !important;
    padding: 18px !important;
  }

  .site-header.dynamic-header .nav-services .mega-service-panel,
  .site-header.dynamic-header .nav-services .mega-service-panel.is-active {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 8px !important;
  }
}

@keyframes site-mobile-dropdown {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =========================================================
   AM CONSTRUCTION - RESPONSIVE MOBILE HEADER
   Mobile-only override. Desktop navbar remains unchanged.
   ========================================================= */

@media (max-width: 980px) {
  body.menu-open {
    overflow: hidden !important;
  }

  .site-header.dynamic-header {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 99999;
    width: 100%;
    background: rgba(17, 17, 17, 0.96);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
  }

  .site-header.dynamic-header .wrap {
    width: calc(100% - 32px) !important;
    max-width: 100% !important;
    margin-right: auto;
    margin-left: auto;
  }

  .site-header.dynamic-header .utility-bar {
    max-height: 34px;
    overflow: hidden;
    transition:
      max-height 0.25s ease,
      opacity 0.25s ease;
  }

  .site-header.dynamic-header .utility-inner {
    min-height: 34px;
    justify-content: center;
    padding: 0;
    font-size: 11px;
    text-align: center;
  }

  .site-header.dynamic-header .utility-inner p {
    margin: 0;
  }

  .site-header.dynamic-header .utility-inner > a {
    display: none;
  }

  .site-header.dynamic-header.is-scrolled .utility-bar {
    max-height: 0;
    border-color: transparent;
    opacity: 0;
  }

  .site-header.dynamic-header .nav-shell {
    position: relative;
    z-index: 100;
    display: flex;
    min-height: 76px;
    height: 76px;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
  }

  .site-header.dynamic-header .brand {
    position: relative;
    z-index: 1002;
    display: flex;
    flex: 0 0 auto;
    align-items: center;
  }

  .site-header.dynamic-header .brand img {
    display: block;
    width: 120px;
    max-width: 120px;
    height: auto;
    max-height: 62px;
    object-fit: contain;
  }

  .site-header.dynamic-header .menu-toggle {
    position: relative;
    z-index: 1002;
    display: flex !important;
    width: 46px;
    height: 46px;
    padding: 0;
    flex: 0 0 46px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    cursor: pointer;
  }

  .site-header.dynamic-header .menu-toggle span:not(.sr-only) {
    display: block;
    width: 19px;
    height: 2px;
    margin: 2.5px 0;
    border-radius: 20px;
    background: #fff;
    transition:
      transform 0.25s ease,
      opacity 0.2s ease;
  }

  .site-header.dynamic-header .menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .site-header.dynamic-header .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .site-header.dynamic-header .menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .site-header.dynamic-header .site-nav {
    position: fixed !important;
    inset: 0 !important;
    z-index: 1000;
    display: none !important;
    width: 100%;
    min-height: 100dvh;
    max-height: 100dvh;
    margin: 0;
    padding: 126px 18px calc(40px + env(safe-area-inset-bottom));
    overflow-x: hidden;
    overflow-y: auto;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    color: #fff;
    background: linear-gradient(180deg, rgba(17, 17, 17, 0.99), rgba(26, 26, 26, 0.99));
    box-shadow: none;
    font-size: 15px;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
  }

  .site-header.dynamic-header .site-nav.is-open {
    display: flex !important;
  }

  .site-header.dynamic-header.is-scrolled .site-nav {
    padding-top: 94px;
  }

  .site-header.dynamic-header .site-nav > a {
    display: flex !important;
    width: 100%;
    min-height: 52px;
    align-items: center;
    padding: 0 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.045);
    color: rgba(255, 255, 255, 0.92) !important;
    font-size: 15px;
    font-weight: 700;
    white-space: normal;
  }

  .site-header.dynamic-header .site-nav > a:hover {
    background: rgba(255, 255, 255, 0.09);
    color: #fff !important;
  }

  .site-header.dynamic-header .nav-services,
  .site-header.dynamic-header .nav-locations,
  .site-header.dynamic-header .nav-projects {
    position: relative;
    width: 100%;
  }

  .site-header.dynamic-header .services-trigger,
  .site-header.dynamic-header .locations-trigger,
  .site-header.dynamic-header .projects-trigger {
    display: flex;
    width: 100%;
    align-items: stretch;
    justify-content: space-between;
    gap: 8px;
  }

  .site-header.dynamic-header .services-trigger > a,
  .site-header.dynamic-header .locations-trigger > a,
  .site-header.dynamic-header .projects-trigger > a {
    display: flex;
    min-height: 52px;
    flex: 1 1 auto;
    align-items: center;
    padding: 0 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.045);
    color: rgba(255, 255, 255, 0.92);
    font-size: 15px;
    font-weight: 700;
  }

  .site-header.dynamic-header .services-trigger button,
  .site-header.dynamic-header .locations-trigger button,
  .site-header.dynamic-header .projects-trigger button {
    display: grid;
    width: 52px;
    min-width: 52px;
    height: 52px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.065);
    color: #fff;
  }

  .site-header.dynamic-header .mega-menu,
  .site-header.dynamic-header .locations-menu,
  .site-header.dynamic-header .projects-menu {
    position: static !important;
    inset: auto !important;
    display: none !important;
    width: 100% !important;
    min-width: 0 !important;
    min-height: 0 !important;
    margin: 8px 0 12px !important;
    padding: 0 !important;
    overflow: hidden !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 14px !important;
    background: #fff !important;
    color: #111;
    box-shadow: none !important;
    transform: none !important;
  }

  .site-header.dynamic-header .nav-services.is-open > .mega-menu,
  .site-header.dynamic-header .nav-locations.is-open > .locations-menu,
  .site-header.dynamic-header .nav-projects.is-open > .projects-menu {
    display: grid !important;
    animation: mobileMenuOpen 0.22s ease;
  }

  .site-header.dynamic-header .mega-menu::before,
  .site-header.dynamic-header .locations-menu::before,
  .site-header.dynamic-header .projects-menu::before {
    display: none !important;
  }

  .site-header.dynamic-header .nav-services > .mega-menu:has(.mega-categories) {
    position: static !important;
    right: auto !important;
    left: auto !important;
    display: none !important;
    width: 100% !important;
    min-height: 0 !important;
    padding: 0 !important;
    overflow: hidden !important;
    grid-template-columns: 1fr !important;
    background: #fff !important;
    transform: none !important;
  }

  .site-header.dynamic-header .nav-services.is-open > .mega-menu:has(.mega-categories) {
    display: grid !important;
  }

  .site-header.dynamic-header .mega-menu > .mega-categories,
  .site-header.dynamic-header .mega-menu > .mega-visual {
    display: none !important;
  }

  .site-header.dynamic-header .mega-menu > .mega-panels {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 0 !important;
    padding: 8px 18px !important;
    background: #fff !important;
  }

  .site-header.dynamic-header .nav-services .mega-service-panel,
  .site-header.dynamic-header .nav-services .mega-service-panel.is-active {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 0 !important;
    padding: 0 !important;
    border-bottom: 1px solid rgba(17, 17, 17, 0.1);
  }

  .site-header.dynamic-header .nav-services .mega-service-panel:last-child {
    border-bottom: 0;
  }

  .site-header.dynamic-header .mega-panel-head {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) 42px;
    gap: 8px;
    align-items: center;
    padding: 12px 0 !important;
  }

  .site-header.dynamic-header .mega-panel-head > .mega-title {
    grid-column: 1 !important;
    grid-row: 1 !important;
    min-height: 42px;
    align-content: center;
  }

  .site-header.dynamic-header .mega-panel-head > .mega-panel-toggle {
    grid-column: 2 !important;
    grid-row: 1 !important;
  }

  .site-header.dynamic-header .mega-panel-toggle {
    display: grid !important;
    width: 42px;
    height: 42px;
    place-items: center;
    border: 1px solid rgba(17, 17, 17, 0.1);
    border-radius: 10px;
    background: rgba(17, 17, 17, 0.04);
    color: var(--site-orange);
    cursor: pointer;
  }

  .site-header.dynamic-header .mega-panel-toggle::before {
    width: 8px;
    height: 8px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    content: "";
    transform: translateY(-2px) rotate(45deg);
    transition: transform 0.2s ease;
  }

  .site-header.dynamic-header .mega-panel-toggle[aria-expanded="true"]::before {
    transform: translateY(2px) rotate(225deg);
  }

  .site-header.dynamic-header .mega-menu .mega-title {
    display: block !important;
    margin: 0 0 8px !important;
    padding: 0 !important;
    color: #111 !important;
    font-size: 15px !important;
    font-weight: 900 !important;
  }

  .site-header.dynamic-header .mega-panel-head .mega-title {
    margin: 0 !important;
  }

  .site-header.dynamic-header .mega-menu .mega-service-panel a:not(.mega-title) {
    display: none;
    padding: 8px 0 !important;
    color: #5f5f5f !important;
    font-size: 13px !important;
    font-weight: 600;
    line-height: 1.4;
  }

  .site-header.dynamic-header .mega-menu .mega-service-panel.is-mobile-open a:not(.mega-title) {
    display: block;
  }

  .site-header.dynamic-header .mega-menu .mega-service-panel a:not(.mega-title):hover {
    color: var(--site-orange) !important;
  }

  .site-header.dynamic-header .nav-locations > .locations-menu {
    position: static !important;
    right: auto !important;
    left: auto !important;
    display: none !important;
    width: 100% !important;
    padding: 18px !important;
    gap: 20px !important;
    grid-template-columns: 1fr !important;
    transform: none !important;
  }

  .site-header.dynamic-header .nav-locations.is-open > .locations-menu {
    display: grid !important;
  }

  .site-header.dynamic-header .nav-projects > .projects-menu {
    position: static !important;
    right: auto !important;
    left: auto !important;
    display: none !important;
    width: 100% !important;
    padding: 16px 18px !important;
    gap: 0 !important;
    grid-template-columns: 1fr !important;
    transform: none !important;
  }

  .site-header.dynamic-header .nav-projects.is-open > .projects-menu {
    display: grid !important;
  }

  .site-header.dynamic-header .locations-menu span {
    display: block;
    margin-bottom: 8px;
    color: var(--site-orange) !important;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }

  .site-header.dynamic-header .locations-menu a {
    display: block;
    padding: 7px 0;
    color: #5f5f5f !important;
    font-size: 13px;
  }

  .site-header.dynamic-header .projects-menu a {
    display: block;
    padding: 8px 0;
    color: #5f5f5f !important;
    font-size: 13px;
  }

  .site-header.dynamic-header .locations-menu .locations-all {
    width: 100%;
    margin-top: 4px;
    padding: 12px 14px !important;
    border: 1px solid rgba(17, 17, 17, 0.12);
    border-radius: 10px;
    color: #111 !important;
    font-weight: 800;
  }

  .site-header.dynamic-header .projects-menu .projects-all {
    width: 100%;
    margin-top: 8px;
    padding: 12px 14px !important;
    border: 1px solid rgba(17, 17, 17, 0.12);
    border-radius: 10px;
    color: #111 !important;
    font-weight: 800;
  }

  .site-header.dynamic-header .site-nav > .nav-cta {
    display: flex !important;
    min-height: 54px;
    justify-content: space-between;
    margin-top: 8px;
    padding: 0 18px !important;
    border: 0;
    background: var(--site-orange) !important;
    color: #fff !important;
    box-shadow: none;
  }

  .site-header.dynamic-header .site-nav > .nav-cta:hover {
    background: var(--site-orange-dark) !important;
  }

  .site-header.dynamic-header .site-nav::-webkit-scrollbar {
    width: 4px;
  }

  .site-header.dynamic-header .site-nav::-webkit-scrollbar-thumb {
    border-radius: 20px;
    background: var(--site-orange);
  }

  .site-header.dynamic-header .site-nav::-webkit-scrollbar-track {
    background: transparent;
  }
}

@media (max-width: 640px) {
  .site-header.dynamic-header .wrap {
    width: calc(100% - 24px) !important;
  }

  .site-header.dynamic-header .nav-shell {
    min-height: 70px;
    height: 70px;
  }

  .site-header.dynamic-header .brand img {
    width: 108px;
    max-width: 108px;
  }

  .site-header.dynamic-header .menu-toggle {
    width: 43px;
    height: 43px;
    flex-basis: 43px;
  }

  .site-header.dynamic-header .site-nav {
    padding: 116px 12px calc(32px + env(safe-area-inset-bottom));
  }

  .site-header.dynamic-header.is-scrolled .site-nav {
    padding-top: 82px;
  }

  .site-header.dynamic-header .site-nav > a,
  .site-header.dynamic-header .services-trigger > a,
  .site-header.dynamic-header .locations-trigger > a,
  .site-header.dynamic-header .projects-trigger > a {
    min-height: 50px;
    padding-inline: 14px;
    font-size: 14px;
  }

  .site-header.dynamic-header .services-trigger button,
  .site-header.dynamic-header .locations-trigger button,
  .site-header.dynamic-header .projects-trigger button {
    width: 50px;
    min-width: 50px;
    height: 50px;
  }
}

@keyframes mobileMenuOpen {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}
