/* ============================================================
   Praxis Diepenbroick-Grüter, Werl — Entwurf Batch 1 (v2)
   Konzept „Klare Verhältnisse" — editorial, große Typografie,
   volle Bildbühne. Bilder: freigegebener nightrun-Bestand
   (keine Personen, keine Innenräume, keine Ortsbehauptung).
   ============================================================ */

:root {
  --ivory: #f4f1e8;
  --paper: #fbf9f3;
  --ink: #152a1f;
  --deep: #0e1f16;
  --ink-soft: #43564b;
  --brass: #b08d57;
  --brass-soft: #c9ab7c;
  --line: rgba(21, 42, 31, .18);
  --ivory-dim: rgba(244, 241, 232, .78);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--ivory);
  color: var(--ink);
  font: 400 1.0625rem/1.65 "Inter", system-ui, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
.wrap { max-width: 1180px; margin: 0 auto; padding: 0 clamp(1.25rem, 4vw, 3rem); }
.wrap.wide { max-width: 1440px; }

/* ---------- Header: dunkle Leiste ---------- */
header.site {
  background: var(--deep);
  position: sticky; top: 0; z-index: 20;
}
.header-in {
  display: flex; align-items: center; justify-content: space-between;
  gap: 2rem; padding: 1.15rem 0;
}
.brand { text-decoration: none; color: var(--ivory); }
.brand .name {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.35rem; font-weight: 600; letter-spacing: .01em;
  display: block; line-height: 1.2;
}
.brand .sub {
  display: block; font-size: .66rem; letter-spacing: .2em;
  text-transform: uppercase; color: var(--ivory-dim); margin-top: .1rem;
}
nav.main { display: flex; gap: 1.7rem; flex-wrap: wrap; }
nav.main a {
  color: var(--ivory-dim); text-decoration: none; font-size: .88rem;
  padding-bottom: 2px; border-bottom: 1px solid transparent;
}
nav.main a:hover { color: var(--ivory); border-bottom-color: var(--brass); }
nav.main a[aria-current="page"] { color: var(--ivory); border-bottom-color: var(--brass); }

/* ---------- Hero (Start) ---------- */
.hero {
  position: relative; min-height: 92vh;
  display: flex; align-items: flex-end;
  color: var(--ivory);
  isolation: isolate;
}
.hero .bg {
  position: absolute; inset: 0; z-index: -1;
}
.hero .bg img { width: 100%; height: 100%; object-fit: cover; }
.hero .bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(14, 31, 22, .82) 0%, rgba(14, 31, 22, .30) 45%, rgba(14, 31, 22, .10) 70%);
}
.hero .wrap { padding-bottom: clamp(3rem, 7vh, 5.5rem); padding-top: 6rem; width: 100%; }
.eyebrow {
  font-size: .74rem; letter-spacing: .24em; text-transform: uppercase;
  color: var(--brass); font-weight: 600;
}
.hero .eyebrow { color: var(--brass-soft); }
.hero h1 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 500;
  font-size: clamp(3.2rem, 8.5vw, 6.8rem);
  line-height: 1.02;
  letter-spacing: -.01em;
  max-width: 12ch;
  margin: 1.4rem 0 1.6rem;
}
.hero .lead {
  font-size: clamp(1.05rem, 1.6vw, 1.25rem); line-height: 1.6;
  color: var(--ivory-dim); max-width: 44ch;
}
.hero .actions { margin-top: 2.6rem; display: flex; gap: 1.3rem; flex-wrap: wrap; align-items: center; }

a.btn-primary {
  display: inline-block; text-decoration: none;
  background: var(--brass); color: var(--deep);
  padding: 1rem 2.1rem; font-size: .92rem; font-weight: 600;
  letter-spacing: .04em;
}
a.btn-primary:hover { background: var(--brass-soft); }
a.btn-quiet {
  color: var(--ink); font-size: .95rem; text-decoration: none;
  border-bottom: 1px solid var(--brass); padding-bottom: 2px;
}
a.btn-quiet:hover { color: var(--brass); }
.hero a.btn-quiet { color: var(--ivory); border-bottom-color: var(--brass-soft); }
.hero a.btn-quiet:hover { color: var(--brass-soft); }

/* ---------- Seitenkopf (Unterseiten) ---------- */
.page-hero {
  position: relative; min-height: 58vh;
  display: flex; align-items: flex-end;
  color: var(--ivory); isolation: isolate;
}
.page-hero .bg { position: absolute; inset: 0; z-index: -1; }
.page-hero .bg img { width: 100%; height: 100%; object-fit: cover; }
.page-hero .bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(14, 31, 22, .85) 0%, rgba(14, 31, 22, .30) 55%, rgba(14, 31, 22, .12) 80%);
}
.page-hero .eyebrow, .page-hero h1, .page-hero .lead { text-shadow: 0 1px 26px rgba(14, 31, 22, .45); }
.page-hero .wrap { padding-bottom: clamp(2.5rem, 6vh, 4rem); padding-top: 5rem; width: 100%; }
.page-hero h1 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 500;
  font-size: clamp(2.6rem, 6vw, 4.8rem);
  line-height: 1.04; letter-spacing: -.01em;
  max-width: 18ch; margin: 1.1rem 0 1.2rem;
}
.page-hero .lead { font-size: 1.1rem; color: var(--ivory-dim); max-width: 50ch; }
.page-hero .eyebrow { color: var(--brass-soft); }

