:root {
  --bb-red: #d71920;
  --bb-yellow: #ffc928;
  --bb-blue: #36a9e1;
  --bb-green: #39b54a;
  --bb-mint: #d7f6e5;
  --bb-cream: #fff7df;
  --bb-ink: #172433;
  --bb-muted: #5d6875;
  --bb-cloud: #f7fafc;
  --bb-white: #ffffff;
  --bb-line: #dbe5ee;
  --bb-radius: 8px;
  --bb-shadow: 0 18px 42px rgba(23, 36, 51, 0.14);
  --bb-container: 1180px;
  --bb-header-height: 112px;
  --bb-admin-offset: 0px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  padding-top: var(--bb-header-height);
  overflow-x: hidden;
  color: var(--bb-ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  background: var(--bb-white);
}

body.admin-bar {
  --bb-admin-offset: 32px;
}

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

img {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.2em;
}

h1,
h2,
h3 {
  line-height: 1.08;
  margin: 0 0 0.55em;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(2.25rem, 4.2vw, 4.15rem);
  max-width: 12.5ch;
}

h2 {
  font-size: clamp(1.9rem, 3.4vw, 3.25rem);
}

h3 {
  font-size: 1.35rem;
}

p {
  margin: 0 0 1rem;
}

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

.bb-skip-link {
  position: absolute;
  left: 1rem;
  top: 1rem;
  z-index: 100;
  padding: 0.7rem 1rem;
  background: var(--bb-ink);
  color: var(--bb-white);
  transform: translateY(-150%);
}

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

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

.bb-topbar {
  color: var(--bb-white);
  background: var(--bb-red);
  font-size: 0.82rem;
  font-weight: 700;
}

.bb-topbar__inner {
  display: flex;
  justify-content: flex-end;
  gap: 1.4rem;
  padding: 0.42rem 0;
}

.bb-topbar a {
  text-decoration: none;
}

.bb-site-header {
  position: fixed;
  top: var(--bb-admin-offset);
  right: 0;
  left: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 1px 0 var(--bb-line);
  backdrop-filter: blur(12px);
}

.bb-header-main {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.15rem;
  min-height: 76px;
}

.bb-brand {
  display: inline-flex;
  align-items: center;
  font-weight: 900;
  text-decoration: none;
}

.bb-brand__logo {
  width: clamp(62px, 7vw, 100px);
  height: clamp(62px, 7vw, 100px);
  object-fit: contain;
}

.bb-brand__mark {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  color: var(--bb-white);
  background: var(--bb-red);
  border: 4px solid var(--bb-yellow);
  border-radius: 50%;
  font-weight: 900;
}

.bb-brand__text {
  max-width: 92px;
  font-size: 0.94rem;
  line-height: 1.05;
}

.bb-menu {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.1rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.bb-menu a {
  display: block;
  padding: 0.65rem 0.66rem;
  color: var(--bb-ink);
  font-weight: 800;
  font-size: 0.88rem;
  text-decoration: none;
  border-radius: var(--bb-radius);
}

.bb-menu a:hover,
.bb-menu .current-menu-item > a {
  color: var(--bb-red);
  background: #fff3d0;
}

.bb-header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.55rem;
  min-width: 0;
}

.bb-header-actions > .bb-button,
.bb-rewards-toggle,
.bb-menu-toggle {
  min-width: 132px;
  min-height: 40px;
  height: 40px;
  border-radius: var(--bb-radius);
  box-shadow: none;
}

.bb-header-actions > .bb-button {
  padding-inline: 0.95rem;
}

.bb-rewards-toggle {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 40px;
  padding: 0.45rem 0.95rem;
  color: var(--bb-ink);
  background: var(--bb-white);
  border: 1px solid var(--bb-line);
  border-radius: var(--bb-radius);
  cursor: pointer;
  font-weight: 900;
  line-height: 1;
  box-shadow: 0 8px 18px rgba(23, 36, 51, 0.08);
}

.bb-rewards-toggle__icon {
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
}

.bb-rewards-toggle__icon svg {
  display: block;
  width: 19px;
  height: 19px;
}

.bb-rewards-toggle__text {
  font-size: 0.92rem;
}

.bb-rewards-toggle strong {
  position: absolute;
  top: -7px;
  right: -7px;
  display: grid;
  min-width: 20px;
  height: 20px;
  padding: 0 5px;
  place-items: center;
  color: var(--bb-white);
  background: #4da3ff;
  border: 2px solid var(--bb-white);
  border-radius: 999px;
  font-size: 0.68rem;
  line-height: 1;
}

.bb-menu-toggle {
  display: inline-flex;
  width: auto;
  height: 40px;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  gap: 0.65rem;
  padding: 0 0.95rem;
  color: var(--bb-ink);
  background: var(--bb-white);
  border: 1px solid var(--bb-line);
  border-radius: var(--bb-radius);
  cursor: pointer;
}

.bb-menu-scrim {
  display: none;
}

.bb-primary-nav {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 120;
  display: block;
  width: min(440px, 92vw);
  max-width: 100vw;
  height: 100vh;
  padding: 2rem 1rem max(1.2rem, env(safe-area-inset-bottom));
  overflow-y: auto;
  overflow-x: hidden;
  background: linear-gradient(145deg, #ffffff, #f4fbff 48%, #fff7df);
  box-shadow: -24px 0 60px rgba(23, 36, 51, 0.22);
  transform: translateX(105%);
  transition: transform 260ms ease;
}

.bb-menu-drawer__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 2;
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  color: var(--bb-ink);
  background: var(--bb-white);
  border: 1px solid var(--bb-line);
  border-radius: 12px;
  box-shadow: 0 14px 30px rgba(23, 36, 51, 0.12);
  cursor: pointer;
}

.bb-menu-drawer__close span {
  position: absolute;
  display: block;
  width: 24px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
}

.bb-menu-drawer__close span:first-child {
  transform: rotate(45deg);
}

.bb-menu-drawer__close span:last-child {
  transform: rotate(-45deg);
}

.bb-menu-drawer__close:focus-visible {
  outline: 3px solid var(--bb-yellow);
  outline-offset: 3px;
}

.bb-primary-nav.is-open {
  transform: translateX(0);
}

.bb-menu-open .bb-menu-scrim {
  position: fixed;
  inset: 0;
  z-index: 70;
  display: block;
  background: rgba(16, 26, 37, 0.36);
  border: 0;
  backdrop-filter: none;
}

.bb-menu-drawer__head {
  padding-right: 4.2rem;
  margin-bottom: 1rem;
}

.bb-menu-drawer__head h2 {
  margin: 0;
  font-size: clamp(2rem, 8vw, 3rem);
}

.bb-menu-quick {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem;
  margin-bottom: 1rem;
}

.bb-menu-quick a,
.bb-menu-group a {
  color: var(--bb-ink);
  text-decoration: none;
}

.bb-menu-quick a {
  display: grid;
  min-height: 62px;
  place-items: center;
  padding: 0.8rem;
  background: var(--bb-white);
  border: 1px solid var(--bb-line);
  border-radius: var(--bb-radius);
  font-weight: 900;
}

.bb-menu-group {
  margin-bottom: 0.65rem;
  background: var(--bb-white);
  border: 1px solid var(--bb-line);
  border-radius: var(--bb-radius);
  overflow: hidden;
}

.bb-menu-group summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  cursor: pointer;
  font-weight: 950;
  list-style: none;
}

