.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  height: var(--header-height);
  border-bottom: 1px solid rgb(255 255 255 / 15%);
  background: rgb(0 0 0 / 85%);
  box-shadow: 0 10px 30px rgb(0 0 0 / 18%);
  color: #fff;
  backdrop-filter: blur(12px);
}

.admin-bar .site-header {
  top: 32px;
}

.header-inner {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: space-between;
}

.brand-wordmark {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.desktop-navigation,
.site-header .header-cta {
  display: none;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 2rem;
  font-size: 0.875rem;
  font-weight: 600;
}

.nav-list a,
.footer-nav-list a,
.mobile-nav-list a {
  transition: color 180ms ease, background-color 180ms ease;
}

.nav-list a:hover,
.footer-nav-list a:hover,
.mobile-nav-list a:hover {
  color: var(--brand);
}

.mobile-menu {
  position: relative;
}

.mobile-menu-toggle {
  display: grid;
  width: 2.75rem;
  height: 2.75rem;
  cursor: pointer;
  list-style: none;
  place-items: center;
  border-radius: var(--radius-pill);
  background: var(--brand);
  color: var(--ink);
  outline: none;
}

.mobile-menu-toggle::-webkit-details-marker {
  display: none;
}

.mobile-menu-toggle:focus-visible {
  box-shadow: 0 0 0 4px rgb(255 212 0 / 60%);
}

.mobile-navigation {
  position: absolute;
  top: 3.5rem;
  right: 0;
  width: 16rem;
  padding: 0.75rem;
  border: 1px solid rgb(255 255 255 / 15%);
  border-radius: 1rem;
  background: var(--ink);
  box-shadow: 0 25px 50px rgb(0 0 0 / 30%);
}

.mobile-nav-list a {
  display: block;
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-weight: 600;
}

.mobile-nav-list a:hover {
  background: rgb(255 255 255 / 10%);
}

.mobile-nav-cta {
  width: 100%;
  margin-top: 0.5rem;
}

.primary-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1rem 1.75rem;
  border-radius: var(--radius-pill);
  background: var(--brand);
  color: var(--ink);
  font-size: 0.875rem;
  font-weight: 800;
  box-shadow: var(--shadow-button);
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease;
}

.primary-link:hover {
  transform: translateY(-0.125rem);
  background: #fff;
  color: var(--ink);
}

.primary-link--compact {
  padding: 0.75rem 1.5rem;
  box-shadow: none;
}

.primary-link--dark-hover:hover {
  background: var(--ink);
  color: #fff;
}

.primary-link:hover .primary-link-arrow {
  transform: translateX(0.25rem);
}

.primary-link-arrow {
  transition: transform 180ms ease;
}

.primary-link:focus-visible,
.nav-list a:focus-visible,
.mobile-nav-list a:focus-visible,
.footer-nav-list a:focus-visible,
.hero-scroll-link:focus-visible,
.carousel-button:focus-visible,
.carousel-dots button:focus-visible {
  outline: 3px solid var(--brand);
  outline-offset: 3px;
}

.microcopy {
  max-width: 27.5rem;
  margin-top: 0.5rem;
  padding-inline: 0.5rem;
  color: #737373;
  font-size: 9px;
  line-height: 1.5;
}

.microcopy--light {
  color: rgb(255 255 255 / 65%);
}

.icon-tile {
  display: grid;
  width: 3rem;
  height: 3rem;
  place-items: center;
  background: var(--brand);
  color: var(--ink);
  transition: transform 300ms ease;
}

.lift-card,
.service-card {
  position: relative;
  overflow: hidden;
  transition: transform 300ms ease, box-shadow 300ms ease;
}

.lift-card:hover,
.service-card:hover {
  transform: translateY(-0.25rem);
}

.lift-card:hover {
  box-shadow: var(--shadow-card);
}

.service-card:hover {
  box-shadow: var(--shadow-service);
}

.lift-card:hover .icon-tile,
.service-card:hover .icon-tile {
  transform: rotate(3deg) scale(1.1);
}

.brand-logo {
  width: auto;
  height: auto;
  object-fit: contain;
}

.skip-link {
  position: fixed;
  top: 0.5rem;
  left: 0.5rem;
  z-index: 100000;
  transform: translateY(-150%);
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
  background: var(--brand);
  color: var(--ink);
  font-weight: 700;
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-footer {
  padding: 4rem 0 2rem;
  background: var(--ink);
  color: #fff;
}

.footer-main {
  display: grid;
  gap: 3rem;
  padding-bottom: 3.5rem;
  border-bottom: 1px solid rgb(255 255 255 / 15%);
}

.footer-wordmark {
  font-size: 1.5rem;
}

.footer-description {
  max-width: 28rem;
  margin-top: 1.25rem;
  color: rgb(255 255 255 / 55%);
  font-size: 0.875rem;
  line-height: 1.8;
}

.footer-nav-list {
  display: grid;
  gap: 0.75rem;
  font-size: 0.875rem;
  font-weight: 600;
}

.footer-nav-list a {
  display: block;
  padding-block: 0.5rem;
  color: rgb(255 255 255 / 70%);
}

.footer-legal {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding-top: 1.75rem;
  color: rgb(255 255 255 / 40%);
  font-size: 0.75rem;
}

@media (max-width: 48.875rem) {
  .admin-bar .site-header {
    top: 46px;
  }
}

@media (min-width: 40rem) {
  .brand-wordmark {
    font-size: 1.5rem;
  }

  .primary-link:not(.primary-link--compact) {
    font-size: 1rem;
  }

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

  .footer-legal {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

@media (min-width: 64rem) {
  .desktop-navigation {
    display: block;
  }

  .site-header .header-cta {
    display: inline-flex;
  }

  .mobile-menu {
    display: none;
  }

  .footer-main {
    grid-template-columns: 1.2fr 0.8fr;
  }
}
