/* ============================================================
   Constanze Fiur · Fulda — Konzept „Ohne Schwellen in die Therapie."
   Farbwelt: Blush-Rosa-Grund, dunkles Bordeaux-Ink, tiefes Rosé.
   Fonts: Caudex (Display) + Hind (Fließtext), lokal via fonts.css.
   ============================================================ */

:root {
  --blush:       #f7ebe7;   /* Seitengrund */
  --blush-deep:  #f1ddd7;   /* abwechselnder Sektionsgrund */
  --paper:       #fdf8f5;   /* Tafeln */
  --ink:         #3b1622;   /* Bordeaux-Ink, Haupttext */
  --ink-soft:    #6f4753;   /* sekundärer Text */
  --rose:        #8e3a53;   /* tiefes Rosé, Akzent */
  --rose-deep:   #662641;   /* Rosé dunkel, Hover */
  --wine:        #521c30;   /* dunkle Flächen (Band, CTA) */
  --wine-deep:   #3c1220;   /* Footer */
  --rose-line:   #dcbcc3;   /* feine Linien auf blush */
  --rose-line-d: #a5657a;   /* Linien auf dunkel */
  --cream-text:  #f6e6e2;   /* heller Text auf dunkel */
  --cream-soft:  #d9b3bb;   /* sekundär heller Text auf dunkel */
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Hind', sans-serif;
  font-weight: 400;
  font-size: 1.0625rem;
  line-height: 1.72;
  color: var(--ink);
  background: var(--blush);
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--rose); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--rose-deep); }

.wrap { max-width: 1160px; margin: 0 auto; padding: 0 32px; }

/* ---------- Typografie ---------- */

h1, h2, h3, .display {
  font-family: 'Caudex', serif;
  font-weight: 700;
  line-height: 1.14;
  color: var(--ink);
  letter-spacing: 0.005em;
}

h1 { font-size: clamp(2.5rem, 4.6vw, 3.9rem); }
h2 { font-size: clamp(1.85rem, 3vw, 2.55rem); margin-bottom: 1.1rem; }
h3 { font-size: 1.3rem; margin-bottom: 0.55rem; }

.eyebrow {
  font-family: 'Caudex', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 1.05rem;
  color: var(--rose);
  letter-spacing: 0.04em;
  margin-bottom: 1rem;
}

.sec-label {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 0.9rem;
  display: flex;
  align-items: center;
  gap: 14px;
}
.sec-label::after {
  content: "";
  flex: 0 0 56px;
  height: 1px;
  background: var(--rose-line);
}

.lead {
  font-size: 1.22rem;
  font-weight: 500;
  line-height: 1.62;
  color: var(--ink-soft);
  max-width: 36em;
}

p { max-width: 38em; }
p + p { margin-top: 0.9em; }

.star { color: var(--rose); font-weight: 600; }

.footnote {
  font-size: 0.92rem;
  color: var(--ink-soft);
  border-top: 1px solid var(--rose-line);
  padding-top: 1rem;
  margin-top: 2.4rem;
  max-width: 46em;
}

/* ---------- Header ---------- */

header.site {
  background: var(--blush);
  border-bottom: 1px solid var(--rose-line);
}
.header-in {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding-top: 20px;
  padding-bottom: 20px;
  flex-wrap: wrap;
}
.brand { text-decoration: none; display: block; }
.brand .name {
  font-family: 'Caudex', serif;
  font-weight: 700;
  font-size: 1.28rem;
  color: var(--ink);
  display: block;
  line-height: 1.25;
}
.brand .sub {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rose);
}

nav.main { display: flex; gap: 26px; flex-wrap: wrap; }
nav.main a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
  padding: 4px 0;
  border-bottom: 2px solid transparent;
  transition: border-color .2s ease, color .2s ease;
}
nav.main a:hover { color: var(--rose); border-bottom-color: var(--rose); }
nav.main a[aria-current="page"] { color: var(--rose); border-bottom-color: var(--rose); }

/* ---------- Hero ---------- */

.hero {
  padding: clamp(3.2rem, 7vw, 6rem) 0 clamp(3rem, 6vw, 5.2rem);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2.4rem, 5vw, 4.5rem);
  align-items: center;
}
.hero-text h1 { margin-bottom: 1.3rem; }
.hero-text .lead { margin-bottom: 2rem; }

.actions { display: flex; gap: 18px; flex-wrap: wrap; align-items: center; }

