/* =========================================================
   Blevins Holdings - Master Global Additional CSS
   Theme: Portfolio WP
========================================================= */


/* ================================
   1. Brand Tokens
================================ */

:root {
  --bh-navy: #071b33;
  --bh-navy-dark: #061a2f;
  --bh-navy-soft: #102943;

  --bh-gold: #b8952f;
  --bh-gold-dark: #8f741b;

  --bh-white: #ffffff;
  --bh-cream: #f8f7f3;

  --bh-text: #102033;
  --bh-muted: #526174;

  --bh-border: #d8dde3;
  --bh-soft-border: rgba(255, 255, 255, 0.14);

  --bh-shadow-soft: 0 18px 48px rgba(6, 26, 47, 0.08);
  --bh-shadow-header: 0 8px 24px rgba(0, 0, 0, 0.14);
}


/* ================================
   2. Safe Global Fixes
================================ */

html {
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}


/* ================================
   3. Portfolio WP Adjustments
================================ */

.site-header,
.site-main,
.site-footer {
  margin-top: 0 !important;
}

.site-main > .entry-content {
  margin-top: 0;
}

.page-template-default .entry-content > .alignfull {
  margin-top: 0;
  margin-bottom: 0;
}


/* ================================
   4. Blevins Global Header
================================ */

.bh-site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background-color: var(--bh-navy);
  color: var(--bh-white);
  border-bottom: 1px solid var(--bh-soft-border);
  font-family: inherit;
  box-shadow: var(--bh-shadow-header);
}

.bh-header-inner {
  max-width: 1180px;
  margin: 0 auto;
  min-height: 82px;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.bh-header-logo-link {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.bh-header-logo {
  width: 154px;
  max-width: 100%;
  height: auto;
  display: block;
}

.bh-header-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex: 1;
}

.bh-header-nav a {
  position: relative;
  color: #eaf1f8;
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.035em;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.2s ease;
}

.bh-header-nav a:hover,
.bh-header-nav a:focus {
  color: var(--bh-gold);
}

.bh-header-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -12px;
  width: 0;
  height: 2px;
  background-color: var(--bh-gold);
  transition: width 0.2s ease;
}

.bh-header-nav a:hover::after,
.bh-header-nav a:focus::after {
  width: 100%;
}

.bh-header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.bh-header-login {
  color: #d7e2ef;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.2s ease;
}

.bh-header-login:hover,
.bh-header-login:focus {
  color: var(--bh-gold);
}

.bh-header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 22px;
  border-radius: 0;
  background-color: var(--bh-gold);
  color: var(--bh-navy);
  border: 1px solid var(--bh-gold);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  line-height: 1;
  text-transform: uppercase;
  text-decoration: none;
  transition:
    background-color 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease;
}

.bh-header-cta:hover,
.bh-header-cta:focus {
  background-color: var(--bh-white);
  border-color: var(--bh-white);
  color: var(--bh-navy);
}

.bh-header-menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 0;
  background: transparent;
  color: var(--bh-white);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.bh-header-menu-button span {
  display: block;
  width: 18px;
  height: 2px;
  background-color: currentColor;
  transition:
    transform 0.2s ease,
    opacity 0.2s ease;
}

.bh-site-header.menu-open .bh-header-menu-button span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.bh-site-header.menu-open .bh-header-menu-button span:nth-child(2) {
  opacity: 0;
}

.bh-site-header.menu-open .bh-header-menu-button span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}


/* ================================
   5. Blevins Mobile Header Menu
================================ */

.bh-mobile-menu {
  display: none;
  background-color: var(--bh-navy);
  border-top: 1px solid var(--bh-soft-border);
}

.bh-mobile-nav {
  max-width: 1180px;
  margin: 0 auto;
  padding: 18px 24px 26px;
  display: grid;
  gap: 0;
}

