/* ============================================
   Psychotherapie Schleich & Team – Stylesheet
   Design Guide: 02-accounts/psychotherapie-schleich/branding/design-guide.md
   ============================================ */

/* --- Self-hosted Figtree (SIL OFL, variable font, DSGVO-konform) --- */
@font-face {
  font-family: 'Figtree';
  font-style: normal;
  font-weight: 300 900;
  font-display: swap;
  src: url('../fonts/figtree-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Figtree';
  font-style: normal;
  font-weight: 300 900;
  font-display: swap;
  src: url('../fonts/figtree-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Figtree';
  font-style: italic;
  font-weight: 300 900;
  font-display: swap;
  src: url('../fonts/figtree-italic-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Figtree';
  font-style: italic;
  font-weight: 300 900;
  font-display: swap;
  src: url('../fonts/figtree-italic-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* --- Design Tokens --- */
:root {
  /* Brand-Palette aus dem Logo (branding/README.md) */
  --brand-cream: #fbf3f0;
  --brand-sage: #c1c1b5;
  --brand-rose: #ddd0c7;
  --brand-overlap: #acaa9b;
  --brand-anthracite: #1f2427;

  /* Salbei-Stufen: hell für Flächen, dunkel für Text und Buttons (AA-geprüft) */
  --sage-100: #eef0ea;
  --sage-300: #c1c1b5;
  --sage-500: #9ca88f;
  --sage-600: #7f8b74;
  --sage-700: #64715b;
  --sage-800: #536049;

  /* Flächen */
  --color-bg: #faf8f5;
  --color-surface: #ffffff;
  --color-bg-alt: #f4f1ec;
  --color-border: #e6e1d9;
  --color-border-strong: #cfc9bf;

  /* Text */
  --color-text: #2e3336;
  --color-text-light: #616568;
  --color-text-heading: var(--brand-anthracite);
  --color-link: var(--sage-700);
  --color-link-hover: var(--sage-800);

  /* Footer */
  --color-footer-bg: var(--brand-anthracite);
  --color-footer-text: var(--brand-rose);

  /* Ankündigung / Praxisumzug */
  --color-announce-bg: var(--sage-300);
  --color-announce-text: var(--brand-anthracite);
  --color-announce-strong: var(--brand-anthracite);
  --color-announce-border: var(--brand-overlap);

  --font-sans: 'Figtree', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  --font-body: var(--font-sans);
  --font-heading: var(--font-sans);

  --max-width: 1240px;
  --radius: 10px;
  --radius-sm: 6px;
  --transition: 0.25s ease;
}

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

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

body {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  color: var(--color-text);
  background-color: var(--color-bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--color-text-heading);
  line-height: 1.25;
  font-weight: 400;
  letter-spacing: -0.005em;
}

h1 { font-size: 2.4rem; font-weight: 300; }
h2 { font-size: 1.9rem; margin-bottom: 1rem; }
h3 { font-size: 1.25rem; font-weight: 500; margin-bottom: 0.75rem; }

p { margin-bottom: 1rem; }

a {
  color: var(--color-link);
  text-decoration: none;
  transition: color var(--transition);
}
a:hover { color: var(--color-link-hover); }

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

/* Eyebrow: kleine Überzeile in Salbei, uppercase */
.eyebrow {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sage-700);
  margin-bottom: 0.6rem;
}

/* --- Skip Link (Accessibility) --- */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 200;
  padding: 0.75rem 1.5rem;
  background: var(--color-text-heading);
  color: var(--color-bg);
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: 0 0 4px 4px;
  transition: top 0.2s;
}

.skip-link:focus {
  top: 0;
  color: var(--color-bg);
}

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

.section {
  padding: 5rem 0;
}

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

/* --- Breadcrumbs --- */
.breadcrumb {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 1rem 2rem 0;
}

.breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  gap: 0.25rem;
  font-size: 0.85rem;
  color: var(--color-text-light);
}

.breadcrumb__list li::after {
  content: '›';
  margin-left: 0.4rem;
}

.breadcrumb__list li:last-child::after {
  content: '';
}

.breadcrumb__list a {
  color: var(--color-text-light);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.breadcrumb__list a:hover {
  color: var(--color-text-heading);
}

.breadcrumb__list li:last-child {
  color: var(--color-text);
}

/* --- Sticky-Kopf: Ankündigung + Navigation laufen beim Scrollen zusammen mit --- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
}

.site-header .nav {
  position: relative;
  top: auto;
}

/* --- Navigation --- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--color-bg);
  border-bottom: 1px solid var(--color-border);
}

.nav__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 1rem 2rem;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: var(--color-text-heading);
}

.nav__logo-img {
  height: 60px;
  width: auto;
}

.nav__links {
  display: flex;
  list-style: none;
  gap: 0.25rem;
  align-items: center;
}

.nav__links > li {
  position: relative;
}

.nav__links > li > a {
  display: block;
  padding: 0.6rem 1rem;
  font-size: 1rem;
  font-weight: 400;
  color: var(--color-text);
  transition: color var(--transition);
}

.nav__links > li > a:hover {
  color: var(--sage-700);
}

/* Dropdown */
.nav__dropdown-toggle {
  cursor: pointer;
}

.nav__dropdown-toggle::after {
  content: ' \25BE';
  font-size: 0.6rem;
  vertical-align: 2px;
  margin-left: 2px;
  color: var(--color-text-light);
}

.nav__dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  min-width: 240px;
  z-index: 50;
  box-shadow: 0 8px 24px rgba(31, 36, 39, 0.08);
  list-style: none;
  padding: 0.5rem 0;
  margin: 0;
}

.nav__links > li:hover .nav__dropdown {
  display: block;
}

.nav__dropdown a {
  display: block;
  padding: 0.6rem 1.25rem;
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--color-text);
  transition: color var(--transition), background var(--transition);
}

.nav__dropdown a:hover {
  color: var(--sage-700);
  background: var(--sage-100);
}

/* Termin buchen als Button: die Buchung ist die Hauptaktion der Seite und
   soll sich vom Rest der Navigationszeile abheben. */
.nav__links > li > .nav__cta {
  margin-left: 0.5rem;
  padding: 0.55rem 1.1rem;
  border: 1px solid var(--sage-700);
  border-radius: var(--radius-sm);
  background: var(--sage-700);
  color: #fff;
  font-weight: 500;
  white-space: nowrap;
  transition: background var(--transition), border-color var(--transition);
}

.nav__links > li > .nav__cta:hover {
  background: var(--sage-800);
  border-color: var(--sage-800);
  color: #fff;
}

/* Derselbe Button schließt das Psychotherapie-Dropdown ab, durch eine Linie
   von den Themenseiten darüber getrennt. */
.nav__dropdown-cta {
  margin-top: 0.4rem;
  padding: 0.7rem 1.25rem 0.2rem;
  border-top: 1px solid var(--color-border);
}

.nav__dropdown-cta a {
  padding: 0.55rem 1rem;
  border-radius: var(--radius-sm);
  background: var(--sage-700);
  color: #fff;
  font-weight: 500;
  text-align: center;
}

.nav__dropdown-cta a:hover {
  background: var(--sage-800);
  color: #fff;
}

/* Mobile nav toggle */
.nav__toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text);
  margin: 5px 0;
  transition: var(--transition);
}

