/* ── Logo-Name ausblenden (Name steht prominent im Hero) ── */
.logo-name {
  display: none;
}

/* ── Hero ── */
.coaching-hero {
  margin-top: 20px;
}

.coaching-hero-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 15px;
}

.coaching-hero-photo {
  width: 30%;
  min-height: 480px;
  background-size: 130%;
  background-repeat: no-repeat;
  background-position: 55% 14%;
  flex-shrink: 0;
}

.coaching-hero-text {
  flex: 1;
  box-sizing: border-box;
  padding-left: 3rem;
}

.coaching-hero-name {
  font-family: var(--font-family-heading);
  font-weight: 800;
  font-size: 3.55rem;
  line-height: 1;
  text-transform: uppercase;
  color: var(--color-text);
  margin-bottom: 5px;
}

.coaching-hero-subtitle {
  font-family: var(--font-family-heading);
  font-weight: 700;
  font-size: 1.78rem;
  color: var(--color-text);
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.coaching-hero-body {
  font-family: 'Merriweather', Georgia, serif;
  font-size: 1.16rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}


/* ── Angebote: alternierendes Bild-Text-Layout ── */
.home-services-grid {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: none;
}

.home-service {
  display: flex;
  align-items: flex-start;
  gap: 50px;
  padding: 3rem 0;
}

.home-service:nth-child(even) {
  flex-direction: row-reverse;
}

.home-service-body {
  flex: 1;
}

.home-service-image {
  width: 256px;
  flex-shrink: 0;
  padding-top: 84px;
}

.home-service-image img {
  width: 256px;
  height: 256px;
  object-fit: contain;
  display: block;
}

/* ── Service-Badge ── */
.coaching-service-badge {
  font-family: 'Merriweather', Georgia, serif;
  font-size: 1rem;
  font-weight: 400;
  font-style: italic;
  color: #F0F0F1;
  margin-top: 1rem;
}

/* ── Angebote: padding-top ── */
.home-services {
  padding-top: 120px;
}

/* ── Methode ── */
.coaching-method {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  background: #F0F0F1;
  padding-top: 120px;
  padding-bottom: 4rem;
  margin-top: 0;
}

.coaching-method-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 var(--padding);
}

.coaching-method-heading {
  font-family: var(--font-family-heading);
  font-weight: 800;
  font-size: 32px;
  text-transform: uppercase;
  color: var(--color-dark);
  margin-bottom: 1.5rem;
}

.coaching-method-intro {
  max-width: 720px;
  font-family: 'Merriweather', Georgia, serif;
  font-size: 1rem;
  line-height: 1.8;
  color: var(--color-dark);
  margin-bottom: 3rem;
}

.coaching-approaches {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 4rem;
  margin-bottom: 3rem;
}

.coaching-approach-title {
  font-family: var(--font-family-heading);
  font-weight: 800;
  font-size: 22px;
  text-transform: uppercase;
  color: var(--color-dark);
  margin-bottom: 0.75rem;
}

.coaching-approach-text {
  font-family: 'Merriweather', Georgia, serif;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-dark);
}

.coaching-approach-text a {
  color: var(--color-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.coaching-formats {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  max-width: 720px;
}

.coaching-format-text {
  font-family: 'Merriweather', Georgia, serif;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-dark);
}

.coaching-format-text strong {
  font-family: var(--font-family-heading);
  font-weight: 800;
  text-transform: uppercase;
}

.coaching-format-text a {
  color: var(--color-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.coaching-method-btn {
  color: #252F37;
  border-color: #252F37;
}

.coaching-method-btn::after {
  background-image: repeating-linear-gradient(45deg,
      #252F37,
      #252F37 1px,
      transparent 2px,
      transparent 5px);
  border-top: 1px solid #252F37;
}

/* ── Responsive: Tablet (≤960px) ── */
@media screen and (max-width: 960px) {


  .coaching-hero-photo {
    width: 40%;
  }

  .coaching-hero-text {
    padding-left: 2rem;
  }

  .coaching-hero-name {
    font-size: 2.5rem;
  }

  .coaching-hero-subtitle {
    font-size: 1.25rem;
  }

  .coaching-approaches {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

}

/* ── Responsive: Mobile (≤600px) ── */
@media screen and (max-width: 600px) {



  .home-service,
  .home-service:nth-child(even) {
    flex-direction: column;
    gap: 1.5rem;
  }

  .home-service-image {
    width: 80%;
    margin: 0 auto;
  }

  .home-service-image img {
    width: 100%;
    height: auto;
    aspect-ratio: 1;
  }

  .coaching-hero-content {
    flex-direction: column;
  }

  .coaching-hero-photo {
    width: 100%;
    min-height: 400px;
    margin-bottom: 1.5rem;
  }

  .coaching-hero-text {
    width: 100%;
    padding-left: 0;
    text-align: center;
  }

  .coaching-hero-name {
    font-size: 50px;
    line-height: 64px;
    margin-bottom: 10px;
  }

  .coaching-hero-subtitle {
    font-size: 25px;
    line-height: 40px;
  }

  .coaching-hero-body {
    text-align: center;
  }

  .coaching-method {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .coaching-method-heading {
    font-size: 1.5rem;
  }

}