.site-header {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 3px solid var(--red);
  background:
    radial-gradient(120% 140% at 20% 0%, rgba(255, 255, 255, 0.12), transparent 50%),
    linear-gradient(120deg, rgba(20, 20, 22, 0.96), rgba(34, 35, 39, 0.95));
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
}

.header-inner {
  padding: 0.75rem 0.9rem 0.65rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
}

.brand {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 0.65rem;
  text-decoration: none;
  color: #fff;
  align-items: center;
  min-width: 0;
}

.brand img {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.65);
  background: #fff;
}

.eyebrow {
  margin: 0;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.84);
}

h1 {
  margin: 0.12rem 0 0;
  line-height: 1.1;
  font-size: 1.12rem;
  overflow-wrap: anywhere;
}

.site-nav {
  display: none;
  gap: 0.5rem;
  padding: 0 0.8rem 0.8rem;
  flex-direction: column;
}

.site-nav.is-open {
  display: flex;
}

.site-nav a {
  text-decoration: none;
  color: #fff;
  font-weight: 700;
  font-size: 0.97rem;
  min-height: 44px;
  padding: 0.62rem 0.75rem;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  background: rgba(225, 25, 34, 0.2);
  width: 100%;
  display: inline-flex;
  align-items: center;
}

.site-nav a:hover {
  background: rgba(225, 25, 34, 0.36);
  color: #fff;
}

.nav-toggle {
  border: 1px solid rgba(255, 255, 255, 0.42);
  background: rgba(225, 25, 34, 0.32);
  color: #fff;
  font-weight: 700;
  padding: 0.45rem 0.65rem;
  min-width: 84px;
  min-height: 44px;
}

@media (min-width: 700px) {
  .header-inner {
    width: min(1120px, 100% - 1.4rem);
    margin: 0 auto;
    padding: 0.85rem 0;
  }

  .site-nav {
    display: flex;
    width: min(1120px, 100% - 1.4rem);
    margin: 0 auto;
    padding: 0 0 0.8rem;
    gap: 0.45rem;
    flex-wrap: wrap;
    flex-direction: row;
    overflow: visible;
  }

  .site-nav a {
    width: auto;
    font-size: 0.88rem;
    padding: 0.45rem 0.62rem;
    border-radius: 8px;
    white-space: nowrap;
    min-height: 44px;
  }

  .nav-toggle {
    display: none;
  }

  .brand {
    grid-template-columns: 66px 1fr;
    gap: 0.85rem;
  }

  .brand img {
    width: 66px;
    height: 66px;
  }

  h1 {
    font-size: 1.48rem;
  }

  .eyebrow {
    font-size: 0.74rem;
  }
}
