:root {
  --header-offset: 40px;
      /* VERSION: V1 – Petrol & Gold */
      --petrol: #214F55;
      --sand: #F1E8DA;
      --sage: #A7B7A5;
      --gold: #C6A86B;
      --anth: #1E2A2D;
      --text-secondary: #6E7E81;

      --text: var(--anth);
      --muted: var(--text-secondary);

      --bg: var(--sand);
      --bg-alt: #ffffff;
      --border: rgba(30,42,45,0.14);

      --max-width: 980px;
      --radius: 18px;

      --space-1: 0.5rem;
      --space-2: 1rem;
      --space-3: 1.75rem;
      --space-4: 3rem;
      --space-5: 4.5rem;
    }

    * { box-sizing: border-box; }
    html {
  scroll-padding-top: var(--header-offset); scroll-behavior: smooth; }

    body {
      margin: 0;
      font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      background: var(--bg);
      color: var(--text);
      line-height: 1.65;
    }

    a { color: inherit; text-decoration: none; }

    header {
      background: rgba(241,232,218,0.85);
      border-bottom: 1px solid var(--border);
      position: sticky;
      top: 0;
      z-index: 10;
      backdrop-filter: blur(10px);
    }

    .nav-inner {
      max-width: var(--max-width);
      margin: 0 auto;
      padding: 0.9rem 1.25rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 0.65rem;
      font-size: 0.9rem;
      letter-spacing: 0.09em;
      text-transform: uppercase;
      white-space: nowrap;
    }

    .brand-logo {
      width: 26px;
      height: 26px;
      display: block;
    }

    nav ul {
      list-style: none;
      display: flex;
      gap: 1.2rem;
      margin: 0;
      padding: 0;
      font-size: 0.92rem;
      color: var(--muted);
    }

    nav a {
      position: relative;
      padding-bottom: 0.15rem;
    }

    nav a::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: 0;
      width: 0;
      height: 1px;
      background: var(--text);
      transition: width 0.18s ease;
    }

    nav a:hover { color: var(--text); }
    nav a:hover::after { width: 100%; }

    /* Active Nav (Desktop) */
    .site-nav a[aria-current="page"] {
      color: var(--text);
      font-weight: 600;
    }
    .site-nav a[aria-current="page"]::after { width: 100%; }

    /* Mobile toggle button (hidden on Desktop) */
    .nav-toggle {
      display: none;
      align-items: center;
      justify-content: center;
      width: 44px;
      height: 44px;
      border-radius: 12px;
      border: 1px solid rgba(30,42,45,0.18);
      background: rgba(255,255,255,0.65);
      cursor: pointer;
      flex-direction: column;
      gap: 4px;
    }
    .nav-toggle__bar {
      width: 18px;
      height: 2px;
      background: var(--text);
      border-radius: 2px;
      display: block;
    }
    .nav-toggle:focus-visible {
      outline: 2px solid rgba(33,79,85,0.35);
      outline-offset: 2px;
    }
    

    main {
      max-width: var(--max-width);
      margin: 0 auto;
      padding: var(--space-5) 1.25rem var(--space-5);
    }

    section { margin-bottom: var(--space-5); }

    h1, h2, h3 { margin: 0; line-height: 1.25; letter-spacing: -0.01em; }
    h1 { font-size: clamp(2.1rem, 3.4vw, 2.7rem); font-weight: 600; margin-bottom: var(--space-2); }
    h2 { font-size: 1.45rem; font-weight: 600; margin-bottom: var(--space-2); }
    h3 { font-size: 1.08rem; font-weight: 600; margin-top: 1.15rem; margin-bottom: 0.35rem; }
