/* ===================================================================
   BRENDA HATTINGH MINISTRIES — DESIGN SYSTEM
   Central stylesheet. Change once → update everywhere.
   =================================================================== */

/* ===== CSS VARIABLES ===== */
:root {
  --bhm-forest-green: #2F4F4F;
  --bhm-olive-green: #708238;
  --bhm-sage: #B2AC88;
  --bhm-moss: #8A9A5B;
  --bhm-terracotta: #D16A5C;
  --bhm-cream: #F5F0E1;
  --bhm-cream-light: #FAF8F3;
  --bhm-cream-dark: #E8E2D3;
  --bhm-white: #ffffff;
  --bhm-font-heading: 'Cormorant Garamond', serif;
  --bhm-font-body: 'Montserrat', sans-serif;
  --bhm-radius-sm: 12px;
  --bhm-radius-md: 24px;
  --bhm-radius-lg: 30px;
  --bhm-radius-pill: 50px;
  --bhm-shadow-sm: 0 10px 30px rgba(47, 79, 79, 0.08);
  --bhm-shadow-md: 0 25px 60px rgba(47, 79, 79, 0.1);
  --bhm-shadow-lg: 0 40px 80px rgba(47, 79, 79, 0.16);
  --bhm-shadow-terracotta: 0 10px 40px rgba(209, 106, 92, 0.3);
  --bhm-transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  --bhm-transition-fast: all 0.3s ease;
}

/* Kill Hello Elementor default header & footer */
#site-header,
.site-header,
#site-footer,
.site-footer.dynamic-footer {
  display: none !important;
  height: 0 !important;
  overflow: hidden !important;
  padding: 0 !important;
  margin: 0 !important;
}

/* ===== GLOBAL ===== */
body {
  font-family: var(--bhm-font-body);
  color: var(--bhm-forest-green);
  overflow-x: hidden;
  line-height: 1.6;
  margin: 0;
  padding: 0;
}

html {
  overflow-x: hidden;
  width: 100%;
}

body {
  width: 100%;
}

.bhm-page *, .bhm-header *, .bhm-footer * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Remove Hello Elementor defaults on BHM pages */
.bhm-page .page-header,
.bhm-page .entry-header { display: none; }
.bhm-page .page-content,
.bhm-page .entry-content { padding: 0; margin: 0; }
.bhm-page .site-main { padding: 0; margin: 0; }


/* ===== HEADER ===== */
.bhm-header {
  position: sticky !important;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.2rem 4%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.4s ease;
  background: var(--bhm-cream-light);
  max-width: 100vw;
}

.bhm-header.scrolled {
  background: rgba(245, 240, 225, 0.97);
  backdrop-filter: blur(20px);
  box-shadow: 0 4px 30px rgba(47, 79, 79, 0.08);
  padding: 0.8rem 4%;
}

.bhm-header-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  z-index: 10;
}

.bhm-header-logo img {
  height: 45px;
  width: auto;
  transition: var(--bhm-transition-fast);
}

.bhm-header.scrolled .bhm-header-logo img {
  height: 38px;
}

.bhm-header-logo-text {
  font-family: var(--bhm-font-heading);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--bhm-forest-green);
  line-height: 1.2;
  letter-spacing: 0.5px;
}

.bhm-header-logo-text small {
  display: block;
  font-family: var(--bhm-font-body);
  font-size: 0.6rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 400;
  color: var(--bhm-moss);
  margin-top: 2px;
}

/* Nav */
.bhm-nav {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.bhm-nav a {
  text-decoration: none;
  color: var(--bhm-forest-green);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  position: relative;
  transition: color 0.3s ease;
}

.bhm-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--bhm-terracotta);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

.bhm-nav a:hover {
  color: var(--bhm-terracotta);
}

.bhm-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.bhm-nav-cta {
  background: var(--bhm-terracotta) !important;
  color: white !important;
  padding: 0.7rem 1.8rem;
  border-radius: var(--bhm-radius-pill);
  font-size: 0.75rem !important;
  letter-spacing: 2px !important;
  transition: var(--bhm-transition) !important;
  box-shadow: var(--bhm-shadow-terracotta);
}

.bhm-nav-cta::after { display: none !important; }

.bhm-nav-cta:hover {
  background: var(--bhm-forest-green) !important;
  transform: translateY(-2px);
}

/* Mobile hamburger */
.bhm-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 10;
  padding: 8px;
  background: none;
  border: none;
}

.bhm-hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--bhm-forest-green);
  transition: var(--bhm-transition-fast);
  border-radius: 2px;
}

.bhm-hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translateY(10px);
}
.bhm-hamburger.active span:nth-child(2) {
  opacity: 0;
}
.bhm-hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translateY(-10px);
}

/* Mobile nav overlay */
.bhm-mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--bhm-cream-light);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.bhm-mobile-nav.open {
  opacity: 1;
  pointer-events: auto;
}

.bhm-mobile-nav a {
  text-decoration: none;
  color: var(--bhm-forest-green);
  font-family: var(--bhm-font-heading);
  font-size: 2rem;
  font-weight: 400;
  transition: color 0.3s ease;
}

.bhm-mobile-nav a:hover {
  color: var(--bhm-terracotta);
}


/* ===== FOOTER ===== */
.bhm-footer {
  background: var(--bhm-forest-green);
  color: var(--bhm-cream);
  padding: 5rem 4% 2rem;
}

.bhm-footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(245, 240, 225, 0.1);
}

.bhm-footer-brand {
  max-width: 320px;
}

.bhm-footer-brand-name {
  font-family: var(--bhm-font-heading);
  font-size: 1.6rem;
  font-weight: 500;
  margin-bottom: 1rem;
  color: var(--bhm-cream);
}

.bhm-footer-brand p {
  font-size: 0.92rem;
  line-height: 1.8;
  opacity: 0.7;
  margin-bottom: 1.5rem;
}

.bhm-footer-social {
  display: flex;
  gap: 1rem;
}

