    /* ── TOKENS ── */
    :root {
      --green:        #3d7a4f;
      --green-light:  #6aab7e;
      --green-pale:   #e8f2eb;
      --cream:        #faf9f6;
      --text:         #1a1a1a;
      --text-muted:   #5c5c5c;
      --border:       #dedad3;
      --card-bg:      #ffffff;
      --nav-bg:       rgba(250,249,246,0.94);
      --hero-overlay: rgba(8,26,14,0.62);
      --shadow:       0 2px 20px rgba(0,0,0,0.07);
      --radius:       14px;
      --transition:   0.3s ease;
    }
    [data-theme="dark"] {
      --cream:        #0d1810;
      --text:         #e5ebe6;
      --text-muted:   #8aa690;
      --border:       #1f2e22;
      --card-bg:      #141f16;
      --nav-bg:       rgba(13,24,16,0.96);
      --green-pale:   #172219;
      --hero-overlay: rgba(4,12,6,0.65);
      --shadow:       0 2px 20px rgba(0,0,0,0.4);
    }

    /* ── RESET ── */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      font-family: 'Inter', sans-serif;
      background: var(--cream);
      color: var(--text);
      transition: background var(--transition), color var(--transition);
      overflow-x: hidden;
      font-size: 16px; /* larger base for readability */
    }
    img { display: block; max-width: 100%; }
    a { text-decoration: none; color: inherit; }

    /* ── NAV ── */
    #navbar {
      position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    }
    .nav-pill-wrap {
      max-width: 960px; margin: 14px auto 0;
      padding: 0 20px;
      position: relative;
    }
    .nav-inner {
      background: var(--nav-bg);
      backdrop-filter: saturate(180%) blur(20px);
      -webkit-backdrop-filter: saturate(180%) blur(20px);
      border: 1px solid var(--border);
      border-radius: 20px;
      padding: 0 22px;
      height: 58px;
      display: flex; align-items: center; justify-content: space-between;
      box-shadow: 0 2px 28px rgba(0,0,0,0.09), 0 1px 0 rgba(255,255,255,0.6) inset;
      transition: background var(--transition), border-color var(--transition);
      position: relative;
      
    }
    [data-theme="dark"] .nav-inner {
      box-shadow: 0 2px 28px rgba(0,0,0,0.5), 0 1px 0 rgba(255,255,255,0.03) inset;
    }
    .nav-logo {
      font-family: 'Fraunces', serif;
      font-size: 1.2rem; font-weight: 600;
      color: var(--green); letter-spacing: -0.3px;
      flex-shrink: 0;
    }
    .nav-logo span { color: var(--text); }
    .nav-links-center {
  display: flex; 
  align-items: center; 
  gap: 2px;
  list-style: none; /* Entfernt die unschönen Punkte */
  margin: 0;
  padding: 0;
}

    .nav-links-center a {
      display: block;
      font-size: 0.84rem; font-weight: 500;
      color: var(--text-muted);
      padding: 7px 14px; border-radius: 10px;
      transition: color 0.2s, background 0.2s;
    }
    .nav-links-center a:hover { color: var(--text); background: rgba(0,0,0,0.05); }
    [data-theme="dark"] .nav-links-center a:hover { background: rgba(255,255,255,0.07); }
    .nav-links-center a.active { color: var(--text); font-weight: 600; }
    .nav-right { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
    .nav-cta-btn {
  background: var(--green); 
  color: #fff; 
  border: none;
    height: 36px;               /* Exakte Höhe wie das Wetter-Inlay/Theme-Button */
    padding: 0 16px;                 /* Kein Padding, damit er nicht eiförmig wird */
    border-radius: 50px; 
  font-size: 0.83rem; 
  font-weight: 500;
  cursor: pointer; 
  letter-spacing: 0.1px;
  transition: background 0.2s, transform 0.15s;
  display: inline-flex;
  align-items: center;       
  line-height: 1.5; 
}
.nav-cta-btn:hover { 
  background: var(--green-light); 
  transform: translateY(-1px); 
}


    /* theme toggle – clean SVG sun/moon */
    .theme-btn {
      background: none; border: 1px solid var(--border);
      cursor: pointer; width: 36px; height: 36px; border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      transition: background 0.2s, border-color 0.2s;
      flex-shrink: 0; color: var(--text-muted);
    }
    .theme-btn:hover { background: var(--green-pale); border-color: var(--green-light); }
    .theme-btn svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 1.8; stroke-linecap: round; }
    .icon-sun  { display: block; }
    .icon-moon { display: none; }
    [data-theme="dark"] .icon-sun  { display: none; }
    [data-theme="dark"] .icon-moon { display: block; }

    .hamburger {
      display: none; flex-direction: column; gap: 5px;
      background: none; border: none; cursor: pointer; padding: 4px;
    }
    .hamburger span { display: block; width: 20px; height: 1.5px; background: var(--text); border-radius: 2px; transition: var(--transition); }

    /* mobile menu */
