@font-face {
  font-family: "Cormorant Garamond";
  src: url("./fonts/cormorant-garamond-normal.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
}

@font-face {
  font-family: "Cormorant Garamond";
  src: url("./fonts/cormorant-garamond-italic.woff2") format("woff2");
  font-style: italic;
  font-weight: 400 700;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("./fonts/manrope.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
}

:root {
  --bb-ivory: #f7f5f0;
  --bb-white: #fcfbf8;
  --bb-charcoal: #2e3235;
  --bb-slate: #4a4c50;
  --bb-indigo: #505879;
  --bb-smoke: #667779;
  --bb-mist: #aebecb;
  --bb-gold: #e0a63b;
  --bb-gold-dark: #bd8120;
  --bb-linen: #efeae2;
  --bb-muted: #596c7d;
  --bb-rule: rgba(102, 119, 121, 0.28);
  --bb-shadow: 0 22px 58px rgba(46, 50, 53, 0.13);
  --bb-radius: 16px;
  --bb-shell: 1360px;
  --bb-header: 78px;
}

html {
  scroll-behavior: smooth;
  scrollbar-color: var(--bb-smoke) var(--bb-ivory);
  color-scheme: light;
}

body.bill-site [id] { scroll-margin-top: calc(var(--bb-header) + 24px); }

.screen-reader-text {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

body.bill-site {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--bb-ivory);
  color: var(--bb-charcoal);
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  letter-spacing: -0.012em;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.bill-site *,
body.bill-site *::before,
body.bill-site *::after {
  box-sizing: border-box;
}

body.bill-site ::selection {
  background: var(--bb-mist);
  color: var(--bb-charcoal);
}

body.bill-site img,
body.bill-site svg {
  display: block;
  max-width: 100%;
}

body.bill-site button,
body.bill-site input,
body.bill-site select,
body.bill-site textarea {
  font: inherit;
}

body.bill-site a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

body.bill-site :focus-visible {
  outline: 3px solid var(--bb-indigo);
  outline-offset: 4px;
}

.bb-page-hero--slate :focus-visible,
.bb-section--slate :focus-visible,
.bb-section--indigo :focus-visible,
.bb-section--charcoal :focus-visible,
.bb-final-cta :focus-visible,
.bb-site-footer :focus-visible {
  outline-color: var(--bb-white);
}

.bb-skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 10000;
  transform: translateY(-160%);
  background: var(--bb-charcoal);
  color: var(--bb-white);
  padding: 10px 15px;
  border-radius: 8px;
  font-weight: 700;
  transition: transform 0.18s ease-out;
}

.bb-skip-link:focus {
  transform: translateY(0);
}

.bb-shell {
  width: min(var(--bb-shell), calc(100% - clamp(40px, 8vw, 112px)));
  margin-inline: auto;
}

.bb-site-header {
  position: sticky;
  inset: 0 0 auto;
  z-index: 1000;
  height: var(--bb-header);
  background: rgba(252, 251, 248, 0.97);
  border-bottom: 1px solid rgba(174, 190, 203, 0.38);
}

.bb-site-header::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  width: 100%;
  height: 2px;
  background: var(--bb-gold);
  transform: scaleX(var(--bb-progress, 0));
  transform-origin: left center;
  will-change: transform;
}

body.admin-bar .bb-site-header { top: 32px; }
body.bill-site.bb-nav-open { overflow: hidden; }

.bb-header-inner {
  width: min(var(--bb-shell), calc(100% - clamp(32px, 6vw, 92px)));
  height: 100%;
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: 28px;
}

.bb-brand {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  flex: none;
  color: var(--bb-charcoal);
  text-decoration: none;
}

.bb-brand-logo {
  width: 93px;
  height: auto;
}

.bb-brand-copy {
  padding-left: 15px;
  border-left: 1px solid var(--bb-rule);
}

.bb-brand-name {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 23px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.02em;
}

.bb-brand-tagline {
  display: block;
  margin-top: 6px;
  color: var(--bb-indigo);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.2em;
  line-height: 1;
  text-transform: uppercase;
}

.bb-nav {
  display: flex;
  align-items: center;
  gap: clamp(17px, 1.9vw, 30px);
  margin-left: auto;
}

.bb-nav a {
  position: relative;
  padding: 12px 0;
  color: var(--bb-charcoal);
  font-size: 13.5px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.bb-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 6px;
  height: 1px;
  background: var(--bb-indigo);
  transition: right 0.2s ease-out;
}

.bb-nav a:hover::after,
.bb-nav a[aria-current="page"]::after {
  right: 0;
}

.bb-header-action,
.bb-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 26px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--bb-gold);
  color: var(--bb-charcoal);
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: transform 0.2s ease-out, background-color 0.2s ease-out, box-shadow 0.2s ease-out;
}

