/* Backyard Harvest — Premium Home & Garden Magazine */
/* Completely standalone publication */
/* Design language: Earthy sophistication — warm greens, terracotta, cream. */

/* ──────────────────────────────────────────────────────────────
   DESIGN TOKENS
   ────────────────────────────────────────────────────────────── */
:root {
  /* Core palette */
  --bh-green-deep:     #1a3a2b;
  --bh-green-dark:     #2d5a3d;
  --bh-green-mid:      #3d7a52;
  --bh-green-light:    #6aaa7d;
  --bh-green-pale:     #e8f2eb;
  --bh-terra-dark:     #8b3a1f;
  --bh-terra-mid:      #c15a2f;
  --bh-terra-light:    #e07a4f;
  --bh-terra-pale:     #fdf0ea;
  --bh-cream:          #faf7f2;
  --bh-warm-white:     #ffffff;
  --bh-stone-light:    #f5f0e8;
  --bh-stone-mid:      #e8dfd0;
  --bh-stone-dark:     #c4b8a8;
  --bh-ink-deep:       #1a1612;
  --bh-ink-mid:        #3d3530;
  --bh-ink-light:      #6b5e54;
  --bh-ink-faint:      #9c9089;

  /* Typography */
  --font-display:  'Playfair Display', 'Georgia', serif;
  --font-body:     'Source Sans 3', 'Helvetica Neue', Arial, sans-serif;

  /* Spacing scale */
  --sp-xs:   4px;
  --sp-sm:   8px;
  --sp-md:   16px;
  --sp-lg:   24px;
  --sp-xl:   40px;
  --sp-2xl:  64px;
  --sp-3xl:  96px;

  /* Layout */
  --bh-max-w:         1200px;
  --bh-content-w:     720px;

  /* Shadows */
  --shadow-sm:  0 1px 3px rgba(26,22,18,0.08), 0 1px 2px rgba(26,22,18,0.06);
  --shadow-md:  0 4px 12px rgba(26,22,18,0.10), 0 2px 4px rgba(26,22,18,0.06);
  --shadow-lg:  0 12px 32px rgba(26,22,18,0.14), 0 4px 8px rgba(26,22,18,0.08);
  --shadow-card: 0 2px 8px rgba(26,22,18,0.08);

  /* Transitions */
  --trans-fast:  150ms ease;
  --trans-base:  250ms ease;
  --trans-slow:  400ms ease;
}

/* ──────────────────────────────────────────────────────────────
   RESET & BASE
   ────────────────────────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body.bh-body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--bh-ink-mid);
  background-color: var(--bh-cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--bh-green-dark); text-decoration: none; }
a:hover { color: var(--bh-terra-dark); }

/* ──────────────────────────────────────────────────────────────
   READING PROGRESS BAR
   ────────────────────────────────────────────────────────────── */
.bh-progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, var(--bh-green-mid), var(--bh-terra-mid));
  z-index: 9999;
  transition: width 100ms linear;
}

/* ──────────────────────────────────────────────────────────────
   ALERT BAR
   ────────────────────────────────────────────────────────────── */
.bh-alert-bar {
  background: var(--bh-green-deep);
  color: var(--bh-green-pale);
  text-align: center;
  font-size: 0.8125rem;
  font-family: var(--font-body);
  letter-spacing: 0.02em;
  padding: 9px var(--sp-md);
}
.bh-alert-bar a {
  color: var(--bh-terra-light);
  text-decoration: underline;
  font-weight: 600;
}
.bh-alert-bar a:hover { color: #fff; }

/* ──────────────────────────────────────────────────────────────
   NAVIGATION
   ────────────────────────────────────────────────────────────── */
.bh-nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(250, 247, 242, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--bh-stone-mid);
  box-shadow: 0 2px 8px rgba(26,22,18,0.05);
}

.bh-nav-inner {
  max-width: var(--bh-max-w);
  margin: 0 auto;
  padding: 0 var(--sp-xl);
  height: 68px;
  display: flex;
  align-items: center;
  gap: var(--sp-xl);
}

.bh-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  text-decoration: none;
}
.bh-logo-icon {
  width: 40px;
  height: 40px;
  background: var(--bh-green-deep);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}
.bh-logo-text {
  display: flex;
  flex-direction: column;
}
.bh-logo-name {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--bh-green-deep);
  line-height: 1.1;
}
.bh-logo-tagline {
  font-size: 0.6875rem;
  font-weight: 500;
  color: var(--bh-terra-mid);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.2;
}

.bh-nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
}
.bh-nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--bh-ink-light);
  padding: 6px 10px;
  border-radius: 6px;
  transition: color var(--trans-fast), background var(--trans-fast);
  white-space: nowrap;
}
.bh-nav-links a:hover {
  color: var(--bh-green-dark);
  background: var(--bh-green-pale);
}
.bh-nav-links a.active {
  color: var(--bh-green-dark);
  font-weight: 600;
}

.bh-nav-actions {
  display: flex;
  align-items: center;
  gap: var(--sp-sm);
  flex-shrink: 0;
}
.bh-nav-cta {
  background: var(--bh-green-dark);
  color: #fff !important;
  padding: 8px 18px !important;
  border-radius: 6px !important;
  font-size: 0.875rem !important;
  font-weight: 600 !important;
  transition: background var(--trans-fast) !important;
}
.bh-nav-cta:hover {
  background: var(--bh-green-deep) !important;
  color: #fff !important;
}

