/* ============================================================
   Achatz Diätologie — Shared Stylesheet
   ============================================================ */

/* === Local Fonts === */
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url('../fonts/manrope-latin.woff2') format('woff2');
}

/* === CSS Variables === */
:root {
  --color-olive:              #A4A974;
  --color-text:               #222222;
  --color-white:              #FFFFFF;
  --color-taupe:              #AC977F;
  --color-brown:              #785F4B;
  --color-surface-soft:       #F7F4F0;
  --color-surface-warm:       #DDD0BC;
  --color-card-soft:          #D7D8B7;
  --color-card-shadow:        #B7BC8E;
  --color-border-olive-soft:  rgba(164,169,116,0.15);
  --color-border-olive-mid:   rgba(164,169,116,0.2);
  --color-ring-olive:         rgba(164,169,116,0.12);
  --color-olive-dark:         #8B9060;
  --color-olive-darker:       #6B7048;
  --color-surface-page:       #F5F0E8;
  --color-surface-section:    #EAE4D8;
  --color-surface-card:       #DDD5C5;
  --color-surface-footer:     #BFB09A;
  --max-w:          1100px;
  --font-h:         'Manrope', 'Avenir Next', Avenir, Helvetica, Arial, sans-serif;
  --font-b:         'Manrope', 'Avenir Next', Avenir, Helvetica, Arial, sans-serif;
  --radius:         4px;
  --transition:     0.25s ease;
}

/* === Reset & Base === */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-b);
  color: var(--color-text);
  background: var(--color-white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul { list-style: none; }

/* === Typography === */
h1, h2, h3, h4, h5 {
  font-family: var(--font-h);
  font-weight: 600;
  line-height: 1.25;
  color: var(--color-text);
}

h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.7rem); }
h4 { font-size: 1.1rem; }
h5 { font-size: 1rem; }

p { margin-bottom: 0; }

/* === Layout === */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section { padding: 5rem 0; }
.section--sm { padding: 3rem 0; }
.section--bg { background: var(--color-surface-section); }
.section--white { background: var(--color-white); }

/* === Buttons === */
.btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  font-family: var(--font-b);
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
  text-decoration: none;
}

.btn--primary {
  background: var(--color-olive);
  color: var(--color-white);
  border-color: var(--color-olive);
}
.btn--primary:hover {
  background: var(--color-olive-dark);
  border-color: var(--color-olive-dark);
}

.btn--dark {
  background: var(--color-text);
  color: var(--color-white);
  border-color: var(--color-text);
}
.btn--dark:hover {
  background: var(--color-text);
  border-color: var(--color-text);
}

.btn--outline {
  background: transparent;
  color: var(--color-olive);
  border-color: var(--color-olive);
}
.btn--outline:hover {
  background: var(--color-olive);
  color: var(--color-white);
}

/* === Header / Nav === */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--color-white);
  border-bottom: 1px solid var(--color-border-olive-soft);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100%, 1800px);
  max-width: none;
  min-height: clamp(78px, 8vw, 120px);
  padding-inline: clamp(0.75rem, 2vw, 1.75rem);
}

.site-header .logo {
  flex-shrink: 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: clamp(0.75rem, 1.2vw, 1.25rem);
  text-decoration: none;
}

.logo__img {
  width: clamp(74px, 5.8vw, 108px);
  height: auto;
  flex-shrink: 0;
}

.logo__text {
  font-family: var(--font-h);
  font-size: clamp(1.15rem, 1.7vw, 1.85rem);
  font-weight: 400;
  color: var(--color-olive);
  line-height: 0.95;
}

.site-nav ul {
  display: flex;
  gap: clamp(1.25rem, 2.2vw, 2.75rem);
  align-items: center;
}

.site-nav {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.site-nav a {
  font-family: var(--font-h);
  font-size: clamp(1.05rem, 1.25vw, 1.6rem);
  font-weight: 400;
  color: var(--color-olive);
  letter-spacing: 0.01em;
  text-decoration: none;
  position: relative;
  padding-bottom: 2px;
  transition: color var(--transition);
}

.site-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-olive);
  transition: width var(--transition);
}

