/* =========================================================================
   WALDSPIELGRUPPE – STYLESHEET
   Naturnahes, warmes Design für Eltern.
   ========================================================================= */

/* ----- Designvariablen (Farben hier zentral anpassbar) ----- */
:root {
    --tanne:      #2f4734;   /* dunkles Tannengrün  */
    --moos:       #4f7350;   /* mittleres Moosgrün  */
    --blatt:      #7fa86a;   /* helles Blattgrün    */
    --rinde:      #7a5c3e;   /* Baumrinde / Braun   */
    --sonne:      #e2a23b;   /* warmes Sonnengelb   */
    --beere:      #b6533f;   /* Beerenrot (Akzent)  */

    --papier:     #f7f1e3;   /* warmer Cremehintergrund */
    --papier-2:   #efe6d2;   /* etwas dunklere Variante */
    --tinte:      #2a2620;   /* Textfarbe (warmes Dunkelbraun) */
    --tinte-soft: #5a5246;

    --schatten:   0 14px 40px -18px rgba(47, 71, 52, 0.45);
    --radius:     18px;

    --font-display: 'Fraunces', Georgia, 'Times New Roman', serif;
    --font-body:    'Nunito', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* ----- Grundlagen ----- */
* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; scroll-padding-top: 90px; }

body {
    font-family: var(--font-body);
    color: var(--tinte);
    background-color: var(--papier);
    /* feine organische Hintergrundtextur */
    background-image:
        radial-gradient(circle at 12% 18%, rgba(127, 168, 106, 0.10), transparent 45%),
        radial-gradient(circle at 88% 8%,  rgba(226, 162, 59, 0.10), transparent 40%);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

.container { width: min(1120px, 90vw); margin-inline: auto; }
.container.narrow { width: min(720px, 90vw); }

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.12; color: var(--tanne); }
a { color: var(--moos); text-decoration: none; transition: color .2s; }
a:hover { color: var(--beere); }
em { font-style: italic; color: var(--moos); }

