/* ============================================================
   Psychotherapie Irene Prietl — Onepager
   Farben aus dem Logo (Petrol/Teal) + Sand aus der Bildwelt
   ============================================================ */

:root {
  --petrol: #24555c;
  --petrol-deep: #1b3f45;
  --teal: #37a38a;
  --teal-dark: #2c8471;
  --wine: #822e59; /* Weinrot aus dem Logo-Herz – für die kleinen Überschriften */
  --wine-light: #dfa0bf; /* hellere Stufe desselben Tons für dunkle Hintergründe */
  --mist: #edf4f4;
  --sand: #f7f2ea;
  --ink: #37474b;
  --muted: #64777c;
  --line: #d9e4e4;
  --white: #ffffff;
  --radius: 14px;
  --shadow: 0 10px 40px rgba(27, 63, 69, 0.10);
  /* Headline-Font: Fraunces (kräftiger) — Cormorant liegt als Alternative in fonts.css */
  --font-serif: 'Fraunces', Georgia, 'Times New Roman', serif;
  --font-sans: 'Nunito Sans', 'Segoe UI', Helvetica, Arial, sans-serif;
}

/* ---------- Liquid Glass ---------- */
.glass {
  position: relative;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.05));
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  backdrop-filter: blur(18px) saturate(160%);
  border: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow: 0 8px 32px rgba(20, 45, 52, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.35);
}
.glass-dark {
  position: relative;
  background: linear-gradient(135deg, rgba(18, 42, 48, 0.42), rgba(18, 42, 48, 0.26));
  -webkit-backdrop-filter: blur(18px) saturate(150%);
  backdrop-filter: blur(18px) saturate(150%);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 8px 32px rgba(10, 25, 30, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3 { font-family: var(--font-serif); color: var(--petrol); line-height: 1.2; margin: 0 0 0.6em; }
h2 { font-size: clamp(2rem, 4.5vw, 2.9rem); font-weight: 600; }
h3 { font-size: 1.45rem; font-weight: 600; }
p { margin: 0 0 1.1em; }
/* Blocksatz für Fließtexte (Wunsch Frau Prietl) – mit Silbentrennung,
   damit keine Löcher entstehen; kurze Texte in Karten bleiben linksbündig */
.two-col p, .about-grid > div > p, .emdr-ablauf p, .subpage-main p {
  text-align: justify;
  hyphens: auto;
  -webkit-hyphens: auto;
}
a { color: var(--teal-dark); }

.container { width: min(1120px, 92%); margin-inline: auto; }
.narrow { width: min(780px, 92%); margin-inline: auto; }

section { padding: clamp(4rem, 9vw, 7rem) 0; }

/* Kicker über Überschriften */
.kicker {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--wine);
  margin-bottom: 0.9rem;
}
.kicker::after {
  content: "";
  display: inline-block;
  width: 2.4em;
  height: 1px;
  background: var(--wine);
  vertical-align: middle;
  margin-left: 0.8em;
  opacity: 0.6;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 0.85rem 1.9rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}
.btn-primary {
  background: var(--teal);
  color: #fff;
  box-shadow: 0 6px 20px rgba(55, 163, 138, 0.35);
}
.btn-primary:hover { background: var(--teal-dark); transform: translateY(-2px); }
/* Ghost-Button als Liquid Glass */
.btn-ghost {
  color: #fff;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.06));
  -webkit-backdrop-filter: blur(14px) saturate(150%);
  backdrop-filter: blur(14px) saturate(150%);
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35);
}
.btn-ghost:hover { background: rgba(255, 255, 255, 0.26); transform: translateY(-2px); }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  padding: 0.9rem 0;
  transition: box-shadow 0.35s ease, padding 0.35s ease;
}
/* Liquid-Glass-Fläche als Pseudo-Element: so bleibt das position:fixed-
   Mobilmenü am Viewport verankert (backdrop-filter direkt am Header
   würde es einsperren). */