.bb-header-action {
  flex: none;
  min-height: 48px;
  margin-left: 2px;
  padding-inline: 23px;
  font-size: 13.5px;
  white-space: nowrap;
}

.bb-header-action:hover,
.bb-button:hover {
  background: #e6b34f;
  box-shadow: 0 12px 28px rgba(189, 129, 32, 0.2);
  transform: translateY(-2px);
}

.bb-button--secondary {
  border-color: var(--bb-charcoal);
  background: transparent;
}

.bb-button--secondary:hover {
  background: var(--bb-charcoal);
  color: var(--bb-white);
  box-shadow: none;
}

.bb-button--light {
  border-color: rgba(252, 251, 248, 0.65);
  background: transparent;
  color: var(--bb-white);
}

.bb-button--light:hover {
  background: var(--bb-white);
  color: var(--bb-charcoal);
  box-shadow: none;
}

.bb-menu-button {
  display: none;
  flex: none;
  width: 48px;
  height: 48px;
  margin-left: 0;
  padding: 0;
  border: 1px solid rgba(102, 119, 121, 0.5);
  border-radius: 50%;
  background: transparent;
  color: var(--bb-charcoal);
  cursor: pointer;
}

.bb-menu-lines,
.bb-menu-lines::before,
.bb-menu-lines::after {
  display: block;
  width: 19px;
  height: 1.5px;
  margin: auto;
  background: currentColor;
  transition: transform 0.2s ease-out, opacity 0.2s ease-out;
}

.bb-menu-lines {
  position: relative;
}

.bb-menu-lines::before,
.bb-menu-lines::after {
  content: "";
  position: absolute;
  left: 0;
}

.bb-menu-lines::before { top: -6px; }
.bb-menu-lines::after { top: 6px; }
.bb-menu-button[aria-expanded="true"] .bb-menu-lines { background: transparent; }
.bb-menu-button[aria-expanded="true"] .bb-menu-lines::before { top: 0; transform: rotate(45deg); }
.bb-menu-button[aria-expanded="true"] .bb-menu-lines::after { top: 0; transform: rotate(-45deg); }

.bb-mobile-nav {
  position: fixed;
  z-index: 999;
  inset: var(--bb-header) 0 auto;
  display: none;
  max-height: calc(100dvh - var(--bb-header));
  overflow-y: auto;
  padding: 18px 24px 30px;
  background: var(--bb-white);
  border-bottom: 1px solid var(--bb-rule);
  box-shadow: 0 26px 50px rgba(46, 50, 53, 0.15);
}

.bb-mobile-nav[data-open="true"] { display: block; }
.bb-mobile-nav a:not(.bb-button) {
  display: flex;
  justify-content: space-between;
  padding: 15px 2px;
  border-bottom: 1px solid var(--bb-rule);
  font-family: "Cormorant Garamond", serif;
  font-size: 26px;
  font-weight: 600;
  text-decoration: none;
}
.bb-mobile-nav .bb-button { width: 100%; margin-top: 24px; }

.bb-page-hero {
  position: relative;
  min-height: min(690px, calc(100vh - var(--bb-header)));
  overflow: hidden;
  background: var(--bb-ivory);
  border-bottom: 1px solid var(--bb-rule);
}

.bb-page-hero--coast {
  background-image:
    linear-gradient(90deg, rgba(247, 245, 240, 0.95) 0%, rgba(247, 245, 240, 0.78) 48%, rgba(247, 245, 240, 0.28) 100%),
    url("./coastline-background.png");
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: cover;
}

.bb-page-hero--slate {
  background: var(--bb-slate);
  color: var(--bb-white);
}

.bb-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(390px, 0.97fr);
  gap: clamp(48px, 7vw, 112px);
  align-items: center;
  min-height: min(690px, calc(100vh - var(--bb-header)));
  padding: clamp(70px, 9vw, 126px) 0 clamp(115px, 13vw, 160px);
}

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

