:root {
  --bt-ink: #0c0f14;
  --bt-ink-2: #131822;
  --bt-paper: #f6f3ee;
  --bt-paper-2: #ece7df;
  --bt-accent: #ff5a1f;
  --bt-accent-2: #ffb020;
  --bt-mint: #17c4a1;
  --bt-line: rgba(12, 15, 20, 0.12);
  --bt-line-dark: rgba(255, 255, 255, 0.14);
  --bt-heading: "Bricolage Grotesque", "Helvetica Neue", Arial, sans-serif;
  --bt-body: "Inter", "Helvetica Neue", Arial, sans-serif;
  --bt-radius: 18px;
  --bt-radius-lg: 28px;
  --bt-shadow: 0 24px 60px -30px rgba(12, 15, 20, 0.45);
  --bt-shadow-soft: 0 14px 40px -22px rgba(12, 15, 20, 0.35);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--bt-body);
  color: var(--bt-ink);
  background-color: var(--bt-paper);
  font-size: 1.02rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5 {
  font-family: var(--bt-heading);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.12;
  color: var(--bt-ink);
}

h1 {
  font-size: clamp(2.2rem, 5vw, 4rem);
}

h2 {
  font-size: clamp(1.8rem, 3.4vw, 2.9rem);
}

p {
  color: #2b3038;
}

a {
  color: var(--bt-accent);
  text-decoration: none;
  transition: color .2s ease;
}

a:hover {
  color: var(--bt-accent-2);
}

.bt-section {
  padding: clamp(3.5rem, 7vw, 7rem) 0;
  position: relative;
}

.bt-section--tight {
  padding: clamp(2.4rem, 4vw, 4rem) 0;
}

.bt-section--dark {
  background-color: var(--bt-ink);
  color: #f4f6f9;
}

.bt-section--dark h1,
.bt-section--dark h2,
.bt-section--dark h3,
.bt-section--dark h4 {
  color: #ffffff;
}

.bt-section--dark p,
.bt-section--dark li {
  color: #cfd4dc;
}

.bt-bg-cover {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.bt-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-size: .78rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--bt-accent);
}

.bt-section--dark .bt-eyebrow {
  color: var(--bt-accent-2);
}

.bt-lead {
  font-size: 1.14rem;
  color: #333a44;
}

.bt-section--dark .bt-lead {
  color: #d9dee6;
}

.bt-hero {
  min-height: 88vh;
  display: flex;
  align-items: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.bt-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(255, 90, 31, .18), transparent 55%);
  pointer-events: none;
}

.bt-hero h1,
.bt-hero h2,
.bt-hero h3 {
  color: #fff;
}

.bt-hero p {
  color: #e3e6eb;
}

.bt-page-hero {
  min-height: 52vh;
  display: flex;
  align-items: flex-end;
  padding: 8rem 0 4rem;
  color: #fff;
}

.bt-page-hero h1 {
  color: #fff;
}

.bt-page-hero p {
  color: #dfe3e9;
  max-width: 760px;
}

.bt-btn {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .95rem 1.9rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: .98rem;
  border: 2px solid transparent;
  transition: transform .22s ease, background-color .22s ease, color .22s ease, border-color .22s ease;
  cursor: pointer;
  line-height: 1.2;
}

.bt-btn:hover {
  transform: translateY(-2px);
}

.bt-btn--primary {
  background-color: var(--bt-accent);
  color: #14100d;
}

.bt-btn--primary:hover {
  background-color: var(--bt-accent-2);
  color: #14100d;
}

.bt-btn--ghost {
  background-color: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, .5);
}

.bt-btn--ghost:hover {
  background-color: #fff;
  color: var(--bt-ink);
  border-color: #fff;
}

.bt-btn--dark {
  background-color: var(--bt-ink);
  color: #fff;
}

.bt-btn--dark:hover {
  background-color: #222a36;
  color: #fff;
}