.bh-nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  font-size: 1.25rem;
  color: var(--bh-ink-mid);
  border-radius: 6px;
}
.bh-nav-toggle:hover { background: var(--bh-green-pale); }

.bh-nav-mobile {
  display: none;
  flex-direction: column;
  padding: var(--sp-md) var(--sp-xl);
  border-top: 1px solid var(--bh-stone-mid);
  background: var(--bh-warm-white);
}
.bh-nav-mobile.open { display: flex; }
.bh-nav-mobile a {
  padding: 10px 0;
  font-size: 1rem;
  font-weight: 500;
  color: var(--bh-ink-mid);
  border-bottom: 1px solid var(--bh-stone-light);
}
.bh-nav-mobile a:last-child { border-bottom: none; }
.bh-nav-mobile a.bh-nav-cta {
  margin-top: var(--sp-md);
  text-align: center;
  padding: 12px !important;
  border-bottom: none;
  border-radius: 8px !important;
}

@media (max-width: 900px) {
  .bh-nav-links { display: none; }
  .bh-nav-toggle { display: flex; margin-left: auto; }
  .bh-nav-inner { gap: var(--sp-md); }
  .bh-nav-actions { display: none; }
}

/* ──────────────────────────────────────────────────────────────
   LAYOUT UTILITIES
   ────────────────────────────────────────────────────────────── */
.bh-container {
  max-width: var(--bh-max-w);
  margin: 0 auto;
  padding: 0 var(--sp-xl);
}

@media (max-width: 600px) {
  .bh-container { padding: 0 var(--sp-md); }
}

/* ──────────────────────────────────────────────────────────────
   HERO — HOMEPAGE FEATURE WELL
   ────────────────────────────────────────────────────────────── */
.bh-hero {
  background: var(--bh-green-deep);
  padding: var(--sp-3xl) 0 var(--sp-2xl);
  position: relative;
  overflow: hidden;
}
.bh-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1416879595882-3373a0480b5b?w=1600&q=60') center/cover no-repeat;
  opacity: 0.25;
  pointer-events: none;
}
.bh-hero-inner {
  position: relative;
  z-index: 1;
  max-width: var(--bh-max-w);
  margin: 0 auto;
  padding: 0 var(--sp-xl);
}
.bh-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--bh-terra-light);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 100px;
  margin-bottom: var(--sp-lg);
}
.bh-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--bh-warm-white);
  line-height: 1.12;
  max-width: 700px;
  margin-bottom: var(--sp-lg);
}
.bh-hero-desc {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.75);
  max-width: 520px;
  line-height: 1.6;
  margin-bottom: var(--sp-xl);
}
.bh-hero-form {
  display: flex;
  gap: var(--sp-sm);
  max-width: 480px;
  flex-wrap: wrap;
}
.bh-hero-form input[type="email"] {
  flex: 1;
  min-width: 220px;
  padding: 12px 16px;
  border: 2px solid rgba(255,255,255,0.2);
  border-radius: 8px;
  background: rgba(255,255,255,0.1);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  transition: border-color var(--trans-fast);
}
.bh-hero-form input::placeholder { color: rgba(255,255,255,0.5); }
.bh-hero-form input:focus {
  outline: none;
  border-color: rgba(255,255,255,0.6);
  background: rgba(255,255,255,0.15);
}
.bh-hero-form button {
  padding: 12px 22px;
  background: var(--bh-terra-mid);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 700;
  cursor: pointer;
  transition: background var(--trans-fast), transform var(--trans-fast);
}
.bh-hero-form button:hover {
  background: var(--bh-terra-dark);
  transform: translateY(-1px);
}
.bh-hero-trust {
  margin-top: var(--sp-md);
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.5);
}

/* ──────────────────────────────────────────────────────────────
   AD ZONES (pre-labeled, ready for network code injection)
   ────────────────────────────────────────────────────────────── */
/* ADZONE: leaderboard 728x90 */
.bh-ad-leaderboard {
  background: var(--bh-stone-light);
  border: 1px dashed var(--bh-stone-dark);
  border-radius: 4px;
  text-align: center;
  padding: 8px;
  margin: var(--sp-xl) auto;
  max-width: 728px;
  min-height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bh-ink-faint);
  font-size: 0.75rem;
  letter-spacing: 0.06em;
}
.bh-ad-leaderboard::before { content: 'Advertisement · 728×90'; }

/* ADZONE: sidebar rectangle 300x250 */
.bh-ad-rectangle {
  background: var(--bh-stone-light);
  border: 1px dashed var(--bh-stone-dark);
  border-radius: 4px;
  text-align: center;
  width: 300px;
  min-height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bh-ink-faint);
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  flex-shrink: 0;
}
.bh-ad-rectangle::before { content: 'Advertisement · 300×250'; }

/* ADZONE: in-article native */
.bh-ad-native {
  background: var(--bh-stone-light);
  border: 1px dashed var(--bh-stone-dark);
  border-radius: 8px;
  padding: 16px;
  margin: var(--sp-xl) 0;
  min-height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bh-ink-faint);
  font-size: 0.75rem;
  letter-spacing: 0.06em;
}
.bh-ad-native::before { content: 'Sponsored Content · Native Ad'; }

/* ADZONE: billboard 970x90 */
.bh-ad-billboard {
  background: var(--bh-stone-light);
  border: 1px dashed var(--bh-stone-dark);
  border-radius: 4px;
  text-align: center;
  padding: 8px;
  margin: var(--sp-xl) auto;
  max-width: 970px;
  min-height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bh-ink-faint);
  font-size: 0.75rem;
  letter-spacing: 0.06em;
}
.bh-ad-billboard::before { content: 'Advertisement · 970×90 Billboard'; }

