/* ============================================================
   BuildHawk — Design System
   Colors match: buildhawk.com.au
   Font: Inter (Google Fonts)
   JS: jQuery only
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

/* ── CSS Variables ─────────────────────────────────────────── */
:root {
  --bh-orange: #de5123;
  --bh-orange-700: #c0441a;
  --bh-orange-50: #fdf1ec;
  --bh-orange-900: #8f2e0e;
  --bh-black: #0f0f0e;
  --bh-ink: #1a1a18;
  --bh-white: #ffffff;
  --bh-cloud: #f4f3f0;
  --bh-graphite: #5a5a56;
  --bh-steel: #b0afa8;
  --bh-paper: #f9f8f5;
  --bh-border: rgba(176, 175, 168, 0.4);
  --max-w: 1480px;
  --px: clamp(1.25rem, 4vw, 2.5rem);
  --radius: 8px;
  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  height: 100%;
}

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bh-white);
  color: var(--bh-black);
  -webkit-font-smoothing: antialiased;
  min-height: 100%;
  overflow-x: hidden;
}

img,
video {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  cursor: pointer;
  background: none;
  border: none;
  font: inherit;
}

ul,
ol {
  list-style: none;
}

/* ── Scroll Progress ───────────────────────────────────────── */
.bh-scroll-progress {
  position: absolute;
  bottom: -1px;
  left: 0;
  height: 2px;
  background: var(--bh-orange);
  width: 0%;
  transition: width 0.1s linear;
  z-index: 10;
}

/* ── Header ────────────────────────────────────────────────── */
#bh-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: background 0.4s var(--ease), border-color 0.4s var(--ease),
    box-shadow 0.4s var(--ease);
  border-bottom: 1px solid transparent;
}

#bh-header.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-color: var(--bh-border);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
}

.bh-header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--px);
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .bh-header-inner {
    height: 80px;
  }
}

/* Logo */
.bh-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.bh-logo-emblem {
  width: 28px;
}

.bh-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.bh-logo-name {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--bh-black);
}

.bh-logo-sub {
  font-size: 8px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bh-graphite);
  margin-top: 3px;
}

/* Desktop Nav */
.bh-nav {
  display: none;
  align-items: center;
  gap: 1.5rem;
}

@media (min-width: 1024px) {
  .bh-nav {
    display: flex;
  }
}

.bh-nav a {
  font-size: 13px;
  letter-spacing: -0.005em;
  color: var(--bh-graphite);
  white-space: nowrap;
  transition: color 0.2s;
}

.bh-nav a:hover,
.bh-nav a.active {
  color: var(--bh-black);
}

/* Header Actions */
.bh-header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.bh-phone-link {
  display: none;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--bh-graphite);
  transition: color 0.2s;
}

.bh-phone-link:hover {
  color: var(--bh-orange);
}

@media (min-width: 1400px) {
  .bh-phone-link {
    display: flex;
  }
}

.bh-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  height: 40px;
  padding: 0 1.25rem;
  border-radius: var(--radius);
  background: var(--bh-ink);
  color: var(--bh-paper);
  font-size: 13px;
  font-weight: 500;
  transition: background 0.2s;
  white-space: nowrap;
}

.bh-btn-primary:hover {
  background: var(--bh-orange);
}

.bh-btn-primary .btn-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  transition: background 0.2s;
}

.bh-btn-primary:hover .btn-arrow {
  background: rgba(255, 255, 255, 0.25);
}

.bh-btn-orange {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  height: 44px;
  padding: 0 1.25rem 0 1.4rem;
  border-radius: var(--radius);
  background: var(--bh-orange);
  color: var(--bh-white);
  font-size: 14px;
  font-weight: 500;
  transition: background 0.2s;
}

.bh-btn-orange:hover {
  background: var(--bh-orange-700);
}

.bh-btn-outline-orange {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  height: 44px;
  padding: 0 1.25rem 0 1.4rem;
  border-radius: var(--radius);
  border: 1px solid var(--bh-orange);
  color: var(--bh-orange);
  font-size: 14px;
  font-weight: 500;
  transition: background 0.2s;
}

.bh-btn-outline-orange:hover {
  background: var(--bh-orange-50);
}

.btn-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transition: background 0.2s;
}

.bh-btn-orange .btn-circle {
  background: rgba(255, 255, 255, 0.2);
}

.bh-btn-orange:hover .btn-circle {
  background: rgba(255, 255, 255, 0.3);
}

.bh-btn-outline-orange .btn-circle {
  background: rgba(222, 81, 35, 0.12);
}

.bh-btn-outline-orange:hover .btn-circle {
  background: rgba(222, 81, 35, 0.22);
}

/* Mobile menu button */
.bh-menu-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  color: var(--bh-black);
  transition: background 0.2s;
}

.bh-menu-btn:hover {
  background: var(--bh-cloud);
}

@media (min-width: 1024px) {
  .bh-menu-btn {
    display: none;
  }
}