.bt-nav {
  background-color: transparent;
  transition: background-color .3s ease, box-shadow .3s ease;
  z-index: 1030;
}

.bt-nav .navbar-brand {
  font-family: var(--bt-heading);
  font-weight: 800;
  font-size: 1.35rem;
  letter-spacing: -0.03em;
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: .55rem;
}

.bt-nav .nav-link {
  color: rgba(255, 255, 255, .92);
  font-weight: 500;
  padding: .5rem 1rem !important;
  position: relative;
}

.bt-nav .nav-link:hover,
.bt-nav .nav-link.active {
  color: #fff;
}

.bt-nav .nav-link::after {
  content: "";
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: .25rem;
  height: 2px;
  background: var(--bt-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}

.bt-nav .nav-link:hover::after,
.bt-nav .nav-link.active::after {
  transform: scaleX(1);
}

.bt-nav.is-stuck {
  background-color: rgba(12, 15, 20, .95);
  box-shadow: var(--bt-shadow-soft);
  backdrop-filter: blur(14px);
}

.bt-nav--solid {
  background-color: rgba(12, 15, 20, .96);
  backdrop-filter: blur(14px);
}

.bt-nav .bt-topbar {
  font-size: .82rem;
  color: rgba(255, 255, 255, .78);
  border-bottom: 1px solid var(--bt-line-dark);
  padding: .45rem 0;
}

.bt-nav .bt-topbar a,
.bt-nav .bt-topbar span {
  color: rgba(255, 255, 255, .82);
}

.bt-card {
  background: #fff;
  border-radius: var(--bt-radius);
  border: 1px solid var(--bt-line);
  padding: 2rem;
  height: 100%;
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.bt-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--bt-shadow);
  border-color: rgba(255, 90, 31, .35);
}

.bt-card__icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 90, 31, .12);
  color: var(--bt-accent);
  font-size: 1.35rem;
  margin-bottom: 1.15rem;
}

.bt-card--dark {
  background: var(--bt-ink-2);
  border-color: var(--bt-line-dark);
  color: #eef1f5;
}

.bt-card--dark h3,
.bt-card--dark h4 {
  color: #fff;
}

.bt-card--dark p {
  color: #c8ced7;
}

.bt-media {
  border-radius: var(--bt-radius-lg);
  overflow: hidden;
  position: relative;
  aspect-ratio: 4 / 3;
  background: var(--bt-paper-2);
}

.bt-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s ease;
}

.bt-media:hover img {
  transform: scale(1.05);
}

.bt-stat {
  border-left: 3px solid var(--bt-accent);
  padding-left: 1.2rem;
}

.bt-stat__num {
  font-family: var(--bt-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--bt-ink);
  line-height: 1;
}

.bt-section--dark .bt-stat__num {
  color: #fff;
}

.bt-stat__label {
  font-size: .92rem;
  color: #454b54;
}

.bt-section--dark .bt-stat__label {
  color: #c2c8d1;
}

.bt-timeline {
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
}

.bt-timeline::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 6px;
  bottom: 6px;
  width: 2px;
  background: var(--bt-line);
}

.bt-timeline li {
  position: relative;
  padding: 0 0 1.9rem 3rem;
}

.bt-timeline li::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 4px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--bt-accent);
  border: 4px solid var(--bt-paper);
}

.bt-timeline__year {
  font-family: var(--bt-heading);
  font-weight: 800;
  color: var(--bt-accent);
  font-size: .95rem;
  letter-spacing: .05em;
}

.bt-list-check {
  list-style: none;
  padding: 0;
  margin: 0;
}

.bt-list-check li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: .8rem;
}

.bt-list-check li i {
  position: absolute;
  left: 0;
  top: .3rem;
  color: var(--bt-mint);
}

.bt-price-card {
  background: #fff;
  border-radius: var(--bt-radius-lg);
  border: 1px solid var(--bt-line);
  padding: 2.3rem 2rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform .3s ease, box-shadow .3s ease;
}

