  :root {
    --bg: #F6EFE2;
    --bg-deep: #EBDFC8;
    --bg-warm: #F0E5D0;
    --bg-dark: #1A2519;
    --ink: #1F1A14;
    --ink-soft: #5C5346;
    --ink-faint: #8A8074;
    --green: #2D3A2E;
    --green-deep: #1A2519;
    --terracotta: #B85838;
    --gold: #B89968;
    --gold-warm: #C9A876;
    --line: rgba(31, 26, 20, 0.12);
    --line-strong: rgba(31, 26, 20, 0.22);
    /* Tinted shadows — warm, not pure black */
    --shadow-sm: 0 1px 2px rgba(74, 52, 28, 0.06);
    --shadow-md: 0 12px 28px -12px rgba(74, 52, 28, 0.18);
    --shadow-lg: 0 30px 60px -22px rgba(74, 52, 28, 0.22), 0 50px 120px -40px rgba(74, 52, 28, 0.18);
    --ease: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-spring: cubic-bezier(0.34, 1.32, 0.64, 1);
  }

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

  html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

  body {
    font-family: 'DM Sans', -apple-system, sans-serif;
    background: var(--bg);
    color: var(--ink);
    line-height: 1.6;
    font-size: 17px;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    font-feature-settings: 'kern', 'liga', 'calt';
  }

  /* Tabular numerics for capacities, dates, phone numbers */
  .raum-cap, .anlass-num, .themen-num, .review-stars,
  .info-block .info-value, .foot-meta {
    font-variant-numeric: tabular-nums;
  }

  /* Subtle grain — taktile, warme Oberfläche statt steriler Flächen */
  body::before {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.45;
    mix-blend-mode: multiply;
    background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 240 240' xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.25 0 0 0 0 0.18 0 0 0 0 0.10 0 0 0 0.08 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
    background-size: 240px 240px;
  }

  ::selection { background: var(--green); color: var(--bg); }

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

  /* Skip-Link für Tastatur-Navigation */
  .skip-link {
    position: absolute;
    left: -9999px;
    top: 0;
    background: var(--ink);
    color: var(--bg);
    padding: 12px 18px;
    border-radius: 0 0 6px 0;
    font-size: 13px;
    font-weight: 500;
    z-index: 1000;
  }
  .skip-link:focus { left: 0; }

  /* Konsistente, sichtbare Focus-Ringe */
  :focus-visible {
    outline: 2px solid var(--green);
    outline-offset: 3px;
    border-radius: 3px;
  }

  /* ─── Navigation ─── */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    padding: 16px clamp(20px, 4vw, 48px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: clamp(16px, 3vw, 40px);
    z-index: 100;
    transition: background 0.4s ease, backdrop-filter 0.4s ease, border-color 0.4s ease;
    background: rgba(246, 239, 226, 0);
    border-bottom: 1px solid transparent;
  }
  nav.scrolled {
    background: rgba(246, 239, 226, 0.82);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    border-bottom-color: var(--line);
  }

  .logo-img {
    height: 42px;
    width: auto;
    display: block;
  }
  /* Zwischen ~820 und ~1100px wird es eng: das Logo ist sehr breit.
     Logo und Links dort schrittweise verkleinern, damit sie sich nicht
     berühren — statt die Navigation komplett auszublenden. */
  @media (max-width: 1100px) {
    .logo-img { height: 34px; }
  }
  @media (max-width: 820px) {
    .logo-img { height: 36px; }
  }
  @media (max-width: 480px) {
    .logo-img { height: 32px; }
  }
  /* Auf schmalen Handys ist die Wortmarke breiter als der Platz neben
     dem Kontakt-Button. Dort über die Breite statt über die Höhe
     begrenzen, damit nichts aus der Navigation herausläuft. */
  @media (max-width: 560px) {
    nav > a:first-child { min-width: 0; }
    .logo-img { height: auto; width: 210px; max-width: 100%; }
  }
  .logo-fallback {
    font-family: 'Fraunces', serif;
    font-variation-settings: 'opsz' 24, 'SOFT' 50;
    font-weight: 500;
    font-size: 20px;
    letter-spacing: -0.01em;
    line-height: 1;
    display: none;
  }
  .logo-fallback em {
    font-style: italic;
    font-weight: 300;
    color: var(--gold);
  }
  .logo-img.failed + .logo-fallback { display: block; }

  .nav-links {
    display: flex;
    gap: clamp(20px, 3vw, 36px);
    list-style: none;
    align-items: center;
    flex-shrink: 0;
  }
  @media (max-width: 1100px) {
    .nav-links { gap: 18px; }
    .nav-links a { font-size: 13px; }
    .nav-cta { padding: 8px 14px; }
  }
  .nav-links a {
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.005em;
    color: var(--ink);
    transition: opacity 0.2s, color 0.2s;
    position: relative;
  }
  .nav-links a::after {
    content: '';
    position: absolute;
    left: 0; right: 0; bottom: -4px;
    height: 1px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
  }
  .nav-links a:hover::after { transform: scaleX(1); }

  .nav-cta {
    font-size: 13px;
    padding: 9px 18px;
    border: 1px solid var(--ink);
    border-radius: 100px;
    transition: background 0.25s, color 0.25s;
  }
  .nav-cta:hover { background: var(--ink); color: var(--bg); }
  .nav-cta::after { display: none !important; }

  /* gehört nur ins aufgeklappte Menü, nicht in die Navigationszeile */
  .nav-fuss { display: none; }

  /* ─── Burger-Knopf ───
     Nur auf schmalen Geräten sichtbar. Klappt beim Öffnen zum Kreuz. */
  .nav-burger {
    display: none;
    position: relative;
    z-index: 2;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    /* negative Ränder: große Tippfläche, ohne die Navigation zu verschieben */
    margin: -10px -10px -10px 0;
    padding: 0;
    background: none;
    border: 0;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
  }
  .nav-burger span {
    display: block;
    width: 22px;
    height: 1.5px;
    background: var(--ink);
    border-radius: 2px;
    transition: transform 0.3s var(--ease), opacity 0.2s ease, background 0.4s ease;
  }
  .nav-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
  .nav-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

  /* ─── Menü auf dem Handy ───
     Die Liste wird zur Vollbildfläche. Vorher waren hier alle Punkte
     außer dem Kontakt-Knopf ausgeblendet, damit kam man auf dem Handy
     nirgendwo hin. */
  @media (max-width: 820px) {
    .nav-burger { display: flex; }

    /* Logo und Knopf bleiben über der Menüfläche sichtbar */
    nav > a:first-child { position: relative; z-index: 2; }

    .nav-links {
      position: fixed;
      inset: 0;
      flex-direction: column;
      justify-content: center;
      align-items: stretch;
      gap: 0;
      padding: 104px clamp(24px, 7vw, 48px) 56px;
      background: var(--bg);
      overflow-y: auto;
      opacity: 0;
      visibility: hidden;
      transform: translateY(-10px);
      /* visibility springt, das lässt sich nicht weich blenden. Beim Schließen
         gehört der Sprung ans Ende der Blende, beim Öffnen an den Anfang,
         sonst poppt die Fläche halb eingeblendet auf.
         Ausgeschrieben statt als Kurzschreibweise: sobald eine CSS-Variable
         in `transition` steht, verschluckt der Browser die ganze Angabe. */
      transition-property: opacity, transform, visibility;
      transition-duration: 0.3s, 0.35s, 0s;
      transition-delay: 0s, 0s, 0.35s;
      transition-timing-function: ease, cubic-bezier(0.16, 1, 0.3, 1), linear;
    }
    .nav-links.offen {
      opacity: 1;
      visibility: visible;
      transform: none;
      transition-delay: 0s;
    }

    .nav-links li { border-bottom: 1px solid var(--line); }
    .nav-cta-zeile { border-bottom: 0 !important; margin-top: 28px; text-align: center; }

    /* Anschrift und Telefonnummer füllen die Fläche unten aus, statt sie
       leer stehen zu lassen. Auf breiten Fenstern haben sie in der
       Navigationszeile nichts zu suchen. */
    .nav-fuss {
      display: block;
      border-bottom: 0 !important;
      margin-top: auto;
      padding-top: 36px;
      text-align: center;
      line-height: 1.7;
    }
    .nav-fuss a {
      font-family: 'DM Sans', -apple-system, sans-serif;
      font-size: 19px;
      font-weight: 500;
      padding: 6px 0;
      color: var(--ink);
    }
    .nav-fuss span {
      display: block;
      font-size: 13px;
      color: var(--ink-faint);
    }

    .nav-links a {
      display: block;
      padding: 17px 0;
      font-family: 'Fraunces', serif;
      font-variation-settings: 'opsz' 48, 'SOFT' 100;
      font-size: clamp(24px, 6.5vw, 32px);
      font-weight: 400;
      letter-spacing: -0.02em;
      line-height: 1.1;
    }
    .nav-links a::after { display: none; }

    .nav-cta {
      display: inline-block;
      font-family: 'DM Sans', -apple-system, sans-serif;
      font-size: 14px;
      font-weight: 500;
      padding: 15px 38px;
      letter-spacing: 0.01em;
    }
  }

  /* Solange das Menü offen ist, soll die Seite dahinter nicht mitscrollen */
  body.menue-offen { overflow: hidden; }

  /* Ein Element mit backdrop-filter wird zum Bezugsrahmen für alles, was
     darin fest positioniert ist. Sobald der Besucher gescrollt hatte, bekam
     die Leiste ihren Weichzeichner, und die Menüfläche maß sich dann an der
     Leiste statt am Bildschirm: aus der ganzen Seite wurde ein 160 Pixel
     hoher Streifen. Solange das Menü offen ist, muss der Weichzeichner weg. */
  nav.offen.scrolled {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: var(--bg);
    border-bottom-color: transparent;
  }

  /* ─── Hero ─── */
  .hero {
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 140px clamp(20px, 4vw, 48px) 96px;
    position: relative;
  }

  .hero-eyebrow {
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.24em;
    color: var(--terracotta);
    margin-bottom: 28px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 1.1s 0.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  }
  .hero-eyebrow::before, .hero-eyebrow::after {
    content: '';
    display: inline-block;
    width: 24px; height: 1px;
    background: var(--terracotta);
    margin: 0 14px;
    vertical-align: middle;
  }

  .hero h1 {
    font-family: 'Fraunces', serif;
    font-variation-settings: 'opsz' 144, 'SOFT' 100;
    font-size: clamp(46px, 8.8vw, 138px);
    font-weight: 400;
    line-height: 0.94;
    letter-spacing: -0.035em;
    margin-bottom: 36px;
    max-width: 14ch;
    text-wrap: balance;
    opacity: 0;
    transform: translateY(28px);
    animation: fadeUp 1.3s 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  }
  .hero h1 em {
    font-style: italic;
    font-weight: 300;
    color: var(--green);
  }

  .hero-sub {
    font-size: clamp(17px, 1.3vw, 20px);
    color: var(--ink-soft);
    max-width: 560px;
    margin: 0 auto 56px;
    line-height: 1.55;
    text-wrap: pretty;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 1.2s 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  }

  .hero-ctas {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeUp 1.2s 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  }
  .btn-primary, .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 100px;
    font-size: 15px;
    font-weight: 500;
    transition: transform 0.3s var(--ease-spring),
                background 0.3s var(--ease),
                color 0.3s var(--ease),
                gap 0.3s var(--ease),
                border-color 0.3s var(--ease),
                box-shadow 0.3s var(--ease);
    will-change: transform;
  }
  .btn-primary {
    background: var(--ink);
    color: var(--bg);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.06) inset, 0 8px 20px -8px rgba(31, 26, 20, 0.4);
  }
  .btn-primary:hover {
    background: var(--green);
    gap: 14px;
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.08) inset, 0 14px 28px -10px rgba(45, 58, 46, 0.45);
  }
  .btn-primary:active { transform: scale(0.97); }
  .btn-secondary {
    border: 1px solid var(--line-strong);
    color: var(--ink);
  }
  .btn-secondary:hover { border-color: var(--ink); gap: 14px; background: rgba(31, 26, 20, 0.03); }
  .btn-secondary:active { transform: scale(0.97); }
  .btn-primary svg, .btn-secondary svg {
    width: 14px; height: 14px;
    transition: transform 0.3s var(--ease);
  }
  .btn-primary:hover svg, .btn-secondary:hover svg { transform: translateX(4px); }

  .hero-image {
    margin-top: 88px;
    width: min(1180px, 95vw);
    aspect-ratio: 16 / 10;
    border-radius: 8px;
    overflow: hidden;
    background: linear-gradient(135deg, #2D3A2E 0%, #1A2519 100%);
    position: relative;
    opacity: 0;
    transform: translateY(48px) scale(0.96);
    animation: fadeUpScale 1.6s 1.1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    box-shadow: var(--shadow-lg);
  }
  .hero-image::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 8px;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
    pointer-events: none;
  }
  .hero-image img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center 58%;
    will-change: transform;
    transform: scale(1.15);
  }

  .hero-caption {
    margin: 40px auto 0;
    max-width: 580px;
    padding: 0 24px;
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 1.2s 1.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  }
  .hero-caption .caption-names {
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-weight: 500;
    font-size: clamp(19px, 1.5vw, 23px);
    color: var(--ink);
    letter-spacing: 0.005em;
    margin-bottom: 10px;
    line-height: 1.35;
  }
  .hero-caption p {
    font-size: clamp(15px, 1.05vw, 17px);
    color: var(--ink-soft);
    line-height: 1.6;
    margin: 0;
    text-wrap: pretty;
  }

  @keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }
  @keyframes fadeUpScale { to { opacity: 1; transform: translateY(0) scale(1); } }

  /* ─── Section Base ─── */
  section.content {
    padding: clamp(100px, 14vw, 180px) clamp(20px, 4vw, 48px);
    max-width: 1320px;
    margin: 0 auto;
  }

  .reveal {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity 1.1s cubic-bezier(0.16, 1, 0.3, 1),
                transform 1.1s cubic-bezier(0.16, 1, 0.3, 1);
  }
  .reveal.visible { opacity: 1; transform: translateY(0); }
  .reveal.delay-1 { transition-delay: 0.1s; }
  .reveal.delay-2 { transition-delay: 0.2s; }
  .reveal.delay-3 { transition-delay: 0.3s; }

  .section-eyebrow {
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.24em;
    color: var(--terracotta);
    margin-bottom: 24px;
    display: inline-block;
  }

  .section-title {
    font-family: 'Fraunces', serif;
    font-variation-settings: 'opsz' 96, 'SOFT' 100;
    font-size: clamp(38px, 6.2vw, 88px);
    font-weight: 400;
    line-height: 1;
    letter-spacing: -0.025em;
    text-wrap: balance;
  }
  .section-title em { font-style: italic; font-weight: 300; color: var(--green); }

  .section-lead {
    font-size: clamp(18px, 1.4vw, 22px);
    color: var(--ink-soft);
    max-width: 580px;
    line-height: 1.5;
    margin-top: 32px;
    text-wrap: pretty;
  }

  /* ─── Section: Räumlichkeiten ─── */
  .raume-header { text-align: center; max-width: 760px; margin: 0 auto; }
  .raume-header .section-lead { margin: 32px auto 0; }

  .raume-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 96px;
  }
  @media (max-width: 760px) {
    .raume-grid { grid-template-columns: 1fr; }
  }

  .raum {
    background: var(--bg-warm);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    position: relative;
    transition: box-shadow 0.5s var(--ease);
    display: flex;
    flex-direction: column;
  }
  .raum:hover { box-shadow: var(--shadow-md); }

  /* Inline-Galerie pro Kachel */
  .raum-gallery {
    position: relative;
    aspect-ratio: 16 / 10;
    background: linear-gradient(135deg, var(--green) 0%, var(--green-deep) 100%);
    overflow: hidden;
    user-select: none;
  }
  .raum-track {
    display: flex;
    height: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    overscroll-behavior-x: contain;
  }
  .raum-track::-webkit-scrollbar { display: none; }

  .raum-slide {
    flex: 0 0 100%;
    height: 100%;
    scroll-snap-align: center;
    scroll-snap-stop: always;
    position: relative;
    border: none;
    padding: 0;
    margin: 0;
    cursor: zoom-in;
    background: transparent;
    overflow: hidden;
    display: block;
  }
  .raum-slide img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 1.6s var(--ease);
    will-change: transform;
    pointer-events: none;
  }
  .raum-slide:hover img { transform: scale(1.04); }
  .raum-slide:focus-visible {
    outline: 2px solid var(--gold-warm);
    outline-offset: -4px;
  }
  /* Subtiler Vignette-Verlauf für UI-Lesbarkeit (Counter, Dots) */
  .raum-gallery::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
      linear-gradient(180deg, rgba(15, 12, 8, 0.22) 0%, rgba(15, 12, 8, 0) 18%, rgba(15, 12, 8, 0) 70%, rgba(15, 12, 8, 0.32) 100%);
  }

  /* Bildzähler oben rechts */
  .raum-counter {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 3;
    background: rgba(15, 12, 8, 0.55);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: rgba(246, 239, 226, 0.95);
    padding: 5px 11px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.06em;
    font-variant-numeric: tabular-nums;
    pointer-events: none;
  }

  /* Punkte unten — aktiver Punkt streckt sich (iOS Pager-Style) */
  .raum-dots {
    position: absolute;
    bottom: 14px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    gap: 6px;
    padding: 6px 10px;
    background: rgba(15, 12, 8, 0.42);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 100px;
  }
  .raum-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(246, 239, 226, 0.5);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: width 0.4s var(--ease), background 0.3s var(--ease);
  }
  .raum-dot.active {
    width: 18px;
    border-radius: 4px;
    background: rgba(246, 239, 226, 0.95);
  }

  /* Pfeile — nur Desktop, beim Hover sichtbar */
  .raum-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(246, 239, 226, 0.92);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: none;
    cursor: pointer;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ink);
    opacity: 0;
    transition: opacity 0.3s var(--ease), background 0.2s var(--ease), transform 0.25s var(--ease-spring);
  }
  .raum-arrow svg { width: 16px; height: 16px; }
  .raum-arrow.prev { left: 12px; }
  .raum-arrow.next { right: 12px; }
  .raum-arrow:hover { background: var(--bg); transform: translateY(-50%) scale(1.06); }
  .raum-arrow:active { transform: translateY(-50%) scale(0.94); }
  .raum-arrow:disabled { opacity: 0; pointer-events: none; }
  .raum-gallery:hover .raum-arrow:not(:disabled),
  .raum-gallery:focus-within .raum-arrow:not(:disabled) { opacity: 1; }
  @media (hover: none) {
    .raum-arrow { display: none; }
  }

  /* "Details ansehen" CTA in der Kachel */
  .raum-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 20px;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--terracotta);
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    font-family: inherit;
    align-self: flex-start;
    transition: gap 0.3s var(--ease), color 0.2s var(--ease);
  }
  .raum-cta:hover { gap: 10px; color: var(--ink); }
  .raum-cta svg {
    width: 12px; height: 12px;
    transition: transform 0.3s var(--ease);
  }
  .raum-cta:hover svg { transform: translateX(3px); }

  .raum-body { padding: 32px clamp(24px, 3vw, 40px); display: flex; flex-direction: column; flex: 1; }
  .raum-meta {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 14px;
  }
  .raum-name {
    font-family: 'Fraunces', serif;
    font-variation-settings: 'opsz' 36, 'SOFT' 50;
    font-size: 28px;
    font-weight: 500;
    letter-spacing: -0.015em;
    line-height: 1.1;
  }
  .raum-cap {
    font-size: 13px;
    font-weight: 500;
    color: var(--terracotta);
    letter-spacing: 0.01em;
    flex-shrink: 0;
  }
  .raum-desc {
    font-size: 15px;
    color: var(--ink-soft);
    line-height: 1.6;
  }

  /* ─── Section: Hochzeit (Flagship) ─── */
  .hochzeit {
    background: var(--bg-warm);
    margin: 0;
    max-width: none;
    padding: clamp(100px, 14vw, 180px) clamp(20px, 4vw, 48px);
  }
  .hochzeit-inner {
    max-width: 1320px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 6vw, 96px);
    align-items: center;
  }
  @media (max-width: 900px) {
    .hochzeit-inner { grid-template-columns: 1fr; gap: 48px; }
  }

  .hochzeit-photo {
    position: relative;
    aspect-ratio: 4 / 5;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background: linear-gradient(135deg, var(--green) 0%, var(--green-deep) 100%);
  }
  /* Cross-Fade-Slideshow: alle Slides liegen übereinander, aktiver ist sichtbar */
  .hochzeit-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.4s var(--ease), transform 6s linear;
    will-change: opacity, transform;
    pointer-events: none;
    transform: scale(1);
  }
  .hochzeit-slide.active {
    opacity: 1;
    pointer-events: auto;
    /* Subtiler Ken-Burns-Effekt auf aktivem Bild */
    transform: scale(1.04);
  }
  .hochzeit-slide img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
  }
  .hochzeit-photo::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 8px;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
    pointer-events: none;
    z-index: 2;
  }
  /* Subtle dunkler Verlauf unten für Dot-Lesbarkeit */
  .hochzeit-photo::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15, 12, 8, 0) 60%, rgba(15, 12, 8, 0.35) 100%);
    pointer-events: none;
    z-index: 1;
  }

  .hochzeit-photo-dots {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    gap: 6px;
    padding: 6px 10px;
    background: rgba(15, 12, 8, 0.42);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 100px;
    max-width: calc(100% - 40px);
    flex-wrap: wrap;
    justify-content: center;
  }
  .hochzeit-photo-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: rgba(246, 239, 226, 0.5);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: width 0.4s var(--ease), background 0.3s var(--ease);
  }
  .hochzeit-photo-dot.active {
    width: 18px;
    border-radius: 4px;
    background: rgba(246, 239, 226, 0.95);
  }

  .hochzeit-photo-counter {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 3;
    background: rgba(15, 12, 8, 0.55);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: rgba(246, 239, 226, 0.95);
    padding: 5px 11px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.06em;
    font-variant-numeric: tabular-nums;
    pointer-events: none;
  }

  /* Pfeile links/rechts — immer sichtbar, beim Hover heller */
  .hochzeit-photo-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(246, 239, 226, 0.78);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: none;
    cursor: pointer;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ink);
    opacity: 0.85;
    transition: opacity 0.25s var(--ease), background 0.2s var(--ease), transform 0.25s var(--ease-spring);
  }
  .hochzeit-photo-arrow svg { width: 18px; height: 18px; }
  .hochzeit-photo-arrow.prev { left: 14px; }
  .hochzeit-photo-arrow.next { right: 14px; }
  .hochzeit-photo-arrow:hover {
    background: var(--bg);
    opacity: 1;
    transform: translateY(-50%) scale(1.06);
  }
  .hochzeit-photo-arrow:active { transform: translateY(-50%) scale(0.94); }
  .hochzeit-photo-arrow:focus-visible {
    outline: 2px solid var(--green);
    outline-offset: 3px;
  }
  @media (max-width: 480px) {
    .hochzeit-photo-arrow { width: 38px; height: 38px; }
    .hochzeit-photo-arrow.prev { left: 10px; }
    .hochzeit-photo-arrow.next { right: 10px; }
  }

  .hochzeit-content { max-width: 540px; }
  .hochzeit-content .section-title { margin-top: 24px; }
  .hochzeit-content .section-lead { max-width: none; }

  .hochzeit-facts {
    margin-top: 48px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px 20px;
    border-top: 1px solid var(--line);
    padding-top: 32px;
  }
  .hochzeit-fact .fact-num {
    font-family: 'Fraunces', serif;
    font-variation-settings: 'opsz' 72, 'SOFT' 100;
    font-size: clamp(28px, 3vw, 38px);
    font-weight: 400;
    line-height: 1;
    letter-spacing: -0.02em;
    margin-bottom: 10px;
    font-variant-numeric: tabular-nums;
  }
  .hochzeit-fact .fact-num em {
    font-style: italic;
    font-weight: 300;
    color: var(--green);
  }
  .hochzeit-fact .fact-label {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--ink-faint);
  }

  .hochzeit-ctas {
    margin-top: 40px;
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
  }

  /* ─── Section: Anlässe ─── */
  .anlasse {
    background: var(--bg-deep);
    margin: 0;
    max-width: none;
    padding: clamp(100px, 14vw, 180px) clamp(20px, 4vw, 48px);
    position: relative;
    overflow: hidden;
  }
  .anlasse-inner {
    max-width: 1320px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
  }
  .deco {
    position: absolute;
    pointer-events: none;
    color: var(--green);
    z-index: 0;
  }
  .deco-leaf {
    top: 6%;
    right: -40px;
    width: clamp(180px, 22vw, 320px);
    transform: rotate(18deg);
    opacity: 0.07;
  }
  @media (max-width: 760px) {
    .deco-leaf {
      top: 2%;
      right: -60px;
      width: 200px;
      opacity: 0.06;
    }
  }
  .anlasse-header { max-width: 720px; margin-bottom: 80px; }

  .anlasse-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(24px, 4vw, 56px);
  }
  @media (max-width: 760px) {
    .anlasse-grid { grid-template-columns: 1fr; }
  }

  .anlass {
    border-top: 1px solid var(--line-strong);
    padding-top: 32px;
    position: relative;
    transition: padding-left 0.5s var(--ease);
  }
  .anlass::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--terracotta);
    transition: width 0.7s var(--ease);
  }
  .anlass:hover::before { width: 64px; }
  .anlass-num {
    font-family: 'Fraunces', serif;
    font-variation-settings: 'opsz' 24;
    font-size: 13px;
    font-weight: 500;
    color: var(--ink-faint);
    letter-spacing: 0.05em;
    margin-bottom: 16px;
    transition: color 0.3s var(--ease);
  }
  .anlass:hover .anlass-num { color: var(--terracotta); }
  .anlass-title {
    font-family: 'Fraunces', serif;
    font-variation-settings: 'opsz' 60, 'SOFT' 100;
    font-size: clamp(28px, 3.4vw, 44px);
    font-weight: 400;
    letter-spacing: -0.02em;
    line-height: 1.05;
    margin-bottom: 20px;
    text-wrap: balance;
  }
  .anlass-title em { font-style: italic; color: var(--green); font-weight: 300; }
  .anlass-text {
    font-size: 16px;
    color: var(--ink-soft);
    line-height: 1.65;
    max-width: 42ch;
    text-wrap: pretty;
  }

  /* ─── Section: Themenabende ─── */
  .themen-header { max-width: 760px; margin-bottom: 80px; }

  .themen-list {
    border-top: 1px solid var(--line-strong);
  }
  .themen-list li {
    list-style: none;
    border-bottom: 1px solid var(--line);
    padding: 36px clamp(8px, 1.5vw, 24px);
    margin: 0 calc(-1 * clamp(8px, 1.5vw, 24px));
    display: grid;
    grid-template-columns: 80px 1.4fr 1fr 120px;
    gap: 24px;
    align-items: baseline;
    transition: background 0.4s var(--ease), padding 0.5s var(--ease);
    position: relative;
  }
  .themen-list li::after {
    content: '';
    position: absolute;
    left: clamp(8px, 1.5vw, 24px);
    bottom: -1px;
    width: 0;
    height: 1px;
    background: var(--terracotta);
    transition: width 0.6s var(--ease);
  }
  .themen-list li:hover {
    background: rgba(184, 152, 104, 0.06);
    padding-left: clamp(20px, 2.5vw, 36px);
  }
  .themen-list li:hover::after { width: 64px; }
  @media (max-width: 760px) {
    .themen-list li {
      grid-template-columns: 1fr;
      gap: 8px;
      padding: 28px 0;
    }
  }

  .themen-num {
    font-family: 'Fraunces', serif;
    font-variation-settings: 'opsz' 24;
    font-size: 13px;
    color: var(--ink-faint);
    letter-spacing: 0.05em;
  }
  .themen-name {
    font-family: 'Fraunces', serif;
    font-variation-settings: 'opsz' 48, 'SOFT' 50;
    font-size: clamp(22px, 2.4vw, 30px);
    font-weight: 500;
    letter-spacing: -0.015em;
    line-height: 1.15;
  }
  .themen-desc {
    font-size: 15px;
    color: var(--ink-soft);
    line-height: 1.6;
  }
  .themen-tag {
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--terracotta);
    text-align: right;
  }
  @media (max-width: 760px) {
    .themen-tag { text-align: left; }
  }

  /* ─── Termine PDF Viewer ─── */
  .termine-title {
    font-family: 'Fraunces', serif;
    font-variation-settings: 'opsz' 36, 'SOFT' 50;
    font-size: clamp(22px, 2.6vw, 32px);
    font-weight: 500;
    text-align: center;
    letter-spacing: -0.015em;
    margin-bottom: 28px;
  }
  .termine-pdf {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    aspect-ratio: 3 / 4;
    border-radius: 8px;
    overflow: hidden;
    background: var(--bg-warm);
    box-shadow:
      0 1px 2px rgba(31, 26, 20, 0.04),
      0 20px 50px -20px rgba(31, 26, 20, 0.18);
  }
  .termine-pdf iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    background: var(--bg);
  }
  .termine-fallback {
    position: absolute;
    inset: 0;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 32px;
    color: var(--ink-soft);
    font-size: 14px;
  }
  .termine-pdf img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #fff;
  }
  .termine-fallback p { margin: 0; }
  /* Mobile: kompakter, kein iframe (PDFs in iframes auf iOS hakelig) */
  @media (max-width: 760px) {
    .termine-pdf { aspect-ratio: 4 / 5; }
  }

  /* ─── Section: Bewertungen ─── */
  .reviews {
    background: var(--bg-warm);
    margin: 0;
    max-width: none;
    padding: clamp(100px, 14vw, 180px) clamp(20px, 4vw, 48px);
  }
  .reviews-inner { max-width: 1320px; margin: 0 auto; }
  .reviews-header { text-align: center; max-width: 720px; margin: 0 auto 96px; }

  /* Asymmetric editorial layout — eine große Lead-Stimme + zwei kompakte */
  .reviews-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 32px;
    align-items: start;
  }
  .reviews-grid > .review:first-child { grid-row: span 2; }
  .reviews-grid > .review.lead {
    background: transparent;
    padding: clamp(40px, 4vw, 64px) clamp(32px, 3.5vw, 56px);
    border: 1px solid var(--line);
  }
  .reviews-grid > .review.lead .review-text {
    font-size: clamp(22px, 2.4vw, 30px);
    font-weight: 400;
    line-height: 1.35;
  }
  @media (max-width: 900px) {
    .reviews-grid { grid-template-columns: 1fr; gap: 20px; }
    .reviews-grid > .review:first-child { grid-row: auto; }
  }

  .review {
    background: var(--bg);
    border-radius: 6px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
  }
  .review:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
  }
  .review-stars {
    color: var(--gold);
    font-size: 13px;
    letter-spacing: 0.18em;
  }
  .review-text {
    font-family: 'Fraunces', serif;
    font-variation-settings: 'opsz' 18, 'SOFT' 50;
    font-size: 17px;
    line-height: 1.55;
    font-weight: 400;
    letter-spacing: -0.005em;
    text-wrap: pretty;
    flex: 1;
    position: relative;
  }
  .review-text::before {
    content: '\201C';
    position: absolute;
    top: -0.4em;
    left: -0.05em;
    font-size: 3em;
    color: var(--terracotta);
    line-height: 1;
    opacity: 0.55;
    font-family: 'Fraunces', serif;
    pointer-events: none;
  }
  .review-author {
    font-size: 13px;
    font-weight: 500;
    color: var(--ink-soft);
    letter-spacing: 0.02em;
    border-top: 1px solid var(--line);
    padding-top: 18px;
  }
  .review-source {
    font-size: 11px;
    color: var(--ink-faint);
    margin-top: 4px;
    letter-spacing: 0.05em;
  }

  /* ─── Section: Kontakt ─── */
  .kontakt {
    text-align: center;
    max-width: 920px;
    margin: 0 auto;
  }
  .kontakt .section-title { margin-bottom: 32px; }
  .kontakt-info {
    margin-top: 64px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding: 48px 0;
  }
  @media (max-width: 720px) {
    .kontakt-info { grid-template-columns: 1fr; gap: 32px; }
  }
  .info-block .info-label {
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--ink-faint);
    margin-bottom: 14px;
  }
  .info-block .info-value {
    font-family: 'Fraunces', serif;
    font-variation-settings: 'opsz' 24;
    font-size: 19px;
    font-weight: 500;
    line-height: 1.4;
  }
  .info-block .info-value em {
    font-style: italic;
    font-weight: 400;
    color: var(--green);
  }
  .info-block a { transition: color 0.2s; }
  .info-block a:hover { color: var(--terracotta); }

  .kontakt-ctas {
    margin-top: 56px;
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
  }

  /* ─── Section: Anfrage (Form + Map) ─── */
  .anfrage {
    background: var(--bg-deep);
    margin: 0;
    max-width: none;
    padding: clamp(100px, 14vw, 180px) clamp(20px, 4vw, 48px);
  }
  .anfrage-inner {
    max-width: 1320px;
    margin: 0 auto;
  }
  .anfrage-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 80px;
  }
  .anfrage-header .section-lead { margin: 32px auto 0; }

  .anfrage-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: clamp(32px, 4vw, 56px);
    align-items: stretch;
  }
  @media (max-width: 900px) {
    .anfrage-grid { grid-template-columns: 1fr; }
  }

  /* Form */
  .form {
    background: var(--bg);
    padding: clamp(28px, 4vw, 56px);
    border-radius: 8px;
    box-shadow: var(--shadow-md);
  }
  .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 20px;
  }
  .form-row.single { grid-template-columns: 1fr; }
  @media (max-width: 600px) {
    .form-row { grid-template-columns: 1fr; }
  }

  .field { display: flex; flex-direction: column; }
  .field label {
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--ink-faint);
    margin-bottom: 8px;
  }
  .field label .req { color: var(--terracotta); }

  .field input,
  .field select,
  .field textarea {
    font-family: inherit;
    font-size: 15px;
    padding: 13px 14px;
    background: var(--bg-warm);
    border: 1px solid transparent;
    border-radius: 4px;
    color: var(--ink);
    transition: border-color 0.25s var(--ease), background 0.25s var(--ease), box-shadow 0.25s var(--ease);
    width: 100%;
  }
  .field input:hover,
  .field select:hover,
  .field textarea:hover { border-color: var(--line-strong); }
  .field input:focus,
  .field select:focus,
  .field textarea:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(45, 58, 46, 0.12);
    border-color: var(--green);
    background: var(--bg);
  }
  .field textarea { min-height: 140px; resize: vertical; line-height: 1.5; }
  .field select { appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%235C5346' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 38px;
    cursor: pointer;
  }

  .privacy-row {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin: 8px 0 24px;
    padding: 16px;
    background: var(--bg-warm);
    border-radius: 4px;
  }
  .privacy-row input[type="checkbox"] {
    width: 16px; height: 16px;
    flex-shrink: 0;
    margin-top: 2px;
    accent-color: var(--green);
    cursor: pointer;
  }
  .privacy-row label {
    font-size: 12px;
    line-height: 1.55;
    color: var(--ink-soft);
    cursor: pointer;
  }
  .privacy-row label a {
    color: var(--green);
    text-decoration: underline;
    text-decoration-color: var(--line-strong);
    text-underline-offset: 2px;
  }

  .form-submit {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: var(--ink);
    color: var(--bg);
    border: none;
    border-radius: 100px;
    font-family: inherit;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    box-shadow: 0 8px 20px -8px rgba(31, 26, 20, 0.4);
    transition: background 0.3s var(--ease), gap 0.3s var(--ease),
                transform 0.25s var(--ease-spring), box-shadow 0.3s var(--ease);
  }
  .form-submit:hover {
    background: var(--green);
    gap: 14px;
    box-shadow: 0 14px 28px -10px rgba(45, 58, 46, 0.45);
  }
  .form-submit:active { transform: scale(0.97); }
  .form-submit:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }
  .form-submit svg {
    width: 14px; height: 14px;
    transition: transform 0.3s var(--ease);
  }
  .form-submit:hover svg { transform: translateX(4px); }

  .form-status {
    margin-top: 16px;
    font-size: 13px;
    color: var(--ink-soft);
    display: none;
    padding: 12px 16px;
    border-radius: 4px;
    background: var(--bg-warm);
  }
  .form-status.visible { display: block; }
  .form-status.success { color: var(--green); background: rgba(45, 58, 46, 0.08); }
  .form-status.error { color: var(--terracotta); background: rgba(184, 88, 56, 0.08); }

  /* Honeypot — versteckt vor Menschen, sichtbar für Bots */
  .hp {
    position: absolute !important;
    left: -9999px !important;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
  }

  /* Map */
  .map {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    background: var(--green-deep);
    min-height: 480px;
    aspect-ratio: 1 / 1.05;
    /* Die Breite muss aus der Rasterspalte kommen. Ohne diese Zeile
       leitet der Browser bei gestreckter Zeilenhöhe die Breite aus dem
       Seitenverhältnis ab — bei langen Formularen wird die Karte dann
       breiter als ihre Spalte und läuft aus der Seite heraus. */
    width: 100%;
  }
  @media (max-width: 900px) {
    .map { aspect-ratio: 4 / 3; min-height: 360px; }
  }

  .map iframe {
    position: absolute;
    inset: 0;
    width: 100%; height: 100%;
    border: 0;
    filter: saturate(0.85) contrast(0.95);
  }

  .map-cover {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #2D3A2E 0%, #1A2519 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 32px;
    color: var(--bg);
    z-index: 2;
    cursor: pointer;
    transition: opacity 0.5s ease;
  }
  .map-cover.gone {
    opacity: 0;
    pointer-events: none;
  }
  .map-cover-icon {
    width: 48px; height: 48px;
    border: 1px solid var(--gold-warm);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-warm);
    margin-bottom: 24px;
    transition: background 0.3s, color 0.3s;
  }
  .map-cover:hover .map-cover-icon {
    background: var(--gold-warm);
    color: var(--green-deep);
  }
  .map-cover-icon svg { width: 22px; height: 22px; }
  .map-cover-title {
    font-family: 'Fraunces', serif;
    font-variation-settings: 'opsz' 36, 'SOFT' 50;
    font-size: 26px;
    font-weight: 500;
    letter-spacing: -0.01em;
    margin-bottom: 14px;
  }
  .map-cover-text {
    font-size: 13px;
    color: rgba(246, 239, 226, 0.75);
    line-height: 1.55;
    max-width: 320px;
  }
  .map-cover-text a {
    color: var(--gold-warm);
    text-decoration: underline;
    text-decoration-color: rgba(201, 168, 118, 0.4);
    text-underline-offset: 2px;
  }

  .map-overlay {
    position: absolute;
    bottom: 16px; left: 16px;
    background: rgba(31, 26, 20, 0.92);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: var(--bg);
    padding: 12px 16px;
    border-radius: 6px;
    z-index: 1;
    font-size: 12px;
    line-height: 1.5;
    pointer-events: auto;
  }
  .map-overlay strong { color: var(--gold-warm); font-weight: 500; }
  .map-overlay a {
    display: inline-block;
    color: var(--gold-warm);
    margin-top: 4px;
    font-size: 11px;
    text-decoration: underline;
    text-decoration-color: rgba(201, 168, 118, 0.4);
    text-underline-offset: 2px;
  }

  /* ─── Footer ─── */
  footer {
    border-top: 1px solid var(--line);
    padding: 56px clamp(20px, 4vw, 48px) 40px;
    max-width: 1320px;
    margin: 0 auto;
  }
  .footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 32px;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--line);
  }
  .foot-meta {
    font-size: 13px;
    color: var(--ink-soft);
    line-height: 1.7;
  }
  .foot-meta strong { color: var(--ink); font-weight: 500; }
  .foot-social {
    display: flex;
    gap: 14px;
    margin-top: 12px;
  }
  .foot-social a {
    width: 36px; height: 36px;
    border: 1px solid var(--line-strong);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
  }
  .foot-social a:hover { background: var(--ink); color: var(--bg); border-color: var(--ink); }
  .foot-social svg { width: 14px; height: 14px; }
  .footer-bottom {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 12px;
    color: var(--ink-faint);
  }
  .footer-bottom a:hover { color: var(--ink); }

  /* ─── Räume Modal/Lightbox ─── */
  .modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 12, 8, 0.92);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s, visibility 0.4s;
    overflow-y: auto;
    padding: clamp(20px, 4vw, 48px);
  }
  .modal-overlay.open { opacity: 1; visibility: visible; }
  .modal {
    background: var(--bg);
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    border-radius: 8px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    min-height: 480px;
    transform: translateY(40px);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  }
  .modal-overlay.open .modal { transform: translateY(0); }
  @media (max-width: 880px) {
    .modal { grid-template-columns: 1fr; }
  }
  .modal-photo {
    position: relative;
    background: #1A2519;
    aspect-ratio: 4 / 3;
    overflow: hidden;
  }
  .modal-photo img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: opacity 0.3s;
  }
  .modal-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px; height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(6px);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ink);
    transition: background 0.2s, transform 0.2s;
  }
  .modal-nav:hover { background: #fff; transform: translateY(-50%) scale(1.05); }
  .modal-nav.prev { left: 16px; }
  .modal-nav.next { right: 16px; }
  .modal-nav svg { width: 16px; height: 16px; }
  .modal-counter {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(15, 12, 8, 0.7);
    color: #fff;
    padding: 5px 12px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.06em;
  }
  .modal-body {
    padding: clamp(28px, 4vw, 48px);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
  }
  .modal-eyebrow {
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: var(--terracotta);
    margin-bottom: 14px;
  }
  .modal-title {
    font-family: 'Fraunces', serif;
    font-variation-settings: 'opsz' 60, 'SOFT' 50;
    font-size: clamp(32px, 4vw, 44px);
    font-weight: 500;
    letter-spacing: -0.02em;
    line-height: 1.05;
    margin-bottom: 8px;
  }
  .modal-tagline {
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-weight: 300;
    color: var(--green);
    font-size: 18px;
    margin-bottom: 24px;
  }
  .modal-desc {
    color: var(--ink-soft);
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 24px;
  }
  .modal-features {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
    border-top: 1px solid var(--line);
  }
  .modal-features li {
    padding: 12px 0;
    border-bottom: 1px solid var(--line);
    font-size: 14px;
    color: var(--ink);
    display: flex;
    gap: 10px;
    align-items: flex-start;
  }
  .modal-features li::before {
    content: '';
    width: 5px; height: 5px;
    border-radius: 50%;
    background: var(--terracotta);
    margin-top: 8px;
    flex-shrink: 0;
  }
  .modal-cta {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 22px;
    background: var(--ink);
    color: var(--bg);
    border-radius: 100px;
    font-size: 14px;
    font-weight: 500;
    align-self: flex-start;
    transition: background 0.3s, gap 0.3s;
  }
  .modal-cta:hover { background: var(--green); gap: 14px; }
  .modal-cta svg { width: 12px; height: 12px; transition: transform 0.3s; }
  .modal-cta:hover svg { transform: translateX(3px); }

  .modal-close {
    position: absolute;
    top: 16px; right: 16px;
    width: 40px; height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ink);
    z-index: 1;
    transition: background 0.2s, transform 0.2s;
  }
  .modal-close:hover { background: #fff; transform: scale(1.05); }
  .modal-close svg { width: 16px; height: 16px; }

  @media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
      animation-duration: 0.01ms !important;
      animation-iteration-count: 1 !important;
      transition-duration: 0.01ms !important;
    }
    html { scroll-behavior: auto; }
    .reveal { opacity: 1; transform: none; }
  }

  /* ─── Section: Rundgang ───
     Einzelbilder aus dem Hausvideo, die beim Scrollen durchgeschaltet
     werden. 169 Bilder auf dem Rechner, 85 kleinere auf dem Handy.
     Geladen wird erst, wenn der Besucher in die Nähe scrollt. */

  .rundgang {
    position: relative;
    height: 750vh;
    background: var(--green-deep);
  }

  .rundgang-buehne {
    position: sticky;
    top: 0;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    background: var(--green-deep);
  }

  .rundgang-buehne canvas { display: block; width: 100%; height: 100%; }

  /* Rand nach innen abdunkeln, damit die Namen überall lesbar bleiben */
  .rundgang-schleier {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(to bottom,
      rgba(16, 26, 18, 0.55) 0%, rgba(16, 26, 18, 0) 30%,
      rgba(16, 26, 18, 0) 55%, rgba(16, 26, 18, 0.75) 100%);
  }

  /* Raumname — nur der Name, sonst nichts */
  .rundgang-tafel {
    position: absolute;
    left: 0; right: 0; bottom: 9vh;
    padding: 6vh 6vw 5vh;
    text-align: center;
    background: radial-gradient(58% 70% at 50% 60%,
      rgba(12, 20, 14, 0.72) 0%, rgba(12, 20, 14, 0.42) 48%, rgba(12, 20, 14, 0) 76%);
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.55s var(--ease), transform 0.55s var(--ease);
    pointer-events: none;
    text-shadow: 0 2px 24px rgba(10, 18, 12, 0.9);
  }
  .rundgang-tafel.sichtbar { opacity: 1; transform: translateY(0); }

  .rundgang-tafel h2 {
    font-family: 'Fraunces', serif;
    font-variation-settings: 'opsz' 144, 'SOFT' 100, 'WONK' 1;
    font-style: italic;
    font-weight: 300;
    font-size: clamp(40px, 7vw, 92px);
    line-height: 1;
    letter-spacing: -0.02em;
    color: var(--bg);
  }
  .rundgang-tafel h2::after {
    content: '';
    display: block;
    width: 52px; height: 1px;
    margin: 22px auto 0;
    background: var(--gold-warm);
  }

  /* Scroll-Hinweis, verschwindet nach den ersten Bildern */
  .rundgang-hinweis {
    position: absolute;
    left: 50%; bottom: 4vh;
    transform: translateX(-50%);
    font-size: 11px;
    letter-spacing: 0.32em;
    text-indent: 0.32em;
    text-transform: uppercase;
    color: var(--gold-warm);
    transition: opacity 0.4s var(--ease);
  }
  .rundgang-hinweis span {
    display: block;
    width: 1px; height: 34px;
    margin: 14px auto 0;
    background: linear-gradient(to bottom, var(--gold-warm), transparent);
    animation: rundgang-sinken 1.9s ease-in-out infinite;
  }
  @keyframes rundgang-sinken {
    0%   { transform: scaleY(0.2); transform-origin: top; opacity: 0; }
    45%  { transform: scaleY(1);   transform-origin: top; opacity: 1; }
    100% { transform: scaleY(0.2); transform-origin: bottom; opacity: 0; }
  }

  /* Oben am Rand: wie weit man ist, und wieviel Material schon da ist */
  .rundgang-fortschritt,
  .rundgang-nachschub {
    position: absolute;
    top: 0; left: 0;
    height: 2px; width: 0;
  }
  .rundgang-fortschritt { background: var(--gold-warm); }
  .rundgang-nachschub {
    background: rgba(201, 168, 118, 0.28);
    transition: opacity 0.6s var(--ease);
  }
  .rundgang-nachschub.weg { opacity: 0; }

  .rundgang-laden {
    position: absolute;
    inset: 0;
    display: grid;
    place-content: center;
    gap: 22px;
    background: var(--green-deep);
    text-align: center;
    transition: opacity 0.6s var(--ease);
  }
  .rundgang-laden.weg { opacity: 0; pointer-events: none; }
  .rundgang-laden .wort {
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-weight: 300;
    font-size: 24px;
    color: var(--bg);
  }
  .rundgang-laden .balken {
    width: 190px; height: 2px;
    background: rgba(246, 239, 226, 0.22);
  }
  .rundgang-laden .balken i {
    display: block;
    height: 100%; width: 0;
    background: var(--gold-warm);
    transition: width 0.2s linear;
  }

  /* Wer Bewegung reduziert haben will, bekommt ein Standbild
     und die Raumnamen untereinander statt der Scrollstrecke. */
  @media (prefers-reduced-motion: reduce) {
    .rundgang { height: 100vh; }
    .rundgang-hinweis { display: none; }
    .rundgang-tafel {
      position: static;
      opacity: 1;
      transform: none;
      background: none;
      padding: 0;
    }
    .rundgang-tafel h2 { font-size: clamp(28px, 5vw, 48px); }
  }