.bb-display,
.bb-heading,
.bb-subheading {
  margin: 0;
  color: inherit;
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  text-wrap: balance;
}

.bb-display {
  max-width: 12ch;
  font-size: clamp(58px, 6.6vw, 96px);
  line-height: 0.94;
  letter-spacing: -0.035em;
}

.bb-display em,
.bb-heading em,
.bb-subheading em {
  color: var(--bb-indigo);
  font-style: italic;
}

.bb-page-hero--slate .bb-display em,
.bb-page-hero--slate .bb-heading em,
.bb-page-hero--slate .bb-subheading em {
  color: var(--bb-mist);
}

.bb-section--slate .bb-heading em,
.bb-section--slate .bb-subheading em,
.bb-section--indigo .bb-heading em,
.bb-section--indigo .bb-subheading em,
.bb-section--charcoal .bb-heading em,
.bb-section--charcoal .bb-subheading em {
  color: var(--bb-mist);
}

.bb-hero-lead {
  max-width: 63ch;
  margin: 30px 0 0;
  color: var(--bb-slate);
  font-size: clamp(17px, 1.55vw, 20px);
  line-height: 1.7;
}

.bb-page-hero--slate .bb-hero-lead { color: #e3e9ed; }

.bb-page-hero--slate .bb-hero-grid > .bb-hero-copy:last-child:not(:first-child) {
  max-width: 570px;
  padding-left: clamp(30px, 4vw, 64px);
  border-left: 1px solid rgba(174, 190, 203, 0.48);
}

.bb-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.bb-hero-visual {
  position: relative;
  align-self: stretch;
  min-height: 500px;
}

.bb-hero-portrait {
  position: absolute;
  right: -3%;
  bottom: -1px;
  width: min(100%, 560px);
  height: calc(100% + 14px);
  object-fit: contain;
  object-position: right bottom;
}

.bb-hero-photo {
  width: 100%;
  height: 100%;
  max-height: 555px;
  object-fit: cover;
  object-position: center 35%;
  border-radius: 190px 190px 16px 16px;
  box-shadow: var(--bb-shadow);
}

.bb-house-route {
  position: absolute;
  z-index: 1;
  left: 0;
  right: 0;
  bottom: -2px;
  width: 100%;
  height: 150px;
  overflow: visible;
  pointer-events: none;
}

.bb-route-line {
  fill: none;
  stroke: var(--bb-mist);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
  vector-effect: non-scaling-stroke;
}

.bb-route-chimney {
  fill: none;
  stroke: var(--bb-smoke);
  stroke-width: 2;
  vector-effect: non-scaling-stroke;
}

.bb-route-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--bb-gold);
}

.bb-section {
  position: relative;
  padding: clamp(74px, 9vw, 132px) 0;
  background: var(--bb-white);
}

.bb-section--ivory { background: var(--bb-ivory); }
.bb-section--linen { background: var(--bb-linen); }
.bb-section--mist { background: #e8eef1; }
.bb-section--slate { background: var(--bb-slate); color: var(--bb-white); }
.bb-section--indigo { background: var(--bb-indigo); color: var(--bb-white); }
.bb-section--charcoal { background: var(--bb-charcoal); color: var(--bb-white); }

.bb-section-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(320px, 0.48fr);
  gap: clamp(34px, 7vw, 104px);
  align-items: end;
  margin-bottom: clamp(44px, 6vw, 80px);
}

.bb-heading {
  max-width: 15ch;
  font-size: clamp(44px, 5vw, 74px);
  line-height: 1;
  letter-spacing: -0.03em;
}

.bb-subheading {
  font-size: clamp(31px, 3.8vw, 52px);
  line-height: 1.05;
  letter-spacing: -0.025em;
}

.bb-intro-copy,
.bb-body-copy {
  max-width: 72ch;
  margin: 0;
  color: var(--bb-slate);
  font-size: 17px;
  line-height: 1.8;
}

.bb-section--slate .bb-intro-copy,
.bb-section--indigo .bb-intro-copy,
.bb-section--charcoal .bb-intro-copy,
.bb-section--slate .bb-body-copy,
.bb-section--indigo .bb-body-copy,
.bb-section--charcoal .bb-body-copy {
  color: #dfe6ea;
}

