/* =============================================================================
   Carolin Kaprov — Systemische Beratung & Therapie
   Design system. Tokens and layout follow design_handoff_carolin_kaprov.

   Rules that are deliberate, not accidental:
   - No border-radius anywhere except circular icon buttons.
   - Body text never below 18px; every clamp() minimum respects that.
   - Multi-column layouts use auto-fit grids, so there are almost no media
     queries: columns collapse on their own. The only breakpoint is the
     navigation switch at 900px.
   ========================================================================== */

:root {
  --ink: #211D2B;
  --ink-footer: #1A1723;
  --light: #E8ECEE;
  --olive: #8E8F89;
  --page: #F5F5F5;
  --neutral: #F2F2F0;
  --white: #FFFFFF;

  --body: #45414D;
  --body-2: #3B3844;
  --muted: #6C6874;
  --on-dark: #C9C7CE;
  --on-dark-soft: #A9A7B0;
  --hero-text: #FBFAF8;

  --hairline: rgba(142, 143, 137, 0.22);
  --hairline-strong: rgba(142, 143, 137, 0.4);
  --card-border: #ECECEA;

  --font-display: 'Cabrito Contrast', 'Cormorant Garamond', serif;
  --font-body: 'Araboto', 'Mulish', sans-serif;

  --wrap: 1180px;
  --pad-y: clamp(64px, 9vw, 120px);
  --pad-x: clamp(20px, 5vw, 56px);
  --header-h: 88px;

  --shadow-drop: 0 20px 44px rgba(33, 29, 43, 0.14);
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

html, body { margin: 0; padding: 0; }

body {
  background: var(--page);
  color: var(--body);
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 1.125rem;           /* 18px floor */
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
::selection { background: var(--ink); color: var(--light); }

:focus-visible {
  outline: 2px solid var(--olive);
  outline-offset: 3px;
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 400;
  color: var(--ink);
  margin: 0;
}

.wrap {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: var(--pad-y) var(--pad-x);
}

.section--neutral { background: var(--neutral); }
.section--white   { background: var(--white); }
.section--page    { background: var(--page); }
.section--ink     { background: var(--ink); color: var(--light); }
.section--ink h2, .section--ink h3 { color: var(--light); }

/* ── Typography helpers ──────────────────────────────────────────────────── */

.kicker {
  display: block;
  font-size: 0.875rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--olive);
}

.h1 { font-size: clamp(2.4rem, 6vw, 4rem); line-height: 1.03; }
.h2 { font-size: clamp(2rem, 4vw, 2.75rem); line-height: 1.1; margin: 18px 0 40px; }
.h2-sub {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.4vw, 1.85rem);
  line-height: 1.25;
  color: var(--muted);
  margin: 0;
}
.h3 { font-size: clamp(1.3rem, 2vw, 1.6rem); line-height: 1.2; }

.lead    { font-size: clamp(1.125rem, 1.5vw, 1.25rem); line-height: 1.7; color: var(--body); }
.prose p { font-size: clamp(1.125rem, 1.4vw, 1.2rem); line-height: 1.7; margin: 0 0 22px; color: var(--body); }
.prose p:last-child { margin-bottom: 0; }
.prose p.lead-first { font-size: clamp(1.15rem, 1.6vw, 1.3rem); color: var(--body-2); }
.prose h3 { margin: 36px 0 14px; }
.prose strong { font-weight: 600; color: var(--body-2); }
.prose a { border-bottom: 1px solid var(--olive); }

.measure { max-width: 720px; }

/* ── Buttons ─────────────────────────────────────────────────────────────── */

.btn {
  display: inline-block;
  font-size: 0.8125rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 15px 34px;
  border: 1px solid transparent;
  cursor: pointer;
  font-family: inherit;
  transition: background-color .25s ease, color .25s ease, border-color .25s ease;
}
.btn--outline-ink { border-color: var(--ink); color: var(--ink); }
.btn--outline-ink:hover { background: var(--ink); color: var(--light); }

