/*
Theme Name:   JHB Bright Horizon
Theme URI:    https://jhbuddy.com
Author:       Job Hunting Buddy
Author URI:   https://jhbuddy.com
Description:  The official Job Hunting Buddy theme. Bright Horizon design — warm ivory, charcoal and sunrise-orange palette. Built for experienced professionals navigating what's next. Includes homepage with career-fit quiz and lifetime earnings calculator, blog listing, post template, about page, and archive.
Version:      1.0.0
Requires PHP: 7.4
License:      GNU General Public License v2 or later
License URI:  https://www.gnu.org/licenses/gpl-2.0.html
Text Domain:  jhbuddy
Tags:         blog, one-column, two-columns, custom-header, custom-menu, featured-images, full-width-template, sticky-post, translation-ready
*/

/* ═══════════════════════════════════════════════════
   §0  RESET & BASE
═══════════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
img, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
button { font-family: inherit; }

/* ═══════════════════════════════════════════════════
   §1  DESIGN TOKENS
═══════════════════════════════════════════════════ */
:root {
  --ivory:          #fffaf3;
  --ivory-deep:     #f5ece0;
  --charcoal:       #181613;
  --charcoal-deep:  #0d0c0a;
  --sunrise:        #e6a15a;
  --sunrise-deep:   #c97e34;
  --muted:          #6e655c;
  --line:           #e4dccb;

  --f-serif:    'Newsreader', Georgia, serif;
  --f-display:  'Instrument Serif', Georgia, serif;
  --f-sans:     'Geist', 'DM Sans', system-ui, sans-serif;

  --max-prose:  740px;
  --max-wide:   1280px;
  --pad-x:      56px;
  --pad-x-mob:  24px;
}

/* ═══════════════════════════════════════════════════
   §2  GLOBAL BODY
═══════════════════════════════════════════════════ */
body {
  background: var(--ivory);
  color: var(--charcoal);
  font-family: var(--f-sans);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* ═══════════════════════════════════════════════════
   §3  SHARED UTILITIES
═══════════════════════════════════════════════════ */
.sec-label {
  font-size: 11px; font-weight: 500;
  text-transform: uppercase; letter-spacing: 2px;
  color: var(--sunrise-deep); margin-bottom: 14px;
  font-family: var(--f-sans); display: block;
}
.sec-label--light { color: var(--sunrise); }

.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ═══════════════════════════════════════════════════
   §4  BUTTONS
═══════════════════════════════════════════════════ */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--f-sans); font-weight: 600;
  border: none; cursor: pointer; text-decoration: none;
  transition: background .2s, color .2s, border-color .2s;
  line-height: 1; white-space: nowrap;
}
.btn-sm  { font-size: 13px; padding: 10px 18px; border-radius: 8px; }
.btn-lg  { font-size: 15px; padding: 16px 26px; border-radius: 10px; }

.btn-dark        { background: var(--charcoal-deep); color: var(--ivory); }
.btn-dark:hover  { background: #2a2520; color: var(--ivory); }
.btn-soft        { background: var(--ivory-deep); color: var(--charcoal-deep); }
.btn-soft:hover  { background: #e8ddd0; }
.btn-outline     { background: transparent; color: var(--charcoal-deep); border: 1px solid var(--charcoal-deep); }
.btn-outline:hover { background: var(--charcoal-deep); color: var(--ivory); }
.btn-ghost       { background: transparent; color: var(--sunrise-deep); font-weight: 500; padding: 0; gap: 5px; }
.btn-ghost:hover { color: var(--charcoal-deep); }

/* ═══════════════════════════════════════════════════
   §5  NAVIGATION
═══════════════════════════════════════════════════ */
.bh-nav {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px var(--pad-x);
  border-bottom: 1px solid var(--line);
  background: var(--ivory);
}
.bh-nav__brand {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none; flex-shrink: 0;
}
.bh-nav__name {
  font-family: var(--f-serif); font-weight: 400;
  font-size: 22px; letter-spacing: -.4px;
  color: var(--charcoal-deep); line-height: 1;
}
.bh-nav__name em { color: var(--sunrise-deep); font-style: italic; }

/* WordPress nav menu output */
.bh-nav__menu { display: flex; gap: 28px; list-style: none; }
.bh-nav__menu li a {
  font-size: 13px; font-weight: 500; color: var(--charcoal);
  text-decoration: none; transition: color .2s;
}
.bh-nav__menu li a:hover,
.bh-nav__menu .current-menu-item > a,
.bh-nav__menu .current_page_item > a { color: var(--sunrise-deep); }

/* Mobile hamburger */
.bh-nav__hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: transparent; border: none; cursor: pointer;
  padding: 6px;
}
.bh-nav__hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--charcoal-deep); border-radius: 1px;
  transition: all .3s;
}

.bh-nav__actions { display: flex; gap: 10px; align-items: center; }
.bh-nav__free { font-size: 12px; color: var(--muted); }

/* ── Dropdown sub-menus ─────────────────────────────────────── */
/* Parent item must be position:relative so the sub-menu anchors to it */
.bh-nav__menu > li { position: relative; }

/* The sub-menu itself */
.bh-nav__menu .sub-menu {
  position: absolute;
  top: 100%;                          /* flush with <li> bottom — no gap */
  left: 0;
  z-index: 200;
  min-width: 220px;
  list-style: none;
  display: flex;               /* column, hidden by default  */
  flex-direction: column;
  gap: 0;
  background: var(--ivory);
  border: 1px solid var(--line);
  border-top: 3px solid var(--sunrise-deep);   /* visual separator replaces gap */
  border-radius: 0 0 12px 12px;
  padding: 8px 0;
  box-shadow: 0 8px 32px rgba(13,12,10,.10);
  /* Hidden state — visibility delayed so element stays hoverable during fade-out */
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-4px);
  transition: opacity .18s ease, transform .18s ease, visibility 0s .18s;
}

/* Invisible bridge fills any sub-pixel rendering gap between <li> and sub-menu */
.bh-nav__menu > li.menu-item-has-children > .sub-menu::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 0; right: 0;
  height: 6px;
  background: transparent;
}

