/* Widget 17 — header and primary nav. */

.hc-header {
  background: var(--hc-white);
  border-bottom: 1px solid var(--hc-line);
}

.hc-header__inner {
  display: flex;
  align-items: center;
  gap: 24px;
  max-width: var(--hc-shell);
  margin: 0 auto;
  padding: 18px var(--hc-gutter);
}

.hc-header__brand {
  font-size: 20px;
  font-weight: 700;
  color: var(--hc-ink);
  text-decoration: none;
}

.hc-header__nav { flex: 1; }

.hc-header__menu {
  display: flex;
  gap: 22px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.hc-header__menu a {
  color: var(--hc-body);
  text-decoration: none;
  font-size: 15.5px;
  font-weight: 600;
}
.hc-header__menu a:hover { color: var(--hc-pink); }

.hc-header__actions { display: flex; align-items: center; gap: 12px; }

.hc-header__lang {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .06em;
  color: var(--hc-secondary);
  background: var(--hc-wash);
  border-radius: 999px;
  padding: 6px 12px;
}

.hc-header__cta {
  background: var(--hc-grad);
  color: var(--hc-white);
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  border-radius: 999px;
  padding: 9px 18px;
  box-shadow: var(--hc-shadow-brand);
}

@media (max-width: 760px) {
  .hc-header__inner { flex-wrap: wrap; gap: 12px; }
  .hc-header__brand { order: 1; }
  .hc-header__actions { order: 2; margin-left: auto; }
  .hc-header__nav { order: 3; flex-basis: 100%; }
  .hc-header__menu { flex-wrap: wrap; flex-direction: column; gap: 10px; }
}