/* Improve spacing when a subheading follows body text */
p + h3 { margin-top: 1.45rem; }
    section > h3:first-child,
    .card > h3:first-child,
    .frame > h3:first-child,
    .plain > h3:first-child { margin-top: 0; }


    p { margin: 0; color: var(--muted); font-size: 1rem; }

    .eyebrow {
      text-transform: uppercase;
      letter-spacing: 0.14em;
      font-size: 0.75rem;
      color: var(--muted);
      margin-bottom: var(--space-1);
    }

    .card {
      background: rgba(245,247,246,0.9);
      border-radius: var(--radius);
      border: 1px solid var(--border);
      padding: var(--space-3);
    }

    .hero {
      padding: 3.4rem 2.8rem;
      background: linear-gradient(180deg, rgba(255,255,255,0.85) 0%, rgba(167,183,165,0.22) 100%);
      border-radius: var(--radius);
      border: 1px solid var(--border);
      position: relative;
      overflow: hidden;
    }

    .hero::before {
      content: "";
      position: absolute;
      inset: -40% -20% auto -20%;
      height: 260px;
      background: radial-gradient(circle at 30% 30%, rgba(33,79,85,0.18), transparent 60%);
      pointer-events: none;
    }

    .hero-kicker {
      text-transform: uppercase;
      letter-spacing: 0.14em;
      font-size: 0.78rem;
      color: var(--muted);
      margin-bottom: var(--space-1);
    }

    .hero p {
      margin-top: var(--space-2);
      margin-bottom: var(--space-3);
      max-width: 70ch;
    }

    .hero-sub {
      margin: 0.15rem 0 0.9rem;
      color: var(--text);
      font-size: 1.05rem;
    }

    .hero-image {
      margin-top: var(--space-3);
      width: 100%;
      height: 520px;
      border-radius: 14px;
      overflow: hidden;
      border: 1px solid rgba(30,42,45,0.12);
      background: rgba(255,255,255,0.55);
    }

    .hero-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center 25%;
      display: block;
    }

    .btn-row {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 0.9rem;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 0.72rem 1.5rem;
      border-radius: 999px;
      border: 1px solid rgba(33,79,85,0.45);
      background: var(--petrol);
      color: #ffffff;
      font-size: 0.95rem;
      cursor: pointer;
      transition: transform 0.1s ease, box-shadow 0.12s ease, background 0.2s ease;
    }

    .btn:hover {
      background: var(--anth);
      transform: translateY(-1px);
      box-shadow: 0 10px 22px rgba(30,42,45,0.16);
    }

    .btn:focus-visible {
      outline: 3px solid rgba(198,168,107,0.55);
      outline-offset: 3px;
    }

    .note {
      font-size: 0.88rem;
      color: var(--muted);
      max-width: 62ch;
    }

    .intro { max-width: 72ch; }
    .intro p + p { margin-top: 0.75rem; }

    .offers { padding: 2.1rem 2.2rem; }
    .offer-list {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 1.8rem;
      margin-top: var(--space-3);
    }
    .offer-card p { margin-top: 0.3rem; }
    .offer-link {
      display: inline-block;
      margin-top: 0.65rem;
      font-size: 0.92rem;
      color: var(--text);
      text-decoration: underline;
      text-underline-offset: 0.14em;
    }

    .usp { max-width: 76ch; }
    .usp p + p { margin-top: 0.75rem; }

    footer {
      border-top: 1px solid var(--border);
      padding: 2.2rem 1.25rem 2.6rem;
      background: var(--bg-alt);
      font-size: 0.85rem;
      color: var(--muted);
    }

    footer .footer-inner {
      max-width: var(--max-width);
      margin: 0 auto;
      display: flex;
      flex-wrap: nowrap; /* Desktop: alles in einer Zeile */
      align-items: center;
      justify-content: space-between;
      gap: 2.5rem;
    }

    .footer-meta {
      display: flex;
      flex-direction: column;
      gap: 0.35rem;
      align-items: center;
      text-align: center;
    }

    .footer-links {
      display: flex;
      gap: 0.5rem;
      font-size: 0.8rem;
    }

    .footer-links a {
      color: var(--muted);
      text-decoration: underline;
      text-underline-offset: 0.18em;
    }

    .footer-logo {
      height: 96px;
      width: auto;
      display: block;
      opacity: 0.95;
    }

    .hdc-badge-wrap {
      display: inline-flex;
      align-items: center;
      padding: 0;
    }

    .hdc-badge {
      height: 120px;
      width: auto;
      display: block;
      opacity: 0.95;
    }

.datenschutz-link{
  display: inline-block;
  text-decoration: underline;
  text-underline-offset: 0.14em;
  text-decoration-thickness: 1px;
  color: var(--text);
}

.datenschutz-link:hover{
  color: var(--petrol);
  text-decoration-thickness: 2px;
}

