/* =====================================================
   IRPP — Institut für Rechtspsychologie und Psychotherapie
   style.css
   -----------------------------------------------------
   Auf Basis des V6-Screen-Designs (irpp_website_layout.html)
   mit folgenden Anpassungen aus Review April 2026:

   FARB-ZUORDNUNG (getauscht ggü. V6):
   --c-rechtspsych  →  Grün (Salbei dunkel)  →  #3F5A4A
   --c-psychother   →  Bordeaux              →  #6B2535
   In HTML semantische Hilfsklassen verwenden:
     .rp / .s-rp / .lbl-rp / .btn-rp / .tag-rp / .arr-rp / .line-rp
     .pt / .s-pt / .lbl-pt / .btn-pt / .tag-pt / .arr-pt / .line-pt
   ===================================================== */

/* ----- 1. DESIGN TOKENS ------------------------------- */
:root {
  --c-bg:        #FAFAF7;
  --c-bg-2:      #F3F0EA;
  --c-bg-3:      #EAE5DC;
  --c-rule:      rgba(140, 120, 95, 0.16);

  --c-rechtspsych:      #3F5A4A;
  --c-rechtspsych-h:    #4F6E5C;
  --c-rechtspsych-pale: #E8EDE9;

  --c-psychother:       #6B2535;
  --c-psychother-h:     #843044;
  --c-psychother-pale:  #F2E8EA;

  --c-ink:       #28211A;
  --c-ink-2:     #574C43;
  --c-ink-3:     #9A8D82;

  --f-serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --f-sans:  'DM Sans', -apple-system, system-ui, 'Segoe UI', sans-serif;
  --f-mark:  'Quicksand', 'DM Sans', system-ui, sans-serif;

  --pad-x:    clamp(20px, 5.5vw, 88px);
  --maxw:     1320px;
  --radius:   2px;
  --header-h: 84px;
}

/* ----- 2. RESET --------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--f-sans);
  background: var(--c-bg);
  color: var(--c-ink);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
  font-size: 15px;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; }
a { color: inherit; text-decoration: none; }

/* ----- 3. LAYOUT-HELFER ------------------------------- */
.w     { padding: clamp(64px, 9vw, 112px) var(--pad-x); }
.w-s   { padding: clamp(40px, 5.5vw, 64px) var(--pad-x); }
.inner { max-width: 1180px; margin: 0 auto; }

.line {
  width: 28px; height: 2px; margin-bottom: 16px; border-radius: 1px;
  background: var(--c-bg-3);
}
.line-rp { background: var(--c-rechtspsych); }
.line-pt { background: var(--c-psychother); }

hr.rule { border: none; border-top: 1px solid var(--c-rule); }

/* ----- 4. TYPOGRAFIE ---------------------------------- */
h1.h-display, .h-display {
  font-family: var(--f-serif);
  font-size: clamp(2.5rem, 5.4vw, 4.6rem);
  font-weight: 300; line-height: 1.06; letter-spacing: -0.022em;
  color: var(--c-ink);
}
.h-display em { font-style: italic; }

h2.h-section, .h-section {
  font-family: var(--f-serif);
  font-size: clamp(1.6rem, 2.8vw, 2.4rem);
  font-weight: 400; line-height: 1.15; letter-spacing: -0.015em;
  color: var(--c-ink);
}
h3.h-card, .h-card {
  font-family: var(--f-serif);
  font-size: clamp(1.3rem, 2.2vw, 1.8rem);
  font-weight: 400; line-height: 1.18;
  color: var(--c-ink);
}
.lbl, .eyebrow {
  display: block;
  font-size: 0.62rem; font-weight: 500; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--c-ink-3);
  margin-bottom: 12px;
}
.lbl-rp { color: var(--c-rechtspsych); }
.lbl-pt { color: var(--c-psychother); }

.txt {
  font-size: 0.92rem; line-height: 1.78; color: var(--c-ink-2);
  max-width: 60ch;
}
.txt-lead {
  font-size: clamp(1rem, 1.2vw, 1.1rem);
  line-height: 1.6; color: var(--c-ink-2);
  max-width: 56ch;
}
.hero-tag {
  font-family: var(--f-serif);
  font-size: clamp(1.05rem, 1.4vw, 1.35rem);
  font-weight: 300;
  color: var(--c-ink-2);
  margin: 18px 0 24px;
  letter-spacing: 0.005em;
}
.hero-tag em { font-style: italic; }