.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(20, 45, 52, 0.34), rgba(20, 45, 52, 0.16));
  -webkit-backdrop-filter: blur(16px) saturate(150%);
  backdrop-filter: blur(16px) saturate(150%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14);
  transition: background 0.35s ease, border-color 0.35s ease;
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.brand img { height: 54px; width: auto; transition: height 0.35s ease, filter 0.35s ease; }
/* Über dem Hero: Logo ohne Box — als weiße Silhouette, damit es auf dem
   Foto lesbar bleibt; gescrollt wieder in Originalfarben */
.brand { line-height: 0; }
.brand img {
  filter: brightness(0) invert(1) drop-shadow(0 2px 8px rgba(0, 0, 0, 0.35));
}
.main-nav { display: flex; align-items: center; gap: 1.7rem; }
.main-nav a:not(.btn) {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  white-space: nowrap;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.35);
  transition: color 0.25s ease;
}
.main-nav a:not(.btn):hover { color: #cdeee4; }

.site-header.scrolled {
  box-shadow: 0 2px 24px rgba(27, 63, 69, 0.10);
  padding: 0.5rem 0;
}
.site-header.scrolled::before {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.58));
  border-bottom: 1px solid rgba(255, 255, 255, 0.55);
}
.site-header.scrolled .brand img { height: 46px; filter: none; }
.site-header.scrolled .main-nav a:not(.btn) { color: var(--petrol); text-shadow: none; }
.site-header.scrolled .main-nav a:not(.btn):hover { color: var(--teal); }

/* Burger */
.nav-toggle {
  display: none;
  background: none;
  border: 0;
  width: 44px;
  height: 44px;
  cursor: pointer;
  z-index: 110;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  margin: 6px auto;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease, background 0.3s ease;
}
.site-header.scrolled .nav-toggle span { background: var(--petrol); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 0;
  isolation: isolate;
}
/* Zwei Ebenen: außen Parallax (JS setzt transform), innen Ken-Burns-Zoom */
/* Große Ausdehnung nach oben: der Parallax-Versatz (JS, Faktor 0.22)
   darf nie über die Bildkante hinauslaufen */
.hero-bg {
  position: absolute;
  inset: -32% -4% -4% -4%;
  z-index: -3;
  will-change: transform;
}
.hero-bg-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 38%;
  animation: heroZoom 26s ease-in-out infinite alternate;
  transition: opacity 0.6s ease;
}
@keyframes heroZoom {
  from { transform: scale(1) translateY(0); }
  to   { transform: scale(1.07) translateY(-1.5%); }
}

/* Bild-Switcher (nur Entwurfsphase — Block + JS später entfernen) */
.hero-picker {
  position: absolute;
  bottom: 1.6rem;
  right: 1.6rem;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 0.2rem;
  border-radius: 999px;
  padding: 0.35rem 0.5rem;
  color: #fff;
  font-size: 0.82rem;
}
.hero-picker button {
  background: none;
  border: 0;
  color: #fff;
  font-size: 1.15rem;
  line-height: 1;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.2s ease;
}
.hero-picker button:hover { background: rgba(255, 255, 255, 0.18); }
.hero-picker .label {
  min-width: 9.5em;
  text-align: center;
  font-weight: 600;
  letter-spacing: 0.03em;
  opacity: 0.9;
}
/* sanft treibender Nebel */
.hero-mist {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(55% 42% at 22% 62%, rgba(255, 255, 255, 0.30), transparent 70%),
    radial-gradient(48% 36% at 78% 48%, rgba(255, 255, 255, 0.22), transparent 70%);
  background-size: 200% 100%;
  animation: mistDrift 38s ease-in-out infinite alternate;
  pointer-events: none;
}
@keyframes mistDrift {
  from { transform: translateX(-3%); opacity: 0.85; }
  50%  { opacity: 1; }
  to   { transform: translateX(3%); opacity: 0.8; }
}
/* Scrim für Lesbarkeit */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(20, 45, 52, 0.42) 0%, rgba(20, 45, 52, 0.18) 35%, rgba(20, 45, 52, 0.30) 78%, rgba(20, 45, 52, 0.55) 100%);
}
.hero-inner {
  text-align: center;
  color: #fff;
  padding: 7rem 1.5rem 5rem;
  max-width: 60rem;
  /* Zitat leicht nach oben, damit die sitzende Person am Steg frei bleibt */
  transform: translateY(-7vh);
}
.hero-quote {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(1.8rem, 4.8vw, 3.4rem);
  line-height: 1.25;
  margin: 0 0 1.2rem;
  text-shadow: 0 2px 30px rgba(0, 0, 0, 0.35);
}
.hero-quote .line {
  display: block;
  opacity: 0;
  transform: translateY(24px);
  animation: riseIn 1.1s cubic-bezier(0.22, 0.8, 0.3, 1) forwards;
}
.hero-quote .line:nth-child(2) { animation-delay: 0.45s; }
.hero-cite {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  opacity: 0;
  animation: riseIn 1.1s ease 1s forwards;
  margin-bottom: 4.4rem;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: riseIn 1.1s ease 1.35s forwards;
}
@keyframes riseIn {
  to { opacity: 1; transform: translateY(0); }
}
.scroll-cue {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.6rem;
  text-decoration: none;
  animation: cueBob 2.4s ease-in-out infinite;
}
@keyframes cueBob {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, 10px); }
}

