/* ==================================================================
   Praxis-Website Franziska Dornheim
   Atmosphärisch, botanisch — mit Schwerpunkte-Sektion und
   zentrierten Step-Kreisen.
   ================================================================== */

/* ── Self-hosted fonts ─────────────────────────────────────────── */
@font-face {
  font-family: 'Cormorant Garamond';
  src: url('assets/fonts/CormorantGaramond-Light.woff2') format('woff2');
  font-weight: 300; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Cormorant Garamond';
  src: url('assets/fonts/CormorantGaramond-Regular.woff2') format('woff2');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Cormorant Garamond';
  src: url('assets/fonts/CormorantGaramond-Italic.woff2') format('woff2');
  font-weight: 400; font-style: italic; font-display: swap;
}
@font-face {
  font-family: 'Manrope';
  src: url('assets/fonts/Manrope-Light.woff2') format('woff2');
  font-weight: 300; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Manrope';
  src: url('assets/fonts/Manrope-Regular.woff2') format('woff2');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Manrope';
  src: url('assets/fonts/Manrope-Medium.woff2') format('woff2');
  font-weight: 500; font-style: normal; font-display: swap;
}

/* ── Tokens ────────────────────────────────────────────────────── */
:root {
  --bg:           #efe9df;
  --bg-elevated:  #f6f1e6;
  --bg-soft:      #faf6ec;
  --bg-subtle:    #e6dfd0;
  --text:         #3a322a;
  --text-soft:    #5d5248;
  --text-muted:   #6f604f;
  --accent:       #8a9f94;
  --accent-dark:  #4a6359;
  --accent-soft:  #c2d4c6;
  --warm:         #b8a47a;
  --warm-soft:    #d6c9b4;
  --border:       #d6c9b4;
  --border-soft:  #ece4d2;

  --serif: 'Cormorant Garamond', 'EB Garamond', Georgia, serif;
  --sans:  'Manrope', -apple-system, system-ui, 'Segoe UI', sans-serif;

  --max:    96rem;
  --gutter: clamp(1.25rem, 4vw, 4rem);
}

/* ── Reset ─────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
ul { list-style: none; padding: 0; margin: 0; }
ol { padding: 0; margin: 0; list-style: none; }
blockquote { margin: 0; }
button { font: inherit; }
::selection { background: var(--accent-soft); color: var(--text); }

/* ── Skip link ─────────────────────────────────────────────────── */
.skip-link {
  position: absolute;
  left: -10000px;
  top: 0;
  background: var(--accent-dark);
  color: var(--bg);
  padding: .75rem 1rem;
  font-family: var(--sans);
  font-size: .8rem;
  letter-spacing: .14em;
  text-decoration: none;
  z-index: 1000;
}
.skip-link:focus { left: 1rem; top: 1rem; }

/* ── Atmospheric grain overlay ─────────────────────────────────── */
.grain {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  opacity: 0.45;
  mix-blend-mode: multiply;
}

/* ── Header ────────────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in srgb, var(--bg) 85%, transparent);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--border-soft);
}
.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 1rem var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.logo {
  display: flex;
  align-items: center;
  gap: .85rem;
  text-decoration: none;
  color: var(--text);
}
.logo svg { width: 42px; height: 42px; flex: 0 0 42px; }
.logo-wordmark { display: flex; flex-direction: column; line-height: 1; }
.logo-name { font-family: var(--serif); font-size: 1.25rem; }
.logo-tagline {
  font-family: var(--sans);
  font-size: 9px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-top: 4px;
  font-weight: 500;
}
.site-nav { display: flex; gap: 2.25rem; }
.site-nav a {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--text-soft);
  text-decoration: none;
  padding: .5rem 0;
  position: relative;
  transition: color 200ms ease;
}
.site-nav a:hover { color: var(--accent-dark); }
.site-nav a[aria-current="page"] { color: var(--accent-dark); }
.site-nav a[aria-current="page"]::after {
  content: '';
  position: absolute; left: 0; right: 0; bottom: -2px;
  height: 1px; background: var(--accent-dark);
}
.nav-toggle { display: none; background: transparent; border: 0; padding: .5rem; cursor: pointer; color: var(--text); }
.nav-toggle svg { width: 24px; height: 24px; }
.nav-toggle__icon--close { display: none; }
body[data-nav-open="true"] .nav-toggle__icon--menu { display: none; }
body[data-nav-open="true"] .nav-toggle__icon--close { display: block; }

/* ── Section base ──────────────────────────────────────────────── */
section { position: relative; z-index: 2; }

