.et-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--color-primary-bg);
  border-bottom: var(--border-thin);
}

.et-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: var(--space-2);
}

.et-header__brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.et-header__logo {
  height: 48px;
  width: auto;
}

.et-header__brand-text {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.1rem;
}

.et-header__nav {
  display: flex;
}

.et-header__menu {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.et-header__menu li {
  margin: 0;
  padding: 0;
}

.et-header__link {
  position: relative;
  font-size: 0.95rem;
}

.et-header__link:hover {
  color: var(--color-accent-gold);
}

.et-header__cta-item {
  margin-left: 0.5rem;
}

.et-header__toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
}

.et-header__toggle-lines,
.et-header__toggle-lines::before,
.et-header__toggle-lines::after {
  content: "";
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-text-primary);
  position: relative;
}

.et-header__toggle-lines::before {
  position: absolute;
  top: -6px;
}

.et-header__toggle-lines::after {
  position: absolute;
  top: 6px;
}

@media (max-width: 1024px) {
  .et-header__nav {
    position: fixed;
    inset: 0;
    background: var(--color-primary-bg);
    padding: var(--space-4) var(--space-2);
    transform: translateX(100%);
    transition: 0.3s ease;
    flex-direction: column;
    overflow-y: auto;
  }

  .et-header__nav.is-open {
    transform: translateX(0);
  }

  .et-header__menu {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-3);
  }

  .et-header__link {
    font-size: 1.4rem;
  }

  .et-header__toggle {
    display: flex;
  }
}