.bt-price-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--bt-shadow);
}

.bt-price-card--featured {
  background: var(--bt-ink);
  color: #eef1f5;
  border-color: var(--bt-ink);
  position: relative;
}

.bt-price-card--featured h3,
.bt-price-card--featured h4 {
  color: #fff;
}

.bt-price-card--featured p,
.bt-price-card--featured li {
  color: #c8ced7;
}

.bt-price-card--featured .bt-price-card__amount {
  color: #fff;
}

.bt-price-card__amount {
  font-family: var(--bt-heading);
  font-size: 2.6rem;
  font-weight: 800;
  line-height: 1;
  margin: .6rem 0;
}

.bt-price-card__tag {
  display: inline-block;
  font-size: .72rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  background: var(--bt-accent);
  color: #14100d;
  padding: .35rem .8rem;
  border-radius: 999px;
  font-weight: 700;
  margin-bottom: 1rem;
}

.bt-accordion .accordion-item {
  border: 1px solid var(--bt-line);
  border-radius: var(--bt-radius) !important;
  margin-bottom: 1rem;
  overflow: hidden;
  background: #fff;
}

.bt-accordion .accordion-button {
  font-family: var(--bt-heading);
  font-weight: 700;
  font-size: 1.05rem;
  background: #fff;
  color: var(--bt-ink);
  padding: 1.2rem 1.4rem;
}

.bt-accordion .accordion-button:not(.collapsed) {
  background: rgba(255, 90, 31, .08);
  color: var(--bt-ink);
  box-shadow: none;
}

.bt-accordion .accordion-button:focus {
  box-shadow: 0 0 0 3px rgba(255, 90, 31, .25);
}

.bt-accordion .accordion-body {
  padding: 0 1.4rem 1.4rem;
  color: #333a44;
}

.bt-form {
  background: #fff;
  border-radius: var(--bt-radius-lg);
  padding: 2.4rem;
  border: 1px solid var(--bt-line);
  box-shadow: var(--bt-shadow-soft);
}

.bt-section--dark .bt-form {
  background: var(--bt-ink-2);
  border-color: var(--bt-line-dark);
}

.bt-form label {
  font-weight: 600;
  font-size: .92rem;
  margin-bottom: .35rem;
  color: var(--bt-ink);
}

.bt-section--dark .bt-form label {
  color: #e6e9ee;
}

.bt-form .form-control,
.bt-form .form-select {
  border-radius: 12px;
  border: 1px solid var(--bt-line);
  padding: .8rem 1rem;
  background: #fbfaf8;
}

.bt-section--dark .bt-form .form-control,
.bt-section--dark .bt-form .form-select {
  background: #0a0d12;
  border-color: var(--bt-line-dark);
  color: #f0f2f5;
}

.bt-form .form-control:focus,
.bt-form .form-select:focus {
  border-color: var(--bt-accent);
  box-shadow: 0 0 0 3px rgba(255, 90, 31, .2);
}

.bt-note {
  font-size: .85rem;
  color: #4a505a;
}

.bt-form-notice {
  display: none;
  align-items: center;
  gap: .7rem;
  margin-top: 1.2rem;
  padding: .9rem 1.1rem;
  border-radius: 12px;
  background: rgba(23, 196, 161, .14);
  color: #0f6b59;
  font-weight: 600;
  font-size: .95rem;
}

.bt-form-notice.is-visible {
  display: flex;
}

.bt-form-notice--error {
  background: rgba(255, 90, 31, .14);
  color: #a83213;
}

.bt-testimonial {
  background: #fff;
  border-radius: var(--bt-radius);
  padding: 2rem;
  border: 1px solid var(--bt-line);
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.bt-testimonial__stars {
  color: var(--bt-accent-2);
  font-size: .95rem;
}

.bt-testimonial__quote {
  font-size: 1.02rem;
  color: #333a44;
  flex: 1;
}

.bt-testimonial__author {
  display: flex;
  align-items: center;
  gap: .9rem;
}

.bt-testimonial__avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  overflow: hidden;
  flex: none;
  background: var(--bt-paper-2);
}