/* --- Ankündigung: Praxisumzug --- */
.announce {
  background: var(--color-announce-bg);
  color: var(--color-announce-text);
  border-bottom: 1px solid var(--color-announce-border);
  text-align: center;
  font-size: 0.875rem;
  line-height: 1.5;
  padding: 0.5rem 1.25rem;
}

.announce strong {
  color: var(--color-announce-strong);
  font-weight: 600;
}

/* --- Hero (Startseite): Text links, Praxisfoto mit Bildmarke rechts --- */
.hero {
  overflow: hidden;
}

.hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 11fr) minmax(0, 13fr);
  gap: 3rem;
  align-items: center;
  padding-left: max(2rem, calc((100% - var(--max-width)) / 2 + 2rem));
  padding-right: 0;
}

.hero__text {
  padding: 4.5rem 0;
}

.hero__text h1 {
  font-size: clamp(2.4rem, 4.3vw, 3.6rem);
  line-height: 1.12;
  font-weight: 300;
  margin-bottom: 0;
}

.hero__rule {
  width: 48px;
  height: 2px;
  background: var(--sage-500);
  margin: 1.6rem 0;
}

.hero__lead {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--color-text);
  max-width: 36rem;
  margin-bottom: 0;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2rem;
}

.hero__actions .btn {
  margin-top: 0;
}

