{% require_css %}
<style>
{% scope_css %}

.aw-header, .aw-header * {
  box-sizing: border-box;
}

.aw-header a {
  text-decoration: none;
  color: inherit;
}

/* Default (top of page) state: single black row, logo left, nav right */
.aw-header {
  position: sticky;
  top: 0;
  z-index: 999;
  width: 100%;
  background-color: #000000;
}

.aw-header__top-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 40px;
}

.aw-header__logo img {
  height: 28px;
  display: block;
}

.aw-header__nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.aw-header__nav a {
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.aw-header__nav .has-dropdown::after {
  content: "\25BE";
  margin-left: 6px;
  font-size: 11px;
}

/* Icon row (social + search) — hidden until scrolled */
.aw-header__icon-row {
  display: none;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  padding: 0 40px 14px;
}

.aw-header__icon-row a {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: #ffffff;
  color: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
}

/* Bottom white nav row — hidden until scrolled */
.aw-header__bottom-row {
  display: none;
  background-color: #ffffff;
  justify-content: center;
  padding: 14px 40px;
  border-top: 1px solid #eaeaea;
}

.aw-header__bottom-row .aw-header__nav a {
  color: #000000;
}

/* Scrolled state */
.aw-header.is-scrolled .aw-header__top-row {
  justify-content: center;
  padding-bottom: 8px;
}

.aw-header.is-scrolled .aw-header__top-row .aw-header__nav {
  display: none;
}

.aw-header.is-scrolled .aw-header__icon-row {
  display: flex;
}

.aw-header.is-scrolled .aw-header__bottom-row {
  display: flex;
}

@media (max-width: 900px) {
  .aw-header__top-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .aw-header__nav {
    flex-wrap: wrap;
    gap: 16px;
  }
}

{% end_scope_css %}
</style>
{% end_require_css %}