/* ADZONE: sticky footer mobile 320x50 */
.bh-ad-sticky-mobile {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: var(--bh-stone-light);
  border-top: 1px solid var(--bh-stone-mid);
  align-items: center;
  justify-content: center;
  z-index: 500;
  color: var(--bh-ink-faint);
  font-size: 0.7rem;
}
.bh-ad-sticky-mobile::before { content: 'Advertisement · 320×50'; }
@media (max-width: 600px) {
  .bh-ad-sticky-mobile { display: flex; }
  body.bh-body { padding-bottom: 60px; }
}

/* ──────────────────────────────────────────────────────────────
   HOMEPAGE SECTIONS
   ────────────────────────────────────────────────────────────── */
.bh-section {
  padding: var(--sp-3xl) 0;
}
.bh-section + .bh-section {
  padding-top: 0;
}
.bh-section-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: var(--sp-xl);
  padding-bottom: var(--sp-md);
  border-bottom: 2px solid var(--bh-green-pale);
}
.bh-section-title {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--bh-green-deep);
  line-height: 1.2;
}
.bh-section-link {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--bh-terra-mid);
}
.bh-section-link:hover { color: var(--bh-terra-dark); text-decoration: underline; }

/* ──────────────────────────────────────────────────────────────
   ARTICLE CARDS
   ────────────────────────────────────────────────────────────── */
.bh-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-lg);
}
.bh-card-grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

.bh-card {
  background: var(--bh-warm-white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform var(--trans-base), box-shadow var(--trans-base);
  display: flex;
  flex-direction: column;
}
.bh-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.bh-card-img {
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--bh-green-pale);
  position: relative;
}
.bh-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--trans-slow);
}
.bh-card:hover .bh-card-img img {
  transform: scale(1.03);
}
.bh-card-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  background: linear-gradient(135deg, var(--bh-green-pale) 0%, var(--bh-stone-light) 100%);
}
.bh-card-body {
  padding: var(--sp-lg);
  flex: 1;
  display: flex;
  flex-direction: column;
}
.bh-card-category {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bh-terra-mid);
  margin-bottom: var(--sp-sm);
}
.bh-card-title {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--bh-ink-deep);
  line-height: 1.35;
  margin-bottom: var(--sp-sm);
  flex: 1;
}
.bh-card:hover .bh-card-title { color: var(--bh-green-dark); }
.bh-card-excerpt {
  font-size: 0.875rem;
  color: var(--bh-ink-light);
  line-height: 1.6;
  margin-bottom: var(--sp-md);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.bh-card-meta {
  display: flex;
  align-items: center;
  gap: var(--sp-sm);
  font-size: 0.8rem;
  color: var(--bh-ink-faint);
  margin-top: auto;
}
.bh-card-meta-dot { opacity: 0.4; }

/* Feature card (large) */
.bh-card-feature {
  grid-column: span 2;
  flex-direction: row;
}
.bh-card-feature .bh-card-img {
  width: 55%;
  flex-shrink: 0;
  aspect-ratio: unset;
}
.bh-card-feature .bh-card-body {
  padding: var(--sp-xl);
}
.bh-card-feature .bh-card-title {
  font-size: 1.5rem;
  line-height: 1.25;
}
.bh-card-feature .bh-card-excerpt {
  -webkit-line-clamp: 3;
}

@media (max-width: 1100px) {
  .bh-card-grid { grid-template-columns: repeat(2, 1fr); }
  .bh-card-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .bh-card-feature { grid-column: span 2; flex-direction: column; }
  .bh-card-feature .bh-card-img { width: 100%; aspect-ratio: 16/9; }
}
@media (max-width: 600px) {
  .bh-card-grid { grid-template-columns: 1fr; }
  .bh-card-grid-4 { grid-template-columns: 1fr; }
  .bh-card-feature { grid-column: span 1; }
}

/* ──────────────────────────────────────────────────────────────
   CATEGORY CHIPS NAV
   ────────────────────────────────────────────────────────────── */
.bh-category-nav {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-sm);
  padding: var(--sp-lg) 0;
  border-bottom: 1px solid var(--bh-stone-mid);
  margin-bottom: var(--sp-2xl);
}
.bh-category-chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 7px 14px;
  border-radius: 100px;
  border: 1.5px solid var(--bh-stone-mid);
  background: var(--bh-warm-white);
  color: var(--bh-ink-mid);
  font-size: 0.8125rem;
  font-weight: 600;
  text-decoration: none;
  transition: all var(--trans-fast);
  cursor: pointer;
}
.bh-category-chip:hover,
.bh-category-chip.active {
  background: var(--bh-green-deep);
  border-color: var(--bh-green-deep);
  color: #fff;
}

/* ──────────────────────────────────────────────────────────────
   AFFILIATE PRODUCT CARDS
   ────────────────────────────────────────────────────────────── */
.bh-affiliate-card {
  background: var(--bh-warm-white);
  border: 1.5px solid var(--bh-stone-mid);
  border-radius: 12px;
  margin: var(--sp-xl) 0;
  padding: var(--sp-lg);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}