/* ----- 4b. AREA-LINKS (Inline-Bereichswörter) --------- */
.area-link {
  position: relative;
  display: inline-block;
  font-weight: inherit;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.25s ease;
}
.area-link::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  bottom: -2px;
  height: 2px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.45s cubic-bezier(0.65, 0, 0.35, 1);
}
.area-link:hover::after { transform: scaleX(1); }
.area-link.rp          { color: var(--c-rechtspsych); }
.area-link.pt          { color: var(--c-psychother); }
.area-link.rp:hover    { color: var(--c-rechtspsych-h); }
.area-link.pt:hover    { color: var(--c-psychother-h); }

/* ----- 5. BUTTONS (V6-Stil: gefüllt ist primary) ------ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--f-sans);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 12px 24px;
  border-radius: var(--radius);
  border: 1.5px solid transparent;
  background: transparent;
  color: var(--c-ink);
  text-decoration: none;
  transition: all 0.2s ease;
  cursor: pointer;
}
.btn-rp {
  background: var(--c-rechtspsych);
  color: var(--c-bg);
  border-color: var(--c-rechtspsych);
}
.btn-rp:hover {
  background: var(--c-rechtspsych-h);
  border-color: var(--c-rechtspsych-h);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(63, 90, 74, 0.24);
}
.btn-pt {
  background: var(--c-psychother);
  color: var(--c-bg);
  border-color: var(--c-psychother);
}
.btn-pt:hover {
  background: var(--c-psychother-h);
  border-color: var(--c-psychother-h);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(107, 37, 53, 0.24);
}
.btn-line {
  border-color: var(--c-bg-3);
  color: var(--c-ink-2);
}
.btn-line:hover {
  border-color: var(--c-ink-3);
  color: var(--c-ink);
  background: var(--c-bg-2);
}
.btn-line-rp { border-color: var(--c-rechtspsych-pale); color: var(--c-rechtspsych); }
.btn-line-rp:hover { background: var(--c-rechtspsych-pale); border-color: var(--c-rechtspsych); }
.btn-line-pt { border-color: var(--c-psychother-pale); color: var(--c-psychother); }
.btn-line-pt:hover { background: var(--c-psychother-pale); border-color: var(--c-psychother); }
.btn-white {
  background: rgba(250, 250, 247, 0.12);
  color: var(--c-bg);
  border-color: rgba(250, 250, 247, 0.35);
}
.btn-white:hover {
  background: rgba(250, 250, 247, 0.2);
  border-color: rgba(250, 250, 247, 0.65);
}

/* ----- 6. HEADER + NAVIGATION ------------------------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  height: var(--header-h);
  background: rgba(250, 250, 247, 0.94);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid var(--c-rule);
  display: flex;
  align-items: center;
  padding: 0 var(--pad-x);
}
.site-header.is-scrolled { box-shadow: 0 1px 24px rgba(40, 33, 26, 0.06); }

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-right: auto;
  flex-shrink: 0;
  height: 100%;
  text-decoration: none;
}
.brand-mark {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  display: block;
}
.brand-mark svg {
  width: 100%;
  height: 100%;
  fill: var(--c-ink);
  transition: fill 0.2s ease;
}
.brand:hover .brand-mark svg { fill: var(--c-ink-2); }
.brand-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
  line-height: 1;
}
.brand-abbr {
  font-family: var(--f-mark);
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: 0.04em;
  color: var(--c-ink);
  line-height: 1;
}
.brand-sub {
  font-family: var(--f-mark);
  font-weight: 500;
  font-size: 0.66rem;
  letter-spacing: 0.04em;
  color: var(--c-ink-2);
  line-height: 1.3;
}

.nav-main {
  display: flex; align-items: stretch; list-style: none;
  height: var(--header-h);
}
.nav-item { position: relative; display: flex; align-items: center; }
.nav-link {
  display: inline-flex; align-items: center;
  gap: 6px;
  height: var(--header-h);
  padding: 0 16px;
  background: none; border: none;
  border-bottom: 2px solid transparent;
  font-size: 0.74rem; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--c-ink-2);
  white-space: nowrap;
  transition: color 0.18s ease, border-color 0.18s ease;
}
.nav-link:hover { color: var(--c-ink); border-bottom-color: var(--c-bg-3); }
.nav-link.rp { color: var(--c-rechtspsych); }
.nav-link.pt { color: var(--c-psychother); }
.nav-link.rp:hover,
.nav-link.rp[aria-current="page"] { border-bottom-color: var(--c-rechtspsych); }
.nav-link.pt:hover,
.nav-link.pt[aria-current="page"] { border-bottom-color: var(--c-psychother); }
.nav-link[aria-current="page"]    { border-bottom-color: var(--c-ink-2); color: var(--c-ink); }

.nav-caret { font-size: 0.55rem; opacity: 0.55; transition: transform 0.2s; }
.nav-item.has-drop:hover .nav-caret,
.nav-item.has-drop:focus-within .nav-caret { transform: rotate(180deg); }

.nav-drop {
  position: absolute; top: 100%; left: 0;
  min-width: 280px;
  background: var(--c-bg);
  border: 1px solid var(--c-rule);
  box-shadow: 0 12px 36px rgba(40, 33, 26, 0.10);
  padding: 8px 0;
  list-style: none;
  opacity: 0; pointer-events: none;
  transform: translateY(6px);
  transition: opacity 0.18s ease, transform 0.18s ease;
  z-index: 100;
}
.nav-item.has-drop:hover > .nav-drop,
.nav-item.has-drop:focus-within > .nav-drop {
  opacity: 1; pointer-events: auto; transform: translateY(0);
}
.nav-drop a {
  display: block;
  padding: 10px 18px;
  border-left: 2px solid transparent;
  transition: background 0.14s ease, border-color 0.14s ease, padding-left 0.14s ease;
}
.nav-drop a:hover { background: var(--c-bg-2); padding-left: 22px; }
.nav-drop.rp a:hover { border-left-color: var(--c-rechtspsych); }
.nav-drop.pt a:hover { border-left-color: var(--c-psychother); }
.nav-drop-title {
  display: block;
  font-size: 0.82rem; font-weight: 500;
  color: var(--c-ink); line-height: 1.2;
}
.nav-drop-sub {
  display: block;
  font-size: 0.7rem; color: var(--c-ink-3);
  line-height: 1.3; margin-top: 2px;
}

.nav-cta {
  display: inline-flex; align-items: center; justify-content: center;
  height: 42px; padding: 0 22px;
  margin-left: 14px;
  background: transparent;
  border: 1.5px solid var(--c-ink-3);
  border-radius: var(--radius);
  font-size: 0.74rem; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--c-ink-2);
  white-space: nowrap;
  flex-shrink: 0;
  transition: all 0.18s ease;
}
.nav-cta:hover {
  background: var(--c-ink); border-color: var(--c-ink); color: var(--c-bg);
}

.nav-burger {
  display: none;
  width: 40px; height: 40px;
  background: none; border: none;
  position: relative;
}
.nav-burger span {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--c-ink);
  margin: 5px auto;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.nav-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ----- 7. HERO (V6: full-bleed grid) ------------------ */