/* Mobile Menu Overlay */
#bh-mobile-menu {
  position: fixed;
  inset: 72px 0 0 0;
  background: var(--bh-white);
  z-index: 99;
  overflow-y: auto;
  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
}

#bh-mobile-menu.open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

@media (min-width: 768px) {
  #bh-mobile-menu {
    top: 80px;
  }
}

.bh-mobile-nav {
  padding: 2rem var(--px);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.bh-mobile-nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 0;
  border-bottom: 1px solid var(--bh-border);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--bh-black);
  transition: color 0.2s;
}

.bh-mobile-nav a:hover {
  color: var(--bh-orange);
}

.bh-mobile-nav-cta {
  margin-top: auto;
  padding-top: 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.bh-mobile-nav-cta a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 500;
  padding: 0;
  border: none;
}

.bh-mobile-nav-cta .cta-call {
  border: 1px solid rgba(176, 175, 168, 0.6);
  color: var(--bh-black);
}

.bh-mobile-nav-cta .cta-call:hover {
  background: var(--bh-cloud);
}

.bh-mobile-nav-cta .cta-brief {
  background: var(--bh-ink);
  color: var(--bh-paper);
}

.bh-mobile-nav-cta .cta-brief:hover {
  background: var(--bh-orange);
}

/* ── Pulse Animation ───────────────────────────────────────── */
@keyframes bh-pulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 0.7;
  }

  50% {
    transform: scale(2.2);
    opacity: 0;
  }
}

.bh-pulse {
  animation: bh-pulse 2s ease-out infinite;
}

/* ── Fade-In Animation ─────────────────────────────────────── */
.bh-fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.bh-fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── HERO SECTION ──────────────────────────────────────────── */
#section-hero {
  position: relative;
  min-height: 100svh;
  background: var(--bh-cloud);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.hero-bg-emblem {
  position: absolute;
  top: 14%;
  right: -4%;
  width: 36vw;
  max-width: 560px;
  aspect-ratio: 255/196;
  opacity: 0.12;
  pointer-events: none;
}

.hero-bg-emblem svg {
  width: 100%;
  height: 100%;
}

.hero-divider-top {
  position: absolute;
  top: 80px;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(176, 175, 168, 0.5);
}

@media (min-width: 768px) {
  .hero-divider-top {
    top: 88px;
  }
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: calc(72px + 4rem) var(--px) 3rem;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  width: 100%;
}

@media (min-width: 768px) {
  .hero-content {
    padding-top: calc(80px + 6rem);
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bh-graphite);
  margin-bottom: 2.5rem;
}

@media (min-width: 768px) {
  .hero-badge {
    font-size: 13px;
    margin-bottom: 3rem;
  }
}

.hero-badge-dot {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 8px;
  height: 8px;
}

.hero-badge-dot-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--bh-orange);
}

.hero-badge-dot-core {
  position: relative;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--bh-orange);
  z-index: 1;
}

.hero-badge-years {
  color: var(--bh-orange);
  font-weight: 600;
}

.hero-badge-divider {
  display: inline-block;
  width: 1px;
  height: 12px;
  background: rgba(176, 175, 168, 0.7);
}

.hero-headline {
  font-size: clamp(40px, 10vw, 148px);
  font-weight: 500;
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--bh-black);
  margin-top: auto;
}

.hero-headline .accent {
  color: var(--bh-orange);
}

.hero-sub {
  margin-top: 1.75rem;
  max-width: 560px;
  font-size: clamp(15px, 2vw, 19px);
  line-height: 1.5;
  letter-spacing: -0.01em;
  color: var(--bh-graphite);
}

@media (min-width: 768px) {
  .hero-sub {
    margin-top: 2rem;
  }
}

.hero-ctas {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

@media (min-width: 480px) {
  .hero-ctas {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

@media (min-width: 768px) {
  .hero-ctas {
    margin-top: 2.5rem;
  }
}

.hero-stats {
  margin-top: auto;
  padding-top: 3rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem 1rem;
}

@media (min-width: 768px) {
  .hero-stats {
    grid-template-columns: repeat(4, 1fr);
    padding-top: 5rem;
  }
}

.hero-stat-label {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bh-graphite);
  margin-bottom: 4px;
}

@media (min-width: 768px) {
  .hero-stat-label {
    font-size: 11px;
  }
}

.hero-stat-value {
  font-size: 13px;
  letter-spacing: -0.01em;
  color: var(--bh-black);
}

@media (min-width: 768px) {
  .hero-stat-value {
    font-size: 15px;
  }
}

.hero-stat-value .num {
  color: var(--bh-orange);
  font-weight: 600;
}

.hero-bottom-line {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(176, 175, 168, 0.6);
}

/* ── HAWKTRESS SECTION ─────────────────────────────────────── */
#section-hawktress {
  background: var(--bh-white);
  padding: 5rem 0;
}

@media (min-width: 768px) {
  #section-hawktress {
    padding: 8rem 0;
  }
}

.section-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--px);
}