.btn--solid-ink { background: var(--ink); color: var(--light); }
.btn--solid-ink:hover { background: #2C2739; }

.btn--outline-light { border-color: var(--light); color: var(--light); }
.btn--outline-light:hover { background: var(--hero-text); color: var(--ink); }

.btn--outline-hero { border-color: var(--hero-text); color: var(--hero-text); }
.btn--outline-hero:hover { background: var(--hero-text); color: var(--ink); }
.btn--outline-hero-soft { border-color: rgba(251, 250, 248, 0.45); color: var(--hero-text); }
.btn--outline-hero-soft:hover { background: var(--hero-text); color: var(--ink); }

.btn--solid-light { background: var(--light); color: var(--ink); border: none; }
.btn--solid-light:hover { background: #FFF; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  color: var(--ink);
  border-bottom: 1px solid var(--olive);
  padding-bottom: 4px;
}
.link-arrow--caps {
  font-size: 0.875rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding-bottom: 5px;
}
.link-arrow svg { transition: transform .25s ease; }
.link-arrow:hover svg { transform: translateX(4px); }

.circle-btn {
  width: 54px;
  height: 54px;
  border: 1px solid currentColor;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: none;
}

/* ── Header ──────────────────────────────────────────────────────────────── */

.header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(245, 245, 245, 0.86);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--hairline);
}
.header__inner {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 16px var(--pad-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.wordmark { display: flex; flex-direction: column; line-height: 1.05; }
.wordmark__name {
  font-family: var(--font-display);
  font-size: 23px;
  color: var(--ink);
  letter-spacing: 0.01em;
}
.wordmark__sub {
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--olive);
  margin-top: 3px;
}

.nav { display: flex; align-items: center; gap: clamp(18px, 2.4vw, 34px); }
.nav__link {
  font-size: 15px;
  letter-spacing: 0.04em;
  color: var(--body);
  padding: 6px 0;
  transition: color .2s ease;
}
.nav__link:hover { color: var(--olive); }
.nav__link[aria-current="page"] { color: var(--ink); }

.nav__cta {
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 12px 26px;
  border: 1px solid var(--ink);
  color: var(--ink);
  transition: background-color .25s ease, color .25s ease;
}
.nav__cta:hover { background: var(--ink); color: var(--light); }

.dropdown { position: relative; display: flex; }
.dropdown__trigger {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 15px;
  letter-spacing: 0.04em;
  color: var(--body);
  padding: 6px 0;
  background: none;
  border: none;
  font-family: inherit;
  cursor: pointer;
}
.dropdown__trigger:hover { color: var(--olive); }
.dropdown--active .dropdown__trigger { text-decoration: underline; text-underline-offset: 5px; }
.dropdown__trigger svg { transition: transform .25s ease; }
.dropdown[data-open="true"] .dropdown__trigger svg { transform: rotate(180deg); }

/* The transparent padding-top is a bridge: without it the pointer crosses a
   gap between trigger and panel and the menu closes mid-move. */
.dropdown__panel {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  padding-top: 16px;
  z-index: 60;
  display: none;
}
.dropdown[data-open="true"] .dropdown__panel { display: block; }
.dropdown__list {
  background: var(--white);
  border: 1px solid var(--hairline);
  box-shadow: var(--shadow-drop);
  padding: 10px;
  min-width: 300px;
  display: flex;
  flex-direction: column;
}
.dropdown__list a {
  font-size: 15px;
  font-weight: 300;
  color: var(--body);
  padding: 12px 18px;
  transition: background-color .2s ease, color .2s ease;
}
.dropdown__list a:hover { background: var(--neutral); color: var(--ink); }
.dropdown__list a[aria-current="page"] { color: var(--ink); }

.burger {
  display: none;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
}
.burger span { display: block; width: 26px; height: 1.5px; background: var(--ink); }

/* ── Mobile menu ─────────────────────────────────────────────────────────── */

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 50;
  background: var(--ink);
  color: var(--light);
  display: none;
  flex-direction: column;
  padding: 24px clamp(24px, 7vw, 48px);
}
.mobile-menu[data-open="true"] { display: flex; }
.mobile-menu__top { display: flex; justify-content: space-between; align-items: center; }
.mobile-menu__brand { font-family: var(--font-display); font-size: 22px; }
.mobile-menu__close {
  background: none; border: none; color: var(--light);
  font-size: 34px; line-height: 1; cursor: pointer;
}
.mobile-menu nav { display: flex; flex-direction: column; gap: 4px; margin-top: 40px; overflow-y: auto; }
.mobile-menu__link {
  font-family: var(--font-display);
  font-size: 30px;
  padding: 11px 0;
  border-bottom: 1px solid rgba(232, 236, 238, 0.14);
  color: var(--light);
}
.mobile-menu__label {
  font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--olive); margin: 24px 0 6px;
}
.mobile-menu__sub { font-size: 18px; font-weight: 300; padding: 8px 0; color: var(--on-dark); }
.mobile-menu .btn { margin-top: 28px; align-self: flex-start; }

