/* proto/blog-home-style.css — Karibu blog landing page.
   Replicates the Globe Trekker layout structure with Karibu content + brand.
   Used by:  blog-home-desktop.html  and  blog-home-mobile.html
   Brand site-header lives in /styles.css and is loaded BEFORE this file. */

:root, [data-theme="light"] {
  --bh-bg:        #faf6ee;       /* warm cream page background */
  --bh-card:      #ffffff;
  --bh-ink:       #1a1a17;
  --bh-ink-soft:  #5e5852;
  --bh-ink-mute:  #8a857c;
  --bh-rule:      rgba(26, 26, 23, 0.10);
  --bh-rule-2:    rgba(26, 26, 23, 0.18);
  --bh-accent:    #c49a6c;        /* warm gold, primary CTA */
  --bh-accent-deep:#8a6a36;
  --bh-dark:      #0f3d2e;        /* deep emerald */

  --bh-serif:     "Cormorant Garamond", "Hoefler Text", Garamond, serif;
  --bh-sans:      Helvetica, Arial, sans-serif;
}

/* Dark mode, toggled via <html data-theme="dark"> in the header utility cluster.
   The Karibu site-header + .bh-foot stay dark always (their own backgrounds);
   what flips is the body surface and the white card affordances on landing,
   seasons, and the bh-cta-band. Accent gold stays the same hue (it reads well
   on both surfaces). */
[data-theme="dark"] {
  --bh-bg:        #1a1a17;        /* matches bh-foot exactly so they read as one surface */
  --bh-card:      #22221e;        /* one shade up for card affordance on dark */
  --bh-ink:       #f4f0e8;        /* warm ivory body text */
  --bh-ink-soft:  #c7c0b1;
  --bh-ink-mute:  #8a8478;
  --bh-rule:      rgba(244, 240, 232, 0.10);
  --bh-rule-2:    rgba(244, 240, 232, 0.18);
  --bh-dark:      #0d0d0c;        /* near pitch for sections that need a deeper register */
}
html, body { transition: background 280ms cubic-bezier(0.23, 1, 0.32, 1), color 280ms cubic-bezier(0.23, 1, 0.32, 1); }

/* Theme toggle, segmented control inside the header-utility cluster.
   Header background is always dark, so the toggle uses the dark token set. */
.header-utility { display: inline-flex; align-items: center; gap: 14px; justify-self: end; }
.header-utility .header-contact { padding-left: 14px; border-left: 1px solid rgba(255,255,255,0.14); }