.kicker {
  display: inline-flex;
  align-items: center;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin: 0;
}
.kicker::after {
  content: '';
  display: inline-block;
  width: 2.5rem;
  height: 1px;
  background: var(--accent);
  vertical-align: middle;
  margin-left: .85rem;
}

/* ── Hero ──────────────────────────────────────────────────────── */
.hero {
  position: relative;
  padding-block: clamp(3rem, 7vw, 7rem);
  isolation: isolate;
}
.hero__wash {
  position: absolute;
  inset: -3rem 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(ellipse 55% 45% at 22% 28%, color-mix(in srgb, var(--accent-soft) 70%, transparent) 0%, transparent 70%),
    radial-gradient(ellipse 50% 55% at 78% 60%, color-mix(in srgb, var(--warm-soft) 70%, transparent) 0%, transparent 70%),
    radial-gradient(ellipse 90% 65% at 50% 100%, color-mix(in srgb, var(--bg-soft) 100%, transparent) 0%, transparent 80%),
    radial-gradient(ellipse 70% 55% at 50% 0%, color-mix(in srgb, var(--bg-elevated) 100%, transparent) 0%, transparent 80%);
  filter: blur(20px);
}
.hero__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: minmax(0, 6fr) minmax(0, 5fr);
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: center;
}
.hero__text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
}
.hero__leaf {
  width: 70px;
  height: 70px;
  margin-bottom: 1rem;
  opacity: 0.85;
  animation: leaf-breathe 8s ease-in-out infinite;
  transform-origin: center;
}
@keyframes leaf-breathe {
  0%, 100% { transform: rotate(-2deg) scale(1); }
  50%      { transform: rotate(2deg) scale(1.03); }
}
.hero .kicker { margin-bottom: 1.25rem; }
.hero__welcome {
  font-family: var(--serif);
  font-size: clamp(1.1rem, 1.5vw, 1.4rem);
  color: var(--accent-dark);
  margin: 0 0 1rem;
}
.hero__welcome em { font-style: italic; }
.hero__title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2.5rem, 5.5vw, 5rem);
  line-height: 1.04;
  letter-spacing: -0.022em;
  margin: 0;
  color: var(--text);
  text-wrap: balance;
}
.hero__title em {
  font-style: italic;
  font-weight: 400;
  color: var(--accent-dark);
}
.hero__sub {
  margin: 1.5rem 0 0;
  font-family: var(--sans);
  font-size: clamp(.95rem, 1vw, 1.05rem);
  color: var(--text-soft);
  letter-spacing: .02em;
  max-width: 30rem;
}
.hero__cta {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  padding: .95rem 1.75rem;
  font-family: var(--sans);
  font-size: .85rem;
  font-weight: 500;
  letter-spacing: .04em;
  color: var(--bg);
  background: var(--accent-dark);
  border: 1.5px solid var(--accent-dark);
  border-radius: 999px;
  text-decoration: none;
  transition: background 250ms ease, transform 200ms ease, box-shadow 250ms ease;
  box-shadow: 0 6px 22px rgba(64, 56, 48, 0.08);
}
.btn:hover {
  background: var(--text);
  border-color: var(--text);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(64, 56, 48, 0.14);
}
.btn:focus-visible { outline: 2px solid var(--accent-dark); outline-offset: 3px; }
.btn svg { width: 14px; height: 14px; }

/* Hero portrait (rounded rectangle) + Picabia caption below */
.hero__portrait {
  margin: 0;
  max-width: 26rem;
  justify-self: end;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}