@media (max-width: 899px) {
  .nav { display: none; }
  .burger { display: flex; }
}

/* ── Hero ────────────────────────────────────────────────────────────────── */

/* image-set() lets the background pick WebP (70 KB) over JPEG (180 KB).
   Safari still needs the -webkit- prefix; browsers without either fall back
   to the plain url() declaration above it. */
/* Layered fixed scene behind the page: bare wall (z-index -3) and the portrait
   (z-index -1) are pinned; the hero's own darkening (z-index -2, on .hero::before)
   is NOT fixed -- it scrolls away with the hero, so the second segment shows the
   bare, undarkened wall. Works on iOS, unlike background-attachment:fixed. */
.hero-backdrop {
  position: fixed;
  inset: 0;
  z-index: -3;
  pointer-events: none;
  background: var(--ink);
  background:
    -webkit-image-set(url('assets/wall.webp') type('image/webp'), url('assets/wall.jpg') type('image/jpeg')) center 32% / cover no-repeat;
  background:
    image-set(url('assets/wall.webp') type('image/webp'), url('assets/wall.jpg') type('image/jpeg')) center 32% / cover no-repeat;
}

/* Home hero: full viewport, tucked under the sticky header. The scrim lives on
   ::before (z-index -2, behind the portrait at -1) so it darkens the hero for the
   big light copy, sits behind Carolin, and scrolls up and away with the hero --
   leaving the second segment on the undarkened wall. */
.hero {
  position: relative;
  margin-top: calc(-1 * var(--header-h));
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background: linear-gradient(97deg, rgba(24,21,32,0.62) 0%, rgba(24,21,32,0.40) 38%, rgba(24,21,32,0.10) 66%, rgba(24,21,32,0) 100%);
}

/* Themen: transparent over the bare fixed wall. No darkening (per request), so
   the text carries a shadow for legibility against the mid-tone concrete. */
.themen {
  position: relative;
  color: var(--hero-text);
  background: linear-gradient(97deg, rgba(24,21,32,0.80) 0%, rgba(24,21,32,0.60) 48%, rgba(24,21,32,0.34) 100%);
}
/* No scrim behind Themen (per request), so the concrete shows through. A shadow
   round the glyphs lifts the light text off the mid-tone wall. This is a local
   halo, not a rectangle of darkening. */
.themen .h2,
.themen .dash-item span,
.themen__closing {
  text-shadow: 0 1px 3px rgba(16,13,22,0.85), 0 0 14px rgba(16,13,22,0.55);
}
.themen .h2 { color: var(--hero-text); }
.themen__list { max-width: 560px; }
.themen .dash-item { border-bottom-color: rgba(251, 250, 248, 0.28); }
.themen .dash-item span { color: #FFFFFF; }
.themen .dash-item::before { background: rgba(251, 250, 248, 0.9); }
.themen__closing {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.5rem, 3.2vw, 2.3rem);
  line-height: 1.2;
  color: var(--hero-text);
  max-width: 560px;
  margin: clamp(1.6rem, 3vw, 2.4rem) 0 0;
}

