/* ==========================================================================
   CareMove – Eigenentwurf 2026
   Markenfarben: Magenta #EA00D9 · Rosa #f8b2f3 · Grau #ebebeb
                 Off-White #FAF9F6 · Dunkel #181716
   Typografie:   Manrope (Titel) · Inter (Text)
   Signatur:     die gestrichelte Magenta-Route (Weg-Motiv)
   ========================================================================== */

:root {
    --magenta: #EA00D9;
    --magenta-dark: #C000B2;
    --pink: #f8b2f3;
    --pink-soft: #FDF1FC;
    --ink: #181716;
    --ink-soft: #4c4946;
    --gray: #ebebeb;
    --bg: #FAF9F6;
    --white: #ffffff;

    --font-display: 'Manrope', 'Inter', sans-serif;
    --font-body: 'Inter', sans-serif;

    --radius-lg: 24px;
    --radius: 16px;
    --radius-sm: 10px;
    --shadow-sm: 0 1px 2px rgba(24,23,22,.05), 0 6px 18px rgba(24,23,22,.06);
    --shadow-md: 0 10px 32px rgba(24,23,22,.12);
    --shadow-pink: 0 10px 26px rgba(234,0,217,.22);

    --nav-h: 80px;
    --wrap: 1160px;
}

/* ---------- Basis ---------- */

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

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    font-size: 1.0625rem;
    line-height: 1.7;
    color: var(--ink);
    background: var(--bg);
    padding-top: var(--nav-h);
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
    font-family: var(--font-display);
    color: var(--ink);
    line-height: 1.15;
    letter-spacing: -0.015em;
}

h1 { font-size: clamp(2.4rem, 5vw, 3.6rem); font-weight: 800; }
h2 { font-size: clamp(1.7rem, 3vw, 2.3rem); font-weight: 800; }
h3 { font-size: 1.2rem; font-weight: 700; }

p, li { color: var(--ink-soft); }
b { color: var(--ink); }

a { color: var(--magenta); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--magenta-dark); }

img { max-width: 100%; display: inline-block; }

::selection { background: var(--pink); color: var(--ink); }

:focus-visible {
    outline: 3px solid var(--magenta);
    outline-offset: 2px;
    border-radius: 4px;
}

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

/* ---------- Layout-Bausteine ---------- */

.wrap {
    max-width: var(--wrap);
    margin: 0 auto;
    padding: 0 24px;
}

.wrap-narrow { max-width: 860px; }

.section { padding: 96px 0; }

.section-tint {
    background:
        radial-gradient(ellipse at 100% 0%, rgba(248,178,243,.18), transparent 50%),
        var(--pink-soft);
}

.section-dark { background: var(--ink); }

.section-head {
    max-width: 760px;
    margin: 0 auto 56px;
    text-align: center;
}

.section-head h2 { margin-bottom: 16px; }

.section-lead { font-size: 1.1rem; }

.kicker {
    display: inline-block;
    font-family: var(--font-display);
    font-size: .82rem;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--magenta);
    margin-bottom: 14px;
}

/* Einblenden beim Scrollen */
.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .6s ease, transform .6s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ---------- Buttons ---------- */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.02rem;
    padding: 15px 32px;
    border-radius: 99px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: background-color .2s ease, color .2s ease, transform .2s ease,
                box-shadow .2s ease, border-color .2s ease;
}

.btn-primary {
    background: var(--magenta);
    color: #fff;
    box-shadow: var(--shadow-pink);
}

.btn-primary:hover {
    background: var(--magenta-dark);
    color: #fff;
    transform: translateY(-2px);
}

.btn-ghost {
    background: var(--white);
    color: var(--ink);
    border-color: var(--gray);
}

.btn-ghost img { width: 24px; height: 24px; object-fit: contain; }

.btn-ghost:hover {
    border-color: var(--pink);
    color: var(--ink);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.btn-outline {
    background: transparent;
    color: var(--magenta);
    border-color: var(--magenta);
}

.btn-outline:hover {
    background: var(--magenta);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: var(--shadow-pink);
}

/* ==========================================================================
   Header
   ========================================================================== */

.topbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    height: var(--nav-h);
    background: rgba(255,255,255,.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--gray);
    z-index: 1000;
}