main { padding-top: var(--header-h); }

.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - var(--header-h));
}
.hero-copy {
  display: flex; flex-direction: column; justify-content: center;
  padding: clamp(56px, 9vw, 110px) var(--pad-x);
  background: var(--c-bg);
}
.hero-copy .h-display { margin: 14px 0 4px; }
.hero-copy .hero-tag  { margin: 8px 0 26px; }
.hero-copy .txt-lead  { max-width: 460px; margin-bottom: 36px; }
.hero-cta {
  display: flex; gap: 12px; flex-wrap: wrap;
}
.hero-img {
  position: relative; overflow: hidden;
  background: var(--c-bg-2);
}
.hero-img img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  filter: saturate(0.95) contrast(1.04);
}
.hero-pin {
  position: absolute;
  bottom: 28px; left: 28px;
  background: var(--c-bg);
  border: 1px solid var(--c-rule);
  padding: 14px 20px;
  box-shadow: 0 6px 28px rgba(40, 33, 26, 0.10);
}
.hero-pin-lbl {
  font-size: 0.58rem; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--c-ink-3); margin-bottom: 4px;
}
.hero-pin-val {
  font-family: var(--f-serif);
  font-size: 0.95rem; font-weight: 500;
  color: var(--c-ink);
}

/* ----- 8. SPLIT (V6: 1fr 1fr full-bleed) -------------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--c-rule);
}
.split-card {
  position: relative;
  padding: clamp(44px, 6.5vw, 80px) var(--pad-x);
  border-right: 1px solid var(--c-rule);
  display: flex; flex-direction: column; gap: 28px;
  cursor: pointer;
  overflow: hidden;
  transition: background 0.25s ease;
  text-decoration: none;
  color: inherit;
}
.split-card:last-child { border-right: none; }
.split-card::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.4s cubic-bezier(0.65, 0, 0.35, 1);
}
.split-card.s-rp::after { background: var(--c-rechtspsych); }
.split-card.s-pt::after { background: var(--c-psychother); }
.split-card:hover::after { transform: scaleX(1); }
.split-card:hover { background: var(--c-bg-2); }

.split-n {
  font-family: var(--f-serif);
  font-size: 3.4rem; font-weight: 300; line-height: 1;
  opacity: 0.10; user-select: none;
  color: var(--c-ink);
}
.split-card.s-rp .split-n { color: var(--c-rechtspsych); }
.split-card.s-pt .split-n { color: var(--c-psychother); }

.split-title {
  font-family: var(--f-serif);
  font-size: clamp(1.6rem, 2.6vw, 2.2rem);
  font-weight: 400; line-height: 1.12;
  letter-spacing: -0.012em;
}
.split-card.s-rp .split-title { color: var(--c-rechtspsych); }
.split-card.s-pt .split-title { color: var(--c-psychother); }

.split-card .txt { max-width: 380px; }

.arr {
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.95rem;
  align-self: flex-start;
  margin-top: auto;
  transition: all 0.22s ease;
}
.arr-rp { border: 1.5px solid var(--c-rechtspsych); color: var(--c-rechtspsych); }
.arr-pt { border: 1.5px solid var(--c-psychother);  color: var(--c-psychother);  }
.split-card:hover .arr-rp { background: var(--c-rechtspsych); color: var(--c-bg); transform: translateX(4px); }
.split-card:hover .arr-pt { background: var(--c-psychother);  color: var(--c-bg); transform: translateX(4px); }

/* ----- 9. ABOUT-BAND ---------------------------------- */
.about {
  border-top: 1px solid var(--c-rule);
  background: var(--c-bg-2);
  position: relative;
  overflow: hidden;
}
.about-in {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 7vw, 88px);
  align-items: center;
}
.about-img {
  position: relative; aspect-ratio: 5/4; overflow: hidden;
}
.about-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.03);
}
.about-img-inner {
  position: absolute; inset: 12px;
  border: 1px solid rgba(140, 120, 95, 0.32);
  pointer-events: none;
}

