.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 247, 241, 0.95);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.top-strip {
  height: 34px;
  background: var(--wine);
}
.brand-row {
  height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.brand-mark img {
  width: 90px;
  height: 90px;
}

.brand-text {
  font-size: 2rem;
  font-weight: 900;
  font-family: "Cormorant Garamond", serif;
  letter-spacing: 2px;
  color: #9a4166;
}
.main-nav {
  display: flex;
  gap: 26px;
  align-items: center;
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    Segoe UI,
    sans-serif;
  color: var(--text);
  line-height: 1.5;
  font-size: 1rem;
}
.main-nav a {
  text-decoration: none;
  font-weight: 700;
  color: #b7888d;
}
.main-nav a.active {
  color: var(--wine);
  border-bottom: 3px solid var(--wine);
  padding-bottom: 8px;
}
.nav-cta {
  background: var(--wine);
  color: #fff !important;
  padding: 0.7rem 1rem;
  border-radius: 999px;
}
.menu-toggle {
  display: none;
  background: none;
  border: 0;
  gap: 4px;
  flex-direction: column;
}
.menu-toggle span:not(.sr-only) {
  width: 24px;
  height: 2px;
  background: #111;
}
@media (max-width: 820px) {
  .brand-row {
    height: 76px;
  }
  .menu-toggle {
    display: flex;
  }
  .main-nav {
    position: absolute;
    inset: 110px 0 auto 0;
    background: var(--bg);
    padding: 24px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    border-bottom: 1px solid var(--line);
  }
  .main-nav.open {
    display: flex;
  }
  .brand-mark img {
    width: 70px;
    height: 70px;
  }
}