.hero__inner {
  max-width: var(--wrap);
  margin: 0 auto;
  /* Top padding clears the sticky header the hero is tucked under; no bottom
     padding so the portrait touches the viewport edge. */
  padding: calc(var(--header-h) + clamp(12px, 2vw, 28px)) var(--pad-x) 0;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: stretch;
}
.hero__cols { display: flex; flex-wrap: wrap; align-items: stretch; width: 100%; }
.hero__copy {
  /* Wider than the portrait column so "Systemische Beratung & Therapie" fits on
     one line above the <br> before "in München". */
  flex: 1.3 1 400px;
  padding: clamp(24px, 3vw, 44px) clamp(22px, 2.4vw, 38px) clamp(44px, 6vw, 76px);
  color: var(--hero-text);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero__kicker {
  font-size: 15px;
  letter-spacing: 0.08em;
  color: rgba(251, 250, 248, 0.85);
  margin: 0 0 16px;
  max-width: 380px;
  font-weight: 300;
}
/* Order in the hero: kicker, then the name, then the keyword phrase as the h1.
   The h1 stays the search-intent phrase (the name is the h1 of /ueber-mich);
   the phrase is sized to sit on two lines via its explicit <br>. */
.hero__name {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.6rem, 7vw, 4.8rem);
  line-height: 1.0;
  letter-spacing: 0.005em;
  color: var(--hero-text);
  margin: 0 0 12px;
}
.hero__copy h1 {
  color: var(--hero-text);
  font-size: clamp(1.7rem, 3.2vw, 2.15rem);
  line-height: 1.14;
  font-weight: 400;
  margin: 0 0 30px;
}
.hero__sub {
  font-size: clamp(1.125rem, 1.6vw, 1.35rem);
  font-weight: 300;
  letter-spacing: 0.02em;
  margin: 14px 0 34px;
  color: rgba(251, 250, 248, 0.92);
}
.hero__btns { display: flex; gap: 14px; flex-wrap: wrap; }

/* Desktop: the portrait is pinned to the viewport bottom-right, tall enough to
   reach up near the nav, and lives on the fixed layer (z-index -1, above the
   wall, below the in-flow text). She stays put while the hero and Themen text
   scroll over her; the opaque section after Themen covers her. */
.hero__portrait {
  position: fixed;
  bottom: 0;
  right: max(0px, calc((100vw - var(--wrap)) / 2));
  z-index: -1;
  pointer-events: none;
  /* Height-driven so she scales with the viewport height; nearly full height so
     her head reaches up to the nav. Width follows the 548:800 aspect, capped so
     she doesn't cross into the copy. */
  height: calc(100svh - 8px);
  width: min(62vw, calc((100svh - 8px) * 0.685));
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}
/* The <picture> is the flex item, so it must be sized too -- otherwise it keeps
   the image's natural size and she never scales with viewport height. (Sizing
   picture rather than using display:contents keeps <source> webp selection.) */
.hero__portrait picture {
  display: flex;
  width: 100%;
  height: 100%;
  align-items: flex-end;
  justify-content: flex-end;
}
.hero__portrait img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: contain;
  object-position: bottom right;
}

/* Phone AND any portrait screen (incl. tablet portrait): the portrait returns to
   normal flow, centred, and fills whatever height the copy leaves -- her head
   below the buttons, feet at the bottom of the one-screen hero. She scales with
   that space, so a tall portrait tablet shows her much larger. Buttons centred.
   The fixed right-hand treatment is kept for landscape, where it reads best. */