.bt-testimonial__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bt-testimonial__name {
  font-weight: 700;
  font-family: var(--bt-heading);
  color: var(--bt-ink);
  line-height: 1.2;
}

.bt-testimonial__role {
  font-size: .84rem;
  color: #4a505a;
}

.bt-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 2.4rem;
}

.bt-logos img {
  height: 38px;
  width: auto;
  opacity: .65;
  filter: grayscale(1);
  transition: opacity .25s ease, filter .25s ease;
}

.bt-logos img:hover {
  opacity: 1;
  filter: grayscale(0);
}

.bt-slider {
  position: relative;
  overflow: hidden;
}

.bt-slider__track {
  display: flex;
  transition: transform .7s cubic-bezier(.22, .61, .36, 1);
}

.bt-slide {
  min-width: 100%;
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: center;
  color: #fff;
}

.bt-slide h1,
.bt-slide h2 {
  color: #fff;
}

.bt-slide p {
  color: #e3e6eb;
  max-width: 620px;
}

.bt-slider__nav {
  position: absolute;
  bottom: 2.2rem;
  right: 2.2rem;
  display: flex;
  gap: .6rem;
  z-index: 5;
}

.bt-slider__btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .45);
  background: rgba(12, 15, 20, .35);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color .2s ease, border-color .2s ease;
}

.bt-slider__btn:hover {
  background: var(--bt-accent);
  border-color: var(--bt-accent);
  color: #14100d;
}

.bt-slider__dots {
  position: absolute;
  bottom: 2.6rem;
  left: 2.2rem;
  display: flex;
  gap: .5rem;
  z-index: 5;
}

.bt-slider__dot {
  width: 30px;
  height: 4px;
  border-radius: 4px;
  border: none;
  background: rgba(255, 255, 255, .35);
  cursor: pointer;
  transition: background-color .2s ease;
}

.bt-slider__dot.is-active {
  background: var(--bt-accent);
}

.bt-ticker {
  background: var(--bt-ink);
  color: #fff;
  overflow: hidden;
  padding: 1rem 0;
  border-top: 1px solid var(--bt-line-dark);
  border-bottom: 1px solid var(--bt-line-dark);
}

.bt-ticker__row {
  display: flex;
  gap: 3rem;
  white-space: nowrap;
  animation: bt-ticker 26s linear infinite;
}

.bt-ticker__item {
  font-family: var(--bt-heading);
  font-weight: 700;
  font-size: 1.1rem;
  color: #f2f4f7;
  display: inline-flex;
  align-items: center;
  gap: .8rem;
}

.bt-ticker__item i {
  color: var(--bt-accent);
}

@keyframes bt-ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.bt-gallery img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: var(--bt-radius);
  display: block;
  transition: transform .45s ease;
}

.bt-gallery a {
  display: block;
  overflow: hidden;
  border-radius: var(--bt-radius);
}

.bt-gallery a:hover img {
  transform: scale(1.06);
}

.bt-map iframe {
  width: 100%;
  min-height: 420px;
  border: 0;
  border-radius: var(--bt-radius-lg);
  filter: saturate(.9) contrast(1.02);
}

.bt-cta-band {
  border-radius: var(--bt-radius-lg);
  padding: clamp(2.4rem, 5vw, 4rem);
  color: #fff;
  position: relative;
  overflow: hidden;
}

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

.bt-cta-band p {
  color: #e0e4ea;
}

.bt-footer {
  background: #090b0f;
  color: #c8ced7;
  padding: 4.5rem 0 1.6rem;
}