/* Visible state — triggered by hover OR keyboard focus-within */
.bh-nav__menu > li:hover > .sub-menu,
.bh-nav__menu > li:focus-within > .sub-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  transform: translateY(0);
  /* visibility instant on show */
  transition: opacity .18s ease, transform .18s ease, visibility 0s;
}

/* Sub-menu links */
.bh-nav__menu .sub-menu li a {
  display: block;
  padding: 10px 18px;
  font-size: 13px;
  font-weight: 500;
  color: var(--charcoal);
  white-space: nowrap;
  text-decoration: none;
  transition: background .15s, color .15s;
}
.bh-nav__menu .sub-menu li a:hover {
  background: var(--ivory-deep);
  color: var(--sunrise-deep);
}

/* Small chevron (▾) after parent links that have children */
.bh-nav__menu > li.menu-item-has-children > a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.bh-nav__menu > li.menu-item-has-children > a::after {
  content: '';
  display: inline-block;
  width: 5px;
  height: 5px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  opacity: .55;
  flex-shrink: 0;
}

/* Mobile nav drawer */
.bh-nav__drawer {
  display: none; position: fixed; inset: 0; top: 0; z-index: 49;
  background: var(--ivory); padding: 100px 24px 40px;
  flex-direction: column; gap: 32px; overflow-y: auto;
}
.bh-nav__drawer.is-open { display: flex; }

/* Drawer: top-level menu list */
.bh-nav__drawer .bh-nav__menu {
  display: flex; flex-direction: column; gap: 0;
  width: 100%; list-style: none; padding: 0; margin: 0;
}

/* Row wrapper: link + chevron sit side-by-side */
.bh-nav__drawer .bh-drawer-item-wrap {
  display: flex; align-items: center; justify-content: space-between;
  border-bottom: 1px solid var(--line);
}

/* Main menu links (top-level) */
.bh-nav__drawer .bh-nav__menu > li > a,
.bh-nav__drawer .bh-nav__menu > li > .bh-drawer-item-wrap > a {
  flex: 1;
  font-size: 22px; font-weight: 600; padding: 14px 0;
  display: block; color: var(--charcoal-deep); text-decoration: none;
}
.bh-nav__drawer .bh-nav__menu > li > a {
  border-bottom: 1px solid var(--line);
}
.bh-nav__drawer .bh-nav__menu > li > .bh-drawer-item-wrap > a {
  border-bottom: none; /* border is on the wrap */
}

/* Chevron toggle button */
.bh-drawer-toggle {
  width: 40px; height: 40px; flex-shrink: 0;
  background: var(--ivory-deep); border: none; border-radius: 8px;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--muted); cursor: pointer;
  transition: background .15s ease, transform .25s ease;
}
.bh-drawer-toggle.is-open {
  background: var(--sunrise-deep); color: var(--ivory);
  transform: rotate(180deg);
}

/* Sub-menus: hidden by default, shown as accordion */
.bh-nav__drawer .sub-menu {
  display: none;
  position: static; opacity: 1; visibility: visible; pointer-events: all;
  transform: none; box-shadow: none; border: none; border-radius: 0;
  padding: 4px 0 8px 20px; background: transparent;
  border-left: 2px solid var(--sunrise);
  flex-direction: column; gap: 0;
}
.bh-nav__drawer .sub-menu.is-open { display: flex; }

.bh-nav__drawer .sub-menu li a {
  font-size: 16px; font-weight: 500; padding: 11px 0;
  display: block; border-bottom: 1px solid var(--line);
  color: var(--muted); text-decoration: none;
}
.bh-nav__drawer .sub-menu li:last-child a { border-bottom: none; }
.bh-nav__drawer .sub-menu li a:hover { color: var(--sunrise-deep); }

/* ═══════════════════════════════════════════════════
   §6  FOOTER
═══════════════════════════════════════════════════ */
.bh-footer {
  padding: 40px var(--pad-x); border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px; color: var(--muted); flex-wrap: wrap; gap: 16px;
}
.bh-footer__links { display: flex; gap: 20px; list-style: none; }
.bh-footer__links a { color: var(--muted); text-decoration: none; transition: color .2s; }
.bh-footer__links a:hover { color: var(--charcoal-deep); }

/* WordPress footer menu output */
.bh-footer .bh-nav__menu {
  gap: 20px;
}
.bh-footer .bh-nav__menu li a {
  font-size: 12px; color: var(--muted);
}
.bh-footer .bh-nav__menu li a:hover { color: var(--charcoal-deep); }


/* ═══════════════════════════════════════════════════
   §7  HOMEPAGE — HERO
═══════════════════════════════════════════════════ */
.bh-hero { padding: 60px var(--pad-x) 48px; }

.bh-hero__pill {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 10px; background: var(--ivory-deep);
  border-radius: 999px; font-size: 12px; font-weight: 500;
  color: var(--sunrise-deep); letter-spacing: .5px; margin-bottom: 32px;
}
.bh-hero__pill-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--sunrise); flex-shrink: 0;
}
.bh-hero__headline {
  font-family: var(--f-serif);
  font-size: clamp(58px, 7.5vw, 108px);
  line-height: .98; letter-spacing: -3px;
  font-weight: 300; color: var(--charcoal-deep); margin-bottom: 40px;
}
.bh-hero__headline em { font-style: italic; font-weight: 400; color: var(--sunrise-deep); }

.bh-hero__body { display: grid; grid-template-columns: 1.4fr 1fr; gap: 60px; align-items: start; }
.bh-hero__desc { font-size: 20px; line-height: 1.55; color: var(--charcoal); max-width: 560px; }
.bh-hero__ctas { display: flex; gap: 14px; margin-top: 32px; flex-wrap: wrap; align-items: center; }