.bhm-footer-social a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(245, 240, 225, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: var(--bhm-transition-fast);
}

.bhm-footer-social a:hover {
  background: var(--bhm-terracotta);
  border-color: var(--bhm-terracotta);
}

.bhm-footer-social a svg {
  width: 18px;
  height: 18px;
  stroke: var(--bhm-cream);
  fill: none;
}

.bhm-footer-col h4 {
  font-family: var(--bhm-font-heading);
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  color: var(--bhm-cream);
}

.bhm-footer-col a {
  display: block;
  text-decoration: none;
  color: var(--bhm-cream);
  opacity: 0.6;
  font-size: 0.88rem;
  line-height: 2.4;
  transition: all 0.3s ease;
}

.bhm-footer-col a:hover {
  opacity: 1;
  color: var(--bhm-terracotta);
  padding-left: 5px;
}

.bhm-footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  font-size: 0.78rem;
  opacity: 0.5;
}

.bhm-footer-bottom a {
  color: var(--bhm-cream);
  text-decoration: none;
}

.bhm-footer-bottom a:hover {
  color: var(--bhm-terracotta);
  opacity: 1;
}

.bhm-footer-verse {
  font-family: var(--bhm-font-heading);
  font-style: italic;
  font-size: 0.9rem;
}


/* ===== CURSOR GLOW ===== */
.bhm-cursor-glow {
  position: fixed;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(178, 172, 136, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease;
  opacity: 0;
}

/* ===== PAGE LOAD ===== */
.bhm-wrapper { opacity: 0; transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1); }
.bhm-wrapper.loaded { opacity: 1; }

/* ===== SCROLL ANIMATIONS ===== */
.bhm-animate { opacity: 0; transform: translateY(60px); transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1); }
.bhm-animate.in-view { opacity: 1; transform: translateY(0); }
.bhm-animate.delay-1 { transition-delay: 0.12s; }
.bhm-animate.delay-2 { transition-delay: 0.24s; }
.bhm-animate.delay-3 { transition-delay: 0.36s; }
.bhm-animate.delay-4 { transition-delay: 0.48s; }
.bhm-animate.delay-5 { transition-delay: 0.6s; }
.bhm-animate.delay-6 { transition-delay: 0.72s; }
.bhm-animate.from-left { transform: translateX(-80px); }
.bhm-animate.from-left.in-view { transform: translateX(0); }
.bhm-animate.from-right { transform: translateX(80px); }
.bhm-animate.from-right.in-view { transform: translateX(0); }
.bhm-animate.scale-in { transform: scale(0.85); }
.bhm-animate.scale-in.in-view { transform: scale(1); }


/* ===== SHARED COMPONENTS ===== */
.bhm-label { display: inline-flex; align-items: center; gap: 1rem; color: var(--bhm-moss); font-size: 0.78rem; letter-spacing: 4px; text-transform: uppercase; margin-bottom: 1.5rem; font-weight: 600; }
.bhm-label::before { content: ''; width: 50px; height: 2px; background: linear-gradient(90deg, transparent, var(--bhm-moss)); }

.bhm-btn-primary { display: inline-flex; align-items: center; gap: 0.75rem; background: var(--bhm-terracotta); color: white; padding: 1.15rem 2.8rem; border-radius: var(--bhm-radius-pill); text-decoration: none; font-weight: 500; letter-spacing: 2px; text-transform: uppercase; font-size: 0.82rem; transition: var(--bhm-transition); position: relative; overflow: hidden; box-shadow: var(--bhm-shadow-terracotta); }
.bhm-btn-primary::before { content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent); transition: left 0.6s ease; }
.bhm-btn-primary:hover { transform: translateY(-5px) scale(1.02); box-shadow: 0 20px 50px rgba(209, 106, 92, 0.4); background: var(--bhm-forest-green); color: white; text-decoration: none; }
.bhm-btn-primary:hover::before { left: 100%; }
.bhm-btn-primary svg { transition: transform 0.3s ease; }
.bhm-btn-primary:hover svg { transform: translateX(5px); }

.bhm-btn-light { display: inline-flex; align-items: center; gap: 0.75rem; background: var(--bhm-cream); color: var(--bhm-forest-green); padding: 1rem 2.5rem; border-radius: var(--bhm-radius-pill); text-decoration: none; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; font-size: 0.82rem; transition: var(--bhm-transition); box-shadow: 0 10px 30px rgba(0,0,0,0.15); }
.bhm-btn-light:hover { background: var(--bhm-terracotta); color: white; transform: translateY(-4px); box-shadow: 0 20px 50px rgba(209,106,92,0.3); text-decoration: none; }

.bhm-text-link { display: inline-flex; align-items: center; gap: 1rem; color: var(--bhm-forest-green); text-decoration: none; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; font-size: 0.82rem; transition: all 0.4s ease; position: relative; padding-bottom: 5px; margin-top: 1rem; }
.bhm-text-link::after { content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 2px; background: var(--bhm-terracotta); transform: scaleX(0); transform-origin: right; transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1); }
.bhm-text-link:hover::after { transform: scaleX(1); transform-origin: left; }
.bhm-text-link:hover { color: var(--bhm-terracotta); text-decoration: none; }
.bhm-text-link svg { transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1); }
.bhm-text-link:hover svg { transform: translateX(8px); }


/* ===== HERO — SPLIT LAYOUT ===== */
.bhm-hero { min-height: 100vh; display: grid; grid-template-columns: 1fr 1fr; position: relative; overflow: hidden; margin-top: 0; }
.bhm-hero-left { display: flex; flex-direction: column; justify-content: center; padding: 10rem 5rem 6rem 6rem; position: relative; z-index: 2; background: var(--bhm-cream-light); }
.bhm-hero-left::before { content: ''; position: absolute; top: -10%; right: -5%; width: 55%; height: 120%; background: radial-gradient(ellipse at center, rgba(178, 172, 136, 0.12) 0%, transparent 70%); pointer-events: none; z-index: 0; }
.bhm-hero-left::after { content: ''; position: absolute; bottom: 5%; left: 8%; width: 200px; height: 200px; border: 2px solid rgba(178, 172, 136, 0.15); border-radius: 50%; pointer-events: none; z-index: 0; }

