/* =============================================
   Fixed Header
   ============================================= */

.site-header {
  position: sticky;
  top: 0;
  width: 100%;
  height: 80px;
  z-index: 1000;
  overflow: visible;
}

.site-header + main {
  margin-top: -80px;
}

.site-header__inner {
  width: calc(100% - 160px);
  max-height: 52px;
  min-height: 52px;
  margin: 0 auto;
  padding: 0;
  position: absolute;
  left: 80px;
  top: 14px;
  overflow: visible;
  justify-content: space-between;
  align-items: center;
  display: inline-flex;
}

/* Logo */
.site-header__logo {
  flex-shrink: 0;
  display: block;
  filter: drop-shadow(0px 4px 8px rgba(3, 26, 26, 0.10));
}

.site-header__logo-desktop {
  display: block;
}

.site-header__logo-tablet,
.site-header__logo-mobile {
  display: none;
}

/* Logo color variants */
.site-header--light .site-header__logo svg path {
  fill: rgba(239, 239, 239, 0.8);
}

.site-header--dark .site-header__logo svg path {
  fill: #094141;
}

/* Nav pill */
.site-header__nav {
  height: 52px;
  background: rgba(239, 239, 239, 0.80);
  box-shadow: 0px 4px 8px rgba(3, 26, 26, 0.10);
  border-radius: 1000px;
  backdrop-filter: blur(7.5px);
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.site-header__nav-item {
  height: 52px;
  padding: 12px 24px;
  border-radius: 1000px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  display: flex;
  text-decoration: none;
  color: #094141;
  font-size: 20px;
  font-family: Inter, sans-serif;
  font-weight: 400;
  line-height: 120%;
  letter-spacing: -1px;
  white-space: nowrap;
  transition: background 0.2s;
}

.site-header__nav-item:hover {
  background: rgba(0, 0, 0, 0.05);
}

/* Icons pill */
.site-header__icons {
  height: 52px;
  background: rgba(239, 239, 239, 0.80);
  box-shadow: 0px 4px 8px rgba(3, 26, 26, 0.10);
  border-radius: 1000px;
  backdrop-filter: blur(7.5px);
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.site-header__icon-link {
  width: 83.57px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.site-header__icon-link svg {
  width: 24px;
  height: 24px;
}

/* Mobile burger — hidden on desktop */
.site-header__burger {
  display: none;
  width: 60px;
  height: 52px;
  background: rgba(239, 239, 239, 0.80);
  box-shadow: 0px 4px 8px rgba(3, 26, 26, 0.10);
  border-radius: 1000px;
  backdrop-filter: blur(7.5px);
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
}

.site-header__burger-line {
  display: block;
  width: 12px;
  height: 1.5px;
  background: #094141;
  border-radius: 0.75px;
}

.site-header__burger-lines {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

/* =============================================
   Tablet overrides (max-width: 1200px)
   ============================================= */

@media (max-width: 1200px) {
  .site-header {
    height: 75px;
  }

  .site-header__inner {
    width: calc(100% - 40px);
    max-height: 35px;
    min-height: 35px;
    left: 20px;
    top: 20px;
  }

  /* Logo swap */
  .site-header__logo-desktop {
    display: none;
  }
  .site-header__logo-tablet {
    display: block;
  }

  /* Nav pill */
  .site-header__nav {
    height: 35px;
  }

  .site-header__nav-item {
    height: 35px;
    font-size: 14px;
    letter-spacing: -0.7px;
  }

  /* Icons pill */
  .site-header__icons {
    height: 35px;
  }

  .site-header__icon-link {
    width: 55px;
    height: 35px;
  }

  .site-header__icon-link svg {
    width: 20px;
    height: 20px;
  }
}

/* =============================================
   Mobile overrides (max-width: 767px)
   ============================================= */

@media (max-width: 767px) {
  .site-header {
    height: 52px;
  }

  .site-header__inner {
    width: calc(100% - 40px);
    max-height: 25px;
    min-height: 25px;
    left: 20px;
    top: 13.5px;
  }

  /* Logo swap */
  .site-header__logo-desktop,
  .site-header__logo-tablet {
    display: none;
  }
  .site-header__logo-mobile {
    display: block;
  }

  /* Hide nav and icons on mobile */
  .site-header__nav {
    display: none;
  }

  .site-header__icons {
    display: none;
  }

  /* Show burger */
  .site-header__burger {
    display: flex;
    width: 60px;
    height: 25px;
    border-radius: 1000px;
  }

  .site-header__burger-line {
    width: 12px;
    height: 1.5px;
  }
}