/* Hero-Variante „flowers“: der Blütenhalm steht im linken Drittel,
   der Textblock rückt daher in die ruhige, unscharfe rechte Bildhälfte */
.hero--flowers .hero-bg-img { background-position: 36% 45%; }
.hero--flowers .hero-inner {
  justify-self: end;
  text-align: left;
  max-width: 56rem;
  padding: 7rem clamp(1.5rem, 6vw, 7rem) 5rem 1.5rem;
  transform: none;
}
.hero--flowers .hero-actions { justify-content: flex-start; }
/* Buttons deutlich unter dem Zitat: Abstand wächst mit der Fensterhöhe,
   der Block wird um die halbe Zusatzhöhe nach unten geschoben, damit das
   Zitat an seiner Stelle bleibt (Wunsch Frau Prietl, 24.09.2026) */
.hero--flowers .hero-cite { margin-bottom: clamp(7rem, 24vh, 18rem); }
.hero--flowers .hero-inner { transform: translateY(calc((clamp(7rem, 24vh, 18rem) - 4.4rem) / 2)); }
.hero--flowers .hero-quote { font-size: clamp(1.7rem, 3.4vw, 2.6rem); }
.hero--flowers::after {
  background:
    linear-gradient(180deg, rgba(20, 45, 52, 0.38) 0%, rgba(20, 45, 52, 0.10) 30%, rgba(20, 45, 52, 0.22) 70%, rgba(20, 45, 52, 0.50) 100%),
    linear-gradient(90deg, rgba(20, 45, 52, 0) 45%, rgba(20, 45, 52, 0.28) 100%);
}

/* ---------- Scroll-Reveals ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s ease, transform 0.9s cubic-bezier(0.22, 0.8, 0.3, 1);
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: 0.12s; }
.reveal-d2 { transition-delay: 0.24s; }
.reveal-d3 { transition-delay: 0.36s; }

/* ---------- Abschnitte ---------- */
.section-mist { background: var(--mist); }
.section-sand { background: var(--sand); }

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: start;
}

/* „Ja"-Karten (Existenzanalyse) */
.ja-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.4rem;
  margin-top: 2.4rem;
}
.ja-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.7rem 1.8rem;
  box-shadow: var(--shadow);
  border-top: 3px solid var(--teal);
}
.ja-card h3 { font-family: var(--font-sans); font-size: 1.05rem; font-weight: 700; margin-bottom: 0.5rem; }
.ja-card p { margin: 0; font-size: 0.98rem; color: var(--muted); }

/* Traumatherapie */
.badge-neu {
  display: inline-block;
  background: var(--petrol);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: 999px;
  padding: 0.3rem 0.9rem;
  margin-left: 0.8rem;
  vertical-align: middle;
}
.trauma-figure {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  max-height: 560px;
}
.trauma-figure img { width: 100%; height: 100%; object-fit: cover; }
.check-list { list-style: none; padding: 0; margin: 1.2rem 0 0; }
.check-list li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 0.7rem;
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.42em;
  width: 1.05em;
  height: 1.05em;
  border-radius: 50%;
  background: var(--teal);
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%23000' d='M6.2 11.2 2.9 7.9l-1.1 1 4.4 4.5 8-8.1-1-1z'/%3E%3C/svg%3E") center/contain no-repeat;
}

