/* Clean homepage rebuild. Loaded last and scoped to the new front-page markup. */

.bb-clean-home {
  --clean-red: #c90c0f;
  --clean-black: #050505;
  --clean-ink: #111;
  --clean-paper: #fff8ec;
  --clean-page-max: 2000px;
  --clean-page-pad: clamp(1rem, 10vw, 200px);
  background: var(--clean-black);
  color: var(--clean-paper);
  font-family: var(--bb-body-font, system-ui, sans-serif);
}

.bb-clean-home *,
.bb-clean-home *::before,
.bb-clean-home *::after {
  box-sizing: border-box;
}

.bb-clean-kicker {
  color: var(--clean-red);
  font-size: clamp(.82rem, 1vw, 1rem);
  font-weight: 950;
  letter-spacing: .03em;
  line-height: 1;
  margin: 0;
  text-transform: uppercase;
}

.bb-clean-hero {
  background: var(--clean-black);
  border-bottom: 8px solid var(--clean-red);
  min-height: 100vh;
  overflow: hidden;
  position: relative;
}

.bb-clean-hero::before {
  background: linear-gradient(90deg, rgba(0, 0, 0, .99) 0%, rgba(0, 0, 0, .94) 34%, rgba(0, 0, 0, .48) 58%, rgba(0, 0, 0, .08) 100%);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
  z-index: 1;
}

.bb-clean-hero__image {
  display: block;
  height: 100%;
  inset: 0;
  object-fit: cover;
  object-position: 58% 8%;
  position: absolute;
  width: 100%;
  z-index: 0;
}

.bb-clean-hero__inner {
  display: flex;
  flex-direction: column;
  gap: clamp(.95rem, 1.4vw, 1.25rem);
  justify-content: flex-start;
  min-height: 100vh;
  max-width: var(--clean-page-max);
  margin-inline: auto;
  padding: clamp(2.2rem, 4.2vw, 4rem) var(--clean-page-pad) clamp(4rem, 7vw, 6.5rem);
  position: relative;
  z-index: 2;
}

.bb-clean-hero h1 {
  color: var(--clean-paper);
  font-family: var(--bb-display-font, Impact, sans-serif);
  font-size: clamp(4rem, 8vw, 8.8rem);
  font-weight: 950;
  letter-spacing: 0;
  line-height: .98;
  margin: 0;
  max-width: 9ch;
  text-transform: uppercase;
}

.bb-clean-lead {
  color: var(--clean-paper);
  font-size: clamp(1.08rem, 1.55vw, 1.58rem);
  font-weight: 850;
  line-height: 1.15;
  margin: 0;
  max-width: 34rem;
}

.bb-clean-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-top: .35rem;
}

.bb-clean-actions a {
  align-items: center;
  background: var(--clean-red);
  border: 2px solid var(--clean-red);
  border-radius: 999px;
  color: var(--clean-paper);
  display: inline-flex;
  gap: .55rem;
  font-size: 1rem;
  font-weight: 950;
  justify-content: center;
  min-height: 52px;
  padding: .85rem 1.35rem;
  text-decoration: none;
  white-space: nowrap;
}

.bb-clean-actions a span {
  align-items: center;
  background: rgba(255, 248, 236, .16);
  border-radius: 50%;
  display: inline-flex;
  flex: 0 0 auto;
  font-size: 1rem;
  height: 1.7rem;
  justify-content: center;
  line-height: 1;
  width: 1.7rem;
}

.bb-clean-actions a:nth-child(2) {
  background: var(--clean-black);
  border-color: rgba(255, 248, 236, .28);
}

.bb-clean-facts {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  list-style: none;
  margin: .1rem 0 0;
  max-width: 36rem;
  padding: 0;
}

.bb-clean-facts li {
  background: rgba(255, 248, 236, .12);
  border-radius: 999px;
  color: var(--clean-paper);
  font-size: clamp(1.45rem, 1.9vw, 1.85rem);
  font-weight: 900;
  line-height: 1;
  padding: .82rem 1.35rem;
}

.bb-clean-brandline {
  background: var(--clean-black);
  border-block: 8px solid var(--clean-red);
  overflow: hidden;
  padding: 0;
  position: relative;
}