.bh-mobile-nav a {
  display: flex;
  align-items: center;
  min-height: 48px;
  color: #eaf1f8;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.bh-mobile-nav a:hover,
.bh-mobile-nav a:focus {
  color: var(--bh-gold);
}

.bh-mobile-cta {
  justify-content: center;
  margin-top: 14px;
  min-height: 48px;
  background-color: var(--bh-gold);
  color: var(--bh-navy) !important;
  border-bottom: none !important;
}

.bh-mobile-cta:hover,
.bh-mobile-cta:focus {
  background-color: var(--bh-white);
  color: var(--bh-navy) !important;
}


/* ================================
   6. Accessibility
================================ */

.bh-header-nav a:focus-visible,
.bh-header-login:focus-visible,
.bh-header-cta:focus-visible,
.bh-header-menu-button:focus-visible,
.bh-mobile-nav a:focus-visible {
  outline: 2px solid var(--bh-gold);
  outline-offset: 4px;
}


/* ================================
   7. Global Reusable Components
================================ */

.bh-full-bleed {
  width: 100vw;
  max-width: none;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.bh-section-inner {
  max-width: 1180px;
  width: 100%;
  margin: 0 auto;
}

.bh-serif {
  font-family: Georgia, "Times New Roman", serif;
}

.bh-eyebrow {
  margin: 0 0 26px;
  color: var(--bh-gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}

.bh-button-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 24px;
  background-color: var(--bh-gold);
  color: var(--bh-navy);
  border: 1px solid var(--bh-gold);
  text-decoration: none;
  text-transform: uppercase;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  line-height: 1;
  transition:
    background-color 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease;
}

.bh-button-gold:hover,
.bh-button-gold:focus {
  background-color: var(--bh-navy);
  border-color: var(--bh-navy);
  color: var(--bh-white);
}

.bh-button-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 24px;
  background-color: transparent;
  color: var(--bh-navy);
  border: 1px solid var(--bh-navy);
  text-decoration: none;
  text-transform: uppercase;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  line-height: 1;
  transition:
    background-color 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease;
}

.bh-button-outline:hover,
.bh-button-outline:focus {
  background-color: var(--bh-navy);
  border-color: var(--bh-navy);
  color: var(--bh-white);
}


/* ================================
   8. Homepage / Capabilities Section
================================ */

.bh-capabilities {
  width: auto;
  max-width: none;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 112px 24px;
  background: var(--bh-white);
  overflow: visible;
}

.bh-capabilities .bh-section-inner {
  max-width: 1180px;
  width: 100%;
  margin: 0 auto;
}

.bh-capabilities .bh-section-header {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.bh-capabilities .bh-section-header h2 {
  max-width: 850px;
  margin: 0 auto;
  color: var(--bh-navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.35rem, 3.8vw, 4rem);
  line-height: 1.05;
  font-weight: 400;
  letter-spacing: -0.035em;
}

.bh-capabilities .bh-section-header p {
  max-width: 760px;
  margin: 22px auto 0;
  color: #3f4650;
  font-size: 1rem;
  line-height: 1.75;
}

.bh-capability-grid {
  width: 100%;
  max-width: 1180px;
  margin: 60px auto 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid #aeb7c2;
  border-bottom: 1px solid #aeb7c2;
}

.bh-capability-card {
  min-width: 0;
  min-height: 240px;
  padding: 38px 34px;
  background: transparent;
  border: none;
  border-left: 1px solid var(--bh-border);
  border-radius: 0;
  transition: background-color 0.2s ease;
}

.bh-capability-card:first-child {
  border-left: none;
}

.bh-capability-card:hover {
  background-color: var(--bh-cream);
}

.bh-capability-card h3 {
  margin: 0 0 16px;
  color: var(--bh-navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
  line-height: 1.18;
  font-weight: 400;
  letter-spacing: -0.02em;
}

.bh-capability-card p {
  margin: 0;
  color: #3f4650;
  font-size: 1rem;
  line-height: 1.72;
}


/* ================================
   9. Page: Governance
================================ */

.bh-governance-page,
.bh-governance-page * {
  box-sizing: border-box;
}

.bh-governance-page {
  width: 100vw;
  max-width: none;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  background: var(--bh-white);
  color: var(--bh-text);
}

.bh-governance-page ul,
.bh-governance-page ol {
  margin: 0;
  padding: 0;
}

.bh-governance-page li {
  margin: 0;
}

.bh-gov-container {
  width: min(1120px, 76%);
  margin: 0 auto;
}

.bh-gov-hero-white {
  background: var(--bh-white);
  padding: 42px 0 74px;
}

.bh-gov-rule {
  width: 100%;
  height: 7px;
  background: var(--bh-navy);
  margin-bottom: 88px;
  position: relative;
}

.bh-gov-rule span {
  display: block;
  width: 28%;
  height: 7px;
  background: var(--bh-gold);
  margin-left: auto;
}

.bh-gov-heading-wrap {
  max-width: 920px;
  padding-left: 28px;
  border-left: 5px solid var(--bh-gold);
}

.bh-gov-eyebrow,
.bh-gov-small-label,
.bh-gov-card-label {
  margin: 0 0 30px;
  color: var(--bh-navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.bh-gov-hero-white h1 {
  margin: 0;
  color: var(--bh-navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4rem, 7vw, 6.7rem);
  line-height: 0.92;
  letter-spacing: -0.055em;
  font-weight: 700;
}

.bh-gov-hero-white h1 em {
  color: var(--bh-gold-dark);
  font-style: italic;
  font-weight: 700;
}

.bh-gov-lede {
  max-width: 850px;
  margin: 34px 0 0;
  color: var(--bh-text);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  line-height: 1.45;
}

.bh-gov-section-white,
.bh-gov-section-muted {
  padding: 82px 0;
}

.bh-gov-section-muted {
  background: var(--bh-cream);
}

.bh-gov-two-column {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 70px;
  align-items: start;
}

.bh-gov-section-white h2,
.bh-gov-section-muted h2 {
  max-width: 850px;
  margin: 0 0 28px;
  color: var(--bh-navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.4rem, 4vw, 4.3rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.bh-gov-section-white p,
.bh-gov-section-muted p {
  max-width: 760px;
  margin: 0 0 18px;
  color: var(--bh-muted);
  font-size: 1.08rem;
  line-height: 1.7;
}

.bh-gov-side-card,
.bh-gov-info-card,
.bh-gov-committee-item {
  background: var(--bh-white);
  border: 1px solid #d9d2c0;
  box-shadow: var(--bh-shadow-soft);
}

.bh-gov-side-card {
  padding: 34px;
  border-top: 6px solid var(--bh-gold);
}

.bh-gov-side-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.bh-gov-side-card li {
  list-style: none;
  padding: 16px 0;
  color: var(--bh-navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.12rem;
  font-weight: 700;
  border-top: 1px solid #d9d2c0;
}

.bh-gov-grid-four,
.bh-gov-grid-three {
  display: grid;
  gap: 22px;
  margin-top: 46px;
}

.bh-gov-grid-four {
  grid-template-columns: repeat(4, 1fr);
}

.bh-gov-grid-three {
  grid-template-columns: repeat(3, 1fr);
}

.bh-gov-info-card {
  padding: 28px;
  border-top: 5px solid var(--bh-gold);
}

.bh-gov-info-card h3,
.bh-gov-committee-item h3 {
  margin: 0 0 14px;
  color: var(--bh-navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  line-height: 1.15;
}

.bh-gov-info-card p,
.bh-gov-committee-item p {
  margin: 0;
  color: var(--bh-muted);
  font-size: 0.98rem;
  line-height: 1.6;
}

.bh-gov-committee-list {
  display: grid;
  gap: 18px;
  margin-top: 44px;
}

.bh-gov-committee-item {
  position: relative;
  padding: 30px 34px 30px 42px;
  border-left: 6px solid var(--bh-gold);
}


/* ================================
   10. Responsive
================================ */

@media (max-width: 1000px) {
  .bh-gov-container {
    width: min(1120px, 88%);
  }

  .bh-gov-two-column {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .bh-gov-grid-four,
  .bh-gov-grid-three {
    grid-template-columns: repeat(2, 1fr);
  }

  .bh-gov-hero-white h1 {
    font-size: 4.3rem;
  }
}

@media (max-width: 980px) {
  .bh-header-nav,
  .bh-header-actions {
    display: none;
  }

  .bh-header-menu-button {
    display: inline-flex;
  }

  .bh-mobile-menu[aria-hidden="false"] {
    display: block;
  }

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

  .bh-capability-card {
    border-left: none;
    border-top: 1px solid var(--bh-border);
  }

  .bh-capability-card:first-child {
    border-top: none;
  }
}

@media (max-width: 640px) {
  .bh-gov-container {
    width: 88%;
  }

  .bh-gov-hero-white {
    padding: 32px 0 54px;
  }

  .bh-gov-rule {
    margin-bottom: 56px;
  }

  .bh-gov-heading-wrap {
    padding-left: 20px;
  }

  .bh-gov-hero-white h1 {
    font-size: 3.1rem;
  }

  .bh-gov-section-white h2,
  .bh-gov-section-muted h2 {
    font-size: 2.35rem;
  }

  .bh-gov-grid-four,
  .bh-gov-grid-three {
    grid-template-columns: 1fr;
  }

  .bh-gov-section-white,
  .bh-gov-section-muted {
    padding: 58px 0;
  }
}

@media (max-width: 560px) {
  .bh-header-inner {
    min-height: 74px;
    padding: 0 20px;
  }

  .bh-header-logo {
    width: 124px;
  }

  .bh-mobile-nav {
    padding-left: 20px;
    padding-right: 20px;
  }

  .bh-capabilities {
    padding: 76px 20px;
  }

  .bh-capability-card {
    padding: 30px 0;
    min-height: auto;
  }

  .bh-capabilities .bh-section-header {
    text-align: left;
  }

  .bh-capabilities .bh-section-header h2,
  .bh-capabilities .bh-section-header p {
    margin-left: 0;
    margin-right: 0;
  }
}/* =========================================================
   HOMEPAGE HERO — FINAL CLEAN OVERRIDE
   Paste at very bottom of Additional CSS
========================================================= */

/* Break homepage out of WordPress content column */
body.home .entry-content,
body.home .wp-block-post-content,
body.home .site-content,
body.home .content-area,
body.home .ast-container {
  max-width: none !important;
  width: 100% !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

/* Homepage wrapper */
body .bh-site-home {
  width: 100vw !important;
  max-width: 100vw !important;
  margin-left: calc(50% - 50vw) !important;
  margin-right: calc(50% - 50vw) !important;
  overflow-x: hidden !important;
  background: #ffffff !important;
}

/* Full-width hero */
body .bh-site-home .bh-hero {
  position: relative !important;
  width: 100vw !important;
  max-width: 100vw !important;
  margin-left: calc(50% - 50vw) !important;
  margin-right: calc(50% - 50vw) !important;
  min-height: auto !important;
  overflow: hidden !important;
  color: #ffffff !important;
  background:
    linear-gradient(
      90deg,
      rgba(4, 19, 38, 0.98) 0%,
      rgba(7, 27, 51, 0.97) 56%,
      rgba(11, 40, 72, 0.95) 100%
    ),
    radial-gradient(
      circle at 82% 24%,
      rgba(184, 149, 47, 0.16),
      transparent 34%
    ) !important;
}

body .bh-site-home .bh-hero::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 5px;
  background: linear-gradient(
    90deg,
    #071b33 0%,
    #071b33 70%,
    #b8952f 70%,
    #b8952f 100%
  );
  z-index: 2;
}

/* Optional grid texture */
body .bh-site-home .bh-bg-grid {
  position: absolute !important;
  inset: 0 !important;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px) !important;
  background-size: 46px 46px !important;
  opacity: 0.55 !important;
  pointer-events: none !important;
}

/* Inner content width */
body .bh-site-home .bh-wrap {
  width: min(100% - 48px, 1180px) !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

/* Hero layout */
body .bh-site-home .bh-hero-inner {
  position: relative !important;
  z-index: 1 !important;
  min-height: 570px !important;
  display: grid !important;
  grid-template-columns: minmax(0, 660px) minmax(260px, 330px) !important;
  justify-content: space-between !important;
  align-items: center !important;
  gap: 72px !important;
  padding: 72px 0 84px !important;
}

body .bh-site-home .bh-hero-copy {
  max-width: 660px !important;
}

body .bh-site-home .bh-eyebrow {
  margin: 0 !important;
  color: #b8952f !important;
  font-size: 0.76rem !important;
  font-weight: 900 !important;
  letter-spacing: 0.18em !important;
  line-height: 1.2 !important;
  text-transform: uppercase !important;
}

/* Hero headline */
body .bh-site-home .bh-hero h1 {
  max-width: 650px !important;
  margin: 22px 0 0 !important;
  color: #ffffff !important;
  font-family: Georgia, "Times New Roman", serif !important;
  font-size: clamp(3.05rem, 4.45vw, 4.55rem) !important;
  line-height: 1 !important;
  font-weight: 400 !important;
  letter-spacing: -0.052em !important;
}

/* Hero paragraph */
body .bh-site-home .bh-hero-copy > p:not(.bh-eyebrow) {
  max-width: 610px !important;
  margin: 24px 0 0 !important;
  color: rgba(255, 255, 255, 0.72) !important;
  font-family: inherit !important;
  font-size: 1.08rem !important;
  line-height: 1.72 !important;
}

/* Hero buttons */
body .bh-site-home .bh-actions {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 14px !important;
  margin-top: 30px !important;
}

body .bh-site-home .bh-btn {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 48px !important;
  padding: 0 22px !important;
  border-radius: 0 !important;
  font-size: 0.76rem !important;
  font-weight: 900 !important;
  letter-spacing: 0.08em !important;
  line-height: 1 !important;
  text-transform: uppercase !important;
  text-decoration: none !important;
  transition:
    background-color 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
}

body .bh-site-home .bh-btn:hover {
  transform: translateY(-1px) !important;
}

body .bh-site-home .bh-btn-gold {
  background: #b8952f !important;
  color: #071b33 !important;
  border: 1px solid #b8952f !important;
  box-shadow: none !important;
}

body .bh-site-home .bh-btn-gold:hover {
  background: #ffffff !important;
  border-color: #ffffff !important;
  color: #071b33 !important;
}

body .bh-site-home .bh-btn-outline {
  color: #ffffff !important;
  border: 1px solid rgba(255, 255, 255, 0.28) !important;
  background: transparent !important;
}

body .bh-site-home .bh-btn-outline:hover {
  background: rgba(255, 255, 255, 0.08) !important;
}

/* Hero side panel */
body .bh-site-home .bh-hero-panel {
  align-self: center !important;
  width: 100% !important;
  max-width: 330px !important;
  padding: 26px 28px !important;
  border-radius: 0 !important;
  border: 1px solid rgba(255, 255, 255, 0.13) !important;
  background: rgba(255, 255, 255, 0.045) !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
}

body .bh-site-home .bh-hero-panel p {
  margin: 0 0 20px !important;
  color: #b8952f !important;
  font-size: 0.7rem !important;
  font-weight: 900 !important;
  letter-spacing: 0.18em !important;
  line-height: 1.2 !important;
  text-transform: uppercase !important;
}

body .bh-site-home .bh-hero-panel ul {
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}

body .bh-site-home .bh-hero-panel li {
  margin: 0 !important;
  padding: 13px 0 !important;
  list-style: none !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12) !important;
  color: #ffffff !important;
  font-family: Georgia, "Times New Roman", serif !important;
  font-size: 1.05rem !important;
  font-weight: 400 !important;
  line-height: 1.25 !important;
  letter-spacing: -0.015em !important;
}

body .bh-site-home .bh-hero-panel li:last-child {
  border-bottom: none !important;
}

/* Remove accidental white gutters around homepage */
body.home article,
body.home .entry-content > * {
  margin-top: 0 !important;
}

/* Header cleanup over hero */
body .bh-site-header {
  box-shadow: none !important;
}

body .bh-site-header::after {
  height: 0 !important;
}

/* Tablet */
@media (max-width: 980px) {
  body .bh-site-home .bh-hero-inner {
    grid-template-columns: 1fr !important;
    min-height: auto !important;
    gap: 38px !important;
    padding: 66px 0 76px !important;
  }

  body .bh-site-home .bh-hero h1 {
    max-width: 720px !important;
    font-size: clamp(3rem, 8vw, 4.35rem) !important;
  }

  body .bh-site-home .bh-hero-copy > p:not(.bh-eyebrow) {
    max-width: 680px !important;
  }

  body .bh-site-home .bh-hero-panel {
    max-width: 520px !important;
  }
}

/* Mobile */
@media (max-width: 620px) {
  body .bh-site-home .bh-wrap {
    width: min(100% - 36px, 1180px) !important;
  }

  body .bh-site-home .bh-hero-inner {
    padding: 54px 0 64px !important;
  }

  body .bh-site-home .bh-hero h1 {
    font-size: clamp(2.45rem, 11.5vw, 3.35rem) !important;
    line-height: 1.02 !important;
  }

  body .bh-site-home .bh-hero-copy > p:not(.bh-eyebrow) {
    font-size: 1rem !important;
    line-height: 1.65 !important;
  }

  body .bh-site-home .bh-hero-panel {
    max-width: 100% !important;
  }

  body .bh-site-home .bh-actions {
    display: grid !important;
    grid-template-columns: 1fr !important;
  }

  body .bh-site-home .bh-btn {
    width: 100% !important;
  }
}
/* =========================================================
   HOMEPAGE CARD DENSITY FIX
   Makes capability/outcome/insight cards less oversized
========================================================= */

body .bh-site-home .bh-card {
  min-height: 215px !important;
  padding: 28px 30px !important;
}

body .bh-site-home .bh-card span {
  margin-bottom: 26px !important;
}

body .bh-site-home .bh-card h3,
body .bh-site-home .bh-list h3,
body .bh-site-home .bh-three h3,
body .bh-site-home .bh-insights h3 {
  font-size: 1.32rem !important;
  line-height: 1.2 !important;
}

body .bh-site-home .bh-card p,
body .bh-site-home .bh-list p,
body .bh-site-home .bh-three p,
body .bh-site-home .bh-insights p {
  font-size: 0.95rem !important;
  line-height: 1.62 !important;
}

/* Tighten capability grid specifically */
body .bh-site-home .bh-card-grid {
  align-items: stretch !important;
}

body .bh-site-home .bh-card-grid .bh-card {
  display: flex !important;
  flex-direction: column !important;
}

/* Tighten outcome/insight cards too */
body .bh-site-home .bh-three article,
body .bh-site-home .bh-insights article {
  min-height: 210px !important;
  padding: 28px 30px !important;
}

body .bh-site-home .bh-three span {
  margin-bottom: 22px !important;
}

/* Mobile: keep cards compact */
@media (max-width: 760px) {
  body .bh-site-home .bh-card,
  body .bh-site-home .bh-three article,
  body .bh-site-home .bh-insights article {
    min-height: auto !important;
    padding: 24px 0 !important;
  }

  body .bh-site-home .bh-card span {
    margin-bottom: 18px !important;
  }
}
/* =========================================================
   BLEVINS HOMEPAGE MOTION SYSTEM
   Subtle animations for hero, cards, panels, and links
========================================================= */

/* Initial page/hero entrance */
body .bh-site-home .bh-hero-copy,
body .bh-site-home .bh-hero-panel {
  animation-duration: 720ms;
  animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
  animation-fill-mode: both;
}

body .bh-site-home .bh-hero-copy {
  animation-name: bhFadeUp;
}

body .bh-site-home .bh-hero-panel {
  animation-name: bhFadeInRight;
  animation-delay: 140ms;
}

/* Hero background texture slowly moves */
body .bh-site-home .bh-bg-grid {
  animation: bhGridDrift 22s linear infinite;
}

/* Buttons */
body .bh-site-home .bh-btn,
body .bh-header-cta,
body .bh-button-gold,
body .bh-button-outline {
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    transform 180ms ease,
    box-shadow 180ms ease;
}

body .bh-site-home .bh-btn:hover,
body .bh-header-cta:hover,
body .bh-button-gold:hover,
body .bh-button-outline:hover {
  transform: translateY(-2px);
}

/* Cards: refined lift */
body .bh-site-home .bh-card,
body .bh-site-home .bh-list article,
body .bh-site-home .bh-three article,
body .bh-site-home .bh-insights article,
body .bh-site-home .bh-process article {
  transition:
    background-color 220ms ease,
    border-color 220ms ease,
    transform 220ms ease,
    box-shadow 220ms ease;
}

body .bh-site-home .bh-card:hover,
body .bh-site-home .bh-list article:hover,
body .bh-site-home .bh-three article:hover,
body .bh-site-home .bh-insights article:hover {
  transform: translateY(-3px) !important;
  background-color: #fbfcfd !important;
  box-shadow: 0 18px 42px rgba(6, 26, 47, 0.08) !important;
}

/* Dark process cards: subtle glow */
body .bh-site-home .bh-process article:hover {
  transform: translateY(-3px) !important;
  background: rgba(255, 255, 255, 0.055) !important;
}

/* Gold numbers and labels get a slight polish */
body .bh-site-home .bh-card span,
body .bh-site-home .bh-process span,
body .bh-site-home .bh-eyebrow {
  transition:
    color 180ms ease,
    letter-spacing 180ms ease,
    opacity 180ms ease;
}

body .bh-site-home .bh-card:hover span,
body .bh-site-home .bh-process article:hover span {
  color: #b8952f !important;
  letter-spacing: 0.2em !important;
}

/* Links: underline grows in instead of popping */
body .bh-site-home .bh-text-link,
body .bh-site-home .bh-insights a {
  position: relative;
  text-decoration: none !important;
}

body .bh-site-home .bh-text-link::after,
body .bh-site-home .bh-insights a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 100%;
  height: 2px;
  transform: scaleX(0.35);
  transform-origin: left;
  background: #b8952f;
  transition: transform 220ms ease;
}

body .bh-site-home .bh-text-link:hover::after,
body .bh-site-home .bh-insights a:hover::after {
  transform: scaleX(1);
}

/* Header nav underline feels smoother */
body .bh-header-nav a::after {
  transition:
    width 180ms ease,
    transform 180ms ease,
    opacity 180ms ease;
}

/* Footer/social motion, if using the custom footer */
body .bh-footer a,
body .bh-site-footer a {
  transition:
    color 180ms ease,
    transform 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease;
}

/* Keyframes */
@keyframes bhFadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bhFadeInRight {
  from {
    opacity: 0;
    transform: translateX(22px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes bhGridDrift {
  from {
    background-position: 0 0, 0 0;
  }

  to {
    background-position: 46px 46px, 46px 46px;
  }
}

/* Respect reduced-motion preferences */
@media (prefers-reduced-motion: reduce) {
  body .bh-site-home *,
  body .bh-site-home *::before,
  body .bh-site-home *::after,
  body .bh-site-header *,
  body .bh-site-header *::before,
  body .bh-site-header *::after,
  body .bh-footer *,
  body .bh-footer *::before,
  body .bh-footer *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
}