/* =========================================================
   Coaching mit Herz und Verstand · Tina Ressle
   Redesign v2 — editoriale, warme Handschrift.
   Eigenständiger Look (weg vom Physio-/Standard-Raster):
   Cormorant Garamond (Display) + Karla (Text), warmes
   Papier statt Weiß, echte Fotos, Zitat-Band, Timeline.
   Farben aus Instagram/Logo: Pflaume/Altrosa + Terrakotta
   + Creme. Farbsteuerung via CSS-Variablen (Design-Studio).
   ========================================================= */

:root {
  /* Primaer-Skala (Name historisch --blue-*, steht fuer Primaerfarbe) */
  --blue-900:#341a33; --blue-800:#472444; --blue-700:#653862; --blue-600:#824a7d;
  --blue-500:#9f679a; --blue-100:#ecdeeb; --blue-50:#f7f0f6;
  /* Akzent Rose */
  --red:#c06a72; --red-dark:#a2545c;
  /* Neutral + warme Flaechen */
  --ink:#2c1e27; --body:#5b4a53; --muted:#8a7982; --line:#e9dbe1;
  --bg:#fbf5f0; --bg-soft:#f4e7df;
  --surface:#fffdfb; --surface-2:#fbf3ee; --field-bg:#ffffff;
  --heading:var(--blue-900);

  --shadow-sm: 0 1px 2px rgba(58,34,49,.05), 0 4px 14px rgba(58,34,49,.05);
  --shadow-md: 0 14px 40px rgba(58,34,49,.11);
  --shadow-lg: 0 30px 70px rgba(58,34,49,.17);

  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans: "Karla", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;

  --wrap: 1180px;
  --radius: 11px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--body);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  /* dezente Papierkoernung, kein flacher Look */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.025'/%3E%3C/svg%3E");
}

h1, h2, h3 {
  font-family: var(--serif);
  color: var(--heading);
  line-height: 1.06;
  margin: 0 0 .4em;
  font-weight: 600;
  letter-spacing: -.005em;
}
h1 { font-size: clamp(2.9rem, 6.6vw, 5.1rem); font-weight: 600; }
h2 { font-size: clamp(2.2rem, 4.4vw, 3.4rem); }
h3 { font-size: 1.5rem; }
p { margin: 0 0 1rem; }
a { color: var(--blue-700); text-decoration: none; }
a:hover { color: var(--red-dark); }
img, svg { max-width: 100%; display: block; }
strong { color: var(--ink); font-weight: 700; }
em { font-style: italic; }

.container { width: min(100% - 2.6rem, var(--wrap)); margin-inline: auto; }
.section { padding: clamp(3rem, 7vw, 7.5rem) 0; }
.section--soft { background: var(--bg-soft); }