.page-hero.plain { background: var(--deep); min-height: 0; }
.page-hero.plain .wrap { padding: 4.5rem 0 3.5rem; }
.page-hero.plain h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); }

/* ---------- Faktenzeile ---------- */
.factline { border-bottom: 1px solid var(--line); background: var(--ivory); }
.factline .wrap { display: grid; grid-template-columns: repeat(3, 1fr); }
.factline .fact {
  padding: 2rem 2rem 2.2rem; font-size: .95rem; color: var(--ink-soft);
  border-left: 1px solid var(--line);
}
.factline .fact:first-child { border-left: 0; padding-left: 0; }
.factline .fact strong {
  display: block; color: var(--ink); font-weight: 500; margin-bottom: .3rem;
  font-family: "Cormorant Garamond", Georgia, serif; font-size: 1.5rem;
}

/* ---------- Abschnitte ---------- */
section.block { padding: clamp(4.5rem, 9vw, 8rem) 0; }
section.block + section.block { border-top: 1px solid var(--line); }
.sec-label {
  font-size: .72rem; letter-spacing: .24em; text-transform: uppercase;
  color: var(--brass); font-weight: 600; margin-bottom: 1.2rem;
}
h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 500; font-size: clamp(2.2rem, 4.6vw, 3.6rem);
  line-height: 1.08; letter-spacing: -.01em;
  max-width: 22ch; margin-bottom: 1.8rem;
}
h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.5rem; font-weight: 600; margin-bottom: .8rem;
}
.prose { max-width: 60ch; color: var(--ink-soft); }
.prose p { margin-bottom: 1.1rem; }
.prose strong { color: var(--ink); font-weight: 600; }
.more { display: inline-block; margin-top: 1.6rem; }

/* Editorial-Split: Label links klebend, Inhalt rechts */
.edit { display: grid; grid-template-columns: 1fr 1.6fr; gap: clamp(2rem, 6vw, 6rem); align-items: start; }
.edit .side { position: sticky; top: 7rem; }

/* ---------- Themenliste ---------- */
.topics { list-style: none; }
.topics li {
  display: grid; grid-template-columns: minmax(12rem, 17rem) 1fr; gap: 2.5rem;
  padding: 2rem 0; border-top: 1px solid var(--line);
}
.topics li:last-child { border-bottom: 1px solid var(--line); }
.topics .t {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.5rem, 2.4vw, 1.9rem); font-weight: 500; color: var(--ink);
  line-height: 1.15;
}
.topics .d { color: var(--ink-soft); max-width: 52ch; }

/* ---------- Großes Zitat-Statement (faktisch, kein Personenzitat) ---------- */
.statement {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 500; font-size: clamp(1.9rem, 3.8vw, 3rem);
  line-height: 1.2; letter-spacing: -.01em; color: var(--ink);
  max-width: 24ch;
}

/* ---------- Volle Bildtafel ---------- */
.plate { position: relative; isolation: isolate; min-height: 64vh; display: flex; align-items: flex-end; color: var(--ivory); }
.plate .bg { position: absolute; inset: 0; z-index: -1; }
.plate .bg img { width: 100%; height: 100%; object-fit: cover; }
.plate .bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(14, 31, 22, .84), rgba(14, 31, 22, .42) 55%, rgba(14, 31, 22, .2)); }
.plate .wrap { padding: 0 clamp(1.25rem, 4vw, 3rem) clamp(2.5rem, 6vh, 4rem); width: 100%; }
.plate .cap {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.6rem, 3.2vw, 2.6rem); font-weight: 500; line-height: 1.15;
  max-width: 26ch;
  text-shadow: 0 1px 22px rgba(14, 31, 22, .55);
}
.plate .cap small {
  display: block; font-family: "Inter", system-ui, sans-serif;
  font-size: .74rem; letter-spacing: .22em; text-transform: uppercase;
  color: var(--ivory); font-weight: 600; margin-bottom: .8rem;
}

/* ---------- Zwei Spalten ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); }
.split > div + div { border-left: 1px solid var(--line); padding-left: clamp(2rem, 5vw, 4.5rem); }
.split p { color: var(--ink-soft); margin-bottom: 1rem; }

/* ---------- Schritte ---------- */
.steps { list-style: none; counter-reset: step; }
.steps li {
  counter-increment: step;
  padding: 2rem 0 2rem 5.5rem; position: relative;
  border-top: 1px solid var(--line);
}
.steps li:last-child { border-bottom: 1px solid var(--line); }
.steps li::before {
  content: "0" counter(step);
  position: absolute; left: 0; top: 1.7rem;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2.6rem; color: var(--brass); font-weight: 500; line-height: 1;
}
.steps .st {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.5rem; font-weight: 600; color: var(--ink);
  display: block; margin-bottom: .2rem;
}
.steps .sd { color: var(--ink-soft); max-width: 56ch; }