.hero__note {
  margin-top: 1rem;
  margin-bottom: 0;
  max-width: 36rem;
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--color-text-light);
}

.hero__note a {
  color: var(--color-link);
  text-decoration: underline;
}

.hero__note a:hover {
  color: var(--color-link-hover);
}

.hero__visual {
  position: relative;
  min-height: 460px;
  align-self: stretch;
}

.hero__photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-mask-image: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, #000 52%);
  mask-image: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, #000 52%);
}

.hero__mark {
  position: absolute;
  left: -6%;
  top: 50%;
  width: 50%;
  max-width: 420px;
  transform: translateY(-50%);
  opacity: 0.82;
  pointer-events: none;
}

/* Hero-Bild auf Unterseiten (Vollbreite) */
.hero__img {
  width: 100%;
  height: auto;
  display: block;
  max-height: 500px;
  object-fit: cover;
}

/* --- Page Title --- */
.page-title {
  text-align: center;
  padding: 4rem 2rem 2rem;
}

.page-title h1 {
  font-size: 2.4rem;
  font-weight: 300;
}

.page-title--split {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-title__prefix {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--sage-700);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.page-title--split h1 {
  font-weight: 300;
}

/* --- Leistungs-Karten (Startseite, 4 Spalten) --- */
.services {
  padding: 1rem 0 4rem;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.service-card {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 1rem;
  align-items: start;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 1.5rem 1.35rem;
}

.service-card__icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--sage-100);
  color: var(--sage-600);
  display: grid;
  place-items: center;
}

.service-card__icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card h2 {
  font-size: 1.15rem;
  font-weight: 500;
  margin: 0.2rem 0 0.4rem;
}

.service-card p {
  font-size: 0.93rem;
  line-height: 1.55;
  color: var(--color-text-light);
  margin-bottom: 0.8rem;
}

.service-card__link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-link);
}

.service-card__link::after {
  content: ' \2192';
}

/* --- Intent-Intro (lokaler Einstieg) --- */
.page-intro {
  max-width: 850px;
  margin: 0 auto;
  padding: 0 2rem 2.5rem;
  text-align: center;
}

.page-intro p {
  color: var(--color-text);
  font-size: 1.05rem;
  line-height: 1.8;
  margin: 0;
}

.hub-link {
  text-align: center;
  padding: 0 2rem 4rem;
}

/* --- Zwei Blöcke: Team und Kontakt (Startseite) --- */
.blocks {
  display: grid;
  grid-template-columns: 1.55fr 1fr;
  gap: 1.25rem;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem 5rem;
}

.block {
  background: var(--color-bg-alt);
  border-radius: var(--radius);
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
}

.block h2 {
  font-size: 1.6rem;
  font-weight: 400;
  margin-bottom: 0.9rem;
}

.block p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--color-text-light);
  max-width: 30rem;
}

.block__link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-link);
}

.block__link::after {
  content: ' \2192';
}

.block--team {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: center;
}

/* Drei Porträts, leicht überlappend */
.block__avatars {
  display: flex;
  align-items: center;
  padding-left: 1.5rem;
}

.block__avatars picture {
  margin-left: -1.5rem;
  border-radius: 50%;
}

.block__avatars img {
  width: 132px;
  height: 132px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--color-surface);
  box-shadow: 0 2px 10px rgba(31, 36, 39, 0.08);
}

.block--contact .btn {
  margin: 0.4rem 0 1.4rem;
}

.contact-lines {
  list-style: none;
}

.contact-lines li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.95rem;
  margin-bottom: 0.45rem;
  color: var(--color-text);
}

.contact-lines svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  fill: none;
  stroke: var(--sage-600);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-lines a {
  color: var(--color-text);
}

.contact-lines a:hover {
  color: var(--sage-700);
}