.bb-menu-group summary::-webkit-details-marker {
  display: none;
}

.bb-menu-group summary::after {
  content: "+";
  color: var(--bb-red);
  font-size: 1.4rem;
  line-height: 1;
}

.bb-menu-group[open] summary::after {
  content: "-";
}

.bb-menu-group a {
  display: block;
  padding: 0.85rem 1rem;
  border-top: 1px solid var(--bb-line);
  font-weight: 800;
}

.bb-menu-toggle__icon {
  display: flex;
  width: 26px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.bb-menu-toggle__icon span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--bb-ink);
  border-radius: 999px;
}

.bb-menu-toggle strong {
  font-size: 0.92rem;
  line-height: 1;
}

.bb-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.78rem 1.12rem;
  font-weight: 900;
  text-align: center;
  text-decoration: none;
  border: 2px solid transparent;
  border-radius: var(--bb-radius);
  transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

.bb-button:hover {
  transform: translateY(-1px);
}

.bb-button--primary {
  color: var(--bb-ink);
  background: var(--bb-yellow);
  box-shadow: none;
}

.bb-button--secondary {
  color: var(--bb-white);
  background: var(--bb-red);
}

.bb-button--ghost {
  color: var(--bb-red);
  background: var(--bb-white);
  border-color: #ffd7d9;
}

.bb-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  padding-top: 1rem;
  color: var(--bb-muted);
  font-size: 0.9rem;
}

.bb-breadcrumbs a {
  color: var(--bb-red);
  text-decoration: none;
}

.bb-hero__app-note,
.bb-app-promo__note {
  margin-top: 1rem;
  font-weight: 850;
}

.bb-hero__app-note {
  max-width: 34rem;
  color: var(--bb-ink);
}

.bb-app-promo__note {
  color: #ffe28a !important;
}

.bb-hero {
  overflow: hidden;
  position: relative;
  padding: clamp(3rem, 5vw, 5.25rem) 0 clamp(3.6rem, 6vw, 6.3rem);
  background:
    linear-gradient(135deg, rgba(255, 247, 223, 0.98) 0%, rgba(215, 246, 229, 0.96) 48%, rgba(219, 244, 255, 0.98) 100%),
    var(--bb-cloud);
}

.bb-hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 10px;
  content: "";
  background: linear-gradient(90deg, var(--bb-red) 0 25%, var(--bb-yellow) 25% 50%, var(--bb-blue) 50% 75%, var(--bb-green) 75%);
}

.bb-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(360px, 1fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 5.6rem);
}

.bb-hero__content {
  max-width: 620px;
}

.bb-eyebrow {
  margin-bottom: 0.85rem;
  color: var(--bb-red);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.bb-hero h1 {
  color: var(--bb-ink);
  text-wrap: balance;
}

.bb-hero__lead {
  max-width: 560px;
  color: #233347;
  font-size: clamp(1rem, 1.25vw, 1.16rem);
  font-weight: 650;
}

.bb-hero__actions,
.bb-final-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.7rem;
}

.bb-hero__proof {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.5rem;
}

.bb-hero__proof span {
  padding: 0.42rem 0.62rem;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(23, 36, 51, 0.08);
  border-radius: var(--bb-radius);
  font-size: 0.86rem;
  font-weight: 850;
}

.bb-hero__areas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  align-items: center;
  margin-top: 1.1rem;
  font-size: 0.9rem;
}

.bb-hero__areas strong {
  margin-right: 0.2rem;
}

.bb-hero__areas a {
  padding: 0.34rem 0.55rem;
  color: var(--bb-ink);
  background: rgba(255, 255, 255, 0.56);
  border: 1px solid rgba(23, 36, 51, 0.1);
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
}

.bb-hero__media {
  position: relative;
  min-width: 0;
}

.bb-hero__image,
.bb-hero__placeholder {
  width: 100%;
  aspect-ratio: 1.12 / 1;
  object-fit: cover;
  border: 10px solid var(--bb-white);
  border-radius: var(--bb-radius);
  box-shadow: var(--bb-shadow);
}

.bb-hero__placeholder {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr auto;
  gap: 0.75rem;
  padding: 1rem;
  background: var(--bb-white);
  min-width: 0;
}