.bh-hero__card {
  background: var(--charcoal-deep); color: var(--ivory);
  border-radius: 16px; padding: 28px; display: flex; flex-direction: column; gap: 12px;
}
.bh-hero__card-tag { font-size: 11px; text-transform: uppercase; letter-spacing: 2px; color: var(--sunrise); }
.bh-hero__card-quote { font-family: var(--f-display); font-size: 28px; line-height: 1.2; font-style: italic; }
.bh-hero__stats {
  display: flex; gap: 18px; margin-top: auto;
  padding-top: 14px; border-top: 1px solid rgba(255,250,243,.12);
}
.bh-stat__value { font-family: var(--f-display); font-size: 24px; font-style: italic; color: var(--sunrise); line-height: 1; }
.bh-stat__label { font-size: 10px; text-transform: uppercase; letter-spacing: 1.5px; color: rgba(255,250,243,.6); margin-top: 4px; }

/* ═══════════════════════════════════════════════════
   §8  HOMEPAGE — PATHS
═══════════════════════════════════════════════════ */
.bh-paths { padding: 80px var(--pad-x) 60px; background: var(--ivory-deep); }
.bh-paths__header { display: grid; grid-template-columns: 1fr 2fr; gap: 60px; margin-bottom: 40px; align-items: end; }
.bh-paths__h2 { font-size: clamp(36px, 4vw, 56px); line-height: .98; letter-spacing: -1.6px; font-weight: 700; color: var(--charcoal-deep); }
.bh-paths__h2 em { font-family: var(--f-display); font-style: italic; font-weight: 400; color: var(--sunrise-deep); }
.bh-paths__desc { font-size: 16px; color: var(--muted); max-width: 440px; line-height: 1.55; }
.bh-paths__grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; }

.bh-path-card {
  background: var(--ivory); border: 1px solid var(--line); border-radius: 16px; padding: 24px;
  text-decoration: none; color: var(--charcoal); display: flex; flex-direction: column; min-height: 260px;
  transition: background .3s, color .3s, border-color .3s;
}
.bh-path-card:hover { background: var(--charcoal-deep); color: var(--ivory); border-color: var(--charcoal-deep); }
.bh-path-card__num { font-family: var(--f-display); font-size: 32px; font-style: italic; color: var(--sunrise-deep); }
.bh-path-card__title { font-size: 19px; font-weight: 600; line-height: 1.2; margin-top: auto; letter-spacing: -.3px; }
.bh-path-card__sub { font-size: 13px; opacity: .7; line-height: 1.5; margin-top: 8px; }
.bh-path-card__cta { font-size: 12px; margin-top: 20px; display: inline-flex; align-items: center; gap: 6px; color: var(--sunrise-deep); font-weight: 500; }

/* ═══════════════════════════════════════════════════
   §9  HOMEPAGE — CALCULATOR
═══════════════════════════════════════════════════ */
.bh-calc {
  padding: 100px var(--pad-x); background: var(--charcoal-deep);
  color: var(--ivory); position: relative; overflow: hidden;
}
.bh-calc__glow {
  position: absolute; top: -120px; right: -120px;
  width: 480px; height: 480px; border-radius: 50%;
  background: radial-gradient(circle, rgba(201,126,52,.33), transparent 70%);
  pointer-events: none;
}
.bh-calc__inner { position: relative; display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; align-items: center; }
.bh-calc__h2 { font-size: clamp(40px, 5vw, 72px); line-height: .96; letter-spacing: -2.5px; font-weight: 700; }
.bh-calc__h2 em { font-family: var(--f-display); font-style: italic; font-weight: 400; color: var(--sunrise); }
.bh-calc__desc { font-size: 17px; color: rgba(255,250,243,.75); margin-top: 24px; line-height: 1.6; max-width: 440px; }
.bh-calc__sliders { margin-top: 40px; display: grid; gap: 22px; }

.bh-slider { display: flex; flex-direction: column; gap: 8px; }
.bh-slider__top { display: flex; justify-content: space-between; align-items: baseline; }
.bh-slider__label { font-size: 12px; color: rgba(255,250,243,.7); text-transform: uppercase; letter-spacing: 1px; }
.bh-slider__value { font-size: 20px; font-weight: 600; }

input[type=range].bh-range {
  -webkit-appearance: none; appearance: none;
  width: 100%; height: 4px; background: rgba(255,250,243,.12); border-radius: 2px;
  outline: none; cursor: pointer;
}
input[type=range].bh-range::-webkit-slider-thumb {
  -webkit-appearance: none; width: 20px; height: 20px;
  border-radius: 50%; background: var(--sunrise); cursor: pointer;
  box-shadow: 0 0 0 3px rgba(230,161,90,.3);
}
input[type=range].bh-range::-moz-range-thumb {
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--sunrise); cursor: pointer; border: none;
}

.bh-calc__results { display: grid; gap: 18px; }
.bh-stack { border-radius: 14px; padding: 20px 24px; }
.bh-stack--stay   { background: rgba(255,250,243,.06); }
.bh-stack--switch { background: rgba(230,161,90,.12); }
.bh-stack__top { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 10px; }
.bh-stack__label { font-size: 12px; text-transform: uppercase; letter-spacing: 1.5px; color: rgba(255,250,243,.65); }
.bh-stack__value { font-size: 28px; font-weight: 600; }
.bh-stack__track { height: 4px; background: rgba(255,250,243,.08); border-radius: 2px; overflow: hidden; }
.bh-stack__bar   { height: 100%; border-radius: 2px; transition: width .3s; }

.bh-delta {
  background: var(--sunrise); color: var(--charcoal-deep); border-radius: 18px; padding: 32px 36px;
  display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-top: 8px; flex-wrap: wrap;
}
.bh-delta__label { font-size: 11px; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 6px; opacity: .8; }
.bh-delta__num   { font-size: clamp(36px, 4vw, 56px); font-weight: 700; letter-spacing: -2px; line-height: 1; }
.bh-delta__quote { font-family: var(--f-display); font-size: 18px; font-style: italic; max-width: 160px; line-height: 1.25; }

