/* ─── LEISTUNGEN PAGE ─── */

.leistungen-hero {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  max-height: 70vh;
  overflow: hidden;
  border-radius: 0 0 28px 28px;
  margin-bottom: var(--space-xl);
}

.leistungen-hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.leistungen-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--c-dark) 0%, rgba(6,13,8,0.4) 40%, transparent 70%);
}

.leistungen-hero__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-xl) var(--space-lg) var(--space-lg);
}

.leistungen-hero__tag {
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: var(--space-sm);
}

.leistungen-hero__title {
  font-family: var(--font-heading);
  font-weight: 300;
  font-size: var(--text-xl);
  line-height: 1.15;
  color: var(--c-white);
  margin-bottom: var(--space-sm);
}

.leistungen-hero__title em {
  font-style: normal;
  color: var(--c-gold-light);
}

.leistungen-hero__sub {
  font-size: var(--text-md);
  font-weight: 300;
  color: var(--c-text-muted);
  line-height: 1.6;
}

/* ─── SERVICE CARDS ─── */
.service-section {
  padding: 0 var(--space-lg);
  margin-bottom: var(--space-xl);
}

.service-card {
  background: var(--c-dark-elevated);
  border: 1px solid var(--c-border);
  border-radius: 24px;
  overflow: hidden;
  margin-bottom: var(--space-lg);
  position: relative;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 5%;
  right: 5%;
  height: 2px;
  z-index: 1;
  background: linear-gradient(90deg, transparent, var(--glow-color, rgba(188,170,130,0.6)), transparent);
}

.service-card--sauna { --glow-color: rgba(210,160,60,0.8); }
.service-card--fivemoves { --glow-color: rgba(80,180,100,0.8); }
.service-card--ihht { --glow-color: rgba(80,160,220,0.8); }
.service-card--mentoring { --glow-color: rgba(188,170,130,0.8); }

.service-card__img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
}

.service-card__body {
  padding: var(--space-lg);
}

.service-card__badge {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
  color: var(--c-gold-light);
  border: 1px solid var(--c-border);
  margin-bottom: var(--space-sm);
}

.service-card__name {
  font-family: var(--font-heading);
  font-weight: 300;
  font-size: var(--text-lg);
  line-height: 1.2;
  color: var(--c-white);
  margin-bottom: var(--space-xs);
}

.service-card__tagline {
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 300;
  font-size: var(--text-md);
  color: var(--c-gold);
  margin-bottom: var(--space-sm);
  line-height: 1.4;
}

.service-card__tech {
  font-size: var(--text-sm);
  color: var(--c-text-muted);
  margin-bottom: var(--space-md);
  letter-spacing: 0.02em;
}

.service-card__desc {
  font-size: var(--text-md);
  line-height: 1.75;
  font-weight: 300;
  color: var(--c-green-pale);
  margin-bottom: var(--space-md);
}

.service-card__price {
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  font-weight: 300;
  color: var(--c-white);
  margin-bottom: var(--space-xs);
}

.service-card__price span {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: var(--c-text-muted);
  font-weight: 300;
}

.service-card__price--sub {
  font-size: var(--text-md);
  color: var(--c-gold-light);
  margin-bottom: var(--space-sm);
}

.service-card__ideal {
  padding-top: var(--space-sm);
  border-top: 1px solid var(--c-border);
  margin-top: var(--space-sm);
}

.service-card__ideal h3 {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: 4px;
}

.service-card__ideal p {
  font-size: var(--text-sm);
  color: var(--c-green-pale);
  font-weight: 300;
}

/* Five Moves Steps */
.service-steps {
  display: flex;
  gap: 4px;
  margin: var(--space-sm) 0 var(--space-md);
}

.service-step {
  flex: 1;
  background: rgba(156,126,81,0.06);
  border: 1px solid var(--c-border-subtle);
  border-radius: 10px;
  padding: 10px 4px;
  text-align: center;
}

.service-step h3 {
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--c-gold-light);
  margin-bottom: 2px;
}

.service-step p {
  font-size: var(--text-xs);
  color: var(--c-green-pale);
  line-height: 1.2;
}

