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

body {
  margin: 0;
  color: #201713;
  background: #fffdfb;
}

img {
  max-width: 100%;
}

@keyframes bb-fade-up {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bb-soft-float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

.bb-topbar {
  background: #df762a;
  color: #fff7ee;
  font-size: 13px;
  font-weight: 800;
  border-bottom: 1px solid #c45f1f;
}

.bb-announcement .bb-container {
  justify-content: center;
  gap: 18px;
  min-height: 34px;
}

.bb-announcement span + span::before {
  content: "";
  display: inline-block;
  width: 4px;
  height: 4px;
  margin-right: 18px;
  border-radius: 50%;
  background: #fff4e8;
  vertical-align: middle;
}

.bb-topbar a,
.bb-site-header a,
.bb-footer a {
  color: inherit;
  text-decoration: none;
}

.bb-container {
  width: min(1320px, calc(100% - 40px));
  margin-inline: auto;
}

.bb-container.narrow {
  width: min(980px, calc(100% - 40px));
}

.bb-topbar .bb-container,
.bb-site-header .bb-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.bb-topbar .bb-container {
  padding: 8px 0;
}

.bb-site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid #efe1d4;
  backdrop-filter: blur(10px);
}

.bb-site-header .bb-container {
  min-height: 122px;
}

.bb-brand {
  display: flex;
  align-items: center;
  gap: 16px;
  font-weight: 800;
  color: #201713;
  font-size: 18px;
}

.bb-brand img,
.bb-site-header img[src*="logo"] {
  width: 270px !important;
  height: 126px !important;
  object-fit: contain;
}

.bb-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: #35251d;
  font-size: 15px;
  font-weight: 700;
}

.bb-menu-toggle {
  display: none;
  align-items: center;
  gap: 9px;
  min-height: 42px;
  padding: 8px 12px;
  border: 2px solid #201713;
  border-radius: 8px;
  background: #fff8ef;
  color: #201713;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.bb-menu-icon {
  display: grid;
  gap: 4px;
  width: 20px;
}

.bb-menu-icon i {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.bb-menu-toggle strong {
  margin-left: 0;
  font-size: 14px;
}

.bb-nav a[href*="/blog"] {
  display: none !important;
}

.bb-nav-menu {
  position: relative;
  padding: 18px 0;
  margin: -18px 0;
}

.bb-nav-menu-trigger::after {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-left: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-3px) rotate(45deg);
}

.bb-nav-submenu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 30;
  min-width: 250px;
  display: none !important;
  gap: 2px;
  padding: 10px;
  border: 1px solid #ead7c6;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 20px 50px rgba(63, 37, 23, 0.16);
}

.bb-nav-submenu::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -12px;
  height: 12px;
}

.bb-nav-menu:hover .bb-nav-submenu,
.bb-nav-menu:focus-within .bb-nav-submenu {
  display: grid !important;
}

.bb-nav-submenu a {
  display: block !important;
  padding: 10px 12px;
  border-radius: 8px;
  color: #201713;
  white-space: nowrap;
}

.bb-nav-submenu a:hover,
.bb-nav-submenu a:focus {
  background: #fff3e8;
}

.bb-button,
.wp-block-button__link,
.bb-intake button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 18px;
  border: 2px solid #201713;
  border-radius: 999px;
  background: #df762a;
  color: #fff;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 4px 5px 0 #201713;
}

.bb-button.secondary {
  background: #df762a;
  color: #fff;
}

.bb-nav > .bb-button,
.bb-site-header .bb-button {
  min-height: 38px;
  padding: 8px 16px !important;
  font-size: 14px !important;
  border-radius: 8px;
  box-shadow: none;
}

.bb-nav > .bb-button.donate,
.bb-site-header .bb-button.donate {
  border-color: #df762a;
  background: #fff4e8;
  color: #a04d18;
}

.bb-nav > .bb-button.donate:hover,
.bb-site-header .bb-button.donate:hover {
  background: #ffe3c9;
}