/* ═══════════════════════════════════════════════════
   §10 HOMEPAGE — ARTICLES
═══════════════════════════════════════════════════ */
.bh-articles { padding: 100px var(--pad-x); }
.bh-articles__head { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 40px; flex-wrap: wrap; gap: 20px; }
.bh-articles__h2 { font-size: clamp(36px, 4vw, 56px); line-height: .98; letter-spacing: -1.6px; font-weight: 700; color: var(--charcoal-deep); }
.bh-articles__h2 em { font-family: var(--f-display); font-style: italic; font-weight: 400; color: var(--sunrise-deep); }
.bh-all-link { font-size: 13px; font-weight: 600; color: var(--charcoal-deep); text-decoration: none; border-bottom: 1px solid var(--charcoal-deep); padding-bottom: 2px; white-space: nowrap; }
.bh-all-link:hover { color: var(--sunrise-deep); border-color: var(--sunrise-deep); }

.bh-articles__grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr; grid-template-rows: auto auto; gap: 20px; }

.bh-art { border-radius: 16px; padding: 28px; text-decoration: none; display: flex; flex-direction: column; justify-content: space-between; transition: transform .25s; }
.bh-art:hover { transform: translateY(-3px); }
.bh-art--feat { grid-row: span 2; background: var(--charcoal-deep); color: var(--ivory); min-height: 420px; }
.bh-art--reg  { background: var(--ivory); color: var(--charcoal); border: 1px solid var(--line); min-height: 200px; }
.bh-art__cat  { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 1.5px; }
.bh-art--feat .bh-art__cat { color: var(--sunrise); }
.bh-art--reg  .bh-art__cat { color: var(--sunrise-deep); }
.bh-art__img  {
  margin-top: 20px; border-radius: 10px; overflow: hidden;
  height: 160px; position: relative;
  background: repeating-linear-gradient(135deg, rgba(255,250,243,.05) 0 10px, rgba(255,250,243,.1) 10px 20px);
}
.bh-art__img img { width: 100%; height: 100%; object-fit: cover; }
.bh-art__img-ph  { position: absolute; bottom: 10px; left: 12px; font-family: ui-monospace, monospace; font-size: 10px; opacity: .4; text-transform: uppercase; letter-spacing: 1px; color: var(--ivory); }
.bh-art__title { font-weight: 700; letter-spacing: -.6px; line-height: 1.12; margin-top: 20px; }
.bh-art--feat .bh-art__title { font-size: 30px; }
.bh-art--reg  .bh-art__title { font-size: 18px; }

/* ═══════════════════════════════════════════════════
   §11 HOMEPAGE — PROMISE
═══════════════════════════════════════════════════ */
.bh-promise { padding: 120px var(--pad-x); background: var(--ivory-deep); text-align: center; }
.bh-promise__h2 {
  font-size: clamp(48px, 7vw, 86px); line-height: .98; letter-spacing: -2.8px;
  font-weight: 700; color: var(--charcoal-deep); max-width: 1100px; margin: 0 auto 48px;
}
.bh-promise__h2 em { font-family: var(--f-display); font-style: italic; font-weight: 400; color: var(--sunrise-deep); letter-spacing: -2px; }
.bh-promise__ctas { display: inline-flex; gap: 12px; flex-wrap: wrap; justify-content: center; }

/* ═══════════════════════════════════════════════════
   §12 HOMEPAGE — BREATHE
═══════════════════════════════════════════════════ */
.bh-breathe { padding: 120px var(--pad-x); background: var(--charcoal-deep); color: var(--ivory); text-align: center; }
.bh-breathe__h2 { font-family: var(--f-serif); font-size: clamp(28px, 3.5vw, 52px); font-weight: 300; max-width: 760px; margin: 0 auto; letter-spacing: -1px; line-height: 1.1; }
.bh-breathe__h2 em { font-style: italic; color: var(--sunrise); }
.bh-breathe__orb-wrap { margin-top: 56px; display: flex; flex-direction: column; align-items: center; gap: 24px; }
.bh-breathe__orb { position: relative; width: 220px; height: 220px; }
.bh-breathe__ring { position: absolute; inset: 0; border-radius: 50%; border: 1px solid rgba(255,250,243,.15); }
.bh-breathe__fill { position: absolute; inset: 0; border-radius: 50%; background: radial-gradient(circle, var(--sunrise) 0%, var(--sunrise-deep) 100%); opacity: .9; transform: scale(.55); }
.bh-breathe__label { font-family: var(--f-serif); font-size: 24px; font-style: italic; color: var(--sunrise); letter-spacing: .5px; }

/* ═══════════════════════════════════════════════════
   §13 HOMEPAGE — QUIZ MODAL
═══════════════════════════════════════════════════ */
.bh-quiz-overlay {
  position: fixed; inset: 0; background: rgba(13,12,10,.55);
  backdrop-filter: blur(6px); display: flex; align-items: center; justify-content: center;
  z-index: 200; padding: 40px; opacity: 0; pointer-events: none; transition: opacity .3s;
}
.bh-quiz-overlay.is-open { opacity: 1; pointer-events: all; }
.bh-quiz-panel { background: var(--ivory); border-radius: 20px; max-width: 640px; width: 100%; padding: 44px 48px; position: relative; max-height: 90vh; overflow-y: auto; }
.bh-quiz__x { position: absolute; top: 20px; right: 20px; background: transparent; border: none; font-size: 26px; cursor: pointer; color: var(--muted); line-height: 1; padding: 4px 8px; }
.bh-quiz__meta { font-size: 11px; color: var(--sunrise-deep); letter-spacing: 2px; text-transform: uppercase; font-weight: 600; margin-bottom: 16px; }
.bh-quiz__bar  { height: 3px; background: var(--ivory-deep); border-radius: 2px; margin-bottom: 28px; overflow: hidden; }
.bh-quiz__bar-fill { height: 100%; background: var(--sunrise-deep); border-radius: 2px; transition: width .3s; }
.bh-quiz__q  { font-size: 30px; line-height: 1.15; font-weight: 700; letter-spacing: -.8px; color: var(--charcoal-deep); margin-bottom: 28px; }
.bh-quiz__opts { display: grid; gap: 10px; }
.bh-quiz__opt { text-align: left; padding: 16px 20px; font-size: 15px; font-weight: 500; border-radius: 10px; background: var(--ivory-deep); border: 1px solid transparent; color: var(--charcoal); cursor: pointer; transition: all .2s; font-family: var(--f-sans); width: 100%; }
.bh-quiz__opt:hover { background: var(--charcoal-deep); color: var(--ivory); }
.bh-quiz__result-pre   { font-size: 13px; color: var(--muted); margin-bottom: 4px; }
.bh-quiz__result-label { font-family: var(--f-display); font-size: 52px; font-style: italic; font-weight: 400; color: var(--sunrise-deep); letter-spacing: -2px; line-height: 1; margin-bottom: 4px; }
.bh-quiz__result-desc  { font-size: 17px; color: var(--muted); margin-bottom: 20px; }
.bh-quiz__careers-ttl  { font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: 1.5px; font-weight: 600; margin-bottom: 10px; }
.bh-quiz__careers      { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 22px; }
.bh-quiz__career-tag   { font-size: 13px; padding: 8px 14px; background: var(--ivory-deep); border-radius: 8px; font-weight: 500; }
.bh-quiz__ai-angle     { padding: 18px 22px; background: var(--charcoal-deep); color: var(--ivory); border-radius: 12px; font-family: var(--f-display); font-size: 19px; font-style: italic; line-height: 1.35; margin-bottom: 24px; }
.bh-quiz__btns   { display: flex; gap: 10px; }
.bh-quiz__retake { font-size: 14px; padding: 12px 18px; border-radius: 8px; background: transparent; border: 1px solid var(--line); cursor: pointer; font-family: var(--f-sans); font-weight: 500; color: var(--charcoal); }
.bh-quiz__done   { font-size: 14px; padding: 12px 20px; border-radius: 8px; background: var(--charcoal-deep); color: var(--ivory); border: none; cursor: pointer; font-family: var(--f-sans); font-weight: 600; }

