/* ============ Leistungen ============ */

/* Leistungsverzeichnis: Zeilen statt Kacheln, getrennt von Haarlinien */
.services { display: block; }

.service {
  position: relative;
  display: grid;
  grid-template-columns: 4rem minmax(0, 17rem) minmax(0, 1fr);
  gap: clamp(1.4rem, 3vw, 3.2rem);
  align-items: start;
  padding-block: clamp(1.9rem, 3vw, 2.9rem);
  border-top: 1px solid rgba(244, 242, 236, 0.13);
}
.services .service:last-child { border-bottom: 1px solid rgba(244, 242, 236, 0.13); }

/* Goldene Linie wächst beim Überfahren über die Zeile */
.service::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.8s var(--ease);
}
.service:hover::before { width: 100%; }

.service__lead {
  display: flex;
  align-items: flex-start;
  padding-top: 0.15rem;
}

.service__icon {
  display: block;
  width: 2.4rem;
  color: var(--gold);
  transition: color 0.5s var(--ease), transform 0.6s var(--ease);
}
.service__icon svg {
  display: block;
  width: 100%;
  height: auto;
}
.service:hover .service__icon {
  color: var(--champagne);
  transform: translateY(-3px);
}

.service__title {
  font-size: clamp(1.18rem, 1.7vw, 1.42rem);
  font-weight: 300;
  line-height: 1.35;
  color: var(--white);
  transition: color 0.4s var(--ease);
}
.service:hover .service__title { color: var(--champagne); }

.service__text {
  font-size: 0.94rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--grey-light);
  max-width: 52ch;
}

/* ============ Warum RUMS ============ */

.why {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: clamp(2rem, 4vw, 4rem);
  row-gap: clamp(2.6rem, 5vw, 4rem);
}

/* Editorial statt Kachel: feine Haarlinie oben, viel Luft */
.why__card {
  position: relative;
  padding-top: clamp(1.5rem, 2.4vw, 2rem);
  border-top: 1px solid rgba(244, 242, 236, 0.14);
}
.why__card::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.7s var(--ease);
}
.why__card:hover::before { width: 100%; }

.why__num {
  display: block;
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  color: var(--gold);
}

.why__card h3 {
  font-size: clamp(1.18rem, 1.7vw, 1.42rem);
  font-weight: 300;
  line-height: 1.35;
  color: var(--white);
  margin: 0.9rem 0 0.75rem;
  transition: color 0.4s var(--ease);
}
.why__card:hover h3 { color: var(--champagne); }

.why__card p {
  font-size: 0.94rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--grey-light);
  max-width: 40ch;
}

/* ============ Über uns ============ */

.about {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: center;
}

.about__media { position: relative; }
.about__media > img:not(.ai-label) {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  /* Bildfokus: Gesicht/Person liegt im Original rechts oben */
  object-position: 68% 25%;
}

.about__badge {
  position: absolute;
  right: -1.2rem;
  bottom: 2.4rem;
  display: flex;
  align-items: center;
  gap: 0.9rem;
  background: var(--black);
  color: var(--offwhite);
  padding: 1.1rem 1.5rem;
  box-shadow: 0 24px 48px rgba(13, 13, 13, 0.35);
}
.about__badge strong {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 300;
  color: var(--gold);
}
.about__badge span {
  font-size: 0.72rem;
  line-height: 1.5;
  letter-spacing: 0.06em;
  color: var(--champagne);
}

.about__text p:not(.section__eyebrow) {
  margin-bottom: 1.4rem;
  font-weight: 400;
  color: #3d423d;
  max-width: 56ch;
}
.about__text .section__title { margin-bottom: 2rem; }

/* Merkmale unter dem Über-uns-Text */
.about__merkmale {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.7rem 1.6rem;
  list-style: none;
  padding: 0;
  margin: 1.8rem 0 0.6rem;
  max-width: 56ch;
}
.about__merkmale li {
  position: relative;
  padding-left: 1.7rem;
  font-size: 0.94rem;
  line-height: 1.6;
  color: #3d423d;
}
.about__merkmale li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.42em;
  width: 0.7rem;
  height: 0.38rem;
  border-left: 2px solid var(--green-moss);
  border-bottom: 2px solid var(--green-moss);
  transform: rotate(-45deg);
}

@media (max-width: 560px) {
  .about__merkmale { grid-template-columns: 1fr; gap: 0.6rem; }
}
.about__text .btn { margin-top: 1.2rem; }

/* ============ FAQ ============ */

.faq { display: flex; flex-direction: column; }

.faq__item {
  border-bottom: 1px solid rgba(13, 13, 13, 0.14);
}

.faq__item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  list-style: none;
  cursor: pointer;
  padding: 1.6rem 0;
  font-family: var(--font-display);
  font-size: clamp(1.02rem, 1.6vw, 1.2rem);
  font-weight: 400;
  transition: color 0.3s var(--ease);
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary:hover { color: var(--green-moss); }

.faq__icon {
  position: relative;
  flex: 0 0 auto;
  width: 0.9rem;
  height: 0.9rem;
}
.faq__icon::before,
.faq__icon::after {
  content: "";
  position: absolute;
  inset: 50% auto auto 0;
  width: 100%;
  height: 1.5px;
  background: var(--green-forest);
  transition: transform 0.35s var(--ease);
}
.faq__icon::after { transform: rotate(90deg); }
.faq__item[open] .faq__icon::after { transform: rotate(0deg); }

.faq__item p {
  padding-bottom: 1.6rem;
  max-width: 62ch;
  font-weight: 400;
  color: #3d423d;
}