.site-nav a:hover::after,
.site-nav a.active::after {
  width: 100%;
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--color-olive-dark);
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 30px;
  height: 30px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--color-olive);
  transition: transform var(--transition), opacity var(--transition);
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* === Hero Section === */
.hero {
  position: relative;
  min-height: 700px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero .container {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: min(100%, 1500px);
  max-width: none;
  padding-inline: clamp(1.25rem, 2.5vw, 2.5rem);
}

.hero__bg {
  position: absolute;
  inset: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero__content {
  position: relative;
  z-index: 1;
  background: rgba(255, 255, 255, 0.92);
  padding: clamp(1.9rem, 2.4vw, 2.5rem) clamp(2.6rem, 4vw, 4rem) clamp(1.9rem, 2.4vw, 2.5rem) clamp(2.6rem, 4vw, 4rem);
  width: min(100%, 700px);
  max-width: 700px;
  margin: 3rem 0;
}

.hero__content h1 {
  color: var(--color-olive);
  font-weight: 500;
  font-size: 2.45rem;
  max-width: 36ch;
}

.hero__subtitle {
  font-size: 1.2rem;
  color: var(--color-text);
  margin-top: 1rem;
  line-height: 1.55;
  max-width: 74ch;
}

.hero__cta {
  margin-top: 2rem;
}

.hero__cta .btn {
  font-size: 1rem;
  font-weight: 600;
}

@media (max-width: 1200px) {
  .hero .container {
    width: min(100%, 1100px);
    padding-inline: 1.5rem;
  }

  .hero__content {
    width: min(100%, 640px);
    max-width: 640px;
    padding: 1.8rem 2.2rem;
    margin: 2.5rem 0;
  }

  .hero__subtitle {
    max-width: 52ch;
  }
}

/* === Page Hero (with bg image banner) === */
.page-hero {
  position: relative;
  height: clamp(220px, 30vw, 320px);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

.page-hero__bg {
  position: absolute;
  inset: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.page-hero__inner--arbeitsweise {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.page-hero__box {
  position: relative;
  z-index: 1;
  background: var(--color-white);
  padding: 1.75rem 2.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 3rem;
  margin-left: 0;
}

.page-hero__icon {
  width: 48px;
  height: 48px;
  opacity: 0.7;
}

.page-hero__title {
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  color: var(--color-olive);
  font-style: italic;
}

.page-hero__box--arbeitsweise {
  padding: 1rem 3rem 1rem;
  margin-bottom: -1px;
  width: fit-content;
  max-width: min(100%, 620px);
  margin-inline: auto;
}

.page-hero__title--plain {
  font-size: clamp(2rem, 5vw, 3.2rem);
  color: var(--color-olive);
  font-style: normal;
  font-weight: 500;
}

/* === About Split Section === */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(0.25rem, 0.9vw, 1rem);
  align-items: center;
  width: min(100%, 1520px);
  margin: 0 auto;
  margin-top: 2.5rem;
  padding-inline: clamp(0.75rem, 2vw, 2rem);
}

.split--reverse .split__text { order: 2; }
.split--reverse .split__image { order: 1; }

.split__text {
  padding: 4rem 2.25rem 4rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.5rem;
  background: var(--color-white);
  max-width: 780px;
  width: 100%;
  justify-self: end;
}

.split__text h2 {
  color: var(--color-taupe);
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.2;
  max-width: 62ch;
}

.split__text p {
  color: var(--color-text);
  font-size: 1rem;
  line-height: 1.8;
  max-width: 62ch;
  text-align: justify;
}

.split__image {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.5rem, 1vw, 1rem);
}

.split__image img {
  width: min(100%, 500px);
  height: auto;
  max-height: 680px;
  object-fit: cover;
}

/* === Quote Section === */
.quote-section {
  padding: 1.25rem 0 4rem;
  text-align: center;
  background: var(--color-white);
}

.quote-section .container {
  width: min(100%, 1700px);
  max-width: none;
  padding-inline: clamp(1rem, 2vw, 2rem);
}

.quote-section blockquote {
  font-family: var(--font-h);
  font-size: 2rem;
  font-weight: 500;
  font-style: italic;
  color: var(--color-taupe);
  width: min(100%, 1600px);
  max-width: 1600px;
  margin: 0 auto;
  line-height: 1.2;
  text-align: center;
}

/* === Services Section === */
.services {
  background: var(--color-surface-soft);
  padding: 4rem 0 5rem;
  scroll-margin-top: 130px;
}

.services .container {
  width: min(100%, 1350px);
  max-width: none;
}

.services__header {
  text-align: center;
  margin-bottom: 1rem;
}

.services__header h2 {
  color: var(--color-brown);
  font-size: 2.45rem;
  font-weight: 500;
  line-height: 1.2;
}

.services__intro {
  text-align: center;
  max-width: 880px;
  margin: 0 auto 3.5rem;
  color: var(--color-text);
  font-size: 1rem;
  line-height: 1.8;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0rem;
  margin-bottom: 5rem;
}

.service-card {
  text-align: center;
}

.service-card__icon {
  width: 112px;
  height: 112px;
  margin: 0 auto 1.5rem;
}

.service-card__icon--brown {
  color: var(--color-brown);
}

.service-card__icon--taupe {
  color: var(--color-taupe);
}

.service-card__icon--olive {
  color: var(--color-olive);
}

.service-card__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.service-card h3 {
  color: var(--color-text);
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.service-card h3.service-card__title--dark {
  color: var(--color-brown);
}

.service-card h3.service-card__title--taupe {
  color: var(--color-taupe);
}

.service-card h3.service-card__title--green {
  color: var(--color-olive);
}

.service-card ul {
  list-style: none;
  padding: 0;
}

.service-card ul li {
  font-size: 1rem;
  color: var(--color-text);
  padding: 0.15rem 0;
  line-height: 1.35;
}

.services__cta-box {
  background: var(--color-surface-warm);
  padding: 2.4rem 2rem 2.2rem;
  text-align: center;
  max-width: 860px;
  margin: 0 auto;
  box-shadow: 10px 10px 0 var(--color-taupe);
  border-radius: 2px;
}

.services__cta-box p {
  color: var(--color-text);
  margin-bottom: 0.65rem;
  font-size: 1.05rem;
  line-height: 1.45;
}

.services__cta-box p strong {
  color: var(--color-text);
  font-weight: 700;
}

.services__cta-box .btn {
  min-width: 250px;
  margin-top: 1.6rem;
  background: var(--color-brown);
  border-color: var(--color-brown);
  font-size: 1rem;
  font-weight: 600;
}

.services__cta-box .btn:hover {
  background: #6E5644;
  border-color: #6E5644;
}

/* === Simple Page Header === */
.page-header {
  text-align: center;
  padding: 4rem 0 0;
  background: var(--color-surface-soft);
}

.page-header h1 {
  color: var(--color-olive);
  font-style: normal;
  font-weight: 500;
}

/* === About Page === */
.about-bio {
  background: var(--color-surface-soft);
  padding: 4rem 0;
}

.about-bio .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: stretch;
}

.about-bio__text h2 {
  color: var(--color-olive);
  margin-bottom: 1.5rem;
}

.about-bio__text p {
  color: var(--color-text);
  font-size: 1rem;
  line-height: 1.9;
  margin-bottom: 1rem;
  text-align: justify;
}

.about-bio__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* === Timeline === */
.timeline {
  background: var(--color-surface-warm);
  padding: 5rem 0;
}

.timeline h2 {
  color: var(--color-brown);
  text-align: center;
  margin-bottom: 3rem;
  font-size: 2.45rem;
  font-weight: 500;
  line-height: 1.2;
}

.timeline__list {
  max-width: 820px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  justify-items: center;
  padding-left: 1rem;
}

.timeline__item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 9rem;
  width: 100%;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--color-border-olive-mid);
  align-items: start;
}

.timeline__item:last-child {
  border-bottom: none;
}

.timeline__date {
  font-family: var(--font-h);
  font-size: 1rem;
  color: var(--color-brown);
  font-style: italic;
  padding-top: 0.2rem;
  text-align: right;
  font-weight: 500;
}

.timeline__content strong {
  display: block;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 0.25rem;
}

.timeline__content span {
  display: block;
  font-size: 0.9rem;
  color: var(--color-text);
  font-style: italic;
}

.timeline__content em {
  display: block;
  font-size: 0.85rem;
  color: var(--color-text);
  margin-top: 0.5rem;
  font-style: italic;
}

.timeline__content {
  text-align: left;
}

/* === Fortbildungen === */
.further-education {
  background: var(--color-white);
  padding: 5rem 0;
}

.further-education .container {
  max-width: 1200px;
}

.further-education h2 {
  color: var(--color-olive);
  text-align: center;
  margin-bottom: 2.5rem;
  font-size: 2.45rem;
  font-weight: 500;
  line-height: 1.2;
}

.further-education ul {
  max-width: 850px;
  margin: 0 auto;
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(6, 82px);
  justify-content: center;
  gap: 3.1rem;
}

.further-education ul li {
  grid-column: span 2;
  min-height: 230px;
  padding: 1.6rem 1.15rem;
  background: var(--color-card-soft);
  box-shadow: 10px 10px 0 var(--color-card-shadow);
  font-size: 0.98rem;
  color: var(--color-text);
  line-height: 1.45;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.further-education ul li:nth-last-child(2):nth-child(3n + 1) {
  grid-column: 2 / span 2;
}

.further-education ul li:last-child:nth-child(3n + 2) {
  grid-column: 4 / span 2;
}

.further-education ul li::before {
  content: '·';
  position: absolute;
  left: 0;
  color: var(--color-olive);
  font-size: 1.5rem;
  line-height: 1;
  top: 0.95rem;
}

.further-education ul li::before {
  content: '';
  left: 0.1rem;
  top: 1.55rem;
  width: 0.65rem;
  height: 0.65rem;
  border-radius: 50%;
  background: var(--color-olive);
  box-shadow: 0 0 0 6px var(--color-ring-olive);
}

.further-education ul li:last-child {
  border-bottom: none;
}

@media (max-width: 768px) {
  .further-education ul {
    padding: 1rem 1rem 1rem 1.15rem;
  }

  .further-education ul li {
    padding-left: 1.75rem;
    font-size: 1rem;
  }
}

.further-education ul li {
  border-bottom: none;
  position: static;
}

.further-education ul li::before {
  content: none;
}

@media (max-width: 768px) {
  .further-education ul {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 0;
  }

  .further-education ul li {
    min-height: auto;
    padding: 1.75rem 1.25rem;
  }
}

@media (max-width: 980px) {
  .further-education .container {
    max-width: 900px;
  }

  .further-education ul {
    max-width: 520px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
  }

  .further-education ul li {
    width: 170px;
    min-height: 210px;
    padding: 1.4rem 1rem;
    grid-column: auto;
  }

  .further-education ul li:nth-last-child(2):nth-child(3n + 1),
  .further-education ul li:last-child:nth-child(3n + 2) {
    grid-column: auto;
  }
}

@media (max-width: 560px) {
  .further-education .container {
    max-width: 560px;
  }

  .further-education ul {
    max-width: 100%;
    gap: 1.25rem;
  }

  .further-education ul li {
    width: min(100%, 280px);
    min-height: auto;
    padding: 1.35rem 1.1rem;
    box-shadow: 8px 8px 0 var(--color-card-shadow);
    font-size: 1rem;
  }
}

/* === Arbeitsweise Page === */
.arbeitsweise-intro {
  background: var(--color-white);
  padding: 4rem 0;
}

.arbeitsweise-intro .container {
  display: flex;
  justify-content: center;
}

.arbeitsweise-intro__text {
  max-width: 105ch;
  text-align: center;
}

.arbeitsweise-intro__text p {
  color: var(--color-text);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.arbeitsweise-intro__text a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 0.16em;
}

.arbeitsweise-intro__photo img {
  width: 100%;
  object-fit: cover;
}

/* === Process Steps === */
.process {
  background: var(--color-surface-soft);
  padding: 5rem 0;
}

.process .container {
  max-width: 1260px;
}

.process__steps {
  max-width: 700px;
}

.process__step {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  align-items: flex-start;
}

.process__step-num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-brown);
  color: var(--color-white);
  font-family: var(--font-h);
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.process__step-body strong {
  display: block;
  font-family: var(--font-h);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--color-brown);
  margin-bottom: 0.5rem;
}