.hawktress-header {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 3.5rem;
}

@media (min-width: 768px) {
  .hawktress-header {
    grid-template-columns: 5fr 7fr;
    gap: 2rem;
    margin-bottom: 4rem;
  }
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0 0.75rem;
  height: 28px;
  border-radius: 100px;
  background: var(--bh-orange-50);
  border: 1px solid rgba(222, 81, 35, 0.3);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #b84318;
  margin-bottom: 1.25rem;
}

.section-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--bh-orange);
}

.section-title {
  font-size: clamp(32px, 5vw, 68px);
  font-weight: 500;
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: var(--bh-black);
}

.section-title .muted {
  color: var(--bh-graphite);
}

.hawktress-desc {
  font-size: clamp(16px, 1.5vw, 19px);
  line-height: 1.5;
  color: var(--bh-graphite);
}

.hawktress-desc .footnote {
  margin-top: 1rem;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: rgba(90, 90, 86, 0.8);
}

/* Lifecycle Tabs */
.lifecycle-tabs {
  display: flex;
  overflow-x: auto;
  scrollbar-width: none;
  gap: 0;
  border-bottom: none;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
}

.lifecycle-tabs::-webkit-scrollbar {
  display: none;
}

.lc-tab {
  flex: none;
  min-width: 150px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0.75rem 1.25rem;
  border-top: 2px solid var(--bh-border);
  text-align: left;
  scroll-snap-align: start;
  transition: border-color 0.2s;
  cursor: pointer;
}

@media (min-width: 768px) {
  .lc-tab {
    flex: 1;
    min-width: 0;
  }
}

.lc-tab:hover {
  border-color: rgba(90, 90, 86, 0.6);
}

.lc-tab.active {
  border-color: var(--bh-orange);
}

.lc-tab-num {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bh-graphite);
  margin-bottom: 6px;
  transition: color 0.2s;
}

.lc-tab.active .lc-tab-num {
  color: var(--bh-orange);
}

.lc-tab-title {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--bh-graphite);
  transition: color 0.2s;
}

@media (min-width: 768px) {
  .lc-tab-title {
    font-size: 15px;
  }
}

.lc-tab.active .lc-tab-title {
  color: var(--bh-black);
}

.lc-tab:hover .lc-tab-title {
  color: var(--bh-black);
}

/* Lifecycle Panels */
.lc-panel {
  display: none;
  margin-top: 2.5rem;
}

.lc-panel.active {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .lc-panel.active {
    grid-template-columns: 7fr 5fr;
    gap: 2.5rem;
  }
}

.lc-panel-subtitle {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bh-graphite);
  margin-bottom: 1rem;
}

.lc-panel-desc {
  font-size: clamp(20px, 2.5vw, 32px);
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--bh-black);
  max-width: 640px;
}

.lc-panel-insight {
  padding-left: 0;
  border-top: 1px solid var(--bh-border);
  padding-top: 1.5rem;
}

@media (min-width: 768px) {
  .lc-panel-insight {
    padding-left: 2rem;
    border-left: 1px solid var(--bh-border);
    border-top: none;
    padding-top: 0;
  }
}

.lc-panel-insight-label {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bh-orange);
  margin-bottom: 0.75rem;
}

.lc-panel-insight-link {
  display: inline-flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: var(--bh-black);
  transition: color 0.2s;
}

.lc-panel-insight-link:hover {
  color: var(--bh-orange);
}

.lc-panel-insight-title {
  font-size: clamp(16px, 1.8vw, 20px);
  font-weight: 500;
  line-height: 1.3;
  max-width: 260px;
}

.lc-insight-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(15, 15, 14, 0.06);
  flex-shrink: 0;
  margin-top: 3px;
  transition: background 0.2s;
}

.lc-panel-insight-link:hover .lc-insight-arrow {
  background: rgba(222, 81, 35, 0.15);
}

.lc-counter-text {
  font-size: 12px;
  letter-spacing: 0.04em;
  color: rgba(90, 90, 86, 0.8);
  margin-top: 1rem;
}

/* Lifecycle Dots */
.lc-dots {
  display: flex;
  gap: 6px;
  align-items: center;
  margin-top: 3rem;
}

.lc-dot {
  height: 4px;
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.25s var(--ease);
  background: rgba(176, 175, 168, 0.6);
  width: 20px;
}

.lc-dot.active {
  background: var(--bh-orange);
  width: 40px;
}

.lc-dot:hover {
  background: rgba(90, 90, 86, 0.6);
}

.lc-dot.active:hover {
  background: var(--bh-orange);
}

/* Lifecycle Stat */
.lc-stat-row {
  margin-top: 3.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--bh-border);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .lc-stat-row {
    flex-direction: row;
    align-items: center;
    gap: 2.5rem;
  }
}

.lc-stat-number {
  font-size: clamp(56px, 7vw, 88px);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 0.95;
  color: var(--bh-orange);
  white-space: nowrap;
  flex-shrink: 0;
  font-variant-numeric: tabular-nums;
}

