@font-face {
  font-family: "Spectral";
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url("../fonts/Spectral-Light.woff2") format("woff2");
}
@font-face {
  font-family: "Spectral";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/Spectral-Regular.woff2") format("woff2");
}
@font-face {
  font-family: "Spectral";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../fonts/Spectral-Medium.woff2") format("woff2");
}
@font-face {
  font-family: "Spectral";
  font-style: italic;
  font-weight: 300;
  font-display: swap;
  src: url("../fonts/Spectral-LightItalic.woff2") format("woff2");
}
@font-face {
  font-family: "Atkinson Hyperlegible";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/AtkinsonHyperlegible-Regular.woff2") format("woff2");
}
@font-face {
  font-family: "Atkinson Hyperlegible";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/AtkinsonHyperlegible-Bold.woff2") format("woff2");
}
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #FAFAF8;
  color: #1C2530;
  font-family: "Atkinson Hyperlegible", system-ui, sans-serif;
  font-size: 19px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img {
  max-width: 100%;
}

a {
  color: #104F55;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}
a:hover {
  color: #0B3A3F;
}

::selection {
  background: #104F55;
  color: #FAFAF8;
}

:focus-visible {
  outline: 3px solid #104F55;
  outline-offset: 3px;
  border-radius: 2px;
}

h1, h2, h3 {
  font-family: "Spectral", Georgia, serif;
}

.eyebrow {
  margin: 0 0 8px;
  font-size: 14px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #5C6670;
  font-weight: 700;
}

.eyebrow-accent {
  color: #104F55;
}

.text-link {
  font-size: 18px;
  color: #104F55;
  text-decoration: none;
  border-bottom: 1px solid #C4CCD4;
  padding-bottom: 2px;
}
.text-link:hover {
  color: #0B3A3F;
}

.btn {
  display: inline-flex;
  align-items: center;
  min-height: 60px;
  padding: 0 32px;
  background: #104F55;
  color: #FAFAF8;
  font-weight: 700;
  font-size: 20px;
  border-radius: 4px;
  text-decoration: none;
}
.btn:hover {
  background: #0B3A3F;
  color: #FAFAF8;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  min-height: 56px;
  padding: 0 26px;
  border: 2px solid #104F55;
  color: #104F55;
  font-weight: 700;
  font-size: 18px;
  border-radius: 4px;
  text-decoration: none;
}
.btn-ghost:hover {
  background: #E3ECEA;
  color: #104F55;
}

.placeholder-stripes {
  background-image: repeating-linear-gradient(45deg, #EEF3F2, #EEF3F2 12px, #E4EAE9 12px, #E4EAE9 24px);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(250, 250, 248, 0.92);
  backdrop-filter: saturate(1.1) blur(6px);
  border-bottom: 1px solid #E7E9E5;
}

.header-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 16px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: #1C2530;
}
.brand img {
  width: 46px;
  height: 46px;
  object-fit: contain;
}

.brand-name {
  font-family: "Spectral", Georgia, serif;
  font-weight: 500;
  font-size: 20px;
  letter-spacing: 0.005em;
  line-height: 1.15;
}

.brand-sub {
  font-size: 14px;
  color: #5C6670;
  font-weight: 400;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}
.site-nav a {
  text-decoration: none;
  color: #1C2530;
  font-size: 17px;
}
.site-nav a:hover {
  color: #0B3A3F;
}
.site-nav .btn-cta {
  background: #104F55;
  color: #FAFAF8;
  font-weight: 700;
  padding: 11px 20px;
  border-radius: 4px;
}
.site-nav .btn-cta:hover {
  background: #0B3A3F;
  color: #FAFAF8;
}

.nav-mobile {
  display: none;
  position: relative;
}
.nav-mobile summary {
  list-style: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 8px 18px;
  border: 2px solid #104F55;
  border-radius: 4px;
  color: #104F55;
  font-weight: 700;
  font-size: 17px;
}
.nav-mobile summary::-webkit-details-marker {
  display: none;
}
.nav-mobile nav {
  position: absolute;
  right: 0;
  top: calc(100% + 10px);
  min-width: 260px;
  background: #FAFAF8;
  border: 1px solid #E7E9E5;
  border-radius: 6px;
  padding: 10px;
  display: flex;
  flex-direction: column;
}
.nav-mobile nav a {
  display: flex;
  align-items: center;
  min-height: 52px;
  padding: 0 14px;
  text-decoration: none;
  color: #1C2530;
  font-size: 18px;
  border-radius: 4px;
}
.nav-mobile nav a:hover {
  background: #EEF3F2;
}
.nav-mobile nav .btn-cta {
  margin-top: 6px;
  background: #104F55;
  color: #FAFAF8;
  font-weight: 700;
  justify-content: center;
}
.nav-mobile nav .btn-cta:hover {
  background: #0B3A3F;
}

.site-header-lite {
  position: static;
  background: #FAFAF8;
  backdrop-filter: none;
}
.site-header-lite .brand img {
  width: 40px;
  height: 40px;
}
.site-header-lite .brand-name {
  font-size: 18px;
}

.header-inner.inner-880 {
  max-width: 880px;
}

.header-inner.inner-760 {
  max-width: 760px;
}

.hero {
  max-width: 1120px;
  margin: 0 auto;
  padding: 76px 32px 64px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}

.hero-eyebrow {
  margin: 0 0 22px;
  font-size: 15px;
}

.hero h1 {
  font-weight: 300;
  font-size: clamp(38px, 5vw, 62px);
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin: 0 0 26px;
}

.claim {
  font-size: 22px;
  line-height: 1.55;
  max-width: 33ch;
  margin: 0 0 36px;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
}

.hero-figure {
  margin: 0;
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 1/1;
  background: #EEF3F2;
}
.hero-figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-figure .duotone-multiply, .hero-figure .duotone-screen {
  display: none;
}
.hero-figure .duotone-multiply {
  position: absolute;
  inset: 0;
  background: #104F55;
  mix-blend-mode: multiply;
  opacity: 0.55;
}
.hero-figure .duotone-screen {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(250, 250, 248, 0.12), rgba(28, 37, 48, 0.28));
  mix-blend-mode: screen;
}
.hero-figure .placeholder-block {
  position: absolute;
  inset: 0;
}
.hero-figure figcaption {
  position: absolute;
  left: 16px;
  bottom: 14px;
  color: #FAFAF8;
  font-size: 14px;
  letter-spacing: 0.02em;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}
