/* Header phone CTA + mobile sticky bar for main site */

:root {
  --bm-gold: #c5a059;
  --bm-gold-soft: #d4b36a;
  --bm-gold-deep: #a8843f;
  --bm-ink: #0e0e0e;
}

.button.button--phone {
  background-color: var(--bm-gold);
  color: var(--bm-ink);
  box-shadow: 0 4px 14px rgba(197, 160, 89, 0.35);
  white-space: nowrap;
}

.button.button--phone:hover {
  background-color: var(--bm-gold-soft);
  color: var(--bm-ink);
}

.button.button--phone .button_icon {
  flex-shrink: 0;
}

/* Reliable numerals — Libre Caslon / gradient-clip fail on some mobile browsers */
.text-numerals,
.button.button--phone,
.button.button--phone .button_label,
.bm-mobile-sticky__btn--call,
.card_body_xsmall .heading-responsive_small {
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-variant-numeric: lining-nums;
  font-feature-settings: "lnum" 1;
  font-synthesis: none;
  -webkit-text-fill-color: currentColor;
}

@media (max-width: 991px) {
  .nav_right {
    display: flex !important;
    flex: 0 0 auto;
    min-width: 0;
  }

  .button.button--phone {
    padding: 0.5rem 0.625rem;
  }

  .button.button--phone .button_label {
    font-size: 0.75rem;
  }
}

@media (min-width: 992px) and (max-width: 1200px) {
  .nav_right {
    flex: 0 0 auto;
  }

  .button.button--phone .button_label {
    font-size: 0.8125rem;
  }
}

/* Logo marquee — keyframes were missing from exported Webflow CSS */
@keyframes marquee-move-left {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(-50%, 0, 0);
  }
}

@keyframes marquee-move-right {
  from {
    transform: translate3d(-50%, 0, 0);
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}

.marquee_move-left.bm-marquee-fallback,
.marquee_move-right.bm-marquee-fallback {
  will-change: transform;
}

@media (prefers-reduced-motion: reduce) {
  .marquee_move-left.bm-marquee-fallback,
  .marquee_move-right.bm-marquee-fallback {
    animation: none !important;
  }
}

.bm-mobile-sticky {
  position: fixed;
  inset: auto 0 0;
  z-index: 60;
  display: flex;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  background: rgba(14, 14, 14, 0.96);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
}

.bm-mobile-sticky__btn {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  padding: 0.625rem 1rem;
  border-radius: 0.375rem;
  font-family: Inter, sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
  text-transform: uppercase;
}

.bm-mobile-sticky__btn--call {
  background-color: var(--bm-gold);
  color: var(--bm-ink);
  font-size: 0.75rem;
  letter-spacing: 0.01em;
  text-transform: none;
  white-space: nowrap;
}

.bm-mobile-sticky__btn--call:hover {
  background-color: var(--bm-gold-soft);
  color: var(--bm-ink);
}

.bm-mobile-sticky__btn--whatsapp {
  background-color: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.bm-mobile-sticky__btn--whatsapp:hover {
  border-color: var(--bm-gold);
  color: var(--bm-gold);
}

@media (min-width: 992px) {
  .bm-mobile-sticky {
    display: none;
  }
}

.footer.is-inverse .header > .footer_link + .footer_link {
  margin-top: 0.25rem;
}

.footer.is-inverse .header > .footer_link[href^="tel:"]:hover {
  color: var(--bm-gold, #c5a059);
}

@media (max-width: 991px) {
  body {
    padding-bottom: 4.5rem;
  }

  .div-block-3 {
    bottom: 4.5rem;
  }
}