.process__step-body p {
  font-size: 0.9rem;
  color: var(--color-text);
  line-height: 1.8;
  margin-bottom: 0.5rem;
  text-align: justify;
  max-width: 52ch;
}

.process__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5.5rem;
  align-items: center;
}

.process__photo {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.process__photo img {
  width: 100%;
  object-fit: cover;
}

.process__cta {
  margin-top: 2rem;
  align-self: center;
}

.process__cta .btn {
  min-width: 250px;
  background: var(--color-brown);
  border-color: var(--color-brown);
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
}

.process__cta .btn:hover {
  background: #6E5644;
  border-color: #6E5644;
}

/* === Zuweisung === */
.zuweisung {
  background: var(--color-olive);
  border-radius: 50px;
  padding: 3rem 4rem;
  margin: 3rem auto;
  max-width: 900px;
  text-align: center;
  color: var(--color-white);
}

.zuweisung h3 {
  color: var(--color-white);
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.zuweisung p {
  font-size: 0.95rem;
  line-height: 1.8;
  opacity: 0.95;
  margin-bottom: 0.5rem;
}

/* === Preise Page === */
.preise-hero {
  background: var(--color-surface-soft);
  padding: 4rem 0;
  text-align: center;
}

.preise-hero h1 {
  color: var(--color-olive);
  font-style: normal;
  font-weight: 500;
}

.price-table {
  background: var(--color-surface-soft);
  padding: 1rem 0 4rem;
}

.price-box {
  max-width: 750px;
  margin: 0 auto;
  background: var(--color-white);
  padding: 2rem 2.5rem;
}

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 4rem;
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--color-surface-section);
}