.bh-affiliate-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--bh-green-mid), var(--bh-terra-light));
}
.bh-affiliate-badge {
  display: inline-block;
  background: var(--bh-green-pale);
  color: var(--bh-green-dark);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 100px;
  margin-bottom: var(--sp-md);
}
.bh-affiliate-content {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--sp-lg);
}
.bh-affiliate-info { flex: 1; }
.bh-affiliate-info h4 {
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--bh-ink-deep);
  margin-bottom: var(--sp-sm);
}
.bh-affiliate-info p {
  font-size: 0.9375rem;
  color: var(--bh-ink-light);
  line-height: 1.6;
  margin-bottom: var(--sp-sm);
}
.bh-affiliate-meta {
  display: flex;
  align-items: center;
  gap: var(--sp-md);
}
.bh-price {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--bh-green-dark);
  font-family: var(--font-display);
}
.bh-disclosure {
  font-size: 0.75rem;
  color: var(--bh-ink-faint);
  font-style: italic;
}
.bh-affiliate-cta {
  display: inline-flex;
  align-items: center;
  padding: 12px 22px;
  background: var(--bh-terra-mid);
  color: #fff !important;
  font-weight: 700;
  font-size: 0.9375rem;
  border-radius: 8px;
  text-decoration: none;
  transition: background var(--trans-fast), transform var(--trans-fast);
  white-space: nowrap;
  flex-shrink: 0;
  align-self: center;
}
.bh-affiliate-cta:hover {
  background: var(--bh-terra-dark) !important;
  transform: translateY(-1px);
  color: #fff !important;
}

@media (max-width: 600px) {
  .bh-affiliate-content {
    flex-direction: column;
  }
  .bh-affiliate-cta {
    width: 100%;
    justify-content: center;
  }
}

/* ──────────────────────────────────────────────────────────────
   FEATURED DISCLOSURE (sponsored articles)
   ────────────────────────────────────────────────────────────── */
.bh-featured-disclosure {
  background: var(--bh-stone-light);
  border-left: 4px solid var(--bh-terra-mid);
  border-radius: 0 8px 8px 0;
  padding: var(--sp-md) var(--sp-lg);
  font-size: 0.875rem;
  color: var(--bh-ink-mid);
  line-height: 1.6;
  margin-bottom: var(--sp-xl);
  font-style: italic;
}

/* ──────────────────────────────────────────────────────────────
   COMPARISON TABLES
   ────────────────────────────────────────────────────────────── */
.bh-comparison-table {
  overflow-x: auto;
  margin: var(--sp-xl) 0;
  border-radius: 10px;
  box-shadow: var(--shadow-sm);
}
.bh-comparison-table table {
  width: 100%;
  border-collapse: collapse;
  background: var(--bh-warm-white);
  font-size: 0.9375rem;
}
.bh-comparison-table thead {
  background: var(--bh-green-deep);
  color: #fff;
}
.bh-comparison-table th {
  padding: 14px 18px;
  text-align: left;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
}
.bh-comparison-table td {
  padding: 13px 18px;
  border-bottom: 1px solid var(--bh-stone-light);
  color: var(--bh-ink-mid);
  line-height: 1.5;
}
.bh-comparison-table tr:last-child td { border-bottom: none; }
.bh-comparison-table tbody tr:hover { background: var(--bh-green-pale); }
.bh-comparison-table td a {
  color: var(--bh-terra-mid);
  text-decoration: underline;
  font-weight: 600;
}

/* ──────────────────────────────────────────────────────────────
   ARTICLE PAGE LAYOUT
   ────────────────────────────────────────────────────────────── */
.bh-article-wrap {
  max-width: var(--bh-max-w);
  margin: 0 auto;
  padding: 0 var(--sp-xl);
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: var(--sp-2xl);
  padding-top: var(--sp-2xl);
  padding-bottom: var(--sp-3xl);
}

.bh-article-main {}

.bh-breadcrumb {
  display: flex;
  align-items: center;
  gap: var(--sp-sm);
  font-size: 0.8125rem;
  color: var(--bh-ink-faint);
  margin-bottom: var(--sp-lg);
}
.bh-breadcrumb a { color: var(--bh-terra-mid); }
.bh-breadcrumb a:hover { color: var(--bh-terra-dark); text-decoration: underline; }
.bh-breadcrumb-sep { opacity: 0.4; }

.bh-article-header {
  margin-bottom: var(--sp-xl);
}
.bh-article-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bh-terra-mid);
  margin-bottom: var(--sp-md);
}
.bh-article-label.sponsored {
  background: var(--bh-terra-pale);
  padding: 4px 10px;
  border-radius: 4px;
  color: var(--bh-terra-dark);
}
.bh-article-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 700;
  color: var(--bh-ink-deep);
  line-height: 1.18;
  margin-bottom: var(--sp-md);
}
.bh-article-subtitle {
  font-size: 1.125rem;
  color: var(--bh-ink-light);
  line-height: 1.55;
  margin-bottom: var(--sp-lg);
  max-width: 640px;
}
.bh-article-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--sp-md);
  padding: var(--sp-md) 0;
  border-top: 1px solid var(--bh-stone-mid);
  border-bottom: 1px solid var(--bh-stone-mid);
  font-size: 0.875rem;
  color: var(--bh-ink-faint);
}
.bh-article-author {
  font-weight: 600;
  color: var(--bh-ink-mid);
}
.bh-article-hero {
  border-radius: 12px;
  overflow: hidden;
  margin: var(--sp-xl) 0;
  max-height: 480px;
  aspect-ratio: 16/9;
}
.bh-article-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.bh-article-hero-emoji {
  background: linear-gradient(135deg, var(--bh-green-pale) 0%, var(--bh-stone-light) 100%);
  height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
}

