/* Reinhard Egger – Systemische Beratung | Design-Grundlage
   Farben: warmes Creme, Terrakotta/Ocker (angelehnt an Praxisraum-Vorhänge), tiefes Tannenbraun
   Typo: Fraunces (Display, warm/menschlich) + Karla (Lesetext) */

/* ── Lokal gehostete Schriftarten (Fraunces + Karla) ────────────────────────
   Ersetzt den externen Ladevorgang von fonts.googleapis.com / fonts.gstatic.com.
   Grund: Datenschutz (keine IP-Übertragung an Google beim Seitenaufruf)
   sowie Performance (kein externer Request, kleinere Gesamtgröße). */

@font-face {
  font-family: 'Fraunces';
  src: url('assets/fonts/fraunces-v38-latin-regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Fraunces';
  src: url('assets/fonts/fraunces-v38-latin-500.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Fraunces';
  src: url('assets/fonts/fraunces-v38-latin-600.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Fraunces';
  src: url('assets/fonts/fraunces-v38-latin-700.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Karla';
  src: url('assets/fonts/karla-v33-latin-regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Karla';
  src: url('assets/fonts/karla-v33-latin-500.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Karla';
  src: url('assets/fonts/karla-v33-latin-700.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --cream: #FAF5EC;
  --cream-deep: #F2EADA;
  --paper: #FFFFFF;
  --ink: #2E2620;
  --ink-soft: #5C5247;
  --terracotta: #C2703D;
  --terracotta-deep: #9C5429;
  --terracotta-darker: #7C4220;
  --ochre: #E0A857;
  --teal: #3F6259;
  --line: #E3D9C6;
  --radius: 14px;
  --maxw: 1080px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: 'Karla', sans-serif;
  font-size: 17px;
  line-height: 1.7;
}

h1, h2, h3, .display {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.2;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 600; }
h2 { font-size: clamp(1.5rem, 2.6vw, 2rem); margin-top: 2.6rem; }
h3 { font-size: 1.2rem; font-style: italic; color: var(--terracotta-deep); margin-top: 1.8rem; }

a { color: var(--terracotta-deep); text-decoration-thickness: 1px; }
a:hover { color: var(--terracotta); }

p { margin: 0 0 1.1rem; }

ul { padding-left: 1.2rem; }
li { margin-bottom: 0.5rem; }

blockquote {
  margin: 1.5rem 0;
  padding: 1rem 1.4rem;
  background: var(--cream-deep);
  border-left: 3px solid var(--terracotta);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-style: italic;
  color: var(--ink-soft);
}
blockquote p:last-child { margin-bottom: 0; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 1.5rem; }

/* Header / Nav */
.site-header {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 50;
}
.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 1.5rem;
  max-width: var(--maxw);
  margin: 0 auto;
  gap: 1rem;
}
.brand {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 1.25rem;
  color: var(--ink);
  text-decoration: none;
  white-space: nowrap;
}
.brand span { color: var(--terracotta-deep); }
nav.main-nav { display: flex; flex-wrap: wrap; gap: 0.3rem 1.1rem; justify-content: flex-end; }
nav.main-nav a {
  color: var(--ink-soft);
  text-decoration: none;
  font-size: 0.92rem;
  padding: 0.3rem 0;
  border-bottom: 2px solid transparent;
}
nav.main-nav a:hover, nav.main-nav a[aria-current="page"] {
  color: var(--terracotta-deep);
  border-bottom-color: var(--terracotta);
}

/* Hero */
.hero {
  background: linear-gradient(180deg, var(--cream-deep) 0%, var(--cream) 100%);
  padding: 3.5rem 0 3rem;
  border-bottom: 1px solid var(--line);
}
.hero .eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  color: var(--terracotta-deep);
  font-weight: 700;
  margin-bottom: 0.8rem;
}
.hero h1 { max-width: 760px; }
.hero .lede { max-width: 620px; font-size: 1.1rem; color: var(--ink-soft); margin-top: 1rem; }
.hero .btn-row { display: flex; gap: 0.9rem; flex-wrap: wrap; margin-top: 1.6rem; }

.btn {
  display: inline-block;
  padding: 0.75rem 1.4rem;
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 700;
  transition: transform 0.15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--terracotta-deep); color: #fff; }
.btn-primary:hover { background: var(--terracotta-darker); color: #fff; }
.btn-ghost { background: transparent; color: var(--ink); border: 1.5px solid var(--ink-soft); }
.btn-ghost:hover { border-color: var(--terracotta); color: var(--terracotta-deep); }

/* Mobile-Signatur (hängende Formen, angelehnt an das "Mobile-Prinzip") */
.mobile-deco { display: flex; justify-content: center; align-items: flex-start; gap: 2.2rem; margin: 0.5rem 0 2rem; opacity: 0.9; }
.mobile-deco svg { display: block; }

/* Section / Cards */
section { padding: 2.6rem 0; }
.section-tight { padding: 1.2rem 0; }

.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.4rem 1.6rem;
}

.grid-6 { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.1rem; margin-top: 1.5rem; }
.tile {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.3rem 1.4rem;
  text-decoration: none;
  color: var(--ink);
  display: block;
  transition: border-color 0.15s ease, transform 0.15s ease;
}
.tile:hover { border-color: var(--terracotta); transform: translateY(-2px); }
.tile h3 { margin: 0 0 0.4rem; font-style: normal; color: var(--ink); font-size: 1.08rem; }
.tile p { margin: 0; font-size: 0.92rem; color: var(--ink-soft); }

.trust-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1rem; margin-top: 1.2rem; }
.trust-grid .card { font-size: 0.95rem; }
.trust-grid strong { color: var(--terracotta-deep); display: block; margin-bottom: 0.3rem; font-family: 'Fraunces', serif; font-weight: 600; }

/* FAQ */
details.faq {
  border-bottom: 1px solid var(--line);
  padding: 1rem 0;
}
details.faq summary {
  cursor: pointer;
  font-weight: 700;
  font-family: 'Fraunces', serif;
  font-size: 1.02rem;
  color: var(--ink);
  list-style: none;
}
details.faq summary::-webkit-details-marker { display: none; }
details.faq summary::before { content: "+ "; color: var(--terracotta); font-weight: 700; }
details.faq[open] summary::before { content: "\2212 "; }
details.faq .faq-a { margin-top: 0.7rem; color: var(--ink-soft); }

/* Testimonial */
.testimonial { margin-top: 1.2rem; }
.testimonial cite { display: block; margin-top: 0.5rem; font-style: normal; font-size: 0.9rem; color: var(--ink-soft); }

/* Glossary */
.glossary-cat { margin-top: 2.2rem; }
.glossary-cat h2 { border-top: 1px solid var(--line); padding-top: 2rem; }
.gloss-term { margin-bottom: 1.6rem; }
.gloss-term .term { font-family: 'Fraunces', serif; font-weight: 600; font-size: 1.05rem; }
.gloss-term .principle { font-style: italic; color: var(--ink-soft); }

/* Footer */
footer.site-footer {
  background: var(--ink);
  color: #E8E0D2;
  margin-top: 3rem;
  padding: 2.6rem 0 1.6rem;
}
footer.site-footer a { color: #F0CDA0; }
footer .footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1.6rem; margin-bottom: 1.6rem; }
footer h3 { font-family: 'Fraunces', serif; font-weight: 600; font-style: normal; color: #fff; margin: 0 0 0.6rem; font-size: 1rem; }
footer p, footer li { font-size: 0.9rem; color: #C9BFAE; }
footer ul { list-style: none; padding: 0; margin: 0; }
footer li { margin-bottom: 0.35rem; }
.footer-bottom { border-top: 1px solid #4a4032; padding-top: 1.2rem; font-size: 0.8rem; color: #A89B85; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 0.5rem; }

.note-box {
  background: var(--cream-deep);
  border-radius: var(--radius);
  padding: 1.1rem 1.4rem;
  font-size: 0.92rem;
  color: var(--ink-soft);
  margin-top: 1rem;
}

.note-box--success {
  background: #F0FBF3;
  border: 1px solid #25D366;
  color: #1A7A3A;
  font-weight: 600;
}

.legal-note {
  background: #FBEFE3;
  border: 1px solid #EBD3B0;
  border-radius: var(--radius);
  padding: 1.1rem 1.4rem;
  margin-top: 1.5rem;
  font-size: 0.93rem;
}

@media (max-width: 700px) {
  .nav-row { flex-wrap: wrap; }
  nav.main-nav { justify-content: flex-start; }
}

/* ── Trust Bar ──────────────────────────────────────────────────────────── */
.trust-bar-outer {
  margin-top: 1rem;
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 1.5rem;
}
.trust-bar {
  background: var(--teal);
  padding: 0.85rem 1.2rem;
  border-radius: var(--radius);
}
.trust-bar .wrap {
  padding: 0;
  max-width: none;
}
.trust-bar-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 2.2rem;
  list-style: none;
  padding: 0;
  margin: 0;
  align-items: center;
  justify-content: center;
}
.trust-bar-list li {
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
  margin: 0;
}
.tb-num {
  font-family: 'Fraunces', serif;
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--ochre);
  line-height: 1;
}
.tb-sep {
  font-family: 'Fraunces', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--ochre);
  letter-spacing: 0.06em;
}
.tb-label {
  font-size: 0.82rem;
  color: #D4EDE9;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* ── Video Embed ─────────────────────────────────────────────────────────── */
.video-wrap {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: var(--radius);
  margin-top: 1.2rem;
  max-width: 760px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.10);
}
.video-wrap iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: 0;
  border-radius: var(--radius);
}

/* ── CV Fold (Werdegang / Fortbildungen) ─────────────────────────────────── */
details.cv-fold {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
details.cv-fold summary {
  cursor: pointer;
  padding: 1rem 1.4rem;
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--ink);
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
details.cv-fold summary::-webkit-details-marker { display: none; }
details.cv-fold summary::before {
  content: "+";
  font-size: 1.2rem;
  color: var(--terracotta);
  font-weight: 700;
  width: 1.4rem;
  flex-shrink: 0;
}
details.cv-fold[open] summary::before { content: "−"; }
details.cv-fold summary:hover { background: var(--cream-deep); }
.cv-fold-body { padding: 0 1.4rem 1.4rem; }

.cv-table { width: 100%; border-collapse: collapse; font-size: 0.93rem; }
.cv-table tr { border-bottom: 1px solid var(--line); }
.cv-table tr:last-child { border-bottom: none; }
.cv-table td { padding: 0.8rem 0.5rem; vertical-align: top; }
.cv-time {
  white-space: nowrap;
  color: var(--terracotta-deep);
  font-weight: 700;
  font-size: 0.82rem;
  min-width: 155px;
  padding-right: 1rem;
}
.cv-list { padding-left: 1.2rem; }
.cv-list li { margin-bottom: 0.6rem; font-size: 0.93rem; }

/* ── Hamburger Menu (mobile) ─────────────────────────────────────────────── */
.nav-toggle {
  display: none;
  background: none;
  border: 1.5px solid var(--line);
  border-radius: 6px;
  padding: 0.35rem 0.7rem;
  font-size: 1.2rem;
  cursor: pointer;
  color: var(--ink);
  margin-left: auto;
  line-height: 1;
}

/* ── Quick-Call-Button (Header) ──────────────────────────────────────────── */
.header-call {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--terracotta-deep);
  color: #fff;
  margin-left: auto;
  flex-shrink: 0;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.header-call svg { width: 18px; height: 18px; }
.header-call:hover { transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0,0,0,0.2); color: #fff; }

/* ── WhatsApp Floating Button ────────────────────────────────────────────── */
.wa-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 200;
  background: #25D366;
  color: var(--ink);
  border-radius: 999px;
  padding: 0.75rem 1.2rem;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 4px 16px rgba(0,0,0,0.18);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.wa-float:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.22); color: var(--ink); }
.wa-float svg { width: 20px; height: 20px; fill: currentColor; flex-shrink: 0; }

/* Nav: Hamburger bereits ab schmalen Laptops (statt umbrechender Leiste) */
@media (max-width: 1100px) {
  .nav-toggle { display: block; }
  nav.main-nav {
    display: none;
    flex-direction: column;
    width: 100%;
    background: var(--paper);
    border-top: 1px solid var(--line);
    padding: 0.5rem 0 0.8rem;
    gap: 0;
  }
  nav.main-nav.open { display: flex; }
  nav.main-nav a {
    padding: 0.6rem 1.5rem;
    border-bottom: none;
    font-size: 1rem;
  }
  .nav-row { flex-wrap: wrap; }
}

@media (max-width: 800px) {
  .cv-time { min-width: 110px; font-size: 0.78rem; }
  .trust-bar-list { gap: 0.5rem 1.4rem; }
  .tb-num { font-size: 1.2rem; }
}

/* ── YouTube Privacy Shield ─────────────────────────────────────────────── */
.yt-shield {
  background: var(--cream-deep);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin-top: 1.2rem;
  max-width: 760px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 260px;
}
.yt-shield-inner {
  text-align: center;
  padding: 2.2rem 2rem;
  max-width: 480px;
}
.yt-icon { width: 64px; height: auto; margin-bottom: 1rem; }
.yt-shield-title { font-family: 'Fraunces', serif; font-size: 1.1rem; font-weight: 600; margin-bottom: 0.5rem; }
.yt-shield-text { font-size: 0.9rem; color: var(--ink-soft); margin-bottom: 1.2rem; }

/* ── Cookie Info Bar ─────────────────────────────────────────────────────── */
.cookie-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--ink);
  color: #E8E0D2;
  padding: 0.9rem 1.5rem;
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  flex-wrap: wrap;
  font-size: 0.88rem;
}
.cookie-bar p { margin: 0; color: #C9BFAE; }
.cookie-bar a { color: #F0CDA0; }
.cookie-bar-btn {
  background: var(--terracotta-deep);
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 0.45rem 1.1rem;
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  font-family: 'Karla', sans-serif;
}
.cookie-bar-btn:hover { background: var(--terracotta-darker); }

/* ── Contact Icon Grid ───────────────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-top: 1.2rem;
}
.contact-tile {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.35rem;
  background: var(--paper);
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  padding: 1.1rem 1.2rem;
  text-decoration: none;
  color: var(--ink);
  transition: border-color 0.15s, transform 0.15s;
}
.contact-tile:hover { border-color: var(--terracotta); transform: translateY(-2px); color: var(--ink); }
.contact-tile--wa { border-color: #25D366; }
.contact-tile--wa:hover { border-color: #1DA851; background: #F0FBF3; }
.ct-icon { color: var(--terracotta); margin-bottom: 0.2rem; }
.ct-icon svg { width: 26px; height: 26px; display: block; }
.contact-tile--wa .ct-icon { color: #25D366; }
.ct-label { font-size: 0.82rem; color: var(--ink-soft); font-weight: 500; }
.ct-value { font-family: 'Fraunces', serif; font-weight: 600; font-size: 1rem; color: var(--terracotta-deep); }
.contact-tile--wa .ct-value { color: #1A7A3A; }
.ct-hint { font-size: 0.72rem; line-height: 1.3; color: var(--ink-soft); font-weight: 400; margin-top: 0.15rem; }

/* ── Contact Form ─────────────────────────────────────────────────────────── */
.contact-form { margin-top: 0.8rem; }
.cf-row { display: flex; flex-direction: column; gap: 0.3rem; margin-bottom: 0.9rem; }
.cf-row label { font-weight: 700; font-size: 0.92rem; color: var(--ink); }
.cf-row input,
.cf-row select,
.cf-row textarea {
  font-family: 'Karla', sans-serif;
  font-size: 1rem;
  padding: 0.65rem 0.9rem;
  border: 1.5px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  color: var(--ink);
  transition: border-color 0.15s;
  width: 100%;
  box-sizing: border-box;
}
.cf-row input:focus,
.cf-row select:focus,
.cf-row textarea:focus {
  outline: none;
  border-color: var(--terracotta);
}
.cf-row textarea { resize: vertical; min-height: 110px; }
.cf-check { display: flex; gap: 0.7rem; align-items: flex-start; margin-top: 0.5rem; }
.cf-check input[type="checkbox"] { margin-top: 0.25rem; flex-shrink: 0; width: 1.1rem; height: 1.1rem; cursor: pointer; accent-color: var(--terracotta); }
.cf-check label { font-size: 0.88rem; color: var(--ink-soft); cursor: pointer; }

@media (max-width: 600px) {
  .contact-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 400px) {
  .contact-grid { grid-template-columns: 1fr; }
}

/* ── Mentor Cards (image left, text right, stays side-by-side) ──────────── */
.mentor-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.4rem 1.6rem;
  display: flex;
  gap: 1.3rem;
  align-items: center;
  margin-bottom: 1.2rem;
}
.mentor-img {
  width: 90px;
  height: 90px;
  object-fit: cover;
  border-radius: 50%;
  flex: 0 0 90px;
}
.mentor-text {
  flex: 1 1 auto;
  min-width: 0;
}
.mentor-quote {
  margin: 0;
  border: none;
  background: none;
  padding: 0;
}
.mentor-quote p { margin: 0; }
.mentor-text details.faq { margin-top: 0.5rem; }

@media (max-width: 520px) {
  .mentor-card { flex-direction: column; align-items: flex-start; text-align: left; }
  .mentor-img { margin-bottom: 0.4rem; }
}

@media (max-width: 560px) {
  .cv-table, .cv-table tbody, .cv-table tr, .cv-table td { display: block; width: 100%; }
  .cv-table tr { padding: 0.8rem 0; border-bottom: 1px solid var(--line); }
  .cv-table td { padding: 0.15rem 0; }
  .cv-time { min-width: 0; margin-bottom: 0.2rem; }
}

.contact-tile--signal { border-color: #3A76F0; }
.contact-tile--signal:hover { border-color: #2C5FD0; background: #EEF3FE; }
.contact-tile--signal .ct-icon { color: #3A76F0; }
.contact-tile--signal .ct-value { color: #2C5FD0; }

.contact-tile--telegram { border-color: #29A9EB; }
.contact-tile--telegram:hover { border-color: #1E8FC9; background: #EAF7FD; }
.contact-tile--telegram .ct-icon { color: #29A9EB; }
.contact-tile--telegram .ct-value { color: #146A9C; }

.footer-social { list-style: none; padding: 0; margin: 0.9rem 0 0; display: flex; gap: 0.8rem; }
.footer-social li { margin: 0; }
.footer-social a {
  display: flex; align-items: center; justify-content: center;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: rgba(240,205,160,0.12);
  color: #F0CDA0;
  transition: background 0.15s, color 0.15s;
}
.footer-social a:hover { background: #F0CDA0; color: var(--ink); }
.footer-social svg { width: 17px; height: 17px; }

.footer-dgsf { display: inline-block; margin: 0.9rem 0 0; opacity: 0.92; transition: opacity 0.15s; }
.footer-dgsf:hover { opacity: 1; }
.footer-dgsf img { display: block; width: 56px; height: 56px; border-radius: 50%; }

/* ── Hero Banner (Startseite) ────────────────────────────────────────────── */
.hero-banner-wrap {
  margin-top: 2rem;
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 1.5rem;
}
.hero-banner-img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  display: block;
  box-shadow: 0 6px 28px rgba(0,0,0,0.12);
}

/* ── Praxisraum-Foto (Kontakt, Ablauf & Kosten) ──────────────────────────── */
.room-photo {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  display: block;
  box-shadow: 0 6px 28px rgba(0,0,0,0.12);
}
.room-photo-block {
  max-width: 760px;
  margin: 1.5rem 0;
}

@media (max-width: 700px) {
  .hero-banner-wrap { margin-top: 1.2rem; }
  .hero-banner-img { box-shadow: 0 4px 20px rgba(0,0,0,0.10); }
}

/* ── Ratgeberseite ───────────────────────────────────────────────────────── */
h2[id], h3[id] { scroll-margin-top: 90px; }

.ratgeber-toc {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1.4rem 0 0;
  padding: 0;
  list-style: none;
}
.ratgeber-toc li { margin: 0; }
.ratgeber-toc a {
  display: inline-block;
  padding: 0.45rem 1rem;
  border: 1.5px solid var(--line);
  border-radius: 999px;
  font-size: 0.85rem;
  text-decoration: none;
  color: var(--ink-soft);
  background: var(--paper);
}
.ratgeber-toc a:hover { border-color: var(--terracotta); color: var(--terracotta-deep); }

.faq-source {
  display: block;
  margin-top: 0.7rem;
  font-size: 0.8rem;
  color: var(--ink-soft);
}

.faq-more {
  display: inline-block;
  margin-top: 0.6rem;
  font-size: 0.88rem;
  font-weight: 700;
}

.ratgeber-cat-intro {
  color: var(--ink-soft);
  font-size: 0.95rem;
  margin-top: -0.4rem;
}

/* ── Skip-Navigation (Barrierefreiheit) ──────────────────────────────────── */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 1000;
  background: var(--paper, #fff);
  color: var(--ink, #000);
  padding: 0.75rem 1.25rem;
  border-radius: 0 0 8px 0;
  font-weight: 700;
  text-decoration: none;
}
.skip-link:focus {
  left: 0;
}