.bb-button.text {
  min-height: 44px;
  padding-inline: 4px;
  border-color: transparent;
  background: transparent;
  color: #201713;
  box-shadow: none;
}

.bb-button.text::after {
  content: "->";
  margin-left: 10px;
}

.bb-hero {
  min-height: 0;
  display: flex !important;
  align-items: center;
  color: #201713;
}

.bb-hero-editorial {
  background: #fffdfb;
  overflow: hidden;
}

.bb-hero-inner {
  max-width: none;
  padding: 36px 0 46px;
}

.bb-hero .bb-container,
.bb-hero-inner {
  margin-left: auto;
  margin-right: auto;
}

.bb-hero-editorial .bb-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.92fr);
  gap: clamp(46px, 5vw, 84px);
  align-items: center;
}

.bb-hero-copy {
  max-width: 760px;
}

.bb-location-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  margin: 0 0 30px;
  padding: 12px 18px;
  border-radius: 999px;
  background: #fff0e5;
  color: #e66b16;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.bb-location-pill span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #e9a27b;
}

.bb-eyebrow {
  margin: 0 0 12px;
  color: #f5d28a;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

.bb-hero h1,
.bb-page-hero h1 {
  margin: 0 0 24px;
  max-width: 760px;
  font-size: clamp(50px, 5.3vw, 74px);
  line-height: 0.98;
  letter-spacing: 0;
}

.bb-hero h1 {
  color: #15110f;
  font-weight: 950;
}

.bb-hero h1 em {
  color: #c45f1f;
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-weight: 700;
}

.bb-hero h1 span {
  background: linear-gradient(transparent 76%, #ffc46f 76%);
}

.bb-hero p,
.bb-page-hero p {
  max-width: 620px;
  font-size: 20px;
}

.bb-hero .bb-hero-lead {
  max-width: 700px;
  color: #5d4a3f;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 21px;
  line-height: 1.48;
}

.bb-hero-actions {
  display: flex !important;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 28px;
}

.bb-hero-photo {
  position: relative;
  min-height: 500px;
}

.bb-hero-photo::before {
  content: "";
  position: absolute;
  inset: 54px 40px 20px;
  border-radius: 50%;
  background: #fff1e1;
  z-index: 0;
}

.bb-hero-photo img {
  display: block;
  position: relative;
  z-index: 1;
  width: min(460px, 100%);
  aspect-ratio: 1;
  min-height: 0;
  margin: 38px auto 0;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 42%;
  box-shadow: 0 28px 70px rgba(242, 112, 22, 0.18);
}

.bb-hero-badge {
  position: absolute;
  z-index: 2;
  display: grid;
  gap: 4px;
  max-width: 235px;
  padding: 16px 18px;
  border-radius: 8px;
  background: #fff0e8;
  color: #17324a;
  box-shadow: 0 18px 42px rgba(63, 37, 23, 0.12);
}

.bb-hero-badge strong {
  font-size: 17px;
  line-height: 1.1;
}

.bb-hero-badge span {
  font-size: 14px;
  line-height: 1.25;
}

.bb-hero-badge.top {
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  background: #ffe6d3;
}

.bb-hero-badge.left {
  left: 6px;
  bottom: 128px;
  background: #fff3e8;
}

.bb-hero-badge.right {
  right: 2px;
  bottom: 42px;
  background: #fff7e8;
}

.bb-insurance-ribbon {
  background: #24495a;
  color: #fff;
  padding: 28px 0;
}

.bb-insurance-ribbon .bb-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.bb-insurance-ribbon p {
  margin: 0;
  font-size: 19px;
  font-weight: 800;
}

.bb-ribbon-logos {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 20px;
  font-weight: 950;
}

.bb-ribbon-logos img {
  display: block;
  width: auto;
  max-width: 170px;
  max-height: 42px;
  padding: 6px 10px;
  border-radius: 8px;
  background: #fff;
  object-fit: contain;
}

.bb-ribbon-button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 10px 22px;
  border-radius: 999px;
  background: #fff4e8;
  color: #24495a;
  font-weight: 900;
  text-decoration: none;
}

.bb-hero-points,
.bb-stat-grid,
.bb-step-grid,
.bb-logo-grid,
.wp-block-group.bb-hero-points,
.wp-block-group.bb-stat-grid,
.wp-block-group.bb-step-grid,
.wp-block-group.bb-logo-grid {
  display: grid !important;
  gap: 16px;
}

.bb-hero-points > *,
.bb-stat-grid > *,
.bb-step-grid > *,
.bb-logo-grid > * {
  min-width: 0;
}

.bb-hero-points,
.wp-block-group.bb-hero-points {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  margin-top: 34px !important;
}

.bb-point,
.bb-hero-points > * {
  box-sizing: border-box;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(8px);
  font-weight: 800;
}

.bb-section {
  padding: 84px 0;
  animation: bb-fade-up 700ms ease both;
  animation-timeline: view();
  animation-range: entry 0% cover 22%;
}

.bb-section.alt {
  background: #fbf4ee;
}

.bb-section h2 {
  margin-top: 0;
  font-size: clamp(32px, 5vw, 50px);
  line-height: 1.05;
  letter-spacing: 0;
}

.bb-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.bb-section-kicker {
  margin: 0 0 10px;
  color: #24495a;
  font-weight: 800;
  text-transform: uppercase;
}

.bb-lead {
  max-width: 720px;
  font-size: 20px;
  color: #6b574b;
}

.bb-grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.bb-card {
  border: 1px solid #ead7c6;
  border-radius: 8px;
  background: #ffffff;
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.bb-card:hover {
  transform: translateY(-4px);
  border-color: #e0bea1;
  box-shadow: 0 18px 44px rgba(24, 33, 42, 0.1);
}

.bb-card .bb-card-content {
  border-top: 5px solid #df762a;
}

.bb-grid .bb-card:nth-child(2) .bb-card-content {
  border-top-color: #c98345;
}

.bb-grid .bb-card:nth-child(3) .bb-card-content {
  border-top-color: #c45f1f;
}

.bb-card.tint-sun,
.bb-stat:nth-child(1),
.bb-logo-pill:nth-child(1),
.bb-logo-pill:nth-child(5) {
  background: #fff8e8;
}

.bb-card.tint-sky,
.bb-stat:nth-child(2),
.bb-logo-pill:nth-child(2),
.bb-logo-pill:nth-child(6) {
  background: #fff3e8;
}

.bb-card.tint-mint,
.bb-stat:nth-child(3),
.bb-logo-pill:nth-child(3),
.bb-logo-pill:nth-child(7) {
  background: #f0f8f3;
}

.bb-card.tint-rose,
.bb-stat:nth-child(4),
.bb-logo-pill:nth-child(4),
.bb-logo-pill:nth-child(8) {
  background: #fff3ef;
}

.bb-card.feature {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: stretch;
}

.bb-card.feature img {
  height: 100%;
  aspect-ratio: auto;
}

.bb-callout-section {
  padding: 56px 0;
  background: #fffdfb;
}

.bb-callout-section.compact {
  padding-top: 16px;
}

.bb-home-callout {
  display: grid;
  grid-template-columns: minmax(360px, 0.78fr) minmax(0, 1fr);
  align-items: center;
  gap: 0;
  overflow: hidden;
  border: 1px solid #ead7c6;
  border-radius: 8px;
  background: linear-gradient(90deg, #fffaf5 0%, #fff 52%);
  box-shadow: 0 20px 54px rgba(55, 39, 27, 0.08);
}

.bb-home-callout.reverse {
  grid-template-columns: minmax(360px, 0.72fr) minmax(0, 1fr);
  background: linear-gradient(90deg, #fff8ef 0%, #fff 54%);
}

.bb-home-callout img {
  width: 100%;
  height: 430px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.bb-home-callout.reverse img {
  height: 360px;
  object-position: center;
}

.bb-home-callout .bb-card-content {
  padding: clamp(34px, 5vw, 64px);
  border-top: 6px solid #df762a;
}

.bb-home-callout h2 {
  max-width: 680px;
  margin-bottom: 22px;
  font-size: clamp(34px, 4vw, 52px);
}

.bb-home-callout p {
  max-width: 720px;
  font-size: 18px;
  line-height: 1.55;
}

.bb-home-callout .bb-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 22px;
  margin-top: 22px;
}

.bb-card h2 {
  font-size: 34px;
  line-height: 1.08;
  overflow-wrap: anywhere;
}

.bb-card h3 {
  margin-top: 0;
  font-size: 24px;
  line-height: 1.15;
}

.bb-card-content {
  padding: 24px;
}

.bb-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

.bb-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.bb-list li {
  padding-left: 28px;
  position: relative;
}

.bb-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #df762a;
  box-shadow: inset 0 0 0 3px #24495a;
}

.bb-page-hero {
  padding: 88px 0;
  background: #ffffff;
  color: #201713;
  border-bottom: 1px solid #ead7c6;
}

.bb-page-hero .bb-eyebrow {
  color: #24495a;
}

.bb-service-hero {
  padding: 48px 0 0;
  background: linear-gradient(180deg, #fbf4ee 0%, #fff 100%);
}

.bb-service-hero-card {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 44px;
  align-items: center;
}

.bb-service-hero h1 {
  margin: 0 0 22px;
  max-width: 760px;
  font-size: clamp(46px, 7vw, 78px);
  line-height: 1;
  letter-spacing: 0;
}

.bb-service-hero-card img {
  width: 100%;
  min-height: 420px;
  max-height: 520px;
  border-radius: 8px;
  object-fit: cover;
  animation: bb-soft-float 7s ease-in-out infinite;
}

.bb-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.bb-split img {
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
}

.bb-contact-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.bb-contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(300px, 0.88fr);
  gap: 26px;
  align-items: start;
  max-width: 1120px;
}

.bb-contact-layout .bb-intake {
  box-shadow: 0 24px 70px rgba(24, 33, 42, 0.08);
}

.bb-contact-sidebar {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.bb-contact-item {
  padding: 22px;
  border-radius: 8px;
  background: #ffffff;
  border: 1px solid #ead7c6;
}

.bb-contact-item h2 {
  font-size: 28px;
  line-height: 1.1;
}

.bb-mini-steps ol {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.bb-mini-steps li {
  display: grid;
  gap: 4px;
  padding-left: 42px;
  position: relative;
}

.bb-mini-steps li::before {
  content: counter(list-item);
  position: absolute;
  left: 0;
  top: 0;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #24495a;
  color: #fff;
  font-weight: 900;
}

.bb-mini-steps span {
  color: #6b574b;
}

.bb-director-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) 340px;
  gap: 38px;
  align-items: center;
  padding: 32px;
  border: 1px solid #ead7c6;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 50px rgba(24, 33, 42, 0.08);
}

.bb-director-feature h1 {
  margin: 0 0 22px;
  font-size: clamp(42px, 6vw, 72px);
  line-height: 1;
}

.bb-director-feature img {
  width: 100%;
  max-width: 340px;
  aspect-ratio: 1;
  border-radius: 8px;
  object-fit: cover;
}

.bb-faq {
  display: grid;
  gap: 12px;
}

.bb-faq details {
  border: 1px solid #ead7c6;
  border-radius: 8px;
  background: #fff;
  overflow: hidden;
}

.bb-faq summary {
  cursor: pointer;
  padding: 18px 20px;
  color: #201713;
  font-weight: 900;
}

.bb-faq details[open] summary {
  background: #fff3e8;
}

.bb-faq p {
  margin: 0;
  padding: 0 20px 20px;
  color: #6b574b;
}

.bb-footer {
  background: #2f4650;
  color: #fff;
  padding: 48px 0 28px;
}

.bb-footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 32px;
}

.bb-footer small {
  color: #dbe5d8;
}

.bb-footer .bb-button {
  width: fit-content;
  max-width: 100%;
}

.bb-stat-grid,
.wp-block-group.bb-stat-grid {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 16px !important;
}

.bb-stat,
.bb-stat-grid > * {
  box-sizing: border-box;
  padding: 26px;
  border: 1px solid #ead7c6;
  border-radius: 8px;
  background: #ffffff;
}

.bb-stat strong,
.bb-stat-grid > * strong {
  display: block;
  color: #24495a;
  font-size: 34px;
  line-height: 1;
}

.bb-step-grid,
.wp-block-group.bb-step-grid {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 16px !important;
}

.bb-step-card,
.bb-step-grid > * {
  box-sizing: border-box;
  padding: 24px;
  border-left: 4px solid #df762a;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 16px 46px rgba(24, 33, 42, 0.06);
}

.bb-step-card:nth-child(2) {
  border-left-color: #c98345;
}

.bb-step-card:nth-child(3) {
  border-left-color: #a86d3b;
}

.bb-step-card:nth-child(4) {
  border-left-color: #c45f1f;
}

.bb-step-card span,
.bb-step-grid > * > span:first-child {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-bottom: 16px;
  border-radius: 50%;
  background: #24495a;
  color: #fff;
  font-weight: 800;
}

.bb-logo-grid,
.wp-block-group.bb-logo-grid {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)) !important;
  gap: 16px !important;
}