/* Article body typography */
.bh-article-body {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--bh-ink-mid);
  max-width: 68ch;
}
.bh-article-body p { margin-bottom: 1.4em; }
.bh-article-body h2 {
  font-family: var(--font-display);
  font-size: 1.625rem;
  font-weight: 700;
  color: var(--bh-green-deep);
  margin: 2.2em 0 0.7em;
  line-height: 1.25;
}
.bh-article-body h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--bh-ink-deep);
  margin: 1.8em 0 0.6em;
}
.bh-article-body ul, .bh-article-body ol {
  margin: 0 0 1.4em var(--sp-lg);
  padding: 0;
}
.bh-article-body li { margin-bottom: 0.4em; }
.bh-article-body strong { color: var(--bh-ink-deep); font-weight: 700; }
.bh-article-body a { color: var(--bh-green-dark); text-decoration: underline; }
.bh-article-body a:hover { color: var(--bh-terra-dark); }
.bh-lead {
  font-size: 1.1875rem;
  color: var(--bh-ink-deep);
  line-height: 1.75;
  font-weight: 400;
  margin-bottom: 1.6em;
}
/* Inline ad break */
.bh-article-body .bh-ad-native { margin: var(--sp-2xl) 0; }

/* Sidebar */
.bh-article-sidebar {
  position: sticky;
  top: 90px;
  align-self: start;
}

.bh-sidebar-block {
  background: var(--bh-warm-white);
  border: 1.5px solid var(--bh-stone-mid);
  border-radius: 12px;
  padding: var(--sp-lg);
  margin-bottom: var(--sp-lg);
}
.bh-sidebar-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--bh-green-deep);
  margin-bottom: var(--sp-md);
  padding-bottom: var(--sp-sm);
  border-bottom: 2px solid var(--bh-green-pale);
}
.bh-sidebar-subscribe {
  background: var(--bh-green-deep);
  color: var(--bh-green-pale);
  border: none;
}
.bh-sidebar-subscribe .bh-sidebar-title {
  color: var(--bh-green-pale);
  border-color: rgba(255,255,255,0.15);
}
.bh-sidebar-subscribe p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: var(--sp-md);
  line-height: 1.6;
}
.bh-sidebar-form input[type="email"] {
  width: 100%;
  padding: 10px 12px;
  border: 1.5px solid rgba(255,255,255,0.2);
  border-radius: 7px;
  background: rgba(255,255,255,0.1);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.9rem;
  margin-bottom: var(--sp-sm);
}
.bh-sidebar-form input::placeholder { color: rgba(255,255,255,0.4); }
.bh-sidebar-form button {
  width: 100%;
  padding: 10px;
  background: var(--bh-terra-mid);
  color: #fff;
  border: none;
  border-radius: 7px;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  transition: background var(--trans-fast);
  font-family: var(--font-body);
}
.bh-sidebar-form button:hover { background: var(--bh-terra-dark); }

.bh-related-list {
  list-style: none;
}
.bh-related-list li {
  padding: 10px 0;
  border-bottom: 1px solid var(--bh-stone-light);
}
.bh-related-list li:last-child { border-bottom: none; padding-bottom: 0; }
.bh-related-list a {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--bh-ink-mid);
  line-height: 1.4;
}
.bh-related-list a:hover { color: var(--bh-green-dark); }
.bh-related-list .cat-tag {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--bh-terra-mid);
  margin-bottom: 3px;
}

/* money pages callout in sidebar */
.bh-money-links a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 0;
  border-bottom: 1px solid var(--bh-stone-light);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--bh-ink-mid);
  text-decoration: none;
}
.bh-money-links a:last-child { border-bottom: none; }
.bh-money-links a:hover { color: var(--bh-terra-mid); }
.bh-money-links .money-icon { font-size: 1rem; }

@media (max-width: 900px) {
  .bh-article-wrap {
    grid-template-columns: 1fr;
    padding-top: var(--sp-xl);
  }
  .bh-article-sidebar { position: static; }
  .bh-ad-rectangle { display: none; }
}

/* ──────────────────────────────────────────────────────────────
   CATEGORY / LIST PAGE
   ────────────────────────────────────────────────────────────── */
.bh-page-hero {
  background: linear-gradient(135deg, var(--bh-green-deep) 0%, var(--bh-green-dark) 100%);
  padding: var(--sp-2xl) 0;
}
.bh-page-hero-inner {
  max-width: var(--bh-max-w);
  margin: 0 auto;
  padding: 0 var(--sp-xl);
}
.bh-page-hero-icon {
  font-size: 2.5rem;
  margin-bottom: var(--sp-md);
}
.bh-page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--bh-warm-white);
  line-height: 1.15;
  margin-bottom: var(--sp-sm);
}
.bh-page-hero-desc {
  font-size: 1rem;
  color: rgba(255,255,255,0.7);
  max-width: 520px;
  line-height: 1.6;
}

/* ──────────────────────────────────────────────────────────────
   TOOLS PAGE / MONEY PAGES
   ────────────────────────────────────────────────────────────── */
.bh-tools-section {
  padding: var(--sp-3xl) 0;
}
.bh-tools-section + .bh-tools-section {
  padding-top: 0;
}
.bh-tool-category-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--bh-green-deep);
  margin-bottom: var(--sp-lg);
  padding-bottom: var(--sp-md);
  border-bottom: 2px solid var(--bh-green-pale);
  display: flex;
  align-items: center;
  gap: var(--sp-sm);
}