.bb-clean-wordrail {
  overflow: hidden;
  white-space: nowrap;
}

.bb-clean-wordrail--top {
  background: var(--clean-red);
  color: var(--clean-paper);
}

.bb-clean-wordrail--bottom {
  background: var(--clean-paper);
  color: var(--clean-red);
}

.bb-clean-wordrail__track {
  align-items: center;
  display: inline-flex;
  gap: clamp(1.5rem, 3vw, 3rem);
  min-width: max-content;
  padding: clamp(.55rem, 1.5vw, 1.2rem) 0;
  will-change: transform;
}

.bb-clean-wordrail--top .bb-clean-wordrail__track {
  animation: bb-wordrail-left 28s linear infinite;
}

.bb-clean-wordrail--bottom .bb-clean-wordrail__track {
  animation: bb-wordrail-right 34s linear infinite;
}

.bb-clean-wordrail span {
  display: inline-block;
  font-family: var(--bb-display-font, Impact, sans-serif);
  font-size: clamp(4.2rem, 9.5vw, 11.5rem);
  font-weight: 950;
  letter-spacing: 0;
  line-height: .82;
  text-transform: uppercase;
}

.bb-clean-wordrail--bottom span {
  font-size: clamp(3rem, 6vw, 7.2rem);
}

.bb-clean-brandline__sr {
  clip: rect(0 0 0 0);
  border: 0;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

@keyframes bb-wordrail-left {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@keyframes bb-wordrail-right {
  from {
    transform: translateX(-50%);
  }

  to {
    transform: translateX(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .bb-clean-wordrail__track {
    animation: none !important;
    transform: none !important;
  }
}

.bb-clean-menu-jump {
  background: var(--clean-paper);
  color: var(--clean-ink);
  padding: clamp(4rem, 8vw, 7rem) max(var(--clean-page-pad), calc((100vw - var(--clean-page-max)) / 2 + var(--clean-page-pad)));
}

.bb-clean-slider {
  background: var(--clean-black);
  border-bottom: 8px solid var(--clean-red);
  color: var(--clean-paper);
  padding: clamp(4rem, 8vw, 7rem) max(var(--clean-page-pad), calc((100vw - var(--clean-page-max)) / 2 + var(--clean-page-pad)));
}

.bb-clean-slider__head {
  align-items: end;
  display: flex;
  gap: 2rem;
  justify-content: space-between;
  margin-bottom: clamp(1.5rem, 3vw, 2.6rem);
}

.bb-clean-slider__head h2 {
  color: var(--clean-paper);
  font-family: var(--bb-display-font, Impact, sans-serif);
  font-size: clamp(3.2rem, 7vw, 7rem);
  font-weight: 950;
  letter-spacing: 0;
  line-height: .88;
  margin: 0;
  max-width: 8ch;
  text-transform: uppercase;
}

.bb-clean-slider__shell {
  position: relative;
}

.bb-clean-slider__track {
  background: #111;
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  min-height: clamp(360px, 34vw, 620px);
  overflow: hidden;
  position: relative;
  width: 100%;
}

.bb-clean-slider__slide {
  background: #070707;
  display: none;
  height: clamp(360px, 34vw, 620px);
  margin: 0;
  opacity: .72;
  position: relative;
  transform: none;
  transition: opacity .25s ease;
}

.bb-clean-slider__slide.is-visible {
  display: block;
}

.bb-clean-slider__slide.is-active {
  opacity: 1;
}

.bb-clean-slider__slide img {
  display: block;
  height: 100%;
  object-fit: contain;
  object-position: center;
  width: 100%;
}

.bb-clean-slider__controls {
  align-items: center;
  background: rgba(5, 5, 5, .92);
  bottom: clamp(1rem, 2vw, 1.5rem);
  display: inline-flex;
  gap: .75rem;
  left: clamp(1rem, 2vw, 1.5rem);
  padding: .7rem;
  position: absolute;
  z-index: 3;
}

.bb-clean-slider__controls button {
  align-items: center;
  background: var(--clean-red);
  border: 0;
  border-radius: 50%;
  color: var(--clean-paper);
  cursor: pointer;
  display: inline-flex;
  font-size: 2rem;
  font-weight: 950;
  height: 3.2rem;
  justify-content: center;
  line-height: 1;
  width: 3.2rem;
}

.bb-clean-slider__controls p {
  align-items: center;
  color: var(--clean-paper);
  display: inline-flex;
  font-size: 1rem;
  font-weight: 950;
  gap: .35rem;
  letter-spacing: .02em;
  margin: 0;
  min-width: 4.6rem;
  justify-content: center;
}

.bb-clean-slider__controls p span:first-child {
  color: var(--clean-red);
}

.bb-clean-image-feature {
  background: var(--clean-black);
  border-block: 8px solid var(--clean-red);
  padding: clamp(3.5rem, 7vw, 6rem) max(var(--clean-page-pad), calc((100vw - var(--clean-page-max)) / 2 + var(--clean-page-pad)));
  position: relative;
}

.bb-clean-image-feature img {
  aspect-ratio: 16 / 9;
  display: block;
  height: auto;
  max-height: min(78vh, 920px);
  object-fit: cover;
  object-position: center;
  width: 100%;
}

.bb-clean-image-feature__box {
  background: rgba(5, 5, 5, .94);
  bottom: clamp(2rem, 6vw, 6rem);
  left: max(var(--clean-page-pad), calc((100vw - var(--clean-page-max)) / 2 + var(--clean-page-pad)));
  max-width: min(720px, calc(100% - (var(--clean-page-pad) * 2)));
  padding: clamp(1.25rem, 3vw, 2.5rem);
  position: absolute;
}

.bb-clean-image-feature__box p {
  color: var(--clean-paper);
  font-family: var(--bb-display-font, Impact, sans-serif);
  font-size: clamp(2.4rem, 5vw, 5.8rem);
  font-weight: 950;
  letter-spacing: 0;
  line-height: .92;
  margin: 0;
  text-transform: uppercase;
}

.bb-clean-classic {
  background: var(--clean-paper);
  color: var(--clean-paper);
  display: grid;
  gap: clamp(1rem, 1.8vw, 1.5rem);
  grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr);
  padding: clamp(4rem, 8vw, 7rem) max(var(--clean-page-pad), calc((100vw - var(--clean-page-max)) / 2 + var(--clean-page-pad)));
}

.bb-clean-classic__image,
.bb-clean-classic__copy {
  min-height: clamp(430px, 42vw, 720px);
}

.bb-clean-classic__image {
  background: #ddd;
  overflow: hidden;
}

.bb-clean-classic__image img {
  display: block;
  height: 100%;
  object-fit: cover;
  object-position: center;
  width: 100%;
}

.bb-clean-classic__copy {
  align-items: flex-start;
  background: var(--clean-red);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2rem, 6vw, 7rem);
}

.bb-clean-classic__eyebrow {
  color: var(--clean-paper);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1rem, 1.45vw, 1.35rem);
  font-weight: 800;
  line-height: 1;
  margin: 0 0 clamp(1.4rem, 2.6vw, 2.4rem);
}

.bb-clean-classic h2 {
  color: var(--clean-paper);
  font-family: var(--bb-display-font, Impact, sans-serif);
  font-size: clamp(2.8rem, 5.8vw, 6.4rem);
  font-weight: 950;
  letter-spacing: 0;
  line-height: .95;
  margin: 0;
  max-width: 10ch;
  text-transform: none;
}

.bb-clean-classic__copy p:not(.bb-clean-classic__eyebrow) {
  color: rgba(255, 248, 236, .9);
  font-size: clamp(1.08rem, 1.55vw, 1.55rem);
  font-weight: 550;
  line-height: 1.42;
  margin: clamp(1.6rem, 3vw, 2.6rem) 0 0;
  max-width: 34rem;
}

.bb-clean-classic__copy a {
  background: var(--clean-paper);
  color: var(--clean-red);
  display: inline-flex;
  font-size: clamp(1rem, 1.2vw, 1.18rem);
  font-weight: 750;
  margin-top: clamp(1.8rem, 3vw, 3rem);
  min-height: 56px;
  padding: 1rem 2rem;
  text-decoration: none;
}

.bb-clean-section-head {
  align-items: end;
  display: grid;
  gap: 1rem;
  grid-template-columns: minmax(0, 1fr);
  margin-bottom: clamp(1.8rem, 4vw, 3rem);
}

.bb-clean-section-head h2,
.bb-clean-story h2,
.bb-clean-contact h2 {
  color: inherit;
  font-family: var(--bb-display-font, Impact, sans-serif);
  font-size: clamp(3.2rem, 7vw, 7.2rem);
  font-weight: 950;
  letter-spacing: 0;
  line-height: .86;
  margin: 0;
  max-width: 9ch;
  text-transform: uppercase;
}

.bb-clean-menu-grid {
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  background: var(--clean-ink);
  border: 1px solid var(--clean-ink);
}

.bb-clean-menu-grid a {
  background: var(--clean-paper);
  color: var(--clean-ink);
  display: flex;
  flex-direction: column;
  min-height: clamp(300px, 24vw, 420px);
  padding: clamp(1rem, 2.2vw, 1.6rem);
  text-decoration: none;
}

.bb-clean-menu-grid span {
  color: var(--clean-red);
  font-family: "Recursive", var(--bb-display-font, Impact, sans-serif);
  font-size: clamp(2.2rem, 3.4vw, 4.2rem);
  font-variant-numeric: tabular-nums;
  font-variation-settings: "wght" 950, "MONO" .25, "CASL" 0;
  font-weight: 950;
  letter-spacing: 0;
  line-height: .8;
}

.bb-clean-menu-grid strong {
  font-family: var(--bb-display-font, Impact, sans-serif);
  font-size: clamp(2.35rem, 4vw, 4.4rem);
  font-weight: 950;
  line-height: .86;
  margin-top: clamp(2rem, 5vw, 5.5rem);
  text-transform: uppercase;
}

.bb-clean-menu-grid em {
  font-size: 1rem;
  font-style: normal;
  font-weight: 850;
  margin-top: .6rem;
}

.bb-clean-story {
  align-items: start;
  background: var(--clean-black);
  color: var(--clean-paper);
  display: grid;
  gap: clamp(3rem, 8vw, 9rem);
  grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr);
  padding: clamp(4rem, 8vw, 7rem) max(var(--clean-page-pad), calc((100vw - var(--clean-page-max)) / 2 + var(--clean-page-pad)));
}