.hero-figure.is-placeholder figcaption {
  color: #5C6670;
  text-shadow: none;
}

.journey {
  position: relative;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 32px 0 120px;
}

.nerv-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 72px;
  width: 1px;
  background: #C4CCD4;
  overflow: hidden;
}

.nerv-pulse {
  position: absolute;
  left: -1px;
  top: -160px;
  width: 3px;
  height: 160px;
  background: linear-gradient(180deg, rgba(16, 79, 85, 0) 0%, rgba(16, 79, 85, 0.85) 50%, rgba(16, 79, 85, 0) 100%);
  opacity: 0;
}

@media (prefers-reduced-motion: no-preference) {
  .nerv-pulse {
    animation: nervPulse 7s linear infinite;
  }
}
@keyframes nervPulse {
  0% {
    top: -160px;
    opacity: 0;
  }
  8% {
    opacity: 1;
  }
  92% {
    opacity: 1;
  }
  100% {
    top: 100%;
    opacity: 0;
  }
}
.journey-section {
  position: relative;
  padding: 64px 0;
  scroll-margin-top: 96px;
}
.journey-section:last-child {
  padding-bottom: 72px;
}
.journey-section h2 {
  font-weight: 500;
  font-size: clamp(28px, 3.4vw, 40px);
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin: 0 0 36px;
  max-width: 24ch;
}

.hairline-top {
  border-top: 1px solid #E4E7E4;
}

.node {
  position: absolute;
  left: -56px;
  top: 74px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #FAFAF8;
  border: 2px solid #104F55;
}

.node-active {
  background: #104F55;
  box-shadow: 0 0 0 4px #FAFAF8;
}

