:root {
    --ink: #1d2621;
    --muted: #647069;
    --paper: #f7f5ef;
    --white: #ffffff;
    --green: #1f5f48;
    --green-2: #2d7a5e;
    --gold: #d99a31;
    --line: rgba(29, 38, 33, .14);
    --shadow: 0 18px 50px rgba(20, 30, 25, .16);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: var(--ink);
    background: var(--paper);
    line-height: 1.55;
}

a {
    color: inherit;
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 10;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 28px;
    padding: 12px clamp(18px, 4vw, 54px);
    background: rgba(247, 245, 239, .94);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(14px);
}

.brand-logo {
    width: 178px;
    height: auto;
}

nav {
    display: flex;
    justify-content: center;
    gap: 24px;
    font-weight: 700;
    font-size: 15px;
}

nav a,
.footer-links a,
.service-link,
.related-links a {
    text-decoration: none;
}

.header-call,
.button,
.phone-large,
.local-panel a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 12px 18px;
    border-radius: 6px;
    font-weight: 800;
    text-decoration: none;
}

.header-call,
.button-primary,
.local-panel a {
    color: #fff;
    background: var(--green);
}

.button-secondary {
    background: #fff;
    color: var(--ink);
    border: 1px solid rgba(255,255,255,.7);
}

.hero {
    min-height: 720px;
    background:
        linear-gradient(90deg, rgba(18,31,25,.86), rgba(18,31,25,.62), rgba(18,31,25,.10)),
        url("assets/hero-entruempelung.webp") center / cover no-repeat;
    color: #fff;
    display: flex;
    align-items: center;
}

.hero-inner {
    width: min(1180px, calc(100% - 36px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 650px) 340px;
    gap: 48px;
    align-items: end;
}

.eyebrow,
.section-kicker {
    margin: 0 0 12px;
    font-size: 14px;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
    color: var(--gold);
}

h1,
h2,
h3 {
    line-height: 1.08;
    margin: 0 0 18px;
    letter-spacing: 0;
}

h1 {
    font-size: clamp(42px, 7vw, 76px);
}

h2 {
    font-size: clamp(30px, 4vw, 48px);
}

h3 {
    font-size: 24px;
}

.lead {
    font-size: 20px;
    max-width: 610px;
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin: 30px 0;
}

.trust-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin: 0;
}

.trust-row div,
.emergency-card,
.insurance-card,
.local-panel,
.info-panel {
    border: 1px solid rgba(255,255,255,.22);
    border-radius: 8px;
    background: rgba(255,255,255,.12);
    padding: 18px;
}

.trust-row dt {
    font-size: 12px;
    color: rgba(255,255,255,.72);
}

.trust-row dd {
    margin: 4px 0 0;
    font-weight: 900;
}

.emergency-card {
    background: rgba(255,255,255,.94);
    color: var(--ink);
    box-shadow: var(--shadow);
}

.emergency-card a {
    font-size: 30px;
    font-weight: 900;
    color: var(--green);
    text-decoration: none;
}

.status-dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    margin-right: 8px;
    border-radius: 50%;
    background: #27b56b;
}

.section {
    width: min(1180px, calc(100% - 36px));
    margin: 0 auto;
    padding: 78px 0;
}

.intro {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 48px;
    align-items: start;
}

.services {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    padding-top: 0;
}

.services article {
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: 0 12px 34px rgba(29,38,33,.08);
}

.service-photo {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.service-body {
    padding: 20px;
}

.service-body span {
    color: var(--gold);
    font-weight: 900;
}

.service-link {
    color: var(--green);
    font-weight: 900;
}

.split,
.content-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 380px;
    gap: 42px;
    align-items: start;
}

.steps {
    display: grid;
    gap: 14px;
    padding-left: 22px;
}

.local-panel,
.info-panel {
    background: #fff;
    border-color: var(--line);
    color: var(--ink);
    box-shadow: var(--shadow);
}

.local-panel a {
    margin-top: 16px;
}

.insurance {
    background: var(--green);
    color: #fff;
}

.insurance-inner {
    width: min(1180px, calc(100% - 36px));
    margin: 0 auto;
    padding: 78px 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 42px;
}

.insurance-card {
    background: rgba(255,255,255,.10);
}

.insurance-list {
    display: grid;
    gap: 14px;
}

.contact-band {
    display: grid;
    grid-template-columns: .95fr 1.05fr;
    gap: 42px;
}

.phone-large {
    margin-top: 18px;
    font-size: 34px;
    background: var(--gold);
    color: var(--ink);
}

.lead-form {
    display: grid;
    gap: 14px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 24px;
    box-shadow: var(--shadow);
}

label {
    display: grid;
    gap: 6px;
    font-weight: 800;
}

input,
select,
textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 6px;
    padding: 13px 12px;
    font: inherit;
    background: #fbfbf8;
}

.privacy-note,
.form-success,
.form-error {
    font-size: 14px;
}

.form-success {
    color: #17663f;
    font-weight: 800;
}

.form-error {
    color: #9a2b20;
    font-weight: 800;
}

.faq details {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 18px 20px;
    margin-top: 12px;
}

.faq summary {
    cursor: pointer;
    font-weight: 900;
}

.subhero {
    background:
        linear-gradient(90deg, rgba(18,31,25,.86), rgba(18,31,25,.44)),
        url("assets/hero-entruempelung.webp") center / cover no-repeat;
    color: #fff;
}

.subhero-inner {
    width: min(980px, calc(100% - 36px));
    margin: 0 auto;
    padding: 110px 0;
}

.related-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}

.related-links a {
    padding: 10px 12px;
    border-radius: 6px;
    background: #fff;
    border: 1px solid var(--line);
    font-weight: 800;
}

.info-panel img {
    border-radius: 6px;
    margin-bottom: 18px;
}

.legal-page {
    max-width: 860px;
}

.legal-page h2 {
    font-size: 26px;
    margin-top: 34px;
}

.site-footer {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    padding: 32px clamp(18px, 4vw, 54px);
    background: #18251f;
    color: #fff;
}

.site-footer span {
    display: block;
    color: rgba(255,255,255,.72);
}

.footer-links {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

@media (max-width: 980px) {
    .site-header {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    nav {
        justify-content: flex-start;
        overflow-x: auto;
    }

    .hero-inner,
    .intro,
    .split,
    .content-grid,
    .insurance-inner,
    .contact-band {
        grid-template-columns: 1fr;
    }

    .services {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 620px) {
    .hero {
        min-height: auto;
        padding: 82px 0;
    }

    .trust-row,
    .services {
        grid-template-columns: 1fr;
    }

    .phone-large,
    .emergency-card a {
        width: 100%;
        font-size: 26px;
    }

    .site-footer {
        flex-direction: column;
    }
}