.block__deco {
  position: absolute;
  right: 1.6rem;
  bottom: 1rem;
  width: 110px;
  height: 110px;
  color: var(--sage-500);
  opacity: 0.75;
  pointer-events: none;
}

.block__deco svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.1;
  stroke-linecap: round;
}

/* --- Therapy Cards (Unterseiten, 3 Spalten mit Foto) --- */
.therapy-cards {
  padding: 0 0 4rem;
}

.therapy-cards__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.therapy-card {
  text-align: left;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  overflow: hidden;
}

.therapy-card__img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.therapy-card h2,
.therapy-card h3 {
  font-size: 1.25rem;
  font-weight: 500;
  margin: 1.4rem 1.5rem 0.6rem;
}

.therapy-card p {
  color: var(--color-text-light);
  font-size: 0.95rem;
  line-height: 1.65;
  margin: 0 1.5rem 1.2rem;
}

.therapy-card__link {
  display: inline-block;
  margin: 0 1.5rem 1.5rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-link);
  transition: color var(--transition);
}

.therapy-card__link:hover {
  color: var(--color-link-hover);
}

/* --- About Section (Profile) --- */
.about {
  padding: 5rem 0;
  background: var(--color-bg-alt);
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 4rem;
  align-items: center;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.about__image img {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto;
  border: 6px solid var(--color-surface);
}

.about__text h2 {
  font-size: 1.7rem;
  margin-bottom: 1.25rem;
}

.about__text p {
  color: var(--color-text-light);
  font-size: 1rem;
  line-height: 1.75;
}

/* --- Buttons --- */
.btn {
  display: inline-block;
  padding: 0.8rem 1.6rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.2;
  border: 1px solid var(--color-border-strong);
  border-radius: var(--radius-sm);
  color: var(--color-text);
  background: transparent;
  transition: all var(--transition);
  cursor: pointer;
  text-decoration: none;
  margin-top: 1rem;
}

.btn:hover {
  background: var(--sage-100);
  border-color: var(--sage-500);
  color: var(--color-text-heading);
}

.btn:focus-visible {
  outline: 2px solid var(--sage-700);
  outline-offset: 3px;
}

.btn--primary {
  background: var(--sage-700);
  color: #fff;
  border-color: var(--sage-700);
}

.btn--primary:hover {
  background: var(--sage-800);
  border-color: var(--sage-800);
  color: #fff;
}

/* Zentrierte CTA-Zeile im Fließtext */
.cta-row {
  text-align: center;
  margin: 2.5rem 0 0.5rem;
}

@media (max-width: 768px) {
  .cta-row .btn {
    display: block;
    width: 100%;
  }
}

/* Kompakter Fakten-Block (Preis, Wartezeit) */
.key-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  margin: 2rem 0 0.5rem;
  background: var(--color-border);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  overflow: hidden;
}

.key-facts__item {
  background: var(--color-surface);
  padding: 1.25rem 1.5rem;
}

.key-facts dt {
  font-weight: 500;
  color: var(--color-text-heading);
  margin-bottom: 0.4rem;
}

.key-facts dd {
  margin: 0;
  color: var(--color-text);
  line-height: 1.5;
}

@media (max-width: 768px) {
  .key-facts {
    grid-template-columns: 1fr;
  }
}

/* --- Content Sections (alternating image/text) --- */
.content-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: center;
}

.content-row--reverse {
  direction: rtl;
}

.content-row--reverse > * {
  direction: ltr;
}

.content-row__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 350px;
}

.content-row__text {
  padding: 3rem 4rem;
}

.content-row__text h2 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
}

.content-row__text p {
  color: var(--color-text-light);
  font-size: 1rem;
  line-height: 1.75;
}

/* --- Subpage Content (long-form text) --- */
.subpage-content {
  max-width: 850px;
  margin: 0 auto;
  padding: 0 2rem 5rem;
}