/* ----- Buttons ----- */
.btn {
    display: inline-block;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 1rem;
    padding: .85rem 1.7rem;
    border-radius: 999px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: transform .18s ease, box-shadow .18s ease, background .2s;
}
.btn:active { transform: translateY(1px); }
.btn-primary {
    background: var(--moos);
    color: #fff;
    box-shadow: var(--schatten);
}
.btn-primary:hover { background: var(--tanne); color: #fff; transform: translateY(-2px); }
.btn-ghost {
    background: transparent;
    color: var(--tanne);
    border-color: var(--moos);
}
.btn-ghost:hover { background: var(--moos); color: #fff; }
.btn-block { width: 100%; text-align: center; padding-block: 1rem; }

/* ----- Kopfzeile ----- */
.site-header {
    position: sticky; top: 0; z-index: 100;
    background: rgba(247, 241, 227, 0.82);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid transparent;
    transition: border-color .3s, box-shadow .3s, background .3s;
}
.site-header.scrolled {
    border-color: rgba(47, 71, 52, 0.12);
    box-shadow: 0 6px 20px -16px rgba(47, 71, 52, 0.6);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; padding-block: .9rem; }
.logo { display: flex; align-items: center; gap: .55rem; font-family: var(--font-display); font-weight: 600; font-size: 1.2rem; color: var(--tanne); }
.logo:hover { color: var(--tanne); }
.logo-mark-img { height: 34px; width: auto; display: block; }

.main-nav { display: flex; align-items: center; gap: 1.7rem; }
.main-nav a { color: var(--tinte); font-weight: 600; font-size: .98rem; }
.main-nav a:hover { color: var(--moos); }
.main-nav .nav-cta {
    background: var(--sonne); color: var(--tinte);
    padding: .5rem 1.2rem; border-radius: 999px;
}
.main-nav .nav-cta:hover { background: var(--beere); color: #fff; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 6px; }
.nav-toggle span { width: 26px; height: 3px; background: var(--tanne); border-radius: 3px; transition: .3s; }

/* ----- Hero ----- */
.hero {
    position: relative;
    padding: clamp(4rem, 11vw, 8rem) 0 clamp(3.5rem, 8vw, 6rem);
    min-height: 72vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: var(--papier);
    /* Das Hintergrundbild + die weisse Maske werden in index.php inline gesetzt
       (background-image), damit der relative Bildpfad korrekt aufgelöst wird.
       Stärke der Maske: $config['bild_hero_transparenz'] in includes/config.php. */
    background-size: cover;
    background-position: center 50%;
    background-repeat: no-repeat;
}
.hero-inner { position: relative; max-width: 760px; }
.hero-eyebrow {
    display: inline-block;
    font-weight: 700; letter-spacing: .04em; text-transform: uppercase; font-size: .82rem;
    color: var(--rinde); background: var(--papier-2);
    padding: .4rem 1rem; border-radius: 999px; margin-bottom: 1.4rem;
}
.hero-title { font-size: clamp(2.6rem, 7vw, 4.6rem); letter-spacing: -.01em; }
.hero-lead { font-size: clamp(1.1rem, 2.2vw, 1.35rem); color: var(--tinte-soft); margin: 1.5rem 0 2.2rem; max-width: 620px; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ----- Abschnitte ----- */
.section { padding: clamp(3.5rem, 8vw, 6rem) 0; }
.section-alt { background: var(--papier-2); }
.section-head { max-width: 680px; margin-bottom: 3rem; }
.kicker { display: inline-block; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; font-size: .8rem; color: var(--rinde); margin-bottom: .6rem; }
.section-head h2 { font-size: clamp(1.9rem, 4vw, 2.8rem); }
.section-intro { margin-top: 1rem; font-size: 1.1rem; color: var(--tinte-soft); }

/* ----- Karten (Angebot) ----- */
.card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 1.6rem; }
.card {
    background: var(--papier);
    border: 1px solid rgba(47,71,52,0.10);
    border-radius: var(--radius);
    padding: 2rem 1.7rem;
    text-align: center;
    transition: transform .25s ease, box-shadow .25s ease;
}
.section-alt .card { background: #fff; }
.card:hover { transform: translateY(-6px); box-shadow: var(--schatten); }
/* Fläche für die handgemalte Illustration (PNG mit transparentem Hintergrund) */
.card-illu { width: 120px; height: 120px; margin: 0 auto 1rem; display: flex; align-items: center; justify-content: center; }
.card-illu .bild { width: 100%; height: 100%; object-fit: contain; }
.card-illu .bild-platzhalter { border-radius: 14px; font-size: .72rem; padding: .5rem; }
.card h3 { font-size: 1.25rem; margin-bottom: .5rem; }
.card p { color: var(--tinte-soft); }

/* ----- Über uns / Team ----- */
.team-grid {
    display: grid; gap: 2.5rem;
    max-width: 820px; margin-inline: auto;
}
.team-card {
    display: grid; grid-template-columns: 160px 1fr; gap: 2rem;
    align-items: start; text-align: left;
}
.team-foto {
    width: 160px; height: 160px; border-radius: 50%; overflow: hidden;
    box-shadow: var(--schatten); background: var(--papier-2);
}
.team-foto .bild { width: 100%; height: 100%; object-fit: cover; }
.team-foto .bild-platzhalter { font-size: .62rem; padding: .4rem; }
.team-info h3 { font-size: 1.4rem; margin-bottom: .1rem; }
.team-rolle {
    color: var(--rinde); font-weight: 700; font-size: .78rem;
    text-transform: uppercase; letter-spacing: .06em; margin: 0;
}
.team-meta { color: var(--moos); font-weight: 600; font-size: .95rem; margin: .25rem 0 1rem; }
.team-text { color: var(--tinte-soft); margin-bottom: .8rem; }
.team-text:last-child { margin-bottom: 0; }

/* ----- Zwei-Spalten (Konzept) ----- */
.two-col { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 3.5rem; align-items: center; }
.two-col-text h2 { font-size: clamp(1.9rem, 4vw, 2.8rem); margin-bottom: 1rem; }
.two-col-text p { color: var(--tinte-soft); margin-bottom: 1rem; }
.check-list { list-style: none; margin-top: 1.4rem; display: grid; gap: .7rem; }
.check-list li { padding-left: 2rem; position: relative; font-weight: 600; min-height: 1.3rem; }
.check-list li::before {
    content: ""; position: absolute; left: 0; top: .1rem;
    width: 1.3rem; height: 1.3rem;
    background-image: var(--blatt-icon);
    background-size: contain; background-repeat: no-repeat; background-position: center;
}
.figure-frame {
    aspect-ratio: 4/5;
    border-radius: var(--radius);
    background: var(--papier-2);
    box-shadow: var(--schatten);
    overflow: hidden;
}
.figure-frame .bild { width: 100%; height: 100%; object-fit: cover; display: block; }
.two-col-figure figcaption { margin-top: .9rem; font-style: italic; color: var(--tinte-soft); font-size: .95rem; }

/* ----- Bilder & Platzhalter (global) ----- */
.bild { display: block; }
.bild-platzhalter {
    display: flex; align-items: center; justify-content: center; text-align: center;
    width: 100%; height: 100%;
    background: linear-gradient(160deg, var(--blatt), var(--moos));
    color: rgba(255, 255, 255, 0.92);
    font-family: var(--font-display); font-size: 1.05rem;
    padding: 1rem;
}
.bild-platzhalter-text small {
    display: block; margin-top: .4rem;
    font-family: var(--font-body); font-weight: 400; font-size: .72rem;
    opacity: .8; word-break: break-all;
}

/* ----- Tagesablauf (Stationen + Orientierungspunkte) ----- */
.ablauf { list-style: none; max-width: 680px; margin-inline: auto; }
.ablauf > li { display: grid; grid-template-columns: 4.5rem 1fr; gap: 1.4rem; }
/* Punkte haben keine Zeit-Angabe -> Inhalt trotzdem in die breite Spalte 2,
   damit der Text normal fliesst und mit den Stationen bündig ist. */
.ablauf-punkt .ablauf-inhalt { grid-column: 2; }
.ablauf-zeit {
    font-family: var(--font-display); font-weight: 600;
    color: var(--moos); font-size: 1.1rem; text-align: right; padding-top: .05rem;
}
.ablauf-inhalt {
    position: relative;
    border-left: 2px solid rgba(79, 115, 80, 0.25);
    padding: 0 0 1.7rem 1.7rem;
}
.ablauf > li:last-child .ablauf-inhalt { border-left-color: transparent; padding-bottom: 0; }
/* Markierungspunkt */
.ablauf-inhalt::before {
    content: ""; position: absolute; top: .35rem; border-radius: 50%;
}
.ablauf-stop .ablauf-inhalt::before {
    left: -8.5px; width: 15px; height: 15px;
    background: var(--sonne); border: 3px solid var(--papier);
}
.ablauf-punkt .ablauf-inhalt::before {
    left: -5.5px; width: 9px; height: 9px; background: var(--blatt);
}
.ablauf-stop .ablauf-inhalt h3 { font-size: 1.25rem; margin-bottom: .15rem; }
.ablauf-punkt .ablauf-inhalt h4 {
    font-family: var(--font-display); font-weight: 500; font-size: 1.05rem;
    color: var(--tanne); margin-bottom: .1rem;
}
.ablauf-inhalt p { color: var(--tinte-soft); }

/* ----- Bilder-Karussell ----- */
.carousel {
    position: relative;
    margin-top: 3.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.carousel-stage {
    position: relative;
    width: 100%;
    height: clamp(240px, 40vw, 440px);
    overflow: hidden;
}
.carousel-slide {
    position: absolute;
    top: 50%;
    left: 50%;
    width: min(62%, 560px);
    margin: 0;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--schatten);
    transform: translate(-50%, -50%) scale(.55);
    opacity: 0;
    pointer-events: none;
    transition: transform .55s cubic-bezier(.22, .61, .36, 1),
                opacity .55s ease, filter .55s ease;
}
.carousel-slide .bild,
.carousel-slide .bild-platzhalter {
    width: 100%;
    aspect-ratio: 3 / 2;
    object-fit: cover;
}
/* Zentrales Bild */
.carousel-slide.is-active {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1; z-index: 3;
}
/* Nachbarn links/rechts: leicht ausgegraut und klickbar */
.carousel-slide.is-prev,
.carousel-slide.is-next {
    opacity: 1; z-index: 2;
    filter: grayscale(.7) brightness(.82);
    pointer-events: auto; cursor: pointer;
}
.carousel-slide.is-prev { transform: translate(-118%, -50%) scale(.8); }
.carousel-slide.is-next { transform: translate(18%, -50%) scale(.8); }
.carousel-slide.is-prev:hover,
.carousel-slide.is-next:hover { filter: grayscale(.3) brightness(.92); }
.carousel-slide.is-hidden {
    transform: translate(-50%, -50%) scale(.5);
    opacity: 0; z-index: 1;
}
/* Pfeile */
.carousel-arrow {
    position: absolute; top: clamp(120px, 20vw, 220px);
    z-index: 5;
    width: 46px; height: 46px; border-radius: 50%;
    border: 0; cursor: pointer;
    background: var(--papier); color: var(--tanne);
    font-size: 1.6rem; line-height: 1; font-family: var(--font-body);
    box-shadow: var(--schatten);
    transition: background .2s, color .2s, transform .2s;
}
.carousel-arrow:hover { background: var(--moos); color: #fff; transform: scale(1.08); }
.carousel-arrow-prev { left: 0; }
.carousel-arrow-next { right: 0; }
/* Punkte */
.carousel-dots { display: flex; gap: .55rem; margin-top: 1.6rem; }
.carousel-dot {
    width: 11px; height: 11px; padding: 0; border: 0; border-radius: 50%;
    background: rgba(47, 71, 52, 0.22); cursor: pointer; transition: background .2s, transform .2s;
}
.carousel-dot:hover { background: var(--blatt); }
.carousel-dot.is-active { background: var(--moos); transform: scale(1.25); }

/* ----- Infos & Kosten (Infotafel) ----- */
.info-sheet {
    max-width: 840px;
    margin-inline: auto;
    background: #fff;
    border-radius: var(--radius);
    box-shadow: var(--schatten);
    padding: clamp(1rem, 3vw, 1.6rem) clamp(1.3rem, 4vw, 2.6rem);
}
.info-row {
    display: grid;
    grid-template-columns: 230px 1fr;
    gap: 1.5rem;
    align-items: baseline;
    padding: 1.15rem 0;
    border-bottom: 1px solid rgba(47, 71, 52, 0.10);
}
.info-row:last-child { border-bottom: 0; }
.info-sheet dt {
    margin: 0;
    font-family: var(--font-display); font-weight: 600;
    color: var(--tanne); font-size: 1.12rem;
    display: flex; align-items: center; gap: .6rem;
}
.info-ico-img { width: 1.6rem; height: 1.6rem; object-fit: contain; flex-shrink: 0; }

/* ----- PDF-Download-Buttons ----- */
.downloads {
    display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center;
    max-width: 840px; margin: 2.6rem auto 0;
}
.btn-download {
    display: inline-flex; align-items: center; gap: .6rem;
    background: #fff; color: var(--tanne);
    font-family: var(--font-body); font-weight: 700; font-size: .98rem;
    padding: .8rem 1.4rem; border-radius: 999px;
    border: 1.5px solid rgba(47, 71, 52, 0.18);
    box-shadow: 0 6px 18px -14px rgba(47, 71, 52, 0.6);
    transition: transform .18s ease, box-shadow .18s ease, border-color .2s, color .2s;
}
.btn-download:hover {
    transform: translateY(-2px); color: var(--moos);
    border-color: var(--moos); box-shadow: var(--schatten);
}
.btn-download svg { width: 18px; height: 18px; flex-shrink: 0; }

/* ----- Merkblätter auf der Anmeldeseite ----- */
.merkblaetter {
    background: var(--papier-2); border: 1px solid rgba(47, 71, 52, 0.12);
    border-radius: var(--radius); padding: 1.6rem 1.8rem; margin-bottom: 2.4rem;
}
.merkblaetter h3 { font-size: 1.25rem; margin-bottom: .3rem; }
.merkblaetter p { color: var(--tinte-soft); margin-bottom: 1rem; }
.downloads.downloads-start { justify-content: flex-start; margin-top: 0; }

/* ----- Treffpunkt: Route planen ----- */
.karte-aktion { text-align: center; margin-top: 2.2rem; }
.btn-route { display: inline-flex; align-items: center; gap: .55rem; }
.btn-route svg { width: 19px; height: 19px; flex-shrink: 0; }

/* ----- Rechtstexte (Datenschutz / Impressum) ----- */
.rechtstext h1 { font-size: clamp(2rem, 4vw, 2.8rem); margin-bottom: 1.4rem; }
.rechtstext h2 { font-size: 1.3rem; margin: 2.2rem 0 .6rem; }
.rechtstext p, .rechtstext li { color: var(--tinte-soft); }
.rechtstext p { margin-bottom: 1rem; }
.rechtstext ul { margin: 0 0 1rem 1.3rem; display: grid; gap: .4rem; }
.rechtstext a { word-break: break-word; }
.rechtstext .platzhalter {
    background: #fbeec9; color: var(--rinde);
    padding: 0 .25rem; border-radius: 3px; font-weight: 600;
}
.rechtstext .stand { margin-top: 2.2rem; font-size: .9rem; color: var(--tinte-soft); }
.info-sheet dd { margin: 0; color: var(--tinte-soft); }

/* ----- Formular ----- */
.alert { padding: 1rem 1.3rem; border-radius: 12px; margin-bottom: 1.8rem; font-weight: 600; }
.alert-success { background: #e4f0df; color: var(--tanne); border: 1px solid var(--blatt); }
.alert-error   { background: #f6e2dd; color: var(--beere); border: 1px solid var(--beere); }

.form { background: #fff; padding: clamp(1.6rem, 4vw, 2.6rem); border-radius: var(--radius); box-shadow: var(--schatten); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.form-field { margin-bottom: 1.2rem; display: flex; flex-direction: column; }
.form-field label { font-weight: 700; font-size: .92rem; margin-bottom: .4rem; color: var(--tinte); }
.form-field input,
.form-field select,
.form-field textarea {
    font-family: var(--font-body); font-size: 1rem;
    padding: .8rem .9rem;
    border: 1.5px solid rgba(47,71,52,0.2);
    border-radius: 12px;
    background: var(--papier);
    color: var(--tinte);
    transition: border-color .2s, box-shadow .2s;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    outline: none; border-color: var(--moos);
    box-shadow: 0 0 0 3px rgba(79,115,80,0.18);
}
.form-check { flex-direction: row; align-items: flex-start; gap: .6rem; }
.form-check input { width: 1.1rem; height: 1.1rem; margin-top: .25rem; flex-shrink: 0; }
.form-check label { font-weight: 500; font-size: .9rem; color: var(--tinte-soft); }
.form-note { font-size: .85rem; color: var(--tinte-soft); margin-top: .8rem; text-align: center; }

/* Formular-Abschnittstitel (lange Anmeldung) */
.form-gruppe {
    font-family: var(--font-display); font-size: 1.15rem; color: var(--tanne);
    margin: 1.8rem 0 1rem; padding-bottom: .4rem;
    border-bottom: 1px solid rgba(47, 71, 52, 0.12);
}
.form-gruppe:first-of-type { margin-top: 0; }
.check-row { display: flex; flex-wrap: wrap; gap: 1.5rem; padding-top: .3rem; }
.check-inline { display: flex; align-items: center; gap: .45rem; font-weight: 500; }
.check-inline input { width: 1.1rem; height: 1.1rem; }
.form-hinweis { text-align: center; margin-top: 1.4rem; color: var(--tinte-soft); font-size: .95rem; }

/* Honeypot verstecken */
.hp-field { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }

/* ----- Fusszeile ----- */
.site-footer { background: var(--tanne); color: rgba(255,255,255,0.82); padding: 3.5rem 0 1.5rem; margin-top: 2rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 2rem; }
.footer-title { color: #fff; font-size: 1.3rem; margin-bottom: .6rem; }
.footer-col h4 { color: var(--sonne); font-family: var(--font-body); font-size: .85rem; text-transform: uppercase; letter-spacing: .08em; margin-bottom: .7rem; }
.footer-col p, .footer-col a { color: rgba(255,255,255,0.82); }
.footer-col a:hover { color: var(--sonne); }
.footer-nav { display: flex; flex-direction: column; gap: .4rem; }
.footer-bottom {
    display: flex; justify-content: space-between; flex-wrap: wrap; gap: .8rem;
    margin-top: 2.5rem; padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.15);
    font-size: .85rem; color: rgba(255,255,255,0.6);
}
.footer-bottom a { color: rgba(255,255,255,0.6); }

/* ----- Reveal-Animation ----- */
/* Inhalte sind IMMER sichtbar (auch ohne JavaScript). Die Einblend-Animation
   ist nur eine Zugabe und greift nur, wenn JavaScript aktiv ist (html.js). */
.reveal { opacity: 1; transform: none; }
.js .reveal { opacity: 0; transform: translateY(22px); animation: reveal-in .7s ease forwards; }
@keyframes reveal-in { to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) {
    .js .reveal { animation: none; opacity: 1; transform: none; }
}

/* ----- Responsive ----- */
@media (max-width: 860px) {
    .two-col { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .carousel-slide { width: 72%; }
    .carousel-slide.is-prev { transform: translate(-108%, -50%) scale(.78); }
    .carousel-slide.is-next { transform: translate(8%, -50%) scale(.78); }
}
@media (max-width: 680px) {
    .nav-toggle { display: flex; }
    .main-nav {
        position: fixed; inset: 64px 0 auto 0;
        background: var(--papier); flex-direction: column; align-items: stretch;
        gap: 0; padding: 1rem 5vw 2rem;
        box-shadow: var(--schatten);
        transform: translateY(-120%); transition: transform .3s ease;
    }
    .main-nav.open { transform: translateY(0); }
    .main-nav a { padding: .9rem 0; border-bottom: 1px solid rgba(47,71,52,0.08); }
    .main-nav .nav-cta { text-align: center; margin-top: .8rem; }
    .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .ablauf > li { grid-template-columns: 3.4rem 1fr; gap: 1rem; }
    .ablauf-zeit { font-size: 1rem; }

    /* Karussell: Nachbarn nur noch angedeutet, Pfeile übernehmen die Navigation */
    .carousel-slide { width: 80%; }
    .carousel-slide.is-prev { transform: translate(-95%, -50%) scale(.7); }
    .carousel-slide.is-next { transform: translate(25%, -50%) scale(.7); }
    .carousel-arrow { width: 40px; height: 40px; font-size: 1.4rem; }

    /* Infotafel: Begriff über Beschreibung statt nebeneinander */
    .info-row { grid-template-columns: 1fr; gap: .35rem; }

    /* Team: Porträt oben, Text darunter */
    .team-card { grid-template-columns: 1fr; gap: 1.1rem; }
    .team-foto { width: 130px; height: 130px; }
}

/* ----- Kontakt-Section: Deko + Anmeldungs-Aufruf ----- */
.kontakt { position: relative; overflow: hidden; }

/* Dezente, handgemalte Illustrationen in den oberen Ecken.
   Rein dekorativ – liegen hinter dem Inhalt und stören die Lesbarkeit nicht. */
.kontakt-deko {
    position: absolute; top: clamp(1rem, 4vw, 2.6rem);
    width: clamp(90px, 12vw, 150px); height: auto;
    opacity: .85; pointer-events: none; z-index: 0;
}
.kontakt-deko-links  { left: clamp(.5rem, 3vw, 3rem); transform: rotate(-6deg); }
.kontakt-deko-rechts { right: clamp(.5rem, 3vw, 3rem); transform: rotate(5deg); }
.kontakt .container { position: relative; z-index: 1; }

/* Abgesetzter Block unter dem Formular: direkter Weg zur verbindlichen Anmeldung */
.anmeldung-cta {
    margin-top: 2.4rem;
    background: var(--papier-2);
    border: 1px solid rgba(47, 71, 52, 0.12);
    border-radius: var(--radius);
    padding: clamp(1.4rem, 4vw, 2rem);
    text-align: center;
    box-shadow: 0 6px 18px -16px rgba(47, 71, 52, 0.6);
}
.anmeldung-cta p {
    color: var(--tinte-soft);
    margin-bottom: 1.1rem;
    font-size: 1.02rem;
}

@media (max-width: 680px) {
    /* Auf kleinen Bildschirmen Deko ausblenden, damit es ruhig bleibt */
    .kontakt-deko { display: none; }
}