.hero__portrait img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  filter: contrast(1.02) saturate(0.98);
  border-radius: 18px;
  box-shadow:
    0 30px 60px rgba(64, 56, 48, 0.10),
    0 8px 24px rgba(64, 56, 48, 0.06);
  background: var(--bg-subtle);
}
.hero__quote {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding-left: 1.25rem;
  border-left: 2px solid var(--accent);
}
.hero__quote-mark {
  width: 26px;
  height: 26px;
  flex: 0 0 26px;
  margin-top: 5px;
}
.hero__quote-text {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.2rem, 1.5vw, 1.5rem);
  line-height: 1.4;
  color: var(--accent-dark);
  margin: 0;
}
.hero__quote-text cite {
  display: block;
  margin-top: .65rem;
  font-family: var(--sans);
  font-style: normal;
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ── Welcome (50/50) ───────────────────────────────────────────── */
.welcome {
  background: var(--bg-elevated);
  position: relative;
}
.welcome::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse 60% 80% at 30% 50%, color-mix(in srgb, var(--accent-soft) 30%, transparent), transparent 70%);
}
.welcome {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(4rem, 8vw, 8rem) var(--gutter);
}
.welcome__art {
  margin: 0;
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 32rem;
  margin-inline-start: auto;
  width: 100%;
  min-height: clamp(18rem, 40vw, 26rem);
  padding: 2.5rem;
}
.welcome__art::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(ellipse 60% 50% at 35% 38%, color-mix(in srgb, var(--warm-soft) 55%, transparent), transparent 70%),
    radial-gradient(ellipse 55% 55% at 70% 70%, color-mix(in srgb, var(--bg-subtle) 65%, transparent), transparent 70%);
  filter: blur(18px);
  border-radius: 50%;
}
.welcome__quote {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  text-align: center;
  max-width: 26rem;
}
.welcome__quote-mark {
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
}
.welcome__quote blockquote {
  margin: 0;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.5rem, 2.4vw, 2.25rem);
  line-height: 1.25;
  color: var(--accent-dark);
  letter-spacing: -0.005em;
  text-wrap: balance;
}
.welcome__quote cite {
  display: block;
  margin-top: 1rem;
  font-family: var(--sans);
  font-style: normal;
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.welcome__text {
  max-width: 38rem;
  position: relative;
  z-index: 1;
}
.welcome__text .kicker { margin-bottom: 1rem; }
.welcome__text h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.85rem, 3vw, 2.6rem);
  line-height: 1.15;
  letter-spacing: -0.012em;
  margin: 0 0 1.5rem;
  color: var(--text);
}
.welcome__text h2 em {
  font-style: italic;
  color: var(--accent-dark);
}
.welcome__text p {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.1rem, 1.3vw, 1.3rem);
  line-height: 1.6;
  color: var(--text);
  margin: 0 0 1.1rem;
}
.welcome__text p strong {
  font-weight: 400;
  color: var(--accent-dark);
}
.welcome__personal {
  font-family: var(--serif) !important;
  font-style: italic;
  font-size: clamp(1.25rem, 1.6vw, 1.55rem) !important;
  color: var(--accent-dark) !important;
  margin-top: 1.75rem !important;
  border-top: 1px solid var(--border-soft);
  padding-top: 1.25rem;
}
.welcome__more {
  display: inline-block;
  margin-top: 1rem;
  font-family: var(--sans);
  font-size: .95rem;
  font-weight: 500;
  letter-spacing: .03em;
  color: var(--accent-dark);
  text-decoration: none;
  border-bottom: 1px solid var(--accent-dark);
  padding-bottom: 2px;
  transition: color 200ms ease, border-color 200ms ease;
}
.welcome__more:hover { color: var(--text); border-color: var(--text); }

/* ── Methods + Schwerpunkte heading helper ─────────────────────── */
.methods, .steps-section, .schwerpunkte {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(3.5rem, 7vw, 7rem) var(--gutter);
}
.methods__head {
  text-align: center;
  max-width: 36rem;
  margin: 0 auto 3rem;
}
.methods__head .kicker { display: inline-flex; align-items: center; }
.methods__head .kicker::before {
  content: '';
  display: inline-block;
  width: 2.5rem;
  height: 1px;
  background: var(--accent);
  margin-right: .85rem;
}
.methods__head h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2rem, 3.5vw, 3rem);
  line-height: 1.1;
  letter-spacing: -0.015em;
  margin: 1.25rem 0 0;
  color: var(--text);
}