.bb-hero__placeholder div {
  display: grid;
  min-height: 138px;
  align-items: end;
  padding: 1rem;
  overflow: hidden;
  color: var(--bb-white);
  background: linear-gradient(145deg, var(--bb-red), #ff6a30);
  border-radius: var(--bb-radius);
  min-width: 0;
}

.bb-hero__placeholder div:nth-child(2) {
  background: linear-gradient(145deg, var(--bb-blue), #107cc5);
}

.bb-hero__placeholder div:nth-child(3) {
  grid-column: 1 / -1;
  background: linear-gradient(145deg, var(--bb-green), #198f52);
}

.bb-hero__placeholder span {
  font-weight: 950;
}

.bb-hero__placeholder strong {
  grid-column: 1 / -1;
  padding: 0.86rem;
  text-align: center;
  background: var(--bb-yellow);
  border-radius: var(--bb-radius);
}

.bb-trust {
  background: var(--bb-ink);
  color: var(--bb-white);
}

.bb-trust__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
}

.bb-trust__grid div {
  padding: 1.35rem;
  background: rgba(255, 255, 255, 0.06);
}

.bb-trust strong,
.bb-trust span {
  display: block;
}

.bb-trust strong {
  color: var(--bb-yellow);
}

.bb-trust span {
  color: #d7e1ea;
  font-size: 0.94rem;
}

.bb-section {
  padding: clamp(3.2rem, 6vw, 6rem) 0;
  background: var(--bb-white);
}

.bb-section--tint {
  background: var(--bb-cloud);
}

.bb-section--app-landing {
  padding-top: clamp(2.2rem, 5vw, 4rem);
}

.bb-section--app-promo {
  padding: clamp(2.2rem, 4.5vw, 4rem) 0;
  background:
    radial-gradient(circle at 88% 16%, rgba(255, 201, 40, 0.22), transparent 28%),
    linear-gradient(135deg, #101a25, #172433);
}

.bb-app-promo {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 0.38fr);
  gap: clamp(1.2rem, 4vw, 3rem);
  align-items: center;
  overflow: hidden;
  padding: clamp(1.3rem, 3vw, 2.2rem);
  color: var(--bb-white);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--bb-radius);
  box-shadow: var(--bb-shadow);
}

.bb-app-promo h2,
.bb-app-promo p:not(.bb-eyebrow) {
  color: var(--bb-white);
}

.bb-app-promo .bb-eyebrow {
  color: var(--bb-yellow);
}

.bb-app-promo__content {
  max-width: 760px;
}

.bb-app-promo__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.bb-app-promo__phone {
  justify-self: end;
  width: min(245px, 100%);
  padding: 0.75rem;
  background: #f7fafc;
  border: 8px solid rgba(255, 255, 255, 0.86);
  border-radius: 28px;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.28);
}

.bb-app-promo__phone div {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.5rem;
  min-height: 210px;
  padding: 0.8rem;
  background:
    radial-gradient(circle at 85% 0, rgba(255, 201, 40, 0.24), transparent 30%),
    linear-gradient(150deg, #e6fbf1, #ddf5ff);
  border-radius: 18px;
}

.bb-app-promo__phone span {
  display: grid;
  min-height: 72px;
  place-items: center;
  color: var(--bb-white);
  font-weight: 950;
  border-radius: 14px;
}

.bb-app-promo__phone span:nth-child(1) {
  background: var(--bb-red);
}

.bb-app-promo__phone span:nth-child(2) {
  background: var(--bb-blue);
}

.bb-app-promo__phone span:nth-child(3) {
  background: var(--bb-green);
}

.bb-app-promo__phone span:nth-child(4) {
  color: var(--bb-ink);
  background: var(--bb-yellow);
}

.bb-section-heading {
  max-width: 760px;
  margin: 0 auto 2rem;
  text-align: center;
}

.bb-section-heading h2 {
  color: var(--bb-ink);
}

.bb-section-heading p:last-child {
  color: var(--bb-muted);
  font-size: 1.05rem;
}

.bb-card-grid,
.bb-review-grid,
.bb-post-grid,
.bb-option-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.1rem;
}

.bb-service-card,
.bb-review,
.bb-card,
.bb-option-grid article {
  min-height: 100%;
  padding: 1.4rem;
  background: var(--bb-white);
  border: 1px solid var(--bb-line);
  border-radius: var(--bb-radius);
  box-shadow: 0 10px 28px rgba(23, 36, 51, 0.07);
}

.bb-hire-options {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(247, 250, 252, 0.96)),
    var(--bb-cloud);
}

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

.bb-option-grid article {
  border-top: 5px solid var(--bb-blue);
}

.bb-option-grid article:nth-child(2) {
  border-top-color: var(--bb-red);
}

.bb-option-grid article:nth-child(3) {
  border-top-color: var(--bb-green);
}

.bb-option-grid article:nth-child(4) {
  border-top-color: var(--bb-yellow);
}

.bb-service-card--1 {
  border-top: 6px solid var(--bb-red);
}

.bb-service-card--2 {
  border-top: 6px solid var(--bb-blue);
}

.bb-service-card--3 {
  border-top: 6px solid var(--bb-green);
}

.bb-service-card__icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 1rem;
  color: var(--bb-ink);
  background: var(--bb-yellow);
  border-radius: 50%;
  font-weight: 950;
}

.bb-booking-shell {
  display: grid;
  grid-template-columns: minmax(260px, 0.38fr) minmax(0, 1fr);
  gap: 1.5rem;
  align-items: start;
  padding: clamp(1.2rem, 3vw, 2rem);
  background: var(--bb-white);
  border: 1px solid var(--bb-line);
  border-radius: var(--bb-radius);
  box-shadow: var(--bb-shadow);
}