.pull-quote {
  font-family: "Spectral", Georgia, serif;
  font-weight: 300;
  font-style: italic;
  font-size: clamp(28px, 3.4vw, 40px);
  line-height: 1.25;
  letter-spacing: -0.01em;
  margin: 0 0 32px;
  max-width: 20ch;
  color: #1C2530;
}

.section-intro {
  max-width: 62ch;
}
.section-intro p {
  margin: 0 0 20px;
}

.person {
  border-top: 1px solid #E4E7E4;
  padding-top: 32px;
}
.person h2 {
  font-weight: 500;
  font-size: 24px;
  margin: 0 0 6px;
  max-width: none;
}

.person-text {
  max-width: 60ch;
}
.person-text p {
  margin: 8px 0 0;
}

.qual-list {
  list-style: none;
  margin: 18px 0 24px;
  padding: 0;
  display: grid;
  gap: 12px;
  max-width: 60ch;
}
.qual-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: baseline;
}
.qual-list li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #104F55;
  transform: translateY(-2px);
}

.person-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
}

.rows {
  max-width: 74ch;
}

.row {
  display: grid;
  grid-template-columns: minmax(220px, 0.9fr) 1.4fr;
  gap: 20px 40px;
  padding: 20px 0;
  border-top: 1px solid #E4E7E4;
}
.row h3 {
  font-weight: 500;
  font-size: 22px;
  margin: 0;
}
.row p {
  margin: 0;
  color: #5C6670;
}
.row:last-child {
  border-bottom: 1px solid #E4E7E4;
}

.note-panel {
  max-width: 74ch;
  margin: 32px 0 0;
  padding: 24px 28px;
  background: #EEF3F2;
  border-radius: 5px;
  color: #1C2530;
}

.termin-panel {
  background: #EEF3F2;
  border-radius: 6px;
  padding: clamp(28px, 4vw, 52px);
}
.termin-panel h2 {
  margin: 0 0 16px;
  max-width: 22ch;
}

.termin-intro {
  margin: 0 0 36px;
  max-width: 56ch;
}
.termin-intro p {
  font-size: 20px;
  margin: 0 0 14px;
}
.termin-intro p:last-child {
  margin-bottom: 0;
}

.termin-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}

.btn-block {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 96px;
  padding: 20px 26px;
  background: #104F55;
  color: #FAFAF8;
  border-radius: 5px;
  text-decoration: none;
}
.btn-block:hover {
  background: #0B3A3F;
  color: #FAFAF8;
}
.btn-block .btn-title {
  font-size: 21px;
  font-weight: 700;
  line-height: 1.2;
}
.btn-block .btn-sub {
  font-size: 16px;
  opacity: 0.85;
  margin-top: 4px;
}

.btn-block-ghost {
  background: #FAFAF8;
  color: #104F55;
  border: 2px solid #104F55;
}
.btn-block-ghost:hover {
  background: #E3ECEA;
  color: #104F55;
}
.btn-block-ghost .btn-sub {
  color: #5C6670;
  opacity: 1;
}

.termin-note {
  margin: 28px 0 0;
  max-width: 56ch;
}
.termin-note p {
  margin: 0 0 10px;
  font-size: 18px;
}
.termin-note p:last-child {
  margin-bottom: 0;
}

.termin-footnote {
  margin: 28px 0 0;
  color: #5C6670;
  font-size: 16px;
}

.kontakt-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
.kontakt-grid h3 {
  font-weight: 500;
  font-size: 22px;
  margin: 0 0 20px;
}

.contact-label {
  margin: 0 0 4px;
  color: #5C6670;
  font-size: 16px;
}

.phone {
  margin: 0 0 22px;
  font-family: "Spectral", Georgia, serif;
  font-size: 26px;
  font-weight: 400;
}
.phone a {
  text-decoration: none;
  color: #1C2530;
}

.email-line {
  margin: 0 0 28px;
  font-size: 20px;
}
.email-line a {
  text-decoration: none;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 24px;
}

.rezept {
  margin: 0;
  color: #5C6670;
  max-width: 46ch;
}

.anfahrt-text p {
  margin: 0 0 6px;
  font-size: 20px;
  line-height: 1.5;
}