/* ── Methods: 3 cards (alle gleich eingefärbt) ─────────────────── */
.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.25rem, 2vw, 2rem);
  margin-top: 1rem;
}
.card {
  background: var(--bg-elevated);
  border: 1px solid var(--border-soft);
  padding: clamp(1.75rem, 2.5vw, 2.75rem) clamp(1.5rem, 2vw, 2.25rem);
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  border-radius: 24px 40px 24px 40px;
  position: relative;
  overflow: hidden;
  transition: transform 350ms ease, box-shadow 350ms ease, border-color 350ms ease;
}
.card:nth-child(2) { border-radius: 40px 24px 40px 24px; }
.card:nth-child(3) { border-radius: 24px 40px 40px 24px; }
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px rgba(64, 56, 48, 0.10);
  border-color: var(--accent);
}
.card__icon {
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-soft);
  border-radius: 50%;
  border: 1px solid var(--border-soft);
}
.card__icon svg { width: 36px; height: 36px; }
.card h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.35rem, 1.6vw, 1.6rem);
  margin: 0;
  color: var(--text);
  line-height: 1.2;
}
.card p {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.1rem;
  line-height: 1.55;
  color: var(--text-soft);
}

/* ── Schwerpunkte (4 tiles) ────────────────────────────────────── */
.schwerpunkte {
  background: var(--bg-elevated);
  max-width: none;
  padding-inline: 0;
}
.schwerpunkte > .methods__head,
.schwerpunkte > .focus-tiles,
.schwerpunkte > .focus-footnote {
  max-width: var(--max);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.focus-tiles {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(1rem, 1.75vw, 1.75rem);
  margin-top: 1rem;
}
.focus-tile {
  position: relative;
  padding: 1.75rem 1.5rem 1.5rem;
  background: var(--bg);
  border: 1px solid var(--border-soft);
  border-radius: 18px 30px 18px 30px;
  display: flex;
  flex-direction: column;
  gap: .65rem;
  transition: transform 300ms ease, box-shadow 300ms ease, border-color 300ms ease;
}
.focus-tile:nth-child(2) { border-radius: 30px 18px 30px 18px; }
.focus-tile:nth-child(3) { border-radius: 18px 30px 30px 18px; }
.focus-tile:nth-child(4) { border-radius: 30px 18px 18px 30px; }
.focus-tile:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(64, 56, 48, 0.08);
  border-color: var(--accent);
}
.focus-tile h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.25rem, 1.5vw, 1.5rem);
  margin: 0;
  color: var(--text);
  line-height: 1.2;
}
.focus-tile p {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.05rem;
  line-height: 1.5;
  color: var(--text-soft);
}
.focus-footnote {
  margin: 2.5rem auto 0;
  max-width: 52rem;
  font-family: var(--serif);
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--text-soft);
  text-align: center;
}
.focus-footnote a {
  color: var(--accent-dark);
  text-decoration: none;
  border-bottom: 1px solid var(--accent-dark);
  padding-bottom: 1px;
  transition: color 200ms ease, border-color 200ms ease;
}
.focus-footnote a:hover { color: var(--text); border-color: var(--text); }

/* ── Steps: 4 horizontal, centered circles ─────────────────────── */
.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 2rem);
  position: relative;
  margin-top: 1rem;
}
.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 .5rem;
  gap: 1rem;
  position: relative;
}
.step__number {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: transparent;
  border: 1.5px solid var(--accent);
  color: var(--accent-dark);
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.65rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-feature-settings: "lnum" 1, "tnum" 1;
  font-variant-numeric: lining-nums tabular-nums;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.step h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.2rem, 1.4vw, 1.4rem);
  margin: 0;
  color: var(--text);
  line-height: 1.2;
}
.step p {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.05rem;
  line-height: 1.55;
  color: var(--text-soft);
  max-width: 22rem;
}

/* ── Quote feature ─────────────────────────────────────────────── */
.quote-feature {
  max-width: 60rem;
  margin: clamp(4rem, 7vw, 7rem) auto;
  padding: 0 var(--gutter);
  text-align: center;
  position: relative;
}
.quote-feature__leaf {
  margin: 0 auto 1.75rem;
  width: clamp(120px, 20vw, 200px);
  opacity: 0.8;
}
.quote-feature__text {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(1.65rem, 3.5vw, 3rem);
  line-height: 1.2;
  color: var(--text);
  text-wrap: balance;
  letter-spacing: -0.01em;
  margin: 0 auto;
  max-width: 28ch;
}
.quote-feature__text em {
  font-style: italic;
  font-weight: 400;
  color: var(--accent-dark);
}