.bb-logo-pill,
.bb-insurance-logo,
.bb-logo-grid > * {
  box-sizing: border-box;
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
  border: 1px solid #ead7c6;
  border-radius: 8px;
  background: #fff;
  text-align: center;
  font-weight: 800;
}

.bb-insurance-logo,
.bb-logo-grid > * {
  min-height: 112px;
  flex-direction: column;
  gap: 8px;
  color: #201713;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.bb-insurance-logo img,
.bb-logo-grid img {
  max-width: 180px;
  max-height: 70px;
  object-fit: contain;
  display: block;
}

.bb-insurance-logo:hover {
  transform: translateY(-4px);
  border-color: #e0bea1;
  box-shadow: 0 16px 40px rgba(24, 33, 42, 0.1);
}

.bb-insurance-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 82px;
  min-height: 42px;
  padding: 8px 12px;
  border-radius: 8px;
  background: #ffffff;
  color: #24495a;
  font-size: 20px;
  font-weight: 900;
  line-height: 1;
  box-shadow: inset 0 0 0 1px rgba(31, 95, 122, 0.14);
}

.bb-insurance-logo small {
  color: #6b574b;
  font-weight: 800;
}

.bb-insurance-logo.bcbs .bb-insurance-mark {
  color: #1268ad;
}