.bb-clean-story > * {
  min-width: 0;
}

.bb-clean-story__copy {
  display: grid;
  gap: clamp(1rem, 1.8vw, 1.45rem);
  max-width: 52rem;
}

.bb-clean-story h2 {
  font-size: clamp(3.6rem, 6.4vw, 7rem);
  line-height: .92;
  max-width: 8.2ch;
  overflow-wrap: normal;
  word-break: normal;
}

.bb-clean-story p:not(.bb-clean-kicker) {
  color: rgba(255, 248, 236, .9);
  font-size: clamp(1.02rem, 1.2vw, 1.24rem);
  font-weight: 650;
  line-height: 1.52;
  margin: 0;
  max-width: 100%;
}

.bb-clean-contact {
  background: var(--clean-red);
  color: var(--clean-paper);
  min-height: clamp(680px, 82vh, 980px);
  padding: clamp(3.5rem, 7vw, 6rem) max(var(--clean-page-pad), calc((100vw - var(--clean-page-max)) / 2 + var(--clean-page-pad)));
  position: relative;
  overflow: hidden;
}

.bb-clean-contact__panel {
  background: rgba(5, 5, 5, .94);
  max-width: min(780px, 100%);
  padding: clamp(1.5rem, 4vw, 3rem);
  position: relative;
  z-index: 2;
}