/* ═══════════════════════════════════════════════════
   §14 BLOG LISTING (home.php / archive.php)
═══════════════════════════════════════════════════ */
.bh-blog-hero {
  padding: 72px var(--pad-x) 56px; background: var(--ivory-deep);
  border-bottom: 1px solid var(--line);
}
.bh-blog-hero__h1 { font-size: clamp(42px, 5vw, 72px); line-height: .98; letter-spacing: -2px; font-weight: 700; color: var(--charcoal-deep); margin-bottom: 16px; }
.bh-blog-hero__h1 em { font-family: var(--f-display); font-style: italic; font-weight: 400; color: var(--sunrise-deep); }
.bh-blog-hero__sub { font-size: 18px; color: var(--muted); max-width: 540px; line-height: 1.55; }

.bh-blog-main { padding: 64px var(--pad-x) 80px; }
.bh-blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }

.bh-post-card { text-decoration: none; color: var(--charcoal); display: flex; flex-direction: column; border-radius: 16px; overflow: hidden; border: 1px solid var(--line); background: var(--ivory); transition: transform .25s, box-shadow .25s; }
.bh-post-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(13,12,10,.08); }
.bh-post-card__thumb { width: 100%; height: 200px; background: var(--ivory-deep); overflow: hidden; position: relative; }
.bh-post-card__thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.bh-post-card:hover .bh-post-card__thumb img { transform: scale(1.04); }
.bh-post-card__thumb-ph {
  width: 100%; height: 100%;
  background: repeating-linear-gradient(135deg, rgba(230,161,90,.06) 0 12px, rgba(230,161,90,.12) 12px 24px);
  display: flex; align-items: flex-end; padding: 12px;
}
.bh-post-card__thumb-ph span { font-family: ui-monospace, monospace; font-size: 10px; opacity: .45; text-transform: uppercase; letter-spacing: 1px; color: var(--charcoal); }
.bh-post-card__body { padding: 22px 24px 28px; display: flex; flex-direction: column; flex: 1; }
.bh-post-card__meta { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 1.5px; color: var(--sunrise-deep); margin-bottom: 10px; }
.bh-post-card__title { font-size: 20px; font-weight: 700; line-height: 1.2; letter-spacing: -.4px; color: var(--charcoal-deep); margin-bottom: 12px; }
.bh-post-card__excerpt { font-size: 14px; color: var(--muted); line-height: 1.6; flex: 1; }
.bh-post-card__more { font-size: 13px; font-weight: 600; color: var(--sunrise-deep); margin-top: 20px; display: inline-flex; align-items: center; gap: 5px; text-decoration: none; }
.bh-post-card__more:hover { color: var(--charcoal-deep); }

.bh-pagination { display: flex; justify-content: center; gap: 8px; margin-top: 64px; align-items: center; flex-wrap: wrap; }
.bh-pagination .page-numbers {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 8px; font-size: 14px; font-weight: 500;
  color: var(--charcoal); text-decoration: none; border: 1px solid var(--line);
  background: var(--ivory); transition: all .2s;
}
.bh-pagination .page-numbers:hover,
.bh-pagination .page-numbers.current { background: var(--charcoal-deep); color: var(--ivory); border-color: var(--charcoal-deep); }
.bh-pagination .prev, .bh-pagination .next { width: auto; padding: 0 16px; font-size: 13px; }

/* ═══════════════════════════════════════════════════
   §15 POST / PAGE CONTENT (single.php, page.php)
═══════════════════════════════════════════════════ */
.bh-article { padding: 0 var(--pad-x) 100px; }

.bh-article__crumb {
  padding: 20px 0; font-size: 12px; color: var(--muted);
  display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
  border-bottom: 1px solid var(--line); margin-bottom: 56px;
}
.bh-article__crumb a { color: var(--muted); text-decoration: none; transition: color .2s; }
.bh-article__crumb a:hover { color: var(--sunrise-deep); }
.bh-article__crumb-sep { opacity: .4; }

.bh-article__header { max-width: var(--max-prose); margin: 0 auto 48px; }
.bh-article__badges { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin-bottom: 20px; }
.bh-article__cat {
  font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 1.5px;
  color: var(--sunrise-deep); padding: 5px 10px;
  background: rgba(201,126,52,.1); border-radius: 4px;
}
.bh-article__read-time { font-size: 12px; color: var(--muted); }