.anfahrt-etage {
  margin: 6px 0 22px;
  color: #5C6670;
}

.lageplan {
  position: relative;
  aspect-ratio: 16/9;
  border-radius: 5px;
  overflow: hidden;
  border: 1px solid #DCE3E1;
  margin-bottom: 20px;
  background: #EEF3F2;
}
.lageplan img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.site-footer {
  border-top: 1px solid #E7E9E5;
  background: #FAFAF8;
}

.footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 28px 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px 32px;
  align-items: center;
  justify-content: space-between;
}
.footer-inner p {
  margin: 0;
  color: #5C6670;
  font-size: 16px;
}
.footer-inner nav {
  display: flex;
  gap: 28px;
}
.footer-inner nav a {
  text-decoration: none;
  color: #1C2530;
  font-size: 16px;
}
.footer-inner nav a:hover {
  color: #0B3A3F;
}

.standalone {
  margin: 0 auto;
  padding: 72px 32px 80px;
}

.standalone-vita {
  max-width: 880px;
}

.standalone-legal {
  max-width: 760px;
}

.standalone h1 {
  font-weight: 300;
  letter-spacing: -0.01em;
  line-height: 1.1;
}

.standalone-vita h1 {
  font-size: clamp(34px, 4.5vw, 54px);
  margin: 0 0 20px;
}

.standalone-legal h1 {
  font-size: clamp(32px, 4vw, 48px);
  margin: 0 0 48px;
}

.vita-hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
  margin: 0 0 60px;
}

.vita-lead {
  font-size: 22px;
  line-height: 1.5;
  max-width: 44ch;
  color: #5C6670;
  margin: 0;
}

.vita-portrait {
  margin: 0;
  border-radius: 4px;
  overflow: hidden;
  background: #EEF3F2;
  aspect-ratio: 2/3;
}
.vita-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.vita-article {
  display: grid;
  grid-template-columns: minmax(180px, 1fr) 2.2fr;
  gap: 16px 48px;
  padding: 32px 0;
  border-top: 1px solid #E4E7E4;
}
.vita-article h2 {
  font-weight: 500;
  font-size: 24px;
  margin: 0;
  line-height: 1.2;
}
.vita-article > div {
  max-width: 60ch;
}
.vita-article p {
  margin: 0 0 14px;
}
.vita-article p:last-child {
  margin-bottom: 0;
}
.vita-article .quelle {
  color: #5C6670;
  font-size: 16px;
}
.vita-article:last-child {
  border-bottom: 1px solid #E4E7E4;
}

.back-link {
  margin-top: 48px;
}

.prose {
  max-width: 64ch;
}
.prose h2 {
  font-weight: 500;
  font-size: 22px;
  margin: 28px 0 12px;
}
.prose h2:first-child {
  margin-top: 0;
}
.prose h3 {
  font-weight: 500;
  font-size: 20px;
  margin: 24px 0 10px;
}
.prose p {
  margin: 0 0 14px;
}
.prose ul {
  margin: 0 0 14px;
  padding-left: 24px;
}

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .kontakt-grid {
    grid-template-columns: 1fr;
  }
  .vita-hero {
    grid-template-columns: 1fr;
  }
  .vita-portrait {
    max-width: 340px;
  }
  .site-nav {
    display: none;
  }
  .nav-mobile {
    display: block;
  }
}
@media (max-width: 760px) {
  body {
    font-size: 18px;
  }
  .journey {
    padding-left: 42px;
  }
  .nerv-line {
    left: 18px;
  }
  .node {
    left: -31px;
  }
}
@media (max-width: 700px) {
  .row {
    grid-template-columns: 1fr;
    gap: 6px 0;
  }
  .vita-article {
    grid-template-columns: 1fr;
    gap: 10px 0;
  }
}
@media (max-width: 500px) {
  .header-inner {
    padding: 12px 20px;
    gap: 12px;
  }
  .brand {
    gap: 10px;
  }
  .brand img {
    width: 38px;
    height: 38px;
  }
  .brand-name {
    font-size: 17px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
