/* Header-specific styles building on base.css */
.site-header {
  padding-inline: var(--space-4);
}

.site-header__inner {
  position: relative;
  z-index: 20;
}

.site-header__brand {
  display: flex;
  align-items: center;
  min-width: 0;
}

.site-header__logo-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
}

.site-header__mark {
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 1.4rem;
  background: radial-gradient(circle at 30% 0, #f6ead8, transparent 55%),
              linear-gradient(135deg, #1b7f5a, #26a373);
  box-shadow: 0 12px 26px rgba(6, 35, 24, 0.38);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-family: var(--font-display);
  font-size: 0.9rem;
  color: #ffffff;
}

.site-header__text {
  display: flex;
  flex-direction: column;
}

.site-header__title {
  font-size: 0.98rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-text);
}

.site-header__subtitle {
  font-size: 0.72rem;
  color: var(--color-text-muted);
}

.nav {
  gap: var(--space-3);
}

.nav__list {
  list-style: none;
}

.nav__item--cta .nav__link {
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
  color: #ffffff;
  box-shadow: 0 12px 30px rgba(6, 35, 24, 0.35);
}

.nav__item--cta .nav__link::after {
  display: none;
}

.nav__item--cta .nav__link:hover {
  color: #ffffff !important;
}

.nav__link--cta {
  font-weight: 500;
}

@media (max-width: 900px) {
  .site-header {
    padding-inline: var(--space-3);
  }

  .site-header__subtitle {
    display: none;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .site-header__inner {
    animation: header-slide-down 520ms var(--transition-normal) both;
  }

  @keyframes header-slide-down {
    from {
      opacity: 0;
      transform: translateY(-12px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}