.bb-booking-shell__header {
  position: sticky;
  top: 116px;
}

.bb-booking-shell__embed {
  min-height: 180px;
  padding: 1rem;
  overflow: hidden;
  background: var(--bb-cloud);
  border: 1px dashed #b7c7d8;
  border-radius: var(--bb-radius);
}

.bb-booking-shell__embed .booknetic_appointment {
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  margin: 0 !important;
  box-shadow: none !important;
}

.bb-booking-shell__embed .booknetic_appointment_steps {
  display: none !important;
}

.bb-booking-shell__embed .booknetic_appointment_container {
  width: 100% !important;
  max-width: 100% !important;
  margin-left: 0 !important;
}

.bb-booking-shell__embed .booknetic_appointment_container_body {
  min-height: 390px;
}

.bb-booking-shell__embed .booknetic_appointment_container_footer {
  padding-inline: clamp(1rem, 2vw, 1.5rem) !important;
}

.bb-booking-shell__embed .booknetic_service_card,
.bb-booking-shell__embed .booknetic_category_accordion {
  max-width: 100%;
}

.bb-booking-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: none;
  padding: clamp(0.7rem, 2vw, 1.4rem);
}

.bb-booking-modal[aria-hidden="false"] {
  display: grid;
  place-items: center;
}

.bb-booking-modal__scrim {
  position: fixed;
  inset: 0;
  background: rgba(11, 18, 25, 0.68);
  border: 0;
  backdrop-filter: blur(8px);
}

.bb-booking-modal__dialog {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(1120px, 100%);
  max-height: min(86vh, 820px);
  overflow: hidden;
  background: var(--bb-white);
  border-radius: var(--bb-radius);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.34);
}

.bb-booking-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.2rem;
  border-bottom: 1px solid var(--bb-line);
}

.bb-booking-modal__header .bb-eyebrow,
.bb-booking-modal__header h2 {
  margin: 0;
}

.bb-booking-modal__header h2 {
  font-size: clamp(1.25rem, 2vw, 1.8rem);
}

.bb-booking-modal__close {
  display: grid;
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  place-items: center;
  color: var(--bb-white);
  background: var(--bb-red);
  border: 0;
  border-radius: var(--bb-radius);
  cursor: pointer;
  font-size: 1.8rem;
  font-weight: 900;
  line-height: 1;
}

.bb-booking-modal__body {
  min-height: 520px;
  overflow: auto;
  padding: 1rem;
  background: var(--bb-cloud);
}

.bb-booking-modal__body .bb-booking-shell__embed {
  padding: 0;
  overflow: visible;
  background: transparent;
  border: 0;
}

body.bb-booking-modal-open {
  overflow: hidden;
}

.bb-account-drawer {
  position: fixed;
  inset: 0;
  z-index: 130;
  display: block;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 220ms ease, visibility 220ms ease;
}

.bb-account-drawer[aria-hidden="false"] {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.bb-account-drawer__scrim {
  position: fixed;
  inset: 0;
  background: rgba(10, 16, 24, 0.62);
  border: 0;
  backdrop-filter: blur(8px);
}

.bb-account-drawer__panel {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(440px, 100vw);
  padding: clamp(1.1rem, 4vw, 1.7rem);
  overflow-y: auto;
  color: var(--bb-ink);
  background: linear-gradient(145deg, #fff7df, #ffffff 34%, #e9fbf0);
  box-shadow: -24px 0 70px rgba(6, 12, 20, 0.36);
  transform: translateX(105%);
  transition: transform 260ms ease;
}

.bb-account-drawer[aria-hidden="false"] .bb-account-drawer__panel {
  transform: translateX(0);
}

.bb-account-drawer__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--bb-white);
  background: var(--bb-red);
  border: 1px solid #b9151b;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.55rem;
}

.bb-account-drawer h2 {
  max-width: 10ch;
  margin: 0 0 0.75rem;
  color: var(--bb-ink);
  font-size: clamp(2rem, 8vw, 3rem);
  line-height: 0.95;
}

.bb-account-drawer p,
.bb-account-drawer a {
  color: var(--bb-muted);
}

.bb-account-tabs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.5rem;
  margin: 1.4rem 0;
}

.bb-account-tabs button {
  padding: 0.85rem;
  color: var(--bb-ink);
  background: var(--bb-white);
  border: 1px solid var(--bb-line);
  border-bottom: 3px solid transparent;
  cursor: pointer;
  font-size: 1.1rem;
  font-weight: 950;
}

.bb-account-tabs button span {
  display: block;
  margin-top: 0.2rem;
  color: #cfe0f6;
  font-size: 0.84rem;
  font-weight: 500;
}

.bb-account-tabs button.is-active {
  border-bottom-color: #4da3ff;
}

.bb-account-form {
  display: none;
}

.bb-account-form.is-active {
  display: grid;
  gap: 1rem;
}

.bb-account-form label {
  display: grid;
  gap: 0.45rem;
  color: var(--bb-ink);
  font-weight: 900;
}

.bb-account-form input {
  width: 100%;
  min-height: 56px;
  padding: 0 1rem;
  color: var(--bb-ink);
  background: var(--bb-white);
  border: 1px solid var(--bb-line);
  border-radius: var(--bb-radius);
}

.bb-account-check {
  display: flex !important;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 0.7rem !important;
}

.bb-account-check input {
  width: 18px;
  min-height: 18px;
}

.bb-account-mini-card {
  display: grid;
  gap: 0.35rem;
  margin: 1.3rem 0;
  padding: 1rem;
  background: var(--bb-white);
  border: 1px solid var(--bb-line);
  border-radius: var(--bb-radius);
}

.bb-account-drawer .bb-button--ghost {
  width: 100%;
  margin-top: 0.7rem;
  color: var(--bb-red);
  background: var(--bb-white);
  border-color: #ffd7d9;
}