.datenschutz-link:focus-visible{
  outline: none;
  border-radius: 6px;
  box-shadow: 0 0 0 4px rgba(33,79,85,0.14);
}

    

    @media (max-width: 760px) {
      .footer-inner {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 1.25rem;
      }
      .footer-logo { height: 72px; }
      .hdc-badge { height: 96px; }

      .nav-toggle { display: inline-flex; }

      /* Mobile-Menü (Dropdown unter dem Header) */
      .site-nav {
        display: none;
        position: absolute;
        top: calc(100% + 10px);
        left: 1.25rem;
        right: 1.25rem;
        background: rgba(255,255,255,0.92);
        border: 1px solid var(--border);
        border-radius: 14px;
        padding: 0.5rem;
        box-shadow: 0 18px 45px rgba(30,42,45,0.12);
        backdrop-filter: blur(10px);
      }

      .site-nav ul {
        display: flex;
        flex-direction: column;
        gap: 0.15rem;
        font-size: 1rem;
      }

      .site-nav a {
        display: block;
        padding: 0.65rem 0.75rem;
        border-radius: 12px;
      }

      .site-nav a::after { display: none; }

      .site-nav a:hover { background: rgba(33,79,85,0.08); }

      

      /* Active Nav (Mobile) */
      .site-nav a[aria-current="page"] {
        background: rgba(33,79,85,0.10);
        color: var(--text);
        font-weight: 600;
      }
    

      .site-header.nav-open .site-nav { display: block; }

      main { padding-top: 2.8rem; }
      .hero { padding: 2.2rem 1.4rem; }
      .offers { padding: 1.8rem 1.4rem; }
      .card { padding: 1.6rem 1.4rem; }
      .hero-image { height: 380px; }
    }

/* ===== Nav appearance overrides (Active = subtle frame, Burger quieter) ===== */
.site-nav a{
  padding: .35rem .6rem;
  border-radius: 999px;
  border: 1px solid transparent;
}
.site-nav a::after{ content: none !important; }

.site-nav a:hover{
  background: rgba(33,79,85,0.06);
  border-color: rgba(33,79,85,0.18);
}

.site-nav a[aria-current="page"]{
  background: rgba(33,79,85,0.08);
  border-color: rgba(33,79,85,0.26);
  font-weight: 600;
}

@media (max-width: 760px){
  .site-nav a{
    border-radius: 12px;
    padding: .7rem .85rem;
  }
}

.nav-toggle{
  border: 1px solid rgba(30,42,45,0.10) !important;
  background: rgba(255,255,255,0.30) !important;
  box-shadow: none !important;
  opacity: 0.9;
}
.nav-toggle:hover{ opacity: 1; }

.nav-toggle__bar{
  width: 16px !important;
  background: rgba(30,42,45,0.70) !important;
}


/* Anchor offset for sticky header */
section[id]{ scroll-margin-top: calc(var(--header-offset) + 16px); }


/* Restored components used on Angebot page */
.frame {
  margin-top: 1.0rem;
  padding: 1.1rem 1.2rem;
  border-radius: 14px;
  border: 1px solid rgba(30,42,45,0.18);
  background: rgba(255,255,255,0.92);
  box-shadow: 0 1px 0 rgba(30,42,45,0.06);
}

/* Frames that are laid out as siblings in a grid should rely on gap, not margin */
.section-split .frame { margin-top: 0; }

.plain {
      max-width: 78ch;
      margin-left: 0;
    }

.plain p + p { margin-top: 0.8rem; }

.pill {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.55rem 0.95rem;
      border-radius: 999px;
      border: 1px solid rgba(33,79,85,0.22);
      background: rgba(255,255,255,0.72);
      font-size: 0.92rem;
      color: var(--text);
    }

.pill:hover {
      border-color: rgba(33,79,85,0.45);
    }

.toc {
      display: flex;
      flex-wrap: wrap;
      gap: 0.7rem;
      margin-top: 1.1rem;
    }


/* === Utilities & Page Components (generated) === */

  /* For anchor jumps (already used) */
  /* --header-offset defined above */

/* Utilities */
.mt-0{ margin-top:0 !important; }
.mb-0{ margin-bottom:0 !important; }
.mt-06{ margin-top:0.6rem !important; }
.mt-075{ margin-top:0.75rem !important; }
.mt-08{ margin-top:0.8rem !important; }
.mt-09{ margin-top:0.9rem !important; }
.mt-12{ margin-top:1.2rem !important; }
.mt-14{ margin-top:1.4rem !important; }
.mt-16{ margin-top:1.6rem !important; }

.bg-alt{ background:var(--bg-alt) !important; }

.justify-center{ justify-content:center !important; }

.text-strong{ font-weight:600; color:var(--text); }

/* Reusable text blocks */
.lead{
  margin:0.75rem auto 1.35rem;
  max-width:60ch;
}

.subnote{
  margin:0.9rem auto 0;
}

.note--center{ margin:0.9rem auto 0; }

/* Reusable panels */
.panel-soft{
  padding:2.1rem 2.2rem;
  text-align:center;
  background:var(--bg-alt);
}

/* Card modifiers */
.card--lg{ padding:2.1rem 2.2rem; }

