header.site-header{
  background: var(--gradient-chrome);
  display: flex;
  align-items: center;
  padding: 0.5rem 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: 5rem;
  box-sizing: border-box;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  border-bottom: 1px solid rgba(var(--color-dark-rgb), 0.08);
}

body {
  padding-top: 5rem;
}

/* Offset anchor targets so they don't land under the fixed header */
#ourDivisions,
#titleDollars {
  scroll-margin-top: 5rem;
}

/* Login button box styling */
.header-logo {
  height: 4rem;
  margin-left: 2rem;
  margin-right: 0;
}
.header-nav {
  display: flex;
  flex-direction: row;
  justify-content: end;
  align-items: center;
  /* width: 66vw; */
  height: 100%;
  margin-left: auto;
  margin-right:2rem;
}
.header-link {
  color: var(--color-dark);
  text-decoration: none;
  font-size: 1.2rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  padding: 0 1.5rem;
  transition: color 0.2s, opacity 0.2s;
}
@media (max-width: 1550px) {
  .header-link {
    padding: 0 1rem;
    font-size: 1.2rem;
  }
}

.header-link:hover {
  opacity: 1;
  color: var(--color-primary);
}
/* The LOG IN button uses .btn .btn--compact (see css/components.css). */
.hamburger-menu {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: auto;
  margin-right: 1rem;
  z-index: 1100;
  /* Touch target ≥ 44 px */
  padding: 0.75rem;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}
.hamburger-icon {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 2rem;
  height: 2rem;
}
.hamburger-icon span {
  display: block;
  width: 2rem;
  height: 0.25rem;
  background: var(--color-dark);
  margin: 0.25rem 0;
  border-radius: 2px;
}
.mobile-menu {
  position: fixed;
  top: 5rem;
  left: 0;
  width: 100vw;
  background: var(--gradient-chrome);
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  display: none;
  flex-direction: column;
  align-items: stretch;
  z-index: 1200;
}
.mobile-menu.open {
  display: flex;
}
.mobile-menu-link {
  padding: 1.5rem 2rem;
  font-size: 1.2rem;
  color: var(--color-dark);
  text-decoration: none;
  border-bottom: 1px solid rgba(var(--color-dark-rgb), 0.12);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
}
.mobile-menu-link:last-child {
  border-bottom: none;
}
@media (max-width: 900px) {
  .header-nav {
    display: none;
  }
  .hamburger-menu {
    display: flex;
  }
}
