/* ==========================================================================
   BHASNet — main.css
   Base, typography, layout primitives, shared components.
   Loaded after style.css (tokens) via wp_enqueue_style.
   ========================================================================== */

/* ---- Reset / base ---- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bh-paper);
  color: var(--bh-ink);
  font-family: var(--bh-font-body);
  font-size: var(--bh-size-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, p { margin: 0; }

.bh-container {
  max-width: var(--bh-container);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 3rem);
}
.bh-container--narrow { max-width: var(--bh-container-narrow); }

.bh-section { padding-block: var(--bh-space-xl); }
.bh-section--tight { padding-block: var(--bh-space-lg); }
.bh-section--dark { background: var(--bh-ink); color: var(--bh-paper); }
.bh-section--paper-dim { background: var(--bh-paper-dim); }

/* Visible keyboard focus, everywhere */
a:focus-visible, button:focus-visible, input:focus-visible,
textarea:focus-visible, select:focus-visible {
  outline: 2px solid var(--bh-red);
  outline-offset: 3px;
}

/* ---- Typography ---- */
.bh-eyebrow {
  font-family: var(--bh-font-mono);
  font-size: var(--bh-size-micro);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bh-red);
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  margin-bottom: var(--bh-space-sm);
}
.bh-eyebrow::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
  flex-shrink: 0;
}

.bh-display {
  font-family: var(--bh-font-display);
  font-size: var(--bh-size-display);
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: -0.01em;
}
.bh-h1 {
  font-family: var(--bh-font-display);
  font-size: var(--bh-size-h1);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.01em;
}
.bh-h2 {
  font-family: var(--bh-font-display);
  font-size: var(--bh-size-h2);
  font-weight: 600;
  line-height: 1.1;
}
.bh-h3 {
  font-family: var(--bh-font-display);
  font-size: var(--bh-size-h3);
  font-weight: 600;
  line-height: 1.25;
}
.bh-lede {
  font-size: var(--bh-size-body-lg);
  color: var(--bh-slate);
  line-height: 1.55;
  max-width: 58ch;
}
.bh-section--dark .bh-lede { color: var(--bh-slate-light); }

.bh-mono {
  font-family: var(--bh-font-mono);
  font-size: var(--bh-size-small);
  letter-spacing: 0.02em;
}

/* ---- Drop mark — signature element ---- */
.bh-drop {
  display: inline-block;
  width: 0.5em;
  height: 0.66em;
  background: currentColor;
  clip-path: path('M9 0C9 0 0 11.5 0 16.5C0 21.7467 4.02944 26 9 26C13.9706 26 18 21.7467 18 16.5C18 11.5 9 0 9 0Z');
  transform: translateY(0.06em);
}
.bh-divider {
  display: flex;
  align-items: center;
  gap: var(--bh-space-xs);
  color: var(--bh-red);
  margin-block: var(--bh-space-md);
}
.bh-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--bh-line-dark);
}
.bh-section--dark .bh-divider::after { background: var(--bh-line); }

/* Scroll-position drop rail (decorative, aria-hidden) */
.bh-rail {
  position: fixed;
  left: clamp(0.75rem, 2vw, 2rem);
  top: 50%;
  transform: translateY(-50%);
  z-index: 40;
  display: none;
}
@media (min-width: 1100px) {
  .bh-rail { display: block; }
}
.bh-rail-track {
  position: relative;
  width: 2px;
  height: 220px;
  background: var(--bh-line-dark);
}
.bh-rail-fill {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 0%;
  background: var(--bh-red);
  transition: height 0.1s linear;
}
.bh-rail-drop {
  position: absolute;
  left: 50%;
  top: 0%;
  transform: translate(-50%, -50%);
  color: var(--bh-red);
  transition: top 0.1s linear;
}

/* ---- Buttons ---- */
.bh-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  font-family: var(--bh-font-mono);
  font-size: var(--bh-size-small);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.95em 1.6em;
  border: 1px solid currentColor;
  border-radius: var(--bh-radius);
  transition: background var(--bh-duration) var(--bh-ease), color var(--bh-duration) var(--bh-ease);
  white-space: nowrap;
}
.bh-btn--primary {
  background: var(--bh-red);
  border-color: var(--bh-red);
  color: var(--bh-paper);
}
.bh-btn--primary:hover { background: var(--bh-red-deep); border-color: var(--bh-red-deep); }
.bh-btn--ghost-dark { color: var(--bh-ink); }
.bh-btn--ghost-dark:hover { background: var(--bh-ink); color: var(--bh-paper); }
.bh-btn--ghost-light { color: var(--bh-paper); }
.bh-btn--ghost-light:hover { background: var(--bh-paper); color: var(--bh-ink); }
.bh-btn--arrow::after { content: '→'; transition: transform var(--bh-duration) var(--bh-ease); }
.bh-btn--arrow:hover::after { transform: translateX(4px); }

