/* ═══════════════════════════════════════════════════════
   LEISTUNGEN PAGE — Beauty Secret Berlin
═══════════════════════════════════════════════════════ */

.bsb-lst {
  --cream:      #FAF7F2;
  --beige:      #F0EAE0;
  --beige-mid:  #E2D9CC;
  --beige-rose: #F5EEE9;
  --sand:       #C8B99A;
  --brown:      #5C4A38;
  --brown-dark: #3A2E22;
  --gold:       #A8894A;
  --gold-light: #C9A96E;
  --muted:      #8A7A6A;
  --text:       #3A2E22;
  --rule:       rgba(168,137,74,.28);

  --ff-serif: 'Cormorant Garamond', Georgia, serif;
  --ff-sans:  'Jost', sans-serif;

  --max:      920px;
  --narrow:   640px;
  --pad-v:    6.5rem;
  --pad-v-sm: 3.5rem;

  background: var(--cream);
  color: var(--text);
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  overflow-x: hidden;
}

.bsb-lst *,
.bsb-lst *::before,
.bsb-lst *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.bsb-lst img {
  display: block;
  max-width: 100%;
  height: auto;
  filter: sepia(6%) saturate(88%);
}

.bsb-lst a {
  text-decoration: none;
}

/* LAYOUT */
.bsb-lst-wrap {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding-left: 2rem;
  padding-right: 2rem;
}

.bsb-lst-wrap--narrow {
  max-width: var(--narrow);
}

.bsb-lst section {
  padding: var(--pad-v) 0;
}

.bsb-lst section + section {
  border-top: 1px solid var(--rule);
}

/* TYPOGRAPHY */
.bsb-lst h1 {
  font-family: var(--ff-serif);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 300;
  line-height: 1.05;
  color: #fff;
  letter-spacing: -.01em;
}

.bsb-lst h2 {
  font-family: var(--ff-serif);
  font-size: clamp(1.9rem, 3.2vw, 2.8rem);
  font-weight: 300;
  line-height: 1.2;
  color: var(--brown-dark);
  margin-bottom: 1.75rem;
}

.bsb-lst h2 em {
  font-style: italic;
  color: var(--gold);
}

.bsb-lst p {
  font-family: var(--ff-serif);
  font-size: clamp(.95rem, 1.5vw, 1.05rem);
  line-height: 1.9;
  color: var(--text);
  margin-bottom: 1.25rem;
  max-width: 62ch;
}

.bsb-lst p:last-child { margin-bottom: 0; }

.bsb-lst-muted {
  color: var(--muted) !important;
  font-size: .92rem !important;
  line-height: 1.85 !important;
}

/* ELEMENTS */
.bsb-lst-eye {
  display: block;
  font-family: var(--ff-sans);
  font-size: .62rem;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.bsb-lst-rule {
  display: block;
  width: 36px;
  height: 1px;
  background: var(--gold);
  margin-bottom: 2rem;
}

.bsb-lst-rule--center {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2.5rem;
}

.bsb-lst-link {
  display: inline-block;
  font-family: var(--ff-sans);
  font-size: .65rem;
  font-weight: 400;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--brown-dark);
  text-decoration: none;
  position: relative;
  padding-bottom: .3rem;
  transition: color .35s;
}

.bsb-lst-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width .45s cubic-bezier(.4,0,.2,1);
}

.bsb-lst-link:hover             { color: var(--gold); }
.bsb-lst-link:hover::after      { width: 100%; }

.bsb-lst-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-sans);
  font-size: .65rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: .9rem 2.25rem;
  min-height: 44px;
  border: 1px solid var(--gold);
  color: var(--brown-dark);
  background: transparent;
  cursor: pointer;
  transition: background .3s, color .3s, border-color .3s;
  text-decoration: none;
  white-space: nowrap;
}

