/* Charlottenburg Neukunden landing page */
.landing-page .button::before { content: none; }

.landing-header {
  position: relative;
  z-index: 20;
  border-bottom: 1px solid #eee9eb;
  background: rgba(255,255,255,.98);
}

.landing-header__inner {
  display: flex;
  min-height: 84px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.landing-header .brand img {
  width: 132px;
}

.landing-header__cta {
  min-height: 44px;
  padding: 10px 22px;
  font-size: 15px;
}

.landing-hero {
  position: relative;
  display: grid;
  min-height: 600px;
  align-items: center;
  overflow: hidden;
  background-color: #d7cdc7;
  background-image:
    linear-gradient(90deg, rgba(54,35,42,.78) 0%, rgba(54,35,42,.60) 33%, rgba(54,35,42,.12) 59%, rgba(54,35,42,0) 73%),
    url("/assets/images/gesichtsbehandlung-charlottenburg-hero.webp");
  background-position: center, center;
  background-size: cover;
}

.landing-hero__content {
  position: relative;
  z-index: 1;
  width: min(680px, 58%);
  padding-block: 72px;
  color: var(--white);
}

.landing-hero__kicker {
  margin: 0 0 10px;
  font-size: 17px;
  font-weight: 700;
}

.landing-hero h1 {
  max-width: 690px;
  margin: 0;
  color: var(--white);
  font-family: "Noto Serif Condensed Local", Georgia, serif;
  font-size: clamp(44px, 5vw, 68px);
  font-weight: 600;
  letter-spacing: -.025em;
  line-height: 1.04;
}

.landing-hero__lead {
  max-width: 610px;
  margin: 20px 0 0;
  font-size: clamp(19px, 2vw, 24px);
  font-weight: 700;
  line-height: 1.4;
}

.landing-hero__offer {
  margin: 20px 0 0;
  font-size: 19px;
}

.landing-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.landing-hero .button {
  box-shadow: 0 10px 26px rgba(30,14,20,.22);
}

.landing-hero .button--ghost {
  border: 1px solid rgba(255,255,255,.72);
  background: rgba(255,255,255,.10);
  color: #fff;
}

.landing-hero .button--ghost:hover {
  background: #fff;
  color: var(--wine-dark);
}

.landing-trustline {
  padding-block: 18px;
  border-bottom: 1px solid #eadfe3;
  background: #fff;
  font-size: 15px;
  text-align: center;
}

.landing-trustline p { margin: 0; }

.landing-copy {
  max-width: 780px;
}

.landing-copy--center {
  margin-inline: auto;
  text-align: center;
}

.landing-copy p:last-child { margin-bottom: 0; }

.landing-offer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
  gap: clamp(34px, 6vw, 72px);
  align-items: start;
}

.landing-offer-card {
  padding: clamp(26px, 4vw, 40px);
  border: 1px solid #dccfd4;
  border-radius: 22px;
  background: #fff;
  box-shadow: var(--shadow);
}

.landing-offer-card__price {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin: 18px 0 20px;
}

.landing-offer-card__price strong {
  color: var(--wine);
  font-family: "Noto Serif Condensed Local", Georgia, serif;
  font-size: 55px;
  line-height: 1;
}

.landing-offer-card__price span {
  color: var(--muted);
  font-size: 16px;
  text-decoration: line-through;
}

.landing-offer-card .check-list {
  margin-bottom: 24px;
}

.landing-questions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 32px;
}

.landing-question {
  padding: 24px;
  border: 1px solid #e5dadd;
  border-radius: 18px;
  background: #fff;
}

.landing-question h3 {
  margin: 0 0 8px;
  color: var(--wine-dark);
  font-size: 20px;
  line-height: 1.3;
}

.landing-question p { margin: 0; }