.lc-stat-desc {
  flex: 1;
  max-width: 720px;
  font-size: clamp(15px, 1.5vw, 18px);
  line-height: 1.5;
  letter-spacing: -0.01em;
  color: var(--bh-black);
}

.lc-stat-desc strong {
  font-weight: 600;
}

/* ── HOW IT WORKS ──────────────────────────────────────────── */
#section-how {
  background: var(--bh-black);
  padding: 5rem 0;
  color: var(--bh-white);
}

@media (min-width: 768px) {
  #section-how {
    padding: 8rem 0;
  }
}

.how-header {
  margin-bottom: 3rem;
}

.how-title {
  font-size: clamp(32px, 5vw, 64px);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.0;
  color: var(--bh-white);
}

.how-title .muted {
  color: var(--bh-graphite);
}

.how-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

@media (min-width: 640px) {
  .how-steps {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .how-steps {
    grid-template-columns: repeat(4, 1fr);
  }
}

.how-step {
  padding: 2rem 0;
  border-top: 1px solid rgba(176, 175, 168, 0.2);
}

@media (min-width: 640px) {
  .how-step:nth-child(odd) {
    padding-right: 2rem;
  }

  .how-step:nth-child(even) {
    padding-left: 2rem;
    border-left: 1px solid rgba(176, 175, 168, 0.2);
  }
}

@media (min-width: 1024px) {
  .how-step {
    padding: 2.5rem 2rem;
  }

  .how-step:not(:first-child) {
    border-left: 1px solid rgba(176, 175, 168, 0.2);
  }

  .how-step:nth-child(odd),
  .how-step:nth-child(even) {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .how-step:first-child {
    padding-left: 0;
  }
}

.how-step-num {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bh-orange);
  margin-bottom: 1rem;
}

.how-step-title {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--bh-white);
  margin-bottom: 0.75rem;
}

.how-step-body {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(176, 175, 168, 0.9);
}

/* ── CAPABILITY GAP ────────────────────────────────────────── */
#section-capability {
  background: var(--bh-cloud);
  padding: 5rem 0;
}

@media (min-width: 768px) {
  #section-capability {
    padding: 8rem 0;
  }
}

.capability-header {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 3.5rem;
}

@media (min-width: 768px) {
  .capability-header {
    grid-template-columns: 3fr 9fr;
    gap: 2rem;
    align-items: start;
  }
}

.capability-label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bh-graphite);
}

.capability-title {
  font-size: clamp(32px, 5vw, 72px);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.0;
  color: var(--bh-black);
}

.capability-title .muted {
  color: var(--bh-graphite);
}

.capability-sub {
  margin-top: 1.25rem;
  max-width: 620px;
  font-size: clamp(15px, 1.5vw, 19px);
  line-height: 1.5;
  color: var(--bh-graphite);
  letter-spacing: -0.005em;
}

.capability-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .capability-cards {
    grid-template-columns: 1fr 1fr;
  }
}

.cap-card {
  background: var(--bh-white);
  border: 1px solid rgba(176, 175, 168, 0.6);
  padding: 1.75rem 2rem;
}

@media (min-width: 768px) {
  .cap-card {
    padding: 2.25rem 2.5rem;
  }
}

.cap-card-dark {
  background: var(--bh-ink);
  color: var(--bh-white);
  border-color: var(--bh-ink);
  position: relative;
  overflow: hidden;
}

.cap-card-dark-bar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--bh-orange);
}

.cap-card-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.75rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(176, 175, 168, 0.6);
}

.cap-card-dark .cap-card-header {
  border-color: rgba(176, 175, 168, 0.2);
}

.cap-card-title {
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 500;
  letter-spacing: -0.015em;
}

.cap-card-period {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bh-graphite);
  white-space: nowrap;
  flex-shrink: 0;
}

.cap-card-dark .cap-card-period {
  color: rgba(176, 175, 168, 0.8);
}

.cap-list li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 0;
  font-size: 14px;
  border-bottom: 1px solid rgba(176, 175, 168, 0.4);
}

.cap-card-dark .cap-list li {
  border-color: rgba(176, 175, 168, 0.12);
}

.cap-list li span:first-child {
  color: var(--bh-graphite);
  letter-spacing: -0.005em;
}

.cap-card-dark .cap-list li span:first-child {
  color: rgba(176, 175, 168, 0.9);
}

.cap-list li span:last-child {
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.cap-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 14px;
  padding: 0.4rem 0;
}

.cap-features-check {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--bh-orange);
}

.cap-features li span {
  color: rgba(176, 175, 168, 0.9);
  line-height: 1.45;
}

.cap-total {
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 2px solid var(--bh-black);
  display: flex;
  align-items: baseline;
  justify-content: space-between;
}

.cap-card-dark .cap-total {
  border-color: var(--bh-orange);
}