.bb-account-drawer__logged-in .bb-button--primary {
  width: 100%;
  color: var(--bb-ink);
  background: #ff9f1f;
  box-shadow: 0 5px 0 rgba(215, 25, 32, 0.28);
}

.bb-account-message {
  min-height: 1.2rem;
  margin: 0;
  color: var(--bb-yellow) !important;
  font-weight: 800;
}

.bb-account-message.is-error {
  color: #ff8d8d !important;
}

body.bb-account-drawer-open {
  overflow: hidden;
}

.bb-rewards-page {
  display: grid;
  gap: clamp(1.2rem, 3vw, 2rem);
  padding-bottom: clamp(2rem, 5vw, 4rem);
}

.bb-rewards-hero,
.bb-rewards-panel,
.bb-rewards-grid article {
  background: var(--bb-white);
  border: 1px solid var(--bb-line);
  border-radius: var(--bb-radius);
  box-shadow: var(--bb-shadow);
}

.bb-rewards-hero {
  padding: clamp(1.4rem, 4vw, 2.3rem);
  background: linear-gradient(135deg, #162536, #101923 62%, #293020);
  color: var(--bb-white);
}

.bb-rewards-hero h1 {
  max-width: 13ch;
  margin: 0 0 0.75rem;
  color: var(--bb-white);
}

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

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

.bb-rewards-grid article,
.bb-rewards-panel {
  padding: clamp(1rem, 3vw, 1.4rem);
}

.bb-rewards-list {
  display: grid;
  gap: 0.6rem;
}

.bb-rewards-list div {
  display: grid;
  gap: 0.2rem;
  padding: 0.85rem;
  background: var(--bb-cloud);
  border-radius: var(--bb-radius);
}

.bb-rewards-list span {
  color: var(--bb-muted);
}

.bb-review {
  margin: 0;
}

.bb-review blockquote {
  margin: 0 0 1rem;
  font-size: 1.05rem;
  font-weight: 700;
}

.bb-review figcaption {
  color: var(--bb-red);
  font-weight: 900;
}

.bb-centered-action {
  margin-top: 1.5rem;
  text-align: center;
}

.bb-two-col {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.7fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: start;
}

.bb-locations {
  background: linear-gradient(180deg, var(--bb-cream), #ffffff);
}

.bb-location-list {
  display: grid;
  gap: 0.7rem;
}

.bb-location-list a {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem;
  background: var(--bb-white);
  border: 1px solid #f1d681;
  border-radius: var(--bb-radius);
  text-decoration: none;
}

.bb-location-list span {
  font-weight: 900;
}

.bb-location-list strong {
  color: var(--bb-red);
}

.bb-faq-wrap {
  max-width: 900px;
}

.bb-faq {
  border: 1px solid var(--bb-line);
  border-radius: var(--bb-radius);
  background: var(--bb-white);
}

.bb-faq + .bb-faq {
  margin-top: 0.7rem;
}

.bb-faq summary {
  cursor: pointer;
  padding: 1rem 1.15rem;
  font-weight: 900;
}

.bb-faq div {
  padding: 0 1.15rem 1rem;
  color: var(--bb-muted);
}

.bb-content {
  max-width: 820px;
}

.bb-content--wide {
  max-width: var(--bb-container);
}

.bb-content--app {
  width: min(var(--bb-container), calc(100% - 36px));
}

.bb-content > * + * {
  margin-top: 1rem;
}

.bb-content ul,
.bb-check-list {
  padding-left: 0;
  list-style: none;
}

.bb-check-list li {
  position: relative;
  padding-left: 1.65rem;
  margin-bottom: 0.5rem;
}

.bb-check-list li::before {
  position: absolute;
  left: 0;
  content: "\2713";
  color: var(--bb-green);
  font-weight: 950;
}

.bb-aside-panel {
  padding: 1.4rem;
  background: var(--bb-cloud);
  border: 1px solid var(--bb-line);
  border-radius: var(--bb-radius);
}

.bb-map-embed {
  overflow: hidden;
  background: var(--bb-white);
  border: 1px solid var(--bb-line);
  border-radius: var(--bb-radius);
  box-shadow: var(--bb-shadow);
}

.bb-map-embed iframe {
  display: block;
  width: 100%;
  min-height: 420px;
  border: 0;
}

.bb-featured-image img {
  border-radius: var(--bb-radius);
}

.bb-blog-hero {
  background:
    radial-gradient(circle at 88% 10%, rgba(45, 167, 222, 0.16), transparent 32%),
    linear-gradient(135deg, #fff7dc, #e6fbf1 58%, #ddf5ff);
}

.bb-blog-hero__inner {
  max-width: 850px;
}

.bb-blog-hero h1 {
  margin-bottom: 0.7rem;
}

.bb-blog-hero p,
.bb-blog-hero__description {
  max-width: 680px;
  color: var(--bb-muted);
  font-size: clamp(1rem, 2vw, 1.18rem);
}

.bb-final-cta {
  padding: clamp(2.5rem, 5vw, 4rem) 0;
  color: var(--bb-white);
  background: var(--bb-ink);
}

.bb-final-cta .bb-eyebrow {
  color: var(--bb-yellow);
}

.bb-final-cta__inner {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  align-items: center;
}

.bb-final-cta__inner > div:first-child {
  max-width: 720px;
}

.bb-final-cta h2,
.bb-final-cta p:not(.bb-eyebrow) {
  color: var(--bb-white);
}

.bb-site-footer {
  color: #d9e4ee;
  background: #101a25;
}

.bb-footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 2rem;
  padding: 3rem 0;
}

.bb-site-footer h2 {
  color: var(--bb-white);
  font-size: 1.2rem;
}

.bb-site-footer a {
  color: inherit;
}

.bb-footer-menu {
  padding: 0;
  margin: 0;
  list-style: none;
}

.bb-footer-menu li + li {
  margin-top: 0.4rem;
}

.bb-footer-bottom {
  padding: 1rem 0;
  color: #a9b7c7;
  background: #0b1219;
  font-size: 0.9rem;
}

.bb-footer-bottom p {
  margin: 0;
}

.bb-footer-bottom p span {
  display: inline-block;
}

.bb-footer-bottom a {
  color: #f5af19;
  font-weight: 800;
  text-decoration: none;
}

.bb-footer-bottom a:hover {
  text-decoration: underline;
}

.bb-mobile-cta {
  display: none;
}

.bb-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--bb-radius);
}