.bb-split {
  display: grid;
  grid-template-columns: minmax(340px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(46px, 8vw, 118px);
  align-items: center;
}

.bb-split--reverse { grid-template-columns: minmax(0, 1.1fr) minmax(340px, 0.9fr); }
.bb-split--reverse .bb-media { order: 2; }

.bb-media {
  position: relative;
}

.bb-media img {
  width: 100%;
  max-height: 700px;
  object-fit: cover;
  border-radius: var(--bb-radius);
  box-shadow: var(--bb-shadow);
}

.bb-media--tall img { aspect-ratio: 4 / 5; }
.bb-media--wide img { aspect-ratio: 4 / 3; }

.bb-copy-stack {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}

.bb-copy-stack p { margin: 0; max-width: 68ch; }

.bb-proof-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-block: 1px solid var(--bb-rule);
}

.bb-proof-item {
  min-width: 0;
  padding: 28px clamp(20px, 2.4vw, 34px);
  border-left: 1px solid var(--bb-rule);
}

.bb-proof-item:first-child { border-left: 0; }
.bb-proof-value {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(29px, 2.7vw, 40px);
  font-weight: 600;
  line-height: 1;
}
.bb-proof-label {
  display: block;
  margin-top: 8px;
  color: var(--bb-muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.13em;
  line-height: 1.4;
  text-transform: uppercase;
}

.bb-rule-list {
  display: grid;
  border-top: 1px solid var(--bb-rule);
}

.bb-rule-item {
  display: grid;
  grid-template-columns: minmax(190px, 0.35fr) minmax(0, 0.65fr);
  gap: clamp(24px, 5vw, 80px);
  padding: clamp(26px, 3.5vw, 46px) 0;
  border-bottom: 1px solid var(--bb-rule);
}

.bb-rule-item h3,
.bb-rule-item p { margin: 0; }
.bb-rule-item h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(26px, 2.6vw, 38px);
  font-weight: 600;
  line-height: 1.05;
}
.bb-rule-item p { max-width: 64ch; color: var(--bb-slate); }
.bb-section--slate .bb-rule-item p,
.bb-section--indigo .bb-rule-item p { color: #dfe6ea; }

.bb-process {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(174, 190, 203, 0.4);
}

.bb-process-step {
  position: relative;
  padding: 36px clamp(22px, 3vw, 42px) 8px;
  border-left: 1px solid rgba(174, 190, 203, 0.4);
}
.bb-process-step:first-child { border-left: 0; }
.bb-process-step::before {
  content: "";
  position: absolute;
  top: -6px;
  left: clamp(22px, 3vw, 42px);
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--bb-gold);
}
.bb-process-step h3 { margin: 0 0 12px; font-size: 19px; }
.bb-process-step p { margin: 0; color: #dfe6ea; }

.bb-program-explorer {
  display: grid;
  grid-template-columns: minmax(230px, 0.32fr) minmax(0, 0.68fr);
  min-height: 520px;
  border-block: 1px solid var(--bb-rule);
}

.bb-program-tabs {
  padding: 28px 30px 28px 0;
  border-right: 1px solid var(--bb-rule);
}

.bb-program-tab {
  width: 100%;
  padding: 17px 16px;
  border: 0;
  border-bottom: 1px solid var(--bb-rule);
  background: transparent;
  color: var(--bb-slate);
  font-weight: 750;
  text-align: left;
  cursor: pointer;
}
.bb-program-tab:hover { color: var(--bb-indigo); }
.bb-program-tab[aria-selected="true"] {
  background: var(--bb-indigo);
  color: var(--bb-white);
}

.bb-program-panels { padding: clamp(34px, 5vw, 66px); }
.bb-program-panel { display: block; }
.bb-program-panel + .bb-program-panel { margin-top: 42px; padding-top: 42px; border-top: 1px solid var(--bb-rule); }
.bb-js .bb-program-panel { display: none; }
.bb-js .bb-program-panel[data-active="true"] { display: block; margin-top: 0; padding-top: 0; border-top: 0; animation: bb-panel-in 0.36s ease-out both; }
@keyframes bb-panel-in { from { opacity: 0; transform: translateY(8px); } }
.bb-program-panel h2 { max-width: 13ch; }
.bb-program-panel .bb-body-copy { margin-top: 22px; }

.bb-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--bb-rule);
}
.bb-detail {
  padding: 30px clamp(22px, 3vw, 40px);
  border-bottom: 1px solid var(--bb-rule);
}
.bb-detail:nth-child(even) { border-left: 1px solid var(--bb-rule); }
.bb-detail h3 { margin: 0 0 10px; font-size: 18px; }
.bb-detail p { margin: 0; color: var(--bb-slate); }