.bh-product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--sp-lg);
  margin-bottom: var(--sp-xl);
}
.bh-product-card {
  background: var(--bh-warm-white);
  border: 1.5px solid var(--bh-stone-mid);
  border-radius: 12px;
  padding: var(--sp-lg);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--trans-base), transform var(--trans-base);
  display: flex;
  flex-direction: column;
  gap: var(--sp-sm);
}
.bh-product-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.bh-product-emoji {
  font-size: 2.25rem;
  margin-bottom: var(--sp-xs);
}
.bh-product-name {
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--bh-ink-deep);
  line-height: 1.3;
}
.bh-product-note {
  font-size: 0.875rem;
  color: var(--bh-ink-light);
  line-height: 1.55;
  flex: 1;
}
.bh-product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: var(--sp-sm);
  padding-top: var(--sp-sm);
  border-top: 1px solid var(--bh-stone-light);
}
.bh-product-price {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--bh-green-dark);
  font-family: var(--font-display);
}
.bh-product-cta {
  padding: 7px 14px;
  background: var(--bh-terra-mid);
  color: #fff;
  border-radius: 6px;
  font-size: 0.8125rem;
  font-weight: 700;
  transition: background var(--trans-fast);
  text-decoration: none;
}
.bh-product-cta:hover {
  background: var(--bh-terra-dark);
  color: #fff;
}
.bh-product-disclosure {
  font-size: 0.6875rem;
  color: var(--bh-ink-faint);
  text-align: center;
  margin-top: var(--sp-sm);
  font-style: italic;
}

/* ──────────────────────────────────────────────────────────────
   STARTER KITS PAGE
   ────────────────────────────────────────────────────────────── */
.bh-kit-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-xl);
  padding: var(--sp-2xl) 0;
}
.bh-kit-card {
  background: var(--bh-warm-white);
  border: 2px solid var(--bh-stone-mid);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--trans-base), box-shadow var(--trans-base);
}
.bh-kit-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.bh-kit-card.featured {
  border-color: var(--bh-green-dark);
  position: relative;
}
.bh-kit-card.featured::before {
  content: 'Most Popular';
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--bh-green-dark);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 4px 16px;
  border-radius: 0 0 8px 8px;
}
.bh-kit-header {
  padding: var(--sp-xl) var(--sp-lg) var(--sp-lg);
  background: var(--bh-green-pale);
  text-align: center;
}
.bh-kit-card.featured .bh-kit-header {
  background: var(--bh-green-deep);
}
.bh-kit-budget {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--bh-green-deep);
  line-height: 1;
}
.bh-kit-card.featured .bh-kit-budget { color: #fff; }
.bh-kit-name {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--bh-ink-mid);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.bh-kit-card.featured .bh-kit-name { color: rgba(255,255,255,0.75); }
.bh-kit-body {
  padding: var(--sp-lg);
}
.bh-kit-items {
  list-style: none;
  margin-bottom: var(--sp-lg);
}
.bh-kit-items li {
  display: flex;
  gap: var(--sp-sm);
  padding: 8px 0;
  border-bottom: 1px solid var(--bh-stone-light);
  font-size: 0.9rem;
  color: var(--bh-ink-mid);
  line-height: 1.4;
  align-items: flex-start;
}
.bh-kit-items li:last-child { border-bottom: none; }
.bh-kit-items li .check { color: var(--bh-green-mid); font-size: 0.875rem; flex-shrink: 0; }
.bh-kit-item-link {
  color: var(--bh-terra-mid);
  font-weight: 600;
  text-decoration: underline;
}
.bh-kit-cta {
  display: block;
  padding: 13px;
  background: var(--bh-terra-mid);
  color: #fff;
  text-align: center;
  font-weight: 700;
  border-radius: 8px;
  font-size: 1rem;
  transition: background var(--trans-fast);
  text-decoration: none;
}
.bh-kit-cta:hover { background: var(--bh-terra-dark); color: #fff; }

@media (max-width: 900px) {
  .bh-kit-cards { grid-template-columns: 1fr; }
}

/* ──────────────────────────────────────────────────────────────
   ABOUT PAGE
   ────────────────────────────────────────────────────────────── */
.bh-about-wrap {
  max-width: 800px;
  margin: 0 auto;
  padding: var(--sp-3xl) var(--sp-xl);
}
.bh-about-intro {
  font-size: 1.1875rem;
  color: var(--bh-ink-mid);
  line-height: 1.8;
  margin-bottom: var(--sp-2xl);
}
.bh-team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-xl);
  margin: var(--sp-2xl) 0;
}
.bh-team-card {
  display: flex;
  gap: var(--sp-lg);
  align-items: flex-start;
}
.bh-team-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--bh-green-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  flex-shrink: 0;
}
.bh-team-info h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--bh-ink-deep);
  margin-bottom: 2px;
}
.bh-team-role {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--bh-terra-mid);
  margin-bottom: var(--sp-sm);
}
.bh-team-bio {
  font-size: 0.875rem;
  color: var(--bh-ink-light);
  line-height: 1.6;
}

@media (max-width: 700px) {
  .bh-team-grid { grid-template-columns: 1fr; }
}

/* ──────────────────────────────────────────────────────────────
   SUBSCRIBE PAGE
   ────────────────────────────────────────────────────────────── */
