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

    :root {
      --red:      #731A01;
      --red-deep: #5C1401;
      --red-soft: #9A3520;
      --ink:      #2B2622;
      --ink-soft: #5E564E;
      --cream:    #F6F3EE;
      --cream-2:  #EDE7DD;
      --warm-gray:#D9D1C5;
      --white:    #FFFFFF;
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Source Sans 3', system-ui, sans-serif;
      background: var(--cream);
      color: var(--ink);
      font-size: 19px;
      line-height: 1.78;
      font-weight: 300;
      -webkit-font-smoothing: antialiased;
    }

    h1, h2, h3, h4 { font-family: 'Cormorant Garamond', Georgia, serif; font-weight: 500; line-height: 1.18; }

    /* ── NAV ─────────────────────────────────────── */
    nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 100;
      display: flex; align-items: center; justify-content: space-between;
      padding: 0.55rem 2.5rem;
      background: rgba(246,243,238,0.94);
      backdrop-filter: blur(10px);
      border-bottom: 1px solid rgba(115,26,1,0.1);
      transition: padding 0.3s;
    }
    nav.scrolled { padding: 0.4rem 2.5rem; box-shadow: 0 2px 20px rgba(43,38,34,0.07); }

    .nav-logo { display: flex; align-items: center; gap: 0.7rem; text-decoration: none; padding: 2px 8px; background: transparent; border-radius: 0; box-shadow: none; transition: opacity 0.2s; }
    .nav-logo:hover { opacity: 0.8; box-shadow: none; }
    .nav-logo img { height: 82px; width: auto; transition: height 0.3s; display: block; }
    nav.scrolled .nav-logo img { height: 64px; }
    nav.scrolled .nav-logo { padding: 2px 6px; }

    nav ul { list-style: none; display: flex; gap: 2rem; align-items: center; }
    nav ul a {
      color: var(--ink-soft); text-decoration: none;
      font-size: 0.94rem; letter-spacing: 0.08em; text-transform: uppercase;
      font-weight: 500; transition: color 0.2s; position: relative; padding-bottom: 3px;
    }
    nav ul a::after {
      content: ''; position: absolute; left: 0; bottom: 0; width: 0; height: 1.5px;
      background: var(--red); transition: width 0.25s;
    }
    nav ul a:hover { color: var(--red); }
    nav ul a:hover::after { width: 100%; }

    .nav-tel {
      background: var(--red); color: var(--white) !important;
      padding: 0.55rem 1.2rem; border-radius: 2px; letter-spacing: 0.05em;
      display: flex; align-items: center; gap: 0.45rem; transition: background 0.2s !important;
    }
    .nav-tel::after { display: none; }
    .nav-tel:hover { background: var(--red-deep); color: var(--white) !important; }
    .nav-tel svg { width: 15px; height: 15px; }

    .nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 6px; }
    .nav-toggle span { display: block; width: 26px; height: 2px; background: var(--ink); margin: 5px 0; transition: 0.3s; }

    /* ── HERO ────────────────────────────────────── */
    .hero {
      min-height: 100vh; position: relative;
      display: flex; align-items: center; justify-content: center;
      text-align: center; padding: 7rem 2rem 4rem; overflow: hidden;
    }
    .hero-bg { position: absolute; inset: 0; z-index: 0; }
    .hero-bg img { width: 100%; height: 100%; object-fit: cover; }
    .hero-bg::after {
      content: ''; position: absolute; inset: 0;
      background: linear-gradient(180deg, rgba(43,38,34,0.55) 0%, rgba(60,20,8,0.50) 55%, rgba(43,38,34,0.72) 100%);
    }

    .hero-content { position: relative; z-index: 2; max-width: 820px; }
    .hero-eyebrow {
      font-family: 'Source Sans 3', sans-serif; font-size: 1.05rem; letter-spacing: 0.22em;
      text-transform: uppercase; color: rgba(255,255,255,0.92); font-weight: 600;
      margin-bottom: 1.6rem; opacity: 0; animation: fadeUp 0.9s 0.2s forwards;
    }
    @media (max-width: 600px) { .hero-eyebrow { font-size: 0.82rem; letter-spacing: 0.16em; } }
    .hero h1 {
      font-size: clamp(2.6rem, 6vw, 4.8rem); color: var(--white); font-weight: 500;
      margin-bottom: 1.5rem; text-shadow: 0 2px 30px rgba(0,0,0,0.3);
      opacity: 0; animation: fadeUp 0.9s 0.4s forwards;
    }
    .hero h1 em { font-style: italic; color: #F0D9C8; }
    .hero-sub {
      font-size: 1.2rem; color: rgba(255,255,255,0.92); max-width: 560px; margin: 0 auto 2.6rem;
      font-weight: 300; opacity: 0; animation: fadeUp 0.9s 0.6s forwards;
    }
    .hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; opacity: 0; animation: fadeUp 0.9s 0.8s forwards; }

    @keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }

    .btn-primary {
      background: var(--red); color: var(--white); padding: 1rem 2.4rem; text-decoration: none;
      font-size: 0.88rem; letter-spacing: 0.08em; text-transform: uppercase; font-weight: 600;
      border-radius: 2px; transition: background 0.2s, transform 0.15s; display: inline-flex;
      align-items: center; gap: 0.5rem;
    }
    .btn-primary:hover { background: var(--red-deep); transform: translateY(-2px); }
    .btn-ghost {
      background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.55); color: var(--white);
      padding: 1rem 2.4rem; text-decoration: none; font-size: 0.88rem; letter-spacing: 0.08em;
      text-transform: uppercase; font-weight: 500; border-radius: 2px; backdrop-filter: blur(4px);
      transition: background 0.2s, border-color 0.2s; display: inline-block;
    }
    .btn-ghost:hover { background: rgba(255,255,255,0.2); border-color: var(--white); }

    .hero-phone-note {
      position: absolute; bottom: 2rem;
      left: 50%; transform: translateX(-50%);
      z-index: 2;
      color: rgba(255,255,255,0.92); font-size: 1.05rem; letter-spacing: 0.04em; text-align: center;
      opacity: 0; animation: fadeUp 0.9s 1s forwards;
      background: rgba(0,0,0,0.28); backdrop-filter: blur(4px);
      padding: 0.6rem 1.8rem; border-radius: 3px; white-space: nowrap;
    }
    @media (max-width: 600px) {
      .hero-phone-note {
        left: 1rem; right: 1rem; transform: none;
        white-space: normal; font-size: 0.92rem; padding: 0.55rem 1rem;
        letter-spacing: 0.01em; line-height: 1.6; bottom: 1rem;
        text-align: center;
      }
      .hero-phone-note strong { font-size: 1rem; display: block; }
    }
    .hero-phone-note strong { color: #FFDFC8; font-weight: 700; font-size: 1.1rem; }

    /* ── SECTION BASE ────────────────────────────── */
    section { padding: 6.5rem 2rem; }
    .container { max-width: 1140px; margin: 0 auto; }
    .narrow { max-width: 900px; margin: 0 auto; }

    .eyebrow {
      font-size: 0.78rem; letter-spacing: 0.22em; text-transform: uppercase;
      color: var(--red); font-weight: 600; margin-bottom: 0.9rem; display: flex;
      align-items: center; gap: 0.7rem;
    }
    .eyebrow::before { content: ''; width: 28px; height: 1.5px; background: var(--red); display: inline-block; }
    .eyebrow.centered { justify-content: center; }

    .section-title { font-size: clamp(2.2rem, 4.2vw, 3.4rem); color: var(--ink); margin-bottom: 1.4rem; }
    .section-title em { font-style: italic; color: var(--red); }

    .lead { font-size: 1.22rem; color: var(--ink-soft); }

    /* ── INTRO ───────────────────────────────────── */
    .intro { background: var(--cream); }
    .intro-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 4.5rem; align-items: center; }
    .intro-text p { color: var(--ink-soft); margin-bottom: 1.2rem; }
    .intro-text p strong { color: var(--ink); font-weight: 600; }

    .intro-photo { position: relative; }
    .intro-photo > img {
      width: 100%; border-radius: 4px; display: block;
      box-shadow: 0 24px 60px rgba(43,38,34,0.18);
    }
    .intro-quote-badge {
      position: absolute; bottom: -28px; left: -28px; background: var(--red);
      color: var(--white); padding: 1.6rem 1.8rem; max-width: 270px; border-radius: 3px;
      box-shadow: 0 16px 40px rgba(92,20,1,0.32);
    }
    .intro-quote-badge p { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 1.3rem; line-height: 1.35; }

    /* ── QUOTE STRIP (Spruch-Schild) ─────────────── */
    .quote-strip { position: relative; padding: 0; min-height: 360px; display: flex; align-items: center; justify-content: center; overflow: hidden; text-align: center; }
    .quote-strip-bg { position: absolute; inset: 0; }
    .quote-strip-bg img { width: 100%; height: 100%; object-fit: cover; }
    .quote-strip-bg::after { content: ''; position: absolute; inset: 0; background: rgba(43,38,34,0.42); }
    .quote-strip-content { position: relative; z-index: 2; max-width: 760px; padding: 3rem 2rem; }
    .quote-strip-content p {
      font-family: 'Cormorant Garamond', serif; font-style: italic; font-weight: 400;
      font-size: clamp(1.6rem, 3.4vw, 2.5rem); color: var(--white); line-height: 1.35;
      text-shadow: 0 2px 24px rgba(0,0,0,0.4);
    }
    .quote-strip-content span {
      display: block; margin-top: 1.4rem; font-family: 'Source Sans 3', sans-serif;
      font-style: normal; font-size: 0.82rem; letter-spacing: 0.18em; text-transform: uppercase;
      color: #F0D9C8; font-weight: 500;
    }

    /* ── SERVICES ────────────────────────────────── */
    .services { background: var(--white); }
    .services-head { text-align: center; max-width: 640px; margin: 0 auto 3.5rem; }
    .services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.8rem; align-items: start; }

    .service-card {
      background: var(--cream); border-radius: 4px; overflow: hidden;
      transition: transform 0.25s, box-shadow 0.25s; display: flex; flex-direction: column;
    }
    .service-card:hover { transform: translateY(-6px); box-shadow: 0 20px 44px rgba(43,38,34,0.14); }
    /* When any card is expanded, suppress hover lift on siblings */
    .services-grid.has-open .service-card:not(.expanded):hover { transform: none; box-shadow: none; }
    .service-img { height: 210px; overflow: hidden; position: relative; }
    .service-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
    .service-card:hover .service-img img { transform: scale(1.06); }
    .services-grid.has-open .service-card:not(.expanded):hover .service-img img { transform: none; }
    .service-body { padding: 1.6rem 1.6rem 1.8rem; flex: 1; display: flex; flex-direction: column; }
    .service-body h3 { font-size: 1.7rem; color: var(--ink); margin-bottom: 0.5rem; }
    .service-body p { font-size: 1.05rem; color: var(--ink-soft); }
    .service-grid-equalize { align-items: start; }

    /* ── EXPANDABLE SERVICE CARDS ────────────────── */
    .service-card[data-expandable] { cursor: pointer; }
    .service-card[data-expandable]:focus-visible { outline: 2px solid var(--red); outline-offset: 3px; }

    .service-img { transition: height 0.45s cubic-bezier(0.4,0,0.2,1); }
    .service-card.expanded { transform: translateY(-6px); box-shadow: 0 20px 44px rgba(43,38,34,0.14); }
    .service-card.expanded .service-img { height: 340px; }
    .service-card.expanded .service-img img { transform: scale(1.02); }

    .service-more-hint {
      display: inline-flex; align-items: center; gap: 0.35rem; margin-top: auto; padding-top: 1rem;
      font-size: 0.8rem; letter-spacing: 0.08em; text-transform: uppercase;
      color: var(--red); font-weight: 600; align-self: flex-start;
    }
    .service-more-hint svg { width: 15px; height: 15px; transition: transform 0.35s; }
    .service-card.expanded .service-more-hint svg { transform: rotate(180deg); }
    .service-card.expanded .service-more-hint { opacity: 0.55; }

    /* The detail panel animates open via max-height */
    .service-detail {
      max-height: 0; overflow: hidden;
      transition: max-height 0.5s cubic-bezier(0.4,0,0.2,1);
    }
    .service-card.expanded .service-detail { max-height: 1200px; }
    .service-detail-inner {
      padding: 0 1.6rem 1.8rem; border-top: 1px solid rgba(115,26,1,0.12); margin-top: 0.2rem; padding-top: 1.3rem;
    }
    .service-detail-inner p { font-size: 1.05rem; color: var(--ink-soft); margin-bottom: 0.9rem; }
    .service-detail-inner p:last-child { margin-bottom: 0; }
    .service-detail-inner p strong { color: var(--ink); font-weight: 600; }

    /* ── PROCESS (numbered – genuine sequence) ───── */
    .process { background: var(--cream-2); }
    .process-head { max-width: 640px; margin: 0 auto 3.5rem; text-align: center; }
    .process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
    .process-step { text-align: center; padding: 1rem; }
    .process-num {
      font-family: 'Cormorant Garamond', serif; font-size: 2.6rem; color: var(--red);
      font-weight: 600; line-height: 1; margin-bottom: 0.8rem; display: block;
    }
    .process-step h4 { font-size: 1.5rem; color: var(--ink); margin-bottom: 0.5rem; }
    .process-step p { font-size: 1.05rem; color: var(--ink-soft); }
    .process-divider { display: none; }

    /* ── TEAM ────────────────────────────────────── */
    .team { background: var(--white); }
    .team-head { text-align: center; max-width: 640px; margin: 0 auto 3.5rem; }
    .team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.8rem; }
    .team-member { text-align: center; }
    .team-photo {
      width: 100%; aspect-ratio: 3/4; border-radius: 4px; overflow: hidden; margin-bottom: 1rem;
      box-shadow: 0 12px 30px rgba(43,38,34,0.12);
    }
    .team-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; filter: saturate(0.95); }
    .team-member:hover .team-photo img { transform: scale(1.05); }
    /* Vivians Bild leicht hineingezoomt, damit ihr Kopf so groß wirkt wie bei den anderen */
    .team-photo img.portrait-zoom { transform: scale(1.18); transform-origin: center 20%; }
    .team-member:hover .team-photo img.portrait-zoom { transform: scale(1.23); }
    .team-member h4 { font-size: 1.5rem; color: var(--ink); margin-bottom: 0.1rem; }
    .team-member span { font-size: 0.82rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--red); font-weight: 500; }

    /* ── VORSORGE (split with image) ─────────────── */
    .vorsorge { padding: 0; background: var(--red); }
    .vorsorge-grid { display: grid; grid-template-columns: 1fr 1fr; min-height: 480px; }
    .vorsorge-img { overflow: hidden; }
    .vorsorge-img img { width: 100%; height: 100%; object-fit: cover; }
    .vorsorge-text { padding: 4.5rem 4rem; display: flex; flex-direction: column; justify-content: center; color: var(--white); }
    .vorsorge-text .eyebrow { color: #F0D9C8; }
    .vorsorge-text .eyebrow::before { background: #F0D9C8; }
    .vorsorge-text h2 { font-size: clamp(2rem, 3.6vw, 2.9rem); color: var(--white); margin-bottom: 1.2rem; }
    .vorsorge-text h2 em { font-style: italic; color: #F0D9C8; }
    .vorsorge-text p { color: rgba(255,255,255,0.9); margin-bottom: 2rem; max-width: 440px; }
    .btn-white { background: var(--white); color: var(--red); padding: 1rem 2.4rem; text-decoration: none; font-size: 0.88rem; letter-spacing: 0.08em; text-transform: uppercase; font-weight: 600; border-radius: 2px; transition: transform 0.15s, box-shadow 0.2s; display: inline-block; align-self: flex-start; }
    .btn-white:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(0,0,0,0.2); }

    /* ── GALLERY STRIP ───────────────────────────── */
    .gallery { background: var(--cream); }
    .gallery-head { text-align: center; max-width: 620px; margin: 0 auto 3rem; }
    .gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 220px; gap: 12px; }
    .gallery-item { overflow: hidden; border-radius: 3px; position: relative; }
    .gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
    .gallery-item:hover img { transform: scale(1.07); }
    .gallery-item.wide { grid-column: span 2; }
    .gallery-item.tall { grid-row: span 2; }

    /* ── CONTACT ─────────────────────────────────── */
    .contact { background: var(--ink); color: var(--cream); }
    .contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4.5rem; align-items: center; }
    .contact-info .eyebrow { color: #E0A88F; }
    .contact-info .eyebrow::before { background: #E0A88F; }
    .contact-info h2 { font-size: clamp(2rem, 4vw, 2.9rem); color: var(--white); margin-bottom: 1.8rem; }
    .contact-detail { margin-bottom: 1.5rem; display: flex; gap: 1rem; align-items: flex-start; }
    .contact-detail svg { width: 22px; height: 22px; color: #E0A88F; flex-shrink: 0; margin-top: 4px; }
    .contact-detail .label { font-size: 0.72rem; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(246,243,238,0.5); margin-bottom: 0.15rem; }
    .contact-detail .value { font-size: 1.05rem; color: var(--cream); }
    .contact-detail .value a { color: var(--cream); text-decoration: none; }
    .contact-detail .value a:hover { color: #E0A88F; }
    .contact-detail .big { font-family: 'Cormorant Garamond', serif; font-size: 1.9rem; font-weight: 500; }

    .contact-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(224,168,143,0.25); border-radius: 5px; padding: 2.5rem; }
    .contact-card h3 { font-size: 1.7rem; color: var(--white); margin-bottom: 0.6rem; }
    .contact-card p { color: rgba(246,243,238,0.75); font-size: 0.98rem; margin-bottom: 1.6rem; }
    .contact-card .btn-primary { width: 100%; justify-content: center; margin-bottom: 0.8rem; }
    .contact-card .btn-primary:last-child { margin-bottom: 0; background: transparent; border: 1px solid rgba(224,168,143,0.5); }
    .contact-card .btn-primary:last-child:hover { background: rgba(224,168,143,0.12); }

    /* ── FOOTER ──────────────────────────────────── */
    footer { background: var(--cream); padding: 3rem 2rem 2rem; border-top: 1px solid rgba(115,26,1,0.12); }
    .footer-inner { max-width: 1140px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1.5rem; padding-bottom: 2rem; border-bottom: 1px solid rgba(115,26,1,0.12); }
    .footer-logo img { height: 88px; width: auto; background: var(--cream); padding: 6px 10px; border-radius: 5px; display: block; }
    .footer-links { display: flex; gap: 1.8rem; list-style: none; }
    .footer-links a { color: var(--ink-soft); text-decoration: none; font-size: 0.82rem; letter-spacing: 0.06em; text-transform: uppercase; transition: color 0.2s; }
    .footer-links a:hover { color: var(--red); }
    .footer-copy { max-width: 1140px; margin: 1.5rem auto 0; color: var(--ink-soft); font-size: 0.78rem; text-align: center; }

    /* ── REVEAL ──────────────────────────────────── */
    .reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
    .reveal.in { opacity: 1; transform: translateY(0); }
    /* Fallback: wenn JS deaktiviert ist, bleibt alles sichtbar */
    .no-js .reveal { opacity: 1 !important; transform: none !important; }

    /* ── RESPONSIVE ──────────────────────────────── */
    /* ════════════════════════════════════════════
       RESPONSIVE BREAKPOINTS
       Abgestimmt auf gängige Geräte:
       ≤1200 kleiner Laptop · ≤1024 iPad quer/Pro
       ≤900 iPad Hochformat · ≤600 große Phones
       ≤400 kleine Phones (iPhone SE)
       ════════════════════════════════════════════ */

    /* Kleinere Laptops & große Tablets quer */
    @media (max-width: 1200px) {
      .container { max-width: 960px; }
      section { padding: 5.5rem 2rem; }
    }

    /* iPad Pro / iPad Querformat */
    @media (max-width: 1024px) {
      nav { padding: 0.7rem 2rem; }
      .gallery-grid { grid-auto-rows: 200px; }
      .vorsorge-text { padding: 3.5rem 3rem; }
    }

    /* iPad Hochformat & darunter – Burger-Menü übernimmt */
    @media (max-width: 900px) {
      html, body { overflow-x: hidden; }
      nav { padding: 0.6rem 1.3rem; }
      nav ul { position: fixed; top: 0; right: 0; height: 100vh; width: 75%; max-width: 320px; background: var(--cream); flex-direction: column; justify-content: center; gap: 2rem; transition: transform 0.35s ease, visibility 0.35s; box-shadow: -10px 0 40px rgba(0,0,0,0.15); padding: 2rem; transform: translateX(100%); visibility: hidden; }
      nav ul.open { transform: translateX(0); visibility: visible; }
      .nav-toggle { display: block; z-index: 101; }
      .intro-grid, .contact-grid, .vorsorge-grid { grid-template-columns: 1fr; }
      .intro-grid { gap: 3.5rem; }
      .vorsorge-img { min-height: 280px; }
      .vorsorge-text { padding: 3rem 2rem; }
      .services-grid, .process-steps, .team-grid { grid-template-columns: 1fr 1fr; }
      .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 180px; }
      .gallery-item.wide { grid-column: span 2; }
      .gallery-item.tall { grid-row: span 1; }
      .intro-quote-badge { left: 50%; transform: translateX(-50%); bottom: -20px; }
      .service-card.expanded .service-img { height: 300px; }
    }

    /* Große Smartphones (iPhone 14/15/16, moderne Androids) */
    @media (max-width: 600px) {
      section { padding: 4.5rem 1.3rem; }
      .services-grid, .team-grid, .process-steps { grid-template-columns: 1fr; }
      .process-steps { gap: 2rem; }
      .team-grid { gap: 1.4rem; max-width: 340px; margin-left: auto; margin-right: auto; }
      .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 150px; }
      .hero-actions { flex-direction: column; width: 100%; }
      .hero-actions a { width: 100%; justify-content: center; }
      .hero-phone-note { font-size: 0.8rem; padding: 0 1rem; }
      .intro-quote-badge { padding: 1.2rem 1.4rem; max-width: 230px; }
      .intro-quote-badge p { font-size: 1.15rem; }
      .service-card.expanded .service-img { height: 240px; }
      .footer-inner { flex-direction: column; text-align: center; }
      .footer-links { flex-wrap: wrap; justify-content: center; gap: 1rem 1.4rem; }
    }

    /* Kleine Smartphones (iPhone SE, ältere Androids ~375px) */
    @media (max-width: 400px) {
      body { font-size: 16px; }
      section { padding: 3.8rem 1.1rem; }
      nav { padding: 0.5rem 1rem; }
      .nav-logo img { height: 60px; }
      .nav-logo { padding: 3px 10px; }
      .eyebrow { font-size: 0.72rem; letter-spacing: 0.16em; }
      .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 220px; }
      .gallery-item.wide { grid-column: span 1; }
      .intro-quote-badge { position: static; transform: none; margin-top: 1rem; max-width: none; }
      .intro-photo { display: flex; flex-direction: column; }
    }

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


