/* Refinement: contemporary single-row header and restrained headline accent. */
.site-header {
  border-bottom: 1px solid var(--line);
}

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: url("assets/hero-technical-lines.svg") center / cover no-repeat;
  opacity: .72;
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 1;
}

.header-main {
  height: 98px;
}

.global-nav {
  margin-left: auto;
  background: transparent;
  color: var(--ink);
}

.global-nav__inner {
  width: auto;
  height: 98px;
  display: flex;
  align-items: center;
}

.global-nav a {
  position: relative;
  height: 100%;
  min-width: 106px;
  padding: 0 14px;
  flex-direction: column;
  gap: 1px;
  border: 0;
  color: var(--ink);
  font-size: 13px;
}

.global-nav a::after {
  content: "";
  position: absolute;
  left: 50%;
  right: 50%;
  bottom: 0;
  height: 3px;
  background: var(--orange);
  transition: .2s;
}

.global-nav a:hover {
  background: transparent;
}

.global-nav a:hover::after {
  left: 18px;
  right: 18px;
}

.global-nav small {
  display: block;
  color: #9aa1a4;
  font-size: 7px;
  letter-spacing: .14em;
}

.global-nav .nav-contact {
  min-width: 154px;
  height: 50px;
  margin-left: 12px;
  padding: 0 19px;
  flex-direction: row;
  background: var(--orange);
  color: #fff;
}

.global-nav .nav-contact small { display: none; }
.global-nav .nav-contact::after { display: none; }
.global-nav .nav-contact:hover { background: var(--orange-deep); }

.hero h1 span {
  padding: 0;
  background: transparent;
  color: var(--orange);
}

.photo-panel--primary img { object-position: center 52%; }
.photo-panel:nth-child(2) img { object-position: center; }
.photo-panel:nth-child(3) img { object-position: center 48%; }

.client-list-label {
  display: block;
  margin-top: 25px;
  color: var(--orange);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .14em;
}

.clients .client-types {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 10px;
}

.work-image { position: relative; }

.photo-count {
  position: absolute;
  right: 0;
  bottom: 0;
  padding: 7px 12px;
  background: rgba(255,255,255,.94);
  color: var(--orange-deep);
  font-size: 11px;
  font-weight: 800;
}

.work-body h3 { margin: 0; }

@media (max-width: 1120px) {
  .global-nav a { min-width: 88px; padding: 0 9px; }
  .global-nav .nav-contact { min-width: 132px; }
}

@media (max-width: 960px) {
  .header-main { height: 78px; }
  .menu-button { display: block; }
  .global-nav { display: none; }
  .global-nav.is-open {
    position: absolute;
    top: 78px;
    left: 0;
    right: 0;
    display: block;
    margin: 0;
    padding: 10px 18px 18px;
    background: #fff;
    border-top: 1px solid var(--line);
    box-shadow: 0 15px 32px rgba(32,40,45,.12);
  }
  .global-nav.is-open .global-nav__inner {
    width: 100%;
    height: auto;
    display: flex;
    align-items: stretch;
    flex-direction: column;
  }
  .global-nav.is-open a {
    width: 100%;
    min-height: 50px;
    height: auto;
    align-items: flex-start;
    border-bottom: 1px solid var(--line);
  }
  .global-nav.is-open .nav-contact {
    width: auto;
    min-height: 50px;
    margin: 12px 0 0;
    align-items: center;
    justify-content: center;
    border: 0;
  }
}

@media (max-width: 760px) {
  .clients .client-types { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 620px) {
  .header-main { height: 70px; }
  .global-nav.is-open { top: 70px; }
}