/* Wasserzeichen-Optik (Bildmarke), nutzbar in jeder Section */
.has-watermark { position: relative; overflow: hidden; }
.watermark {
  position: absolute;
  pointer-events: none; user-select: none;
  width: clamp(380px, 48vw, 640px);
  aspect-ratio: 1 / 1;
  opacity: 0.06; z-index: 0;
  color: var(--c-ink);
}
.watermark svg { width: 100%; height: 100%; fill: currentColor; }
.watermark.right { right: -8%; top: 50%; transform: translateY(-50%); }
.watermark.left  { left: -10%; top: 50%; transform: translateY(-50%); }
.has-watermark > * { position: relative; z-index: 1; }

/* ----- 10. TEAM-GRID ---------------------------------- */
.team-band {
  border-top: 1px solid var(--c-rule);
}
.tgrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.tcard {
  background: var(--c-bg-2);
  border: 1px solid var(--c-rule);
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  text-decoration: none;
  color: inherit;
  display: block;
}
.tcard:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(40, 33, 26, 0.10);
}
.tcard-img {
  width: 100%; aspect-ratio: 3/4; overflow: hidden;
  background: var(--c-bg-3);
}
.tcard-img img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
  filter: saturate(0.95) contrast(1.03);
  transition: transform 0.5s ease;
}
.tcard:hover .tcard-img img { transform: scale(1.04); }