.bh-article__title {
  font-family: var(--f-serif); font-size: clamp(36px, 4.5vw, 64px);
  line-height: 1.06; letter-spacing: -1.5px; font-weight: 300;
  color: var(--charcoal-deep); margin-bottom: 24px;
}
.bh-article__byline { font-size: 14px; color: var(--muted); display: flex; align-items: center; gap: 12px; }
.bh-article__byline-sep { width: 3px; height: 3px; border-radius: 50%; background: var(--line); display: inline-block; }

.bh-article__feat-img { max-width: var(--max-wide); margin: 0 auto 56px; border-radius: 12px; overflow: hidden; max-height: 500px; }
.bh-article__feat-img img { width: 100%; height: 100%; object-fit: cover; }

/* ── Prose / Content body ── */
.bh-content {
  max-width: var(--max-prose); margin: 0 auto;
  font-size: 18px; line-height: 1.72; color: var(--charcoal);
}
.bh-content > * + * { margin-top: 1.5em; }
.bh-content p { margin-top: 0; }
.bh-content p + p { margin-top: 1.4em; }

.bh-content h2 { font-family: var(--f-sans); font-size: 28px; font-weight: 700; letter-spacing: -.6px; line-height: 1.2; color: var(--charcoal-deep); margin-top: 2.2em; margin-bottom: .4em; }
.bh-content h3 { font-family: var(--f-sans); font-size: 22px; font-weight: 700; letter-spacing: -.3px; line-height: 1.3; color: var(--charcoal-deep); margin-top: 2em; margin-bottom: .4em; }
.bh-content h4 { font-family: var(--f-sans); font-size: 18px; font-weight: 700; color: var(--charcoal-deep); margin-top: 1.8em; margin-bottom: .3em; }

.bh-content a { color: var(--sunrise-deep); text-underline-offset: 3px; font-weight: 500; }
.bh-content a:hover { color: var(--charcoal-deep); }

.bh-content strong { font-weight: 600; color: var(--charcoal-deep); }
.bh-content em { font-style: italic; }

.bh-content ul, .bh-content ol { padding-left: 1.4em; }
.bh-content li { margin-bottom: .5em; }
.bh-content ul li { list-style: disc; }
.bh-content ol li { list-style: decimal; }

.bh-content blockquote {
  margin: 2em 0; padding: 24px 32px;
  border-left: 3px solid var(--sunrise-deep);
  background: var(--ivory-deep); border-radius: 0 12px 12px 0;
  font-family: var(--f-display); font-size: 22px; font-style: italic;
  color: var(--charcoal-deep); line-height: 1.4;
}
.bh-content blockquote cite { display: block; font-size: 13px; font-style: normal; font-family: var(--f-sans); color: var(--muted); margin-top: 10px; }

.bh-content pre {
  background: var(--charcoal-deep); color: var(--ivory); border-radius: 10px;
  padding: 20px 24px; overflow-x: auto; font-size: 14px; line-height: 1.6;
  font-family: ui-monospace, 'Cascadia Mono', monospace;
}
.bh-content code {
  background: var(--ivory-deep); color: var(--sunrise-deep);
  font-family: ui-monospace, 'Cascadia Mono', monospace;
  font-size: .88em; padding: 2px 6px; border-radius: 4px;
}
.bh-content pre code { background: transparent; color: inherit; padding: 0; }

.bh-content hr {
  border: none; border-top: 1px solid var(--line); margin: 2.5em 0;
}
.bh-content table { width: 100%; border-collapse: collapse; font-size: 16px; }
.bh-content th, .bh-content td { text-align: left; padding: 10px 14px; border-bottom: 1px solid var(--line); }
.bh-content th { font-weight: 600; color: var(--charcoal-deep); }

/* WordPress image blocks */
.bh-content figure { margin: 2em 0; }
.bh-content figure img { border-radius: 10px; }
.bh-content figcaption { font-size: 13px; color: var(--muted); margin-top: 8px; text-align: center; }
.bh-content .alignleft  { float: left; margin: 0 2em 1em 0; max-width: 50%; }
.bh-content .alignright { float: right; margin: 0 0 1em 2em; max-width: 50%; }
.bh-content .aligncenter { margin: 2em auto; display: block; }
.bh-content .alignfull  { max-width: 100%; border-radius: 10px; }
.bh-content .wp-block-image img { border-radius: 10px; }

/* Post navigation (prev / next) */
.bh-post-nav {
  max-width: var(--max-prose); margin: 64px auto 0;
  padding-top: 40px; border-top: 1px solid var(--line);
  display: flex; gap: 20px; justify-content: space-between; flex-wrap: wrap;
}
.bh-post-nav__item { flex: 1; min-width: 160px; text-decoration: none; }
.bh-post-nav__dir  { font-size: 11px; text-transform: uppercase; letter-spacing: 1.5px; color: var(--muted); margin-bottom: 6px; font-weight: 600; }
.bh-post-nav__title { font-size: 16px; font-weight: 600; color: var(--charcoal-deep); line-height: 1.3; transition: color .2s; }
.bh-post-nav__item:hover .bh-post-nav__title { color: var(--sunrise-deep); }
.bh-post-nav__item--next { text-align: right; }

/* Related posts */
.bh-related { padding: 80px var(--pad-x) 0; }
.bh-related__h2 { font-size: clamp(28px, 3vw, 40px); font-weight: 700; letter-spacing: -1px; color: var(--charcoal-deep); margin-bottom: 32px; }
.bh-related__h2 em { font-family: var(--f-display); font-style: italic; font-weight: 400; color: var(--sunrise-deep); }
.bh-related__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }

/* ═══════════════════════════════════════════════════
   §16 ABOUT PAGE
═══════════════════════════════════════════════════ */
.bh-about-hero {
  padding: 80px var(--pad-x) 72px; background: var(--ivory-deep);
  border-bottom: 1px solid var(--line);
}
.bh-about-hero__tag { display: inline-block; font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 2px; color: var(--sunrise-deep); margin-bottom: 16px; }
.bh-about-hero__h1 {
  font-family: var(--f-serif); font-size: clamp(44px, 5.5vw, 80px);
  line-height: 1; letter-spacing: -2.5px; font-weight: 300; color: var(--charcoal-deep); max-width: 900px;
}
.bh-about-hero__h1 em { font-style: italic; color: var(--sunrise-deep); font-weight: 400; }