.btn-primary {
  display: inline-block;
  background: var(--rose);
  color: var(--cream-text);
  font-weight: 600;
  font-size: 1rem;
  padding: 14px 30px;
  border: 1px solid var(--rose);
  text-decoration: none;
  transition: background .2s ease, border-color .2s ease;
}
.btn-primary:hover { background: var(--rose-deep); border-color: var(--rose-deep); color: var(--cream-text); }

.btn-quiet {
  display: inline-block;
  color: var(--ink);
  font-weight: 600;
  font-size: 1rem;
  padding: 14px 4px;
  text-decoration: none;
  border-bottom: 2px solid var(--rose);
  transition: color .2s ease;
}
.btn-quiet:hover { color: var(--rose); }

/* Gerahmtes Bild (sichtbarer Rahmen/Inset mit Rosé-Offset) */
.frame {
  position: relative;
}
.frame .inset {
  position: relative;
  z-index: 1;
  background: var(--paper);
  border: 1px solid var(--rose-line);
  padding: 14px;
  box-shadow: 20px 20px 0 var(--rose);
}
.frame img { width: 100%; }
.frame figcaption {
  position: relative;
  z-index: 1;
  font-family: 'Caudex', serif;
  font-style: italic;
  font-size: 0.95rem;
  color: var(--ink-soft);
  margin-top: 18px;
}

/* ---------- Faktenband ---------- */

.strip {
  background: var(--wine);
  color: var(--cream-text);
  padding: 34px 0;
}
.strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.strip .fact strong {
  display: block;
  font-family: 'Caudex', serif;
  font-weight: 700;
  font-size: 1.12rem;
  color: #fff;
  margin-bottom: 4px;
}
.strip .fact { font-size: 0.95rem; line-height: 1.5; color: var(--cream-soft); }
.strip .fact + .fact { border-left: 1px solid var(--rose-line-d); padding-left: 32px; }

/* ---------- Sektionen ---------- */

section.block { padding: clamp(3.4rem, 7vw, 5.6rem) 0; }
section.block.alt { background: var(--blush-deep); }

.edit-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2.2rem, 5vw, 4.2rem);
  align-items: start;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 3.4rem);
}

.more { margin-top: 1.6rem; }

/* ---------- Tafeln (Karten mit Offset-Rahmen) ---------- */

.tafel {
  background: var(--paper);
  border: 1px solid var(--rose-line);
  padding: 30px 30px 28px;
  box-shadow: 10px 10px 0 rgba(142, 58, 83, 0.14);
  height: 100%;
}
.tafel h3 { color: var(--rose); }
.tafel p { font-size: 1rem; }
.tafel p:last-child { margin-bottom: 0; }

.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 2.2rem; }
.cards.two { grid-template-columns: repeat(2, 1fr); }

/* ---------- Listen mit Rosé-Markern ---------- */

ul.marks { list-style: none; margin-top: 1.4rem; }
ul.marks li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 0.85rem;
  max-width: 38em;
}
ul.marks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 14px;
  height: 2px;
  background: var(--rose);
}
ul.marks li strong { font-weight: 600; }

/* ---------- Bildband ---------- */

.band { position: relative; overflow: hidden; }
.band .bg { position: absolute; inset: 0; }
.band .bg img { width: 100%; height: 100%; object-fit: cover; }
.band .scrim {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(60,18,32,0.12) 0%, rgba(60,18,32,0.55) 78%, rgba(60,18,32,0.72) 100%);
}
.band .wrap {
  position: relative;
  min-height: 46vh;
  display: flex;
  align-items: flex-end;
  padding-top: 4rem;
  padding-bottom: 2.6rem;
}
.band .cap {
  color: #fff;
  max-width: 30em;
}
.band .cap small {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cream-soft);
  margin-bottom: 6px;
}
.band .cap .line {
  font-family: 'Caudex', serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.3rem, 2.2vw, 1.7rem);
  line-height: 1.35;
  text-shadow: 0 1px 12px rgba(40, 8, 18, 0.45);
}

/* ---------- Schritte ---------- */

.steps { counter-reset: step; margin-top: 2.4rem; }
.step {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 26px;
  padding: 30px 0;
  border-top: 1px solid var(--rose-line);
}
.step:last-child { border-bottom: 1px solid var(--rose-line); }
.step .num {
  font-family: 'Caudex', serif;
  font-weight: 700;
  font-size: 2.6rem;
  line-height: 1;
  color: var(--rose);
}
.step h3 { margin-top: 4px; }
.step p { color: var(--ink-soft); }

/* ---------- Info-Tabelle (Sprechzeiten etc.) ---------- */