.tcard-body { padding: 24px 22px 26px; }
.tcard-role {
  font-size: 0.6rem; font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--c-ink-3); margin-bottom: 6px;
}
.tcard-name {
  font-family: var(--f-serif);
  font-size: 1.25rem; font-weight: 500;
  color: var(--c-ink); line-height: 1.2;
  margin-bottom: 10px;
}
.tcard-desc {
  font-size: 0.84rem; line-height: 1.65;
  color: var(--c-ink-2);
}
.tags {
  display: flex; flex-wrap: wrap; gap: 4px;
  margin-top: 14px;
}
.tag {
  display: inline-block;
  font-size: 0.6rem; font-weight: 500;
  letter-spacing: 0.07em; text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--radius);
}
.tag-rp { background: var(--c-rechtspsych-pale); color: var(--c-rechtspsych); }
.tag-pt { background: var(--c-psychother-pale);  color: var(--c-psychother);  }

/* ----- 11. FOOTER (V6: dunkel) ------------------------ */
.site-footer {
  background: var(--c-ink);
  padding: clamp(44px, 6vw, 68px) var(--pad-x);
  color: rgba(250, 250, 247, 0.6);
  margin-top: clamp(60px, 8vw, 120px);
}
.foot-crisis {
  font-size: 0.78rem; line-height: 1.55;
  padding: 12px 18px;
  margin-bottom: 38px;
  max-width: 680px;
  border: 1px solid rgba(250, 250, 247, 0.10);
  background: rgba(107, 37, 53, 0.20);
  color: rgba(250, 250, 247, 0.62);
  border-left: 2px solid var(--c-psychother);
}
.foot-crisis strong { color: rgba(250, 250, 247, 0.86); }
.foot-crisis a {
  color: rgba(250, 250, 247, 0.86);
  border-bottom: 1px solid rgba(250, 250, 247, 0.25);
  transition: border-color 0.15s ease;
}
.foot-crisis a:hover { border-color: rgba(250, 250, 247, 0.7); }

.foot-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 44px;
  margin-bottom: 40px;
}
.foot-brand .foot-logo {
  display: block;
  height: 64px; width: auto;
  max-width: 260px;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
  opacity: 0.78;
}
.foot-brand p {
  font-size: 0.8rem; line-height: 1.7;
  color: rgba(250, 250, 247, 0.42);
  max-width: 30ch;
}
.foot-brand a {
  color: rgba(250, 250, 247, 0.65);
  border-bottom: 1px solid rgba(250, 250, 247, 0.15);
}
.foot-brand a:hover { color: rgba(250, 250, 247, 0.95); }

.foot-h {
  font-size: 0.6rem; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(250, 250, 247, 0.32); margin-bottom: 14px;
}
.foot-links {
  list-style: none;
  display: flex; flex-direction: column; gap: 10px;
}
.foot-links a {
  font-size: 0.8rem;
  color: rgba(250, 250, 247, 0.5);
  transition: color 0.15s ease;
}
.foot-links a:hover { color: rgba(250, 250, 247, 0.92); }

.foot-bot {
  border-top: 1px solid rgba(250, 250, 247, 0.08);
  padding-top: 20px;
  display: flex; justify-content: space-between;
  flex-wrap: wrap; gap: 10px;
  font-size: 0.72rem;
  color: rgba(250, 250, 247, 0.32);
}
.foot-bot a { color: inherit; }
.foot-bot a:hover { color: rgba(250, 250, 247, 0.85); }

/* ===== UNTERSEITEN-KLASSEN (V6-Übernahme) ===== */

/* ----- 11a. SECTION-HERO (Bereichseinstiege) ---------- */
.shero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 60vh;
}
.shero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(52px, 8vw, 104px) var(--pad-x);
}
.shero-copy.c-rp { background: var(--c-rechtspsych); }
.shero-copy.c-pt { background: var(--c-psychother); }
.shero-copy.c-rp .lbl,
.shero-copy.c-pt .lbl { color: rgba(250, 250, 247, 0.55); margin-bottom: 16px; }
.shero-copy.c-rp .h-display,
.shero-copy.c-pt .h-display { color: var(--c-bg); }
.shero-copy.c-rp .txt,
.shero-copy.c-pt .txt {
  color: rgba(250, 250, 247, 0.75);
  max-width: 440px;
  margin: 18px 0 28px;
}
.shero-img { overflow: hidden; background: var(--c-bg-2); }
.shero-img img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  filter: saturate(0.95) contrast(1.04);
}