.bb-insurance-logo.county .bb-insurance-mark {
  color: #5b2f86;
}

.bb-insurance-logo.aetna .bb-insurance-mark {
  color: #7b2cbf;
}

.bb-insurance-logo.meridian .bb-insurance-mark {
  color: #138f76;
}

.bb-insurance-logo.medicaid .bb-insurance-mark {
  color: #2d7f45;
}

.bb-insurance-logo.other .bb-insurance-mark {
  color: #c45f1f;
}

.bb-image-band {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 22px;
}

.bb-image-band img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  border-radius: 8px;
  object-fit: cover;
}

.bb-image-stack {
  display: grid;
  gap: 22px;
}

.bb-cta-band {
  padding: 56px;
  border-radius: 8px;
  background: #2f4650;
  color: #fff;
}

.bb-cta-band h2 {
  color: #fff;
}

.bb-visit-grid {
  align-items: stretch;
}

.bb-visit-grid > div:first-child {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.bb-location-finder {
  background: #fffaf4;
}

.bb-location-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: 56px;
  align-items: center;
}

.bb-location-layout h2 {
  color: #17324a;
  font-size: clamp(42px, 6vw, 68px);
}

.bb-location-search {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  margin: 28px 0 16px;
}

.bb-location-search input {
  min-height: 50px;
  padding: 12px 16px;
  border: 1px solid #2b3b48;
  border-radius: 8px;
  background: #fff;
  font: inherit;
}