.price-row:first-child {
  padding-top: 0;
}

.price-label {
  font-size: 0.95rem;
  color: var(--color-text);
}

.price-label small {
  display: block;
  font-size: 0.8rem;
  color: var(--color-text);
  font-style: italic;
  margin-top: 0.2rem;
}

.price-amount {
  font-family: var(--font-h);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--color-brown);
  white-space: nowrap;
  margin-left: 1rem;
}

.price-note {
  padding-top: 1rem;
  font-size: 0.82rem;
  color: var(--color-text);
  font-style: italic;
}

.insurance-section {
  background: var(--color-white);
  padding: 4rem 0;
}

.insurance-section .container {
  max-width: 750px;
}

.insurance-block {
  margin-bottom: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--color-surface-section);
}

.insurance-block:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.insurance-block h3 {
  color: var(--color-olive);
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}

.insurance-block p {
  font-size: 0.9rem;
  color: var(--color-text);
  line-height: 1.8;
}

.payment-section {
  background: var(--color-surface-soft);
  padding: 3rem 0;
}

.payment-section .container {
  max-width: 750px;
}

.payment-block {
  margin-bottom: 2rem;
}

.payment-block:last-child {
  margin-bottom: 0;
}

.payment-block strong {
  display: block;
  font-weight: 700;
  color: var(--color-brown);
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.payment-block p {
  font-size: 0.9rem;
  color: var(--color-text);
  line-height: 1.8;
  margin-bottom: 0.25rem;
}

.payment-block em {
  display: block;
  font-size: 0.85rem;
  color: var(--color-text);
  font-style: italic;
  margin-top: 0.5rem;
}

/* === Kontakt Page === */
.kontakt-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.kontakt-page main {
  flex: 1;
  display: flex;
}

.kontakt-hero {
  background: var(--color-surface-soft);
  padding: 4rem 0;
  text-align: center;
  flex: 1;
  width: 100%;
  display: flex;
  align-items: center;
}

.kontakt-hero .container {
  max-width: 600px;
}

.kontakt-hero h1 {
  color: var(--color-brown);
  margin-bottom: 2rem;
  font-style: normal;
  font-weight: 500;
  transform: translateY(-1rem);
}

.kontakt-hero p {
  color: var(--color-text);
  font-size: 1rem;
  line-height: 1.55;
  margin-bottom: 0.25rem;
}

.kontakt-hero .btn {
  min-width: 250px;
  margin-top: 2.5rem;
  background: var(--color-brown);
  border-color: var(--color-brown);
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
}

.kontakt-hero .btn:hover {
  background: #6E5644;
  border-color: #6E5644;
}

/* === Simple Content Pages (Impressum/Datenschutz) === */
.legal-content {
  padding: 4rem 0 6rem;
}

.legal-content .container {
  max-width: 750px;
}

.legal-content h1 {
  color: var(--color-olive);
  margin-bottom: 2rem;
  font-style: normal;
  font-weight: 500;
}

.legal-content h3 {
  color: var(--color-text);
  font-size: 1.1rem;
  margin: 2rem 0 0.75rem;
}

.legal-content p {
  font-size: 0.9rem;
  color: var(--color-text);
  line-height: 1.9;
  margin-bottom: 1rem;
}

.legal-content ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.legal-content ul li {
  font-size: 0.9rem;
  color: var(--color-text);
  padding: 0.2rem 0;
}

.legal-content a {
  color: var(--color-olive-dark);
  text-decoration: underline;
}

/* === Footer === */
.site-footer {
  background: var(--color-surface-warm);
  padding: 3.5rem 0;
}

.site-footer .container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: min(100%, 1450px);
  max-width: none;
  gap: 4rem;
}