/* ---- Header / nav ---- */
.bh-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 243, 238, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--bh-line-dark);
  color: var(--bh-ink);
}
.bh-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--bh-space-md);
  padding-block: 1.1rem;
}
.bh-logo img { height: 68px; width: auto; }
.bh-logo { display: inline-flex; align-items: center; }
/* No backing chip needed: the header background is light (--bh-paper)
   and the current logo file is a full-color/dark mark designed for
   light backgrounds, so it reads correctly with no extra treatment.
   If a future logo swap is white/light again, restore a dark chip
   here (see prior revision) — header color drives logo legibility,
   so the two need to be considered together when either changes. */

.bh-nav {
  display: none;
  align-items: center;
  gap: clamp(1.25rem, 2.5vw, 2.25rem);
}
@media (min-width: 960px) { .bh-nav { display: flex; } }
.bh-nav ul {
  display: flex;
  align-items: center;
  gap: clamp(1.25rem, 2.5vw, 2.25rem);
}
.bh-nav li { display: block; }
.bh-nav a {
  font-family: var(--bh-font-mono);
  font-size: var(--bh-size-small);
  letter-spacing: 0.02em;
  position: relative;
  padding-block: 0.25em;
}
.bh-nav a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -2px;
  width: 0%;
  height: 1px;
  background: var(--bh-red);
  transition: width var(--bh-duration) var(--bh-ease);
}
.bh-nav a:hover::after, .bh-nav a.is-active::after { width: 100%; }

/* ---- Desktop dropdown: "I Want To Help" submenu ----
   The only dropdown in this theme. Opens on hover (desktop) via a
   JS-managed .is-open class with a forgiving close delay (so moving
   the mouse from trigger to panel doesn't snap it shut), and ALSO via
   plain CSS :focus-within as a no-JS / keyboard-only fallback — a
   keyboard user tabbing onto the trigger or any link inside the panel
   keeps it visible without needing main.js to run at all. */
.bh-nav .menu-item-has-children {
  position: relative;
}
.bh-nav .bh-nav-dropdown-trigger {
  background: none;
  border: none;
  font-family: var(--bh-font-mono);
  font-size: var(--bh-size-small);
  letter-spacing: 0.02em;
  color: var(--bh-ink);
  cursor: pointer;
  padding-block: 0.25em;
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
}
.bh-nav .bh-nav-dropdown-trigger::after {
  content: '';
  width: 6px;
  height: 6px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform var(--bh-duration) var(--bh-ease);
}
.bh-nav .menu-item-has-children.is-open .bh-nav-dropdown-trigger::after,
.bh-nav .menu-item-has-children:focus-within .bh-nav-dropdown-trigger::after {
  transform: rotate(225deg) translateY(2px);
}

.bh-nav .sub-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  margin-top: 0.75rem;
  background: var(--bh-paper);
  border: 1px solid var(--bh-line-dark);
  min-width: 200px;
  padding: 0.5rem;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s var(--bh-ease), transform 0.2s var(--bh-ease), visibility 0.2s;
}
.bh-nav .menu-item-has-children.is-open .sub-menu,
.bh-nav .menu-item-has-children:focus-within .sub-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.bh-nav .sub-menu li { width: 100%; }
.bh-nav .sub-menu a {
  display: block;
  padding: 0.6em 0.75em;
  font-size: var(--bh-size-small);
}
.bh-nav .sub-menu a:hover { background: var(--bh-paper-dim); }
.bh-nav .sub-menu a::after { display: none; } /* no underline-on-hover inside the panel — the background swap is enough */

.bh-header-cta { display: flex; align-items: center; gap: 1rem; }
.bh-header-cta .bh-btn { padding: 0.7em 1.3em; }

.bh-menu-toggle {
  display: inline-flex;
  background: none;
  border: none;
  padding: 0.5rem;
}
@media (min-width: 960px) { .bh-menu-toggle { display: none; } }
.bh-menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--bh-ink);
  margin: 5px 0;
  transition: transform 0.3s var(--bh-ease), opacity 0.3s var(--bh-ease);
}