.bb-card__body {
  padding-top: 1rem;
}

.bb-post-card {
  display: flex;
  flex-direction: column;
}

.bb-post-card__image {
  display: block;
}

.bb-post-card__meta {
  margin: 0 0 0.5rem;
  color: var(--bb-red);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.bb-post-card h2 {
  font-size: clamp(1.35rem, 2vw, 1.8rem);
}

.bb-post-card h2 a {
  color: inherit;
  text-decoration: none;
}

.bb-post-card h2 a:hover {
  color: var(--bb-red);
}

.bb-app-landing {
  display: grid;
  gap: clamp(1.4rem, 3vw, 2.4rem);
}

.bb-app-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.72fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: center;
  padding: clamp(1.2rem, 4vw, 3rem);
  color: var(--bb-white);
  background:
    radial-gradient(circle at 78% 12%, rgba(255, 201, 40, 0.28), transparent 28%),
    radial-gradient(circle at 10% 85%, rgba(54, 169, 225, 0.18), transparent 32%),
    linear-gradient(145deg, #101a25, #172433);
  border-radius: var(--bb-radius);
  box-shadow: var(--bb-shadow);
}

.bb-app-hero__content {
  max-width: 690px;
}

.bb-app-hero h1,
.bb-app-hero h2,
.bb-app-feature-grid h2,
.bb-app-install-panel h2,
.bb-app-update-card h2 {
  margin-bottom: 0.5rem;
}

.bb-app-hero h1,
.bb-app-phone h2 {
  color: var(--bb-white);
}

.bb-app-hero h1 {
  max-width: 11ch;
  font-size: clamp(2.35rem, 5.4vw, 5rem);
}

.bb-app-hero__lead,
.bb-app-hero p,
.bb-app-phone p {
  color: #d7e1ea;
}

.bb-app-hero .bb-eyebrow,
.bb-app-phone .bb-eyebrow {
  color: var(--bb-yellow);
}

.bb-app-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.4rem 0 1.2rem;
}

.bb-app-release-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.bb-app-release-strip span {
  padding: 0.48rem 0.7rem;
  color: #d7e1ea;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--bb-radius);
  font-weight: 800;
}

.bb-app-release-strip strong {
  color: var(--bb-yellow);
}

.bb-app-preview-stack {
  position: relative;
  min-height: 540px;
}

.bb-app-screenshot {
  position: absolute;
  width: min(255px, 48%);
  margin: 0;
  overflow: hidden;
  background: #07111d;
  border: 8px solid rgba(255, 255, 255, 0.92);
  border-radius: 34px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.34);
}

.bb-app-screenshot img {
  display: block;
  width: 100%;
  height: auto;
}

.bb-app-screenshot--home {
  top: 0;
  right: 22%;
  z-index: 2;
}

.bb-app-screenshot--deals {
  top: 64px;
  right: 0;
  z-index: 1;
}

.bb-app-phone {
  max-width: 390px;
  padding: 0.8rem;
  justify-self: end;
  background: #07111d;
  border: 10px solid rgba(255, 255, 255, 0.92);
  border-radius: 34px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.34);
}

.bb-app-phone__top {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0.35rem 0.3rem 0.7rem;
  color: #d7e1ea;
  font-size: 0.78rem;
}

.bb-app-phone__top span {
  width: 42px;
  height: 6px;
  justify-self: start;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 99px;
}

.bb-app-phone__top img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: 12px;
}

.bb-app-phone__top strong {
  justify-self: end;
}

.bb-app-phone__screen {
  padding: 1rem;
  background:
    radial-gradient(circle at 90% 5%, rgba(255, 201, 40, 0.2), transparent 28%),
    linear-gradient(160deg, #172433, #101a25);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 24px;
}

.bb-app-phone__buttons,
.bb-app-phone__tiles {
  display: grid;
  gap: 0.6rem;
}

.bb-app-phone__buttons {
  grid-template-columns: 1fr 1fr;
  margin: 1rem 0;
}

.bb-app-phone__buttons span,
.bb-app-phone__tiles span {
  display: grid;
  min-height: 46px;
  place-items: center;
  padding: 0.7rem;
  border-radius: var(--bb-radius);
  font-weight: 950;
}

.bb-app-phone__buttons span:first-child,
.bb-app-phone__tiles span:nth-child(4) {
  color: var(--bb-ink);
  background: var(--bb-yellow);
}

.bb-app-phone__buttons span:last-child,
.bb-app-phone__tiles span:first-child {
  color: var(--bb-white);
  background: var(--bb-red);
}

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

.bb-app-phone__tiles span:nth-child(2) {
  color: var(--bb-white);
  background: var(--bb-blue);
}

.bb-app-phone__tiles span:nth-child(3) {
  color: var(--bb-white);
  background: var(--bb-green);
}

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

.bb-app-feature-grid article,
.bb-app-update-card {
  padding: clamp(1.1rem, 2.4vw, 1.6rem);
  background: var(--bb-white);
  border: 1px solid var(--bb-line);
  border-radius: var(--bb-radius);
  box-shadow: 0 10px 28px rgba(23, 36, 51, 0.07);
}

.bb-app-feature-grid article span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 0.85rem;
  color: var(--bb-ink);
  background: var(--bb-yellow);
  border-radius: 50%;
  font-weight: 950;
}