.mobile-menu {
    align-items: flex-start;
    display: flex;
    flex-direction: column;
    background: var(--nav-bg);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    border: 1px solid var(--border);
    border-radius: 18px;
    margin: 0 20px;
    padding: 10px 14px 18px;
    gap: 2px;
    box-shadow: 0 10px 28px rgba(0,0,0,0.1);

    /* Wichtig: absolute damit es nicht den Seiteninhalt blockiert */
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    z-index: 999;
    pointer-events: none;

    /* Sanfte Animation */
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}

/* Wenn das Menü geöffnet ist, wird es sanft eingeblendet */
.mobile-menu.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

    
    .mobile-menu a {
      padding: 11px 14px; font-size: 0.95rem; color: var(--text);
      border-radius: 10px; transition: color 0.2s, background 0.2s;
    }
    .mobile-menu a:hover { color: var(--green); background: var(--green-pale); }

    /* ── HERO ── */
    .hero {
      position: relative; height: 100vh; min-height: 620px;
      display: flex; align-items: center; overflow: hidden;
    }
    .hero-bg {
      position: absolute; inset: 0;
      background-image:
        linear-gradient(155deg, rgba(24,48,32,0.72) 0%, rgba(14,32,20,0.68) 50%, rgba(8,20,12,0.78) 100%),
        url('rheingarten-hero.jpg');
      background-size: cover; background-position: center;
    }
    .hero-bg::before {
      display: none;
    }
    .hero-bg::after {
      content: '';
      position: absolute; inset: 0;
      background: linear-gradient(0deg, rgba(0,0,0,0.35) 0%, transparent 45%);
    }
    [data-theme="dark"] .hero-bg {
      background-image:
        linear-gradient(155deg, rgba(10,22,14,0.82) 0%, rgba(6,16,10,0.8) 50%, rgba(4,10,6,0.85) 100%),
        url('img/rheingarten-hero.jpg');
    }
    .hero-overlay { position: absolute; inset: 0; background: var(--hero-overlay); transition: background var(--transition); }
    .hero-content {
      position: relative; z-index: 1;
      max-width: 1100px; margin: 0 auto; padding: 0 32px;
      color: #fff;
    }
    .hero-eyebrow {
      font-size: 0.8rem; font-weight: 600;
      letter-spacing: 2.5px; text-transform: uppercase;
      color: #c9f0d4; margin-bottom: 20px;
      display: flex; align-items: center; gap: 10px;
      text-shadow: 0 1px 8px rgba(0,0,0,0.35);
    }
    .hero-eyebrow::before {
      content: ''; display: block; width: 28px; height: 1px;
      background: rgba(201,240,212,0.8);
    }
    .hero-title {
      font-family: 'Fraunces', serif;
      font-size: clamp(2.8rem, 6vw, 4.8rem);
      font-weight: 400; line-height: 1.1; letter-spacing: -1.5px;
      margin-bottom: 24px;
      color: #ffffff;
      text-shadow: 0 2px 18px rgba(0,0,0,0.45);
    }
    .hero-title em { font-style: italic; color: #bdeece; }
    .hero-sub {
      font-size: 1.1rem; font-weight: 400; line-height: 1.7;
      max-width: 500px; color: rgba(255,255,255,0.92); margin-bottom: 40px;
      text-shadow: 0 1px 10px rgba(0,0,0,0.35);
    }
    .hero-actions { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
    .btn-primary {
      background: var(--green); color: #fff; border: none;
      padding: 15px 30px; border-radius: 50px;
      font-size: 0.92rem; font-weight: 500;
      cursor: pointer; transition: background var(--transition), transform 0.15s;
      display: inline-block; letter-spacing: 0.1px;
    }
    .btn-primary:hover { background: var(--green-light); transform: translateY(-1px); }
    .btn-ghost {
      background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.3);
      color: #fff; padding: 15px 30px; border-radius: 50px;
      font-size: 0.92rem; font-weight: 400;
      cursor: pointer; transition: background 0.2s; display: inline-block;
    }
    .btn-ghost:hover { background: rgba(255,255,255,0.2); }

    /* ── TRUST BAR ── */
    .trust-bar {
      background: var(--card-bg); border-bottom: 1px solid var(--border);
      transition: background var(--transition), border-color var(--transition);
    }
    .trust-inner {
      max-width: 1100px; margin: 0 auto; padding: 24px 32px;
      display: flex; gap: 40px; flex-wrap: wrap;
      justify-content: center; align-items: center;
    }
    .trust-item {
      display: flex; align-items: center; gap: 10px;
      font-size: 0.88rem; color: var(--text-muted);
    }
    .trust-item strong { color: var(--text); font-weight: 600; }
    .trust-check {
      width: 18px; height: 18px; flex-shrink: 0;
      color: var(--green);
    }
    .trust-check svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }

    /* ── SECTIONS ── */
    section { padding: 96px 32px; }
    .section-inner { max-width: 1100px; margin: 0 auto; }
    .section-label {
      font-size: 0.75rem; font-weight: 600; letter-spacing: 2.5px;
      text-transform: uppercase; color: var(--green); margin-bottom: 14px;
    }
    .section-title {
      font-family: 'Fraunces', serif;
      font-size: clamp(2rem, 4vw, 3rem);
      font-weight: 300; line-height: 1.2; letter-spacing: -0.5px;
      color: var(--text); margin-bottom: 18px;
    }
    .section-sub {
      font-size: 1rem; color: var(--text-muted);
      line-height: 1.75; max-width: 540px;
    }

    /* ── ABOUT ── */
    #about { background: var(--green-pale); transition: background var(--transition); }
    .about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
    .about-badges { display: flex; flex-direction: column; gap: 14px; margin-top: 36px; }
    .about-badge {
      display: flex; align-items: flex-start; gap: 16px;
      padding: 18px 20px; background: var(--card-bg);
      border-radius: var(--radius); border: 1px solid var(--border);
      transition: background var(--transition), border-color var(--transition);
    }
    .about-badge-icon {
      width: 36px; height: 36px; flex-shrink: 0;
      background: var(--green-pale); border-radius: 9px;
      display: flex; align-items: center; justify-content: center;
      color: var(--green); transition: background var(--transition);
    }
    .about-badge-icon svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
    .about-badge-text strong { display: block; font-size: 0.9rem; font-weight: 600; color: var(--text); margin-bottom: 3px; }
    .about-badge-text span { font-size: 0.85rem; color: var(--text-muted); line-height: 1.55; }
    .about-img-wrap {
      border-radius: 20px; overflow: hidden; aspect-ratio: 4/5;
      background: var(--green-pale); position: relative;
    }
    .about-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
    .about-img-label {
      position: absolute; bottom: 20px; left: 20px; right: 20px;
      background: rgba(255,255,255,0.9); backdrop-filter: blur(10px);
      border-radius: 12px; padding: 14px 18px;
      font-size: 0.85rem; color: #1a1a1a;
    }
    [data-theme="dark"] .about-img-label { background: rgba(20,31,22,0.92); color: var(--text); }
    .about-img-label strong { display: block; font-weight: 600; margin-bottom: 2px; }

    /* ── SERVICES ── */
    #services { background: var(--cream); transition: background var(--transition); }
    .services-grid {
      display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
      gap: 18px; margin-top: 52px;
    }
    .service-card {
      background: var(--card-bg); border: 1px solid var(--border);
      border-radius: var(--radius); padding: 30px 26px;
      transition: box-shadow 0.25s, transform 0.2s, background var(--transition), border-color var(--transition);
    }
    .service-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
    .service-icon-wrap {
      width: 42px; height: 42px; border-radius: 11px;
      background: var(--green-pale); color: var(--green);
      display: flex; align-items: center; justify-content: center;
      margin-bottom: 18px;
      transition: background var(--transition);
    }
    .service-icon-wrap svg { width: 20px; height: 20px; stroke: currentColor; fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
    .service-card h3 { font-size: 0.97rem; font-weight: 600; color: var(--text); margin-bottom: 9px; }
    .service-card p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.65; }
    .service-tag {
      display: inline-block; margin-top: 16px;
      font-size: 0.73rem; font-weight: 600; letter-spacing: 0.3px;
      color: var(--green); background: var(--green-pale);
      padding: 5px 11px; border-radius: 50px;
      transition: background var(--transition);
    }
    .service-tag.soon { color: var(--text-muted); background: var(--border); }

    /* ── SONDERKONDITIONEN ── */
    #sonder { background: var(--green); color: #fff; position: relative; overflow: hidden; }
    #sonder::after {
      content: ''; position: absolute; right: -80px; top: -80px;
      width: 400px; height: 400px; border-radius: 50%;
      background: rgba(255,255,255,0.04); pointer-events: none;
    }
    .sonder-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
    #sonder .section-label { color: rgba(200,235,210,0.75); }
    #sonder .section-title { color: #fff; }
    #sonder .section-sub { color: rgba(255,255,255,0.78); max-width: 100%; font-size: 1rem; line-height: 1.75; }
    .sonder-cards { display: flex; flex-direction: column; gap: 14px; }
    .sonder-card {
      background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.18);
      border-radius: var(--radius); padding: 22px 24px;
      display: flex; gap: 18px; align-items: flex-start;
      transition: background 0.2s;
    }
    .sonder-card:hover { background: rgba(255,255,255,0.15); }
    .sonder-card-icon {
      width: 38px; height: 38px; flex-shrink: 0;
      background: rgba(255,255,255,0.15); border-radius: 10px;
      display: flex; align-items: center; justify-content: center;
      color: rgba(255,255,255,0.9);
    }
    .sonder-card-icon svg { width: 19px; height: 19px; stroke: currentColor; fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
    .sonder-card h4 { font-size: 0.93rem; font-weight: 600; color: #fff; margin-bottom: 5px; }
    .sonder-card p { font-size: 0.86rem; color: rgba(255,255,255,0.75); line-height: 1.6; }
    .sonder-cta {
      display: inline-flex; align-items: center; gap: 8px;
      margin-top: 30px; background: #fff; color: var(--green);
      padding: 14px 28px; border-radius: 50px;
      font-size: 0.9rem; font-weight: 600; transition: transform 0.15s, opacity 0.2s;
    }
    .sonder-cta:hover { transform: translateY(-1px); opacity: 0.92; }

    /* ── WHY ── */
    #why { background: var(--green-pale); transition: background var(--transition); }
    .why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 52px; }
    .why-card {
      padding: 30px 24px; background: var(--card-bg); border: 1px solid var(--border);
      border-radius: var(--radius);
      transition: background var(--transition), border-color var(--transition);
    }
    .why-num {
      font-family: 'Fraunces', serif;
      font-size: 2.2rem; font-weight: 600; color: var(--green);
      margin-bottom: 12px; line-height: 1;
    }
    .why-card h4 { font-size: 0.95rem; font-weight: 600; margin-bottom: 9px; }
    .why-card p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.65; }

    /* ── CTA ── */
    .cta-strip {
      background: var(--card-bg); border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
      padding: 80px 32px; text-align: center;
      transition: background var(--transition), border-color var(--transition);
    }
    .cta-strip h2 {
      font-family: 'Fraunces', serif;
      font-size: clamp(1.7rem, 3.5vw, 2.4rem);
      font-weight: 300; margin-bottom: 12px;
    }
    .cta-strip p { font-size: 1rem; color: var(--text-muted); margin-bottom: 32px; }
    .cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
    .btn-dark {
      background: var(--text); color: var(--cream);
      padding: 15px 30px; border-radius: 50px;
      font-size: 0.92rem; font-weight: 500; display: inline-block;
      transition: opacity 0.2s;
    }
    .btn-dark:hover { opacity: 0.8; }
    .btn-outline {
      background: transparent; border: 1.5px solid var(--border);
      color: var(--text); padding: 10px 20px; border-radius: 50px;
      font-size: 0.92rem; font-weight: 500; display: inline-flex;
      align-items: center; gap: 8px;
      transition: border-color var(--transition), color var(--transition);
    }
    .btn-outline:hover { border-color: var(--green); color: var(--green); }
    .btn-outline svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; }

    /* ── FOOTER ── */
    footer {
      background: #0d1f12;
      border-top: 1px solid rgba(255,255,255,0.07);
      transition: background var(--transition), border-color var(--transition);
    }
    [data-theme="dark"] footer { background: #080f09; }
    .footer-inner {
      max-width: 1100px; margin: 0 auto;
      padding: 64px 32px 0;
      display: grid;
      grid-template-columns: 1.6fr 1fr 1fr;
      gap: 48px;
      align-items: start;
    }
    .footer-brand {}
    .footer-logo {
      font-family: 'Fraunces', serif;
      font-size: 1.3rem; font-weight: 600; color: #4caf72;
      margin-bottom: 14px; display: block;
    }
    .footer-tagline {
      font-size: 0.88rem; color: rgba(255,255,255,0.55);
      line-height: 1.7; max-width: 300px; margin-bottom: 22px;
    }
    .footer-contact-list {
      display: flex; flex-direction: column; gap: 8px;
    }
    .footer-contact-list a,
    .footer-contact-list span {
      display: flex; align-items: center; gap: 9px;
      font-size: 0.85rem; color: rgba(255,255,255,0.55);
      transition: color 0.2s;
    }
    .footer-contact-list a:hover { color: #4caf72; }
    .footer-contact-list svg {
      width: 15px; height: 15px; stroke: currentColor; fill: none;
      stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round;
      flex-shrink: 0; opacity: 0.7;
    }
    .footer-col-title {
      font-size: 0.7rem; font-weight: 700; letter-spacing: 2px;
      text-transform: uppercase; color: rgba(255,255,255,0.35);
      margin-bottom: 18px;
    }
    .footer-col-links {
      display: flex; flex-direction: column; gap: 11px;
    }
    .footer-col-links a {
      font-size: 0.88rem; color: rgba(255,255,255,0.6);
      transition: color 0.2s;
    }
    .footer-col-links a:hover { color: #4caf72; }
    .footer-bottom {
      max-width: 1100px; margin: 0 auto;
      padding: 24px 32px;
      margin-top: 52px;
      border-top: 1px solid rgba(255,255,255,0.1);
      display: flex; justify-content: space-between; align-items: center;
      flex-wrap: wrap; gap: 12px;
    }
    .footer-copy {
      font-size: 0.8rem; color: rgba(255,255,255,0.3);
    }
    .footer-bottom-links {
      display: flex; gap: 24px;
    }
    .footer-bottom-links a {
      font-size: 0.8rem; color: rgba(255,255,255,0.3);
      transition: color 0.2s;
    }
    .footer-bottom-links a:hover { color: rgba(255,255,255,0.6); }
    @media (max-width: 768px) {
      .footer-inner {
        grid-template-columns: 1fr;
        gap: 36px;
        padding: 48px 20px 0;
      }
      .footer-bottom {
        padding: 20px 20px;
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
      }
    }

    /* ── RESPONSIVE ── */
    @media (max-width: 768px) {
      .nav-links-center { display: none; }
      .nav-cta-btn { display: none; }
      .hamburger { display: flex; }
      .about-grid, .sonder-grid { grid-template-columns: 1fr; gap: 40px; }
      .why-grid { grid-template-columns: 1fr 1fr; }
      .about-img-wrap { aspect-ratio: 16/9; }
      section { padding: 72px 20px; }
    }
    @media (max-width: 480px) {
      .why-grid { grid-template-columns: 1fr; }
      .trust-inner { gap: 20px; }
      section { padding: 60px 20px; }
    }

    /* ── FOTO-PLATZHALTER (leicht gegen echte Bilder austauschbar) ── */
.photo-placeholder {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background:
    linear-gradient(135deg, var(--green-pale) 0%, var(--card-bg) 100%);
  border: 1.5px dashed var(--border);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 10px; text-align: center; padding: 24px;
  color: var(--text-muted);
  transition: border-color var(--transition), background var(--transition);
}
.photo-placeholder:hover { border-color: var(--green-light); }
.photo-placeholder-icon {
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--card-bg); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--green);
}
.photo-placeholder-icon svg { width: 21px; height: 21px; stroke: currentColor; fill: none; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.photo-placeholder strong { font-size: 0.85rem; color: var(--text); font-weight: 600; }
.photo-placeholder span { font-size: 0.78rem; line-height: 1.5; max-width: 220px; }
.photo-placeholder img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

/* ── GALERIE „MEINE ARBEIT" ── */
.work-gallery {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 48px;
}
.work-gallery .photo-placeholder { aspect-ratio: 4/3; }
@media (max-width: 768px) {
  .work-gallery { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px) {
  .work-gallery { grid-template-columns: 1fr; }
}

/* ── FADE IN ── */
    .fade-up { opacity: 0; transform: translateY(22px); transition: opacity 0.6s ease, transform 0.6s ease; }
    .fade-up.visible { opacity: 1; transform: none; }

/* ── WETTER-WIDGET ── */
.weather-pill {
  display: flex; align-items: center; gap: 8px;
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: 50px; padding: 6px 14px 6px 8px;
  font-size: 0.78rem; color: var(--text-muted);
  flex-shrink: 0; cursor: default; user-select: none;
  transition: border-color var(--transition), background var(--transition);
  white-space: nowrap;
}
.weather-pill .w-icon {
  width: 26px; height: 26px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  color: var(--green);
}
.weather-pill .w-icon svg { width: 20px; height: 20px; stroke: currentColor; fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.weather-pill .w-temp { font-weight: 600; color: var(--text); }
.weather-pill .w-frost {
  display: flex; align-items: center; gap: 5px;
  color: #b5651d; font-weight: 600;
}
[data-theme="dark"] .weather-pill .w-frost { color: #f0a868; }
.weather-pill .w-frost svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.weather-pill .w-sep { width: 1px; height: 16px; background: var(--border); flex-shrink: 0; }
@media (max-width: 900px) {
  .weather-pill .w-text-label { display: none; }
}
@media (max-width: 768px) {
  .weather-pill { display: none; }
}

/* ── SENIOREN- / BARRIEREFREI-MODUS ── */
.a11y-btn {
  background: none; border: 1px solid var(--border);
  cursor: pointer; width: 36px; height: 36px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, border-color 0.2s;
  flex-shrink: 0; color: var(--text-muted);
}
.a11y-btn:hover { background: var(--green-pale); border-color: var(--green-light); }
.a11y-btn svg { width: 17px; height: 17px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.a11y-btn.active { background: var(--green); border-color: var(--green); color: #fff; }

/* Senioren-/Barrierefrei-Modus: aktiviert über data-a11y="true" auf <html> */
[data-a11y="true"] {
  --transition: 0s;
}
[data-a11y="true"] body {
  font-size: 19px;
  line-height: 1.75;
}
[data-a11y="true"] .section-sub,
[data-a11y="true"] .service-card p,
[data-a11y="true"] .about-badge-text span,
[data-a11y="true"] .why-card p,
[data-a11y="true"] .sonder-card p,
[data-a11y="true"] .hero-sub,
[data-a11y="true"] .footer-sub,
[data-a11y="true"] .footer-links a,
[data-a11y="true"] .trust-item,
[data-a11y="true"] .nav-links-center a,
[data-a11y="true"] .mobile-menu a,
[data-a11y="true"] label,
[data-a11y="true"] .weather-pill {
  font-size: 1.18em;
}
[data-a11y="true"] .section-title,
[data-a11y="true"] .hero-title,
[data-a11y="true"] .cta-strip h2 {
  font-weight: 600;
}
[data-a11y="true"] .fade-up {
  opacity: 1 !important; transform: none !important;
}
[data-a11y="true"] * {
  animation: none !important;
}
[data-a11y="true"] a,
[data-a11y="true"] button,
[data-a11y="true"] input,
[data-a11y="true"] textarea {
  outline-offset: 2px;
}
[data-a11y="true"] a:focus-visible,
[data-a11y="true"] button:focus-visible,
[data-a11y="true"] input:focus-visible,
[data-a11y="true"] textarea:focus-visible {
  outline: 3px solid var(--green); outline-offset: 2px;
}
[data-a11y="true"] .btn-primary,
[data-a11y="true"] .btn-dark,
[data-a11y="true"] .btn-outline,
[data-a11y="true"] .btn-ghost,
[data-a11y="true"] .sonder-cta {
  padding-top: 1.1em; padding-bottom: 1.1em;
  font-size: 1.05rem;
}
[data-a11y="true"] .form-group input,
[data-a11y="true"] .form-group textarea {
  font-size: 1.1rem; padding: 16px 18px;
}
[data-a11y="true"] :root,
[data-a11y="true"] {
  --text-muted: var(--text);
}
[data-a11y="true"] .why-grid,
[data-a11y="true"] .services-grid {
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 768px) {
  [data-a11y="true"] .why-grid,
  [data-a11y="true"] .services-grid {
    grid-template-columns: 1fr;
  }
}
[data-a11y="true"] .hero-eyebrow::before,
[data-a11y="true"] .weather-pill { }

/* ── ANFRAGE: LEBHAFTIGKEIT ── */
.anfrage-hero {
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 60px; align-items: start;
}
@media (max-width: 860px) {
  .anfrage-hero { grid-template-columns: 1fr; gap: 40px; }
}
.anfrage-perks { display: flex; flex-direction: column; gap: 16px; margin-top: 8px; }
.anfrage-perk {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 16px 18px; background: var(--card-bg); border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: transform 0.2s, box-shadow 0.2s, background var(--transition), border-color var(--transition);
}
.anfrage-perk:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.anfrage-perk-icon {
  width: 38px; height: 38px; flex-shrink: 0; border-radius: 10px;
  background: var(--green-pale); color: var(--green);
  display: flex; align-items: center; justify-content: center;
}
.anfrage-perk-icon svg { width: 19px; height: 19px; stroke: currentColor; fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.anfrage-perk strong { display: block; font-size: 0.92rem; font-weight: 600; margin-bottom: 3px; }
.anfrage-perk span { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; }

.anfrage-card {
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: 20px; padding: 36px;
  box-shadow: var(--shadow);
  transition: background var(--transition), border-color var(--transition);
}
.anfrage-card h1 { margin-bottom: 8px; }

.form-status {
  margin-top: 18px; padding: 14px 18px; border-radius: 12px;
  font-size: 0.9rem; display: none; align-items: center; gap: 10px;
}
.form-status.show { display: flex; }
.form-status.success { background: var(--green-pale); color: var(--green); border: 1px solid var(--green-light); }
.form-status.error { background: #fbeae9; color: #b3392c; border: 1px solid #e7b4ac; }
[data-theme="dark"] .form-status.error { background: #2a1714; color: #ff9d8a; border-color: #4a2620; }
.form-status svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }
.btn-primary[disabled] { opacity: 0.6; cursor: not-allowed; }

/* ── SUBPAGE HERO (kleinere Sektion für Unterseiten) ── */
.page-hero {
  background: var(--green-pale);
  transition: background var(--transition);
}
.page-hero .section-inner { padding-bottom: 0; }

/* ── EINFACHE CONTENT-GRID HILFE ── */
.icon-card-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 18px; margin-top: 40px;
}
.icon-card {
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 26px 24px;
  transition: box-shadow 0.25s, transform 0.2s, background var(--transition), border-color var(--transition);
}
.icon-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.icon-card .service-icon-wrap { margin-bottom: 16px; }
.icon-card h3 { font-size: 0.97rem; font-weight: 600; color: var(--text); margin-bottom: 8px; }
.icon-card p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.65; }

/* ── STEPS (Sonderkonditionen) ── */
.steps-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; margin-top: 40px; }
@media (max-width: 768px) { .steps-grid { grid-template-columns: 1fr; } }
.step-card {
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px 24px;
  transition: background var(--transition), border-color var(--transition);
}
.step-num {
  font-family: 'Fraunces', serif; font-size: 2rem; font-weight: 600;
  color: var(--green); margin-bottom: 10px; line-height: 1;
}
.step-card h4 { font-size: 0.95rem; font-weight: 600; margin-bottom: 8px; }
.step-card p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; }

/* ── ÜBER UNS: FACTS ── */
.fact-strip {
  display: flex; gap: 32px; flex-wrap: wrap; margin-top: 36px;
}
.fact-item { display: flex; flex-direction: column; gap: 4px; }
.fact-item .fact-num {
  font-family: 'Fraunces', serif; font-size: 2.1rem; font-weight: 600; color: var(--green); line-height: 1;
}
.fact-item .fact-label { font-size: 0.82rem; color: var(--text-muted); }
/* ── DER RICHTIGE NAVIGATION-FIX ── */

/* Sobald der Bildschirm zu eng für alles nebeneinander wird */
@media screen and (max-width: 1024px) {
  
  /* Das Wetter-Pill verschwindet, um Platz zu machen */
  .weather-pill {
    display: none !important;
  }
  
  /* Die Links oben in der Leiste verschwinden rechtzeitig... */
  .nav-inner .nav-links-center {
    display: none !important;
  }
  
  /* ...ABER im mobilen Burger-Menü werden sie weiterhin korrekt angezeigt! */
  .mobile-menu .nav-links-center {
    display: flex !important;
    position: static !important; /* Hebt das starre Schweben auf */
    transform: none !important;
    flex-direction: column !important; /* Zeigt die Punkte sauber untereinander an */
    align-items: stretch !important;
    width: 100%;
  }

  /* Der Anfrage-Button wandert bei Bedarf auch mit */
  .nav-cta-btn {
    display: none !important;
  }

  /* Aktiviert die drei Striche (Hamburger) oben rechts */
  .hamburger {
    display: flex !important;
  }
}
/* Sobald die Leiste zu eng wird (unter 1150px) */
@media screen and (max-width: 1150px) {
  
  /* Blendet die mittleren Links in der Hauptleiste aus */
  .nav-inner .nav-links-center {
    display: none !important;
  }
  
  /* Blendet das Wetter-Pill und den Anfrage-Button aus */
  .weather-pill,
  .nav-cta-btn {
    display: none !important;
  }
  
  /* Aktiviert die drei Striche (Hamburger) oben rechts */
  .hamburger {
    display: flex !important;
  }
}
/* ── LESBARKEITS-MODUS (a11y) ── */

/* Nav-Links ausblenden, Hamburger einschalten */
[data-a11y="true"] .nav-links-center,
.a11y-active .nav-links-center,
body.large-text .nav-links-center {
  display: none !important;
}

[data-a11y="true"] .hamburger,
.a11y-active .hamburger,
body.large-text .hamburger {
  display: flex !important;
}

/* Wetter-Pill + Anfrage-Button bleiben sichtbar – aber NICHT auf Mobilgeräten */
@media (min-width: 1025px) {
  [data-a11y="true"] .weather-pill {
    display: flex !important;
  }
}
/* Anfrage-Button bleibt sichtbar – aber NICHT auf Mobilgeräten (sonst Überlappung mit Hamburger) */
@media (min-width: 1025px) {
  [data-a11y="true"] .nav-cta-btn {
    display: inline-flex !important;
    font-weight: 700 !important;
    font-size: 0.9rem !important;
  }
}

/* Leiste behält normale Höhe */
[data-a11y="true"] .nav-inner {
  height: 58px;
  overflow: visible;
}