.cap-total-label {
  font-size: 14px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.cap-total-amount {
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 500;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}

.cap-total-amount.orange {
  color: var(--bh-orange);
}

.cap-card-note {
  margin-top: 1.25rem;
  font-size: 13px;
  line-height: 1.5;
  color: var(--bh-graphite);
}

.cap-card-dark .cap-card-note {
  font-size: 12px;
  color: rgba(176, 175, 168, 0.8);
}

.capability-footer {
  margin-top: 3.5rem;
  max-width: 780px;
  font-size: clamp(13px, 1.2vw, 15px);
  line-height: 1.55;
  color: var(--bh-graphite);
}

/* ── PRICING SECTION ───────────────────────────────────────── */
#section-pricing {
  background: var(--bh-white);
  padding: 5rem 0;
  scroll-margin-top: 80px;
}

@media (min-width: 768px) {
  #section-pricing {
    padding: 8rem 0;
  }
}

.pricing-header {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .pricing-header {
    grid-template-columns: 3fr 9fr;
    gap: 2rem;
    margin-bottom: 3.5rem;
  }
}

.pricing-label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bh-graphite);
}

.pricing-title {
  font-size: clamp(28px, 4vw, 72px);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: var(--bh-black);
}

.pricing-title .muted {
  color: var(--bh-graphite);
}

.pricing-sub {
  margin-top: 1.25rem;
  max-width: 600px;
  font-size: clamp(13px, 1.2vw, 17px);
  line-height: 1.5;
  color: var(--bh-graphite);
  letter-spacing: -0.005em;
}

/* Accordion */
.pricing-accordion {
  border-top: 1px solid rgba(176, 175, 168, 0.6);
}

.pricing-item {
  border-bottom: 1px solid rgba(176, 175, 168, 0.6);
}

.pricing-item-summary {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem;
  cursor: pointer;
  padding: 1.5rem 0;
  user-select: none;
}

@media (min-width: 768px) {
  .pricing-item-summary {
    padding: 2rem 0;
  }
}

.pricing-item-summary:hover .pricing-item-title {
  color: var(--bh-orange);
}

.pricing-item-badge {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bh-orange);
  margin-bottom: 0.5rem;
}

.pricing-item-title {
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--bh-black);
  transition: color 0.2s;
}

.pricing-item-desc {
  margin-top: 0.75rem;
  max-width: 560px;
  font-size: clamp(12px, 1.2vw, 15px);
  line-height: 1.55;
  color: var(--bh-graphite);
}

.pricing-item-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
  padding-top: 4px;
}

.pricing-item-range {
  display: none;
  align-items: center;
  height: 28px;
  padding: 0 0.75rem;
  border-radius: 100px;
  border: 1px solid rgba(176, 175, 168, 0.7);
  font-size: 13px;
  font-weight: 500;
  color: var(--bh-graphite);
  white-space: nowrap;
}

@media (min-width: 480px) {
  .pricing-item-range {
    display: flex;
  }
}

.pricing-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(176, 175, 168, 0.6);
  color: var(--bh-graphite);
  flex-shrink: 0;
  transition: border-color 0.2s, color 0.2s, transform 0.3s var(--ease);
}

.pricing-item-summary:hover .pricing-toggle {
  border-color: var(--bh-orange);
  color: var(--bh-orange);
}

.pricing-item.open .pricing-toggle {
  transform: rotate(45deg);
  border-color: var(--bh-orange);
  color: var(--bh-orange);
}

.pricing-item-body {
  display: none;
  padding-bottom: 2.5rem;
}

.pricing-item-body.open {
  display: block;
}

.pricing-tiers {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .pricing-tiers {
    grid-template-columns: repeat(3, 1fr);
  }
}

.tier-card {
  display: flex;
  flex-direction: column;
  padding: 1.5rem 1.75rem;
  border: 1px solid rgba(176, 175, 168, 0.6);
  background: var(--bh-white);
  position: relative;
  transition: border-color 0.2s;
}

.tier-card:hover {
  border-color: rgba(90, 90, 86, 0.6);
}

.tier-card.recommended {
  background: var(--bh-ink);
  color: var(--bh-white);
  border-color: var(--bh-ink);
  box-shadow: 0 30px 60px -20px rgba(222, 81, 35, 0.22);
}

.tier-recommended-badge {
  position: absolute;
  top: -10px;
  left: 1.5rem;
  display: inline-flex;
  align-items: center;
  height: 22px;
  padding: 0 10px;
  border-radius: 100px;
  background: var(--bh-orange);
  color: var(--bh-white);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.tier-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.tier-name {
  font-size: clamp(16px, 1.5vw, 20px);
  font-weight: 500;
  letter-spacing: -0.015em;
}

.tier-turnover {
  font-size: 11px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--bh-graphite);
  text-align: right;
}

.tier-card.recommended .tier-turnover {
  color: rgba(176, 175, 168, 0.8);
}

.tier-price-block {
  margin-bottom: 1.5rem;
}