@media (max-width: 767px), (orientation: portrait) {
  .hero__cols { flex-direction: column; flex-wrap: nowrap; }
  /* Centre the whole first-segment copy -- kicker, name, phrase and buttons -- so
     it sits above the centred portrait. */
  .hero__copy {
    flex: 0 0 auto;
    align-items: center;
    text-align: center;
    padding-bottom: clamp(14px, 4vw, 26px);
  }
  .hero__kicker { max-width: none; }
  .hero__btns { justify-content: center; }
  .hero__portrait {
    position: static;
    z-index: auto;
    right: auto;
    width: 100%;
    /* flex-basis 0 so the column can size the portrait from the leftover space,
       not the image's natural height (which would push the hero past one screen). */
    flex: 1 1 0;
    min-height: 0;
    justify-content: center;
  }
  .hero__portrait img { object-position: bottom center; }
  /* The full-width Themen list needs its own scrim on a phone; the backdrop's
     left-weighted one doesn't cover the right of the column here. */
  .themen {
    background: linear-gradient(180deg, rgba(24,21,32,0.5) 0%, rgba(24,21,32,0.64) 100%);
  }
}

/* Service pages: same wall, flat overlay, no portrait. Not tucked under the
   header (that pull-up is home-only), and it carries its own image since there
   is no fixed backdrop on inner pages. */
.hero--service {
  margin-top: 0;
  background:
    linear-gradient(180deg, rgba(24,21,32,0.55), rgba(24,21,32,0.32)),
    url('assets/wall.jpg') center 40% / cover no-repeat;
  background:
    linear-gradient(180deg, rgba(24,21,32,0.55), rgba(24,21,32,0.32)),
    -webkit-image-set(url('assets/wall.webp') type('image/webp'), url('assets/wall.jpg') type('image/jpeg')) center 40% / cover no-repeat;
  background:
    linear-gradient(180deg, rgba(24,21,32,0.55), rgba(24,21,32,0.32)),
    image-set(url('assets/wall.webp') type('image/webp'), url('assets/wall.jpg') type('image/jpeg')) center 40% / cover no-repeat;
}
.hero--service .hero__inner {
  padding: clamp(96px, 13vw, 150px) var(--pad-x) clamp(56px, 8vw, 88px);
  min-height: 0;
  display: block;
  color: var(--hero-text);
}
.hero--service h1 { color: var(--hero-text); max-width: 780px; }
.hero--service .hero__sub { max-width: 560px; margin-bottom: 0; }

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(251, 250, 248, 0.8);
  margin-bottom: 28px;
}
.breadcrumb span { opacity: 0.6; }
.breadcrumb a:hover { color: var(--hero-text); }

/* ── Dash lists (Themen, Anlässe) ────────────────────────────────────────── */

.dash-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px 48px;
}
.dash-grid--single { grid-template-columns: 1fr; gap: 0; }
.dash-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 13px 0;
  border-bottom: 1px solid var(--hairline);
}
/* Dot markers (round) rather than dashes. The circle is the one place radius is
   allowed; a dash reads as a minus sign next to short labels. */
.dash-item::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--olive);
  flex: none;
  margin-top: 0.58em;
}
.dash-item span {
  font-weight: 300;
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  line-height: 1.4;
  color: var(--body-2);
}

/* ── Two-column with sticky left ─────────────────────────────────────────── */

.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(32px, 5vw, 72px);
  align-items: start;
}
.split__sticky { position: sticky; top: 104px; }
@media (max-width: 899px) {
  .split__sticky { position: static; }
}
.split--center { align-items: center; }

/* ── Numbered principles ─────────────────────────────────────────────────── */

.principles { display: flex; flex-direction: column; }
.principle {
  display: flex;
  gap: 18px;
  padding: 18px 0;
  border-top: 1px solid rgba(142, 143, 137, 0.26);
}
.principle__num {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--olive);
  flex: none;
  width: 26px;
}
.principle p {
  font-weight: 300;
  font-size: clamp(1.05rem, 1.35vw, 1.2rem);
  line-height: 1.55;
  margin: 0;
  color: var(--body-2);
}

/* ── Accordion (Angebot) ─────────────────────────────────────────────────── */