/* ── Crisis ────────────────────────────────────────────────────── */
.crisis-section {
  max-width: 56rem;
  margin: 0 auto;
  padding: clamp(2rem, 4vw, 4rem) var(--gutter) clamp(4rem, 7vw, 7rem);
}
.crisis {
  background: var(--bg-elevated);
  border: 1px solid var(--accent);
  border-radius: 28px 14px 28px 14px;
  padding: clamp(1.75rem, 3vw, 2.5rem);
}
.crisis__h {
  display: flex;
  align-items: center;
  gap: .65rem;
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.4rem;
  color: var(--accent-dark);
  margin: 0 0 1rem;
}
.crisis__h svg { width: 22px; height: 22px; flex: 0 0 22px; }
.crisis__lead {
  font-family: var(--serif);
  font-size: 1rem;
  line-height: 1.55;
  color: var(--text);
  margin: 0 0 1.25rem;
}
.crisis ul {
  display: grid;
  gap: .85rem;
}
.crisis li {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem 1.25rem;
  align-items: baseline;
  font-family: var(--serif);
  font-size: .95rem;
  padding-bottom: .85rem;
  border-bottom: 1px dotted var(--accent);
}
.crisis li:last-child { border-bottom: 0; padding-bottom: 0; }
.crisis li > span {
  flex: 1 1 auto;
  color: var(--text);
  font-weight: 500;
}
.crisis li strong {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.2rem;
  color: var(--accent-dark);
}
.crisis li strong em {
  font-family: var(--sans);
  font-style: normal;
  font-size: .8rem;
  color: var(--text-muted);
}

/* ── Footer ────────────────────────────────────────────────────── */
.site-footer {
  margin-top: 4rem;
  background: var(--bg-subtle);
  border-top: 1px solid var(--border);
  padding: clamp(3rem, 5vw, 5rem) var(--gutter) 2.5rem;
  position: relative;
  z-index: 2;
}
.footer-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 3rem;
}
.footer-brand { display: flex; flex-direction: column; gap: 1rem; }
.footer-logo { width: 48px; height: 48px; }
.footer-blurb {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.5;
  color: var(--text-soft);
  margin: 0;
  max-width: 22rem;
}
.footer-grid h3 {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin: 0 0 1rem;
  font-weight: 500;
}
.footer-grid address {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-style: normal;
  line-height: 1.55;
  color: var(--text-soft);
}
.footer-grid address a {
  color: var(--accent-dark);
  text-decoration: none;
  border-bottom: 1px solid var(--border);
}
.footer-grid ul { display: flex; flex-direction: column; gap: .5rem; }
.footer-grid ul a {
  font-family: var(--serif);
  font-size: 1.05rem;
  color: var(--text-soft);
  text-decoration: none;
  transition: color 200ms ease;
}
.footer-grid ul a:hover { color: var(--accent-dark); }
.footer-copy {
  max-width: var(--max);
  margin: 3rem auto 0;
  padding-top: 1.75rem;
  border-top: 1px solid var(--border-soft);
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-align: center;
}

/* ──────────────────────────────────────────────────────────────
   INNER PAGES — gemeinsame Komponenten
   ────────────────────────────────────────────────────────────── */

/* ── Inner-page hero (zentriert, atmosphärisch) ───────────────── */
.inner-hero {
  position: relative;
  isolation: isolate;
  padding-block: clamp(3rem, 6vw, 5.5rem);
}
.inner-hero__wash {
  position: absolute;
  inset: -2rem 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(ellipse 50% 60% at 30% 35%, color-mix(in srgb, var(--accent-soft) 55%, transparent) 0%, transparent 70%),
    radial-gradient(ellipse 55% 60% at 75% 70%, color-mix(in srgb, var(--warm-soft) 55%, transparent) 0%, transparent 70%);
  filter: blur(28px);
}
.inner-hero__inner {
  max-width: 56rem;
  margin: 0 auto;
  padding: 0 var(--gutter);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.inner-hero .kicker { margin-bottom: 1.25rem; }
.inner-hero .kicker::before {
  content: '';
  display: inline-block;
  width: 2.5rem;
  height: 1px;
  background: var(--accent);
  vertical-align: middle;
  margin-right: .85rem;
}
.inner-hero h1 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2.25rem, 4.5vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.022em;
  margin: 0;
  color: var(--text);
  text-wrap: balance;
}

.inner-hero h1 em {
  font-style: italic;
  font-weight: 400;
  color: var(--accent-dark);
}
.inner-hero__title-sub {
  margin: .85rem 0 0;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.1rem, 1.3vw, 1.35rem);
  color: var(--accent-dark);
}
.inner-hero__lead {
  margin: 1.75rem 0 0;
  font-family: var(--serif);
  font-size: clamp(1.15rem, 1.4vw, 1.4rem);
  line-height: 1.55;
  color: var(--text-soft);
  max-width: 50rem;
}
.inner-hero__lead em { font-style: italic; color: var(--accent-dark); }