/* ----- 11b. CONTENT-SECTIONS -------------------------- */
.cs       { background: var(--c-bg); }
.cs-alt   { background: var(--c-bg-2); border-top: 1px solid var(--c-rule); border-bottom: 1px solid var(--c-rule); }
.cs-rp    { background: color-mix(in srgb, var(--c-rechtspsych) 6%, var(--c-bg));
            border-top: 1px solid color-mix(in srgb, var(--c-rechtspsych) 14%, transparent);
            border-bottom: 1px solid color-mix(in srgb, var(--c-rechtspsych) 14%, transparent); }
.cs-pt    { background: color-mix(in srgb, var(--c-psychother) 6%, var(--c-bg));
            border-top: 1px solid color-mix(in srgb, var(--c-psychother) 14%, transparent);
            border-bottom: 1px solid color-mix(in srgb, var(--c-psychother) 14%, transparent); }

/* ----- 11c. 2-COL SIDEBAR-LAYOUT ---------------------- */
.g2 {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: clamp(36px, 5vw, 72px);
  align-items: start;
}
.g2-side {
  position: sticky;
  top: calc(var(--header-h) + 24px);
}

/* ----- 11d. SERVICE CARDS ----------------------------- */
.svcs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.svc {
  background: var(--c-bg);
  border: 1px solid var(--c-rule);
  border-top: 2px solid var(--c-bg-3);
  padding: 24px 26px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.svc:hover { transform: translateY(-2px); box-shadow: 0 6px 22px rgba(40, 33, 26, 0.07); }
.svc.rp { border-top-color: var(--c-rechtspsych); }
.svc.pt { border-top-color: var(--c-psychother); }
.svc h3 {
  font-family: var(--f-serif);
  font-size: 1.15rem; font-weight: 500;
  margin-bottom: 10px;
}
.svc.rp h3 { color: var(--c-rechtspsych); }
.svc.pt h3 { color: var(--c-psychother); }
.svc p { font-size: 0.86rem; color: var(--c-ink-2); line-height: 1.7; }
.svc ul {
  font-size: 0.86rem; color: var(--c-ink-2); line-height: 1.7;
  padding-left: 1.2em;
  margin-top: 6px;
}
.svc li { margin-bottom: 4px; }

/* ----- 11e. PROZESS-SCHRITTE -------------------------- */
.proc { display: flex; flex-direction: column; }
.proc-row {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 20px;
  padding: 26px 0;
  border-bottom: 1px solid var(--c-rule);
}
.proc-row:last-child { border-bottom: none; }
.proc-n {
  font-family: var(--f-serif);
  font-size: 2.2rem; font-weight: 300;
  line-height: 1; opacity: 0.3;
}
.proc-n.rp { color: var(--c-rechtspsych); opacity: 0.7; }
.proc-n.pt { color: var(--c-psychother); opacity: 0.7; }
.proc-t {
  font-family: var(--f-serif);
  font-size: 1.1rem; font-weight: 500;
  color: var(--c-ink);
  margin-bottom: 6px;
}
.proc-d {
  font-size: 0.88rem; color: var(--c-ink-2); line-height: 1.72;
}

/* ----- 11f. ZITAT-BAND -------------------------------- */
.qband {
  padding: clamp(40px, 6vw, 72px) var(--pad-x);
  border-top: 1px solid var(--c-rule);
  border-bottom: 1px solid var(--c-rule);
  position: relative;
  overflow: hidden;
}
.qband.q-rp { background: var(--c-rechtspsych); border-color: var(--c-rechtspsych); }
.qband.q-pt { background: var(--c-psychother);  border-color: var(--c-psychother);  }
.qband blockquote {
  font-family: var(--f-serif);
  font-size: clamp(1.1rem, 2.2vw, 1.7rem);
  font-weight: 300; font-style: italic;
  color: rgba(250, 250, 247, 0.92);
  line-height: 1.5;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.qband cite {
  display: block;
  margin-top: 16px;
  font-family: var(--f-sans);
  font-size: 0.7rem;
  font-style: normal;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(250, 250, 247, 0.6);
  text-align: center;
}

/* ----- 11g. FAQ-ACCORDION ----------------------------- */
.faq-w { max-width: 760px; }
.fi { border-bottom: 1px solid var(--c-rule); }
.fi-btn {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  gap: 24px;
  font-family: var(--f-sans);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--c-ink);
  text-align: left;
  transition: color 0.18s ease;
}
.fi-btn.f-rp:hover, .fi.open.f-rp .fi-btn { color: var(--c-rechtspsych); }
.fi-btn.f-pt:hover, .fi.open.f-pt .fi-btn { color: var(--c-psychother); }
.fi-ico {
  flex-shrink: 0;
  width: 22px; height: 22px;
  border-radius: 50%;
  border: 1.5px solid var(--c-bg-3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: var(--c-ink-3);
  transition: all 0.22s ease;
}
.fi.open .fi-ico { transform: rotate(45deg); }
.fi.open.f-rp .fi-ico { background: var(--c-rechtspsych); border-color: var(--c-rechtspsych); color: var(--c-bg); }
.fi.open.f-pt .fi-ico { background: var(--c-psychother); border-color: var(--c-psychother); color: var(--c-bg); }
.fi-ans {
  max-height: 0;
  overflow: hidden;
  font-size: 0.92rem;
  color: var(--c-ink-2);
  line-height: 1.78;
  padding: 0;
  transition: max-height 0.36s ease, padding 0.24s ease;
}
.fi.open .fi-ans { max-height: 500px; padding-bottom: 18px; }
.fi-ans p + p { margin-top: 10px; }
.fi-ans ul { margin: 8px 0 4px 1.2em; }

/* ----- 11h. KONTAKT-GRID ------------------------------ */
.cg2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 720px;
}
.ci {
  font-family: var(--f-sans);
}
.ci-l {
  font-size: 0.6rem; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--c-ink-3);
  margin-bottom: 5px;
}
.ci-v {
  font-family: var(--f-serif);
  font-size: 1.1rem; font-weight: 400;
  color: var(--c-ink);
  line-height: 1.4;
}
.ci-v a {
  color: inherit;
  border-bottom: 1px solid var(--c-rule);
  transition: border-color 0.15s ease, color 0.15s ease;
}
.ci-v.rp a:hover { border-color: var(--c-rechtspsych); color: var(--c-rechtspsych); }
.ci-v.pt a:hover { border-color: var(--c-psychother); color: var(--c-psychother); }
.ci-v a:hover    { border-color: var(--c-ink); color: var(--c-ink); }