.bh-about-content { padding: 72px var(--pad-x) 100px; }

.bh-about-grid { display: grid; grid-template-columns: 1fr 2fr; gap: 80px; max-width: var(--max-wide); }
.bh-about-sidebar h3 { font-family: var(--f-sans); font-size: 14px; font-weight: 600; text-transform: uppercase; letter-spacing: 1.5px; color: var(--sunrise-deep); margin-bottom: 16px; }
.bh-about-sidebar ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.bh-about-sidebar li { font-size: 14px; color: var(--muted); display: flex; align-items: flex-start; gap: 8px; }
.bh-about-sidebar li::before { content: "→"; color: var(--sunrise-deep); flex-shrink: 0; }
.bh-about-main .bh-content { max-width: none; }

/* ═══════════════════════════════════════════════════
   §17 ARCHIVE PAGE
═══════════════════════════════════════════════════ */
.bh-archive-hero { padding: 64px var(--pad-x) 48px; }
.bh-archive-hero__kicker { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 2px; color: var(--sunrise-deep); margin-bottom: 8px; }
.bh-archive-hero__h1 { font-size: clamp(36px, 4vw, 56px); font-weight: 700; letter-spacing: -1.5px; color: var(--charcoal-deep); line-height: 1; }
.bh-archive-hero__desc { font-size: 16px; color: var(--muted); max-width: 480px; line-height: 1.55; margin-top: 12px; }

/* ═══════════════════════════════════════════════════
   §18 404 PAGE
═══════════════════════════════════════════════════ */
.bh-404 { min-height: 70vh; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 80px var(--pad-x); }
.bh-404__num { font-family: var(--f-display); font-size: 120px; font-style: italic; color: var(--sunrise-deep); line-height: 1; opacity: .3; }
.bh-404__h1  { font-size: clamp(28px, 3vw, 48px); font-weight: 700; letter-spacing: -1px; color: var(--charcoal-deep); margin-bottom: 16px; }
.bh-404__sub { font-size: 18px; color: var(--muted); max-width: 440px; line-height: 1.55; margin-bottom: 36px; }

/* ═══════════════════════════════════════════════════
   §20 FULL-WIDTH PAGE TEMPLATE
═══════════════════════════════════════════════════ */
.bh-fw-page {}

/* Optional full-bleed banner image */
.bh-fw-banner {
  width: 100%; height: clamp(220px, 34vw, 460px);
  object-fit: cover; display: block;
}

/* Hero strip — title + breadcrumb */
.bh-fw-hero {
  padding: 64px var(--pad-x) 56px;
  background: linear-gradient(180deg, var(--ivory-deep) 0%, var(--ivory) 100%);
  border-bottom: 1px solid var(--line);
}
.bh-fw-hero__inner { max-width: 860px; }
.bh-fw-hero__eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 600; letter-spacing: .14em;
  text-transform: uppercase; color: var(--sunrise-deep);
  margin-bottom: 18px; text-decoration: none;
}
.bh-fw-hero__eyebrow::before {
  content: ''; display: block; width: 8px; height: 8px;
  border-radius: 50%; background: var(--sunrise);
}
.bh-fw-hero__eyebrow:hover { color: var(--charcoal-deep); }
.bh-fw-hero__title {
  font-family: var(--f-serif);
  font-size: clamp(38px, 5.5vw, 72px);
  line-height: 1.04; letter-spacing: -1.5px; font-weight: 400;
  color: var(--charcoal-deep); margin: 0;
}

/* Main content area — full width, generous padding */
.bh-fw-content {
  max-width: 860px;
  padding: 56px var(--pad-x) 100px;
}

/* ═══════════════════════════════════════════════════
   §21 SECTION HUB TEMPLATE
═══════════════════════════════════════════════════ */

/* ── Hero banner ────────────────────────────────── */
.bh-hub-hero {
  background: linear-gradient(135deg, var(--charcoal-deep) 0%, #221e19 100%);
  padding: 72px var(--pad-x) 64px;
  color: var(--ivory);
  position: relative; overflow: hidden;
}
.bh-hub-hero::before {
  content: ''; position: absolute; right: -80px; top: -80px;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(201,126,52,.22) 0%, transparent 68%);
  pointer-events: none;
}
.bh-hub-hero::after {
  content: ''; position: absolute; left: 10%; bottom: -40px;
  width: 240px; height: 240px; border-radius: 50%;
  background: radial-gradient(circle, rgba(230,161,90,.10) 0%, transparent 70%);
  pointer-events: none;
}
.bh-hub-hero__inner { position: relative; max-width: var(--max-wide); }
.bh-hub-hero__eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 600; letter-spacing: .14em;
  text-transform: uppercase; color: var(--sunrise); margin-bottom: 18px;
}
.bh-hub-hero__eyebrow::before {
  content: ''; display: block; width: 8px; height: 8px;
  border-radius: 50%; background: var(--sunrise);
}
.bh-hub-hero__title {
  font-family: var(--f-serif);
  font-size: clamp(40px, 5.5vw, 72px);
  line-height: 1.04; letter-spacing: -1.5px; font-weight: 400;
  color: var(--ivory); margin: 0 0 22px;
}
.bh-hub-hero__desc {
  font-size: 18px; line-height: 1.68;
  color: rgba(255,250,243,.7); max-width: 58ch; margin: 0 0 28px;
}
.bh-hub-hero__meta {
  font-size: 13px; color: rgba(255,250,243,.45);
  display: flex; align-items: center; gap: 6px;
}
.bh-hub-hero__meta strong { color: var(--sunrise); font-weight: 600; }

/* ── Optional Elementor/editor intro block ─────── */
.bh-hub-intro {
  padding: 52px var(--pad-x) 0;
  max-width: calc(860px + var(--pad-x) * 2);
}

/* ── Grid section wrapper ───────────────────────── */
.bh-hub-section {
  padding: 52px var(--pad-x) 100px;
}
.bh-hub-section__head {
  display: flex; align-items: baseline; justify-content: space-between;
  margin-bottom: 32px; padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}