.bsb-lst-btn:hover              { background: var(--gold); color: #fff; }
.bsb-lst-btn--filled            { background: var(--gold); color: #fff; }
.bsb-lst-btn--filled:hover      { background: var(--brown); border-color: var(--brown); }
.bsb-lst-btn--lt                { border-color: rgba(255,255,255,.5); color: #fff; }
.bsb-lst-btn--lt:hover          { background: #fff; color: var(--brown-dark); border-color: #fff; }

.bsb-lst-badge {
  display: inline-block;
  font-family: var(--ff-sans);
  font-size: .58rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold-light);
  background: rgba(168,137,74,.12);
  border: 1px solid rgba(201,169,110,.3);
  padding: .3rem .8rem;
  margin-bottom: 1rem;
}

/* ══ HERO ════════════════════════════════════════════ */
.bsb-lst-hero {
  position: relative;
  height: calc(100vh - 90px);
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 0 !important;
  border-top: none !important;
}

.bsb-lst-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.bsb-lst-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: sepia(8%) saturate(82%) brightness(.72);
}

.bsb-lst-hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to top,
      rgba(22,14,6,.88) 0%,
      rgba(22,14,6,.5)  35%,
      rgba(22,14,6,.1)  65%,
      transparent       80%
    ),
    linear-gradient(
      to right,
      rgba(22,14,6,.28) 0%,
      transparent       60%
    );
}

.bsb-lst-hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  margin: 0 auto;
  padding: 0 2rem 0 max(2rem, calc((100vw - var(--max)) / 2 + 2rem));
}

.bsb-lst-hero__box {
  display: inline-block;
  max-width: 640px;
  padding: 2.2rem 2.4rem 2.3rem;
  background: rgba(52,35,21,.44);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(201,169,110,.12);
  box-shadow: 0 28px 70px rgba(0,0,0,.24);
}

.bsb-lst-hero__label {
  font-family: var(--ff-sans);
  font-size: .58rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 2rem;
  display: block;
}

.bsb-lst-dot { color: var(--gold-light); }

.bsb-lst-hero__sub {
  font-family: var(--ff-serif);
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  font-style: italic;
  font-weight: 300;
  color: var(--gold-light);
  display: block;
  margin: 1.5rem 0 2.25rem;
  line-height: 1.55;
}

/* ══ EINLEITUNG ══════════════════════════════════════ */
.bsb-lst-intro {
  background: var(--cream);
  text-align: center;
}

.bsb-lst-intro__text {
  font-family: var(--ff-serif);
  font-size: clamp(1.3rem, 2.5vw, 1.9rem);
  font-weight: 300;
  line-height: 1.7;
  color: var(--brown-dark);
  max-width: 52ch;
  margin: 0 auto;
}

.bsb-lst-intro__text em {
  font-style: italic;
  color: var(--gold);
}

/* ══ FEATURED: DIE STILLE STUNDE ════════════════════ */
.bsb-lst-featured {
  background: var(--beige);
}

.bsb-lst-featured__card {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  border: 1.5px solid var(--beige-mid);
  overflow: hidden;
  transition: box-shadow .4s;
  text-decoration: none;
  color: var(--text) !important;
}

.bsb-lst-featured__card:hover {
  box-shadow: 0 20px 48px rgba(0,0,0,.1);
}

.bsb-lst-featured__img {
  overflow: hidden;
}

.bsb-lst-featured__img img {
  width: 100%;
  height: 100%;
  min-height: 380px;
  object-fit: cover;
  object-position: center;
  transition: transform .7s ease;
}

.bsb-lst-featured__card:hover .bsb-lst-featured__img img {
  transform: scale(1.04);
}

.bsb-lst-featured__body {
  background: var(--cream);
  padding: 3.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.bsb-lst-featured__body h2 {
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  margin-bottom: 1.25rem;
}

.bsb-lst-featured__body .bsb-lst-eye {
  margin-bottom: .75rem;
}

.bsb-lst-featured__body p {
  margin-bottom: 1.75rem;
  font-size: clamp(.92rem, 1.4vw, 1rem);
}

/* ══ ALLE BEHANDLUNGEN GRID ═════════════════════════ */
.bsb-lst-grid-section {
  background: var(--cream);
}

.bsb-lst-grid-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 3.5rem;
  gap: 2rem;
  flex-wrap: wrap;
}

.bsb-lst-grid-header h2 {
  margin-bottom: 0;
}

.bsb-lst-grid-header .bsb-lst-link {
  align-self: flex-end;
  padding-bottom: .5rem;
}

.bsb-lst-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: var(--beige-mid);
  border: 1.5px solid var(--beige-mid);
}

.bsb-lst-card {
  background: var(--cream);
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: var(--text) !important;
  transition: background .3s;
}

