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

  :root {
    --primary:        #660000;
    --primary-dark:   #4A0000;
    --primary-tint:   #F5E8E4;
    --secondary:      #DCDCDC;
    --secondary-dark: #B9B9B9;
    --bg:             #FDFBF8;
    --bg-alt:         #F4EFE8;
    --ink:            #262421;
    --ink-soft:       #5E5850;
    --line:           #E7E0D5;
    --radius:         2px;
    --font-display:   'Fraunces', Georgia, serif;
    --font-body:      'Inter', 'Segoe UI', Arial, sans-serif;
  }

  * { box-sizing: border-box; }
  html { scroll-behavior: smooth; }

  body {
    margin: 0;
    font-family: var(--font-body);
    color: var(--ink);
    background: var(--bg);
    line-height: 1.7;
  }

  h1, h2, h3 {
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--primary);
    margin: 0 0 0.5em;
    line-height: 1.25;
  }

  a { color: inherit; text-decoration: none; }
  img { display: block; max-width: 100%; }

  .wrap { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

  /* Platzhalter fuer noch fehlende Bilder (Unterseiten) */
  .ph {
    background: var(--primary-tint);
    border: 1px dashed var(--secondary-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 0.8rem;
    letter-spacing: 0.03em;
    text-align: center;
    padding: 12px;
    min-height: 120px;
  }

  .cover-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  /* ---------- Bild-Zoom bei Hover (alle Bilder außer Header-Foto) ---------- */
  .img-zoom { display: block; overflow: hidden; }
  .img-zoom img { transition: transform 0.5s ease; }
  .img-zoom:hover img { transform: scale(1.08); }
  a.img-zoom:hover img,
  .img-zoom:hover img { transform: scale(1.08); }

  /* ---------- Mobile Nav-Toggle ---------- */
  .nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 42px;
    height: 42px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 20;
  }
  .nav-toggle span {
    display: block;
    width: 26px;
    height: 2.5px;
    background: #fff;
    transition: transform 0.3s ease, opacity 0.3s ease;
    margin: 0 auto;
  }
  .nav-toggle.active span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
  .nav-toggle.active span:nth-child(2) { opacity: 0; }
  .nav-toggle.active span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }


  header { position: sticky; top: 0; z-index: 100; }
  .header-wrap { position: relative; }

  .header-top {
    background: radial-gradient(ellipse at center, #7a0000 0%, var(--primary-dark) 75%);
    height: 72px;
    display: flex;
    align-items: center;
  }
  .header-nav-bar { background: var(--secondary); border-bottom: 1px solid var(--secondary-dark); height: 40px; }

  .header-inner {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px 0 260px;
  }

  .logo-link {
    position: absolute;
    left: max(24px, calc((100% - 1180px) / 2 + 24px));
    top: 6px;
    z-index: 10;
    display: inline-block;
  }
  .logo-link img { height: 108px; width: auto; display: block; }

  nav.main-nav > ul {
    list-style: none;
    margin: 0; padding: 0;
    display: flex;
    justify-content: flex-end;
    gap: 4px;
    flex-wrap: wrap;
  }
  nav.main-nav > ul > li { position: relative; }
  nav.main-nav > ul > li > a {
    position: relative;
    display: block;
    padding: 12px 13px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #fff;
  }
  nav.main-nav > ul > li > a::after {
    content: "";
    position: absolute;
    left: 13px; right: 13px;
    bottom: 9px;
    height: 1px;
    background: var(--secondary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
  }
  nav.main-nav > ul > li > a:hover,
  nav.main-nav > ul > li:focus-within > a {
    color: var(--secondary);
  }
  nav.main-nav > ul > li > a:hover::after,
  nav.main-nav > ul > li:focus-within > a::after {
    transform: scaleX(1);
  }
  nav.main-nav .sub {
    list-style: none;
    margin: 0; padding: 8px 0;
    position: absolute;
    top: 100%; left: 0;
    background: var(--bg);
    border: 1px solid var(--line);
    min-width: 230px;
    display: none;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  }
  nav.main-nav li:hover .sub,
  nav.main-nav li:focus-within .sub { display: block; }
  nav.main-nav .sub li a {
    display: block;
    padding: 8px 18px;
    font-size: 0.86rem;
    font-weight: 400;
    color: var(--ink-soft);
  }
  nav.main-nav .sub li a:hover { color: var(--primary); background: var(--bg-alt); }

  /* ---------- Header-Bild/-Video (statisch, kein Slider) ---------- */
  .header-banner { position: relative; overflow: hidden; background: var(--primary-dark); }
  .header-banner img,
  .header-banner video {
    width: 100%;
    height: 62vh;
    min-height: 440px;
    max-height: 680px;
    object-fit: cover;
    object-position: 78% 42%;
    display: block;
  }
  .header-banner video::-webkit-media-controls { display: none !important; }
  .header-text {
    position: absolute;
    left: 0; right: 0; bottom: 0;
    padding: 36px 24px 44px;
    background: linear-gradient(to top, rgba(74,0,0,0.72), rgba(74,0,0,0));
    color: #fff;
  }
  .header-text-inner { max-width: 1180px; margin: 0 auto; }
  .header-text h1 {
    color: #fff;
    font-size: clamp(1.5rem, 3.2vw, 2.4rem);
    margin-bottom: 6px;
  }
  .header-text p { font-size: 1.02rem; margin: 0 0 18px; color: var(--secondary); }

  .btn {
    display: inline-block;
    padding: 13px 28px;
    background: var(--primary);
    color: #fff;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.02em;
    border-radius: var(--radius);
    transition: background 0.2s;
  }
  .btn:hover { background: var(--primary-dark); }
  .btn-outline { background: transparent; border: 1.5px solid currentColor; }
  .btn-outline:hover { background: rgba(255,255,255,0.12); }

  /* ---------- Sections ---------- */
  section { padding: 72px 0; }
  .alt-bg { background: var(--bg-alt); }

  .eyebrow {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 10px;
    display: block;
  }

  .intro-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 48px; align-items: start; }
  .intro-grid .lead { font-size: 1.08rem; color: var(--ink-soft); }
  .intro-note {
    background: var(--primary-tint);
    border-left: 3px solid var(--primary);
    padding: 18px 22px;
    margin: 22px 0;
    font-weight: 600;
    color: var(--primary-dark);
  }
  .intro-portrait img { height: 340px; width: 100%; object-fit: cover; margin-bottom: 16px; }

  /* Leistungen: redaktioneller Wechsel Bild/Text */
  .service-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
    margin-bottom: 84px;
  }
  .service-row.reverse .service-row-media { order: 2; }
  .service-row.reverse .service-row-text { order: 1; }
  .service-row-media { aspect-ratio: 5/4; }
  .service-row-media img { width: 100%; height: 100%; object-fit: cover; }
  .service-row-text .num {
    display: block;
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-style: italic;
    color: var(--primary);
    margin-bottom: 10px;
  }
  .service-row-text h3 { font-size: 1.6rem; margin-bottom: 16px; }
  .service-row-text p { color: var(--ink-soft); font-size: 1rem; }

  /* Leistungen: kompaktes Mini-Grid fuer restliche Leistungen */
  .service-mini-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 28px;
    padding-top: 44px;
    border-top: 1px solid var(--line);
  }
  .service-card {
    position: relative;
    background: var(--bg);
    border: 1px solid var(--line);
    border-top: 3px solid var(--primary);
    padding: 28px 26px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
  }
  .service-card::after {
    content: "";
    position: absolute;
    inset: 8px;
    border: 1.5px solid var(--primary);
    opacity: 0;
    transform: scale(0.94);
    transition: opacity 0.35s ease, transform 0.35s ease;
    pointer-events: none;
  }
  .service-card:hover {
    box-shadow: 0 14px 28px rgba(102,0,0,0.12);
    transform: translateY(-3px);
  }
  .service-card:hover::after {
    opacity: 1;
    transform: scale(1);
  }
  .service-card h3 { font-size: 1.15rem; margin-bottom: 12px; }
  .service-card p { color: var(--ink-soft); font-size: 0.94rem; flex: 1; }
  .more {
    display: inline-block;
    margin-top: 14px;
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--primary);
    border-bottom: 1px solid var(--primary);
  }
  .service-card .more { align-self: flex-start; }

  /* Scroll-Reveal */
  .reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
  .reveal.in-view { opacity: 1; transform: translateY(0); }

  /* Video / Wundtherapie */
  .video-section .wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
  .video-ph { aspect-ratio: 16/9; }

  .video-embed {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
    background: #000;
    border: 1px solid var(--line);
  }
  .video-embed iframe { width: 100%; height: 100%; display: block; border: 0; }
  .video-preview-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: brightness(0.85);
  }
  .video-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    text-align: center;
    padding: 24px;
    background: linear-gradient(rgba(0,0,0,0.15), rgba(0,0,0,0.35));
  }
  .video-play-btn {
    width: 78px;
    height: 55px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: transform 0.2s;
    filter: drop-shadow(0 6px 16px rgba(0,0,0,0.4));
  }
  .video-play-btn:hover { transform: scale(1.08); }
  .video-overlay-note {
    max-width: 380px;
    margin: 0;
    font-size: 0.78rem;
    color: #fff;
    text-shadow: 0 1px 4px rgba(0,0,0,0.6);
  }
  .video-overlay-note a { color: #fff; text-decoration: underline; }

  /* Was koennen wir fuer sie tun */
  .doctor-feature { display: grid; grid-template-columns: 300px 1fr; gap: 40px; align-items: start; margin-bottom: 8px; }
  .doctor-feature .img-zoom { height: 100%; min-height: 480px; }
  .doctor-feature .img-zoom img { width: 100%; height: 100%; object-fit: cover; }
  .doctor-feature-text h2 { margin-bottom: 18px; }
  .doctor-feature-text article { margin-bottom: 26px; }
  .doctor-feature-text article h3 { font-size: 1.05rem; margin-bottom: 8px; }
  .doctor-feature-text article p { color: var(--ink-soft); font-size: 0.94rem; }


  /* Philosophie */
  .philosophy-grid { display: grid; grid-template-columns: 1.3fr 0.7fr; gap: 48px; }
  .philosophy-grid h2.quote {
    font-style: italic;
    font-weight: 400;
    font-size: clamp(1.5rem, 2.6vw, 2.1rem);
    line-height: 1.4;
    border-left: 3px solid var(--primary);
    padding-left: 22px;
    margin-bottom: 28px;
  }
  .philosophy-grid img.cover { width: 100%; height: 300px; object-fit: cover; margin-bottom: 14px; }
  .philosophy-grid img.flyer { display: block; width: 100%; height: auto; object-fit: contain; }
  .side-block { margin-bottom: 32px; }
  .side-block p.caption { font-size: 0.85rem; color: var(--ink-soft); }
  .flyer-row { display: flex; align-items: center; gap: 20px; }
  .flyer-row .img-zoom { flex: 0 0 110px; width: 110px; }
  .flyer-row .flyer-text { flex: 1; }
  .flyer-row .flyer-text h3 { margin-bottom: 10px; }

  /* Gallery */
  .gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 32px; }
  .gallery-grid img { aspect-ratio: 4/3; width: 100%; height: 100%; object-fit: cover; }
  .gallery-cta { text-align: center; margin-top: 36px; font-family: var(--font-display); font-size: 1.15rem; color: var(--primary-dark); }
  .gallery-cta .phone { color: var(--primary); font-weight: 700; }

  /* Mitgliedschaften */
  .memberships { display: flex; flex-wrap: wrap; gap: 32px; justify-content: center; align-items: center; margin-top: 28px; }
  .memberships img { height: 68px; width: auto; max-width: 170px; object-fit: contain; filter: grayscale(0%); }

  /* Map + Kontakt */
  .contact-section .wrap { display: grid; grid-template-columns: 1.2fr 1fr; gap: 0; }
  .map-embed { min-height: 420px; position: relative; overflow: hidden; }
  .map-embed iframe { width: 100%; height: 100%; min-height: 420px; border: 0; display: block; }
  .map-preview-img {
    width: 100%;
    height: 100%;
    min-height: 420px;
    object-fit: cover;
    display: block;
    filter: saturate(0.85);
  }
  .map-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    text-align: center;
    padding: 24px;
    background: linear-gradient(rgba(38,36,33,0.32), rgba(38,36,33,0.32));
  }
  .map-load-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 30px;
    background: var(--primary);
    color: #fff;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.95rem;
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    box-shadow: 0 10px 24px rgba(0,0,0,0.25);
    transition: background 0.2s;
  }
  .map-load-btn:hover { background: var(--primary-dark); }
  .map-load-icon { font-size: 1.1rem; }
  .map-overlay-note {
    max-width: 380px;
    margin: 0;
    font-size: 0.78rem;
    color: #fff;
    text-shadow: 0 1px 4px rgba(0,0,0,0.5);
  }
  .map-overlay-note a { color: #fff; text-decoration: underline; }
  .contact-panel { background: var(--primary-dark); color: #fff; padding: 48px 44px; }
  .contact-panel h3 { color: #fff; }
  .contact-panel a.btn { margin-top: 18px; }
  .contact-panel .addr { margin: 18px 0 28px; color: var(--secondary); }
  .contact-panel .sister { border-top: 1px solid rgba(255,255,255,0.25); padding-top: 24px; margin-top: 8px; font-size: 0.92rem; }
  .contact-panel .sister a { color: #fff; font-weight: 700; text-decoration: underline; }

  /* Footer */
  footer { background: var(--primary-dark); color: var(--secondary); padding: 56px 0 24px; font-size: 0.9rem; border-top: 3px solid var(--primary); }
  .footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 32px;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    padding-bottom: 32px;
  }
  footer h3 { color: #fff; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 14px; }
  footer ul { list-style: none; margin: 0; padding: 0; }
  footer li { margin-bottom: 8px; }
  footer a:hover { color: #fff; }
  .social-row { display: flex; gap: 12px; margin-top: 6px; }
  .social-row a {
    width: 36px; height: 36px; border-radius: 50%;
    background: rgba(255,255,255,0.12);
    display: flex; align-items: center; justify-content: center;
    transition: background 0.2s;
  }
  .social-row a:hover { background: var(--secondary); }
  .social-row svg { width: 17px; height: 17px; fill: #fff; }
  .social-row a:hover svg { fill: var(--primary-dark); }

  .badge-link { display: inline-block; margin-top: 4px; }
  .badge-link img { height: 42px; width: auto; }

  .bottom-bar {
    display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
    padding-top: 20px; font-size: 0.8rem; color: rgba(220,220,220,0.65);
  }

  @media (max-width: 900px) {
    .intro-grid, .video-section .wrap, .philosophy-grid, .contact-section .wrap, .doctor-feature, .service-row {
      grid-template-columns: 1fr;
    }
    .service-row.reverse .service-row-media,
    .service-row.reverse .service-row-text { order: initial; }
    .service-row { margin-bottom: 48px; gap: 20px; }
    .doctor-feature .img-zoom { min-height: 280px; }

    .header-inner { padding-left: 24px; justify-content: flex-end; }
    .nav-toggle { display: flex; }
    nav.main-nav > ul {
      display: none;
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      flex-direction: column;
      background: var(--secondary);
      box-shadow: 0 10px 24px rgba(0,0,0,0.18);
      padding: 6px 0;
      gap: 0;
    }
    nav.main-nav > ul.open { display: flex; }
    nav.main-nav > ul > li > a { padding: 12px 24px; color: var(--ink); }
    nav.main-nav .sub {
      position: static;
      display: block;
      border: 0;
      box-shadow: none;
      background: transparent;
      padding: 0 0 6px 34px;
    }
    nav.main-nav .sub li a { padding: 6px 0; }

    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .flyer-row { flex-direction: column; align-items: flex-start; }
    .flyer-row .img-zoom { width: 140px; }
  }

/* ================= UNTERSEITEN: Content-Page Template ================= */
.page-banner {
  position: relative;
  overflow: hidden;
  background: var(--primary-dark);
}
.page-banner img {
  width: 100%;
  height: 34vh;
  min-height: 220px;
  max-height: 380px;
  object-fit: cover;
  display: block;
}
.page-banner-text {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 28px 24px 32px;
  background: linear-gradient(to top, rgba(74,0,0,0.78), rgba(74,0,0,0));
  color: #fff;
}
.page-banner-text .wrap { max-width: 1180px; margin: 0 auto; }
.breadcrumb {
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: var(--secondary);
  margin-bottom: 8px;
}
.breadcrumb a { color: var(--secondary); border-bottom: 1px solid rgba(220,220,220,0.4); }
.breadcrumb a:hover { color: #fff; }
.page-banner-text h1 {
  color: #fff;
  font-size: clamp(1.5rem, 3vw, 2.3rem);
  margin: 0;
}

.content-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 64px;
  align-items: start;
}
.content-main .lead {
  font-size: 1.1rem;
  color: var(--ink-soft);
  margin-bottom: 6px;
}
.content-main h2.section-title { margin-top: 0; }
.leistungen-list {
  list-style: none;
  margin: 24px 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 12px;
}
.leistungen-list li {
  flex: 0 1 auto;
  padding: 9px 16px;
  background: var(--bg-alt);
  border-left: 3px solid var(--primary);
  font-size: 0.9rem;
  line-height: 1.4;
}
.leistungen-list li strong { color: var(--primary-dark); }

/* Accordion fuer Unterthemen */
.acc-group { margin-top: 44px; border-top: 1px solid var(--line); }
details.acc {
  border-bottom: 1px solid var(--line);
}
details.acc summary {
  cursor: pointer;
  list-style: none;
  padding: 20px 4px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--primary-dark);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
details.acc summary::-webkit-details-marker { display: none; }
details.acc summary::after {
  content: "+";
  font-family: var(--font-body);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--primary);
  flex-shrink: 0;
  transition: transform 0.25s ease;
}
details.acc[open] summary::after { content: "–"; }
details.acc .acc-body {
  padding: 0 4px 26px;
  color: var(--ink-soft);
  font-size: 0.96rem;
}
details.acc .acc-body p { margin: 0 0 14px; }
details.acc .acc-body p:last-child { margin-bottom: 0; }
details.acc .acc-body h4 {
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--ink);
  font-size: 0.95rem;
  margin: 18px 0 8px;
}
details.acc .acc-body ul { margin: 0 0 14px; padding-left: 20px; }
details.acc .acc-body li { margin-bottom: 4px; }

/* Sidebar */
.sidebar-card {
  background: var(--bg-alt);
  border: 1px solid var(--line);
  padding: 28px 26px;
}
.sidebar-card h3 { font-size: 1.05rem; margin-bottom: 14px; }
.sidebar-card p { font-size: 0.92rem; color: var(--ink-soft); margin: 0 0 6px; }
.sidebar-card .btn { margin-top: 16px; width: 100%; text-align: center; }
.sidebar-card .sister-mini {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-size: 0.88rem;
}
.sidebar-card .sister-mini a { color: var(--primary); font-weight: 700; border-bottom: 1px solid var(--primary); }

@media (max-width: 900px) {
  .content-layout { grid-template-columns: 1fr; }
  .sidebar-card--slim { display: none; }
}

/* ================= UNTERSEITEN: Seitenkopf ohne Banner-Bild ================= */
.page-head { padding: 52px 0 8px; }
.page-head .wrap {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 52px;
  align-items: center;
}
.page-head .breadcrumb {
  font-size: 0.78rem;
  letter-spacing: 0.03em;
  color: var(--ink-soft);
  margin-bottom: 16px;
}
.page-head .breadcrumb a { color: var(--primary); border-bottom: 1px solid var(--line); }
.page-head .breadcrumb a:hover { border-color: var(--primary); }
.page-head h1 { margin-bottom: 16px; }
.page-head .lead {
  font-size: 1.08rem;
  color: var(--ink-soft);
  margin: 0;
}
.page-head-media .img-zoom {
  border: 1px solid var(--line);
  box-shadow: 0 24px 48px rgba(102,0,0,0.10);
}
.page-head-media img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  display: block;
}
.page-head-media .cap {
  margin-top: 12px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--primary);
}

@media (max-width: 900px) {
  .page-head .wrap { grid-template-columns: 1fr; }
  .page-head-media { order: -1; }
  .page-head-media img { height: 260px; }
}

/* Vorher/Nachher-Reihe (kompakt statt riesiges Collage-Bild) */
.vn-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 32px 0 8px;
}
.vn-row figure { margin: 0; }
.vn-row .img-zoom {
  aspect-ratio: 1/1;
  border: 1px solid var(--line);
}
.vn-row .img-zoom img { width: 100%; height: 100%; object-fit: cover; }
.vn-row figcaption {
  text-align: center;
  margin-top: 10px;
  font-family: var(--font-display);
  font-style: italic;
  color: var(--primary);
  font-size: 0.88rem;
}
.vn-note { font-size: 0.85rem; color: var(--ink-soft); text-align: center; margin-top: 4px; }

@media (max-width: 600px) {
  .vn-row { grid-template-columns: 1fr; gap: 10px; }
  .vn-row .img-zoom { aspect-ratio: 4/3; max-width: 280px; margin: 0 auto; }
}

/* Seitenkopf-Variante: zentriert, ohne seitliches Bild, Bild darunter */
.page-head--centered .wrap {
  display: block;
  text-align: center;
  max-width: 760px;
}
.page-head--centered .breadcrumb { justify-content: center; }
.page-head--centered .page-head-media-below {
  margin: 32px auto 0;
  max-width: 480px;
}
.page-head--centered .page-head-media-below.page-head-vn {
  max-width: 780px;
}
.page-head--centered .page-head-media-below .img-zoom {
  border: 1px solid var(--line);
  box-shadow: 0 24px 48px rgba(102,0,0,0.10);
}
.page-head--centered .page-head-media-below img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
}
.page-head--centered .page-head-media-below.page-head-vn .vn-row { margin-top: 0; }

.content-layout--full { grid-template-columns: 1fr; }

/* Terminland-Buchungswidget */
.booking-embed {
  border: 1px solid var(--line);
  background: var(--bg);
  box-shadow: 0 20px 44px rgba(102,0,0,0.08);
  overflow: hidden;
  margin: 8px 0 32px;
}
.booking-embed iframe { display: block; width: 100%; border: 0; }

/* Kopfbereich ohne Bild (einspaltig, linksbündig) */
.page-head--textonly .wrap { display: block; }
