.site-nav {
  width: min(1180px, calc(100% - 32px));
  margin: 18px auto 0;
  padding: 14px 16px;
  border: 2px solid rgba(29, 29, 29, .08);
  border-radius: 999px;
  background: rgba(255, 255, 255, .78);
  backdrop-filter: blur(16px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 14px;
  z-index: 20;
  box-shadow: 0 14px 40px rgba(80, 30, 8, .12);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-logo-wrap {
  width: 58px;
  height: 58px;
  flex: 0 0 58px;
  border-radius: 50%;
  background: #fff;
  padding: 0;
  display: grid;
  place-items: center;
  box-shadow: 0 8px 22px rgba(0, 0, 0, .14);
  border: 2px solid rgba(29, 29, 29, .08);
  overflow: hidden;
}

.brand-logo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
}

.brand strong {
  display: block;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(1.35rem, 2.4vw, 1.75rem);
  letter-spacing: .8px;
  line-height: 1;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: .75rem;
  font-weight: 700;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 6px;
  padding: 0;
  margin: 0;
}

.nav-links a {
  display: block;
  padding: 12px 16px;
  border-radius: 999px;
  font-weight: 800;
  font-size: .88rem;
}

.nav-links a:hover {
  background: rgba(252, 191, 73, .35);
}

.nav-cta {
  background: var(--black);
  color: var(--white);
}

.nav-toggle {
  display: none;
  border: 0;
  background: var(--red);
  color: white;
  border-radius: 50%;
  width: 46px;
  height: 46px;
  font-size: 1.1rem;
  cursor: pointer;
}

@media (max-width: 900px) {
  .site-nav {
    width: min(100% - 28px, 1180px);
  }

  .brand small {
    display: none;
  }

  .nav-links a {
    padding: 11px 12px;
  }
}

@media (max-width: 650px) {
  .site-nav {
    width: min(100% - 24px, 1180px);
    padding: 10px;
    border-radius: 24px;
  }

  .brand {
    max-width: calc(100% - 56px);
  }

  .brand-logo-wrap {
    width: 50px;
    height: 50px;
    flex-basis: 50px;
  }

  .brand strong {
    font-size: 1.35rem;
  }

  .nav-toggle {
    display: grid;
    place-items: center;
    flex: 0 0 46px;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, .97);
    backdrop-filter: blur(16px);
    border: 2px solid rgba(29, 29, 29, .08);
    border-radius: 24px;
    padding: 14px;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    box-shadow: 0 22px 55px rgba(80, 30, 8, .18);
  }

  .nav-links.show {
    display: flex;
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links a {
    width: 100%;
    padding: 16px 18px;
    border-radius: 18px;
    text-align: left;
    background: rgba(252, 191, 73, .16);
    border: 1px solid rgba(29, 29, 29, .06);
    font-size: .98rem;
  }

  .nav-links .nav-cta {
    text-align: center;
    background: var(--red);
    color: white;
    border: 2px solid var(--black);
    box-shadow: 4px 4px 0 var(--black);
  }
}