.site-header {
  position: relative;
  z-index: 40;
  padding-top: 1rem;
}
.site-header .pill-header {
  position: sticky;
  top: 1rem;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}
.brand-mark {
  position: relative;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 20%, #ffffff 0, #c7f36b 35%, #3ebc5b 70%, #1b5b28 100%);
  box-shadow: 0 10px 25px rgba(11, 37, 16, 0.35);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.brand-mark-disc {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: conic-gradient(from 130deg, #fdfaf4 0, #ffe08a 40%, #ffc857 70%, #fdfaf4 100%);
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.8);
}
.brand-mark-track {
  position: absolute;
  border-radius: 999px;
  border: 2px solid rgba(255, 255, 255, 0.7);
}
.brand-mark-track--outer {
  inset: 6px;
  border-style: dashed;
}
.brand-mark-track--inner {
  inset: 11px;
}
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.brand-title {
  font-family: "DM Serif Display", var(--font-heading);
  font-size: 1.15rem;
  letter-spacing: 0.03em;
  color: var(--color-text);
}
.brand-subtitle {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-text-soft);
}
.primary-nav {
  flex: 1;
  display: flex;
  justify-content: center;
}
.nav-list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 500;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  color: var(--color-text-soft);
}
.nav-link:hover,
.nav-link:focus-visible {
  color: var(--color-text);
  background: rgba(219, 243, 216, 0.95);
}
.nav-link.is-active {
  color: var(--color-text);
  background: rgba(200, 241, 209, 0.95);
}
.header-cta-wrap {
  display: flex;
  align-items: center;
}
.header-cta {
  padding: 0;
}
.btn-sm {
  padding: 0.55rem 1.25rem;
  font-size: 0.75rem;
}
.header-cta-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.header-cta-icon i {
  font-size: 0.95em;
}
.drawer-panel {
  font-family: var(--font-sans);
}
.drawer-brand {
  font-family: "DM Serif Display", var(--font-heading);
  font-size: 1.05rem;
  color: var(--color-text);
}
.drawer-nav {
  margin-top: 0.5rem;
}
.drawer-link {
  text-decoration: none;
  display: block;
  padding: 0.6rem 0.5rem;
  border-radius: 14px;
  color: var(--color-text-soft);
  font-size: 0.95rem;
}
.drawer-link:hover,
.drawer-link:focus-visible {
  background: rgba(212, 237, 209, 0.9);
  color: var(--color-text);
}
.drawer-note {
  font-size: 0.78rem;
  color: var(--gray-600);
  margin-top: 0.6rem;
}
.drawer-overlay {
  cursor: pointer;
}
@media (max-width: 768px) {
  .primary-nav {
    display: none;
  }
  .header-cta-wrap {
    display: none;
  }
}
@media (min-width: 769px) {
  .drawer-toggle,
  .burger-btn,
  .drawer-overlay,
  .drawer-panel {
    display: none;
  }
}
@media (max-width: 480px) {
  .brand-title {
    font-size: 1.05rem;
  }
  .brand-subtitle {
    display: none;
  }
}