.subpage-content p {
  color: var(--color-text);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.subpage-content h2 {
  font-size: 1.6rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.subpage-content ul {
  margin-bottom: 2rem;
  padding-left: 1.5rem;
}

.subpage-content ul li {
  margin-bottom: 0.5rem;
  line-height: 1.7;
  color: var(--color-text);
}

.subpage-content__img {
  width: 100%;
  margin: 2rem 0;
  border-radius: var(--radius);
}

/* --- Gallery --- */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.gallery__img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: var(--radius);
}

@media (max-width: 768px) {
  .gallery {
    grid-template-columns: 1fr;
  }
}

/* --- Kosten --- */
.kosten__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.kosten-card {
  background: var(--color-surface);
  padding: 2.5rem 2rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  text-align: center;
}

.kosten-card h2 {
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.kosten-card p {
  color: var(--color-text-light);
  font-size: 0.95rem;
}

/* --- Team --- */
.team__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 340px));
  justify-content: center;
  gap: 3rem;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

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

.team-card__avatar {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1.5rem;
  border: 5px solid var(--color-surface);
  box-shadow: 0 2px 12px rgba(31, 36, 39, 0.06);
}

.team-card__avatar--placeholder {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: var(--sage-100);
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: var(--color-text-light);
  border: 1px solid var(--color-border);
}

.team-card h2 {
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 0.25rem;
}

.team-card__role {
  color: var(--color-text-light);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.team-card__bio {
  color: var(--color-text-light);
  font-size: 0.95rem;
  line-height: 1.65;
  text-align: left;
  max-width: 320px;
  margin: 0 auto;
}

.team-card__vita-link {
  display: inline-block;
  margin-top: 1.25rem;
  padding: 0.5rem 1.25rem;
  background: var(--color-surface);
  color: var(--color-text);
  font-size: 0.9rem;
  text-decoration: none;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
}

.team-card__vita-link:hover {
  background: var(--sage-100);
}

/* --- Contact --- */
.contact__grid {
  max-width: 600px;
  margin: 0 auto;
  padding: 0 2rem;
}

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

.contact__item-icon {
  width: 20px;
  font-size: 1.1rem;
  flex-shrink: 0;
  padding-top: 2px;
}

.contact__icon-svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--sage-600);
}

.contact__item-text strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-text-heading);
  margin-bottom: 0.15rem;
}

.contact__item-text span,
.contact__item-text a {
  color: var(--color-text-light);
  font-size: 1rem;
}

.contact__item-text a:hover {
  color: var(--sage-700);
}

.contact__map {
  max-width: 600px;
  margin: 2rem auto 0;
  padding: 0 2rem;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.contact__map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* --- FAQ --- */
.faq {
  max-width: 850px;
  margin: 0 auto;
  padding: 2rem 2rem 4rem;
}

.faq h2 {
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
}

.faq__item {
  border-bottom: 1px solid var(--color-border);
  padding: 1.25rem 0;
}

.faq__item:first-of-type {
  border-top: 1px solid var(--color-border);
}

.faq__question {
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--color-text-heading);
  margin-bottom: 0.5rem;
}

.faq__answer {
  color: var(--color-text-light);
  font-size: 0.98rem;
  line-height: 1.7;
}

/* --- Footer --- */
.footer {
  background: var(--color-footer-bg);
  color: var(--color-footer-text);
  padding: 3rem 0 2rem;
}

.footer__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.footer__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(221, 208, 199, 0.2);
}

.footer__logo img {
  height: 52px;
  width: auto;
}