.accordion { border-top: 1px solid rgba(142, 143, 137, 0.3); }
.accordion__item { border-bottom: 1px solid rgba(142, 143, 137, 0.3); }
.accordion__trigger {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: clamp(22px, 3vw, 32px) 0;
  font-family: inherit;
}
.accordion__title {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  line-height: 1.1;
  color: var(--ink);
}
.accordion__sign {
  flex: none;
  width: 40px;
  height: 40px;
  border: 1px solid var(--olive);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  font-size: 22px;
  font-weight: 300;
  line-height: 1;
}
.accordion__panel { display: none; padding: 0 0 clamp(28px, 3vw, 36px); max-width: 720px; }
.accordion__item[data-open="true"] .accordion__panel { display: flex; flex-direction: column; gap: 22px; }
.accordion__panel p {
  font-weight: 300;
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  line-height: 1.65;
  margin: 0;
  color: var(--body);
}
.accordion__panel .link-arrow { align-self: flex-start; }

/* ── Numbered steps (Beratungsprozess / Ablauf) ──────────────────────────── */

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: clamp(28px, 3vw, 44px);
}
/* Beratungsprozess: 4 steps that must be 2x2 or 4-across, never an unbalanced
   3+1. auto-fit would give 3 columns at mid widths. One column on narrow phones
   only because the long German titles (Orientierungsgespräch) can't sit two-up
   below ~500px without forcing horizontal scroll. */