.tier-price {
  font-size: clamp(32px, 3.5vw, 44px);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.tier-card.recommended .tier-price {
  color: var(--bh-orange);
}

.tier-price-unit {
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--bh-graphite);
  margin-left: 6px;
}

.tier-card.recommended .tier-price-unit {
  color: rgba(176, 175, 168, 0.8);
}

.tier-price-note {
  margin-top: 0.75rem;
  font-size: 13px;
  line-height: 1.5;
  color: var(--bh-graphite);
  letter-spacing: -0.005em;
}

.tier-card.recommended .tier-price-note {
  color: rgba(176, 175, 168, 0.9);
}

.tier-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.tier-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 13px;
  line-height: 1.45;
  color: var(--bh-graphite);
}

.tier-card.recommended .tier-features li {
  color: var(--bh-steel);
}

.tier-dot {
  flex-shrink: 0;
  margin-top: 6px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--bh-orange);
}

/* Single-tier pricing */
.pricing-single-tier {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .pricing-single-tier {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}

.pricing-single-card {
  border: 1px solid rgba(176, 175, 168, 0.6);
  padding: 1.75rem 2rem;
}

/* ── ABOUT SECTION ─────────────────────────────────────────── */
#section-about {
  background: var(--bh-cloud);
  padding: 5rem 0;
  scroll-margin-top: 80px;
}

@media (min-width: 768px) {
  #section-about {
    padding: 8rem 0;
  }
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 768px) {
  .about-grid {
    grid-template-columns: 5fr 7fr;
    gap: 4rem;
    align-items: center;
  }
}

.about-portrait {
  position: relative;
  aspect-ratio: 3/4;
  max-width: 420px;
  overflow: hidden;
}

.about-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-portrait-placeholder {
  width: 100%;
  height: 100%;
  min-height: 300px;
  background: linear-gradient(135deg, #c0441a 0%, #0f0f0e 100%);
  display: flex;
  align-items: flex-end;
  padding: 2rem;
}

.about-portrait-name {
  color: var(--bh-white);
  font-size: 18px;
  font-weight: 500;
}

.about-label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bh-graphite);
  margin-bottom: 1.5rem;
}

.about-title {
  font-size: clamp(28px, 3vw, 48px);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.1;
  color: var(--bh-black);
  margin-bottom: 1.5rem;
}

.about-role {
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--bh-orange);
  margin-bottom: 1.5rem;
}

.about-bio {
  font-size: clamp(15px, 1.4vw, 17px);
  line-height: 1.65;
  color: var(--bh-graphite);
  letter-spacing: -0.005em;
}

/* ── INTAKE FORM ───────────────────────────────────────────── */
#section-intake {
  background: var(--bh-black);
  padding: 5rem 0;
  scroll-margin-top: 80px;
}

@media (min-width: 768px) {
  #section-intake {
    padding: 8rem 0;
  }
}

.intake-header {
  margin-bottom: 3rem;
}

.intake-title {
  font-size: clamp(28px, 4vw, 60px);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.0;
  color: var(--bh-white);
}

.intake-title .accent {
  color: var(--bh-orange);
}

.intake-sub {
  margin-top: 1rem;
  max-width: 540px;
  font-size: clamp(14px, 1.3vw, 17px);
  line-height: 1.5;
  color: var(--bh-steel);
}

.intake-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 768px) {
  .intake-grid {
    grid-template-columns: 7fr 5fr;
    gap: 4rem;
  }
}

.bh-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 480px) {
  .form-row {
    grid-template-columns: 1fr 1fr;
  }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-label {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bh-steel);
}

.form-control {
  width: 100%;
  height: 48px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(176, 175, 168, 0.2);
  border-radius: var(--radius);
  padding: 0 1rem;
  font-family: inherit;
  font-size: 14px;
  color: var(--bh-white);
  outline: none;
  transition: border-color 0.2s, background 0.2s;
}

.form-control:focus {
  border-color: rgba(222, 81, 35, 0.6);
  background: rgba(255, 255, 255, 0.08);
}

.form-control::placeholder {
  color: rgba(176, 175, 168, 0.5);
}

.form-control select {
  appearance: none;
}

textarea.form-control {
  height: auto;
  min-height: 120px;
  padding: 0.875rem 1rem;
  resize: vertical;
}

select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23b0afa8' stroke-width='1.5' stroke-linecap='round' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

select.form-control option {
  background: var(--bh-ink);
  color: var(--bh-white);
}