/* Inner-hero variant with portrait (über-mich) */
.inner-hero--portrait {
  text-align: left;
}
.inner-hero--portrait .inner-hero__inner {
  text-align: left;
  max-width: var(--max);
  display: grid;
  grid-template-columns: minmax(0, 6fr) minmax(0, 5fr);
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: center;
}
.inner-hero--portrait .kicker { margin-bottom: 1rem; }
.inner-hero--portrait .kicker::before { display: none; }
.inner-hero--portrait .kicker::after {
  content: '';
  display: inline-block;
  width: 2.5rem;
  height: 1px;
  background: var(--accent);
  vertical-align: middle;
  margin-left: .85rem;
}
.inner-hero__text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.inner-hero__text h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); }
.inner-hero__text > p {
  font-family: var(--serif);
  font-size: clamp(1.1rem, 1.3vw, 1.3rem);
  line-height: 1.6;
  color: var(--text);
  margin: 1.25rem 0 0;
}
.inner-hero__portrait {
  margin: 0;
  width: 100%;
  max-width: 26rem;
  justify-self: end;
}
.inner-hero__portrait img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 18px;
  box-shadow:
    0 30px 60px rgba(64, 56, 48, 0.10),
    0 8px 24px rgba(64, 56, 48, 0.06);
  background: var(--bg-subtle);
  filter: contrast(1.02) saturate(0.98);
}

/* ── Prose section (general text content) ─────────────────────── */
.prose-section {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(3rem, 6vw, 6rem) var(--gutter);
}
.prose-section--narrow .prose-section__inner {
  max-width: 56rem;
  margin-inline: auto;
}
.prose-section--alt {
  background: var(--bg-elevated);
  max-width: none;
  padding-inline: 0;
}
.prose-section--alt .prose-section__inner {
  max-width: var(--max);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.prose-section--alt.prose-section--narrow .prose-section__inner {
  max-width: 60rem;
}
.section-head {
  margin-bottom: 2rem;
  text-align: center;
}
.section-head--left { text-align: left; }
.section-head .kicker { display: inline-flex; align-items: center; }
.section-head .kicker::before {
  content: '';
  display: inline-block;
  width: 2.5rem;
  height: 1px;
  background: var(--accent);
  margin-right: .85rem;
}
.section-head--left .kicker::before { display: none; }
.section-head h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.85rem, 3vw, 2.6rem);
  line-height: 1.15;
  letter-spacing: -0.012em;
  margin: 1rem 0 0;
  color: var(--text);
  text-wrap: balance;
}
.section-head h2 em {
  font-style: italic;
  color: var(--accent-dark);
}
.prose-section p {
  font-family: var(--serif);
  font-size: clamp(1.1rem, 1.3vw, 1.3rem);
  line-height: 1.65;
  color: var(--text);
  margin: 0 0 1.1rem;
}
.prose-section p strong { color: var(--accent-dark); font-weight: 400; }
.prose-section p a {
  color: var(--accent-dark);
  text-decoration: none;
  border-bottom: 1px solid var(--border);
  transition: color 200ms ease, border-color 200ms ease;
}
.prose-section p a:hover { color: var(--text); border-color: var(--text); }

/* ── Topics (Schwerpunkte detailed list — Therapieangebot) ────── */
.topics {
  display: grid;
  gap: clamp(1.75rem, 3vw, 2.5rem);
  margin-top: 2rem;
}
.topic {
  border-left: 2px solid var(--accent);
  padding: .25rem 0 .25rem 1.5rem;
}
.topic h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.4rem, 1.7vw, 1.7rem);
  color: var(--accent-dark);
  margin: 0 0 .65rem;
  line-height: 1.2;
}
.topic p {
  font-family: var(--serif);
  font-size: clamp(1.05rem, 1.2vw, 1.2rem);
  line-height: 1.6;
  color: var(--text-soft);
  margin: 0;
}

/* ── Plain list (für Kosten Vorteile, einfache Aufzählungen) ──── */
.plain-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
  display: grid;
  gap: .85rem;
}
.plain-list li {
  font-family: var(--serif);
  font-size: clamp(1.1rem, 1.25vw, 1.2rem);
  line-height: 1.55;
  color: var(--text);
  padding-left: 1.75rem;
  position: relative;
}
.plain-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: .85em;
  width: 1rem;
  height: 1px;
  background: var(--accent);
}

