/* ── Promo Bar ── */
.promo-bar {
  background-color: var(--color-red);
  color: var(--color-white);
  text-align: center;
  padding: var(--space-xs) var(--space-sm);
  font-family: var(--font-body);
  font-size: 0.85rem;
  display: none; /* shown by JS when promo is active */
}

.promo-bar.is-visible {
  display: block;
}

.promo-bar a {
  color: var(--color-white);
  text-decoration: underline;
  font-weight: 600;
}

/* ── Sticky Header ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: var(--z-header);
  height: var(--header-height);
  background-color: var(--color-black);
  border-bottom: 1px solid rgba(192, 192, 192, 0.12);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(1rem, 4vw, 3.5rem);
}

.site-header > a {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
}

.header-logo {
  height: 95px;
  width: auto;
  object-fit: contain;
  display: block;
}

@media (min-width: 1280px) {
  .header-logo {
    height: 112px;
  }
}

/* ── Desktop Nav (hidden on mobile) ── */
.header-nav {
  display: none;
}

@media (min-width: 1280px) {
  .header-nav {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3.5rem;
    width: max-content;
    max-width: calc(100vw - 16rem);
  }

  .header-nav a,
  .header-nav .nav-dropdown-toggle {
    font-family: var(--font-heading);
    font-size: 1.575rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--color-silver);
    transition: color var(--transition-fast);
    padding-bottom: 0.25rem;
    border-bottom: 4px solid transparent;
    background: none;
    border-left: none;
    border-right: none;
    border-top: none;
    outline: none;
    cursor: pointer;
  }

  .header-nav a:hover,
  .header-nav a.active,
  .header-nav .nav-dropdown-toggle:hover,
  .header-nav .nav-dropdown-toggle:focus-visible,
  .header-nav .nav-dropdown-toggle.active {
    color: var(--color-white);
    border-bottom-color: var(--color-red);
  }

  .nav-item-dropdown {
    position: relative;
    display: flex;
    align-items: center;
    margin: -1.3125rem 0;
    padding: 1.3125rem 0;
  }

  .nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 26.25rem;
    display: flex;
    flex-direction: column;
    padding: 0.875rem 0;
    background-color: rgba(10, 10, 10, 0.98);
    border: 1px solid rgba(192, 192, 192, 0.18);
    border-radius: 4px;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.35);
    opacity: 0;
    visibility: hidden;
    transform: translateY(6px);
    transition: opacity var(--transition-fast), transform var(--transition-fast), visibility var(--transition-fast);
    pointer-events: none;
    z-index: calc(var(--z-header) + 1);
  }

  .nav-dropdown-menu a {
    padding: 1.225rem 1.75rem;
    font-size: 1.435rem;
    letter-spacing: 0.05em;
    border-bottom: none;
    white-space: nowrap;
  }

  .nav-dropdown-menu a:hover {
    background-color: rgba(255, 255, 255, 0.03);
  }

  .nav-item-dropdown:hover .nav-dropdown-menu,
  .nav-item-dropdown:focus-within .nav-dropdown-menu,
  .nav-item-dropdown.is-open .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }

  .header-nav .nav-item-dropdown:hover > .nav-dropdown-menu,
  .header-nav .nav-item-dropdown:focus-within > .nav-dropdown-menu,
  .header-nav .nav-item-dropdown.is-open > .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }
}

/* ── Hamburger (visible on mobile only) ── */
.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 49px;
  height: 35px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 4px;
  background-color: var(--color-white);
  transition: transform var(--transition-base), opacity var(--transition-fast);
}

.header-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(192, 192, 192, 0.32);
  border-radius: 50%;
  color: var(--color-silver);
  background-color: rgba(255, 255, 255, 0.03);
  transition: color var(--transition-fast), border-color var(--transition-fast), background-color var(--transition-fast), transform var(--transition-fast);
}

.header-social-link:hover,
.header-social-link:focus-visible {
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.55);
  background-color: rgba(255, 255, 255, 0.08);
  transform: translateY(-1px);
}

.social-icon {
  width: 24px;
  height: 24px;
}

.social-icon-instagram rect,
.social-icon-instagram circle {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.social-icon-instagram circle:last-child {
  fill: currentColor;
  stroke: none;
}

@media (min-width: 1280px) {
  .hamburger {
    display: none;
  }
}

/* ── Header actions wrapper ── */
.header-actions {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-left: auto;
}

@media (max-width: 1279px) {
  .header-actions {
    position: static;
  }

  .header-social-link {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 2;
    width: 46px;
    height: 46px;
    transform: translate(-50%, -50%);
  }

  .header-social-link:hover,
  .header-social-link:focus-visible {
    transform: translate(-50%, calc(-50% - 1px));
  }

  .hamburger {
    position: relative;
    z-index: 2;
  }
}