.bb-clean-contact__copy {
  align-self: center;
}

.bb-clean-contact p:not(.bb-clean-kicker) {
  color: rgba(255, 248, 236, .88);
  font-size: clamp(1.1rem, 1.55vw, 1.45rem);
  font-weight: 750;
  line-height: 1.25;
  margin: 1rem 0;
  max-width: 38rem;
}

.bb-clean-map-wrap {
  background: #121212;
  inset: 0;
  min-height: 100%;
  overflow: hidden;
  position: absolute;
  z-index: 0;
}

.bb-clean-map {
  background: #121212;
  height: 100%;
  min-height: 100%;
  width: 100%;
}

.bb-clean-map .leaflet-tile {
  filter: grayscale(1) contrast(1.14) brightness(.56);
}

.bb-clean-contact::before {
  background:
    linear-gradient(90deg, rgba(201, 12, 15, .5), rgba(5, 5, 5, .18)),
    linear-gradient(180deg, rgba(5, 5, 5, .06), rgba(5, 5, 5, .38));
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
  z-index: 1;
}

.bb-clean-map .leaflet-control-attribution {
  background: rgba(5, 5, 5, .82);
  color: rgba(255, 248, 236, .7);
  font-family: var(--bb-body-font, system-ui, sans-serif);
  font-size: .72rem;
}