/* ---------- Person ---------- */
.person { display: grid; grid-template-columns: minmax(16rem, 24rem) 1.4fr; gap: clamp(2rem, 6vw, 5rem); align-items: start; }
.monogram {
  background: var(--deep); color: var(--ivory);
  aspect-ratio: 4 / 5; display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: .8rem;
}
.monogram .init {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(3.6rem, 6vw, 5.2rem); font-weight: 500; color: var(--brass-soft);
}
.monogram .cap {
  font-size: .68rem; letter-spacing: .2em; text-transform: uppercase; color: var(--ivory-dim);
}
dl.facts { margin-top: 2rem; }
dl.facts dt {
  font-size: .72rem; letter-spacing: .22em; text-transform: uppercase;
  color: var(--brass); font-weight: 600; margin-top: 1.4rem;
}
dl.facts dd { color: var(--ink-soft); margin-top: .25rem; }

/* ---------- Kontakt (dunkel) ---------- */
.contact { background: var(--deep); color: var(--ivory); }
.contact .sec-label { color: var(--brass-soft); }
.contact h2 { color: var(--ivory); }
.contact-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: clamp(2rem, 5vw, 4rem); }
.contact address { font-style: normal; line-height: 1.9; color: var(--ivory-dim); }
.contact address strong { color: var(--ivory); font-weight: 600; }
.contact a { color: var(--ivory); }
.phone-big {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.4rem, 5vw, 3.8rem); font-weight: 500; display: inline-block;
  margin: .4rem 0 1.4rem; text-decoration: none; line-height: 1.05;
  border-bottom: 1px solid var(--brass);
}
.contact .note { font-size: .88rem; color: var(--ivory-dim); margin-top: 1.6rem; max-width: 52ch; }
.crisis {
  margin-top: 2.6rem; padding-top: 1.6rem;
  border-top: 1px solid rgba(244, 241, 232, .18); font-size: .88rem; color: var(--ivory-dim); max-width: 64ch;
}

/* ---------- Rechtsseiten ---------- */
.legal { padding: 3.5rem 0 6rem; }
.legal h2 { font-size: 1.7rem; margin-top: 2.4rem; }
.legal p, .legal address { color: var(--ink-soft); max-width: 62ch; margin-bottom: 1rem; font-style: normal; }

/* ---------- Fußzeile ---------- */
footer.site { background: var(--deep); color: var(--ivory-dim); border-top: 1px solid rgba(244, 241, 232, .14); }
.foot-brand {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.2rem, 7vw, 5.5rem); font-weight: 500; line-height: 1.05;
  color: rgba(244, 241, 232, .92); letter-spacing: -.01em;
  padding: 3.5rem 0 2.5rem;
}
.foot-row {
  display: flex; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap;
  font-size: .84rem; padding-bottom: 2rem;
}
.foot-row a { color: var(--ivory-dim); text-decoration: none; border-bottom: 1px solid rgba(244, 241, 232, .3); }
.foot-row a:hover { color: var(--ivory); }
.footnote { font-size: .78rem; color: rgba(244, 241, 232, .45); max-width: 74ch; padding-bottom: 2.2rem; }

/* ---------- Erscheinen beim Scrollen (nur mit JS aktiv) ---------- */
html.js .reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
html.js .reveal.in { opacity: 1; transform: none; }
html:not(.js) .reveal { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html.js .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* Hero-Lesbarkeit auf hellem Himmel */
.hero .eyebrow, .hero h1, .hero .lead { text-shadow: 0 1px 26px rgba(14, 31, 22, .38); }

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  .hero { min-height: 78vh; }
  .page-hero { min-height: 46vh; }
  .edit { grid-template-columns: 1fr; gap: 1.5rem; }
  .edit .side { position: static; }
  .factline .wrap { grid-template-columns: 1fr; }
  .factline .fact { border-left: 0; padding: 1.4rem 0; border-top: 1px solid var(--line); }
  .factline .fact:first-child { border-top: 0; }
  .topics li { grid-template-columns: 1fr; gap: .5rem; }
  .split { grid-template-columns: 1fr; gap: 2rem; }
  .split > div + div { border-left: 0; padding-left: 0; border-top: 1px solid var(--line); padding-top: 2rem; }
  .person { grid-template-columns: 1fr; }
  .monogram { max-width: 17rem; }
  .contact-grid { grid-template-columns: 1fr; }
  nav.main { display: none; }
  .steps li { padding-left: 3.6rem; }
  .steps li::before { font-size: 2rem; }
}