/* ════════════════════════════════════════════════
   MULTI-PAGE ADDITIONS (design unchanged, only new components)
   ════════════════════════════════════════════════ */

/* Active nav link */
nav ul a.active { color: var(--red); }
nav ul a.active::after { width: 100%; }

/* Compact page hero for sub-pages */
.page-hero {
  position: relative; padding: 9.5rem 2rem 5rem; text-align: center; overflow: hidden;
  display: flex; align-items: center; justify-content: center; min-height: 52vh; min-height: 52dvh;
}
@media (max-width: 600px) {
  .page-hero { min-height: 480px; }
}
.page-hero-bg { position: absolute; inset: 0; z-index: 0; }
@media (max-width: 600px) {
  .page-hero-bg { top: 78px; }  /* Foto beginnt unter der Menüleiste, statt dahinter durchzulaufen – kein Überlapp mehr möglich */
}
.page-hero-bg picture { display: block; width: 100%; height: 100%; }
.page-hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.page-hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(43,38,34,0.58) 0%, rgba(60,20,8,0.52) 60%, rgba(43,38,34,0.7) 100%);
}
.page-hero-content { position: relative; z-index: 2; max-width: 760px; }
.page-hero .eyebrow { color: rgba(255,255,255,0.85); justify-content: center; }
.page-hero .eyebrow::before { background: rgba(255,255,255,0.7); }
.page-hero h1 {
  font-family: 'Cormorant Garamond', serif; font-size: clamp(2.4rem, 5vw, 3.8rem);
  color: var(--white); font-weight: 500; margin-bottom: 1rem; text-shadow: 0 2px 30px rgba(0,0,0,0.3);
}
.page-hero h1 em { font-style: italic; color: #F0D9C8; }
.page-hero p { font-size: 1.15rem; color: rgba(255,255,255,0.9); font-weight: 300; max-width: 540px; margin: 0 auto; }

/* Contact form */
.contact-form { display: flex; flex-direction: column; gap: 1.1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.form-field { display: flex; flex-direction: column; }
.form-field label {
  font-size: 0.74rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(246,243,238,0.6); margin-bottom: 0.45rem; font-weight: 500;
}
.form-field input, .form-field textarea, .form-field select {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(224,168,143,0.28);
  border-radius: 3px; padding: 0.85rem 1rem; color: var(--cream);
  font-family: 'Source Sans 3', sans-serif; font-size: 1rem; font-weight: 300;
  transition: border-color 0.2s, background 0.2s;
}
.form-field input::placeholder, .form-field textarea::placeholder { color: rgba(246,243,238,0.35); }
.form-field input:focus, .form-field textarea:focus, .form-field select:focus {
  outline: none; border-color: #E0A88F; background: rgba(255,255,255,0.1);
}
.form-field textarea { resize: vertical; min-height: 130px; }
.form-field select option { background: var(--ink); color: var(--cream); }
.form-consent { display: flex; gap: 0.7rem; align-items: flex-start; }
.form-consent input { width: 18px; height: 18px; margin-top: 4px; flex-shrink: 0; accent-color: var(--red); }
.form-consent label { font-size: 0.86rem; color: rgba(246,243,238,0.7); text-transform: none; letter-spacing: 0; line-height: 1.55; }
.form-consent a { color: #E0A88F; }
.contact-form .btn-primary { align-self: flex-start; border: none; cursor: pointer; font-family: inherit; }
.form-note { font-size: 0.82rem; color: rgba(246,243,238,0.45); margin-top: 0.3rem; }
.form-success {
  display: none; background: rgba(122,158,142,0.15); border: 1px solid rgba(160,200,180,0.4);
  border-radius: 4px; padding: 1.2rem 1.4rem; color: #cfe6da; font-size: 0.96rem;
}
.form-success.show { display: block; }

/* Section helper for sub-page intros */
.page-section { background: var(--cream); }
.page-section.alt { background: var(--white); }

/* Impressum / legal text */
.legal { background: var(--cream); }
.legal-content { max-width: 860px; margin: 0 auto; }
.legal-content h2 { font-size: 1.8rem; color: var(--ink); margin: 2.2rem 0 0.8rem; }
.legal-content h2:first-child { margin-top: 0; }
.legal-block { background: var(--white); border-radius: 5px; padding: 2.2rem 2.4rem; margin-bottom: 1.4rem; box-shadow: 0 8px 24px rgba(43,38,34,0.06); }
.legal-block p { color: var(--ink-soft); margin-bottom: 0.5rem; font-size: 0.98rem; }
.legal-block p strong { color: var(--ink); font-weight: 600; }
.legal-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem 2.5rem; }
.legal-item .label { font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--red); font-weight: 600; margin-bottom: 0.15rem; }
.legal-item .value { color: var(--ink); font-size: 0.98rem; }
.legal-fine { font-size: 0.86rem !important; color: var(--ink-soft) !important; line-height: 1.7; }
.legal-toggle-head { cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.legal-toggle-head h2 { margin: 0; }
.legal-toggle-head .chev { color: var(--red); transition: transform 0.3s; font-size: 1.5rem; line-height: 1; }
.legal-toggle.open .chev { transform: rotate(180deg); }
.legal-toggle-body { display: none; padding-top: 1.2rem; }
.legal-toggle.open .legal-toggle-body { display: block; }

/* Bestattungsarten list (text rows on trauerfall page) */
.arten-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.8rem; margin-top: 1rem; }
.art-card { background: var(--white); border-radius: 4px; overflow: hidden; display: flex; box-shadow: 0 10px 28px rgba(43,38,34,0.08); }
.art-card-img { width: 42%; overflow: hidden; flex-shrink: 0; }
.art-card-img img { width: 100%; height: 100%; object-fit: cover; min-height: 200px; }
.art-card-body { padding: 1.6rem 1.7rem; }
.art-card-body h3 { font-size: 1.5rem; color: var(--ink); margin-bottom: 0.5rem; }
.art-card-body p { font-size: 1.05rem; color: var(--ink-soft); }

@media (max-width: 900px) {
  .legal-grid { grid-template-columns: 1fr; }
  .arten-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .form-row { grid-template-columns: 1fr; }
  .art-card { flex-direction: column; }
  .art-card-img { width: 100%; }
}

/* ── MAP / ANFAHRT (Kontaktseite) ──────────────── */
.map-section { background: var(--cream); padding: 6.5rem 2rem; }
.map-head { text-align: center; max-width: 640px; margin: 0 auto 3rem; }
.map-frame {
  position: relative; border-radius: 6px; overflow: hidden;
  box-shadow: 0 20px 50px rgba(43,38,34,0.16); background: var(--cream-2);
}
.map-frame iframe {
  width: 100%; height: 460px; border: 0; display: block;
  filter: grayscale(0.25) contrast(1.02);
}
.map-overlay {
  position: absolute; top: 1.4rem; left: 1.4rem; z-index: 2;
  max-width: 300px; pointer-events: none;
}
.map-overlay-card {
  background: rgba(255,255,255,0.96); backdrop-filter: blur(6px);
  border-radius: 5px; padding: 1.4rem 1.5rem; box-shadow: 0 10px 30px rgba(43,38,34,0.18);
  border-top: 3px solid var(--red); pointer-events: auto;
}
.map-overlay-name { font-family: 'Cormorant Garamond', serif; font-size: 1.45rem; font-weight: 600; color: var(--ink); margin-bottom: 0.3rem; }
.map-overlay-addr { font-size: 0.92rem; color: var(--ink-soft); margin-bottom: 1rem; line-height: 1.5; }
.map-overlay-btn { padding: 0.7rem 1.3rem !important; font-size: 0.8rem !important; }
.map-note { text-align: center; font-size: 0.74rem; color: var(--ink-soft); opacity: 0.6; margin-top: 1rem; }

@media (max-width: 768px) {
  .map-frame iframe { height: 380px; }
  .map-overlay { position: static; max-width: none; margin-bottom: 0; }
  .map-overlay-card {
    border-radius: 0; box-shadow: none; border-top: none;
    border-bottom: 1px solid rgba(115,26,1,0.12);
    display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
  }
  .map-overlay-card { background: var(--white); }
  /* Put overlay card BELOW the map on mobile by reordering */
  .map-frame { display: flex; flex-direction: column-reverse; }
  .map-overlay-name { margin-bottom: 0; }
  .map-overlay-addr { margin-bottom: 0; flex: 1 1 100%; }
}
@media (max-width: 480px) {
  .map-frame iframe { height: 320px; }
  .map-overlay-btn { width: 100%; justify-content: center; }
}

/* ── UNSER HAUS (Gebäude auf Kontaktseite) ─────── */
.building { background: var(--cream); padding: 6.5rem 2rem 4rem; }
.building-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 4rem; align-items: center; }
.building-photo { position: relative; }
.building-photo img {
  width: 100%; border-radius: 4px; display: block;
  box-shadow: 0 14px 38px rgba(43,38,34,0.14);
}
.building-text .section-title { margin-bottom: 1.3rem; }
.building-text p { color: var(--ink-soft); margin-bottom: 1.1rem; }
.building-text .btn-primary { margin-top: 0.6rem; }