.bt-footer h4,
.bt-footer h5 {
  color: #fff;
  font-size: 1rem;
  letter-spacing: .04em;
  margin-bottom: 1.2rem;
  text-transform: uppercase;
}

.bt-footer a {
  color: #c8ced7;
}

.bt-footer a:hover {
  color: var(--bt-accent-2);
}

.bt-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.bt-footer ul li {
  margin-bottom: .6rem;
  font-size: .95rem;
}

.bt-footer__brand {
  font-family: var(--bt-heading);
  font-weight: 800;
  font-size: 1.4rem;
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  margin-bottom: 1rem;
}

.bt-footer__bottom {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--bt-line-dark);
  font-size: .88rem;
  color: #9aa2ae;
}

.bt-footer__legal {
  font-size: .84rem;
  color: #8c94a1;
  margin-top: .8rem;
  line-height: 1.6;
}

.bt-social {
  display: flex;
  gap: .7rem;
  margin-top: 1.2rem;
}

.bt-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--bt-line-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #dfe3e9;
  transition: background-color .2s ease, color .2s ease, border-color .2s ease;
}

.bt-social a:hover {
  background: var(--bt-accent);
  border-color: var(--bt-accent);
  color: #14100d;
}

.bt-breadcrumb {
  font-size: .85rem;
  color: rgba(255, 255, 255, .78);
}

.bt-breadcrumb a {
  color: rgba(255, 255, 255, .9);
}

.bt-breadcrumb a:hover {
  color: var(--bt-accent-2);
}

.bt-legal-body h2 {
  margin-top: 2.4rem;
}

.bt-legal-body h3 {
  margin-top: 1.8rem;
  font-size: 1.25rem;
}

.bt-legal-body p,
.bt-legal-body li {
  color: #333a44;
}

.bt-cookie {
  position: fixed;
  left: 1.2rem;
  right: 1.2rem;
  bottom: 1.2rem;
  z-index: 1080;
  background: #0f1319;
  color: #e6e9ee;
  border-radius: var(--bt-radius);
  padding: 1.4rem 1.6rem;
  box-shadow: 0 30px 70px -25px rgba(0, 0, 0, .7);
  display: none;
  border: 1px solid var(--bt-line-dark);
}

.bt-cookie.is-visible {
  display: block;
}

.bt-cookie p {
  color: #c8ced7;
  margin: 0 0 .9rem;
  font-size: .94rem;
}

.bt-cookie__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .7rem;
}

@media (min-width: 992px) {
  .bt-cookie {
    left: auto;
    right: 2rem;
    bottom: 2rem;
    max-width: 420px;
  }
}

.bt-backtop {
  position: fixed;
  right: 1.4rem;
  bottom: 1.4rem;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: none;
  background: var(--bt-accent);
  color: #14100d;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1070;
  cursor: pointer;
  box-shadow: var(--bt-shadow-soft);
}

.bt-backtop.is-visible {
  display: inline-flex;
}

.bt-hamburger {
  border: 1px solid rgba(255, 255, 255, .4);
  border-radius: 12px;
  color: #fff;
  padding: .4rem .7rem;
  background: transparent;
}

.bt-hamburger:focus {
  box-shadow: 0 0 0 3px rgba(255, 90, 31, .3);
}

.bt-divider {
  height: 1px;
  background: var(--bt-line);
  border: 0;
  margin: 0;
}

.bt-section--dark .bt-divider {
  background: var(--bt-line-dark);
}

.bt-quote {
  border-left: 4px solid var(--bt-accent);
  padding-left: 1.4rem;
  font-family: var(--bt-heading);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--bt-ink);
}

.bt-badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
}

.bt-badge {
  font-size: .8rem;
  font-weight: 600;
  padding: .4rem .85rem;
  border-radius: 999px;
  border: 1px solid var(--bt-line);
  background: #fff;
  color: #333a44;
}

.bt-section--dark .bt-badge {
  background: var(--bt-ink-2);
  border-color: var(--bt-line-dark);
  color: #d5dae2;
}