.bb-app-feature-grid p,
.bb-app-install-panel p,
.bb-app-steps span {
  color: var(--bb-muted);
}

.bb-app-install-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.52fr);
  gap: clamp(1rem, 3vw, 2rem);
  align-items: start;
  padding: clamp(1.2rem, 4vw, 2rem);
  background: linear-gradient(180deg, var(--bb-cream), #ffffff);
  border-radius: var(--bb-radius);
}

.bb-app-steps {
  display: grid;
  gap: 0.75rem;
  padding: 0;
  margin: 1.2rem 0 0;
  list-style: none;
  counter-reset: app-step;
}

.bb-app-steps li {
  position: relative;
  min-height: 56px;
  padding: 0.85rem 1rem 0.85rem 4rem;
  background: var(--bb-white);
  border: 1px solid #f1d681;
  border-radius: var(--bb-radius);
  counter-increment: app-step;
}

.bb-app-steps li::before {
  position: absolute;
  top: 0.85rem;
  left: 1rem;
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  color: var(--bb-ink);
  background: var(--bb-yellow);
  border-radius: 50%;
  content: counter(app-step);
  font-weight: 950;
}

.bb-app-steps strong,
.bb-app-steps span {
  display: block;
}

.bb-app-update-card code {
  display: inline-block;
  padding: 0.12rem 0.35rem;
  color: var(--bb-ink);
  background: var(--bb-cream);
  border: 1px solid #f1d681;
  border-radius: 6px;
}

.bb-section--app-landing + .bb-section {
  padding-top: clamp(2rem, 4vw, 3rem);
}

