/* Site header: logo, desktop nav links, and the phone/CTA actions on the
   right. The mobile hamburger button and its slide-in panel are a separate
   component — see components/mobile-nav/. */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(246, 242, 234, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--color-line);
}

.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--color-ink);
}

.logo-mark {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-panel);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.logo-mark svg {
  width: 20px;
  height: 20px;
}

.logo-text {
  font-family: var(--font-logo);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  white-space: nowrap;
}

.logo-text span {
  color: var(--color-accent);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 36px;
}

.main-nav a {
  text-decoration: none;
  font-size: 0.94rem;
  font-weight: 500;
  color: var(--color-ink-soft);
  position: relative;
  padding: 4px 0;
  transition: color 0.2s ease;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--color-ink);
}

.main-nav a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -3px;
  height: 2px;
  background: var(--color-accent);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.phone-pill {
  display: flex;
  align-items: center;
  gap: 9px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--color-ink);
}

.phone-pill svg {
  width: 16px;
  height: 16px;
  color: var(--color-accent);
}

/* Below this width the desktop nav links hide and the mobile-nav
   component's hamburger button takes over (see mobile-nav.css) */
@media (max-width: 760px) {
  .main-nav {
    display: none;
  }

  .phone-pill span {
    display: none;
  }
}
