/* NAVBAR */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 70px;
  background: #cf5f88;
  z-index: 1000;
  box-shadow: 0 4px 12px rgba(0,0,0,.08);
}

.nav-wrap {
  max-width: var(--container);
  margin: 0 auto;
  height: 70px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0 16px;
}

/* Brand logo + text */
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-weight: 700;
}
.brand img {
  width: 28px;
  height: 28px;
  display: block;
  object-fit: contain;
}
@media(max-width:600px){
  .brand{gap:8px}
  .brand img{width:24px;height:24px}
}

/* Navigation links */
.nav-links {
  margin-left: auto;
  display: none;
  gap: 10px;
}
.nav-links a {
  color: #fff;
  padding: .5rem .85rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
}
.nav-links a:is(:hover,:focus-visible) {
  background: #ffffff2b;
}

/* Desktop CTA button */
.nav-cta {
  display: none;
  margin-left: 8px;
}
.btn-nav {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .55rem .9rem;
  border-radius: 999px;
  border: 1px solid var(--hair);
  background: #fff;
  color: var(--red-600);
  font-weight: 700;
  box-shadow: 6px 6px 0 rgba(0,0,0,.08);
  text-decoration: none;
}
@media(min-width:900px){
  .nav-links{display:flex}
  .nav-cta{display:inline-flex}
}

/* Mobile menu toggle */
.nav-toggle {
  margin-left: auto;
  width: 42px;
  height: 42px;
  border: none;
  border-radius: 10px;
  background: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
}
.nav-toggle svg {width: 22px; height: 22px}

/* Mobile dropdown panel */
.nav-panel {
  display: none;
  position: fixed;
  top: 70px;
  left: 0; right: 0;
  background: #fff;
  border-bottom: 1px solid #00000014;
  box-shadow: 0 10px 20px rgba(0,0,0,.08);
}
.nav-panel.open {display: block}
.nav-panel a {
  display: block;
  padding: 14px 18px;
  color: var(--red-600);
  text-decoration: none;
  font-weight: 600;
}
.nav-spacer {height: 70px;}