.topbar-inner {
    max-width: var(--wrap);
    height: 100%;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand img { height: 42px; width: auto; display: block; }

.mainnav {
    display: flex;
    align-items: center;
    gap: 4px;
}

.mainnav a {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: .98rem;
    color: var(--ink);
    padding: 10px 14px;
    border-radius: 99px;
    transition: color .2s ease, background-color .2s ease;
}

.mainnav a:hover {
    color: var(--magenta);
    background: var(--pink-soft);
}

.mainnav .nav-cta {
    margin-left: 12px;
    background: var(--magenta);
    color: #fff;
    padding: 11px 24px;
    box-shadow: var(--shadow-pink);
}

.mainnav .nav-cta:hover {
    background: var(--magenta-dark);
    color: #fff;
}

.navtoggle, .burger { display: none; }

/* Anker-Offset */
section[id] { scroll-margin-top: calc(var(--nav-h) + 12px); }

/* ---------- Mobile Navigation ---------- */

@media (max-width: 900px) {

    :root { --nav-h: 68px; }

    .burger {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
        cursor: pointer;
        order: 3;
    }

    .burger span,
    .burger span::before,
    .burger span::after {
        content: '';
        display: block;
        width: 24px;
        height: 2.5px;
        border-radius: 4px;
        background: var(--ink);
        position: relative;
        transition: transform .3s ease, opacity .3s ease;
    }

    .burger span::before,
    .burger span::after {
        position: absolute;
        left: 0;
    }

    .burger span::before { top: -8px; }
    .burger span::after  { top: 8px; }

    .navtoggle:checked ~ .burger span { transform: rotate(45deg); }
    .navtoggle:checked ~ .burger span::before { top: 0; transform: rotate(90deg); }
    .navtoggle:checked ~ .burger span::after { opacity: 0; }

    .mainnav {
        position: fixed;
        top: var(--nav-h);
        left: 0;
        right: 0;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        background: var(--white);
        border-bottom: 1px solid var(--gray);
        box-shadow: var(--shadow-md);
        padding: 12px 20px 22px;
        transform: translateY(-130%);
        transition: transform .3s ease;
        z-index: 999; /* unter der Topbar (1000), über dem Seiteninhalt */
    }

    .navtoggle:checked ~ .mainnav { transform: translateY(0); }

    .mainnav a {
        padding: 15px 8px;
        border-radius: 0;
        border-bottom: 1px solid var(--gray);
        font-size: 1.05rem;
    }

    .mainnav a:hover { background: transparent; }

    .mainnav .nav-cta {
        margin: 18px 0 0;
        border-radius: 99px;
        border-bottom: none;
        text-align: center;
        padding: 14px;
    }
}

/* ==========================================================================
   Hero
   ========================================================================== */

.hero {
    position: relative;
    background: var(--bg);
    padding: 72px 0 0;
    overflow: hidden;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 56px;
    align-items: center;
}

.hero-copy h1 { margin-bottom: 22px; }

.hero-copy h1 em {
    font-style: normal;
    color: var(--magenta);
    position: relative;
}

/* handgezeichneter Unterstrich unter "wichtig" */
.hero-copy h1 em::after {
    content: "";
    position: absolute;
    left: 0; right: 0;
    bottom: -6px;
    height: 8px;
    background: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 10' preserveAspectRatio='none'%3e%3cpath d='M2 7 C 30 2, 60 9, 118 4' stroke='%23f8b2f3' stroke-width='4' fill='none' stroke-linecap='round'/%3e%3c/svg%3e") no-repeat center / 100% 100%;
}

.lead {
    font-size: 1.2rem;
    max-width: 480px;
    margin-bottom: 32px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 20px;
}

.hero-note {
    font-size: .92rem;
    color: var(--ink-soft);
}

.hero-media { position: relative; }

/* Rosa Fläche hinter dem Foto – greift die Logo-Schwünge auf */
.hero-media::before {
    content: "";
    position: absolute;
    inset: 8% -6% -6% 10%;
    background: var(--pink);
    border-radius: 42% 58% 55% 45% / 48% 44% 56% 52%;
    opacity: .55;
    z-index: 0;
}

.hero-photo {
    position: relative;
    z-index: 1;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 6px solid var(--white);
}

.hero-photo img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

/* Signatur: die Route */
.route {
    margin-top: 48px;
    line-height: 0;
}

.route svg { width: 100%; height: 90px; }

.route-line {
    stroke: var(--magenta);
    stroke-width: 3;
    stroke-linecap: round;
    stroke-dasharray: 2 14;
    opacity: .8;
}

.route-dot {
    fill: var(--magenta);
    stroke: var(--pink);
    stroke-width: 6;
}

@media (max-width: 900px) {
    .hero { padding-top: 40px; }

    .hero-inner {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .lead { margin-left: auto; margin-right: auto; }

    .hero-actions { justify-content: center; }

    .hero-media { max-width: 480px; margin: 0 auto; width: 100%; }

    .route { margin-top: 32px; }
    .route svg { height: 60px; }
}

/* ==========================================================================
   Angebot / Schnellzugriff
   ========================================================================== */

.quick-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.quick-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--white);
    border: 1px solid var(--gray);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    padding: 20px 22px;
    color: var(--ink);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.quick-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--pink);
    color: var(--ink);
}