.bb-clean-map .leaflet-control-attribution a {
  color: #fff8ec;
}

.bb-clean-map .leaflet-bar {
  border: 0;
  box-shadow: none;
}

.bb-clean-map .leaflet-bar a {
  background: #050505;
  border: 1px solid rgba(255, 248, 236, .18);
  color: #fff8ec;
}

.bb-clean-map .leaflet-bar a:hover,
.bb-clean-map .leaflet-bar a:focus {
  background: var(--clean-red);
  color: #fff8ec;
}

.bb-clean-map-marker {
  background: transparent;
}

.bb-clean-map-marker span {
  background: var(--clean-red);
  border: 4px solid #fff8ec;
  border-radius: 50% 50% 50% 0;
  box-shadow: 0 14px 32px rgba(0, 0, 0, .34);
  display: block;
  height: 36px;
  transform: rotate(-45deg);
  width: 36px;
}

.bb-clean-map-marker span::after {
  background: #050505;
  border-radius: 50%;
  content: "";
  display: block;
  height: 10px;
  margin: 9px;
  width: 10px;
}

.bb-clean-map .leaflet-popup-content-wrapper,
.bb-clean-map .leaflet-popup-tip {
  background: #050505;
  color: #fff8ec;
}

.bb-clean-map .leaflet-popup-content {
  font-family: var(--bb-body-font, system-ui, sans-serif);
  font-size: .95rem;
  line-height: 1.25;
  margin: .85rem 1rem;
}

.bb-clean-map-fallback {
  color: #fff8ec;
  display: inline-block;
  font-weight: 900;
  padding: 1rem;
}

@media (max-width: 980px) {
  .bb-clean-hero {
    min-height: 100vh;
  }

  .bb-clean-hero::before {
    background: linear-gradient(180deg, rgba(0, 0, 0, .42) 0%, rgba(0, 0, 0, .78) 42%, rgba(0, 0, 0, .99) 100%);
  }

  .bb-clean-hero__image {
    object-position: 58% top;
  }

  .bb-clean-hero__inner {
    min-height: 100vh;
  }

  .bb-clean-hero h1 {
    font-size: clamp(3.6rem, 13vw, 6.5rem);
  }

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

  .bb-clean-classic {
    grid-template-columns: 1fr;
  }

  .bb-clean-classic__image,
  .bb-clean-classic__copy {
    min-height: auto;
  }

  .bb-clean-classic__image {
    aspect-ratio: 4 / 3;
  }

  .bb-clean-story {
    grid-template-columns: 1fr;
  }

  .bb-clean-contact__panel {
    max-width: 100%;
  }
}