@media (max-width: 1600px) {
  .bb-header-main {
    grid-template-columns: auto 1fr auto;
  }

  .bb-header-actions {
    justify-self: end;
  }

  .bb-menu-toggle {
    justify-self: end;
  }

  .bb-header-actions {
    grid-column: 3;
    grid-row: 1;
  }

  .bb-menu-toggle {
    position: relative;
    z-index: 90;
  }

  .bb-hero__grid,
  .bb-booking-shell,
  .bb-two-col,
  .bb-app-promo,
  .bb-app-hero,
  .bb-app-install-panel,
  .bb-final-cta__inner {
    grid-template-columns: 1fr;
  }

  .bb-app-promo__phone {
    justify-self: start;
    width: min(280px, 100%);
  }

  .bb-app-preview-stack {
    min-height: 620px;
  }

  .bb-app-screenshot--home {
    right: 38%;
  }

  .bb-app-screenshot--deals {
    right: 10%;
  }

  .bb-app-phone {
    justify-self: center;
  }

  .bb-booking-shell__header {
    position: static;
  }

  .bb-booking-shell__embed {
    padding: 0.7rem;
  }

  .bb-booking-shell__embed .booknetic_appointment_container_body {
    min-height: 360px;
  }

  .bb-trust__grid,
  .bb-card-grid,
  .bb-review-grid,
  .bb-option-grid,
  .bb-app-feature-grid,
  .bb-post-grid,
  .bb-footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  h1 {
    max-width: 13ch;
  }

  .bb-header-main {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .bb-header-actions {
    grid-column: auto;
  }

  .bb-header-actions .bb-button {
    display: none;
  }

  .bb-header-actions > .bb-button,
  .bb-rewards-toggle,
  .bb-menu-toggle {
    min-width: 46px;
    min-height: 46px;
    height: 46px;
  }

  .bb-rewards-toggle {
    width: 46px;
    min-height: 46px;
    padding: 0;
  }

  .bb-rewards-toggle__text {
    display: none;
  }

  .bb-rewards-toggle__icon {
    width: 24px;
    height: 24px;
  }

  .bb-rewards-toggle__icon svg {
    width: 19px;
    height: 19px;
  }

  .bb-rewards-toggle strong {
    min-width: 18px;
    height: 18px;
    padding: 0 4px;
    font-size: 0.62rem;
  }

  .bb-menu-toggle {
    width: 46px;
    padding: 0;
    gap: 5px;
  }

  .bb-menu-toggle strong {
    display: none;
  }
}

@media (max-width: 680px) {
  body {
    padding-bottom: 68px;
    background: #0b1219;
  }

  .bb-container {
    width: min(100% - 28px, var(--bb-container));
  }

  .bb-topbar {
    display: none;
  }

  .bb-header-main {
    grid-template-columns: auto 1fr auto;
    justify-content: stretch;
    min-height: 74px;
  }

  .bb-brand {
    grid-column: 1;
    justify-self: start;
  }

  .bb-header-actions {
    grid-column: 3;
    justify-self: end;
  }

  .bb-topbar__inner {
    justify-content: flex-start;
    overflow-x: auto;
    white-space: nowrap;
  }

  .bb-brand__text {
    display: none;
  }

  .bb-brand__logo {
    width: 62px;
    height: 62px;
  }

  .bb-hero {
    padding-top: 2.4rem;
  }

  .bb-hero__grid {
    gap: 1.8rem;
  }

  h1 {
    font-size: clamp(2.05rem, 12vw, 3.2rem);
    max-width: 12ch;
  }

  .bb-hero__placeholder {
    grid-template-columns: 1fr;
    aspect-ratio: auto;
    padding: 0.75rem;
  }

  .bb-hero__placeholder div {
    min-height: 104px;
  }

  .bb-hero__placeholder div:nth-child(3) {
    grid-column: auto;
  }

  .bb-hero__actions,
  .bb-final-cta__actions,
  .bb-app-promo__actions {
    display: grid;
  }

  .bb-app-promo {
    padding: 1rem;
  }

  .bb-app-promo__phone {
    width: 100%;
  }

  .bb-app-promo__phone div {
    min-height: 0;
  }

  .bb-final-cta {
    padding: 2.4rem 0 2.8rem;
  }

  .bb-final-cta__inner {
    display: grid;
    gap: 1.25rem;
    align-items: start;
  }

  .bb-final-cta__inner > div:first-child {
    max-width: none;
  }

  .bb-final-cta h2 {
    max-width: 12ch;
    font-size: clamp(2rem, 9vw, 2.55rem);
  }

  .bb-final-cta p:not(.bb-eyebrow) {
    max-width: 28rem;
  }

  .bb-final-cta__actions {
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .bb-final-cta__actions .bb-button {
    width: 100%;
    min-width: 0;
    padding-inline: 0.9rem;
    text-align: center;
  }

  .bb-hero__proof {
    display: grid;
  }

  .bb-trust__grid,
  .bb-card-grid,
  .bb-review-grid,
  .bb-option-grid,
  .bb-app-feature-grid,
  .bb-post-grid,
  .bb-footer-grid {
    grid-template-columns: 1fr;
  }

  .bb-app-hero {
    gap: 1.15rem;
    padding: 1.05rem;
  }

  .bb-app-hero h1 {
    max-width: 11ch;
    font-size: clamp(2rem, 10.5vw, 2.75rem);
  }

  .bb-app-hero__lead {
    font-size: 0.98rem;
  }

  .bb-app-hero__actions,
  .bb-app-release-strip {
    display: grid;
  }

  .bb-app-preview-stack {
    display: block;
    min-height: clamp(355px, 104vw, 470px);
  }

  .bb-app-screenshot {
    position: absolute;
    width: min(210px, 58%);
    border-width: 6px;
    border-radius: 26px;
    box-shadow: 0 20px 42px rgba(0, 0, 0, 0.28);
  }

  .bb-app-screenshot--home {
    top: 0;
    right: auto;
    left: 3%;
    transform: none;
  }

  .bb-app-screenshot--deals {
    top: 38px;
    right: 3%;
    transform: none;
  }

  .bb-app-phone {
    max-width: 100%;
    border-width: 7px;
    border-radius: 26px;
  }

  .bb-app-phone__top strong {
    display: none;
  }

  .bb-app-phone__tiles,
  .bb-app-phone__buttons {
    grid-template-columns: 1fr;
  }

  .bb-app-install-panel {
    padding: 1rem;
  }

  .bb-section--app-landing {
    padding: 1.2rem 0 1.2rem;
  }

  .bb-section--app-landing + .bb-section {
    padding-top: 1.25rem;
  }

  .bb-section--app-landing + .bb-section .bb-section-heading {
    margin-bottom: 1.15rem;
  }

  .bb-section-heading {
    text-align: left;
  }

  .bb-location-list a {
    display: grid;
  }

  .bb-mobile-cta {
    position: fixed;
    right: 0;
    bottom: -1px;
    left: 0;
    z-index: 60;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100vw;
    max-width: 100vw;
    background: var(--bb-white);
    box-shadow: 0 -8px 22px rgba(23, 36, 51, 0.18);
    transform: translateZ(0);
  }

  .bb-mobile-cta a {
    display: grid;
    min-height: 62px;
    place-items: center;
    font-weight: 950;
    text-decoration: none;
    min-width: 0;
  }

  .bb-mobile-cta a:first-child {
    color: var(--bb-white);
    background: var(--bb-red);
  }

  .bb-mobile-cta a:last-child {
    color: var(--bb-ink);
    background: var(--bb-yellow);
  }

  .bb-primary-nav {
    width: 100vw;
    padding: 5rem 0.9rem max(5.5rem, env(safe-area-inset-bottom));
    box-shadow: none;
  }

  .bb-breadcrumbs {
    flex-wrap: nowrap;
    overflow-x: auto;
    margin-top: 0.7rem;
    padding: 0.7rem 0.85rem;
    color: var(--bb-muted);
    background: var(--bb-white);
    border: 1px solid var(--bb-line);
    border-radius: var(--bb-radius);
    white-space: nowrap;
  }

  .bb-rewards-grid,
  .bb-rewards-columns {
    grid-template-columns: 1fr;
  }

  .bb-booking-shell {
    padding: 1rem;
  }

  .bb-booking-shell h2 {
    max-width: 14ch;
    font-size: clamp(1.65rem, 8vw, 2.15rem);
  }

  .bb-booking-shell__embed .booknetic_appointment_container_header {
    padding-inline: 1rem !important;
  }

  .bb-booking-shell__embed .booknetic_appointment_container_body {
    min-height: 340px;
  }

  .bb-booking-shell__embed .booknetic_appointment_container_footer {
    padding: 0.8rem 1rem !important;
  }

  .bb-booking-modal {
    padding: 0;
  }

  .bb-booking-modal__dialog {
    width: 100%;
    height: 100%;
    max-height: none;
    border-radius: 0;
  }

  .bb-booking-modal__body {
    min-height: 0;
    padding: 0.75rem;
  }

  .bb-menu a {
    padding: 0.95rem 1rem;
  }

  .bb-footer-grid {
    padding-bottom: 1.4rem;
  }

  .bb-footer-bottom {
    padding: 0.7rem 0 0.45rem;
  }

  .bb-footer-bottom p {
    line-height: 1.45;
  }
}

@media (max-width: 420px) {
  .bb-brand__mark {
    width: 44px;
    height: 44px;
    border-width: 3px;
  }

  .bb-menu-toggle {
    width: 44px;
    height: 44px;
  }

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

  .bb-rewards-grid,
  .bb-rewards-columns {
    grid-template-columns: 1fr;
  }

  .bb-account-drawer__panel {
    width: 100vw;
  }

  .bb-final-cta__actions {
    grid-template-columns: 1fr;
  }
}