/* EMDR-Anwendungsbereiche: zweispaltige Liste statt Kartenraster */
.emdr-bereiche { margin-top: clamp(2.5rem, 5vw, 4rem); }
.emdr-bereiche h3 { margin-bottom: 1.2rem; }
.emdr-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: clamp(2rem, 5vw, 4rem);
  row-gap: 0.2rem;
}
.emdr-list li {
  position: relative;
  padding: 0.85rem 0 0.85rem 2rem;
  border-top: 1px solid var(--line);
}
.emdr-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.15em;
  width: 1.05em;
  height: 1.05em;
  border-radius: 50%;
  background: var(--teal);
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%23000' d='M6.2 11.2 2.9 7.9l-1.1 1 4.4 4.5 8-8.1-1-1z'/%3E%3C/svg%3E") center/contain no-repeat;
}
.emdr-list strong { display: block; color: var(--petrol); font-weight: 700; }
.emdr-list span { display: block; font-size: 0.96rem; color: var(--muted); }
.emdr-ablauf {
  margin-top: clamp(2rem, 4vw, 3rem);
  background: var(--mist);
  border-radius: var(--radius);
  padding: clamp(1.6rem, 3vw, 2.4rem);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.5rem 2.5rem;
  align-items: center;
}
.emdr-ablauf p { margin: 0; }

/* Rahmenbedingungen-Karten */
.rahmen-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
  margin-top: 2.6rem;
}
.rahmen-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.8rem;
  box-shadow: var(--shadow);
}
.rahmen-card .icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--mist);
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  color: var(--teal-dark);
}
.rahmen-card .icon svg { width: 24px; height: 24px; }
.rahmen-card h3 { font-family: var(--font-sans); font-size: 1.05rem; font-weight: 700; }
.rahmen-card p { margin: 0; font-size: 0.96rem; color: var(--muted); }

/* Über mich */
.about-grid {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
.about-portrait {
  position: sticky;
  top: 110px;
}
.about-portrait img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  width: 100%;
}
.about-portrait figcaption {
  text-align: center;
  margin-top: 1rem;
  font-size: 0.9rem;
  color: var(--muted);
}
.cv-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 2rem;
}
.cv-list { list-style: none; padding: 0; margin: 0.6rem 0 0; }
.cv-list li {
  position: relative;
  padding: 0.45rem 0 0.45rem 1.4rem;
  font-size: 0.95rem;
  border-bottom: 1px solid var(--line);
}
.cv-list li:last-child { border-bottom: 0; }
.cv-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.05em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--teal);
}
.member-note {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  gap: 1.1rem;
  background: var(--mist);
  border-radius: var(--radius);
  padding: 1.1rem 1.4rem;
}
.member-note img { height: 54px; width: auto; border-radius: 8px; }
.member-note p { margin: 0; font-size: 0.95rem; }

