/* Base font scale matching WFG body (Brandon Text → Nunito, 18px / 1.7) */
body {
  font-size: 18px;
  line-height: 1.7;
}

/* Bold headings to match WFG weight */
h1, h2, h3 {
  font-weight: 700;
}

/* Scrolling header */
#site-header {
  transition: box-shadow 0.35s ease, background-color 0.35s ease;
}

#site-header nav {
  transition: padding-top 0.35s ease, padding-bottom 0.35s ease;
}

#site-header.scrolled {
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.09);
  background-color: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

#site-header.scrolled nav {
  padding-top: 0.65rem;
  padding-bottom: 0.65rem;
}