.steps--process { grid-template-columns: 1fr; }
@media (min-width: 500px) {
  .steps--process { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
}
@media (min-width: 1000px) {
  .steps--process { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
.step {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-top: 22px;
  border-top: 1px solid var(--hairline-strong);
}
.step__num {
  font-family: var(--font-display);
  font-size: 38px;
  line-height: 1.1;
  color: #CFC9C2;
}
.section--white .step__num { color: #B9C2C6; }
.step p {
  font-weight: 300;
  font-size: clamp(1rem, 1.25vw, 1.1rem);
  line-height: 1.6;
  margin: 0;
  color: var(--body);
}

/* ── Stress (ink) ────────────────────────────────────────────────────────── */

.stress__media { position: relative; aspect-ratio: 4 / 5; overflow: hidden; }
.stress__media img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(0.1); }
.section--ink .lead { color: var(--on-dark); }
.section--ink .lead--soft { color: var(--on-dark-soft); }

/* ── walk & talk ─────────────────────────────────────────────────────────── */

/* Layers, top to bottom: a dark scrim, a heavy tint in the section's own green,
   the Englischer-Garten photo, and the flat green gradient underneath as a
   fallback.

   The scrim is not decoration. The tint alone leaves white body text at 3.3:1
   over the photo's bright sky, below WCAG AA. Measured worst-case contrast by
   compositing the exact layer stack in a canvas and sampling under every text
   run: scrim 0.45 -> 6.4:1, 0.35 -> 5.5:1, 0.25 -> 4.7:1, none -> 3.3:1.
   0.35 keeps AA with margin while letting the most photo texture through. */
.walk {
  position: relative;
  background:
    linear-gradient(150deg, rgba(28,38,26,0.55), rgba(34,42,30,0.34)),
    linear-gradient(150deg, #7C8770 0%, #6B7360 60%, #5C6352 100%);
  background:
    linear-gradient(150deg, rgba(28,38,26,0.35), rgba(34,42,30,0.32)),
    linear-gradient(150deg, rgba(124,135,112,0.85) 0%, rgba(107,115,96,0.87) 60%, rgba(92,99,82,0.90) 100%),
    -webkit-image-set(url('assets/park.webp') type('image/webp'), url('assets/park.jpg') type('image/jpeg')) center / cover no-repeat,
    linear-gradient(150deg, #7C8770 0%, #6B7360 60%, #5C6352 100%);
  background:
    linear-gradient(150deg, rgba(28,38,26,0.35), rgba(34,42,30,0.32)),
    linear-gradient(150deg, rgba(124,135,112,0.85) 0%, rgba(107,115,96,0.87) 60%, rgba(92,99,82,0.90) 100%),
    image-set(url('assets/park.webp') type('image/webp'), url('assets/park.jpg') type('image/jpeg')) center / cover no-repeat,
    linear-gradient(150deg, #7C8770 0%, #6B7360 60%, #5C6352 100%);
  color: var(--hero-text);
}
.walk h2 { color: var(--hero-text); }
.walk .kicker { color: rgba(251, 250, 248, 0.75); }
.walk p { color: rgba(251, 250, 248, 0.94); font-weight: 300; }
.walk__card {
  background: rgba(251, 250, 248, 0.10);
  border: 1px solid rgba(251, 250, 248, 0.28);
  padding: clamp(28px, 4vw, 44px);
  backdrop-filter: blur(2px);
}
.walk__card-label {
  font-size: 14px; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(251, 250, 248, 0.8); margin: 0 0 20px;
}
.walk__list { display: flex; flex-direction: column; }
.walk__list .dash-item { border-bottom: none; border-top: 1px solid rgba(251, 250, 248, 0.2); }
.walk__list .dash-item::before { background: rgba(251, 250, 248, 0.7); }
.walk__list .dash-item span { color: var(--hero-text); }
.walk__cta { margin-top: 30px; display: inline-flex; align-items: center; gap: 16px; color: var(--hero-text); }
.walk__cta .caps { font-size: 13px; letter-spacing: 0.18em; text-transform: uppercase; }

/* ── Ink card (Workshops) ────────────────────────────────────────────────── */

.ink-card {
  background: var(--ink);
  padding: clamp(48px, 7vw, 88px) clamp(32px, 6vw, 80px);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 22px;
}
.ink-card h2 { color: var(--light); margin: 0; max-width: 620px; font-size: clamp(1.9rem, 3.6vw, 2.6rem); line-height: 1.12; }
.ink-card p { color: var(--on-dark); max-width: 640px; margin: 0; font-weight: 300; }

/* ── Profil ──────────────────────────────────────────────────────────────── */

.profil__photo img { width: 100%; height: auto; filter: grayscale(0.05); }
.profil__alias { font-size: 15px; color: var(--olive); margin: 0 0 28px; }
.cv-list { display: flex; flex-direction: column; }
.cv-list p {
  font-weight: 300;
  font-size: clamp(1.02rem, 1.3vw, 1.15rem);
  line-height: 1.55;
  margin: 0;
  padding: 13px 0;
  border-top: 1px solid var(--card-border);
  color: var(--body);
}

/* ── Prices ──────────────────────────────────────────────────────────────── */

.prices { border-top: 1px solid rgba(142, 143, 137, 0.3); }
.price-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  align-items: baseline;
  justify-content: space-between;
  padding: clamp(20px, 2.6vw, 28px) 0;
  border-bottom: 1px solid rgba(142, 143, 137, 0.3);
}
.price-row__label { display: flex; flex-direction: column; gap: 4px; }
.price-row__name { font-family: var(--font-display); font-size: clamp(1.25rem, 2vw, 1.55rem); color: var(--ink); }
.price-row__detail { font-weight: 300; font-size: 15px; color: var(--olive); }
.price-row__value { font-family: var(--font-display); font-size: clamp(1.5rem, 2.6vw, 2rem); color: var(--ink); }
.fine-print {
  font-weight: 300;
  font-size: clamp(1rem, 1.3vw, 1.1rem);
  line-height: 1.65;
  margin: 28px 0 0;
  max-width: 680px;
  color: var(--muted);
}
.fine-print + .fine-print { margin-top: 12px; }
.fine-print a { color: var(--ink); border-bottom: 1px solid var(--olive); }

/* ── Related links ───────────────────────────────────────────────────────── */

.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: clamp(20px, 2.5vw, 32px);
}
.related-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 22px;
  border-top: 1px solid var(--hairline-strong);
  transition: border-color .25s ease;
}
.related-card:hover { border-top-color: var(--ink); }
.related-card p {
  font-weight: 300;
  font-size: clamp(1rem, 1.25vw, 1.1rem);
  line-height: 1.6;
  margin: 0;
  color: var(--body);
  flex-grow: 1;
}
.related-card .link-arrow { align-self: flex-start; margin-top: 6px; }
.related-card:hover .link-arrow svg { transform: translateX(4px); }

/* ── Note card (Co-Therapie) ─────────────────────────────────────────────── */

.note-card {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
  background: var(--white);
  border: 1px solid var(--card-border);
  padding: clamp(32px, 4vw, 56px);
}
.note-card h3 { font-size: clamp(1.6rem, 2.8vw, 2.1rem); line-height: 1.12; margin: 14px 0 0; }
.note-card p { margin: 0; font-weight: 300; color: var(--body); }

/* ── Contact ─────────────────────────────────────────────────────────────── */

.contact-list { display: flex; flex-direction: column; gap: 22px; }
.contact-row { display: flex; align-items: center; gap: 16px; color: var(--light); }
.contact-row--top { align-items: flex-start; }
.contact-row svg { flex: none; }
.contact-row span { font-size: clamp(1.05rem, 1.4vw, 1.2rem); font-weight: 300; line-height: 1.5; }

.contact-cta { display: flex; flex-direction: column; gap: 20px; align-items: flex-start; }
.contact-note { font-size: 13px; font-weight: 300; color: var(--olive); margin: 0; }

.cta-centered {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: clamp(72px, 10vw, 130px) var(--pad-x);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 26px;
}
.cta-centered h2 { margin: 0; max-width: 640px; font-size: clamp(2.1rem, 4.4vw, 3.2rem); line-height: 1.05; }
.cta-centered p { max-width: 560px; margin: 0; color: var(--on-dark); font-weight: 300; }
.cta-centered__btns { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; margin-top: 6px; }

/* ── Footer ──────────────────────────────────────────────────────────────── */

.footer { background: var(--ink-footer); color: var(--olive); }
.footer__inner { max-width: var(--wrap); margin: 0 auto; padding: clamp(44px, 6vw, 72px) var(--pad-x); }
.footer__top {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  align-items: flex-start;
}
.footer__brand { font-family: var(--font-display); font-size: 24px; color: var(--light); }
.footer__tagline { font-size: 13px; letter-spacing: 0.16em; text-transform: uppercase; }
.footer__links { display: flex; flex-wrap: wrap; gap: 14px 28px; max-width: 520px; }
.footer__links a { font-size: 15px; font-weight: 300; color: #B7B6BC; transition: color .2s ease; }
.footer__links a:hover { color: var(--light); }
.footer__legal {
  margin-top: clamp(36px, 5vw, 56px);
  padding-top: 24px;
  border-top: 1px solid var(--hairline);
  font-size: 13px;
  font-weight: 300;
}

/* ── Legal / long-form pages ─────────────────────────────────────────────── */

.legal-hero { background: var(--neutral); }
.legal-hero .wrap { padding-top: clamp(48px, 7vw, 88px); padding-bottom: clamp(24px, 3vw, 36px); }
.legal .wrap { max-width: 860px; }
.legal h2 { font-size: clamp(1.5rem, 2.6vw, 1.9rem); margin: 48px 0 18px; }
.legal h2:first-child { margin-top: 0; }
.legal h3 { font-size: clamp(1.2rem, 1.8vw, 1.4rem); margin: 30px 0 12px; }
.legal p, .legal li { font-weight: 300; font-size: 1.0625rem; line-height: 1.7; color: var(--body); }
.legal p { margin: 0 0 16px; }
.legal a { border-bottom: 1px solid var(--olive); }
.legal ul { padding-left: 20px; }

/* ── Utilities ───────────────────────────────────────────────────────────── */

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 100;
  background: var(--ink); color: var(--light); padding: 12px 20px;
}
.skip-link:focus { left: 8px; top: 8px; }