.footer__info h3 {
  color: var(--color-brown);
  font-family: var(--font-h);
  font-size: 1.55rem;
  font-weight: 700;
  margin-bottom: 1.15rem;
}

.footer__info p,
.footer__info a {
  font-size: 1rem;
  color: var(--color-brown);
  font-weight: 700;
  line-height: 1.85;
  display: block;
}

.footer__email-text {
  text-decoration: underline;
  text-underline-offset: 0.16em;
}

.footer__phone-text {
  text-decoration: underline;
  text-underline-offset: 0.16em;
}

.footer__info p .footer__email-link,
.footer__info p .footer__phone-link {
  display: inline;
}

.footer__info a:hover {
  color: var(--color-olive-dark);
  text-decoration: underline;
}

.footer__links {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.8rem;
  padding-top: 2.8rem;
}

.footer__links a {
  font-size: 1rem;
  color: var(--color-brown);
  font-weight: 700;
  text-decoration: underline;
}

.footer__links a:hover {
  color: var(--color-olive-dark);
}

/* ============================================================
   Responsive
   ============================================================ */

@media (max-width: 750px) {
  .nav-toggle {
    display: flex;
  }

  .site-nav {
    display: none;
    position: absolute;
    top: 78px;
    left: 0;
    right: 0;
    background: var(--color-white);
    border-bottom: 1px solid rgba(164,169,116,0.2);
    padding: 1rem 0;
    z-index: 99;
    flex: none;
  }

  .site-nav.is-open {
    display: block;
  }

  .site-nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 0 1.5rem;
  }

  .site-nav ul li {
    width: 100%;
    border-bottom: 1px solid rgba(164,169,116,0.1);
  }

  .site-nav a {
    display: block;
    font-family: var(--font-b);
    font-size: 0.98rem;
    padding: 0.85rem 0;
  }

  .site-header {
    position: relative;
  }
}