/* ─── CTA BUTTON ─── */
.cta-btn {
  display: block;
  width: 100%;
  text-align: center;
  padding: 16px 28px;
  background: var(--c-gold);
  color: var(--c-dark);
  font-family: var(--font-body);
  font-size: var(--text-md);
  font-weight: 500;
  border: none;
  border-radius: 100px;
  text-decoration: none;
  transition: all 0.3s var(--ease);
  cursor: pointer;
  min-height: 52px;
}

.cta-btn:hover {
  background: var(--c-gold-light);
  color: var(--c-dark);
}

.cta-btn--outline {
  background: transparent;
  border: 1px solid var(--c-gold);
  color: var(--c-gold);
}

.cta-btn--outline:hover {
  background: var(--c-gold);
  color: var(--c-white);
}

/* ─── TESTIMONIAL ─── */
.leistungen-testimonial {
  padding: var(--space-xl) var(--space-lg);
  text-align: center;
}

.leistungen-testimonial__quote {
  font-family: var(--font-heading);
  font-weight: 300;
  font-style: italic;
  font-size: var(--text-lg);
  line-height: 1.55;
  color: var(--c-white);
  margin-bottom: var(--space-sm);
}

.leistungen-testimonial__cite {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-gold);
}

/* ─── LOUNGE GALLERY ─── */
.lounge-section {
  padding: 0 var(--space-lg);
  margin-bottom: var(--space-xl);
}

.lounge-section__tag {
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: var(--space-sm);
}

.lounge-section__title {
  font-family: var(--font-heading);
  font-weight: 300;
  font-size: var(--text-lg);
  color: var(--c-white);
  margin-bottom: var(--space-md);
}

.lounge-section__title em {
  font-style: normal;
  color: var(--c-gold-light);
}

.lounge-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-sm);
}

.lounge-gallery__item {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 1;
}

.lounge-gallery__item--wide {
  grid-column: 1 / -1;
  aspect-ratio: 16 / 9;
}

.lounge-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.lounge-section__text {
  font-size: var(--text-md);
  line-height: 1.75;
  font-weight: 300;
  color: var(--c-green-pale);
  margin-top: var(--space-md);
}

/* ─── BOTTOM CTA ─── */
.bottom-cta {
  padding: var(--space-xl) var(--space-lg);
  text-align: center;
}

.bottom-cta__title {
  font-family: var(--font-heading);
  font-weight: 300;
  font-size: var(--text-lg);
  color: var(--c-white);
  margin-bottom: var(--space-md);
}

.bottom-cta__title em {
  font-style: normal;
  color: var(--c-gold-light);
}

/* ─── SUB-NAV ─── */
.sub-nav {
  display: flex;
  justify-content: center;
  gap: var(--space-md);
  padding: var(--space-md) 0 calc(var(--space-xl) + 20px);
}

.sub-nav a {
  font-size: var(--text-sm);
  color: var(--c-text-muted);
  text-decoration: none;
  font-weight: 400;
  letter-spacing: 0.04em;
  transition: color 0.3s;
}

.sub-nav a:hover {
  color: var(--c-gold);
}

/* ─── VALUE EXCHANGE ─── */
.value-exchange {
  margin: var(--space-lg) var(--space-lg);
  padding: var(--space-lg);
  background: rgba(156,126,81,0.06);
  border: 1px solid var(--c-border);
  border-radius: 20px;
  text-align: center;
}

.value-exchange__badge {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 100px;
  color: var(--c-gold);
  border: 1px solid rgba(156,126,81,0.25);
  margin-bottom: var(--space-sm);
}

.value-exchange__title {
  font-family: var(--font-heading);
  font-weight: 300;
  font-size: var(--text-lg);
  color: var(--c-white);
  margin-bottom: var(--space-sm);
}

.value-exchange__price {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: 300;
  color: var(--c-gold-light);
  margin-bottom: var(--space-xs);
}

.value-exchange__text {
  font-size: var(--text-md);
  line-height: 1.6;
  font-weight: 300;
  color: var(--c-green-pale);
  margin-bottom: var(--space-md);
}

/* ─── DESKTOP ─── */
@media (min-width: 768px) {
  .leistungen-hero {
    aspect-ratio: 16 / 9;
    max-height: 60vh;
  }

  .service-section {
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
  }

  .lounge-section {
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
  }

  .leistungen-testimonial,
  .bottom-cta {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }
}