.bhm-hero-badge { display: inline-block; color: var(--bhm-moss); font-size: 0.78rem; letter-spacing: 4px; text-transform: uppercase; margin-bottom: 2rem; font-weight: 600; position: relative; z-index: 1; opacity: 0; transform: translateY(20px); animation: bhmFadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards 0.3s; }
.bhm-hero-badge::before { content: ''; display: inline-block; width: 40px; height: 2px; background: linear-gradient(90deg, transparent, var(--bhm-moss)); margin-right: 1rem; vertical-align: middle; }

.bhm-hero-title { font-family: var(--bhm-font-heading); font-size: clamp(3rem, 5.5vw, 5.5rem); font-weight: 400; color: var(--bhm-forest-green); line-height: 1.08; margin-bottom: 1.8rem; position: relative; z-index: 1; opacity: 0; transform: translateY(40px); animation: bhmFadeUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards 0.5s; }
.bhm-hero-title span { font-style: italic; color: var(--bhm-terracotta); position: relative; display: inline-block; }
.bhm-hero-title span::after { content: ''; position: absolute; bottom: 4px; left: 0; width: 100%; height: 3px; background: var(--bhm-terracotta); transform: scaleX(0); transform-origin: left; animation: bhmUnderline 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards 1.5s; }

.bhm-hero-tagline { font-family: var(--bhm-font-heading); font-size: 1.2rem; font-style: italic; color: var(--bhm-sage); letter-spacing: 1px; margin-bottom: 1.8rem; position: relative; z-index: 1; opacity: 0; transform: translateY(30px); animation: bhmFadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards 0.75s; }
.bhm-hero-subtitle { font-size: 1.05rem; color: var(--bhm-forest-green); opacity: 0; max-width: 520px; line-height: 1.9; transform: translateY(40px); animation: bhmFadeUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards 0.9s; font-weight: 300; margin-bottom: 2.8rem; position: relative; z-index: 1; }
.bhm-hero-cta { align-self: flex-start; z-index: 1; opacity: 0; transform: translateY(40px); animation: bhmFadeUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards 1.1s; }

.bhm-hero-right { position: relative; overflow: hidden; z-index: 1; }
.bhm-hero-right img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 8s cubic-bezier(0.16, 1, 0.3, 1); }
.bhm-hero-right:hover img { transform: scale(1.04); }
.bhm-hero-right::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(47, 79, 79, 0.05) 0%, rgba(47, 79, 79, 0.1) 70%, rgba(47, 79, 79, 0.25) 100%); pointer-events: none; }

.bhm-hero-corner-accent { position: absolute; bottom: 3rem; left: 3rem; z-index: 5; opacity: 0; animation: bhmFadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards 1.3s; }
.bhm-hero-accent-line { width: 60px; height: 3px; background: var(--bhm-cream); margin-bottom: 1rem; opacity: 0.7; }
.bhm-hero-accent-text { font-family: var(--bhm-font-heading); font-size: 0.85rem; font-style: italic; color: var(--bhm-cream); letter-spacing: 2px; opacity: 0.8; text-transform: uppercase; }

.bhm-scroll-indicator { position: absolute; bottom: 2.5rem; left: calc(50% - 15px); z-index: 10; opacity: 0; animation: bhmFadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards 1.5s; }
.bhm-scroll-pill { width: 28px; height: 46px; border: 2px solid var(--bhm-sage); border-radius: 20px; position: relative; opacity: 0.5; }
.bhm-scroll-pill::before { content: ''; position: absolute; top: 8px; left: 50%; transform: translateX(-50%); width: 3px; height: 8px; background: var(--bhm-sage); border-radius: 2px; animation: bhmScrollBounce 1.5s ease-in-out infinite; }


/* ===== BANNER ===== */
.bhm-banner { background: var(--bhm-forest-green); padding: 1.25rem 0; overflow: hidden; position: relative; }
.bhm-banner::before, .bhm-banner::after { content: ''; position: absolute; top: 0; bottom: 0; width: 100px; z-index: 2; pointer-events: none; }
.bhm-banner::before { left: 0; background: linear-gradient(90deg, var(--bhm-forest-green), transparent); }
.bhm-banner::after { right: 0; background: linear-gradient(-90deg, var(--bhm-forest-green), transparent); }
.bhm-banner-track { display: flex; animation: bhmScrollText 25s linear infinite; }
.bhm-banner-track:hover { animation-play-state: paused; }
.bhm-banner-item { display: flex; align-items: center; white-space: nowrap; padding: 0 2.5rem; color: var(--bhm-cream); font-family: var(--bhm-font-heading); font-size: 1.4rem; font-style: italic; letter-spacing: 4px; transition: color 0.3s ease; }
.bhm-banner-item:hover { color: var(--bhm-terracotta); }
.bhm-banner-item::after { content: ''; width: 8px; height: 8px; background: var(--bhm-sage); border-radius: 50%; margin-left: 2.5rem; opacity: 0.6; flex-shrink: 0; }