.form-submit {
  margin-top: 0.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.btn-submit {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  height: 48px;
  padding: 0 1.5rem;
  background: var(--bh-orange);
  color: var(--bh-white);
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}

.btn-submit:hover {
  background: var(--bh-orange-700);
}

.btn-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.form-note {
  font-size: 12px;
  color: rgba(176, 175, 168, 0.7);
  line-height: 1.5;
}

.form-success {
  display: none;
  padding: 1.5rem;
  border-radius: var(--radius);
  background: rgba(222, 81, 35, 0.12);
  border: 1px solid rgba(222, 81, 35, 0.3);
  color: var(--bh-white);
}

.form-success.show {
  display: block;
}

.form-error {
  display: none;
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
  background: rgba(220, 38, 38, 0.1);
  border: 1px solid rgba(220, 38, 38, 0.3);
  color: #f87171;
  font-size: 13px;
}

.form-error.show {
  display: block;
}

.intake-contact-block {
  padding-top: 2.5rem;
  border-top: 1px solid rgba(176, 175, 168, 0.15);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.intake-contact-item-label {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(176, 175, 168, 0.6);
  margin-bottom: 4px;
}

.intake-contact-item-value {
  font-size: 15px;
  color: var(--bh-steel);
  letter-spacing: -0.01em;
}

.intake-contact-item-value a:hover {
  color: var(--bh-orange);
}

/* ── ARTICLES SECTION ──────────────────────────────────────── */
#section-articles {
  background: var(--bh-white);
  padding: 5rem 0;
}

@media (min-width: 768px) {
  #section-articles {
    padding: 6rem 0;
  }
}

.articles-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.articles-title {
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 500;
  letter-spacing: -0.025em;
  color: var(--bh-black);
}

.articles-link {
  font-size: 13px;
  color: var(--bh-graphite);
  transition: color 0.2s;
  white-space: nowrap;
}

.articles-link:hover {
  color: var(--bh-orange);
}

.articles-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .articles-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .articles-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.article-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--bh-border);
  transition: border-color 0.2s;
}

.article-card:hover {
  border-color: rgba(90, 90, 86, 0.5);
}

.article-card-img {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--bh-cloud);
}

.article-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s var(--ease);
}

.article-card:hover .article-card-img img {
  transform: scale(1.04);
}

.article-card-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.article-cat {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bh-orange);
  margin-bottom: 0.75rem;
}

.article-title {
  font-size: 17px;
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1.3;
  color: var(--bh-black);
  margin-bottom: 0.75rem;
}

.article-excerpt {
  font-size: 13px;
  line-height: 1.6;
  color: var(--bh-graphite);
  flex: 1;
}

.article-meta {
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid var(--bh-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: var(--bh-steel);
}

.article-meta-arrow {
  color: var(--bh-graphite);
  transition: color 0.2s;
}

.article-card:hover .article-meta-arrow {
  color: var(--bh-orange);
}

/* ── FOOTER ────────────────────────────────────────────────── */
#bh-footer {
  background: var(--bh-ink);
  color: var(--bh-steel);
  padding: 4rem 0 2rem;
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--px);
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(176, 175, 168, 0.12);
}

@media (min-width: 768px) {
  .footer-top {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-logo-emblem {
  width: 24px;
}

.footer-logo-name {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--bh-white);
}

.footer-tagline {
  font-size: 13px;
  line-height: 1.6;
  color: rgba(176, 175, 168, 0.7);
  max-width: 280px;
}

.footer-nav-group {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-nav-label {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(176, 175, 168, 0.5);
  margin-bottom: 0.25rem;
}

.footer-nav-group a {
  font-size: 13px;
  color: rgba(176, 175, 168, 0.8);
  transition: color 0.2s;
  display: block;
}

.footer-nav-group a:hover {
  color: var(--bh-white);
}

.footer-bottom {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

@media (min-width: 640px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.footer-copy {
  font-size: 12px;
  color: rgba(176, 175, 168, 0.5);
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
}

.footer-legal a {
  font-size: 12px;
  color: rgba(176, 175, 168, 0.5);
  transition: color 0.2s;
}

.footer-legal a:hover {
  color: var(--bh-white);
}

/* ── INNER PAGE HERO ───────────────────────────────────────── */
.page-hero {
  background: var(--bh-cloud);
  padding: calc(80px + 3rem) var(--px) 3rem;
}

@media (min-width: 768px) {
  .page-hero {
    padding: calc(80px + 5rem) var(--px) 4rem;
  }
}

.page-hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.page-hero-badge {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bh-orange);
  margin-bottom: 1rem;
}

.page-hero-title {
  font-size: clamp(36px, 6vw, 88px);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 0.95;
  color: var(--bh-black);
}

.page-hero-sub {
  margin-top: 1.5rem;
  max-width: 580px;
  font-size: clamp(15px, 1.5vw, 19px);
  line-height: 1.5;
  color: var(--bh-graphite);
  letter-spacing: -0.01em;
}

/* ── ARTICLES PAGE ─────────────────────────────────────────── */
.articles-page {
  padding: 4rem 0;
}

.articles-page-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--px);
}

.articles-full-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .articles-full-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .articles-full-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 3rem;
}

.page-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  padding: 0 0.75rem;
  border-radius: var(--radius);
  border: 1px solid var(--bh-border);
  font-size: 13px;
  color: var(--bh-graphite);
  transition: all 0.2s;
}

.page-btn:hover {
  border-color: var(--bh-black);
  color: var(--bh-black);
}

.page-btn.current {
  background: var(--bh-black);
  color: var(--bh-white);
  border-color: var(--bh-black);
}