@media (max-width: 970px) {
  .page-hero {
    height: 220px;
  }

  .split {
    grid-template-columns: 1fr;
    margin-top: 1.5rem;
  }

  .split--reverse .split__text { order: unset; }
  .split--reverse .split__image { order: unset; }

  .split__text {
    padding: 2.5rem 1.5rem;
    max-width: 760px;
    justify-self: center;
    text-align: center;
    align-items: center;
  }

  .split__text h2,
  .split__text p {
    max-width: 100%;
  }

  .split__image {
    padding: 0 1.5rem 1.5rem;
  }

  .services__grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }

  .about-bio .container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-bio__photo {
    display: flex;
    justify-content: center;
  }

  .about-bio__photo img {
    width: min(100%, 420px);
    height: auto;
  }

  .arbeitsweise-intro .container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .process__layout {
    grid-template-columns: 1fr;
  }

  .process__photo img {
    width: min(100%, 420px);
  }

  .zuweisung {
    padding: 2.5rem 2rem;
    border-radius: 30px;
  }

  .site-footer .container {
    flex-direction: column;
  }

  .footer__links {
    align-items: flex-start;
  }
}

@media (max-width: 500px) {
  .site-header .container {
    min-height: 78px;
    padding-inline: 1rem 1.25rem;
  }

  .logo {
    gap: 0.65rem;
  }

  .logo__img {
    width: 64px;
  }

  .logo__text {
    font-size: 1.05rem;
    font-weight: 400;
    line-height: 1;
  }

  .nav-toggle {
    display: flex;
  }

  .site-nav {
    display: none;
    position: absolute;
    top: 78px;
    left: 0;
    right: 0;
    background: var(--color-white);
    border-bottom: 1px solid rgba(164,169,116,0.2);
    padding: 1rem 0;
    z-index: 99;
    flex: none;
  }

  .site-nav.is-open {
    display: block;
  }

  .site-nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 0 1.5rem;
  }

  .site-nav ul li {
    width: 100%;
    border-bottom: 1px solid rgba(164,169,116,0.1);
  }

  .site-nav a {
    display: block;
    font-family: var(--font-b);
    font-size: 0.98rem;
    padding: 0.85rem 0;
  }

  .site-header {
    position: relative;
  }

  .hero {
    min-height: 540px;
  }

  .hero .container {
    justify-content: center;
  }

  .hero__content {
    padding: 2rem;
    max-width: 100%;
    width: 100%;
    margin: 0;
    text-align: center;
  }

  .hero__cta {
    display: flex;
    justify-content: center;
  }

  .page-hero {
    height: 220px;
    align-items: flex-end;
  }

  .page-hero__box {
    margin-bottom: 1.5rem;
    padding: 1.25rem 1.5rem;
  }

  .page-hero__box--arbeitsweise {
    margin-bottom: -1px;
    padding: 1rem 1.5rem 0.7rem;
    max-width: min(100%, 92vw);
  }

  .timeline__item {
    grid-template-columns: 1fr;
    gap: 0.25rem;
  }

  .timeline__list {
    max-width: 100%;
  }

  .timeline__date,
  .timeline__content {
    text-align: left;
  }

  .about-bio__photo img {
    width: 100%;
  }

  .section { padding: 3rem 0; }

  .price-row {
    flex-direction: column;
    gap: 0.25rem;
  }

  .zuweisung {
    padding: 2rem 1.5rem;
    border-radius: 20px;
  }

  .kontakt-hero {
    padding: 4rem 0;
    min-height: unset;
  }
}

@media (max-width: 480px) {
  .hero__content {
    padding: 1.5rem;
  }

  .split__text {
    padding: 2rem 1.25rem;
  }

  .price-box {
    padding: 1.5rem;
  }

  .process__step {
    flex-direction: column;
  }
}