/* ===== ABOUT ===== */
.bhm-about { padding: 8rem 4%; background: var(--bhm-cream-light); position: relative; overflow: hidden; }
.bhm-about::before { content: 'BRENDA'; position: absolute; top: 12%; left: -5%; font-family: var(--bhm-font-heading); font-size: 18vw; font-weight: 700; color: var(--bhm-sage); opacity: 0.04; pointer-events: none; white-space: nowrap; }
.bhm-about-grid { max-width: 1400px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; }
.bhm-about-img { position: relative; z-index: 2; }
.bhm-about-img img { width: 100%; border-radius: 300px 300px 30px 30px; box-shadow: 0 40px 80px rgba(47, 79, 79, 0.2); transition: var(--bhm-transition); }
.bhm-about-img:hover img { transform: scale(1.02) translateY(-10px); box-shadow: 0 60px 100px rgba(47, 79, 79, 0.25); }
.bhm-about-frame { position: absolute; top: -25px; left: -25px; right: 25px; bottom: 25px; border: 3px solid var(--bhm-sage); border-radius: 300px 300px 30px 30px; z-index: 1; transition: var(--bhm-transition); }
.bhm-about-img:hover .bhm-about-frame { top: -35px; left: -35px; border-color: var(--bhm-terracotta); }
.bhm-about-badge { position: absolute; bottom: 15%; right: -10%; background: linear-gradient(135deg, var(--bhm-terracotta), #c55a4c); color: white; padding: 2rem; border-radius: 50%; width: 150px; height: 150px; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; z-index: 3; box-shadow: 0 20px 50px rgba(209, 106, 92, 0.4); animation: bhmBadgePulse 3s ease-in-out infinite; }
.bhm-about-badge span { font-family: var(--bhm-font-heading); font-size: 2.5rem; font-weight: 700; line-height: 1; }
.bhm-about-badge small { font-size: 0.68rem; text-transform: uppercase; letter-spacing: 1px; margin-top: 0.25rem; opacity: 0.9; }
.bhm-about-content { padding-right: 2rem; }
.bhm-about-title { font-family: var(--bhm-font-heading); font-size: clamp(2.5rem, 4vw, 3.8rem); font-weight: 400; color: var(--bhm-forest-green); line-height: 1.15; margin-bottom: 2rem; }
.bhm-about-title em { font-style: italic; color: var(--bhm-olive-green); }
.bhm-about-text { font-size: 1.02rem; line-height: 2; color: var(--bhm-forest-green); opacity: 0.8; margin-bottom: 1.5rem; }
.bhm-about-quote { font-family: var(--bhm-font-heading); font-size: 1.2rem; font-style: italic; color: var(--bhm-olive-green); line-height: 1.8; margin: 2rem 0; padding-left: 1.5rem; border-left: 3px solid var(--bhm-terracotta); }


/* ===== LEAD MAGNET ===== */
.bhm-lead-magnet { background: linear-gradient(145deg, var(--bhm-forest-green) 0%, #1a3535 100%); padding: 7rem 4%; position: relative; overflow: hidden; }
.bhm-lead-magnet::before { content: ''; position: absolute; top: -50%; right: -20%; width: 80%; height: 200%; background: radial-gradient(circle, var(--bhm-olive-green) 0%, transparent 70%); opacity: 0.1; animation: bhmPulseGlow 8s ease-in-out infinite; }
.bhm-lead-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1.2fr; gap: 5rem; align-items: center; }
.bhm-device { position: relative; transform-style: preserve-3d; animation: bhmFloatDevice 6s ease-in-out infinite; }
.bhm-device:hover { animation-play-state: paused; }
.bhm-device img { width: 100%; max-width: 420px; filter: drop-shadow(0 40px 80px rgba(0,0,0,0.4)); border-radius: 20px; }
.bhm-free-badge { position: absolute; top: -15px; left: -15px; background: linear-gradient(135deg, var(--bhm-terracotta), #c55a4c); color: white; width: 90px; height: 90px; border-radius: 50%; display: flex; flex-direction: column; align-items: center; justify-content: center; font-size: 0.7rem; text-transform: uppercase; letter-spacing: 1px; font-weight: 600; animation: bhmBadgeBounce 2s ease-in-out infinite; z-index: 10; box-shadow: 0 15px 40px rgba(209, 106, 92, 0.5); }
.bhm-lead-content { color: var(--bhm-cream); }
.bhm-lead-title { font-family: var(--bhm-font-heading); font-size: clamp(2.2rem, 4vw, 3.2rem); font-weight: 400; margin-bottom: 1.5rem; line-height: 1.25; }
.bhm-lead-text { font-size: 1.05rem; line-height: 1.9; opacity: 0.85; margin-bottom: 2.5rem; }
.bhm-lead-form { display: flex; gap: 1rem; flex-wrap: wrap; }
.bhm-lead-form input { flex: 1; min-width: 260px; padding: 1.1rem 1.8rem; border: 2px solid rgba(255,255,255,0.15); border-radius: var(--bhm-radius-pill); background: rgba(255,255,255,0.08); color: white; font-size: 1rem; font-family: var(--bhm-font-body); transition: var(--bhm-transition); backdrop-filter: blur(10px); }
.bhm-lead-form input::placeholder { color: rgba(255,255,255,0.5); }
.bhm-lead-form input:focus { outline: none; border-color: var(--bhm-sage); background: rgba(255,255,255,0.12); transform: scale(1.02); }
.bhm-lead-form button { padding: 1.1rem 2.8rem; background: var(--bhm-cream); color: var(--bhm-forest-green); border: none; border-radius: var(--bhm-radius-pill); font-weight: 600; letter-spacing: 2px; text-transform: uppercase; font-size: 0.82rem; cursor: pointer; font-family: var(--bhm-font-body); transition: var(--bhm-transition); position: relative; overflow: hidden; }
.bhm-lead-form button::before { content: ''; position: absolute; inset: 0; background: var(--bhm-terracotta); transform: translateX(-100%); transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1); }
.bhm-lead-form button span { position: relative; z-index: 1; }
.bhm-lead-form button:hover { color: white; transform: translateY(-3px); box-shadow: 0 20px 50px rgba(0,0,0,0.3); }
.bhm-lead-form button:hover::before { transform: translateX(0); }


/* ===== SERVICES ===== */
.bhm-services { padding: 8rem 4%; background: var(--bhm-cream-light); position: relative; }
.bhm-services-header { text-align: center; max-width: 750px; margin: 0 auto 5rem; position: relative; z-index: 2; }
.bhm-services-title { font-family: var(--bhm-font-heading); font-size: clamp(2.5rem, 5vw, 4rem); color: var(--bhm-forest-green); font-weight: 400; margin-bottom: 1.2rem; position: relative; display: inline-block; }
.bhm-services-title .bhm-spin-word { display: inline-block; animation: bhmSubtleSpin 6s ease-in-out infinite; transform-origin: center center; }
.bhm-services-title::after { content: ''; display: block; width: 80px; height: 3px; background: linear-gradient(90deg, var(--bhm-sage), var(--bhm-terracotta)); margin: 1rem auto 0; border-radius: 2px; }
.bhm-services-sub { color: var(--bhm-forest-green); opacity: 0.7; font-size: 1.05rem; line-height: 1.8; margin-top: 1rem; }
.bhm-services-grid { max-width: 1300px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.bhm-svc-card { background: var(--bhm-cream); border-radius: var(--bhm-radius-md); padding: 2.8rem 2rem; text-align: center; position: relative; overflow: hidden; transition: var(--bhm-transition); border: 1px solid rgba(47,79,79,0.04); }
.bhm-svc-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--bhm-sage), var(--bhm-terracotta)); transform: scaleX(0); transform-origin: left; transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1); }
.bhm-svc-card:hover::before { transform: scaleX(1); }
.bhm-svc-card:hover { transform: translateY(-10px); box-shadow: var(--bhm-shadow-md); }
.bhm-svc-icon { width: 68px; height: 68px; border-radius: 50%; background: var(--bhm-cream-light); margin: 0 auto 1.5rem; display: flex; align-items: center; justify-content: center; transition: all 0.4s ease; border: 1px solid rgba(47,79,79,0.06); }
.bhm-svc-icon svg { width: 28px; height: 28px; stroke: var(--bhm-forest-green); fill: none; transition: stroke 0.4s ease; }
.bhm-svc-card:hover .bhm-svc-icon { background: var(--bhm-forest-green); border-color: var(--bhm-forest-green); }
.bhm-svc-card:hover .bhm-svc-icon svg { stroke: var(--bhm-cream); }
.bhm-svc-card h3 { font-family: var(--bhm-font-heading); font-size: 1.5rem; font-weight: 500; color: var(--bhm-forest-green); margin-bottom: 0.8rem; }
.bhm-svc-card p { font-size: 0.88rem; color: var(--bhm-forest-green); opacity: 0.65; line-height: 1.8; }


/* ===== MANTLE CTA ===== */
.bhm-mantle { padding: 7rem 4%; background: linear-gradient(135deg, var(--bhm-olive-green) 0%, var(--bhm-forest-green) 100%); position: relative; overflow: hidden; }
.bhm-mantle::before { content: ''; position: absolute; top: -50%; right: -20%; width: 800px; height: 800px; border-radius: 50%; background: radial-gradient(circle, rgba(245,240,225,0.06) 0%, transparent 70%); pointer-events: none; }
.bhm-mantle-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.bhm-mantle-content { color: var(--bhm-cream); }
.bhm-mantle-title { font-family: var(--bhm-font-heading); font-size: clamp(2.2rem, 4vw, 3.2rem); font-weight: 400; line-height: 1.25; margin-bottom: 1.5rem; }
.bhm-mantle-title em { font-style: italic; color: var(--bhm-sage); }
.bhm-mantle-text { font-size: 1.02rem; line-height: 1.9; opacity: 0.85; margin-bottom: 2.5rem; }
.bhm-mantle-img-frame img { width: 100%; border-radius: var(--bhm-radius-lg); box-shadow: 0 30px 60px rgba(0,0,0,0.3); transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1); }
.bhm-mantle-img-frame:hover img { transform: scale(1.02); }