.bb-location-result {
  display: grid;
  gap: 5px;
  max-width: 560px;
  min-height: 74px;
  padding: 16px 18px;
  border: 1px solid #ead7c6;
  border-radius: 8px;
  background: #fff;
  color: #24495a;
  box-shadow: 0 12px 30px rgba(55, 39, 27, 0.06);
}

.bb-location-result strong {
  color: #17324a;
}

.bb-location-result span {
  color: #5d4a3f;
  line-height: 1.35;
}

.bb-location-result a {
  width: fit-content;
  color: #a04d18;
  font-weight: 900;
}

.bb-location-result.is-success {
  border-color: #9fc9aa;
  background: #f2fbf4;
}

.bb-location-result.is-warning {
  border-color: #f2b27b;
  background: #fff8ef;
}

.bb-location-card img {
  width: 100%;
  max-height: 440px;
  border-radius: 8px;
  object-fit: cover;
  object-position: center;
}

.bb-location-bars {
  display: grid;
  grid-template-columns: 0.8fr 0.8fr 0.8fr 1.7fr 0.8fr;
  gap: 5px;
  margin: 22px 0;
}

.bb-location-bars span {
  height: 10px;
  border-radius: 999px;
  background: #df8a44;
}

.bb-location-bars span:nth-child(4) {
  background: #a6501d;
}