.quick-icon {
    flex: none;
    width: 58px;
    height: 58px;
    border-radius: 16px;
    background: var(--pink-soft);
    display: flex;
    align-items: center;
    justify-content: center;
}

.quick-icon img { width: 34px; height: 34px; object-fit: contain; }

.quick-label {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.05rem;
    flex: 1;
}

.quick-arrow {
    color: var(--magenta);
    font-size: 1.3rem;
    transition: transform .25s ease;
}

.quick-card:hover .quick-arrow { transform: translateX(5px); }

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

/* ==========================================================================
   Fahrten & Preise
   ========================================================================== */

.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.service-card {
    background: var(--white);
    border: 1px solid var(--gray);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    padding: 28px 26px;
    position: relative;
    transition: transform .25s ease, box-shadow .25s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

/* Häkchen-Marker */
.service-card::before {
    content: "✓";
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--magenta);
    color: #fff;
    font-size: .95rem;
    font-weight: 800;
    margin-bottom: 16px;
}

.service-card h3 { margin-bottom: 8px; font-size: 1.08rem; }

.service-card p { font-size: .98rem; }

/* Preise */
.price-block {
    display: grid;
    grid-template-columns: 1fr 1.35fr;
    gap: 48px;
    margin-top: 88px;
    align-items: start;
}

.price-intro { position: sticky; top: calc(var(--nav-h) + 24px); }

.price-intro h2 { margin-bottom: 18px; }

.price-intro p { margin-bottom: 16px; }

.price-intro .btn { margin-top: 10px; }

.price-table {
    background: var(--white);
    border: 1px solid var(--gray);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    padding: 32px;
}

.price-table h3 { margin-bottom: 18px; font-size: 1.25rem; }

table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
}

th, td { padding: 13px 6px; text-align: left; }

th {
    font-family: var(--font-display);
    font-size: .8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--magenta);
    border-bottom: 2px solid var(--magenta);
}

th:last-child, td:last-child { text-align: right; }

td { border-bottom: 1px solid var(--gray); font-size: .98rem; }

tbody tr:last-child td { border-bottom: none; }

td:last-child {
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--ink);
    white-space: nowrap;
    padding-left: 18px;
}

tbody tr { transition: background-color .15s ease; }
tbody tr:hover { background: var(--pink-soft); }

td small { color: var(--ink-soft); font-weight: 400; }

.note {
    margin-top: 16px;
    font-size: .9rem;
    color: var(--ink-soft);
    text-align: center;
}

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

    .price-block {
        grid-template-columns: 1fr;
        gap: 32px;
        margin-top: 64px;
    }

    .price-intro { position: static; }

    .price-table { padding: 22px 16px; }

    td:last-child { white-space: normal; }
}

/* ==========================================================================
   Buchen
   ========================================================================== */

.booking-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 32px;
    align-items: start;
}

.booking-contact h3,
.booking-form h3 {
    margin-bottom: 22px;
    font-size: 1.25rem;
}

.contact-row {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--white);
    border: 1px solid var(--gray);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    padding: 18px 20px;
    margin-bottom: 14px;
    color: var(--ink);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.contact-row:hover {
    transform: translateY(-3px);
    border-color: var(--pink);
    box-shadow: var(--shadow-md);
    color: var(--ink);
}