/* ===== PATHS ===== */
.bhm-paths { padding: 8rem 4%; background: var(--bhm-cream); position: relative; }
.bhm-paths::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 200px; background: linear-gradient(to bottom, var(--bhm-cream-light), var(--bhm-cream)); }
.bhm-paths-header { text-align: center; max-width: 750px; margin: 0 auto 5rem; position: relative; z-index: 2; }
.bhm-paths-title { font-family: var(--bhm-font-heading); font-size: clamp(2.5rem, 5vw, 4rem); color: var(--bhm-forest-green); font-weight: 400; margin-bottom: 1rem; font-style: italic; }
.bhm-paths-sub { color: var(--bhm-forest-green); opacity: 0.7; font-size: 1.1rem; line-height: 1.8; }
.bhm-paths-cards { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr auto 1fr; gap: 3rem; align-items: center; position: relative; z-index: 2; }
.bhm-path-card { background: white; border-radius: var(--bhm-radius-lg); overflow: hidden; box-shadow: var(--bhm-shadow-md); transition: var(--bhm-transition); position: relative; }
.bhm-path-card::before { content: ''; position: absolute; inset: 0; border: 3px solid transparent; border-radius: var(--bhm-radius-lg); transition: border-color 0.4s ease; pointer-events: none; z-index: 10; }
.bhm-path-card:hover::before { border-color: var(--bhm-sage); }
.bhm-path-card:hover { transform: translateY(-12px) scale(1.01); box-shadow: var(--bhm-shadow-lg); }
.bhm-path-badge { position: absolute; top: 1.5rem; left: 1.5rem; background: linear-gradient(135deg, var(--bhm-terracotta), #c55a4c); color: white; padding: 0.6rem 1.2rem; border-radius: var(--bhm-radius-pill); font-size: 0.68rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; z-index: 5; box-shadow: 0 10px 30px rgba(209, 106, 92, 0.4); }
.bhm-path-img { position: relative; height: 280px; overflow: hidden; }
.bhm-path-img::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(47, 79, 79, 0.25), transparent 50%); }
.bhm-path-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1); }
.bhm-path-card:hover .bhm-path-img img { transform: scale(1.08); }
.bhm-path-body { padding: 2rem; text-align: center; }
.bhm-path-body h3 { font-family: var(--bhm-font-heading); font-size: 1.8rem; color: var(--bhm-forest-green); margin-bottom: 0.8rem; }
.bhm-path-body p { font-size: 0.92rem; color: var(--bhm-forest-green); opacity: 0.7; line-height: 1.8; margin-bottom: 1.5rem; }
.bhm-path-btn { display: inline-flex; align-items: center; gap: 0.75rem; background: var(--bhm-sage); color: var(--bhm-forest-green); padding: 0.9rem 2rem; border-radius: var(--bhm-radius-pill); text-decoration: none; font-weight: 600; font-size: 0.78rem; letter-spacing: 2px; text-transform: uppercase; transition: var(--bhm-transition); position: relative; overflow: hidden; }
.bhm-path-btn::before { content: ''; position: absolute; inset: 0; background: var(--bhm-forest-green); transform: translateY(100%); transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1); }
.bhm-path-btn span { position: relative; z-index: 1; display: flex; align-items: center; gap: 0.75rem; }
.bhm-path-btn:hover { color: var(--bhm-cream); transform: scale(1.05); text-decoration: none; }
.bhm-path-btn:hover::before { transform: translateY(0); }
.bhm-paths-divider { font-family: var(--bhm-font-heading); font-size: 3.5rem; font-style: italic; color: var(--bhm-sage); text-transform: lowercase; }