.bb-program-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}
.bb-program-tags span {
  padding: 8px 12px;
  border: 1px solid rgba(102, 119, 121, 0.4);
  border-radius: 6px;
  background: var(--bb-white);
  color: var(--bb-slate);
  font-size: 12.5px;
  font-weight: 700;
}

.bb-calculator {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.72fr);
  overflow: hidden;
  border-radius: var(--bb-radius);
  background: var(--bb-white);
  box-shadow: var(--bb-shadow);
}

.bb-calculator-fields { padding: clamp(30px, 5vw, 64px); }
.bb-calculator-results {
  padding: clamp(30px, 5vw, 64px);
  background: var(--bb-indigo);
  color: var(--bb-white);
}

.bb-field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px 20px;
}
.bb-field { display: grid; gap: 8px; }
.bb-field--full { grid-column: 1 / -1; }
.bb-field label,
.bb-field legend {
  color: var(--bb-slate);
  font-size: 13px;
  font-weight: 800;
}
.bb-field input,
.bb-field select,
.bb-contact-form input,
.bb-contact-form select,
.bb-contact-form textarea,
.gform_wrapper input:not([type="submit"]),
.gform_wrapper select,
.gform_wrapper textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(102, 119, 121, 0.55) !important;
  border-radius: 8px !important;
  background: var(--bb-white) !important;
  color: var(--bb-charcoal) !important;
  padding: 11px 13px !important;
  box-shadow: none !important;
}
.bb-field input:focus,
.bb-field select:focus,
.bb-contact-form input:focus,
.bb-contact-form select:focus,
.bb-contact-form textarea:focus,
.gform_wrapper input:focus,
.gform_wrapper select:focus,
.gform_wrapper textarea:focus {
  border-color: var(--bb-indigo) !important;
  outline: 3px solid rgba(80, 88, 121, 0.22) !important;
  outline-offset: 1px !important;
}
.bb-field small { color: var(--bb-muted); font-size: 12px; }

.bb-result-label {
  color: #dfe6ea;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.bb-result-total {
  margin: 8px 0 30px;
  color: var(--bb-white);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(50px, 5vw, 76px);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}