.landing-process {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.landing-process__item {
  padding: 25px;
  border-top: 3px solid var(--rose);
  background: #fff;
}

.landing-process__number {
  display: block;
  margin-bottom: 9px;
  color: var(--wine);
  font-family: "Noto Serif Condensed Local", Georgia, serif;
  font-size: 34px;
  line-height: 1;
}

.landing-booking {
  text-align: center;
}

.landing-booking__box {
  max-width: 780px;
  margin: 32px auto 0;
  padding: clamp(28px, 5vw, 48px);
  border-radius: 24px;
  background: var(--wine);
  color: #fff;
  box-shadow: 0 22px 60px rgba(68,26,41,.22);
}

.landing-booking__box h3 {
  margin-top: 0;
  color: #fff;
  font-family: "Noto Serif Condensed Local", Georgia, serif;
  font-size: clamp(30px, 4vw, 44px);
}

.landing-booking__box p {
  max-width: 610px;
  margin-inline: auto;
}

.landing-booking__box .button {
  background: #fff;
  color: var(--wine-dark);
  box-shadow: none;
}

.landing-booking__box .button:hover {
  background: #fff8fa;
  color: var(--wine-dark);
}

.landing-location {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, .8fr);
  gap: clamp(34px, 6vw, 70px);
  align-items: center;
}

.landing-location__card {
  padding: 28px;
  border: 1px solid #e4dadd;
  border-radius: 20px;
  background: #fff;
}

.landing-location__card p { margin-top: 0; }

.landing-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  margin: 0;
  padding: 0;
  list-style: none;
}

 .whatsapp-float {
  position: fixed;
  z-index: 60;
  right: 18px;
  top: 55%;
  display: inline-flex;
  width: 52px;
  height: 52px;
  padding: 0;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
  border-radius: 999px;
  background: #176b44;
  box-shadow: 0 10px 28px rgba(0,0,0,.22);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transform: translateY(-50%);
  transition: width 220ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.whatsapp-float__icon {
  display: grid;
  width: 52px;
  min-width: 52px;
  height: 52px;
  place-items: center;
}

.whatsapp-float__label {
  padding-right: 17px;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(5px);
  transition: opacity 160ms ease, transform 220ms ease;
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  width: 154px;
  background: #115537;
  color: #fff;
  box-shadow: 0 12px 32px rgba(0,0,0,.26);
}

.whatsapp-float:hover .whatsapp-float__label,
.whatsapp-float:focus-visible .whatsapp-float__label {
  opacity: 1;
  transform: translateX(0);
}

.whatsapp-float:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 3px;
}

@media (max-width: 820px) {
  .landing-header__inner { min-height: 76px; }
  .landing-header .brand img { width: 116px; }
  .landing-header__cta { padding-inline: 17px; }

  .landing-hero {
    min-height: 600px;
    background-image:
      linear-gradient(90deg, rgba(54,35,42,.78) 0%, rgba(54,35,42,.58) 55%, rgba(54,35,42,.24) 100%),
      url("/assets/images/gesichtsbehandlung-charlottenburg-hero.webp");
    background-position: center, 64% center;
  }

  .landing-hero__content {
    width: 100%;
    max-width: 650px;
  }

  .landing-offer-grid,
  .landing-location {
    grid-template-columns: 1fr;
  }

  .landing-process { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  .landing-header__cta { font-size: 14px; }
  .landing-hero { min-height: 600px; }
  .landing-hero h1 { font-size: clamp(39px, 12vw, 53px); }
  .landing-hero__actions { align-items: stretch; flex-direction: column; }
  .landing-hero__actions .button { width: 100%; }
  .landing-questions { grid-template-columns: 1fr; }
  .whatsapp-float {
    right: 12px;
    top: auto;
    bottom: 78px;
    width: 48px;
    height: 48px;
    transform: none;
  }

  .whatsapp-float__icon {
    width: 48px;
    min-width: 48px;
    height: 48px;
  }

  .whatsapp-float:hover,
  .whatsapp-float:focus-visible {
    width: 48px;
  }

  .whatsapp-float__label {
    display: none;
  }
}

.landing-booking__voucher { color: #fff; }
.landing-booking__voucher:hover { color: #fff; }