/* Editorial-Eyebrow: Karla, weit gesperrt */
.eyebrow {
  font-family: var(--sans); font-size: .72rem; font-weight: 700;
  letter-spacing: .28em; text-transform: uppercase; color: var(--red-dark);
  margin: 0 0 1.2rem; display: inline-flex; align-items: center; gap: .7rem;
}
/* eigenständiger Marken-Marker: kleines Herz statt Strich (wie Physio) */
.eyebrow::before {
  content: ""; width: 15px; height: 15px; flex: none; background: var(--red);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 21 3.6 12.6a5 5 0 0 1 7-7.1l1.4 1.3 1.4-1.3a5 5 0 0 1 7 7.1Z'/%3E%3C/svg%3E") center/contain no-repeat;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 21 3.6 12.6a5 5 0 0 1 7-7.1l1.4 1.3 1.4-1.3a5 5 0 0 1 7 7.1Z'/%3E%3C/svg%3E") center/contain no-repeat;
}
.lead { font-size: 1.2rem; color: var(--body); }
.section-head { max-width: 42rem; margin: 0 0 3.4rem; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .eyebrow { justify-content: center; }
.section-head h2 em { color: var(--blue-600); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .6rem;
  font-family: var(--sans); font-weight: 700; font-size: 1rem; line-height: 1;
  padding: 1.05rem 1.7rem; border-radius: 999px; cursor: pointer;
  border: 1.5px solid transparent; transition: transform .16s ease, box-shadow .22s ease, background .2s ease, color .2s ease;
  text-align: center;
}
.btn svg { width: 18px; height: 18px; }
.btn--primary { background: var(--blue-700); color: #fff; box-shadow: 0 12px 26px color-mix(in srgb, var(--blue-700) 32%, transparent); }
.btn--primary:hover { background: var(--blue-800); color: #fff; transform: translateY(-2px); }
.btn--accent { background: var(--red); color: #fff; box-shadow: 0 12px 26px color-mix(in srgb, var(--red) 34%, transparent); }
.btn--accent:hover { background: var(--red-dark); color: #fff; transform: translateY(-2px); }
.btn--ghost { background: transparent; color: var(--ink); border-color: color-mix(in srgb, var(--ink) 22%, transparent); }
.btn--ghost:hover { border-color: var(--blue-600); color: var(--blue-700); transform: translateY(-2px); }
.btn--lg { padding: 1.2rem 2.1rem; font-size: 1.1rem; }
.btn--block { width: 100%; justify-content: center; }

/* Instagram-Icon-Button (Icon: Simple Icons, CC0) */
.ig-btn {
  display: inline-flex; align-items: center; justify-content: center; width: 46px; height: 46px; flex: none;
  border-radius: 50%; border: 1.5px solid var(--line); background: var(--surface);
  color: var(--blue-700); transition: transform .16s ease, border-color .2s ease, color .2s ease;
  line-height: 0;
}
.ig-btn svg { width: 21px; height: 21px; display: block; }
.ig-btn:hover { transform: translateY(-2px); border-color: var(--blue-600); color: var(--red-dark); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: color-mix(in srgb, var(--bg) 92%, transparent);
  border-bottom: 1px solid transparent;
  transition: border-color .25s ease, box-shadow .25s ease;
}
.site-header.scrolled { border-bottom-color: var(--line); box-shadow: var(--shadow-sm); background: var(--bg); }
.nav { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; padding: .8rem 0; }
.brand { display: inline-flex; align-items: center; }
.brand img { height: 62px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 1.9rem; list-style: none; margin: 0; padding: 0; }
.nav-links a { color: var(--body); font-weight: 600; font-size: .96rem; position: relative; padding: .25rem 0; }
.nav-links a::after { content: ""; position: absolute; left: 0; bottom: -2px; width: 100%; height: 1.5px; background: var(--red); transform: scaleX(0); transform-origin: left; transition: transform .22s ease; }
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-cta { display: flex; align-items: center; gap: .7rem; }
/* Anrufen-Button und Instagram-Icon gleich hoch/bündig */
.nav-cta .btn { height: 46px; padding-block: 0; }
.nav-toggle, .nav-close { display: none; }
.nav-extra { display: none; }

@media (max-width: 940px) {
  .brand img { height: 42px; }
  .nav-links {
    position: fixed; inset: 0 0 0 auto; width: min(84vw, 340px);
    flex-direction: column; align-items: flex-start; gap: 1.3rem;
    background: var(--surface-2); padding: 6rem 2rem 2rem;
    transform: translateX(105%); transition: transform .32s cubic-bezier(.4,0,.2,1);
    box-shadow: -20px 0 60px rgba(40,16,32,.18); z-index: 120;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a { font-size: 1.2rem; font-family: var(--serif); }
  .nav-links .nav-extra { display: block; width: 100%; }
  .nav-links .nav-extra .btn { width: 100%; justify-content: center; font-family: var(--sans); font-size: 1rem; }
  .nav-links .nav-extra .btn--accent { color: #fff; }
  .nav-links .nav-actions { display: flex; align-items: center; gap: .7rem; }
  .nav-links .nav-actions .btn { flex: 1; width: auto; }
  .nav-links .nav-actions .ig-btn { flex: none; width: 50px; height: 50px; }
  .nav-sep { display: block; height: 1px; background: var(--line); width: 100%; margin: .3rem 0; }
  .nav-cta .btn--primary, .nav-cta .btn--phone-mini { display: none; }
  .nav-toggle { display: inline-grid; place-items: center; width: 44px; height: 44px; background: transparent; border: 1.5px solid var(--line); border-radius: 12px; color: var(--ink); cursor: pointer; z-index: 130; }
  .nav-toggle svg { width: 22px; height: 22px; }
  /* bei offenem Menü Header-Buttons (inkl. Hamburger) ausblenden -> nur EIN Schließen-X */
  body.nav-open .nav-cta { opacity: 0; pointer-events: none; }
  .nav-close { display: none; position: fixed; top: 1.1rem; right: 1.3rem; z-index: 140; width: 44px; height: 44px; background: var(--surface); border: 1.5px solid var(--line); border-radius: 12px; color: var(--ink); cursor: pointer; place-items: center; }
  .nav-close.show { display: grid; }
  .nav-close svg { width: 22px; height: 22px; }
  /* Backdrop UNTER dem Header (z.100), damit der Header-Stacking-Context
     die Drawer nicht einsperrt und der Backdrop sie nicht ueberdeckt. */
  .nav-backdrop { position: fixed; inset: 0; background: rgba(40,16,32,.4); opacity: 0; pointer-events: none; transition: opacity .3s ease; z-index: 90; }
  .nav-backdrop.show { opacity: 1; pointer-events: auto; }
}

/* ---------- Hero ---------- */
.hero { position: relative; padding: clamp(2.4rem, 5vw, 4.5rem) 0 clamp(3.5rem, 8vw, 6rem); overflow: hidden; }
.hero::before {
  content: ""; position: absolute; z-index: -1; inset: 0;
  background:
    radial-gradient(48% 44% at 88% 18%, color-mix(in srgb, var(--red) 20%, transparent), transparent 70%),
    radial-gradient(50% 50% at 6% 96%, color-mix(in srgb, var(--blue-600) 14%, transparent), transparent 72%);
}
.hero-inner { display: grid; grid-template-columns: 1.08fr .92fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.hero h1 { color: var(--heading); }
.hero h1 em { color: var(--blue-600); font-style: italic; }
.hero .lead { margin: 1.5rem 0 2rem; font-size: 1.26rem; max-width: 36ch; }
.hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: .9rem; margin-bottom: 1.9rem; }
.hero-meta { display: flex; flex-wrap: wrap; gap: 1.3rem; color: var(--muted); font-size: .9rem; font-weight: 600; }
.hero-meta span { display: inline-flex; align-items: center; gap: .5rem; }
.hero-meta svg { width: 16px; height: 16px; color: var(--blue-600); }

/* Portrait mit versetztem Terrakotta-Rahmen + Herz/Kopf-Sticker */
.hero-figure { position: relative; justify-self: center; width: min(24rem, 100%); }
.hero-figure .frame {
  position: relative; border-radius: 12px 12px 12px 26px; overflow: hidden;
  background: linear-gradient(160deg, var(--blue-100), color-mix(in srgb, var(--red) 14%, var(--surface)));
  box-shadow: var(--shadow-lg); border: 1px solid color-mix(in srgb, var(--blue-600) 12%, var(--line));
  z-index: 1;
}
.hero-figure .frame { aspect-ratio: 4/5; }
.hero-figure .frame img { width: 100%; height: 100%; object-fit: cover; object-position: top center; display: block; }
.hero-figure::before {
  content: ""; position: absolute; inset: 18px -18px -18px 18px; border-radius: 12px 12px 12px 26px;
  background: color-mix(in srgb, var(--red) 26%, var(--surface)); z-index: 0;
}
.hero-sticker {
  position: absolute; left: -14px; bottom: 26px; z-index: 2;
  background: var(--surface); border: 1px solid var(--line); border-radius: 9px;
  box-shadow: var(--shadow-md); padding: .7rem .95rem; display: flex; align-items: center; gap: .6rem;
}
.hero-sticker svg { width: 30px; height: 30px; color: var(--blue-600); flex: none; }
.hero-sticker b { font-family: var(--serif); font-size: 1.15rem; color: var(--heading); display: block; line-height: 1; }
.hero-sticker small { font-size: .74rem; color: var(--muted); }

/* ---------- Zitat-Band (O-Ton) ---------- */
.quoteband { background: var(--blue-800); color: #fff; position: relative; overflow: hidden; }
.quoteband .container { padding-block: clamp(3.4rem, 7vw, 5.5rem); position: relative; }
.quoteband .mark { font-family: var(--serif); font-size: 6rem; line-height: .5; color: color-mix(in srgb, var(--red) 70%, #fff); display: block; height: 2.2rem; }
.quoteband blockquote { margin: 0; font-family: var(--serif); font-style: italic; font-weight: 500; font-size: clamp(1.7rem, 3.6vw, 2.9rem); line-height: 1.25; color: #fff; max-width: 24ch; }
.quoteband cite { display: block; margin-top: 1.4rem; font-family: var(--sans); font-style: normal; font-size: .82rem; letter-spacing: .16em; text-transform: uppercase; color: color-mix(in srgb, #fff 70%, var(--blue-800)); }

/* ---------- Empathie ---------- */
.empathy { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.empathy-note { font-family: var(--serif); font-style: italic; font-size: 1.5rem; color: var(--blue-700); line-height: 1.4; margin-top: 1.4rem; }
.reco { list-style: none; margin: 0; padding: 0; display: grid; gap: .7rem; }
.reco li { display: flex; gap: .85rem; align-items: flex-start; padding: 1.05rem 1.25rem; background: var(--surface); border: 1px solid var(--line); border-radius: 9px; box-shadow: var(--shadow-sm); font-weight: 500; color: var(--ink); }
.reco li svg { width: 20px; height: 20px; flex: none; color: var(--red); margin-top: .3rem; }

/* ---------- Themen (editoriale Liste) ---------- */
.topics { border-top: 1px solid var(--line); }
.topic {
  display: grid; grid-template-columns: auto 1fr; gap: 1.5rem; align-items: center;
  padding: 1.7rem 0; border-bottom: 1px solid var(--line);
}
.topic-mark { display: flex; align-items: center; gap: 1rem; }
.topic-mark .idx { font-family: var(--serif); font-size: 1.9rem; line-height: 1; color: color-mix(in srgb, var(--blue-600) 50%, var(--line)); font-weight: 600; font-variant-numeric: lining-nums; min-width: 1.7ch; text-align: right; }
.topic-mark .ic { width: 50px; height: 50px; border-radius: 9px; background: var(--blue-50); color: var(--blue-600); display: grid; place-items: center; flex: none; transition: background .2s ease, color .2s ease; }
.topic-mark .ic svg { width: 25px; height: 25px; }
.topic-body h3 { margin: 0 0 .25rem; color: var(--heading); }
.topic-body p { margin: 0; color: var(--body); max-width: 62ch; }
.topic:hover .topic-mark .ic { background: var(--blue-600); color: #fff; }
.topic:hover .topic-mark .idx { color: var(--red); }

/* ---------- Mein Raum ---------- */
.room-head { max-width: 44rem; margin-bottom: 2.4rem; }
.room-gallery { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; max-width: 54rem; margin-inline: 0; }
.room-gallery figure { margin: 0; border-radius: 12px; overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow-md); cursor: zoom-in; }
.room-gallery img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .4s ease; }
.room-gallery figure:hover img { transform: scale(1.04); }
.room-gallery .feat { grid-column: 1 / -1; aspect-ratio: 16/9; }
.room-gallery .thumb { aspect-ratio: 4/5; }
.room-tag { display: inline-flex; align-items: center; gap: .55rem; background: var(--surface); border: 1px solid var(--line); border-radius: 999px; padding: .5rem 1rem; font-weight: 700; font-size: .86rem; color: var(--blue-700); box-shadow: var(--shadow-sm); margin-bottom: 1.4rem; }
.room-tag svg { width: 17px; height: 17px; color: var(--red); }

/* ---------- Ablauf (Timeline) ---------- */
.timeline { display: grid; gap: 0; max-width: 46rem; }
.tl-step { display: grid; grid-template-columns: auto 1fr; gap: 1.6rem; }
.tl-rail { display: flex; flex-direction: column; align-items: center; }
.tl-num { width: 52px; height: 52px; border-radius: 50%; background: var(--surface); border: 1.5px solid var(--blue-600); color: var(--blue-700); display: flex; align-items: center; justify-content: center; font-family: var(--serif); font-weight: 600; font-size: 1.5rem; line-height: 1; flex: none; box-shadow: var(--shadow-sm);
  /* Cormorant nutzt Mediävalziffern (3/4 mit Unterlänge) -> auf Versalziffern zwingen, damit sie mittig sitzen */
  font-variant-numeric: lining-nums; font-feature-settings: "lnum" 1, "tnum" 1; }
.tl-line { width: 2px; flex: 1; background: linear-gradient(var(--blue-600), color-mix(in srgb, var(--blue-600) 20%, transparent)); margin: .4rem 0; min-height: 20px; }
.tl-step:last-child .tl-line { display: none; }
.tl-body { padding-bottom: 2.4rem; }
.tl-step:last-child .tl-body { padding-bottom: 0; }
.tl-body h3 { margin: .4rem 0 .3rem; }
.tl-body p { margin: 0; }

/* ---------- Ueber mich ---------- */
.about { display: grid; grid-template-columns: .82fr 1.18fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.about-figure { position: relative; justify-self: center; width: min(22rem, 100%); }
.about-figure .frame { border-radius: 26px 12px 12px 12px; overflow: hidden; background: linear-gradient(160deg, var(--blue-100), color-mix(in srgb, var(--red) 12%, var(--surface))); box-shadow: var(--shadow-lg); border: 1px solid var(--line); aspect-ratio: 4/5; }
.about-figure .frame img { width: 100%; height: 100%; object-fit: cover; object-position: top center; display: block; }
.about-figure::before { content: ""; position: absolute; inset: 16px 16px -16px -16px; border-radius: 26px 12px 12px 12px; background: color-mix(in srgb, var(--blue-600) 20%, var(--surface)); z-index: -1; }
.about blockquote { margin: 1.5rem 0; padding-left: 1.3rem; border-left: 3px solid var(--red); font-family: var(--serif); font-style: italic; font-size: 1.55rem; color: var(--blue-800); line-height: 1.4; }
.about-facts { display: flex; flex-wrap: wrap; gap: 2rem; margin-top: 1.6rem; }
.about-facts div b { font-family: var(--serif); font-size: 2.1rem; color: var(--heading); display: block; line-height: 1; }
.about-facts div span { font-size: .86rem; color: var(--muted); }

/* ---------- Ehrlich gesagt (Coaching-Hinweis, einspaltig) ---------- */
.honest { max-width: 44rem; margin-inline: auto; text-align: center; }
.honest .card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(1.8rem, 4vw, 2.8rem); box-shadow: var(--shadow-sm); }
.honest .heart { width: 46px; height: 46px; color: var(--red); margin: 0 auto 1rem; }
.honest p { color: var(--body); }
.honest .fine { font-size: .9rem; color: var(--muted); margin-top: 1.2rem; padding-top: 1.2rem; border-top: 1px solid var(--line); }
.honest .fine strong { color: var(--red-dark); }

/* ---------- FAQ ---------- */
.faq { max-width: 47rem; margin-inline: auto; display: grid; gap: .8rem; }
.faq details { background: var(--surface); border: 1px solid var(--line); border-radius: 9px; padding: 0 1.5rem; box-shadow: var(--shadow-sm); transition: border-color .2s ease; }
.faq details[open] { border-color: color-mix(in srgb, var(--blue-600) 32%, var(--line)); }
.faq summary { list-style: none; cursor: pointer; padding: 1.25rem 0; font-family: var(--serif); font-weight: 600; font-size: 1.35rem; color: var(--heading); display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary .chev { width: 22px; height: 22px; flex: none; color: var(--blue-600); transition: transform .25s ease; }
.faq details[open] summary .chev { transform: rotate(45deg); }
.faq details p { margin: 0 0 1.3rem; }

/* ---------- Kontakt (nur telefonisch) ---------- */
.contact { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.contact .lead { margin-bottom: 1.8rem; }
.callcard { background: var(--blue-800); color: #fff; border-radius: 14px; padding: clamp(1.9rem, 4vw, 2.6rem); box-shadow: var(--shadow-lg); text-align: center; }
.callcard .kicker { font-size: .78rem; letter-spacing: .2em; text-transform: uppercase; color: color-mix(in srgb, #fff 70%, var(--blue-800)); font-weight: 700; }
.callcard .num { font-family: var(--serif); font-size: clamp(2rem, 5vw, 2.9rem); color: #fff; margin: .5rem 0 1.3rem; letter-spacing: .01em; }
.callcard .num a { color: #fff; }
.callcard .btn--accent { box-shadow: 0 14px 30px rgba(0,0,0,.28); }
.callcard .hint { font-size: .84rem; color: color-mix(in srgb, #fff 72%, var(--blue-800)); margin-top: 1rem; }
.contact-details { display: grid; gap: 1rem; margin-top: 1.6rem; }
.contact-details .row { display: flex; align-items: center; gap: .9rem; }
.contact-details .ic { width: 44px; height: 44px; flex: none; border-radius: 12px; background: var(--blue-50); color: var(--blue-600); display: grid; place-items: center; }
.contact-details .ic svg { width: 21px; height: 21px; }
.contact-details b { display: block; font-size: 1rem; color: var(--ink); }
.contact-details small, .contact-details a { color: var(--muted); font-size: .9rem; }
.contact-details a:hover { color: var(--red-dark); }

/* ---------- Standort / Karte (OpenStreetMap, Klick-zum-Laden) ---------- */
.map-head { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1rem; margin-bottom: 1.4rem; }
.map-head .addr { font-weight: 700; color: var(--ink); display: inline-flex; align-items: center; gap: .5rem; }
.map-head .addr svg { width: 18px; height: 18px; color: var(--red); }
.map-actions { display: flex; align-items: center; gap: 1.2rem; flex-wrap: wrap; }
.map-actions .btn { padding: .7rem 1.25rem; font-size: .95rem; }
.map-actions .osm-link { font-weight: 600; font-size: .92rem; }
.map-wrap { border-radius: 12px; overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow-md); position: relative; aspect-ratio: 21/9; background: var(--surface-2); }
.map-wrap iframe { width: 100%; height: 100%; border: 0; display: block; }
.map-consent { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: .9rem; text-align: center; padding: 1.5rem; background: linear-gradient(160deg, var(--blue-100), color-mix(in srgb, var(--red) 10%, var(--surface-2))); cursor: pointer; }
.map-consent svg.pin { width: 36px; height: 36px; color: var(--blue-600); }
.map-consent p { margin: 0; color: var(--body); max-width: 40ch; font-size: .92rem; }
@media (max-width: 700px) { .map-wrap { aspect-ratio: 4/3; } }

/* ---------- Prosa (Über mentales Coaching) ---------- */
.prose { max-width: 46rem; }
.prose p { font-size: 1.1rem; margin-bottom: 1.1rem; }
.prose .prose-lead { font-family: var(--serif); font-style: italic; font-size: 1.5rem; line-height: 1.42; color: var(--blue-700); margin-top: 1.7rem; max-width: 42rem; }

/* ---------- Lightbox (nur Raum-Bilder) ---------- */
.lightbox { position: fixed; inset: 0; z-index: 400; display: none; align-items: center; justify-content: center; padding: 2rem; background: color-mix(in srgb, var(--blue-900) 88%, transparent); cursor: zoom-out; opacity: 0; transition: opacity .2s ease; }
.lightbox.open { display: flex; opacity: 1; }
.lightbox img { max-width: min(92vw, 1080px); max-height: 88vh; border-radius: 12px; box-shadow: 0 30px 80px rgba(0,0,0,.5); }
.lightbox__close { position: absolute; top: 1.2rem; right: 1.4rem; width: 46px; height: 46px; border-radius: 10px; background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.32); color: #fff; display: grid; place-items: center; cursor: pointer; }
.lightbox__close svg { width: 22px; height: 22px; }

/* ---------- Footer ---------- */
.footer { background: var(--blue-900); color: color-mix(in srgb, #fff 82%, var(--blue-900)); padding: 4rem 0 2rem; }
html[data-mode="dark"] .footer { background: #170f18; }
.footer a { color: color-mix(in srgb, #fff 82%, var(--blue-900)); }
.footer a:hover { color: #fff; }
.footer-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 2.5rem; padding-bottom: 2.5rem; border-bottom: 1px solid color-mix(in srgb, #fff 14%, transparent); }
.footer .f-brand img { height: 78px; margin-bottom: 1rem; }
.footer .f-brand p { color: color-mix(in srgb, #fff 72%, var(--blue-900)); max-width: 34ch; font-size: .96rem; }
.footer h4 { color: #fff; font-family: var(--sans); font-size: .78rem; letter-spacing: .16em; text-transform: uppercase; margin-bottom: 1.1rem; }
.footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .7rem; font-size: .95rem; }
.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem; padding-top: 1.8rem; font-size: .86rem; color: color-mix(in srgb, #fff 66%, var(--blue-900)); }
.footer-bottom a { text-decoration: underline; text-underline-offset: 3px; }

/* ---------- Legal-Seiten ---------- */
.legal-hero { background: var(--bg-soft); padding: clamp(2.5rem, 6vw, 4.5rem) 0 2.5rem; border-bottom: 1px solid var(--line); }
.legal-hero h1 { font-size: clamp(2.2rem, 4vw, 3.2rem); margin-bottom: 1rem; }
.legal-hero .back { display: inline-flex; align-items: center; gap: .5rem; font-weight: 700; color: var(--blue-700); }
.legal-hero .back svg { width: 18px; height: 18px; }
.legal { max-width: 50rem; }
.legal h2 { font-size: 1.7rem; margin-top: 2.4rem; }
.legal h3 { font-family: var(--sans); font-weight: 700; font-size: 1.05rem; margin-top: 1.6rem; color: var(--ink); }
.legal address { font-style: normal; line-height: 1.8; }
.legal .muted { color: var(--muted); font-size: .92rem; }
.legal .flag { background: color-mix(in srgb, var(--red) 9%, var(--surface)); border: 1px dashed color-mix(in srgb, var(--red) 45%, var(--line)); border-radius: 12px; padding: 1rem 1.2rem; color: var(--red-dark); font-size: .92rem; }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s cubic-bezier(.16,1,.3,1), transform .7s cubic-bezier(.16,1,.3,1); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* ---------- Responsive ---------- */
@media (max-width: 940px) {
  .hero-inner, .empathy, .room, .about, .contact { grid-template-columns: 1fr; gap: 2rem; }
  .hero-figure { order: -1; margin-bottom: .5rem; width: min(19rem, 76%); }
  .hero .lead { max-width: none; }
  .room-img { order: -1; }
  .about-figure { order: -1; width: min(18rem, 74%); }
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .section { padding: 2.7rem 0; }
  .section-head { margin-bottom: 2rem; }
  .topic { padding: 1.3rem 0; gap: 1.1rem; }
  .topic-mark { gap: .8rem; }
  .topic-mark .ic { width: 42px; height: 42px; }
  .topic-mark .ic svg { width: 21px; height: 21px; }
  .topic-mark .idx { font-size: 1.6rem; }
  .hero-actions { gap: .7rem; }
  .hero .lead { font-size: 1.1rem; margin: 1.1rem 0 1.5rem; }
  .hero-figure, .about-figure { width: min(15.5rem, 72%); }
  .quoteband .container { padding-block: 2.8rem; }
  .empathy-note, .about blockquote { font-size: 1.3rem; }
  .tl-body { padding-bottom: 1.6rem; }
  .footer-top { grid-template-columns: 1fr; gap: 1.6rem; }
  .about-facts { gap: 1.3rem; }
  .hero-sticker { left: 0; }
  .btn--lg { padding: 1rem 1.5rem; font-size: 1rem; }
}