table.times { width: 100%; max-width: 560px; border-collapse: collapse; margin-top: 1.2rem; }
table.times td {
  padding: 10px 0;
  border-bottom: 1px solid var(--rose-line);
  font-size: 1rem;
}
table.times td:first-child { font-weight: 600; width: 45%; }
table.times td:last-child { color: var(--ink-soft); }

/* ---------- CTA-Band dunkel ---------- */

.cta-dark {
  background: var(--wine);
  color: var(--cream-text);
  padding: clamp(3.2rem, 6vw, 4.8rem) 0;
  text-align: center;
}
.cta-dark .display {
  font-size: clamp(2.1rem, 4.6vw, 3.4rem);
  color: #fff;
  margin-bottom: 0.6rem;
}
.cta-dark a.tel-big {
  color: #fff;
  text-decoration: none;
  border-bottom: 2px solid var(--rose);
}
.cta-dark a.tel-big:hover { color: var(--cream-soft); }
.cta-dark p { color: var(--cream-soft); margin: 0 auto 1.8rem; }
.cta-dark .btn-primary { background: var(--rose); border-color: var(--rose); }
.cta-dark .btn-primary:hover { background: #a34a65; border-color: #a34a65; }

/* ---------- Krisenblock ---------- */

.crisis {
  background: var(--wine-deep);
  color: var(--cream-text);
  padding: clamp(2.8rem, 5vw, 4rem) 0;
}
.crisis h2 { color: #fff; }
.crisis p { color: var(--cream-soft); }
.crisis .note {
  font-weight: 600;
  color: #fff;
  margin-bottom: 1.6rem;
}
.crisis-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: 2rem;
}
.crisis-card {
  border: 1px solid var(--rose-line-d);
  padding: 24px 26px;
}
.crisis-card strong {
  display: block;
  font-family: 'Caudex', serif;
  font-size: 1.15rem;
  color: #fff;
  margin-bottom: 6px;
}
.crisis-card a {
  color: #fff;
  font-weight: 600;
  font-size: 1.3rem;
  text-decoration: none;
  border-bottom: 1px solid var(--rose-line-d);
  white-space: nowrap;
}
.crisis-card a:hover { color: var(--cream-soft); }
.crisis-card span { display: block; font-size: 0.92rem; color: var(--cream-soft); margin-top: 8px; line-height: 1.5; }

/* ---------- Kontakt-Fakten ---------- */

.fact-rows { margin-top: 1.6rem; border-top: 1px solid var(--rose-line); }
.fact-row {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 22px;
  padding: 16px 0;
  border-bottom: 1px solid var(--rose-line);
}
.fact-row dt { font-weight: 600; }
.fact-row dd { color: var(--ink-soft); }
.fact-row dd a { font-weight: 600; }

/* ---------- Footer ---------- */

footer.site {
  background: var(--wine-deep);
  color: var(--cream-soft);
  padding: 3.2rem 0 2.2rem;
  font-size: 0.95rem;
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 2.2rem;
  border-bottom: 1px solid var(--rose-line-d);
}
.foot-grid h4 {
  font-family: 'Caudex', serif;
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
  margin-bottom: 0.8rem;
}
.foot-grid ul { list-style: none; }
.foot-grid li { margin-bottom: 6px; }
.foot-grid a { color: var(--cream-soft); text-decoration: none; }
.foot-grid a:hover { color: #fff; text-decoration: underline; }
.foot-name {
  font-family: 'Caudex', serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 6px;
}
.foot-legal {
  padding-top: 1.6rem;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.85rem;
  color: #a97f8b;
}

/* ---------- Reveal ---------- */

.js .reveal { opacity: 0; transform: translateY(16px); transition: opacity .7s ease, transform .7s ease; }
.js .reveal.in { opacity: 1; transform: none; }

/* ---------- Responsiv ---------- */

@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; }
  .frame { max-width: 640px; }
  .strip-grid { grid-template-columns: repeat(2, 1fr); }
  .strip .fact + .fact { border-left: 0; padding-left: 0; }
  .edit-grid { grid-template-columns: 1fr; }
  .cards { grid-template-columns: 1fr; }
  .cards.two { grid-template-columns: 1fr; }
  .crisis-grid { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr; gap: 28px; }
}

@media (max-width: 560px) {
  .wrap { padding: 0 20px; }
  .two-col { grid-template-columns: 1fr; }
  .strip-grid { grid-template-columns: 1fr; }
  .step { grid-template-columns: 64px 1fr; gap: 18px; }
  .step .num { font-size: 2rem; }
  .fact-row { grid-template-columns: 1fr; gap: 4px; }
  .frame .inset { box-shadow: 12px 12px 0 var(--rose); }
  nav.main { gap: 16px; }
}