/* ── Timeline (Über mich — Werdegang) ─────────────────────────── */
.timeline {
  display: grid;
  grid-template-columns: 9rem 1fr;
  gap: 0 2rem;
  margin-top: 2.5rem;
}
.timeline__year {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--accent-dark);
  padding-top: .35rem;
}
.timeline__entry {
  border-left: 2px solid var(--accent-soft);
  padding: 0 0 1.75rem 1.5rem;
  margin-left: -1px;
}
.timeline > *:nth-last-child(2),
.timeline > *:last-child { padding-bottom: 0; }
.timeline__entry:last-child { padding-bottom: 0; }
.timeline__entry h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.2rem, 1.5vw, 1.45rem);
  margin: 0 0 .5rem;
  color: var(--text);
  line-height: 1.2;
}
.timeline__entry p {
  font-family: var(--serif);
  font-size: 1.05rem;
  line-height: 1.55;
  color: var(--text-soft);
  margin: 0;
}

/* ── Qualifications list (Über mich) ──────────────────────────── */
.quals {
  list-style: none;
  padding: 0;
  margin: 2rem 0 0;
  display: grid;
  gap: 1rem;
}
.quals > li {
  font-family: var(--serif);
  font-size: clamp(1.1rem, 1.25vw, 1.2rem);
  line-height: 1.55;
  color: var(--text);
  padding-left: 1.75rem;
  position: relative;
}
.quals > li::before {
  content: '';
  position: absolute;
  left: 0;
  top: .85em;
  width: 1rem;
  height: 1px;
  background: var(--accent);
}
.quals ul {
  list-style: none;
  padding: 0;
  margin: .5rem 0 0;
  display: grid;
  gap: .35rem;
}
.quals ul li {
  font-family: var(--serif);
  font-size: 1.05rem;
  color: var(--text-soft);
  padding-left: 1rem;
  position: relative;
}
.quals ul li::before {
  content: '·';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 600;
  top: -.05em;
}

/* ── Contact blocks (Kontakt) ─────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.25rem, 2vw, 2rem);
  margin-top: 1rem;
}
.contact-block {
  background: var(--bg-elevated);
  border: 1px solid var(--border-soft);
  border-radius: 24px 40px 24px 40px;
  padding: clamp(1.75rem, 2.5vw, 2.5rem);
}
.contact-block:nth-child(2) { border-radius: 40px 24px 40px 24px; }
.contact-block h2 {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin: 0 0 1.5rem;
  font-weight: 500;
}
.contact-block dl { display: grid; gap: 1.25rem; margin: 0; }
.contact-block dt {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: .35rem;
  font-weight: 500;
}
.contact-block dd {
  font-family: var(--serif);
  font-size: 1.1rem;
  line-height: 1.55;
  color: var(--text);
  margin: 0;
}
.contact-block dd a {
  color: var(--accent-dark);
  text-decoration: none;
  border-bottom: 1px solid var(--border);
  transition: color 200ms ease, border-color 200ms ease;
}
.contact-block dd a:hover { color: var(--text); border-color: var(--text); }

/* ── Callout (Hinweisbox) ─────────────────────────────────────── */
.callout {
  background: var(--bg-elevated);
  border-radius: 18px 30px 18px 30px;
  border-left: 3px solid var(--accent);
  padding: clamp(1.25rem, 2vw, 1.75rem) clamp(1.5rem, 2.5vw, 2rem);
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  max-width: 56rem;
  margin: 0 auto;
}
.callout__icon {
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  color: var(--accent-dark);
  margin-top: 4px;
}
.callout p {
  font-family: var(--serif);
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--text);
  margin: 0 0 .5rem;
}
.callout p:last-child { margin: 0; }
.callout p strong { color: var(--accent-dark); font-weight: 400; }