.theme-toggle {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 3px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 999px;
  background: transparent;
}
.theme-toggle button {
  appearance: none;
  background: transparent;
  border: 0;
  color: rgba(255,255,255,0.72);
  font-family: "Geist Mono", ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  padding: 6px 14px;
  border-radius: 999px;
  cursor: pointer;
  line-height: 1;
  transition: background 180ms cubic-bezier(0.23, 1, 0.32, 1),
              color 180ms cubic-bezier(0.23, 1, 0.32, 1),
              transform 160ms cubic-bezier(0.23, 1, 0.32, 1);
}
.theme-toggle button:hover  { color: #fff; }
.theme-toggle button:active { transform: scale(0.96); }
.theme-toggle button[aria-pressed="true"] {
  background: var(--bh-accent);
  color: #1a1a17;
}
.theme-toggle button[aria-pressed="true"]:hover { color: #1a1a17; }

/* Language picker — tracked mono trigger + dropdown anchored to the right edge. */
.lang-picker { position: relative; }
.lang-trigger {
  appearance: none;
  background: transparent;
  border: 0;
  color: rgba(255,255,255,0.75);
  font-family: "Geist Mono", ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  padding: 6px 10px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  line-height: 1;
  transition: color 180ms cubic-bezier(0.23, 1, 0.32, 1),
              background 180ms cubic-bezier(0.23, 1, 0.32, 1);
}
.lang-trigger:hover { color: #fff; background: rgba(255,255,255,0.06); }
.lang-trigger svg { width: 10px; height: 10px; transition: transform 180ms cubic-bezier(0.23, 1, 0.32, 1); }
.lang-picker[data-open="true"] .lang-trigger svg { transform: rotate(180deg); }

.lang-panel {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  background: #22221e;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  padding: 4px;
  min-width: 180px;
  max-height: min(60vh, 440px);
  overflow-y: auto;
  box-shadow: 0 16px 40px -10px rgba(0,0,0,0.6);
  opacity: 0;
  transform: translateY(-4px) scale(0.98);
  transform-origin: top right;
  pointer-events: none;
  transition: opacity 180ms cubic-bezier(0.23, 1, 0.32, 1),
              transform 180ms cubic-bezier(0.23, 1, 0.32, 1);
  z-index: 100;
  scrollbar-width: thin;
  scrollbar-color: rgba(255,255,255,0.2) transparent;
}
.lang-picker[data-open="true"] .lang-panel {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.lang-panel button {
  appearance: none;
  background: transparent;
  border: 0;
  width: 100%;
  text-align: left;
  color: rgba(255,255,255,0.85);
  font-family: Helvetica, Arial, sans-serif;
  font-size: 13px;
  font-weight: 400;
  padding: 9px 12px;
  border-radius: 6px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  transition: background 160ms cubic-bezier(0.23, 1, 0.32, 1),
              color 160ms cubic-bezier(0.23, 1, 0.32, 1);
}
.lang-panel button:hover { background: rgba(255,255,255,0.06); color: #fff; }
.lang-panel button[aria-current="true"] { color: #c49a6c; }
.lang-panel button[aria-current="true"]::after { content: "✓"; opacity: 0.7; }

/* Lift the site-header above the hero stacking context so the dropdown isn't clipped. */
#site-header { position: relative; z-index: 50; }

@media (max-width: 800px) {
  .header-utility { gap: 8px; }
  .header-utility .theme-toggle button { padding: 5px 10px; font-size: 10px; }
  .header-utility .lang-trigger        { padding: 5px 8px;  font-size: 10px; }
  .header-utility .header-contact { display: none; }    /* Karibu header hides Contact on mobile anyway */
}

* { box-sizing: border-box; }
html, body {
  margin: 0; padding: 0;
  background: var(--bh-bg);
  color: var(--bh-ink);
  font-family: var(--bh-sans);
  font-size: 16px;
  line-height: 1.6;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { display: block; max-width: 100%; height: auto; }
a   { color: inherit; }

/* ---- shared atoms ---- */
.bh-eyebrow {
  font-size: 11px; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--bh-accent-deep); font-weight: 400;
}

.bh-btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 26px;
  background: var(--bh-accent); color: #fff;
  text-decoration: none;
  font-size: 12px; font-weight: 400; letter-spacing: 0.22em; text-transform: uppercase;
  border: 0; border-radius: 999px; cursor: pointer;
  transition: background-color .2s ease, transform .2s ease;
}
.bh-btn:hover { background: var(--bh-accent-deep); }

.bh-btn-ghost {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 13px 26px;
  background: transparent; color: var(--bh-ink);
  text-decoration: none;
  font-size: 12px; font-weight: 400; letter-spacing: 0.22em; text-transform: uppercase;
  border: 1px solid var(--bh-rule-2); border-radius: 999px;
  transition: background-color .2s ease, border-color .2s ease, color .2s ease;
}
.bh-btn-ghost:hover { border-color: var(--bh-ink); background: var(--bh-ink); color: #fff; }

.bh-btn::after, .bh-btn-ghost::after { content: "→"; transition: transform .2s ease; }
.bh-btn:hover::after, .bh-btn-ghost:hover::after { transform: translateX(4px); }

/* ============================================================
   DESKTOP (≥ 1024px)
   ============================================================ */
@media (min-width: 1024px) {

  .bh-wrap { max-width: 1280px; margin: 0 auto; padding: 0 32px; }

  /* HERO — split: text left, image collage right */
  .bh-hero {
    padding: 80px 0 96px;
    position: relative;
    overflow: hidden;
  }
  .bh-hero-inner {
    max-width: 1280px; margin: 0 auto; padding: 0 32px;
    display: grid; grid-template-columns: 1.05fr 1fr; gap: 64px; align-items: center;
  }
  .bh-hero-text h1 {
    font-family: var(--bh-serif);
    font-weight: 500;
    font-size: clamp(48px, 5.6vw, 76px);
    line-height: 1.04;
    letter-spacing: -0.012em;
    margin: 0 0 24px;
  }
  .bh-hero-text h1 .accent {
    color: var(--bh-accent-deep);
    background-image: linear-gradient(to right, var(--bh-accent), var(--bh-accent));
    background-size: 100% 6px;
    background-position: 0 92%;
    background-repeat: no-repeat;
    padding: 0 4px;
  }
  .bh-hero-text p.lead {
    font-size: 17px; line-height: 1.7; color: var(--bh-ink-soft);
    max-width: 46ch; margin: 0 0 32px;
  }

  /* Hero collage — 3 images, asymmetric stack */
  .bh-hero-collage {
    position: relative;
    height: 540px;
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    grid-template-rows: 1.3fr 1fr;
    gap: 14px;
  }
  .bh-hero-collage figure { margin: 0; overflow: hidden; border-radius: 18px; }
  .bh-hero-collage img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s cubic-bezier(.2,.7,.2,1); }
  .bh-hero-collage figure:hover img { transform: scale(1.04); }
  .bh-hero-collage .big   { grid-column: 1; grid-row: 1 / 3; }
  .bh-hero-collage .top   { grid-column: 2; grid-row: 1; }
  .bh-hero-collage .bot   { grid-column: 2; grid-row: 2; }

  /* SECTION HEADER ROW (title + tabs + optional cta) */
  .bh-section { padding: 72px 0; }
  .bh-section + .bh-section { padding-top: 0; }
  .bh-section-head {
    max-width: 1280px; margin: 0 auto 36px; padding: 0 32px;
    display: flex; align-items: end; justify-content: space-between; gap: 32px; flex-wrap: wrap;
  }
  .bh-section-head h2 {
    font-family: var(--bh-serif); font-weight: 500;
    font-size: clamp(34px, 3.4vw, 44px); line-height: 1.1; margin: 0;
    letter-spacing: -0.005em;
  }
  .bh-tabs { display: flex; gap: 6px; flex-wrap: wrap; }
  .bh-tabs button {
    background: none; border: 1px solid transparent;
    color: var(--bh-ink-soft);
    font: inherit; font-size: 13px; letter-spacing: 0.04em;
    padding: 8px 14px; border-radius: 999px; cursor: pointer;
    transition: color .2s, background-color .2s, border-color .2s;
  }
  .bh-tabs button:hover { color: var(--bh-ink); }
  .bh-tabs button.is-active {
    color: var(--bh-ink); background: #fff; border-color: var(--bh-rule-2);
  }

  /* Camps grid — 4 cards in a row */
  .bh-camps {
    max-width: 1280px; margin: 0 auto; padding: 0 32px;
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
  }
  .bh-card {
    display: block; text-decoration: none; color: inherit;
    overflow: hidden;
    transition: transform .2s ease;
  }
  .bh-card:hover { transform: translateY(-3px); }
  .bh-card .img {
    aspect-ratio: 4 / 5; overflow: hidden; border-radius: 16px; margin-bottom: 12px;
  }
  .bh-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s cubic-bezier(.2,.7,.2,1); }
  .bh-card:hover img { transform: scale(1.04); }
  .bh-card .name {
    font-family: var(--bh-sans); font-weight: 400; font-size: 14px;
    color: var(--bh-ink); margin: 0 0 2px;
  }
  .bh-card .meta {
    font-size: 12px; color: var(--bh-ink-mute);
  }

  .bh-section-foot {
    max-width: 1280px; margin: 36px auto 0; padding: 0 32px;
    display: flex; justify-content: center;
  }

  /* LATEST STORIES — featured + list split */
  .bh-stories {
    max-width: 1280px; margin: 0 auto; padding: 0 32px;
    display: grid; grid-template-columns: 1.25fr 1fr; gap: 48px;
  }
  .bh-feature {
    display: block; text-decoration: none; color: inherit;
  }
  .bh-feature .img {
    aspect-ratio: 4 / 3; overflow: hidden; border-radius: 18px; margin-bottom: 22px;
  }
  .bh-feature img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s cubic-bezier(.2,.7,.2,1); }
  .bh-feature:hover img { transform: scale(1.03); }
  .bh-feature .tag {
    display: inline-block; font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase;
    color: var(--bh-accent-deep); margin: 0 0 10px;
  }
  .bh-feature h3 {
    font-family: var(--bh-serif); font-weight: 500;
    font-size: 30px; line-height: 1.15; margin: 0 0 12px;
    letter-spacing: -0.005em;
  }
  .bh-feature .meta {
    font-size: 13px; color: var(--bh-ink-mute);
  }

  .bh-story-list { display: flex; flex-direction: column; gap: 28px; }
  .bh-story-list a {
    display: grid; grid-template-columns: 130px 1fr; gap: 18px;
    text-decoration: none; color: inherit;
    align-items: start;
  }
  .bh-story-list .thumb {
    aspect-ratio: 1; overflow: hidden; border-radius: 12px;
  }
  .bh-story-list .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s cubic-bezier(.2,.7,.2,1); }
  .bh-story-list a:hover .thumb img { transform: scale(1.05); }
  .bh-story-list .tag {
    font-size: 10px; letter-spacing: 0.28em; text-transform: uppercase;
    color: var(--bh-accent-deep); display: block; margin: 4px 0 8px;
  }
  .bh-story-list h4 {
    font-family: var(--bh-serif); font-weight: 500; font-size: 19px; line-height: 1.25;
    margin: 0 0 8px;
  }
  .bh-story-list .meta { font-size: 12px; color: var(--bh-ink-mute); }

  /* HIGHLIGHTS — profile card + media cards */
  .bh-highlights {
    max-width: 1280px; margin: 0 auto; padding: 0 32px;
    display: grid; grid-template-columns: 1fr 1.4fr; gap: 32px;
    align-items: stretch;
  }
  .bh-profile {
    background: #fff; border: 1px solid var(--bh-rule); border-radius: 18px;
    padding: 32px;
  }
  .bh-profile-head { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
  .bh-profile-head .avatar {
    width: 52px; height: 52px; border-radius: 50%;
    background: var(--bh-rule-2);
    overflow: hidden;
    flex-shrink: 0;
  }
  .bh-profile-head .avatar img { width: 100%; height: 100%; object-fit: cover; }
  .bh-profile-head .who { font-size: 14px; font-weight: 400; }
  .bh-profile-head .role { font-size: 12px; color: var(--bh-ink-mute); }
  .bh-stars { color: var(--bh-accent); font-size: 14px; letter-spacing: 0.1em; margin-bottom: 18px; }
  .bh-profile h3 {
    font-family: var(--bh-serif); font-weight: 500; font-size: 24px; line-height: 1.2;
    margin: 0 0 14px;
  }
  .bh-profile p { font-size: 14px; color: var(--bh-ink-soft); line-height: 1.65; margin: 0; }

  .bh-highlight-media {
    display: grid; grid-template-columns: 1.1fr 1fr; gap: 18px;
  }
  .bh-highlight-media figure {
    margin: 0; aspect-ratio: 4 / 5; overflow: hidden; border-radius: 18px; position: relative;
  }
  .bh-highlight-media img {
    width: 100%; height: 100%; object-fit: cover; transition: transform .6s cubic-bezier(.2,.7,.2,1);
  }
  .bh-highlight-media figure:hover img { transform: scale(1.04); }
  .bh-highlight-media .play {
    position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
    width: 64px; height: 64px; border-radius: 50%;
    background: rgba(255,255,255,0.92);
    display: flex; align-items: center; justify-content: center;
    color: var(--bh-ink); font-size: 20px;
  }

  /* NEWSLETTER CTA — bg image with overlay */
  .bh-newsletter {
    margin-top: 96px;
    background-image: linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.55)),
                      var(--bh-news-image);
    background-size: cover; background-position: center;
    color: #fff;
    padding: 120px 32px;
    text-align: center;
  }
  .bh-newsletter h2 {
    font-family: var(--bh-serif); font-weight: 500;
    font-size: clamp(34px, 4vw, 52px); line-height: 1.12;
    margin: 0 auto 32px; max-width: 24ch;
  }
  .bh-newsletter form {
    max-width: 520px; margin: 0 auto;
    display: flex; gap: 8px;
    background: #fff; border-radius: 999px; padding: 6px;
  }
  .bh-newsletter input {
    flex: 1; border: 0; padding: 14px 22px;
    font: inherit; font-size: 14px;
    background: transparent; color: var(--bh-ink);
    outline: none;
  }
  .bh-newsletter button {
    border: 0; border-radius: 999px;
    background: var(--bh-accent); color: #fff;
    padding: 14px 24px; font: inherit; font-size: 12px; letter-spacing: 0.2em;
    text-transform: uppercase; cursor: pointer;
    transition: background-color .2s;
  }
  .bh-newsletter button:hover { background: var(--bh-accent-deep); }
  .bh-newsletter p.sub {
    font-size: 12px; color: rgba(255,255,255,0.7); margin: 16px 0 0;
  }

  /* CTA BAND — emerald strip just above the footer.
     Hosts the prominent "Visit karibucamps.com" + "View Packages" + "Book Now" links. */
  .bh-cta-band {
    background: var(--bh-dark);
    color: #fff;
    padding: 56px 32px;
    position: relative;
  }
  .bh-cta-inner {
    max-width: 1080px; margin: 0 auto;
    display: grid; grid-template-columns: 1.4fr 1fr; gap: 48px;
    align-items: center;
  }
  .bh-cta-text .eyebrow {
    font-size: 11px; letter-spacing: 0.32em; text-transform: uppercase;
    color: var(--bh-accent); margin: 0 0 12px; font-weight: 500;
  }
  .bh-cta-text h2 {
    font-family: var(--bh-serif); font-weight: 500;
    font-size: clamp(28px, 3.2vw, 38px); line-height: 1.15;
    margin: 0 0 8px; color: #fff;
  }
  .bh-cta-text p {
    font-size: 15px; line-height: 1.6; margin: 0;
    color: rgba(255,255,255,0.78); max-width: 50ch;
  }
  .bh-cta-actions {
    display: flex; flex-wrap: wrap; gap: 12px; justify-content: flex-end;
    align-items: center;
  }
  .bh-cta-btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 13px 24px; border-radius: 999px;
    font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase;
    font-weight: 500; text-decoration: none;
    transition: background-color .2s, color .2s, border-color .2s;
  }
  .bh-cta-btn.primary { background: var(--bh-accent); color: var(--bh-dark); border: 1px solid var(--bh-accent); }
  .bh-cta-btn.primary:hover { background: #d8b07f; border-color: #d8b07f; }
  .bh-cta-btn.ghost { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,0.4); }
  .bh-cta-btn.ghost:hover { background: rgba(255,255,255,0.08); border-color: #fff; }
  .bh-cta-btn::after { content: "→"; font-size: 14px; }
  .bh-cta-link {
    flex-basis: 100%;
    text-align: right;
    margin-top: 4px;
    font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase;
    color: rgba(255,255,255,0.65); text-decoration: none;
  }
  .bh-cta-link:hover { color: var(--bh-accent); }
  .bh-cta-link::after { content: " ›"; }

  /* FOOTER */
  .bh-foot {
    background: #1a1a17; color: #cfc9bd;
    padding: 64px 32px 32px;
  }
  .bh-foot-grid {
    max-width: 1280px; margin: 0 auto;
    display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr; gap: 40px;
  }
  .bh-foot-brand .logo {
    font-family: var(--bh-serif); font-style: italic; font-size: 22px;
    color: #fff; margin: 0 0 18px;
  }
  .bh-foot-brand .follow { font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; margin: 0 0 12px; color: #8a857c; }
  .bh-foot-brand .socials { display: flex; gap: 12px; }
  .bh-foot-brand .socials a {
    width: 36px; height: 36px; border-radius: 50%; border: 1px solid #2e2c27;
    display: inline-flex; align-items: center; justify-content: center;
    color: #cfc9bd; text-decoration: none; font-size: 14px;
  }
  .bh-foot-brand .socials a:hover { color: var(--bh-accent); border-color: var(--bh-accent); }
  .bh-foot-col h4 {
    font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase;
    color: #fff; margin: 0 0 14px; font-weight: 400;
  }
  .bh-foot-col ul { list-style: none; padding: 0; margin: 0; }
  .bh-foot-col li { margin-bottom: 8px; font-size: 13px; }
  .bh-foot-col a { color: #cfc9bd; text-decoration: none; }
  .bh-foot-col a:hover { color: #fff; }
  .bh-foot-bottom {
    max-width: 1280px; margin: 48px auto 0; padding-top: 24px;
    border-top: 1px solid #2e2c27;
    font-size: 12px; color: #8a857c;
  }
}

/* ============================================================
   MOBILE (≤ 1023px)
   ============================================================ */
@media (max-width: 1023px) {

  /* HERO — text first, then 2x2 image grid, then CTA */
  .bh-hero { padding: 32px 0 40px; }
  .bh-hero-inner { padding: 0 22px; }
  .bh-hero-text h1 {
    font-family: var(--bh-serif); font-weight: 500;
    font-size: clamp(32px, 8vw, 44px); line-height: 1.08;
    letter-spacing: -0.01em; margin: 0 0 16px;
  }
  .bh-hero-text h1 .accent {
    color: var(--bh-accent-deep);
    background-image: linear-gradient(to right, var(--bh-accent), var(--bh-accent));
    background-size: 100% 5px;
    background-position: 0 92%;
    background-repeat: no-repeat;
    padding: 0 2px;
  }
  .bh-hero-text p.lead {
    font-size: 15px; line-height: 1.6; color: var(--bh-ink-soft);
    margin: 0 0 22px;
  }
  .bh-hero-collage {
    margin: 0 22px;
    display: grid; grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr; gap: 8px;
    aspect-ratio: 1;
  }
  .bh-hero-collage figure {
    margin: 0; overflow: hidden; border-radius: 14px;
  }
  .bh-hero-collage img { width: 100%; height: 100%; object-fit: cover; }
  .bh-hero-collage .big { grid-column: 1; grid-row: 1; }
  .bh-hero-collage .top { grid-column: 2; grid-row: 1; }
  .bh-hero-collage .bot { grid-column: 1 / 3; grid-row: 2; }
  .bh-hero-cta-wrap { text-align: center; padding: 24px 22px 0; }

  /* SECTIONS */
  .bh-section { padding: 40px 0; }
  .bh-section-head {
    padding: 0 22px; margin-bottom: 20px;
    display: flex; align-items: center; justify-content: space-between; gap: 16px;
  }
  .bh-section-head h2 {
    font-family: var(--bh-serif); font-weight: 500;
    font-size: 28px; line-height: 1.15; margin: 0;
  }
  .bh-tabs select,
  .bh-tabs-mobile {
    appearance: none;
    background: #fff; border: 1px solid var(--bh-rule-2);
    border-radius: 999px; padding: 6px 28px 6px 14px;
    font: inherit; font-size: 13px; color: var(--bh-ink);
    cursor: pointer;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'><path fill='%231a1a17' d='M3 4l3 4 3-4z'/></svg>");
    background-repeat: no-repeat;
    background-position: right 10px center;
  }

  /* Camp cards — horizontal scroll */
  .bh-camps {
    display: flex; gap: 14px;
    padding: 0 22px 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }
  .bh-camps::-webkit-scrollbar { display: none; }
  .bh-card {
    flex: 0 0 78%; scroll-snap-align: start;
    text-decoration: none; color: inherit;
  }
  .bh-card .img {
    aspect-ratio: 4 / 5; overflow: hidden; border-radius: 14px; margin-bottom: 12px;
  }
  .bh-card img { width: 100%; height: 100%; object-fit: cover; }
  .bh-card .name { font-size: 15px; margin: 0 0 4px; color: var(--bh-ink); }
  .bh-card .meta { font-size: 13px; color: var(--bh-ink-mute); }
  .bh-card-description {
    font-size: 13px; color: var(--bh-ink-soft); line-height: 1.55;
    margin: 8px 0 0;
  }
  .bh-section-foot { padding: 24px 22px 0; text-align: center; }

  /* LATEST STORIES — featured then stacked list */
  .bh-stories { padding: 0 22px; display: flex; flex-direction: column; gap: 28px; }
  .bh-feature { display: block; text-decoration: none; color: inherit; }
  .bh-feature .img {
    aspect-ratio: 4 / 3; overflow: hidden; border-radius: 14px; margin-bottom: 14px;
  }
  .bh-feature img { width: 100%; height: 100%; object-fit: cover; }
  .bh-feature .tag {
    display: inline-block; font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase;
    color: var(--bh-accent-deep); margin: 0 0 8px;
  }
  .bh-feature h3 {
    font-family: var(--bh-serif); font-weight: 500; font-size: 22px; line-height: 1.2;
    margin: 0 0 8px;
  }
  .bh-feature .meta { font-size: 12px; color: var(--bh-ink-mute); }

  .bh-story-list { display: flex; flex-direction: column; gap: 22px; }
  .bh-story-list a {
    display: grid; grid-template-columns: 110px 1fr; gap: 14px;
    text-decoration: none; color: inherit; align-items: start;
  }
  .bh-story-list .thumb { aspect-ratio: 1; overflow: hidden; border-radius: 10px; }
  .bh-story-list .thumb img { width: 100%; height: 100%; object-fit: cover; }
  .bh-story-list .tag {
    font-size: 10px; letter-spacing: 0.28em; text-transform: uppercase;
    color: var(--bh-accent-deep); display: block; margin: 2px 0 4px;
  }
  .bh-story-list h4 {
    font-family: var(--bh-serif); font-weight: 500; font-size: 17px; line-height: 1.25;
    margin: 0 0 6px;
  }
  .bh-story-list .meta { font-size: 12px; color: var(--bh-ink-mute); }

  /* HIGHLIGHTS — profile card stack */
  .bh-highlights { padding: 0 22px; display: flex; flex-direction: column; gap: 16px; }
  .bh-profile {
    background: #fff; border: 1px solid var(--bh-rule); border-radius: 14px; padding: 22px;
  }
  .bh-profile-head { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
  .bh-profile-head .avatar {
    width: 44px; height: 44px; border-radius: 50%; overflow: hidden; flex-shrink: 0;
    background: var(--bh-rule-2);
  }
  .bh-profile-head .avatar img { width: 100%; height: 100%; object-fit: cover; }
  .bh-profile-head .who { font-size: 14px; }
  .bh-profile-head .role { font-size: 12px; color: var(--bh-ink-mute); }
  .bh-stars { color: var(--bh-accent); font-size: 13px; letter-spacing: 0.1em; margin-bottom: 12px; }
  .bh-profile h3 { font-family: var(--bh-serif); font-weight: 500; font-size: 20px; line-height: 1.2; margin: 0 0 10px; }
  .bh-profile p { font-size: 14px; color: var(--bh-ink-soft); line-height: 1.6; margin: 0; }
  .bh-highlight-media { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
  .bh-highlight-media figure {
    margin: 0; aspect-ratio: 4 / 5; overflow: hidden; border-radius: 14px; position: relative;
  }
  .bh-highlight-media img { width: 100%; height: 100%; object-fit: cover; }
  .bh-highlight-media .play {
    position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
    width: 48px; height: 48px; border-radius: 50%; background: rgba(255,255,255,0.92);
    display: flex; align-items: center; justify-content: center; color: var(--bh-ink); font-size: 16px;
  }

  /* NEWSLETTER */
  .bh-newsletter {
    margin-top: 40px;
    background-image: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
                      var(--bh-news-image);
    background-size: cover; background-position: center;
    color: #fff;
    padding: 56px 22px;
    text-align: center;
  }
  .bh-newsletter h2 {
    font-family: var(--bh-serif); font-weight: 500;
    font-size: 26px; line-height: 1.18;
    margin: 0 auto 22px; max-width: 18ch;
  }
  .bh-newsletter form {
    display: flex; flex-direction: column; gap: 10px;
    background: transparent;
  }
  .bh-newsletter input {
    border: 0; padding: 14px 18px; border-radius: 999px;
    background: #fff; color: var(--bh-ink); font: inherit; font-size: 14px;
    outline: none;
  }
  .bh-newsletter button {
    border: 0; border-radius: 999px;
    background: var(--bh-accent); color: #fff;
    padding: 14px 22px; font: inherit; font-size: 12px; letter-spacing: 0.2em;
    text-transform: uppercase; cursor: pointer;
  }

  /* FOOTER */
  /* CTA BAND — mobile */
  .bh-cta-band { background: var(--bh-dark); color: #fff; padding: 36px 22px; }
  .bh-cta-inner { max-width: none; display: flex; flex-direction: column; gap: 22px; align-items: stretch; }
  .bh-cta-text .eyebrow { font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--bh-accent); margin: 0 0 8px; font-weight: 500; }
  .bh-cta-text h2 { font-family: var(--bh-serif); font-weight: 500; font-size: 24px; line-height: 1.18; margin: 0 0 8px; color: #fff; }
  .bh-cta-text p { font-size: 14px; line-height: 1.55; margin: 0; color: rgba(255,255,255,0.78); }
  .bh-cta-actions { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; justify-content: flex-start; }
  .bh-cta-btn { display: inline-flex; align-items: center; gap: 8px; padding: 11px 18px; border-radius: 999px; font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; font-weight: 500; text-decoration: none; }
  .bh-cta-btn.primary { background: var(--bh-accent); color: var(--bh-dark); border: 1px solid var(--bh-accent); }
  .bh-cta-btn.ghost { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,0.4); }
  .bh-cta-btn::after { content: "→"; font-size: 13px; }
  .bh-cta-link { flex-basis: 100%; font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(255,255,255,0.65); text-decoration: none; margin-top: 4px; }
  .bh-cta-link::after { content: " ›"; }

  .bh-foot { background: #1a1a17; color: #cfc9bd; padding: 40px 22px 24px; }
  .bh-foot-grid { display: flex; flex-direction: column; gap: 28px; }
  .bh-foot-brand .logo { font-family: var(--bh-serif); font-style: italic; font-size: 20px; color: #fff; margin: 0 0 12px; }
  .bh-foot-brand .follow { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; margin: 0 0 10px; color: #8a857c; }
  .bh-foot-brand .socials { display: flex; gap: 10px; }
  .bh-foot-brand .socials a {
    width: 36px; height: 36px; border-radius: 50%; border: 1px solid #2e2c27;
    display: inline-flex; align-items: center; justify-content: center;
    color: #cfc9bd; text-decoration: none; font-size: 14px;
  }
  .bh-foot-col h4 { font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase; color: #fff; margin: 0 0 10px; font-weight: 400; }
  .bh-foot-col ul { list-style: none; padding: 0; margin: 0; }
  .bh-foot-col li { margin-bottom: 8px; font-size: 13px; }
  .bh-foot-col a { color: #cfc9bd; text-decoration: none; }
  .bh-foot-bottom { padding-top: 20px; border-top: 1px solid #2e2c27; font-size: 11px; color: #8a857c; }
}

/* ============================================================
   SINGLE POST PAGE — extends the landing template with a reading
   surface. Used by post-desktop.html and post-mobile.html.
   ============================================================ */

@media (min-width: 1024px) {

  /* Hero title block lives BELOW the collage on the post page (full readable) */
  .bh-post-titleblock {
    max-width: 880px; margin: -32px auto 0; padding: 0 32px;
    text-align: center;
    position: relative; z-index: 2;
  }
  .bh-post-titleblock .eyebrow { display: inline-block; margin: 0 0 18px; color: var(--bh-accent-deep); }
  .bh-post-titleblock h1 {
    font-family: var(--bh-serif); font-weight: 500;
    font-size: clamp(40px, 4.8vw, 64px); line-height: 1.05;
    letter-spacing: -0.012em; margin: 0 0 24px;
  }
  .bh-post-titleblock .meta {
    display: inline-flex; align-items: center; gap: 14px; flex-wrap: wrap; justify-content: center;
    font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--bh-ink-mute);
  }
  .bh-post-titleblock .meta .sep { width: 3px; height: 3px; border-radius: 50%; background: var(--bh-accent); }

  /* Reading column */
  .bh-article {
    max-width: 680px; margin: 0 auto; padding: 56px 32px 0;
    font-size: 18px; line-height: 1.78;
  }
  .bh-article p.lede {
    font-family: var(--bh-serif); font-weight: 400;
    font-size: 26px; line-height: 1.45; color: var(--bh-ink);
    letter-spacing: -0.005em; margin: 0 0 36px;
  }
  .bh-article p { margin: 0 0 1.5em; }
  .bh-article a {
    color: var(--bh-ink);
    background-image: linear-gradient(currentColor, currentColor);
    background-size: 100% 1px; background-position: 0 100%; background-repeat: no-repeat;
    text-decoration: none; padding-bottom: 1px;
  }
  .bh-article a:hover { color: var(--bh-accent-deep); }

  /* Inline figure inside the article — breaks out of the reading column */
  .bh-article-figure {
    margin: 64px calc(50% - 50vw);
    padding: 0;
  }
  .bh-article-figure img {
    width: 100vw; height: auto;
    aspect-ratio: 21 / 9; object-fit: cover;
    border-radius: 0;
  }
  .bh-article-figure figcaption {
    max-width: 680px; margin: 16px auto 0; padding: 0 32px;
    font-family: var(--bh-serif); font-style: italic; font-size: 16px;
    color: var(--bh-ink-soft); text-align: center;
  }

  /* Pull quote inside article — dark immersive band */
  .bh-article-pullquote {
    margin: 64px calc(50% - 50vw);
    background: var(--bh-dark); color: #fff;
    padding: 96px 32px; text-align: center;
  }
  .bh-article-pullquote blockquote {
    max-width: 880px; margin: 0 auto;
    font-family: var(--bh-serif); font-style: italic;
    font-size: clamp(28px, 3.4vw, 42px); line-height: 1.2;
    letter-spacing: -0.005em; color: #fff;
  }
  .bh-article-pullquote blockquote::before {
    content: ""; display: block; width: 60px; height: 1px;
    background: var(--bh-accent); margin: 0 auto 32px;
  }
  .bh-article-pullquote cite {
    display: block; margin-top: 28px;
    font-family: var(--bh-sans); font-style: normal;
    font-size: 12px; letter-spacing: 0.3em; text-transform: uppercase;
    color: var(--bh-accent);
  }
}

@media (max-width: 1023px) {
  .bh-post-titleblock {
    padding: 24px 22px 0; text-align: left;
  }
  .bh-post-titleblock .eyebrow { display: inline-block; margin: 0 0 12px; color: var(--bh-accent-deep); }
  .bh-post-titleblock h1 {
    font-family: var(--bh-serif); font-weight: 500;
    font-size: clamp(28px, 7vw, 38px); line-height: 1.1;
    letter-spacing: -0.01em; margin: 0 0 16px;
  }
  .bh-post-titleblock .meta {
    display: flex; flex-wrap: wrap; gap: 10px; align-items: center;
    font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--bh-ink-mute);
    margin: 0;
  }
  .bh-post-titleblock .meta .sep { width: 3px; height: 3px; border-radius: 50%; background: var(--bh-accent); }

  .bh-article {
    padding: 24px 22px 0; font-size: 16px; line-height: 1.72;
  }
  .bh-article p.lede {
    font-family: var(--bh-serif); font-weight: 400;
    font-size: 19px; line-height: 1.5; margin: 0 0 24px;
  }
  .bh-article p { margin: 0 0 1.3em; }

  .bh-article-figure { margin: 32px 0; padding: 0; }
  .bh-article-figure img {
    width: 100%; height: auto;
    aspect-ratio: 4 / 3; object-fit: cover;
  }
  .bh-article-figure figcaption {
    padding: 10px 22px 0;
    font-family: var(--bh-serif); font-style: italic; font-size: 14px;
    color: var(--bh-ink-soft);
  }

  .bh-article-pullquote {
    margin: 32px 0; background: var(--bh-dark); color: #fff;
    padding: 48px 22px; text-align: center;
  }
  .bh-article-pullquote blockquote {
    font-family: var(--bh-serif); font-style: italic;
    font-size: 21px; line-height: 1.3; margin: 0; color: #fff;
  }
  .bh-article-pullquote blockquote::before {
    content: ""; display: block; width: 40px; height: 1px;
    background: var(--bh-accent); margin: 0 auto 20px;
  }
  .bh-article-pullquote cite {
    display: block; margin-top: 20px;
    font-family: var(--bh-sans); font-style: normal;
    font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase;
    color: var(--bh-accent);
  }
}