.bb-result-breakdown { display: grid; }
.bb-result-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 13px 0;
  border-top: 1px solid rgba(174, 190, 203, 0.32);
  color: #e7ecef;
}
.bb-result-row strong { color: var(--bb-white); font-variant-numeric: tabular-nums; }
.bb-result-note { margin: 26px 0 0; color: #dfe6ea; font-size: 12.5px; line-height: 1.65; }

.bb-review-stage {
  display: grid;
  grid-template-columns: minmax(0, 0.42fr) minmax(460px, 0.58fr);
  gap: clamp(36px, 7vw, 90px);
  align-items: center;
}
.bb-review-frame {
  min-height: 480px;
  overflow: hidden;
  border-radius: var(--bb-radius);
  background: var(--bb-white);
  box-shadow: var(--bb-shadow);
}
.bb-review-iframe { display: block; width: 100%; height: 480px; border: 0; background: var(--bb-white); }
.bb-review-links { display: flex; flex-wrap: wrap; gap: 13px 22px; margin-top: 26px; }
.bb-review-links a { color: var(--bb-indigo); font-weight: 800; }

.bb-faq-tools {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 24px;
}
.bb-faq-search {
  width: min(100%, 430px);
  min-height: 50px;
  padding: 12px 16px;
  border: 1px solid rgba(102, 119, 121, 0.5);
  border-radius: 10px;
  background: var(--bb-white);
  color: var(--bb-charcoal);
}
.bb-faq-list { border-top: 1px solid var(--bb-rule); }
.bb-faq-item { border-bottom: 1px solid var(--bb-rule); }
.bb-faq-item[hidden] { display: none; }
.bb-faq-question {
  width: 100%;
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 0;
  border: 0;
  background: transparent;
  color: var(--bb-charcoal);
  font-size: clamp(17px, 1.6vw, 20px);
  font-weight: 800;
  text-align: left;
  cursor: pointer;
}
.bb-faq-question:hover { color: var(--bb-indigo); }
.bb-faq-icon {
  position: relative;
  width: 34px;
  height: 34px;
  flex: none;
  border: 1px solid rgba(80, 88, 121, 0.45);
  border-radius: 50%;
}
.bb-faq-icon::before,
.bb-faq-icon::after {
  content: "";
  position: absolute;
  left: 9px;
  right: 9px;
  top: 15px;
  height: 1.5px;
  background: var(--bb-indigo);
  transition: transform 0.2s ease-out;
}
.bb-faq-icon::after { transform: rotate(90deg); }
.bb-faq-question[aria-expanded="true"] .bb-faq-icon::after { transform: rotate(0); }
.bb-faq-answer { max-width: 76ch; padding: 0 68px 24px 0; color: var(--bb-slate); }
.bb-faq-answer p { margin: 0; }
.bb-faq-empty { padding: 30px 0; color: var(--bb-muted); }

.bb-video-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(330px, 0.62fr);
  gap: clamp(32px, 6vw, 82px);
  align-items: center;
}
.bb-video-feature-media { position: relative; }
.bb-video-feature-media img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: var(--bb-radius);
  box-shadow: var(--bb-shadow);
}
.bb-video-status {
  position: absolute;
  left: 18px;
  bottom: 18px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(46, 50, 53, 0.9);
  color: var(--bb-white);
  font-size: 12px;
  font-weight: 800;
}
.bb-video-library {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}
.bb-video-card { border-bottom: 1px solid var(--bb-rule); padding-bottom: 26px; }
.bb-video-card img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; border-radius: 14px; }
.bb-video-card h3 { margin: 18px 0 8px; font-size: 18px; }
.bb-video-card p { margin: 0; color: var(--bb-slate); }

.bb-contact-routes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-block: 1px solid var(--bb-rule);
}
.bb-contact-route {
  min-width: 0;
  padding: clamp(30px, 4vw, 52px);
  border-left: 1px solid var(--bb-rule);
}
.bb-contact-route:first-child { border-left: 0; }
.bb-contact-route h2 { margin: 0 0 12px; font-family: "Cormorant Garamond", serif; font-size: 34px; line-height: 1; }
.bb-contact-route p { margin: 0 0 24px; color: var(--bb-slate); }
.bb-contact-link { color: var(--bb-indigo); font-weight: 800; }