.bh-subscribe-wrap {
  max-width: 640px;
  margin: 0 auto;
  padding: var(--sp-3xl) var(--sp-xl);
  text-align: center;
}
.bh-subscribe-wrap h1 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--bh-green-deep);
  margin-bottom: var(--sp-md);
  line-height: 1.2;
}
.bh-subscribe-sub {
  font-size: 1.0625rem;
  color: var(--bh-ink-light);
  margin-bottom: var(--sp-2xl);
  line-height: 1.65;
}
.bh-subscribe-form-card {
  background: var(--bh-warm-white);
  border: 1.5px solid var(--bh-stone-mid);
  border-radius: 16px;
  padding: var(--sp-2xl);
  box-shadow: var(--shadow-md);
  text-align: left;
}
.bh-subscribe-form-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--bh-green-deep);
  margin-bottom: var(--sp-lg);
  text-align: center;
}
.bh-form-row {
  margin-bottom: var(--sp-md);
}
.bh-form-row label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--bh-ink-mid);
  margin-bottom: var(--sp-xs);
}
.bh-form-input {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--bh-stone-mid);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--bh-ink-mid);
  background: var(--bh-cream);
  transition: border-color var(--trans-fast);
}
.bh-form-input:focus {
  outline: none;
  border-color: var(--bh-green-mid);
  background: var(--bh-warm-white);
}
.bh-form-submit {
  width: 100%;
  padding: 14px;
  background: var(--bh-green-dark);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: background var(--trans-fast), transform var(--trans-fast);
  margin-top: var(--sp-md);
}
.bh-form-submit:hover {
  background: var(--bh-green-deep);
  transform: translateY(-1px);
}
.bh-form-fine-print {
  font-size: 0.8125rem;
  color: var(--bh-ink-faint);
  text-align: center;
  margin-top: var(--sp-md);
  line-height: 1.5;
}
.bh-benefits {
  list-style: none;
  margin: var(--sp-2xl) 0;
  text-align: left;
}
.bh-benefits li {
  display: flex;
  gap: var(--sp-md);
  align-items: flex-start;
  padding: var(--sp-md) 0;
  border-bottom: 1px solid var(--bh-stone-light);
  font-size: 0.9375rem;
  color: var(--bh-ink-mid);
  line-height: 1.5;
}
.bh-benefits li:last-child { border-bottom: none; }
.bh-benefits .benefit-icon { font-size: 1.25rem; flex-shrink: 0; }
.bh-success-box {
  background: var(--bh-green-pale);
  border: 2px solid var(--bh-green-mid);
  border-radius: 12px;
  padding: var(--sp-xl);
  text-align: center;
}
.bh-success-box .success-icon { font-size: 2.5rem; margin-bottom: var(--sp-md); }
.bh-success-box h3 {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--bh-green-deep);
  margin-bottom: var(--sp-sm);
}
.bh-success-box p {
  font-size: 0.9375rem;
  color: var(--bh-ink-mid);
  line-height: 1.6;
}

/* ──────────────────────────────────────────────────────────────
   CONTACT PAGE
   ────────────────────────────────────────────────────────────── */
.bh-contact-wrap {
  max-width: 720px;
  margin: 0 auto;
  padding: var(--sp-3xl) var(--sp-xl);
}
.bh-contact-wrap h1 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--bh-green-deep);
  margin-bottom: var(--sp-md);
}
.bh-contact-wrap > p {
  font-size: 1.0625rem;
  color: var(--bh-ink-light);
  line-height: 1.65;
  margin-bottom: var(--sp-2xl);
}
.bh-contact-form {
  background: var(--bh-warm-white);
  border: 1.5px solid var(--bh-stone-mid);
  border-radius: 16px;
  padding: var(--sp-2xl);
  box-shadow: var(--shadow-sm);
}
.bh-form-textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--bh-stone-mid);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--bh-ink-mid);
  background: var(--bh-cream);
  resize: vertical;
  min-height: 130px;
  transition: border-color var(--trans-fast);
}
.bh-form-textarea:focus {
  outline: none;
  border-color: var(--bh-green-mid);
  background: var(--bh-warm-white);
}

/* ──────────────────────────────────────────────────────────────
   LEGAL / POLICY PAGES
   ────────────────────────────────────────────────────────────── */
.bh-legal-wrap {
  max-width: 720px;
  margin: 0 auto;
  padding: var(--sp-3xl) var(--sp-xl);
}
.bh-legal-wrap h1 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--bh-green-deep);
  margin-bottom: var(--sp-xl);
  padding-bottom: var(--sp-md);
  border-bottom: 2px solid var(--bh-green-pale);
}
.bh-legal-body {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--bh-ink-mid);
}
.bh-legal-body h2 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--bh-green-deep);
  margin: var(--sp-2xl) 0 var(--sp-md);
}
.bh-legal-body p { margin-bottom: 1.2em; }
.bh-legal-body a { color: var(--bh-green-dark); text-decoration: underline; }

/* ──────────────────────────────────────────────────────────────
   FOOTER NEWSLETTER SIGNUP BAR
   ────────────────────────────────────────────────────────────── */