/* ===== TESTIMONIALS ===== */
.bhm-testimonials { padding: 8rem 4%; background: var(--bhm-forest-green); position: relative; overflow: hidden; }
.bhm-testimonials::before { content: '\201C'; position: absolute; top: 0; left: 50%; transform: translateX(-50%); font-family: var(--bhm-font-heading); font-size: 45vw; color: var(--bhm-olive-green); opacity: 0.07; line-height: 0.8; pointer-events: none; }
.bhm-test-header { text-align: center; margin-bottom: 4rem; position: relative; z-index: 2; }
.bhm-test-title { font-family: var(--bhm-font-heading); font-size: clamp(2rem, 4vw, 3.2rem); color: var(--bhm-cream); font-weight: 400; }
.bhm-test-slider { max-width: 900px; margin: 0 auto; position: relative; z-index: 2; min-height: 250px; }
.bhm-test-slide { text-align: center; opacity: 0; transform: translateY(25px) scale(0.96); transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1); position: absolute; width: 100%; pointer-events: none; }
.bhm-test-slide.active { opacity: 1; transform: translateY(0) scale(1); position: relative; pointer-events: auto; }
.bhm-test-quote { font-family: var(--bhm-font-heading); font-size: clamp(1.4rem, 3vw, 2rem); font-style: italic; color: var(--bhm-cream); line-height: 1.7; margin-bottom: 2.5rem; }
.bhm-test-author { color: var(--bhm-terracotta); font-weight: 600; letter-spacing: 3px; text-transform: uppercase; font-size: 0.85rem; margin-bottom: 0.4rem; }
.bhm-test-role { color: var(--bhm-cream); opacity: 0.5; font-size: 0.82rem; letter-spacing: 1px; }
.bhm-test-dots { display: flex; justify-content: center; gap: 0.8rem; margin-top: 3rem; }
.bhm-test-dot { width: 12px; height: 12px; border-radius: 50%; background: var(--bhm-olive-green); opacity: 0.3; cursor: pointer; transition: var(--bhm-transition); border: none; position: relative; }
.bhm-test-dot::before { content: ''; position: absolute; inset: -4px; border: 2px solid var(--bhm-cream); border-radius: 50%; opacity: 0; transform: scale(0.5); transition: var(--bhm-transition); }
.bhm-test-dot.active { opacity: 1; background: var(--bhm-cream); transform: scale(1.2); }
.bhm-test-dot.active::before { opacity: 1; transform: scale(1); }
.bhm-test-dot:hover { opacity: 0.8; }