.contact-icon {
    flex: none;
    width: 54px;
    height: 54px;
    border-radius: 14px;
    background: var(--pink-soft);
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-icon img { width: 30px; height: 30px; object-fit: contain; }

.contact-text { display: flex; flex-direction: column; line-height: 1.4; }

.contact-text b {
    font-family: var(--font-display);
    font-size: .88rem;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: var(--ink-soft);
}

.contact-text span:last-child {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.12rem;
    color: var(--magenta);
    overflow-wrap: anywhere;
}

.booking-hint {
    margin-top: 22px;
    background: var(--pink-soft);
    border-left: 4px solid var(--magenta);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    padding: 16px 18px;
}

.booking-hint p { font-size: .95rem; }

/* Formular */
.booking-form {
    background: var(--white);
    border: 1px solid var(--gray);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    padding: 36px 32px;
}

.field { margin-bottom: 18px; }

.field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.field label,
.field-label {
    display: block;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: .92rem;
    margin-bottom: 7px;
    color: var(--ink);
}

input[type=text],
input[type=datetime-local],
input[type=number],
input[type=tel],
input[type=email],
select,
textarea {
    width: 100%;
    padding: 13px 15px;
    border: 1.5px solid #d9d6d3;
    border-radius: var(--radius-sm);
    background: var(--bg);
    color: var(--ink);
    font-family: var(--font-body);
    font-size: 1rem;
    -webkit-appearance: none;
    appearance: none;
    resize: vertical;
    transition: border-color .2s ease, background-color .2s ease, box-shadow .2s ease;
}

input + input { margin-top: 10px; }

textarea { min-height: 110px; }

input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: var(--magenta);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(234,0,217,.10);
}

::placeholder { color: #928e8a; }

select {
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='14' height='9' viewBox='0 0 14 9'%3e%3cpath d='M1 1l6 6 6-6' stroke='%23181716' stroke-width='2' fill='none' stroke-linecap='round'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 42px;
}

/* Ja/Nein als Pillen */
.radio-row { display: flex; gap: 12px; }

.radio-pill {
    flex: 1;
    cursor: pointer;
}

.radio-pill input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.radio-pill span {
    display: block;
    text-align: center;
    padding: 12px;
    border: 1.5px solid #d9d6d3;
    border-radius: 99px;
    background: var(--bg);
    font-family: var(--font-display);
    font-weight: 600;
    color: var(--ink-soft);
    transition: all .2s ease;
}

.radio-pill:hover span { border-color: var(--pink); }

.radio-pill input:checked + span {
    background: var(--magenta);
    border-color: var(--magenta);
    color: #fff;
}

.radio-pill input:focus-visible + span {
    outline: 3px solid var(--magenta);
    outline-offset: 2px;
}

.form-note {
    font-size: .88rem;
    color: var(--ink-soft);
    margin-bottom: 18px;
}

input[type=submit] {
    display: block;
    width: 100%;
    background: var(--magenta);
    border: none;
    color: #fff;
    padding: 17px;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.08rem;
    border-radius: 99px;
    cursor: pointer;
    box-shadow: var(--shadow-pink);
    transition: background-color .2s ease, transform .2s ease;
}

input[type=submit]:hover {
    background: var(--magenta-dark);
    transform: translateY(-2px);
}

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

    .field-row { grid-template-columns: 1fr; gap: 0; }

    .booking-form { padding: 26px 18px; }
}

/* ==========================================================================
   Über uns (dunkle Sektion)
   ========================================================================== */

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 56px;
    align-items: center;
}

.about-media img {
    width: 100%;
    border-radius: var(--radius-lg);
    border: 6px solid rgba(255,255,255,.08);
    box-shadow: var(--shadow-md);
    display: block;
}

.section-dark .kicker { color: var(--pink); }

.section-dark h2 { color: #fff; margin-bottom: 20px; }

.section-dark p { color: rgba(255,255,255,.82); margin-bottom: 16px; }

.about-lists {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 26px;
    margin-top: 30px;
}

.about-list h3 {
    color: var(--pink);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: 12px;
}

.about-list ul { list-style: none; }

.about-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 10px;
    color: rgba(255,255,255,.88);
}

.about-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 2px;
    width: 19px;
    height: 19px;
    border-radius: 50%;
    background: var(--magenta);
    color: #fff;
    font-size: .7rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 900px) {
    .about-grid { grid-template-columns: 1fr; gap: 36px; }
    .about-lists { grid-template-columns: 1fr; gap: 22px; }
}