@media (max-width: 640px) {
  .bb-clean-hero,
  .bb-clean-hero__inner {
    min-height: 100vh;
  }

  .bb-clean-hero__inner {
    padding: 7.5rem 1rem 2rem;
  }

  .bb-clean-hero__image {
    height: 58%;
    object-position: 58% top;
  }

  .bb-clean-hero h1 {
    font-size: clamp(3rem, 15vw, 4.7rem);
  }

  .bb-clean-actions {
    align-items: stretch;
    flex-direction: column;
    width: 100%;
  }

  .bb-clean-actions a {
    width: 100%;
  }

  .bb-clean-facts li {
    font-size: 1.05rem;
    padding: .62rem .9rem;
  }

  .bb-clean-brandline,
  .bb-clean-classic,
  .bb-clean-image-feature,
  .bb-clean-slider,
  .bb-clean-menu-jump,
  .bb-clean-story,
  .bb-clean-contact {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .bb-clean-story {
    padding-bottom: calc(4rem + 86px);
  }

  .bb-clean-image-feature__box {
    bottom: 2rem;
    left: 2rem;
    max-width: calc(100% - 4rem);
  }

  .bb-clean-brandline::after {
    display: none;
  }

  .bb-clean-wordrail span {
    font-size: clamp(3.1rem, 17vw, 5.5rem);
  }

  .bb-clean-wordrail--bottom span {
    font-size: clamp(2.4rem, 12vw, 4.2rem);
  }

  .bb-clean-menu-grid {
    grid-template-columns: 1fr;
  }

  .bb-clean-slider__head {
    align-items: start;
    flex-direction: column;
  }

  .bb-clean-slider__track {
    grid-template-columns: 1fr;
    min-height: 520px;
  }

  .bb-clean-slider__slide {
    height: 520px;
  }

  .bb-clean-slider__slide.is-visible {
    display: none;
  }

  .bb-clean-slider__slide.is-active {
    display: block;
  }

  .bb-clean-slider__controls {
    bottom: 1rem;
    left: 1rem;
  }

  .bb-clean-menu-grid a {
    min-height: 190px;
  }
}

/* Desktop hero crop correction: keep both faces visible. */
@media (min-width: 981px) {
  .bb-clean-hero {
    min-height: 100vh !important;
  }

  .bb-clean-hero__inner {
    min-height: 100vh !important;
  }

  .bb-clean-hero__image {
    height: 100% !important;
    left: auto !important;
    object-fit: cover !important;
    object-position: 61% 0 !important;
    right: -11vw !important;
    width: 112vw !important;
  }

  .bb-clean-hero h1 {
    font-size: clamp(3.85rem, 7.2vw, 7.9rem) !important;
    line-height: .98 !important;
    max-width: 9ch !important;
  }

  .bb-clean-hero::before {
    background: linear-gradient(90deg, rgba(0, 0, 0, .99) 0%, rgba(0, 0, 0, .96) 34%, rgba(0, 0, 0, .34) 56%, rgba(0, 0, 0, .03) 100%) !important;
  }
}

@media (min-width: 1280px) {
  .bb-clean-hero__image {
    object-position: 60% 0 !important;
    right: -13vw !important;
    width: 116vw !important;
  }

  .bb-clean-hero__inner {
    padding-top: clamp(1.7rem, 3.2vw, 3.3rem) !important;
    padding-bottom: clamp(2.6rem, 4vw, 4.4rem) !important;
  }
}
.bb-clean-home .bb-clean-image-feature__box {
  overflow: hidden !important;
  padding-bottom: clamp(2.5rem, 7vw, 7rem) !important;
  padding-right: clamp(2rem, 8vw, 8rem) !important;
  position: relative !important;
}

.bb-clean-home .bb-clean-image-feature__box::after {
  aspect-ratio: 206 / 248;
  background: url("https://upload.wikimedia.org/wikipedia/commons/e/e9/CHE_Aarau_corporate_design_COA.svg") center / contain no-repeat;
  bottom: clamp(1.25rem, 2.8vw, 2.75rem);
  content: "";
  display: block;
  position: absolute;
  right: clamp(1.25rem, 2.8vw, 2.75rem);
  width: clamp(4.25rem, 7vw, 7.5rem);
}

@media (max-width: 640px) {
  .bb-clean-home .bb-clean-image-feature__box {
    padding-bottom: clamp(5.75rem, 24vw, 7rem) !important;
    padding-right: clamp(1.25rem, 3vw, 2.5rem) !important;
  }

  .bb-clean-home .bb-clean-image-feature__box::after {
    width: clamp(3.5rem, 18vw, 4.75rem);
  }
}

.bb-clean-aarau-crest {
  display: none !important;
}

.bb-clean-image-feature__box {
  padding-right: clamp(1.25rem, 3vw, 2.5rem) !important;
}

@media (max-width: 640px) {
  .bb-clean-image-feature__box {
    padding-bottom: clamp(1.25rem, 3vw, 2.5rem) !important;
  }
}