.bb-location-details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  color: #17324a;
}

.bb-location-details h3 {
  margin: 0 0 8px;
  font-size: 25px;
}

.bb-location-details p {
  margin: 0;
  font-size: 18px;
  line-height: 1.35;
}

.bb-donate-box {
  padding: 30px;
  border: 2px dashed #f2b27b;
  border-radius: 8px;
  background: #fff7ef;
  text-align: center;
}

.bb-donate-box h3 {
  margin-top: 0;
  font-size: 28px;
}

.bb-givebutter-widget-wrap {
  max-width: 980px;
  margin: -46px auto 40px;
  padding: 0 24px;
}

.bb-givebutter-widget-wrap iframe,
.bb-givebutter-widget-wrap > * {
  max-width: 100%;
}

@media (max-width: 860px) {
  .bb-topbar .bb-container,
  .bb-site-header .bb-container,
  .bb-footer-grid,
  .bb-split,
  .bb-grid,
  .bb-grid.two,
  .bb-contact-strip,
  .bb-hero-points,
  .wp-block-group.bb-hero-points,
  .bb-stat-grid,
  .bb-step-grid,
  .bb-logo-grid,
  .wp-block-group.bb-stat-grid,
  .wp-block-group.bb-step-grid,
  .wp-block-group.bb-logo-grid,
  .bb-image-band,
  .bb-location-layout,
  .bb-card.feature,
  .bb-home-callout,
  .bb-home-callout.reverse,
  .bb-service-hero-card,
  .bb-contact-layout {
    grid-template-columns: 1fr !important;
  }

  .bb-hero-editorial .bb-hero-inner {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .bb-hero-photo img {
    width: min(420px, 100%);
    min-height: 0;
  }

  .bb-hero-badge {
    position: relative;
    inset: auto !important;
    transform: none !important;
    max-width: none;
    margin-top: 10px;
  }

  .bb-hero-photo {
    min-height: 0;
  }

  .bb-hero-photo::before {
    inset: 24px 36px 112px 36px;
  }

  .bb-location-search {
    margin-bottom: 34px;
  }

  .bb-director-feature {
    grid-template-columns: 1fr;
  }

  .bb-contact-sidebar {
    grid-template-columns: 1fr;
  }

  .bb-topbar .bb-container,
  .bb-site-header .bb-container {
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 12px;
    padding: 14px 0;
  }

  .bb-brand {
    flex: 1 1 auto;
    min-width: 0;
  }

  .bb-menu-toggle {
    display: inline-flex;
    flex: 0 0 auto;
    margin-left: auto;
  }

  .bb-menu-toggle[aria-expanded="true"] {
    background: #df762a;
    color: #fff;
  }

  .bb-nav {
    display: none;
    width: 100%;
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 16px;
    border: 1px solid #ead7c6;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 18px 45px rgba(63, 37, 23, 0.12);
  }

  .bb-nav.is-open {
    display: grid;
  }

  .bb-nav-menu {
    width: 100%;
    padding: 0;
    margin: 0;
  }

  .bb-nav-submenu {
    position: static;
    display: grid !important;
    min-width: 0;
    margin-top: 8px;
    padding: 8px 0 0 14px;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .bb-nav-submenu::before {
    display: none;
  }

  .bb-nav > a,
  .bb-nav-menu-trigger {
    padding: 8px 0;
  }

  .bb-nav > .bb-button,
  .bb-site-header .bb-nav > .bb-button {
    min-height: 44px;
    width: 100%;
    padding: 10px 14px !important;
    border-radius: 8px;
    box-shadow: none;
  }

  .bb-nav > .bb-button.donate,
  .bb-site-header .bb-nav > .bb-button.donate {
    border-color: #f2b27b;
    background: #fff8ef;
    color: #a04d18;
  }

  .bb-hero {
    min-height: 0;
  }

  .bb-hero-inner {
    padding: 42px 0 54px;
  }

  .bb-brand img,
  .bb-site-header img[src*="logo"] {
    width: min(210px, 58vw) !important;
    height: auto !important;
    max-height: 78px !important;
  }

  .bb-service-hero-card img,
  .bb-image-band img,
  .bb-home-callout img,
  .bb-home-callout.reverse img {
    width: 100%;
    min-height: 0;
    height: clamp(260px, 64vw, 380px);
    object-fit: cover;
  }

  .bb-image-band {
    gap: 18px;
  }

  .bb-image-band img {
    aspect-ratio: 4 / 3;
    height: auto;
    max-height: none;
  }

  .bb-home-callout.reverse img {
    height: clamp(260px, 72vw, 340px);
  }

  .bb-home-callout .bb-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .bb-container {
    width: min(100% - 24px, 1320px);
  }

  .bb-topbar .bb-container,
  .bb-site-header .bb-container {
    gap: 10px;
  }

  .bb-nav {
    font-size: 14px;
  }

  .bb-location-search {
    grid-template-columns: 1fr;
  }

  .bb-button,
  .wp-block-button__link,
  .bb-intake button {
    width: 100%;
  }

  .bb-nav > .bb-button {
    width: 100%;
  }

  .bb-footer .bb-button {
    width: min(230px, 100%);
    padding-inline: 18px;
    box-shadow: 3px 4px 0 #201713;
  }

  .bb-hero h1,
  .bb-page-hero h1 {
    font-size: clamp(42px, 12vw, 62px);
  }

  .bb-announcement .bb-container {
    align-items: center;
    text-align: center;
  }

  .bb-announcement span + span::before {
    display: none;
  }

  .bb-hero .bb-hero-lead {
    font-size: 19px;
  }

  .bb-hero-photo img {
    width: min(360px, 100%);
    min-height: 0;
  }

  .bb-insurance-ribbon .bb-container {
    align-items: flex-start;
    flex-direction: column;
  }

  .bb-ribbon-logos {
    gap: 12px;
    font-size: 17px;
  }

  .bb-location-search,
  .bb-location-details {
    grid-template-columns: 1fr;
  }

  .bb-section {
    padding: 58px 0;
  }

  .bb-cta-band {
    padding: 28px;
  }

  .bb-visit-section {
    padding-top: 42px;
  }

  .bb-visit-grid {
    gap: 24px;
  }

  .bb-visit-grid h2,
  .bb-cta-band h2 {
    font-size: clamp(30px, 9vw, 42px);
  }

  .bb-visit-grid p {
    font-size: 17px;
    line-height: 1.45;
  }

  .bb-visit-grid .bb-button,
  .bb-cta-band .bb-button {
    width: fit-content;
    min-width: 190px;
    max-width: 100%;
    padding-inline: 24px;
  }

  .bb-cta-band {
    border-radius: 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
}