/* ----- 11i. INFO-BOX --------------------------------- */
.infobox {
  border: 1px solid var(--c-rule);
  padding: 22px 26px;
  background: var(--c-bg);
  margin-top: 22px;
}
.infobox-t {
  font-family: var(--f-serif);
  font-size: 1rem;
  font-weight: 500;
  color: var(--c-ink);
  margin-bottom: 8px;
}
.infobox.rp { border-left: 3px solid var(--c-rechtspsych); }
.infobox.pt { border-left: 3px solid var(--c-psychother); }
.infobox p { font-size: 0.86rem; color: var(--c-ink-2); line-height: 1.75; }
.infobox p + p { margin-top: 10px; }

/* ----- 11j. BILD-BAND --------------------------------- */
.iband {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  height: 280px;
  overflow: hidden;
  border-top: 1px solid var(--c-rule);
  border-bottom: 1px solid var(--c-rule);
}
.iband-i { overflow: hidden; }
.iband-i img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.95) contrast(1.03);
  transition: transform 0.55s ease;
}
.iband-i:hover img { transform: scale(1.05); }

/* ----- 11k. PROSE BLOCK (Long-Form-Text) -------------- */
.prose p { margin-bottom: 18px; }
.prose p:last-child { margin-bottom: 0; }
.prose ul, .prose ol {
  margin: 0 0 18px 1.4em;
  font-size: 0.92rem;
  line-height: 1.78;
  color: var(--c-ink-2);
}
.prose li { margin-bottom: 6px; }
.prose h3 {
  font-family: var(--f-serif);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--c-ink);
  margin: 32px 0 14px;
}
.prose h4 {
  font-family: var(--f-sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-ink-3);
  margin: 24px 0 10px;
}
.prose strong { color: var(--c-ink); font-weight: 500; }
.prose a {
  color: var(--c-ink);
  border-bottom: 1px solid var(--c-rule);
  transition: border-color 0.15s ease;
}
.prose a:hover { border-color: var(--c-ink); }