/* ---------- Kontakt ---------- */
.contact {
  position: relative;
  isolation: isolate;
  padding: clamp(5rem, 10vw, 8rem) 0;
}
.contact-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-size: cover;
  /* Hero-Motiv gespiegelt: der Blütenhalm steht rechts, die Karte links */
  background-position: 64% 45%;
}
.contact::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(100deg, rgba(24, 52, 58, 0.82) 0%, rgba(24, 52, 58, 0.55) 55%, rgba(24, 52, 58, 0.30) 100%);
}
.contact h2 { color: #fff; }
/* Kicker auch hier im Logo-Weinrot (Wunsch Frau Prietl) */
.contact .kicker { color: var(--wine-light); }
.contact .kicker::after { background: var(--wine-light); }
.contact-card {
  max-width: 640px;
  color: #fff;
  border-radius: 22px;
  padding: clamp(1.8rem, 4vw, 3rem);
}
.contact-rows { margin: 2rem 0 2.4rem; display: grid; gap: 1.3rem; }
.contact-row { display: flex; gap: 1.1rem; align-items: flex-start; }
.contact-row .icon {
  flex: 0 0 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.14);
  display: grid;
  place-items: center;
}
.contact-row .icon svg { width: 22px; height: 22px; }
.contact-row strong { display: block; font-size: 0.8rem; letter-spacing: 0.18em; text-transform: uppercase; opacity: 0.8; margin-bottom: 0.15rem; }
.contact-row a { color: #fff; text-decoration: none; border-bottom: 1px solid rgba(255, 255, 255, 0.4); }
.contact-row a:hover { border-color: #fff; }
.contact-note {
  font-size: 0.92rem;
  opacity: 0.85;
}
.contact-note a { color: #fff; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--petrol-deep);
  color: rgba(255, 255, 255, 0.8);
  padding: 3rem 0 2.2rem;
  font-size: 0.92rem;
}
/* Logo im Footer: helle Graustufen-Version per Filter */
.footer-logo {
  height: 62px;
  width: auto;
  filter: grayscale(1) invert(1) brightness(1.35);
  opacity: 0.75;
  margin-bottom: 2rem;
}
.footer-cols {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 1.6rem;
}
.footer-links { display: flex; gap: 1.6rem; flex-wrap: wrap; }
.footer-links a { color: #fff; text-decoration: none; font-weight: 600; }
.footer-links a:hover { color: #8fd8c5; }
.footer-copy { border-top: 1px solid rgba(255, 255, 255, 0.15); padding-top: 1.4rem; font-size: 0.85rem; opacity: 0.75; }

/* ---------- Unterseiten (Impressum etc.) ---------- */
.subpage-header {
  background: var(--mist);
  padding: 7rem 0 3rem;
}
.subpage-main { padding: 3rem 0 5rem; }
.subpage-main h2 { font-size: 1.5rem; margin-top: 2.2rem; }
.notruf-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.4rem;
  margin-top: 2rem;
}
.notruf-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.6rem 1.8rem;
  box-shadow: var(--shadow);
}
.notruf-card h3 { font-family: var(--font-sans); font-size: 1.02rem; font-weight: 700; }
.notruf-card p { margin: 0.3rem 0; font-size: 0.95rem; }
.notruf-card .tel { font-weight: 700; color: var(--petrol); }
.notruf-hero {
  background: var(--petrol);
  color: #fff;
  border-radius: var(--radius);
  padding: 1.8rem 2rem;
  margin-top: 2rem;
}
.notruf-hero h3 { color: #fff; font-family: var(--font-sans); }
.notruf-hero .tel-big {
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
}

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .rahmen-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; }
  .about-portrait { position: static; max-width: 380px; }
  .two-col { grid-template-columns: 1fr; }
  .trauma-figure { max-height: 420px; }
  .emdr-ablauf { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .nav-toggle { display: block; }
  .main-nav {
    position: fixed;
    inset: 0;
    background: rgba(24, 52, 58, 0.82);
    -webkit-backdrop-filter: blur(20px) saturate(150%);
    backdrop-filter: blur(20px) saturate(150%);
    flex-direction: column;
    justify-content: center;
    gap: 2.2rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
  }
  .main-nav.open { opacity: 1; pointer-events: auto; }
  .main-nav a:not(.btn) { color: #fff !important; font-size: 1.3rem; text-shadow: none; }
  .nav-toggle.open span { background: #fff; }
  .nav-toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
  .ja-grid, .rahmen-grid, .cv-cols, .notruf-grid, .emdr-list { grid-template-columns: 1fr; }
  .brand img { height: 46px; }
  /* Blumen-Hero am Handy: Halm an den linken Rand, Text wieder zentriert */
  .hero--flowers .hero-bg-img { background-position: 40% 50%; }
  .hero--flowers .hero-inner {
    justify-self: center;
    text-align: center;
    padding: 7rem 1.5rem 5rem;
  }
  .hero--flowers .hero-actions { justify-content: center; }
  .hero--flowers .hero-cite { margin-bottom: 4.4rem; }
  .hero--flowers .hero-inner { transform: none; }
}

/* ---------- Reduzierte Bewegung ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-bg-img, .hero-mist, .scroll-cue { animation: none; }
  .hero-bg { transform: none !important; }
  .hero-quote .line, .hero-cite, .hero-actions { animation: none; opacity: 1; transform: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
}