.bh-hub-section__head h2 {
  font-family: var(--f-serif); font-size: 26px; font-weight: 400;
  letter-spacing: -.5px; color: var(--charcoal-deep); margin: 0;
}
.bh-hub-section__count {
  font-size: 13px; color: var(--muted); white-space: nowrap;
}

/* ── Card grid ──────────────────────────────────── */
.bh-hub-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* ── Individual card ────────────────────────────── */
.bh-hub-card {
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: 12px; overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.bh-hub-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(13,12,10,.10);
  border-color: var(--sunrise);
}

/* Thumbnail */
.bh-hub-card__thumb {
  display: block; aspect-ratio: 16/9; overflow: hidden;
  background: var(--ivory-deep);
}
.bh-hub-card__thumb img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .32s ease;
}
.bh-hub-card:hover .bh-hub-card__thumb img { transform: scale(1.04); }
.bh-hub-card__thumb-ph {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--ivory-deep) 0%, #e8ddd0 100%);
  color: var(--muted);
}

/* Body */
.bh-hub-card__body {
  padding: 22px 22px 18px;
  display: flex; flex-direction: column; flex: 1; gap: 0;
}
.bh-hub-card__meta {
  font-size: 11px; font-weight: 600; letter-spacing: .1em;
  text-transform: uppercase; color: var(--sunrise-deep);
  margin-bottom: 10px;
  display: flex; align-items: center; gap: 6px;
}
.bh-hub-card__meta-sep { color: var(--line); }
.bh-hub-card__title {
  font-family: var(--f-serif); font-size: 19px; line-height: 1.32;
  font-weight: 400; letter-spacing: -.2px;
  color: var(--charcoal-deep); margin: 0 0 10px;
}
.bh-hub-card__title a { text-decoration: none; color: inherit; }
.bh-hub-card__title a:hover { color: var(--sunrise-deep); }
.bh-hub-card__excerpt {
  font-size: 14px; line-height: 1.62; color: var(--muted);
  margin: 0 0 18px; flex: 1;
  display: -webkit-box; -webkit-line-clamp: 3;
  -webkit-box-orient: vertical; overflow: hidden;
}

/* Footer row */
.bh-hub-card__foot {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 14px; border-top: 1px solid var(--line);
  margin-top: auto;
}
.bh-hub-card__read {
  font-size: 13px; font-weight: 600; color: var(--sunrise-deep);
  text-decoration: none; display: inline-flex; align-items: center; gap: 4px;
  transition: gap .15s, color .15s;
}
.bh-hub-card__read::after { content: '→'; }
.bh-hub-card__read:hover { color: var(--charcoal-deep); gap: 7px; }

/* Save / like button */
.bh-hub-card__save {
  display: inline-flex; align-items: center; gap: 5px;
  background: transparent; border: none; cursor: pointer;
  font-size: 12px; font-weight: 500; color: var(--muted);
  padding: 4px 0; transition: color .18s;
  font-family: inherit;
}
.bh-hub-card__save:hover { color: #c45c6a; }
.bh-hub-card__save.is-saved { color: #c45c6a; }
.bh-hub-card__save-icon { flex-shrink: 0; transition: transform .22s cubic-bezier(.18,.89,.32,1.28); }
.bh-hub-card__save.is-saved .bh-hub-card__save-icon { transform: scale(1.25); }

/* Empty state */
.bh-hub-empty {
  text-align: center; padding: 80px 24px;
  color: var(--muted);
}
.bh-hub-empty h3 {
  font-family: var(--f-serif); font-size: 30px; font-weight: 400;
  letter-spacing: -.5px; color: var(--charcoal-deep);
  margin-bottom: 14px;
}
.bh-hub-empty p {
  max-width: 40ch; margin: 0 auto; font-size: 16px; line-height: 1.65;
}

/* ═══════════════════════════════════════════════════
   §19 RESPONSIVE BREAKPOINTS
═══════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .bh-articles__grid { grid-template-columns: 1fr 1fr; }
  .bh-art--feat { grid-row: span 1; min-height: 280px; }
  .bh-about-grid { grid-template-columns: 1fr; gap: 48px; }
  .bh-hub-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  :root { --pad-x: var(--pad-x-mob); }

  .bh-nav { padding: 16px 24px; }
  .bh-nav > .bh-nav__menu { display: none; } /* hide desktop nav; drawer has its own copy */
  .bh-nav__free { display: none; }
  /* Hide the quiz CTA button — it lives in the drawer on mobile */
  .bh-nav__actions .btn { display: none; }
  .bh-nav__hamburger { display: flex; }

  .bh-hero__body { grid-template-columns: 1fr; gap: 32px; }
  .bh-hero { padding: 40px 24px 32px; }

  .bh-paths__header { grid-template-columns: 1fr; gap: 20px; }
  .bh-paths__grid   { grid-template-columns: 1fr 1fr; }

  .bh-calc__inner { grid-template-columns: 1fr; gap: 48px; }

  .bh-articles__grid { grid-template-columns: 1fr; }

  .bh-blog-grid { grid-template-columns: 1fr 1fr; }

  .bh-related__grid { grid-template-columns: 1fr 1fr; }

  .bh-article { padding: 0 24px 80px; }

  .bh-footer { flex-direction: column; align-items: flex-start; padding: 32px 24px; }
}

@media (max-width: 600px) {
  .bh-paths__grid  { grid-template-columns: 1fr; }
  .bh-blog-grid    { grid-template-columns: 1fr; }
  .bh-related__grid{ grid-template-columns: 1fr; }
  .bh-hub-grid     { grid-template-columns: 1fr; }
  .bh-hero__headline { font-size: 52px; letter-spacing: -2px; }
  .bh-quiz-panel   { padding: 32px 24px; }
  .bh-quiz__q      { font-size: 24px; }
  .bh-promise__h2  { letter-spacing: -1.5px; }
  .bh-content      { font-size: 17px; }
  .bh-article__title { font-size: 34px; }
  .bh-hub-hero     { padding: 48px 20px 44px; }
  .bh-fw-hero      { padding: 44px 20px 40px; }
  .bh-hub-section  { padding: 36px 20px 72px; }
}
