/*
Direction contract: Local trust without conversion delay. The real Solingen site,
address and KÜS context establish legitimacy while the widget remains the main action.
*/

body {
  background: var(--navy);
}

.b-hero {
  width: min(calc(100% - 40px), var(--content));
  margin: 0 auto;
  padding: 48px 0 58px;
  display: grid;
  grid-template-columns: minmax(360px, 0.76fr) minmax(560px, 1.24fr);
  grid-template-areas:
    "copy widget"
    "place widget";
  gap: 28px 60px;
  align-items: start;
}

.b-copy {
  grid-area: copy;
  padding: 14px 0 4px;
}

.b-copy .hero-heading,
.b-copy .hero-copy,
.b-copy .location-line {
  color: var(--white);
}

.b-copy .hero-copy {
  color: #c7d0d9;
}

.b-copy .location-line {
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.b-copy .location-line svg {
  stroke: #ff3b3b;
}

.b-widget {
  grid-area: widget;
  min-width: 0;
}

.b-widget .booking-intro h2 {
  color: var(--white);
}

.b-widget .booking-intro p,
.b-widget .secure-note {
  color: #b8c3cd;
}

.b-widget .booking-stage {
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
}

.b-place {
  grid-area: place;
  position: relative;
  min-height: 285px;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: #122438;
}

.b-place img {
  width: 100%;
  height: 100%;
  min-height: 285px;
  object-fit: cover;
}

.b-place figcaption {
  position: absolute;
  right: 14px;
  bottom: 14px;
  left: 14px;
  padding: 14px 16px;
  border-radius: 10px;
  background: rgba(7, 22, 38, 0.9);
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
}

.b-place figcaption span {
  display: block;
  margin-top: 2px;
  color: #c8d0d8;
  font-weight: 500;
}

.b-place figcaption strong {
  display: block;
}

.b-hero + .fact-rail {
  border-color: rgba(255, 255, 255, 0.22);
}

.b-hero + .fact-rail .fact + .fact {
  border-color: rgba(255, 255, 255, 0.22);
}

.b-hero + .fact-rail .fact strong {
  color: var(--white);
}

.b-hero + .fact-rail .fact div > span {
  color: #b8c3cd;
}

.b-proof {
  background: var(--white);
}

.b-proof .support-band {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 58px;
  align-items: start;
}

.b-proof__score {
  padding-right: 44px;
  border-right: 1px solid var(--line);
}

.b-proof__score strong {
  display: block;
  color: var(--ink);
  font-size: 48px;
  line-height: 1;
  letter-spacing: 0;
}

.b-proof__score span {
  display: block;
  margin-top: 9px;
  color: var(--muted);
  font-size: 14px;
}

.b-proof .quote {
  font-size: 23px;
}

.b-proof + .site-footer {
  background: var(--white);
}

@media (max-width: 1040px) {
  /* The photo is the whole point of B, so it runs before the widget once the
     layout stacks. Below it the visitor is already inside the booking flow. */
  .b-hero {
    grid-template-columns: 1fr;
    grid-template-areas: "copy" "place" "widget";
    gap: 24px;
  }

  .b-place {
    min-height: 240px;
  }

  .b-place img {
    min-height: 240px;
  }
}

@media (max-width: 720px) {
  .b-hero {
    width: min(calc(100% - 28px), var(--content));
    padding: 27px 0 42px;
    gap: 24px;
  }

  .b-copy {
    padding: 0;
  }

  .b-copy .hero-copy {
    max-width: 520px;
  }

  .b-copy .location-line {
    padding-top: 15px;
  }

  .b-place,
  .b-place img {
    min-height: 178px;
  }

  .b-proof .support-band {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .b-proof__score {
    display: flex;
    align-items: baseline;
    gap: 12px;
    padding: 0 0 22px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .b-proof__score strong {
    font-size: 40px;
  }

  .b-proof__score span {
    margin: 0;
  }
}