/* ===== CTA ===== */
.bhm-cta { position: relative; padding: 10rem 4%; background: var(--bhm-cream); overflow: hidden; }
.bhm-cta-bg { position: absolute; inset: 0; }
.bhm-cta-bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.12; filter: grayscale(30%); }
.bhm-cta-shapes { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.bhm-cta-shape { position: absolute; border-radius: 50%; opacity: 0.1; }
.bhm-cta-shape-1 { width: 500px; height: 500px; background: var(--bhm-sage); top: -20%; right: -10%; animation: bhmFloatRotate 25s ease-in-out infinite; }
.bhm-cta-shape-2 { width: 300px; height: 300px; background: var(--bhm-terracotta); bottom: -10%; left: -5%; animation: bhmFloatRotate 20s ease-in-out infinite reverse; }
.bhm-cta-inner { position: relative; z-index: 2; max-width: 850px; margin: 0 auto; text-align: center; color: var(--bhm-forest-green); }
.bhm-cta-title { font-family: var(--bhm-font-heading); font-size: clamp(2.5rem, 5vw, 4.2rem); font-weight: 400; margin-bottom: 1.5rem; line-height: 1.15; }
.bhm-cta-title em { font-style: italic; color: var(--bhm-terracotta); }
.bhm-cta-text { font-size: 1.1rem; opacity: 0.75; margin-bottom: 3rem; line-height: 1.9; }
.bhm-cta-btn { display: inline-flex; align-items: center; gap: 1rem; background: linear-gradient(135deg, var(--bhm-terracotta), #c55a4c); color: white; padding: 1.3rem 3.2rem; border-radius: var(--bhm-radius-pill); text-decoration: none; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; font-size: 0.88rem; transition: var(--bhm-transition); box-shadow: 0 15px 50px rgba(209, 106, 92, 0.35); position: relative; overflow: hidden; }
.bhm-cta-btn::before { content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent); transition: left 0.6s ease; }
.bhm-cta-btn:hover { transform: translateY(-6px) scale(1.02); box-shadow: 0 25px 60px rgba(209, 106, 92, 0.45); color: white; text-decoration: none; }
.bhm-cta-btn:hover::before { left: 100%; }
.bhm-cta-btn svg { transition: transform 0.3s ease; }
.bhm-cta-btn:hover svg { transform: translateX(5px); }


/* ===== KEYFRAMES ===== */
@keyframes bhmFadeUp { to { opacity: 1; transform: translateY(0) scale(1); } }
@keyframes bhmUnderline { to { transform: scaleX(1); } }
@keyframes bhmScrollBounce { 0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; } 50% { transform: translateX(-50%) translateY(14px); opacity: 0.3; } }
@keyframes bhmScrollText { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
@keyframes bhmBadgePulse { 0%, 100% { transform: scale(1) rotate(0deg); } 50% { transform: scale(1.05) rotate(3deg); } }
@keyframes bhmBadgeBounce { 0%, 100% { transform: translateY(0) rotate(-10deg); } 50% { transform: translateY(-15px) rotate(-5deg); } }
@keyframes bhmFloatDevice { 0%, 100% { transform: translateY(0) rotateY(-5deg) rotateX(5deg); } 50% { transform: translateY(-20px) rotateY(-3deg) rotateX(3deg); } }
@keyframes bhmPulseGlow { 0%, 100% { transform: scale(1); opacity: 0.1; } 50% { transform: scale(1.1); opacity: 0.15; } }
@keyframes bhmSubtleSpin { 0%, 100% { transform: rotate(0deg) scale(1); } 25% { transform: rotate(1.5deg) scale(1.01); } 50% { transform: rotate(0deg) scale(1.02); } 75% { transform: rotate(-1.5deg) scale(1.01); } }
@keyframes bhmFloatRotate { 0%, 100% { transform: translateY(0) rotate(0deg) scale(1); } 25% { transform: translateY(-30px) rotate(5deg) scale(1.05); } 50% { transform: translateY(-15px) rotate(-3deg) scale(0.95); } 75% { transform: translateY(-25px) rotate(3deg) scale(1.02); } }


/* ===== RESPONSIVE — TABLET ===== */
@media (max-width: 1024px) {
  .bhm-hero { grid-template-columns: 1fr; grid-template-rows: auto auto; min-height: auto; }
  .bhm-hero-left { padding: 7rem 4rem 4rem; order: 0; }
  .bhm-hero-right { order: 1; min-height: 50vh; }
  .bhm-hero-title { font-size: clamp(2.8rem, 7vw, 4rem); }
  .bhm-hero-corner-accent { display: none; }
  .bhm-scroll-indicator { display: none; }
  .bhm-about-grid { grid-template-columns: 1fr; gap: 4rem; }
  .bhm-about-img-wrap { max-width: 500px; margin: 0 auto; }
  .bhm-lead-grid { grid-template-columns: 1fr; text-align: center; }
  .bhm-lead-img { order: -1; }
  .bhm-services-grid { grid-template-columns: repeat(2, 1fr); }
  .bhm-mantle-grid { grid-template-columns: 1fr; text-align: center; }
  .bhm-mantle-img { order: -1; }
  .bhm-paths-cards { grid-template-columns: 1fr; max-width: 500px; margin-left: auto; margin-right: auto; }
  .bhm-paths-divider { display: none; }
  .bhm-footer-grid { grid-template-columns: 1fr 1fr; }
}

/* ===== RESPONSIVE — MOBILE ===== */
@media (max-width: 768px) {
  .bhm-cursor-glow { display: none; }
  .bhm-nav { display: none; }
  .bhm-hamburger { display: flex; }
  .bhm-mobile-nav { display: flex; }
  .bhm-hero { grid-template-rows: auto 45vh; }
  .bhm-hero-left { padding: 5rem 1.5rem 3.5rem; order: 0; overflow: hidden; }
  .bhm-hero-left::after { display: none; }
  .bhm-hero-right { order: 1; }
  .bhm-hero-badge { font-size: 0.7rem; letter-spacing: 3px; margin-bottom: 1.5rem; }
  .bhm-hero-title { font-size: 2.6rem; margin-bottom: 1.2rem; line-height: 1.1; }
  .bhm-hero-tagline { font-size: 1.05rem; margin-bottom: 1.2rem; }
  .bhm-hero-subtitle { font-size: 1rem; line-height: 1.8; margin-bottom: 2.2rem; }
  .bhm-banner { padding: 1rem 0; }
  .bhm-banner-item { font-size: 1.2rem; padding: 0 1.8rem; letter-spacing: 3px; }
  .bhm-banner-item::after { margin-left: 1.8rem; width: 6px; height: 6px; }
  .bhm-about { padding: 5rem 5%; }
  .bhm-about-title { font-size: 2.4rem; }
  .bhm-about-text { font-size: 1.05rem; line-height: 1.9; }
  .bhm-about-quote { font-size: 1.15rem; line-height: 1.75; }
  .bhm-about-badge { right: 5%; width: 120px; height: 120px; }
  .bhm-about-badge span { font-size: 2rem; }
  .bhm-about-badge small { font-size: 0.62rem; }
  .bhm-about-content { padding-right: 0; }
  .bhm-about-frame { top: -15px; left: -15px; right: 15px; bottom: 15px; }
  .bhm-lead-magnet { padding: 5rem 5%; }
  .bhm-lead-title { font-size: 2.2rem; }
  .bhm-lead-text { font-size: 1.05rem; }
  .bhm-lead-form { flex-direction: column; }
  .bhm-lead-form input { min-width: 100%; padding: 1.1rem 1.5rem; font-size: 1rem; }
  .bhm-lead-form button { padding: 1.1rem 2.2rem; font-size: 0.85rem; width: 100%; }
  .bhm-device img { max-width: 320px; margin: 0 auto; display: block; }
  .bhm-free-badge { width: 85px; height: 85px; font-size: 0.65rem; }
  .bhm-services { padding: 5rem 5%; }
  .bhm-services-header { margin-bottom: 3rem; }
  .bhm-services-title { font-size: 2.4rem; }
  .bhm-services-sub { font-size: 1.05rem; }
  .bhm-services-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .bhm-svc-card { padding: 2.5rem 2rem; }
  .bhm-svc-card h3 { font-size: 1.5rem; }
  .bhm-svc-card p { font-size: 0.95rem; line-height: 1.85; }
  .bhm-svc-icon { width: 72px; height: 72px; }
  .bhm-svc-icon svg { width: 30px; height: 30px; }
  .bhm-mantle { padding: 5rem 5%; }
  .bhm-mantle-title { font-size: 2.2rem; }
  .bhm-mantle-text { font-size: 1.05rem; }
  .bhm-mantle-img-frame img { border-radius: 20px; }
  .bhm-btn-light { padding: 1rem 2.2rem; font-size: 0.82rem; }
  .bhm-paths { padding: 5rem 5%; }
  .bhm-paths-header { margin-bottom: 3rem; }
  .bhm-paths-title { font-size: 2.4rem; }
  .bhm-paths-sub { font-size: 1.05rem; }
  .bhm-paths-cards { max-width: 100%; gap: 2.5rem; }
  .bhm-path-img { height: 260px; }
  .bhm-path-body { padding: 2rem 1.5rem; }
  .bhm-path-body h3 { font-size: 1.8rem; }
  .bhm-path-body p { font-size: 1rem; line-height: 1.85; }
  .bhm-path-badge { font-size: 0.68rem; padding: 0.55rem 1.2rem; }
  .bhm-path-btn { padding: 1rem 2rem; font-size: 0.82rem; }
  .bhm-testimonials { padding: 5rem 5%; }
  .bhm-test-title { font-size: 2.2rem; }
  .bhm-test-quote { font-size: 1.25rem; line-height: 1.7; }
  .bhm-test-slider { min-height: 280px; }
  .bhm-test-author { font-size: 0.88rem; }
  .bhm-test-role { font-size: 0.82rem; }
  .bhm-test-dots { margin-top: 2.5rem; }
  .bhm-test-dot { width: 14px; height: 14px; }
  .bhm-cta { padding: 6rem 5%; }
  .bhm-cta-title { font-size: 2.4rem; }
  .bhm-cta-text { font-size: 1.05rem; line-height: 1.85; }
  .bhm-cta-btn { padding: 1.15rem 2.6rem; font-size: 0.85rem; }
  .bhm-label { font-size: 0.75rem; letter-spacing: 3px; }
  .bhm-text-link { font-size: 0.88rem; }
  .bhm-footer-grid { grid-template-columns: 1fr; text-align: center; }
  .bhm-footer-brand { margin: 0 auto; }
  .bhm-footer-social { justify-content: center; }
  .bhm-footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }


  .bhm-header {
  position: fixed;
  padding: 1rem 4%;
  max-width: 100%;
  width: 100%;
  box-sizing: border-box;
}

}

/* ===== RESPONSIVE — SMALL MOBILE ===== */
@media (max-width: 480px) {
  .bhm-hero { grid-template-rows: auto 40vh; }
  .bhm-hero-left { padding: 5.5rem 1.5rem 3rem; }
  .bhm-hero-title { font-size: 2.2rem; }
  .bhm-hero-tagline { font-size: 0.95rem; }
  .bhm-hero-subtitle { font-size: 0.95rem; margin-bottom: 2rem; }
  .bhm-about { padding: 4rem 5%; }
  .bhm-about-title { font-size: 2rem; }
  .bhm-about-text { font-size: 1rem; }
  .bhm-about-quote { font-size: 1.05rem; }
  .bhm-about-badge { width: 105px; height: 105px; }
  .bhm-about-badge span { font-size: 1.8rem; }
  .bhm-about-badge small { font-size: 0.58rem; }
  .bhm-lead-magnet { padding: 4rem 5%; }
  .bhm-lead-title { font-size: 1.85rem; }
  .bhm-lead-text { font-size: 1rem; }
  .bhm-services { padding: 4rem 5%; }
  .bhm-services-title { font-size: 2rem; }
  .bhm-svc-card { padding: 2.2rem 1.5rem; }
  .bhm-svc-card h3 { font-size: 1.4rem; }
  .bhm-svc-card p { font-size: 0.92rem; }
  .bhm-mantle { padding: 4rem 5%; }
  .bhm-mantle-title { font-size: 1.85rem; }
  .bhm-mantle-text { font-size: 1rem; }
  .bhm-paths { padding: 4rem 5%; }
  .bhm-paths-title { font-size: 2rem; }
  .bhm-path-img { height: 230px; }
  .bhm-path-body h3 { font-size: 1.6rem; }
  .bhm-path-body p { font-size: 0.95rem; }
  .bhm-testimonials { padding: 4rem 5%; }
  .bhm-test-title { font-size: 1.85rem; }
  .bhm-test-quote { font-size: 1.15rem; }
  .bhm-test-slider { min-height: 300px; }
  .bhm-cta { padding: 5rem 5%; }
  .bhm-cta-title { font-size: 2rem; }
  .bhm-cta-text { font-size: 1rem; }
  .bhm-cta-btn { padding: 1.05rem 2.2rem; font-size: 0.82rem; }
  .bhm-header { padding: 1rem 5%; }
  .bhm-header.scrolled { padding: 0.7rem 5%; }
}


/* ===== WOOCOMMERCE ===== */
.woocommerce .button, .woocommerce a.button { background: var(--bhm-terracotta) !important; color: white !important; border-radius: var(--bhm-radius-pill) !important; font-family: var(--bhm-font-body) !important; letter-spacing: 1px; text-transform: uppercase; font-weight: 600; font-size: 0.82rem; padding: 0.9rem 2rem !important; transition: var(--bhm-transition) !important; border: none !important; }
.woocommerce .button:hover, .woocommerce a.button:hover { background: var(--bhm-forest-green) !important; transform: translateY(-3px); box-shadow: var(--bhm-shadow-sm); }
.woocommerce-message { border-top-color: var(--bhm-terracotta) !important; }
.woocommerce-message::before { color: var(--bhm-terracotta) !important; }
