: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 {
  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 {
  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 {
  position: relative;
}

.site-header .services-trigger,
.site-header .locations-trigger {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-header .services-trigger button,
.site-header .locations-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 {
  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 {
  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 {
  transform: translateY(2px) rotate(225deg);
}

.site-header .mega-menu,
.site-header .locations-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 {
  display: grid;
}

.site-header .mega-menu::before,
.site-header .locations-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 {
  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 {
  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-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 .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) {
  .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;
  }

  .site-header .brand img {
    width: 126px;
  }

  .site-header .menu-toggle {
    display: grid;
  }

  .site-header .site-nav {
    position: fixed;
    inset: 110px 16px auto;
    display: none;
    max-height: calc(100vh - 132px);
    overflow: auto;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 18px;
    border: 1px solid var(--site-border-light);
    border-radius: 24px;
    background: var(--site-ink);
    box-shadow: var(--site-shadow);
  }

  .site-header .site-nav.is-open {
    display: flex;
  }

  .site-header .site-nav > a,
  .site-header .services-trigger,
  .site-header .locations-trigger {
    width: 100%;
  }

  .site-header .site-nav > a,
  .site-header .services-trigger > a,
  .site-header .locations-trigger > a {
    min-height: 46px;
  }

  .site-header .services-trigger,
  .site-header .locations-trigger {
    justify-content: space-between;
  }

  .site-header .mega-menu,
  .site-header .locations-menu {
    position: static;
    left: auto;
    right: auto;
    transform: none;
    width: 100%;
    margin: 4px 0 10px;
    box-shadow: none;
  }

  .site-header .mega-menu,
  .site-header .mega-menu:not(:has(.mega-categories)),
  .site-header .locations-menu {
    grid-template-columns: 1fr;
  }

  .site-header .mega-visual {
    display: none;
  }

  .site-header .mega-menu {
    min-height: 0;
  }

  .site-header .mega-service-panel.is-active {
    grid-template-columns: 1fr;
  }

  .site-header .mega-categories,
  .site-header .mega-panels,
  .site-header .locations-menu {
    padding: 18px;
  }

  .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-service-panel.is-active {
    grid-template-columns: 1fr !important;
  }
}