.bh-mobile-nav {
  position: fixed;
  inset: 0;
  background: var(--bh-ink);
  color: var(--bh-paper);
  z-index: 60;
  display: flex;
  flex-direction: column;
  padding: 1.5rem clamp(1.25rem, 6vw, 3rem);
  transform: translateY(-100%);
  transition: transform 0.45s var(--bh-ease);
}
.bh-mobile-nav.is-open { transform: translateY(0); }
.bh-mobile-nav-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--bh-space-lg);
}
.bh-mobile-nav-close {
  background: none; border: none; color: var(--bh-paper);
  font-family: var(--bh-font-mono); font-size: var(--bh-size-small);
  display: flex; align-items: center; gap: 0.5em;
}
.bh-mobile-nav ul { display: flex; flex-direction: column; gap: 0.4em; }
.bh-mobile-nav a {
  font-family: var(--bh-font-display);
  font-size: clamp(2rem, 8vw, 2.75rem);
  font-weight: 600;
  padding-block: 0.15em;
}

/* ---- Mobile dropdown: tap-to-expand in place (not a floating panel —
   the mobile nav is already a full-screen overlay, so the submenu
   just grows the list rather than opening a separate layer). The
   .bh-mobile-nav ul rule above would otherwise apply identically to
   the nested .sub-menu and make it indistinguishable from top-level
   items; this block overrides it with higher specificity. */
.bh-mobile-nav .menu-item-has-children { display: flex; flex-direction: column; }
.bh-mobile-nav .bh-mobile-nav-dropdown-trigger {
  background: none;
  border: none;
  color: var(--bh-paper);
  font-family: var(--bh-font-display);
  font-size: clamp(2rem, 8vw, 2.75rem);
  font-weight: 600;
  padding-block: 0.15em;
  text-align: left;
  display: flex;
  align-items: center;
  gap: 0.4em;
  cursor: pointer;
}
.bh-mobile-nav .bh-mobile-nav-dropdown-trigger::after {
  content: '';
  width: 10px;
  height: 10px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-4px);
  transition: transform var(--bh-duration) var(--bh-ease);
  flex-shrink: 0;
}
.bh-mobile-nav .menu-item-has-children.is-open .bh-mobile-nav-dropdown-trigger::after {
  transform: rotate(225deg) translateY(4px);
}
.bh-mobile-nav .sub-menu {
  display: flex !important; /* overrides the generic rule's display:flex anyway, but explicit for clarity since this ul is conditionally height-collapsed below, not display:none'd */
  flex-direction: column !important;
  gap: 0.2em !important;
  max-height: 0;
  overflow: hidden;
  padding-left: 1.25rem;
  border-left: 2px solid var(--bh-red);
  margin-left: 0.25rem;
  transition: max-height 0.35s var(--bh-ease);
}
.bh-mobile-nav .menu-item-has-children.is-open .sub-menu {
  max-height: 320px; /* generous fixed cap rather than computed height — 3 short links never approach it, avoids a JS height-measurement step for a fixed, known-small list */
}
.bh-mobile-nav .sub-menu a {
  font-size: clamp(1.1rem, 4vw, 1.4rem);
  font-weight: 500;
  padding-block: 0.3em;
}
.bh-mobile-nav-foot {
  margin-top: auto;
  padding-top: var(--bh-space-md);
  border-top: 1px solid var(--bh-line);
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  font-family: var(--bh-font-mono);
  font-size: var(--bh-size-small);
  color: var(--bh-slate-light);
}

/* ---- Hero (video/image bg) ---- */
.bh-hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: flex-end;
  background: var(--bh-ink);
  color: var(--bh-paper);
  overflow: hidden;
}
.bh-hero-media {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.55;
}
.bh-hero::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(11,11,14,0.25) 0%, rgba(11,11,14,0.55) 55%, rgba(11,11,14,0.95) 100%);
}
.bh-hero-content {
  position: relative;
  z-index: 2;
  padding-block: var(--bh-space-xl) var(--bh-space-lg);
  width: 100%;
}
.bh-hero-stat {
  display: flex;
  flex-wrap: wrap;
  gap: var(--bh-space-lg);
  margin-top: var(--bh-space-lg);
  padding-top: var(--bh-space-md);
  border-top: 1px solid var(--bh-line);
}
.bh-hero-stat-item .num {
  font-family: var(--bh-font-display);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  display: block;
}
.bh-hero-stat-item .label {
  font-family: var(--bh-font-mono);
  font-size: var(--bh-size-micro);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--bh-slate-light);
}