/* ----- 11l. RESPONSIVE FÜR UNTERSEITEN-KLASSEN -------- */
@media (max-width: 860px) {
  .shero       { grid-template-columns: 1fr; }
  .shero-img   { min-height: 320px; aspect-ratio: 4/3; }
  .svcs        { grid-template-columns: 1fr; }
  .g2          { grid-template-columns: 1fr; }
  .g2-side     { position: static; }
  .iband       { grid-template-columns: 1fr 1fr; }
  .iband-i:last-child { display: none; }
  .cg2         { grid-template-columns: 1fr; }
}

/* ----- 12. TEST: BILDMARKE UNTEN RECHTS --------------- */
/* Toggeln über class="show-corner-mark" am <body>. */
.corner-mark {
  position: fixed;
  right: clamp(20px, 3vw, 48px);
  bottom: clamp(20px, 3vw, 48px);
  width: clamp(80px, 9vw, 128px);
  aspect-ratio: 1 / 1;
  z-index: 50;
  opacity: 0; pointer-events: none;
  transition: opacity 0.4s ease;
  color: var(--c-ink);
}
.corner-mark svg { width: 100%; height: 100%; fill: currentColor; }
body.show-corner-mark .corner-mark { opacity: 0.7; }

/* ----- 13. ANIMATIONEN -------------------------------- */
@keyframes fu {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: none; }
}
.fu  { animation: fu 0.65s ease both; }
.d1  { animation-delay: 0.05s; }
.d2  { animation-delay: 0.16s; }
.d3  { animation-delay: 0.28s; }
.d4  { animation-delay: 0.40s; }
.d5  { animation-delay: 0.52s; }
@media (prefers-reduced-motion: reduce) {
  .fu { animation: none; }
}

/* ----- 14. RESPONSIVE --------------------------------- */
@media (max-width: 960px) {
  .nav-main, .nav-cta { display: none; }
  .nav-burger { display: flex; flex-direction: column; justify-content: center; }
  .nav-mobile {
    position: fixed;
    top: var(--header-h); left: 0; right: 0;
    background: var(--c-bg);
    border-bottom: 1px solid var(--c-rule);
    padding: 12px var(--pad-x) 24px;
    transform: translateY(-110%);
    transition: transform 0.3s ease;
    z-index: 800;
    max-height: calc(100vh - var(--header-h));
    overflow-y: auto;
  }
  .nav-mobile[data-open="true"] { transform: translateY(0); }
  .nav-mobile ul { list-style: none; }
  .nav-mobile a {
    display: block;
    padding: 14px 4px;
    border-bottom: 1px solid var(--c-rule);
    font-size: 0.95rem; color: var(--c-ink);
  }
  .nav-mobile .nav-mobile-section {
    margin-top: 18px; font-size: 0.7rem;
    letter-spacing: 0.18em; text-transform: uppercase;
    color: var(--c-ink-3);
    padding-left: 4px; margin-bottom: 6px;
  }
  .nav-mobile .rp { color: var(--c-rechtspsych); }
  .nav-mobile .pt { color: var(--c-psychother); }
}
@media (min-width: 961px) { .nav-mobile { display: none; } }

@media (max-width: 860px) {
  .hero, .split, .about-in, .foot-grid {
    grid-template-columns: 1fr;
  }
  .hero-img { min-height: 360px; aspect-ratio: 4/3; }
  .split-card { border-right: none; border-bottom: 1px solid var(--c-rule); }
  .split-card:last-child { border-bottom: none; }
  .tgrid { grid-template-columns: repeat(2, 1fr); }
  .brand-mark { width: 38px; height: 38px; }
  .brand-abbr { font-size: 1.25rem; }
  .brand-sub  { font-size: 0.6rem; }
}
@media (max-width: 540px) {
  .tgrid { grid-template-columns: 1fr; }
  .corner-mark { width: 72px; }
  .hero-pin { left: 16px; bottom: 16px; padding: 10px 14px; }
  .brand-sub { display: none; }
}

/* ----- 15. UTILITY ------------------------------------ */
.sr-only {
  position: absolute;
  width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0);
  white-space: nowrap; border: 0;
}
.divider {
  height: 1px; background: var(--c-rule);
  margin: clamp(40px, 6vw, 80px) 0;
}