.bh-signup-bar {
  background: var(--bh-green-deep);
  padding: var(--sp-3xl) 0;
}
.bh-signup-inner {
  max-width: var(--bh-max-w);
  margin: 0 auto;
  padding: 0 var(--sp-xl);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-2xl);
  align-items: center;
}
.bh-signup-headline {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  color: var(--bh-warm-white);
  line-height: 1.2;
  margin-bottom: var(--sp-sm);
}
.bh-signup-sub {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
}
.bh-signup-form {
  display: flex;
  gap: var(--sp-sm);
  flex-wrap: wrap;
}
.bh-signup-form input[type="email"] {
  flex: 1;
  min-width: 200px;
  padding: 12px 16px;
  border: 1.5px solid rgba(255,255,255,0.2);
  border-radius: 8px;
  background: rgba(255,255,255,0.08);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.9375rem;
}
.bh-signup-form input::placeholder { color: rgba(255,255,255,0.4); }
.bh-signup-form input:focus {
  outline: none;
  border-color: rgba(255,255,255,0.5);
}
.bh-signup-form button {
  padding: 12px 22px;
  background: var(--bh-terra-mid);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 700;
  cursor: pointer;
  transition: background var(--trans-fast);
}
.bh-signup-form button:hover { background: var(--bh-terra-dark); }
.bh-signup-fine-print {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
  margin-top: var(--sp-sm);
}

@media (max-width: 700px) {
  .bh-signup-inner { grid-template-columns: 1fr; }
}

/* ──────────────────────────────────────────────────────────────
   FOOTER
   ────────────────────────────────────────────────────────────── */
.bh-footer {
  background: var(--bh-ink-deep);
  color: rgba(255,255,255,0.55);
  padding: var(--sp-3xl) 0 var(--sp-xl);
}
.bh-footer-inner {
  max-width: var(--bh-max-w);
  margin: 0 auto;
  padding: 0 var(--sp-xl);
}
.bh-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--sp-2xl);
  margin-bottom: var(--sp-2xl);
  padding-bottom: var(--sp-2xl);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.bh-footer-brand-name {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--bh-warm-white);
  margin-bottom: var(--sp-sm);
}
.bh-footer-brand-desc {
  font-size: 0.875rem;
  line-height: 1.65;
  margin-bottom: var(--sp-lg);
  max-width: 300px;
}
.bh-footer-col h4 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bh-warm-white);
  margin-bottom: var(--sp-md);
}
.bh-footer-col ul { list-style: none; }
.bh-footer-col ul li { margin-bottom: 8px; }
.bh-footer-col ul a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  transition: color var(--trans-fast);
}
.bh-footer-col ul a:hover { color: var(--bh-terra-light); }
.bh-footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--sp-md);
  font-size: 0.8125rem;
}
.bh-footer-legal a {
  color: rgba(255,255,255,0.4);
  margin-left: var(--sp-md);
  font-size: 0.8125rem;
}
.bh-footer-legal a:hover { color: var(--bh-terra-light); }

@media (max-width: 900px) {
  .bh-footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .bh-footer-grid { grid-template-columns: 1fr; }
  .bh-footer-bottom { flex-direction: column; text-align: center; }
}

/* ──────────────────────────────────────────────────────────────
   EXIT-INTENT POPUP
   ────────────────────────────────────────────────────────────── */
.bh-exit-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(26,22,18,0.7);
  z-index: 9000;
  align-items: center;
  justify-content: center;
  padding: var(--sp-md);
}
.bh-exit-overlay.active { display: flex; }
.bh-exit-popup {
  background: var(--bh-warm-white);
  border-radius: 20px;
  max-width: 520px;
  width: 100%;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.bh-exit-img {
  height: 200px;
  background: linear-gradient(135deg, var(--bh-green-deep) 0%, var(--bh-green-dark) 50%, var(--bh-terra-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
}
.bh-exit-body {
  padding: var(--sp-xl);
  text-align: center;
}
.bh-exit-body h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--bh-green-deep);
  margin-bottom: var(--sp-sm);
}
.bh-exit-body p {
  font-size: 0.9375rem;
  color: var(--bh-ink-light);
  line-height: 1.6;
  margin-bottom: var(--sp-lg);
}
.bh-exit-form {
  display: flex;
  gap: var(--sp-sm);
}
.bh-exit-form input[type="email"] {
  flex: 1;
  padding: 11px 14px;
  border: 1.5px solid var(--bh-stone-mid);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.9375rem;
}
.bh-exit-form button {
  padding: 11px 20px;
  background: var(--bh-terra-mid);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-weight: 700;
  cursor: pointer;
  transition: background var(--trans-fast);
  font-family: var(--font-body);
  font-size: 0.9375rem;
}
.bh-exit-form button:hover { background: var(--bh-terra-dark); }
.bh-exit-close {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(255,255,255,0.2);
  border: none;
  color: #fff;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 1.125rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--trans-fast);
}
.bh-exit-close:hover { background: rgba(255,255,255,0.4); }
.bh-exit-skip {
  display: block;
  margin-top: var(--sp-md);
  font-size: 0.8125rem;
  color: var(--bh-ink-faint);
  cursor: pointer;
  text-decoration: underline;
  background: none;
  border: none;
  width: 100%;
}

/* ──────────────────────────────────────────────────────────────
   DEALS PAGE
   ────────────────────────────────────────────────────────────── */
.bh-deal-badge {
  display: inline-block;
  background: var(--bh-terra-mid);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 4px;
}

/* ──────────────────────────────────────────────────────────────
   UTILITY CLASSES
   ────────────────────────────────────────────────────────────── */
.bh-text-center { text-align: center; }
.bh-mt-xl { margin-top: var(--sp-xl); }
.bh-mt-2xl { margin-top: var(--sp-2xl); }
.bh-mb-xl { margin-bottom: var(--sp-xl); }
.bh-green-accent { color: var(--bh-green-mid); }
.bh-terra-accent { color: var(--bh-terra-mid); }
