/* Leistungsbilder vollständig und ohne Beschnitt */
.service-card > img {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  object-position: center;
  background: #f4f8fa;
}

.service-link {
  display: block;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

.service-link:focus-visible {
  outline: 3px solid #57c9ff;
  outline-offset: 4px;
}

.service-more {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 24px;
  padding-top: 17px;
  border-top: 1px solid var(--line);
  color: var(--blue);
  font-size: .9rem;
}

.service-more span { font-size: 1.35rem; transition: transform .2s; }
.service-link:hover .service-more span { transform: translateX(5px); }

/* Persönlicher Ansprechpartner – bleibt bis zum Einbau des Portraits ausgeblendet. */
.owner-section {
  background: #f4f8fa;
}

.owner-grid {
  display: grid;
  grid-template-columns: minmax(290px, .85fr) minmax(0, 1.15fr);
  gap: clamp(44px, 7vw, 90px);
  align-items: center;
}

.owner-photo {
  aspect-ratio: 4 / 5;
  min-height: 420px;
  overflow: hidden;
  border-radius: 20px;
  background: linear-gradient(145deg, #dce8ee, #edf4f7);
  box-shadow: 0 22px 55px rgba(3, 47, 85, .16);
}

.owner-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}

.owner-copy h2 {
  margin: 7px 0 8px;
}

.owner-role {
  margin: 0 0 26px;
  color: var(--blue);
  font-weight: 850;
}

.owner-copy > p:not(.eyebrow):not(.owner-role) {
  max-width: 650px;
  color: #516476;
  line-height: 1.75;
}

.owner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 31px;
}

.owner-contact-button {
  color: var(--navy);
  border-color: #b8cad5;
}

/* Anfrageformular */
.contact-grid {
  grid-template-columns: .78fr 1.22fr;
  gap: 72px;
  align-items: start;
}

.contact-intro > p:not(.eyebrow) {
  color: #c6dbe7;
  margin: 25px 0 30px;
}

.direct-contact {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.direct-contact a {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, .19);
  border-radius: 12px;
  background: rgba(255, 255, 255, .06);
  transition: .2s;
}

.direct-contact a:hover {
  background: rgba(255, 255, 255, .11);
  transform: translateY(-2px);
}

.direct-contact span {
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .11em;
  color: #7ed5ff;
  font-weight: 900;
}

.direct-contact strong {
  font-size: 1rem;
  color: #fff;
  overflow-wrap: anywhere;
}

.contact-card { padding: 34px; }
.form-columns { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-row { display: grid; gap: 7px; margin-bottom: 17px; }
.form-row label { font-size: .82rem; font-weight: 850; color: var(--navy); }

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  border: 1px solid #cddbe5;
  border-radius: 9px;
  background: #f9fbfc;
  color: var(--ink);
  font: inherit;
  font-size: 1rem;
  padding: 12px 13px;
  transition: border-color .2s, box-shadow .2s;
}

.form-row textarea { resize: vertical; min-height: 125px; }

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: 0;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(9, 139, 211, .14);
  background: #fff;
}

.privacy-check {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 10px;
  align-items: start;
  color: #516476;
  font-size: .81rem;
  line-height: 1.45;
  margin: 4px 0 20px;
  cursor: pointer;
}

.privacy-check input {
  width: 18px;
  height: 18px;
  margin-top: 1px;
  accent-color: var(--blue);
}

.form-submit { width: 100%; border: 0; cursor: pointer; font-size: .96rem; }

@media (max-width: 900px) {
  .service-card { display: block; }
  .service-card > img { height: auto; aspect-ratio: 1 / 1; }
  .owner-grid { grid-template-columns: minmax(240px, .72fr) 1fr; gap: 38px; }
  .owner-photo { min-height: 350px; }
  .contact-grid { grid-template-columns: 1fr; gap: 45px; }
}

@media (max-width: 620px) {
  .service-card > img { aspect-ratio: 1 / 1; }
  .owner-grid { grid-template-columns: 1fr; gap: 34px; }
  .owner-photo { min-height: 0; max-height: 540px; }
  .owner-actions { display: grid; }
  .form-columns { grid-template-columns: 1fr; gap: 0; }
  .contact-card { padding: 23px; }
  .direct-contact a { padding: 14px; }
}
