:root {
  --heading-font: "Bodoni Moda", Didot, "Bodoni MT", serif;
  --body-font: "Hoefler Text", Georgia, "Source Serif Pro", serif;
  --c-dark: #444;
  --c-text: #333;
  --c-muted: #707070;
  --c-bg-alt: #efefef;
  --c-bg-white: #fff;
  --max-width: 600px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--c-dark);
  font-family: var(--body-font);
}

.page {
  max-width: var(--max-width);
  margin: 0 auto;
  position: relative;
}

.hero {
  position: relative;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.161);
}

.hero-image {
  width: 100%;
  aspect-ratio: 393/280;
  background: linear-gradient(135deg, #cfcfcf, #a8a8a8);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
  font-family: var(--body-font);
  font-size: 0.85rem;
}
.hero-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.nav {
  padding: 10px 22px;
  background: var(--c-bg-white);
  text-align: right;
}

.nav-kontakt {
  font-size: 20px;
  color: #333;
  text-decoration: none;
  font-family: var(--body-font);
}

.hero-body {
  padding: 20px 22px 30px;
  background: var(--c-bg-white);
}

.hero-subtitle {
  color: var(--c-text);
  font-size: 20px;
  line-height: 1.2;
  font-family: var(--heading-font);
  margin: 0 0 30px;
}

.hero-divider {
  border: none;
  border-top: 1px solid #707070;
  margin: 0 0 30px;
}

.hero-name {
  color: var(--c-text);
  font-size: 25px;
  font-family: var(--heading-font);
  text-align: right;
  margin: 0;
}

section {
  padding: 30px 22px;
}

.bg-alt {
  background: var(--c-bg-alt);
}

.bg-white {
  position: relative;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.161);
  background: #fff;
}

h2 {
  color: var(--c-dark);
  font-family: var(--heading-font);
  font-weight: 700;
  font-size: 35px;
  margin: 0 0 30px;
}

p {
  color: var(--c-text);
  font-family: var(--body-font);
  font-size: 20px;
  line-height: 1.5;
  margin: 0;
}

.leistungen-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.leistungen-list li {
  color: var(--c-muted);
  font-family: var(--body-font);
  font-size: 20px;
  line-height: 1.5;
  padding: 12px 0;
  border-top: 1px solid rgba(112, 112, 112, 0.25);
}
.leistungen-list li:first-child {
  border-top: none;
}

.kontakt-section {
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.161);
}

.kontakt-text {
  font-family: var(--heading-font);
  font-size: 20px;
  line-height: 1.5;
  color: var(--c-text);
  margin: 0 0 24px;
}

.kontakt-portrait {
  width: 100%;
  aspect-ratio: 393/221;
  background: linear-gradient(135deg, #d8d8d8, #b0b0b0);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
  font-size: 0.85rem;
}
.kontakt-portrait img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.zitat p {
  padding: 0 22px 44px 22px;
  color: var(--c-muted);
  font-style: normal;
}/*# sourceMappingURL=style.css.map */