/* ========================================
   HEADER
   ======================================== */

.site-header {
  background: linear-gradient(135deg, #0e3f5f 0%, #0b3550 100%);
  color: #fff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2rem 0;
}

.brand img {
  width: 400px;

  position: absolute;
  top: -70px;
  left: 0;
}

.brand-badge {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: var(--radius-large);
  background: #0d0d0d;
}

.brand-text h1 {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: 0.3px;
}

.nav {
  display: flex;
  gap: 36px;
  font-size: 13px;
  font-weight: 600;
}

.nav a {
  color: #f6f6f6;
}