/* ── ARTICLE DETAIL ────────────────────────────────────────── */
.article-detail {
  padding: 4rem 0 6rem;
}

.article-detail-inner {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 var(--px);
}

.article-detail-meta {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.article-detail-cat {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bh-orange);
}

.article-detail-date {
  font-size: 12px;
  color: var(--bh-steel);
}

.article-detail-author {
  font-size: 12px;
  color: var(--bh-steel);
}

.article-detail h1 {
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.1;
  color: var(--bh-black);
  margin-bottom: 2rem;
}

.article-body {
  font-size: 17px;
  line-height: 1.7;
  color: var(--bh-graphite);
}

.article-body h2 {
  font-size: 24px;
  font-weight: 500;
  color: var(--bh-black);
  margin: 2.5rem 0 1rem;
  letter-spacing: -0.02em;
}

.article-body h3 {
  font-size: 20px;
  font-weight: 500;
  color: var(--bh-black);
  margin: 2rem 0 0.75rem;
}

.article-body p {
  margin-bottom: 1.25rem;
}

.article-body ul,
.article-body ol {
  margin: 1.25rem 0 1.25rem 1.5rem;
}

.article-body li {
  margin-bottom: 0.5rem;
}

.article-body strong {
  color: var(--bh-black);
  font-weight: 600;
}

.article-body a {
  color: var(--bh-orange);
  text-decoration: underline;
}

.article-related {
  padding: 4rem 0;
  background: var(--bh-cloud);
}

.article-related-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--px);
}

/* ── FAQ PAGE ──────────────────────────────────────────────── */
.faq-page {
  padding: 4rem 0 6rem;
}

.faq-inner {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 var(--px);
}

.faq-category {
  margin-bottom: 3rem;
}

.faq-category-title {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bh-orange);
  margin-bottom: 1.25rem;
}

.faq-item {
  border-bottom: 1px solid var(--bh-border);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 0;
  cursor: pointer;
  user-select: none;
}

.faq-q-text {
  font-size: clamp(15px, 1.5vw, 18px);
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--bh-black);
  transition: color 0.2s;
}

.faq-question:hover .faq-q-text {
  color: var(--bh-orange);
}

.faq-toggle {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid var(--bh-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bh-graphite);
  transition: all 0.25s var(--ease);
}

.faq-item.open .faq-toggle {
  transform: rotate(45deg);
  border-color: var(--bh-orange);
  color: var(--bh-orange);
}

.faq-answer {
  display: none;
  padding-bottom: 1.5rem;
  font-size: 15px;
  line-height: 1.65;
  color: var(--bh-graphite);
}

.faq-answer.open {
  display: block;
}

/* ── PARTNERS PAGE ─────────────────────────────────────────── */
.partners-page {
  padding: 4rem 0 6rem;
}

.partners-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--px);
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .partners-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .partners-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.partner-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--bh-border);
  padding: 1.5rem;
  transition: border-color 0.2s;
}

.partner-card:hover {
  border-color: rgba(90, 90, 86, 0.5);
}

.partner-logo {
  height: 48px;
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.partner-logo img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
}

.partner-name {
  font-size: 15px;
  font-weight: 500;
  color: var(--bh-black);
  margin-bottom: 0.5rem;
}

.partner-desc {
  font-size: 13px;
  color: var(--bh-graphite);
  line-height: 1.5;
}

.partners-empty {
  text-align: center;
  padding: 4rem 2rem;
  color: var(--bh-graphite);
  font-size: 16px;
}

/* ── COMMERCIAL SUPPORT / PEACE OF MIND PAGES ─────────────── */
.cs-page,
.pom-page {
  padding-bottom: 6rem;
}

.cs-section {
  padding: 4rem 0;
}

.cs-section-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--px);
}

.pom-card {
  max-width: 600px;
  margin: 0 auto;
  border: 1px solid var(--bh-border);
  padding: 2.5rem;
}

.pom-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.pom-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 14px;
  color: var(--bh-graphite);
}

.pom-check {
  color: var(--bh-orange);
  flex-shrink: 0;
  margin-top: 2px;
}

.pom-cta {
  margin-top: 2rem;
}

/* ── CONTACT PAGE ──────────────────────────────────────────── */
.contact-page {
  padding: 4rem 0 6rem;
}

.contact-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--px);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 768px) {
  .contact-grid {
    grid-template-columns: 5fr 7fr;
    gap: 4rem;
  }
}

.contact-info-block {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-info-item {}

.contact-info-label {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bh-graphite);
  margin-bottom: 0.5rem;
}

.contact-info-value {
  font-size: 16px;
  color: var(--bh-black);
}

/* ── UTILITY ───────────────────────────────────────────────── */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.text-orange {
  color: var(--bh-orange);
}

.text-graphite {
  color: var(--bh-graphite);
}

.mt-auto {
  margin-top: auto;
}

.divider {
  height: 1px;
  background: var(--bh-border);
}

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--px);
}