.footer__nav {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.footer__nav a {
  color: var(--color-footer-text);
  font-size: 0.9rem;
  font-weight: 400;
  transition: color var(--transition);
}

.footer__nav a:hover {
  color: var(--brand-cream);
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.5rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer__info {
  font-size: 0.85rem;
  color: rgba(221, 208, 199, 0.7);
  line-height: 1.6;
}

.footer__legal {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}

.footer__legal a {
  color: var(--color-footer-text);
  font-size: 0.85rem;
  font-weight: 500;
  transition: color var(--transition);
}

.footer__legal a:hover {
  color: var(--brand-cream);
}

/* --- Legal Pages --- */
.legal {
  padding: 4rem 2rem;
  min-height: 60vh;
}

.legal__content {
  max-width: 750px;
  margin: 0 auto;
}

.legal__content h1 {
  font-size: 2.2rem;
  margin-bottom: 2rem;
}

.legal__content h2 {
  font-size: 1.35rem;
  font-weight: 500;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.legal__content p {
  color: var(--color-text-light);
  margin-bottom: 1rem;
}

/* --- Praxis Description --- */
.praxis-description {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem 3rem;
  text-align: center;
}

.praxis-description p {
  color: var(--color-text-light);
  font-size: 1rem;
  line-height: 1.8;
  max-width: 700px;
  margin: 0 auto 1rem;
}

/* --- Responsive --- */
@media (max-width: 1100px) {
  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .block--team {
    grid-template-columns: 1fr;
  }

  /* Sechs Navigationspunkte brauchen hier weniger Luft je Link, sonst bricht
     die Zeile um. */
  .nav__links > li > a {
    padding: 0.6rem 0.7rem;
  }
}

@media (max-width: 968px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }

  .hero__inner {
    grid-template-columns: 1fr;
    gap: 0;
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .hero__text {
    padding: 3rem 0 2.5rem;
  }

  .hero__visual {
    min-height: 300px;
    margin: 0 -2rem;
  }

  .hero__photo {
    -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, #000 30%);
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, #000 30%);
  }

  .hero__mark {
    width: 46%;
    left: -8%;
  }

  .therapy-cards__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 500px;
  }

  .about__grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: center;
  }

  .content-row {
    grid-template-columns: 1fr;
  }

  .content-row--reverse {
    direction: ltr;
  }

  .content-row__text {
    padding: 2.5rem 2rem;
  }

  .kosten__grid {
    grid-template-columns: 1fr;
    max-width: 500px;
  }

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

  .team__grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }

  /* Ab hier klappt die Navigation ins Burger-Menü. Sechs Punkte plus Logo
     brauchen rund 920px, darunter bricht die Zeile um. */
  .nav__logo-img {
    height: 46px;
  }

  /* Auf der Startseite umfasst der Sticky-Kopf zusätzlich das Umzugs-Banner.
     Der statische Nav macht den Kopf zum Bezugsrahmen der offenen Liste,
     damit top und max-height auf die volle Kopfhöhe rechnen. Auf allen
     anderen Seiten ist der Nav selbst der Bezugsrahmen. */
  .site-header .nav {
    position: static;
  }

  .nav__links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    max-height: calc(100vh - 100%);
    max-height: calc(100dvh - 100%);
    overflow-y: auto;
    overscroll-behavior: contain;
    background: var(--color-bg);
    flex-direction: column;
    align-items: stretch;
    padding: 1rem 0;
    border-bottom: 1px solid var(--color-border);
    box-shadow: 0 4px 12px rgba(31, 36, 39, 0.06);
  }

  .nav__links.open {
    display: flex;
  }

  .nav__links > li > a {
    padding: 0.6rem 2rem;
  }

  .nav__dropdown {
    position: static;
    box-shadow: none;
    border: none;
    background: transparent;
    padding-left: 1rem;
  }

  .nav__links > li:hover .nav__dropdown,
  .nav__dropdown {
    display: block;
  }

  /* Im offenen Menü steht der Button ohnehin als letzter Punkt der Liste;
     der zweite im aufgeklappten Dropdown wäre eine Dopplung. */
  .nav__dropdown-cta {
    display: none;
  }

  .nav__links > li > .nav__cta {
    margin: 0.6rem 2rem 0.2rem;
    text-align: center;
  }

  .nav__toggle {
    display: block;
  }

  .nav__toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .nav__toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .nav__toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
}

@media (max-width: 768px) {
  .hero__img {
    max-height: 300px;
  }

  .hero__text h1 {
    font-size: 2.2rem;
  }

  .hero__actions .btn {
    flex: 1 1 100%;
    text-align: center;
  }

  .page-title {
    padding: 2.5rem 1.5rem 1.5rem;
  }

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

  .block {
    padding: 1.8rem;
  }

  .block__avatars img {
    width: 96px;
    height: 96px;
  }

  .block__deco {
    width: 80px;
    height: 80px;
  }

  .footer__top {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }

  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer__nav {
    flex-wrap: wrap;
    justify-content: center;
  }

  .breadcrumb {
    padding: 0.75rem 1.5rem 0;
  }
}