/* ---- Identity doors ---- */
.bh-doors {
  display: grid;
  grid-template-columns: 1fr;
}
@media (min-width: 800px) {
  .bh-doors { grid-template-columns: repeat(4, 1fr); }
}
.bh-door {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 70vh;
  padding: var(--bh-space-md);
  background: var(--bh-ink);
  color: var(--bh-paper);
  border-right: 1px solid var(--bh-line);
  overflow: hidden;
}
@media (min-width: 800px) {
  .bh-door { min-height: 86vh; }
}
.bh-door:nth-child(1) { background: #15151a; }
.bh-door:nth-child(2) { background: #19181c; }
.bh-door:nth-child(3) { background: #131316; }
.bh-door:nth-child(4) { background: #1c1a1d; }
.bh-door-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.38;
  transition: opacity var(--bh-duration) var(--bh-ease), transform 0.8s var(--bh-ease);
}
.bh-door:hover .bh-door-img { opacity: 0.6; transform: scale(1.04); }
.bh-door::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(11,11,14,0.1) 0%, rgba(11,11,14,0.85) 100%);
}
.bh-door-num {
  position: relative; z-index: 2;
  font-family: var(--bh-font-mono);
  font-size: var(--bh-size-micro);
  color: var(--bh-amber);
  margin-bottom: var(--bh-space-md);
}
.bh-door-title {
  position: relative; z-index: 2;
  font-family: var(--bh-font-display);
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  font-weight: 600;
  margin-bottom: 0.5em;
  line-height: 1.1;
}
.bh-door-desc {
  position: relative; z-index: 2;
  font-size: var(--bh-size-small);
  color: var(--bh-slate-light);
  margin-bottom: var(--bh-space-md);
}
.bh-door-link {
  position: relative; z-index: 2;
  font-family: var(--bh-font-mono);
  font-size: var(--bh-size-small);
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  color: var(--bh-paper);
  border-bottom: 1px solid var(--bh-red);
  padding-bottom: 2px;
  width: fit-content;
}

/* ---- Pillars (campaign list) ---- */
.bh-pillar {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--bh-space-sm);
  padding-block: var(--bh-space-md);
  border-top: 1px solid var(--bh-line-dark);
  align-items: baseline;
}
@media (min-width: 800px) {
  .bh-pillar { grid-template-columns: 0.5fr 2fr 3fr; gap: var(--bh-space-md); }
}
.bh-pillar:last-child { border-bottom: 1px solid var(--bh-line-dark); }
.bh-pillar-num { font-family: var(--bh-font-mono); color: var(--bh-red); font-size: var(--bh-size-small); }
.bh-pillar-title { font-family: var(--bh-font-display); font-size: var(--bh-size-h3); font-weight: 600; }
.bh-pillar-desc { color: var(--bh-slate); max-width: 56ch; }

/* ---- Cards ---- */
.bh-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--bh-space-md);
}
@media (min-width: 700px) {
  .bh-grid--2 { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 900px) {
  .bh-grid--3 { grid-template-columns: repeat(3, 1fr); }
}
.bh-card {
  background: var(--bh-paper);
  border: 1px solid var(--bh-line-dark);
  padding: var(--bh-space-md);
}
.bh-card-eyebrow {
  font-family: var(--bh-font-mono);
  font-size: var(--bh-size-micro);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--bh-red);
  margin-bottom: 0.75rem;
  display: block;
}
.bh-card h3 { margin-bottom: 0.6rem; }
.bh-card p { color: var(--bh-slate); font-size: var(--bh-size-small); }

/* ---- Event card ---- */
.bh-event {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--bh-space-sm);
  padding: var(--bh-space-md) 0;
  border-top: 1px solid var(--bh-line-dark);
}
@media (min-width: 700px) {
  .bh-event { grid-template-columns: 140px 1fr auto; align-items: center; gap: var(--bh-space-md); }
}
.bh-event-date {
  font-family: var(--bh-font-mono);
  font-size: var(--bh-size-small);
  color: var(--bh-red);
}
.bh-event-title { font-family: var(--bh-font-display); font-size: 1.4rem; font-weight: 600; margin-bottom: 0.3rem; }
.bh-event-meta { color: var(--bh-slate); font-size: var(--bh-size-small); }