/* ── Legal page (Impressum, Datenschutz) ──────────────────────── */
.legal-page {
  max-width: 56rem;
  margin: 0 auto;
  padding: clamp(2.5rem, 5vw, 4.5rem) var(--gutter) clamp(3.5rem, 7vw, 6rem);
  position: relative;
  z-index: 2;
}
.legal-page h1 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  margin: 0 0 2.5rem;
  color: var(--text);
  letter-spacing: -0.022em;
  line-height: 1.05;
}
.legal-page h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.35rem, 1.7vw, 1.65rem);
  color: var(--accent-dark);
  margin: 2.75rem 0 .85rem;
  line-height: 1.2;
}
.legal-page h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.25rem;
  color: var(--text);
  margin: 1.5rem 0 .5rem;
}
.legal-page p,
.legal-page li {
  font-family: var(--serif);
  font-size: 1.1rem;
  line-height: 1.65;
  color: var(--text);
}
.legal-page p { margin: 0 0 1rem; }
.legal-page address {
  font-family: var(--serif);
  font-style: normal;
  font-size: 1.1rem;
  line-height: 1.65;
  color: var(--text);
  margin: 0 0 1rem;
}
.legal-page address a,
.legal-page p a,
.legal-page li a {
  color: var(--accent-dark);
  text-decoration: none;
  border-bottom: 1px solid var(--border);
  transition: color 200ms ease, border-color 200ms ease;
}
.legal-page a:hover { color: var(--text); border-color: var(--text); }
.legal-page ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
  display: grid;
  gap: .55rem;
}
.legal-page ul li {
  padding-left: 1.5rem;
  position: relative;
  margin: 0;
}
.legal-page ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: .85em;
  width: .9rem;
  height: 1px;
  background: var(--accent);
}
.legal-page strong { font-weight: 400; color: var(--accent-dark); }

/* ──────────────────────────────────────────────────────────────
   END inner-page components
   ────────────────────────────────────────────────────────────── */

/* ── Responsive ────────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .hero__inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero__text { align-items: center; text-align: center; }
  .hero__sub { margin-inline: auto; }
  .hero__portrait { max-width: 24rem; justify-self: center; }

  .inner-hero--portrait .inner-hero__inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: center;
  }
  .inner-hero--portrait .inner-hero__text { align-items: center; text-align: center; }
  .inner-hero--portrait .inner-hero__text > p { margin-inline: auto; }
  .inner-hero__portrait { max-width: 22rem; justify-self: center; }

  .contact-grid { grid-template-columns: 1fr; }
  .welcome { grid-template-columns: 1fr; gap: 2.5rem; }
  .welcome__art { max-width: 26rem; margin-inline: auto; }
  .welcome__text { max-width: none; margin: 0 auto; }
  .cards { grid-template-columns: 1fr 1fr; }
  .cards .card:nth-child(3) { grid-column: 1 / -1; max-width: 32rem; margin: 0 auto; }
  .focus-tiles { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr 1fr; row-gap: 2.5rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-toggle { display: inline-flex; }
  .site-nav {
    position: fixed;
    inset: 0;
    height: 100vh;
    height: 100dvh;
    background: var(--bg);
    flex-direction: column;
    gap: 1.5rem;
    padding: calc(80px + 1.5rem) var(--gutter) 1.5rem;
    transform: translateX(100%);
    transition: transform 250ms ease;
    overflow-y: auto;
    z-index: 60;
  }
  .site-nav a {
    font-family: var(--serif);
    font-size: 1.25rem;
    text-transform: none;
    letter-spacing: 0;
    color: var(--text);
  }
  body[data-nav-open="true"] .site-nav { transform: translateX(0); }
  /* When the menu is open, lift the toggle button above the overlay
     by taking it out of the header's stacking context entirely. */
  body[data-nav-open="true"] .nav-toggle {
    position: fixed;
    top: 1rem;
    right: var(--gutter);
    z-index: 80;
  }

  .hero { padding-block: 2.5rem; }
  .cards { grid-template-columns: 1fr; }
  .cards .card:nth-child(3) { max-width: none; }
  .focus-tiles { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }

  .timeline { grid-template-columns: 1fr; gap: .35rem 0; }
  .timeline__year { padding-top: 1rem; }
  .timeline__entry { border-left: 0; padding-left: 0; padding-bottom: 1.25rem; }
  .timeline > div:first-child { padding-top: 0; }

  .callout { flex-direction: column; gap: .75rem; }
}

/* ── Scroll reveal (JS-controlled, respects reduced-motion) ────── */
.reveal {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 500ms ease, transform 500ms ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Reduced motion ────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  /* Never hide reveal-elements at rest when user prefers no motion */
  .reveal { opacity: 1; transform: none; }
}