/* Index: Testimonials */
.testimonials{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:1.4rem;
  margin-top:1.6rem;
}

@media (max-width: 700px){
  .testimonials{ grid-template-columns:1fr; }
}

@media (max-width: 600px){
  .hero-image{ height: 300px; }
}


.testimonial{
  background:var(--bg-alt);
  border-radius:var(--radius);
  border:1px solid var(--border);
  padding:1.5rem 1.4rem;
  font-size:0.98rem;
}

.testimonial p{ color:var(--text); }

.testimonial footer{
  border-top:1px solid var(--border);
  margin-top:1rem;
  padding-top:0.9rem;
  font-size:0.85rem;
  color:var(--muted);
}

/* Index: CTA */
.cta-block{
  text-align:center;
  padding:2.4rem 2.2rem;
  background:var(--bg-alt);
  border-radius:var(--radius);
  border:1px solid var(--border);
  max-width:760px;
  margin:0 auto;
}

/* About: small muted indent line */
.muted-indent{
  margin-top:0.6rem;
  padding-left:1.1rem;
  color:var(--muted);
}

/* Kontakt: E-Mail & Formular */
.email{
  display:inline-block;
  font-weight:650;
  letter-spacing:0.01em;
  color:var(--text);
  padding:0.35rem 0.65rem;
  border-radius:999px;
  border:1px solid rgba(33,79,85,0.22);
  background:rgba(255,255,255,0.70);
  box-shadow:0 10px 18px rgba(30,42,45,0.08);
  transition:transform 160ms ease, border-color 160ms ease;
}
.email:hover{
  border-color:rgba(33,79,85,0.42);
  transform:translateY(-1px);
}

.contact-form{ margin-top:1.1rem; }

.form-grid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:1rem;
}

.field label{
  display:inline-block;
  font-weight:600;
  margin-bottom:0.35rem;
}

.field input,
.field textarea,
.field select{
  width:100%;
  padding:0.72rem 0.85rem;
  border-radius:12px;
  border:1px solid rgba(30,42,45,0.18);
  background:rgba(255,255,255,0.75);
  color:var(--text);
  font:inherit;
  line-height:1.2;
  min-height:46px;
  box-shadow:0 10px 18px rgba(30,42,45,0.06);
}

.field textarea{
  min-height:auto;
  resize:vertical;
}

.field input:focus,
.field textarea:focus,
.field select:focus{
  outline:none;
  border-color:rgba(33,79,85,0.55);
  box-shadow:0 0 0 4px rgba(33,79,85,0.12), 0 10px 18px rgba(30,42,45,0.06);
}

/* Select: einheitlicher Look + Pfeil */
.field select{
  -webkit-appearance:none;
  -moz-appearance:none;
  appearance:none;
  padding-right:2.6rem;
  cursor:pointer;
  background-image:
    linear-gradient(180deg, rgba(255,255,255,0.75), rgba(255,255,255,0.75)),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%231E2A2D' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat:no-repeat, no-repeat;
  background-position: 0 0, right 0.85rem center;
  background-size: auto, 16px 16px;
}

.field select::-ms-expand{ display:none; }

.field--full{ grid-column:1 / -1; }

.field--hp{
  position:absolute;
  left:-9999px;
  width:1px;
  height:1px;
  overflow:hidden;
}

.check{
  display:flex;
  gap:0.65rem;
  align-items:flex-start;
}

.check input{
  margin-top:0.25rem;
  min-height:auto;
  width:auto;
  padding:0;
  border-radius:6px;
  box-shadow:none;
}

.note{
  margin-top:0.55rem;
  color:var(--muted);
  font-size:0.95rem;
}

@media (max-width: 700px){
  .form-grid{ grid-template-columns:1fr; }
}
/* End Kontakt: E-Mail & Formular */

/* Kontaktformular: Statusmeldungen */
.form-alert{
  border-radius: 14px;
  padding: 0.85rem 0.95rem;
  border: 1px solid rgba(30,42,45,0.14);
  box-shadow: 0 10px 18px rgba(30,42,45,0.06);
  margin-top: 1rem;
  margin-bottom: 0.75rem;
}
.form-alert a{
  text-decoration: underline;
  text-underline-offset: 0.14em;
}
.form-alert--success{
  background: rgba(167,183,165,0.25); /* salbei-ish */
}
.form-alert--error{
  background: rgba(198,168,107,0.16); /* gold-ish, warm */
}
/* Kontaktformular: Statusmeldungen – Anchor/Scroll Offset */
.form-alert{ scroll-margin-top: 130px; }