/* ---- Calendar (awareness days) ---- */
.bh-cal-month {
  border-top: 1px solid var(--bh-line-dark);
  padding-block: var(--bh-space-md);
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--bh-space-sm);
}
@media (min-width: 760px) {
  .bh-cal-month { grid-template-columns: 160px 1fr; gap: var(--bh-space-md); }
}
.bh-cal-month-name {
  font-family: var(--bh-font-display);
  font-size: 1.6rem;
  font-weight: 600;
}
.bh-cal-entry { padding-block: 0.6rem; border-top: 1px solid var(--bh-line-dark); }
.bh-cal-entry:first-child { border-top: none; padding-top: 0; }
.bh-cal-entry-name { font-weight: 600; }
.bh-cal-entry-date { font-family: var(--bh-font-mono); font-size: var(--bh-size-small); color: var(--bh-red); }
.bh-cal-entry-purpose { color: var(--bh-slate); font-size: var(--bh-size-small); margin-top: 0.2rem; }

/* ---- Form ---- */
.bh-form { display: grid; gap: var(--bh-space-sm); max-width: var(--bh-container-narrow); }
.bh-form-row { display: grid; gap: var(--bh-space-sm); }
@media (min-width: 600px) {
  .bh-form-row--2 { grid-template-columns: 1fr 1fr; }
}
.bh-field { display: flex; flex-direction: column; gap: 0.4rem; }
.bh-field label {
  font-family: var(--bh-font-mono);
  font-size: var(--bh-size-micro);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--bh-slate);
}
.bh-field input, .bh-field textarea, .bh-field select {
  font-family: var(--bh-font-body);
  font-size: var(--bh-size-body);
  padding: 0.85em 1em;
  border: 1px solid var(--bh-line-dark);
  background: var(--bh-paper);
  color: var(--bh-ink);
  border-radius: var(--bh-radius);
}
.bh-field textarea { min-height: 140px; resize: vertical; }
.bh-radio-group { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.bh-radio-pill {
  position: relative;
  font-family: var(--bh-font-mono);
  font-size: var(--bh-size-small);
  border: 1px solid var(--bh-line-dark);
  padding: 0.6em 1.1em;
  border-radius: 999px;
  cursor: pointer;
}
.bh-radio-pill input { position: absolute; opacity: 0; pointer-events: none; }
.bh-radio-pill:has(input:checked) { background: var(--bh-ink); color: var(--bh-paper); border-color: var(--bh-ink); }

/* ---- Footer ---- */
.bh-footer { background: var(--bh-ink); color: var(--bh-paper); padding-top: var(--bh-space-xl); }
.bh-footer-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--bh-space-lg);
  padding-bottom: var(--bh-space-lg);
}
@media (min-width: 800px) {
  .bh-footer-top { grid-template-columns: 1.4fr 1fr 1fr 1fr; }
}
.bh-footer-motto {
  font-family: var(--bh-font-display);
  font-size: clamp(1.5rem, 2.4vw, 2.1rem);
  line-height: 1.2;
  max-width: 18ch;
}
.bh-footer h4 {
  font-family: var(--bh-font-mono);
  font-size: var(--bh-size-micro);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--bh-slate-light);
  margin-bottom: 1rem;
}
.bh-footer ul { display: flex; flex-direction: column; gap: 0.6rem; }
.bh-footer a:hover { color: var(--bh-red); }
.bh-footer-bottom {
  border-top: 1px solid var(--bh-line);
  padding-block: var(--bh-space-sm);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  font-family: var(--bh-font-mono);
  font-size: var(--bh-size-micro);
  color: var(--bh-slate-light);
}

/* ---- Page header (interior pages) ---- */
.bh-page-head {
  padding-block: calc(var(--bh-space-xl) + 2rem) var(--bh-space-lg);
  background: var(--bh-ink);
  color: var(--bh-paper);
}

/* ---- Utility ---- */
.bh-vh { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.bh-mt-lg { margin-top: var(--bh-space-lg); }
.bh-flex-between { display: flex; align-items: center; justify-content: space-between; gap: var(--bh-space-md); flex-wrap: wrap; }

/* ---- Reveal-on-scroll ---- */
.bh-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s var(--bh-ease), transform 0.8s var(--bh-ease);
}
.bh-reveal.is-visible { opacity: 1; transform: translateY(0); }