.bt-overlap {
  margin-top: -5rem;
  position: relative;
  z-index: 4;
}

@media (max-width: 767px) {
  .bt-slide {
    min-height: 68vh;
  }
  .bt-slider__nav {
    right: 1rem;
    bottom: 5.5rem;
  }
  .bt-slider__dots {
    left: 1rem;
    bottom: 6rem;
  }
  .bt-overlap {
    margin-top: -3rem;
  }
}
/* --- Contrast + nav overrides --- */
/* Ensure dark image-backed sections report a solid dark background so light
   text passes contrast checks even when the background image is absent. */
.bt-page-hero {
  background-color: #0c0f14;
}

.bt-cta-band {
  background-color: #0c0f14;
}

/* Darken eyebrow text so it meets 4.5:1 on light (paper / white) backgrounds. */
.bt-eyebrow {
  color: #c2410c;
}

/* Keep the bright brand accent for eyebrows that sit on dark backgrounds. */
.bt-page-hero .bt-eyebrow,
.bt-cta-band .bt-eyebrow,
.bt-section--dark .bt-eyebrow {
  color: var(--bt-accent-2);
}

/* Make the "Services" dropdown toggle (now a <button>) render like a nav link. */
.bt-nav button.nav-link {
  background: transparent;
  border: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  cursor: pointer;
}

/* --- Contrast & accessibility overrides (appended) --- */

/* Ensure dark hero / CTA bands have a solid dark base so white text
   always meets contrast, even before/without the background image. */
.bt-page-hero {
  background-color: var(--bt-ink);
}

.bt-cta-band {
  background-color: var(--bt-ink);
}

/* Darker orange for the accent used as *text* on light backgrounds. */
.bt-eyebrow {
  color: #b8430f;
}

a {
  color: #b8430f;
}

a:hover {
  color: #8f3309;
}

.bt-form a {
  color: #b8430f;
}

/* Keep light-on-dark accents for eyebrow labels sitting on dark bands. */
.bt-section--dark .bt-eyebrow,
.bt-page-hero .bt-eyebrow,
.bt-cta-band .bt-eyebrow,
.bt-card--dark .bt-eyebrow {
  color: var(--bt-accent-2);
}

/* === Contrast fixes (QA) === */
/* Give dark background-image sections a solid fallback background-color so
   automated contrast checks resolve the correct (dark) backdrop. */
.bt-page-hero,
.bt-cta-band {
  background-color: #0c0f14;
}

/* Darken the eyebrow accent so orange text passes AA on the light cream sections. */
.bt-eyebrow {
  color: #c2410c;
}

/* Keep a light accent on genuinely dark backgrounds. */
.bt-page-hero .bt-eyebrow,
.bt-cta-band .bt-eyebrow,
.bt-section--dark .bt-eyebrow,
.bt-card--dark .bt-eyebrow {
  color: #ff8a5c;
}

.bt-section--dark .bt-eyebrow {
  color: var(--bt-accent-2);
}

/* Brighten inline links (e.g. Privacy Policy) inside dark form contexts so
   anti-aliased text still meets contrast on the near-black panel. */
.bt-section--dark .bt-form a,
.bt-form a[href^="/privacy-policy/"] {
  color: var(--bt-accent-2);
}

.bt-section--dark .bt-form a:hover {
  color: #ffd08a;
}

/* QA overrides */
/* Solid background colour for the quote section: previously the dark backdrop
   was supplied only by a background image, so white text had no measurable
   contrast base. */
#service-quote { background-color: #12161b; }

/* Allow the Services dropdown toggle to be a <button> (no placeholder href="#")
   without inheriting the browser's default button chrome. */
.bt-nav button.nav-link { background: transparent; border: 0; box-shadow: none; }
.bt-nav button.nav-link:focus { outline: 0; }