.bb-contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.42fr) minmax(460px, 0.58fr);
  gap: clamp(48px, 8vw, 112px);
  align-items: start;
}
.bb-contact-panel {
  padding: clamp(30px, 5vw, 58px);
  border-radius: var(--bb-radius);
  background: var(--bb-white);
  box-shadow: var(--bb-shadow);
}
.bb-contact-form { display: grid; gap: 19px; }
.bb-contact-form textarea,
.gform_wrapper textarea { min-height: 150px !important; resize: vertical; }
.bb-contact-form button,
.gform_wrapper input[type="submit"],
.gform_wrapper button[type="submit"] {
  width: auto !important;
  min-height: 52px !important;
  padding: 0 26px !important;
  border: 0 !important;
  border-radius: 999px !important;
  background: var(--bb-gold) !important;
  color: var(--bb-charcoal) !important;
  font-weight: 800 !important;
  cursor: pointer;
}
.bb-form-note { color: var(--bb-muted); font-size: 12.5px; }
.bb-form-status { margin-bottom: 20px; padding: 14px 16px; border-radius: 10px; background: #e7efe4; color: #2f542c; }
.bb-form-status--error { background: #fff0ed; color: #7c352b; }
.bb-honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }

.gform_wrapper .gform_heading { display: none !important; }
.gform_wrapper .gform_fields { gap: 18px !important; }
.gform_wrapper .gfield_label { color: var(--bb-slate) !important; font-size: 13px !important; font-weight: 800 !important; }
.gform_wrapper .gfield_description { color: var(--bb-muted) !important; font-size: 12px !important; }
.gform_wrapper .validation_message { color: #7c352b !important; }

.bb-final-cta {
  position: relative;
  overflow: hidden;
  padding: clamp(84px, 10vw, 144px) 0;
  background: var(--bb-indigo);
  color: var(--bb-white);
  text-align: center;
}
.bb-final-cta .bb-heading { max-width: 13ch; margin-inline: auto; }
.bb-final-cta .bb-heading em { color: var(--bb-gold); }
.bb-final-cta p { max-width: 60ch; margin: 24px auto 0; color: #e0e6ea; font-size: 17px; }
.bb-final-cta .bb-actions { justify-content: center; }
.bb-final-cta .bb-house-route { opacity: 0.58; }

.bb-site-footer {
  background: var(--bb-charcoal);
  color: var(--bb-white);
}
.bb-footer-main {
  display: grid;
  grid-template-columns: minmax(250px, 1.25fr) repeat(3, minmax(180px, 0.75fr));
  gap: clamp(34px, 5vw, 76px);
  padding: clamp(60px, 7vw, 94px) 0 46px;
}
.bb-footer-column { display: flex; flex-direction: column; align-items: flex-start; gap: 12px; }
.bb-footer-column h2,
.bb-footer-column h3 { margin: 0; }
.bb-footer-column h2 { font-family: "Cormorant Garamond", serif; font-size: 31px; font-weight: 600; }
.bb-footer-column h3 { color: var(--bb-mist); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; }
.bb-footer-column p { margin: 0; color: var(--bb-mist); font-size: 13px; }
.bb-footer-column a { color: #dfe6ea; font-size: 13.5px; text-decoration: none; }
.bb-footer-column a:hover { color: var(--bb-gold); }
.bb-footer-logo { width: 142px; height: auto; }
.bb-footer-legal {
  padding: 28px 0 38px;
  border-top: 1px solid rgba(174, 190, 203, 0.22);
}
.bb-footer-legal strong { display: block; font-size: 13px; }
.bb-legal-links { display: flex; flex-wrap: wrap; gap: 7px 20px; margin-top: 18px; }
.bb-legal-links a { display: inline-flex; align-items: center; min-height: 44px; color: var(--bb-mist); font-size: 12px; }
.bb-licensed,
.bb-disclaimer { margin: 18px 0 0; color: var(--bb-mist); font-size: 11px; line-height: 1.75; }
.bb-compliance-logos { display: flex; align-items: center; gap: 18px; margin-top: 20px; }
.bb-compliance-logos img { width: auto; max-height: 45px; padding: 5px; border-radius: 4px; background: white; }

@media (max-width: 1240px) {
  .bb-nav { display: none; }
  .bb-header-action { margin-left: auto; }
  .bb-menu-button { display: inline-grid; place-items: center; }
  .bb-hero-grid { grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.75fr); }
  .bb-footer-main { grid-template-columns: repeat(2, minmax(220px, 1fr)); }
}

@media (max-width: 960px) {
  :root { --bb-header: 72px; }
  .bb-brand-logo { display: none !important; }
  .bb-brand-copy { padding-left: 0; border-left: 0; }
  .bb-page-hero { min-height: auto; }
  .bb-hero-grid,
  .bb-section-intro,
  .bb-split,
  .bb-split--reverse,
  .bb-review-stage,
  .bb-video-feature,
  .bb-contact-layout {
    grid-template-columns: 1fr;
  }
  .bb-hero-grid { min-height: auto; padding: 68px 0 125px; }
  .bb-hero-copy { max-width: 760px; }
  .bb-page-hero--slate .bb-hero-grid > .bb-hero-copy:last-child:not(:first-child) {
    max-width: 720px;
    padding: 30px 0 0;
    border-top: 1px solid rgba(174, 190, 203, 0.48);
    border-left: 0;
  }
  .bb-hero-visual { min-height: 440px; }
  .bb-hero-photo { max-height: 520px; }
  .bb-split--reverse .bb-media { order: 0; }
  .bb-section-intro { align-items: start; }
  .bb-proof-band { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .bb-proof-item:nth-child(3) { border-left: 0; }
  .bb-proof-item:nth-child(n + 3) { border-top: 1px solid var(--bb-rule); }
  .bb-program-explorer { grid-template-columns: 1fr; }
  .bb-program-tabs {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding: 20px 0;
    border-right: 0;
    border-bottom: 1px solid var(--bb-rule);
    scrollbar-width: thin;
  }
  .bb-program-tab { width: auto; flex: none; border: 1px solid var(--bb-rule); border-radius: 999px; padding: 10px 15px; }
  .bb-program-panels { padding-inline: 0; }
  .bb-calculator { grid-template-columns: 1fr; }
  .bb-contact-routes { grid-template-columns: 1fr; }
  .bb-contact-route { border-left: 0; border-top: 1px solid var(--bb-rule); }
  .bb-contact-route:first-child { border-top: 0; }
}

@media (max-width: 680px) {
  .bb-shell { width: min(100% - 40px, var(--bb-shell)); }
  .bb-header-inner { width: calc(100% - 32px); gap: 10px; }
  .bb-brand-name { font-size: 20px; }
  .bb-brand-tagline { font-size: 9px; }
  .bb-header-action { min-height: 44px; padding-inline: 18px; font-size: 0; }
  .bb-header-action::after { content: "Schedule"; font-size: 13px; }
  .bb-menu-button { flex-basis: 44px; width: 44px; height: 44px; }
  .bb-page-hero--coast {
    background-image:
      linear-gradient(rgba(247, 245, 240, 0.9), rgba(247, 245, 240, 0.7)),
      url("./coastline-background.png");
    background-position: 32% bottom;
  }
  .bb-hero-grid { gap: 40px; padding-top: 52px; }
  .bb-display { max-width: 10.5ch; font-size: clamp(47px, 14.5vw, 65px); line-height: 0.97; }
  .bb-hero-lead { margin-top: 22px; font-size: 16px; }
  .bb-actions { align-items: stretch; margin-top: 28px; }
  .bb-actions .bb-button { width: 100%; }
  .bb-hero-visual { min-height: 420px; }
  .bb-hero-portrait { right: 50%; width: min(122%, 500px); transform: translateX(50%); object-position: center bottom; }
  .bb-hero-photo { border-radius: 130px 130px 14px 14px; }
  .bb-house-route { width: 150%; left: -38%; }
  .bb-section { padding: 72px 0; }
  .bb-heading { font-size: clamp(39px, 12vw, 55px); }
  .bb-subheading { font-size: clamp(30px, 9.5vw, 42px); }
  .bb-intro-copy,
  .bb-body-copy { font-size: 15.5px; }
  .bb-proof-band,
  .bb-detail-grid,
  .bb-process,
  .bb-video-library,
  .bb-field-grid { grid-template-columns: 1fr; }
  .bb-proof-item { border-left: 0; border-top: 1px solid var(--bb-rule); }
  .bb-proof-item:first-child { border-top: 0; }
  .bb-detail:nth-child(even) { border-left: 0; }
  .bb-rule-item { grid-template-columns: 1fr; gap: 12px; }
  .bb-process-step { border-left: 0; border-top: 1px solid rgba(174, 190, 203, 0.4); padding-bottom: 30px; }
  .bb-process-step:first-child { border-top: 0; }
  .bb-program-panels { padding-block: 32px; }
  .bb-calculator { border-radius: 14px; }
  .bb-calculator-fields,
  .bb-calculator-results { padding: 28px 22px; }
  .bb-result-total { font-size: 52px; }
  .bb-review-frame,
  .bb-review-iframe { min-height: 440px; height: 440px; }
  .bb-faq-tools { justify-content: stretch; }
  .bb-faq-search { width: 100%; }
  .bb-faq-answer { padding-right: 0; }
  .bb-video-status { position: static; display: inline-flex; margin-top: 12px; }
  .bb-contact-panel { padding: 26px 20px; }
  .bb-footer-main { grid-template-columns: 1fr; }
  .bb-footer-column a { display: inline-flex; align-items: center; min-height: 44px; }
}

@media (max-width: 782px) {
  body.admin-bar .bb-site-header { top: 46px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .bb-route-dot { animation: none; }
  .bb-button,
  .bb-header-action,
  .bb-program-panel { transition: none; animation: none; }
}

@media print {
  .bb-site-header,
  .bb-mobile-nav,
  .bb-house-route,
  .bb-final-cta,
  .bb-site-footer { display: none !important; }
  body.bill-site { background: white; color: black; }
  .bb-section { padding: 32px 0; }
  .bb-calculator { box-shadow: none; border: 1px solid #aaa; }
}
