/* Start custom CSS for html, class: .elementor-element-e6e7eaa *//* ── Design Tokens ───────────────────────────────────────────────── */
  :root {
    --color-stone:       #2c2926;   /* tiefes Warmgrau / Haupttext      */
    --color-slate:       #3d3a37;   /* Abschnitts-BG dunkel             */
    --color-parchment:   #f5f0e8;   /* Hintergrund hell                 */
    --color-parchment-2: #ede8de;   /* leicht abgesetzte Flächen        */
    --color-gold:        #9a7c4a;   /* Akzent / Highlights              */
    --color-gold-light:  #c4a06a;   /* hellerer Gold-Ton                */
    --color-line:        #d5cfc4;   /* Trennlinien                      */
    --color-white:       #ffffff;
    --color-cta-bg:      #2c2926;
    --color-cta-text:    #f5f0e8;

    --font-display: 'Playfair Display', Open Sans, serif;
    --font-body:    'Source Serif 4', Open Sans, serif;

    --radius: 3px;
    --max-w:  860px;
    --section-gap: 3.5rem;
  }

  /* ── Reset / Base ────────────────────────────────────────────────── */
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  .des-page {
    background: var(--color-parchment);
    color: var(--color-stone);
    font-family: var(--font-body);
    font-size: 1.05rem;
    line-height: 1.75;
    font-weight: 300;
  }

  .des-container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 1.5rem;
  }

  /* ── Ornament / Divider ──────────────────────────────────────────── */
  .des-ornament {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 2.5rem 0;
  }
  .des-ornament::before,
  .des-ornament::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--color-gold);
    opacity: .45;
  }
  .des-ornament-icon {
    font-size: .6rem;
    letter-spacing: .35em;
    text-transform: uppercase;
    color: var(--color-gold);
    font-family: var(--font-display);
    font-weight: 400;
  }

  /* ── Hero ────────────────────────────────────────────────────────── */
  .des-hero {
    background: var(--color-slate);
    padding: 4.5rem 1.5rem 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  .des-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
      repeating-linear-gradient(
        0deg,
        transparent,
        transparent 59px,
        rgba(154,124,74,.07) 60px
      );
    pointer-events: none;
  }
  .des-hero-eyebrow {
    display: inline-block;
    font-family: var(--font-body);
    font-size: .72rem;
    letter-spacing: .28em;
    text-transform: uppercase;
    color: var(--color-gold-light);
    margin-bottom: 1.4rem;
    font-weight: 400;
  }
  .des-hero h1 {
    font-family: var(--font-display);
    font-size: clamp(1.9rem, 4.5vw, 2.9rem);
    font-weight: 600;
    color: var(--color-parchment);
    line-height: 1.22;
    max-width: 680px;
    margin: 0 auto 1.4rem;
  }
  .des-hero h1 em {
    font-style: italic;
    color: var(--color-gold-light);
  }
  .des-hero-sub {
    font-size: 1rem;
    color: rgba(245,240,232,.72);
    max-width: 560px;
    margin: 0 auto 2.4rem;
    font-weight: 300;
    line-height: 1.7;
  }
  .des-hero-law {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-size: .78rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: rgba(196,160,106,.8);
    border: 1px solid rgba(196,160,106,.3);
    padding: .45rem 1rem;
    border-radius: 2px;
  }

  /* ── Lead-Section ────────────────────────────────────────────────── */
  .des-lead {
    padding: var(--section-gap) 1.5rem;
  }
  .des-lead-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem 3.5rem;
    align-items: start;
  }
  @media (max-width: 640px) {
    .des-lead-grid { grid-template-columns: 1fr; }
  }
  .des-lead-intro {
    grid-column: 1 / -1;
    font-size: 1.13rem;
    color: var(--color-stone);
    font-weight: 300;
    line-height: 1.8;
    max-width: 700px;
  }
  .des-lead-intro strong {
    font-weight: 600;
    color: var(--color-gold);
  }
  .des-lead-intro p + p { margin-top: 1rem; }

  /* ── Was regelt die Verfügung ────────────────────────────────────── */
  .des-topics {
    background: var(--color-parchment-2);
    padding: var(--section-gap) 1.5rem;
    border-top: 1px solid var(--color-line);
    border-bottom: 1px solid var(--color-line);
  }
  .des-topics-heading {
    font-family: var(--font-display);
    font-size: 1.55rem;
    font-weight: 600;
    color: var(--color-stone);
    margin-bottom: 2rem;
    text-align: center;
  }
  .des-topics-heading small {
    display: block;
    font-family: var(--font-body);
    font-size: .72rem;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--color-gold);
    font-style: normal;
    font-weight: 400;
    margin-bottom: .5rem;
  }

  .des-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1.25rem;
  }
  .des-card {
    background: var(--color-white);
    border: 1px solid var(--color-line);
    border-radius: var(--radius);
    padding: 1.4rem 1.3rem;
    position: relative;
  }
  .des-card-num {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 600;
    color: var(--color-gold);
    opacity: .25;
    line-height: 1;
    margin-bottom: .3rem;
  }
  .des-card h3 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-stone);
    margin-bottom: .5rem;
    line-height: 1.3;
  }
  .des-card p {
    font-size: .87rem;
    color: #5a5550;
    line-height: 1.6;
    font-weight: 300;
  }

  /* ── Warum jetzt ─────────────────────────────────────────────────── */
  .des-why {
    padding: var(--section-gap) 1.5rem;
  }
  .des-why-inner {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 3rem;
    align-items: center;
  }
  @media (max-width: 640px) {
    .des-why-inner { grid-template-columns: 1fr; }
  }
  .des-why-label {
    font-family: var(--font-body);
    font-size: .72rem;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--color-gold);
    font-weight: 400;
    margin-bottom: .8rem;
  }
  .des-why h2 {
    font-family: var(--font-display);
    font-size: clamp(1.4rem, 3vw, 1.9rem);
    font-weight: 600;
    color: var(--color-stone);
    line-height: 1.25;
  }
  .des-why h2 em {
    font-style: italic;
    color: var(--color-gold);
  }
  .des-why-body p {
    margin-bottom: 1rem;
    font-size: 1rem;
    font-weight: 300;
    color: #3d3a37;
  }
  .des-quote {
    border-left: 3px solid var(--color-gold);
    padding: .9rem 1.2rem;
    background: var(--color-parchment-2);
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1.05rem;
    color: var(--color-stone);
    margin: 1.5rem 0;
    line-height: 1.55;
  }

  /* ── Aufbewahrung-Tipp ───────────────────────────────────────────── */
  .des-tip {
    background: var(--color-stone);
    color: var(--color-parchment);
    padding: var(--section-gap) 1.5rem;
  }
  .des-tip-inner {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    max-width: var(--max-w);
    margin: 0 auto;
  }
  @media (max-width: 560px) {
    .des-tip-inner { flex-direction: column; }
  }
  .des-tip-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border: 1.5px solid var(--color-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: .2rem;
  }
  .des-tip-icon svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: var(--color-gold);
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
  }
  .des-tip-label {
    font-size: .72rem;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--color-gold-light);
    font-weight: 400;
    margin-bottom: .5rem;
  }
  .des-tip-content h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-parchment);
    margin-bottom: .7rem;
  }
  .des-tip-content p {
    font-size: .95rem;
    color: rgba(245,240,232,.8);
    line-height: 1.72;
    font-weight: 300;
  }
  .des-tip-content p + p { margin-top: .7rem; }

  /* ── CTA-Block ───────────────────────────────────────────────────── */
  .des-cta {
    padding: var(--section-gap) 1.5rem calc(var(--section-gap) + 1rem);
    text-align: center;
  }
  .des-cta-heading {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3.5vw, 2.1rem);
    font-weight: 600;
    color: var(--color-stone);
    margin-bottom: .8rem;
  }
  .des-cta-sub {
    font-size: 1rem;
    color: #5a5550;
    font-weight: 300;
    max-width: 500px;
    margin: 0 auto 2.4rem;
  }

  .des-cta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    max-width: 640px;
    margin: 0 auto 2rem;
  }
  @media (max-width: 520px) {
    .des-cta-grid { grid-template-columns: 1fr; }
  }

  /* CTA 1 — Download */
  .des-btn-download {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .75rem;
    background: var(--color-gold);
    color: var(--color-white);
    text-decoration: none;
    font-family: var(--font-body);
    font-size: .92rem;
    font-weight: 400;
    letter-spacing: .06em;
    padding: 1.05rem 1.5rem;
    border-radius: var(--radius);
    transition: background .2s, transform .15s;
    line-height: 1.3;
    text-align: left;
  }
  .des-btn-download:hover {
    background: #7d6438;
    transform: translateY(-1px);
  }
  .des-btn-download svg {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
  }
  .des-btn-download span strong {
    display: block;
    font-size: 1rem;
  }
  .des-btn-download span em {
    font-style: normal;
    font-size: .78rem;
    opacity: .8;
  }

  /* CTA 2 – Kontakt-Panel */
  .des-contact-panel {
    border: 1px solid var(--color-line);
    border-radius: var(--radius);
    overflow: hidden;
    text-align: left;
  }
  .des-contact-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: .95rem 1.2rem;
    text-decoration: none;
    color: var(--color-stone);
    font-size: .93rem;
    transition: background .18s;
  }
  .des-contact-row:hover { background: var(--color-parchment-2); }
  .des-contact-row + .des-contact-row {
    border-top: 1px solid var(--color-line);
  }
  .des-contact-row svg {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    stroke: var(--color-gold);
    fill: none;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
  }
  .des-contact-row span strong {
    display: block;
    font-size: .78rem;
    font-weight: 400;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: .1rem;
  }
  .des-contact-row span em {
    font-style: normal;
    font-size: .95rem;
  }

  .des-cta-note {
    font-size: .82rem;
    color: #8a8580;
    line-height: 1.6;
    max-width: 480px;
    margin: 0 auto;
  }
  .des-cta-note a {
    color: var(--color-gold);
    text-decoration: underline;
    text-underline-offset: 3px;
  }

  /* ── Utilities ───────────────────────────────────────────────────── */
  .text-center { text-align: center; }/* End custom CSS */