@media (max-width: 900px) {
  .building-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .building-photo::after { right: 14px; bottom: 14px; left: -8px; top: -8px; }
}
@media (max-width: 600px) {
  .building { padding: 4.5rem 1.3rem 3rem; }
}

/* ── MEISTERBETRIEB (Team-Seite) ───────────────── */
.master { background: var(--white); padding: 6rem 2rem; }
.master-grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 4.5rem; align-items: center; }
.master-img { display: flex; justify-content: center; position: relative; }
.master-img::before {
  content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 360px; height: 360px; border-radius: 50%;
  background: radial-gradient(circle, rgba(115,26,1,0.06) 0%, rgba(115,26,1,0) 70%); z-index: 0;
}
.master-frame {
  position: relative; z-index: 1; padding: 14px; background: linear-gradient(145deg, #FBFAF8, #ECE6DC);
  border-radius: 6px; box-shadow: 0 24px 55px rgba(43,38,34,0.22), 0 2px 6px rgba(43,38,34,0.12);
}
.master-frame::after {
  content: ''; position: absolute; inset: 14px; border: 1px solid rgba(201,169,110,0.5);
  pointer-events: none; border-radius: 2px;
}
.master-frame img {
  max-width: 300px; width: 100%; display: block; border-radius: 2px;
}
.master-badge {
  position: absolute; bottom: -16px; left: 50%; transform: translateX(-50%); z-index: 2;
  background: var(--red); color: #fff; font-size: 0.72rem; letter-spacing: 0.12em;
  text-transform: uppercase; font-weight: 600; padding: 0.5rem 1.3rem; border-radius: 2px;
  white-space: nowrap; box-shadow: 0 8px 20px rgba(92,20,1,0.3);
}
.master-text .section-title { margin-bottom: 1.3rem; }
.master-text p { color: var(--ink-soft); margin-bottom: 1.1rem; }

@media (max-width: 900px) {
  .master-grid { grid-template-columns: 1fr; gap: 3rem; }
  .master-frame img { max-width: 260px; }
  .master-img::before { width: 300px; height: 300px; }
}
@media (max-width: 600px) {
  .master { padding: 4.5rem 1.3rem; }
}

/* Meisterbrief ohne Rahmen */
.master-plain-img {
  max-width: 300px; width: 100%; border-radius: 3px;
  box-shadow: 0 18px 45px rgba(43,38,34,0.18);
  display: block;
}

/* Meisterbrief wrapper with badge */
.master-plain-wrap { position: relative; display: inline-block; }
.master-plain-img { max-width: 300px; width: 100%; border-radius: 3px; box-shadow: 0 18px 45px rgba(43,38,34,0.18); display: block; }
.master-badge {
  display: block; text-align: center;
  background: var(--red); color: #fff; font-size: 0.72rem; letter-spacing: 0.12em;
  text-transform: uppercase; font-weight: 600; padding: 0.5rem 1.3rem;
  border-radius: 0 0 3px 3px; box-shadow: 0 6px 18px rgba(92,20,1,0.28);
}

/* Team hero image – responsive focus point */
.team-hero-img { object-position: center 18%; }       /* Desktop: alle Gesichter sichtbar */
@media (max-width: 900px) { .team-hero-img { object-position: center 22%; } }
@media (max-width: 600px) {
  .team-hero-img { object-position: center top; }
}  /* Handy: eigener breiter Bildausschnitt (team-sitzend-mobile.jpeg) statt Zoom – alle Köpfe mit Sicherheitsabstand */


/* ── FAQ Section ─────────────────────────────────────────────── */
.faq-section { background: var(--cream); }
.faq-head { margin-bottom: 3.5rem; }

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.6rem;
}

.faq-item {
  background: var(--white);
  border-radius: 4px;
  padding: 2rem 2rem 2rem 1.8rem;
  display: flex;
  gap: 1.4rem;
  align-items: flex-start;
  box-shadow: 0 6px 20px rgba(43,38,34,0.07);
  border-top: 3px solid transparent;
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
}
.faq-item:hover {
  border-top-color: var(--red);
  box-shadow: 0 10px 30px rgba(43,38,34,0.12);
  transform: translateY(-3px);
}

.faq-icon {
  flex-shrink: 0;
  width: 42px; height: 42px;
  background: var(--cream-2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--red);
  margin-top: 0.15rem;
}
.faq-icon svg { width: 20px; height: 20px; }

.faq-content h4 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.22rem;
  font-weight: 600;
  color: var(--ink);
  margin: 0 0 0.6rem 0;
  line-height: 1.3;
}
.faq-content p {
  font-size: 1rem;
  color: var(--ink-soft);
  margin: 0;
  line-height: 1.65;
}

@media (max-width: 900px) {
  .faq-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .faq-item { padding: 1.5rem 1.4rem; gap: 1.1rem; }
  .faq-icon { width: 36px; height: 36px; }
  .faq-icon svg { width: 17px; height: 17px; }
}