.bsb-lst-card:hover { background: #fff; }

.bsb-lst-card__img {
  aspect-ratio: 3/2;
  overflow: hidden;
}

.bsb-lst-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s ease;
}

.bsb-lst-card:hover .bsb-lst-card__img img {
  transform: scale(1.04);
}

.bsb-lst-card__body {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.bsb-lst-card__eye {
  font-family: var(--ff-sans);
  font-size: .58rem;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: .6rem;
}

.bsb-lst-card__name {
  font-family: var(--ff-serif);
  font-size: clamp(1.05rem, 1.7vw, 1.3rem);
  font-weight: 300;
  color: var(--brown-dark);
  line-height: 1.25;
  margin-bottom: .75rem;
  display: block;
}

.bsb-lst-card__desc {
  font-family: var(--ff-serif);
  font-size: .85rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 1.25rem;
  flex: 1;
  max-width: none;
}

.bsb-lst-card .bsb-lst-link {
  pointer-events: none;
}

/* ══ AKTUELLE RITUALE TEASER ════════════════════════ */
.bsb-lst-rituale {
  background: var(--brown-dark);
  position: relative;
  overflow: hidden;
}

.bsb-lst-rituale::before {
  content: '';
  position: absolute;
  top: 50%;
  right: -100px;
  transform: translateY(-50%);
  width: 600px;
  height: 600px;
  border-radius: 50%;
  border: 1px solid rgba(168,137,74,.1);
  pointer-events: none;
}

.bsb-lst-rituale__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.bsb-lst-rituale h2         { color: var(--cream); }
.bsb-lst-rituale .bsb-lst-eye { color: var(--gold-light); }

.bsb-lst-rituale__text p {
  color: #D8CFBF;
  max-width: 46ch;
}

.bsb-lst-rituale__visual {
  position: relative;
}

.bsb-lst-rituale__visual img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  filter: sepia(8%) saturate(82%) brightness(.88);
}

.bsb-lst-rituale__visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(22,14,6,.2) 0%, transparent 60%);
}

/* ══ CTA ABSCHLUSS ═══════════════════════════════════ */
.bsb-lst-cta {
  background: var(--brown-dark);
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 0 !important;
  min-height: 460px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-top: none !important;
}

.bsb-lst-cta::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 420px;
  height: 420px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px solid rgba(142,120,78,.5);
  pointer-events: none;
}

.bsb-lst-cta__inner {
  position: relative;
  z-index: 2;
  max-width: var(--narrow);
  margin: 0 auto;
  padding: 5rem 2rem;
}

.bsb-lst-cta__headline {
  font-family: var(--ff-serif);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.35;
  color: #F0D58A;
  margin-bottom: 1rem;
  max-width: none !important;
}

.bsb-lst-cta__sub {
  display: block;
  font-family: var(--ff-sans);
  font-size: .65rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 2.5rem;
}

/* ══ RESPONSIVE ═════════════════════════════════════ */
@media (max-width: 960px) {
  .bsb-lst-featured__card {
    grid-template-columns: 1fr;
  }

  .bsb-lst-featured__img img {
    min-height: auto;
    aspect-ratio: 16/9;
    height: auto;
  }

  .bsb-lst-featured__body {
    padding: 2.5rem 2rem;
  }

  .bsb-lst-grid {
    grid-template-columns: 1fr 1fr;
  }

  .bsb-lst-rituale__inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .bsb-lst-rituale__visual {
    order: -1;
  }
}

@media (max-width: 640px) {
  .bsb-lst { --pad-v: var(--pad-v-sm); }

  .bsb-lst-wrap {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .bsb-lst-hero {
    min-height: 580px;
    align-items: flex-end;
  }

  .bsb-lst-hero__inner {
    padding: 0 1.5rem 3rem 1.5rem;
  }

  .bsb-lst-hero__box {
    width: 100%;
    padding: 1.7rem 1.4rem 1.8rem;
  }

  .bsb-lst-hero h1 {
    font-size: clamp(2.4rem, 9vw, 3.4rem);
  }

  .bsb-lst-grid {
    grid-template-columns: 1fr;
  }

  .bsb-lst-grid-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .bsb-lst-rituale__inner {
    gap: 2rem;
  }

  .bsb-lst-cta__headline {
    font-size: 1.7rem;
  }

  .bsb-lst-intro__text {
    font-size: 1.2rem;
  }
}