/* === QA fix: ghost button contrast on light cards === */
/* .bt-btn--ghost defaults to white text (for dark backgrounds). When it is
   placed inside a light card the white text is invisible, so give cards a
   dark, high-contrast variant. */
.bt-card .bt-btn--ghost {
  color: var(--bt-ink);
  border-color: rgba(12, 15, 20, 0.35);
}

.bt-card .bt-btn--ghost:hover {
  background-color: var(--bt-ink);
  color: #ffffff;
  border-color: var(--bt-ink);
}

/* QA override: raise eyebrow accent contrast on the dark quote section */
#service-quote .bt-eyebrow,
#service-quote .bt-eyebrow i { color: #f97316; }

/* === QA fix: solid contrast base for slider slides === */
/* The hero slides are backed only by a background-image (linear-gradient over a
   photo). When the image is not resolved, the light text sits on the page's
   cream background and fails contrast. Give each slide an opaque dark
   background-color; it sits beneath the photo/gradient so it never shows. */
.bt-slide {
  background-color: #0c0f14;
}

/* QA fix: slide eyebrows sit on the dark slide background, so use the bright
   brand accent (light orange) instead of the dark-orange light-section accent. */
.bt-slide .bt-eyebrow,
.bt-slide .bt-eyebrow i {
  color: var(--bt-accent-2);
}

/* === QA fix: dark price cards rendered with a white background === */
/* .bt-price-card is declared after .bt-card--dark and both have equal
   specificity, so the plain white background of .bt-price-card was winning.
   On the dark "Exhibition stand builds" section that left white text on a
   white card (invisible). Restore the dark surface for the combined variant. */
.bt-price-card.bt-card--dark {
  background: var(--bt-ink-2);
  border-color: var(--bt-line-dark);
  color: #eef1f5;
}

.bt-price-card.bt-card--dark h3,
.bt-price-card.bt-card--dark h4,
.bt-price-card.bt-card--dark .bt-price-card__amount {
  color: #ffffff;
}

.bt-price-card.bt-card--dark p,
.bt-price-card.bt-card--dark li {
  color: #cfd4dc;
}

/* Ensure the Services dropdown toggle (<button>) looks identical to the
   other nav links across all states. */
.bt-nav button.nav-link {
  appearance: none;
  -webkit-appearance: none;
  background: transparent;
  border: 0;
  box-shadow: none;
  color: rgba(255, 255, 255, .92);
  font: inherit;
  font-weight: 500;
  cursor: pointer;
}

.bt-nav button.nav-link:hover,
.bt-nav button.nav-link:focus,
.bt-nav button.nav-link.show {
  color: #ffffff;
  background: transparent;
}

.bt-nav button.nav-link::after {
  content: "";
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: .25rem;
  height: 2px;
  background: var(--bt-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}

.bt-nav button.nav-link:hover::after,
.bt-nav button.nav-link.show::after {
  transform: scaleX(1);
}

/* Ensure Services dropdown toggle rendered as a button matches nav link styling */
.navbar-nav .nav-link.dropdown-toggle{background:transparent;border:0;cursor:pointer;text-align:inherit;font:inherit;color:inherit}
.navbar-nav .nav-link.dropdown-toggle:focus{outline:none}

/* Fix: Services dropdown toggle rendered as button — match nav link colour */
.bt-nav .navbar-nav > .nav-item > .nav-link.dropdown-toggle,
.bt-nav .navbar-nav > .nav-item > button.nav-link.dropdown-toggle {
  background: transparent;
  border: 0;
  padding: var(--bs-nav-link-padding-y, 0.5rem) var(--bs-nav-link-padding-x, 1rem);
  color: #f5f7fa;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
  text-align: left;
}
.bt-nav .navbar-nav > .nav-item > button.nav-link.dropdown-toggle:hover,
.bt-nav .navbar-nav > .nav-item > button.nav-link.dropdown-toggle:focus {
  color: #ffffff;
}