/* ==========================================================================
   FAQ
   ========================================================================== */

.faq-item {
    background: var(--white);
    border: 1px solid var(--gray);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    margin-bottom: 14px;
    overflow: hidden;
    transition: border-color .25s ease, box-shadow .25s ease;
}

.faq-item:hover, .faq-item.active { border-color: var(--pink); }

.faq-item.active { box-shadow: var(--shadow-md); }

.faq-question {
    width: 100%;
    padding: 20px 56px 20px 24px;
    text-align: left;
    background: transparent;
    border: none;
    cursor: pointer;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.05rem;
    line-height: 1.45;
    color: var(--ink);
    position: relative;
    transition: color .25s ease;
}

.faq-question::before,
.faq-question::after {
    content: "";
    position: absolute;
    right: 24px;
    top: 50%;
    width: 15px;
    height: 2.5px;
    border-radius: 4px;
    background: var(--magenta);
    transition: transform .3s ease;
}

.faq-question::after { transform: rotate(90deg); }

.faq-item.active .faq-question { color: var(--magenta); }

.faq-item.active .faq-question::after { transform: rotate(0deg); }

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 24px;
    transition: max-height .4s ease;
}

.faq-answer p {
    border-top: 1px solid var(--gray);
    padding: 16px 0 20px;
}

.faq-answer a {
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.faq-item.active .faq-answer { max-height: 280px; }

/* ==========================================================================
   Kontakt
   ========================================================================== */

.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 32px;
    align-items: stretch;
}

.contact-map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--gray);
    box-shadow: var(--shadow-sm);
    background: var(--white);
    display: flex;
    min-height: 420px;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

.contact-info {
    background: var(--white);
    border: 1px solid var(--gray);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    padding: 36px 32px;
}

.contact-info-block { margin-bottom: 26px; }
.contact-info-block:last-child { margin-bottom: 0; }

.contact-info-block h3 {
    font-size: .92rem;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--magenta);
    margin-bottom: 8px;
}

.contact-info-block p { margin-bottom: 8px; }

.contact-info-block a { font-weight: 600; }

.socials {
    display: flex;
    gap: 12px;
    margin-top: 6px;
}

.socials img {
    width: 44px;
    height: 44px;
    object-fit: contain;
    border-radius: 12px;
    transition: transform .2s ease;
}

.socials a:hover img { transform: translateY(-4px) scale(1.06); }

@media (max-width: 900px) {
    .contact-grid { grid-template-columns: 1fr; }
    .contact-map { min-height: 300px; }
    .contact-info { padding: 26px 20px; }
}

/* ==========================================================================
   Footer
   ========================================================================== */

#footer {
    background: var(--ink);
    padding: 44px 0;
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.footer-brand img {
    height: 34px;
    width: auto;
    display: block;
    margin-bottom: 10px;
    filter: brightness(0) invert(1);
    opacity: .95;
}

.footer-brand p {
    color: rgba(255,255,255,.7);
    font-size: .95rem;
}

.footer-meta { text-align: right; }

.footer-meta p {
    color: rgba(255,255,255,.7);
    font-size: .95rem;
}

.footer-meta a {
    color: var(--pink);
    font-weight: 600;
}

.footer-meta a:hover { color: var(--magenta); }

@media (max-width: 900px) {
    .footer-inner { flex-direction: column; text-align: center; }
    .footer-brand img { margin: 0 auto 10px; }
    .footer-meta { text-align: center; }
}

/* ==========================================================================
   Go-to-Top
   ========================================================================== */

#myBtn {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 999;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: none;
    background: var(--magenta);
    color: #fff;
    font-size: 22px;
    cursor: pointer;
    box-shadow: var(--shadow-pink);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity .25s ease, transform .25s ease, background-color .2s ease, visibility .25s;
}

#myBtn.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

#myBtn:hover { background: var(--ink); }

/* ==========================================================================
   Impressum
   ========================================================================== */

#impressum {
    display: block;
    max-width: 860px;
    margin: 0 auto;
    padding: 64px 24px 96px;
}

#impressum h2 { margin: 2.25rem 0 1rem; font-size: 1.6rem; }

#impressum h2:first-child { margin-top: 0; }

#impressum ul { margin: .75rem 0 .75rem 1.4rem; }

#impressum li { margin-bottom: 6px; }
