/* ==========================================================================
   Häusliche Krankenpflege Rudi Volk
   Stylesheet – statisch, ohne externe Abhängigkeiten.
   Design: moderner Flyer-Stil. Gelb als Markenfläche, Dunkelrot als Akzent.
   ========================================================================== */

:root {
    --yellow:        #f4d000;
    --yellow-bright: #ffe024;
    --yellow-soft:   #fff2a8;
    --yellow-cream:  #fdf6dc;

    --red:           #a0182a;
    --red-dark:      #7a0f1f;
    --red-deep:      #5e0a17;
    --red-tint:      #fbeef0;

    --ink:           #15171a;
    --ink-soft:      #45495a;
    --ink-mute:      #7a818c;

    --bg:            #ffffff;
    --bg-warm:       #fffdf3;
    --bg-cream:      #fbf6e3;

    --border:        #ece6d3;
    --border-soft:   #f1ede0;

    --shadow-sm:  0 1px 2px rgba(20, 25, 35, 0.05), 0 2px 6px rgba(20, 25, 35, 0.05);
    --shadow-md:  0 4px 14px rgba(20, 25, 35, 0.08), 0 12px 28px rgba(20, 25, 35, 0.07);
    --shadow-lg:  0 10px 30px rgba(20, 25, 35, 0.12), 0 30px 60px rgba(20, 25, 35, 0.10);
    --shadow-red: 0 10px 30px rgba(160, 24, 42, 0.22), 0 24px 48px rgba(160, 24, 42, 0.18);

    --radius-sm:  6px;
    --radius:     14px;
    --radius-lg:  22px;

    --maxw:       1180px;
}

/* ---------- Reset / Basis ---------- */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-size: 17px;
    line-height: 1.65;
    color: var(--ink);
    background-color: var(--bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

a {
    color: var(--red);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: color .15s ease, border-color .15s ease;
}

a:hover {
    color: var(--red-dark);
    border-bottom-color: currentColor;
}

a:focus-visible,
button:focus-visible,
.btn:focus-visible {
    outline: 3px solid var(--red);
    outline-offset: 3px;
    border-radius: 4px;
}

h1, h2, h3, h4 {
    color: var(--red-dark);
    line-height: 1.15;
    margin: 0 0 .55em;
    font-weight: 800;
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    letter-spacing: -0.028em;
}

h2 {
    font-size: clamp(1.7rem, 3.2vw, 2.3rem);
    margin-top: 0;
}

h3 {
    font-size: 1.18rem;
    font-weight: 800;
    color: var(--ink);
    letter-spacing: -0.005em;
}

p {
    margin: 0 0 1em;
    color: var(--ink-soft);
}

strong { color: var(--ink); font-weight: 700; }

ul {
    padding-left: 1.2em;
}

li {
    margin-bottom: 0.4em;
    color: var(--ink-soft);
}

::selection { background: var(--red); color: #fff; }

/* ---------- Hilfsklassen ---------- */
.container {
    width: 100%;
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 0 24px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--red);
    font-weight: 800;
    font-size: 0.82rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    margin-bottom: 22px;
}

.eyebrow::before {
    content: "";
    display: inline-block;
    width: 28px;
    height: 3px;
    background: var(--red);
    border-radius: 2px;
}

/* Eyebrow-Variante auf gelbem Hintergrund: Pille mit dunkelrotem Text */
.eyebrow-pill {
    display: inline-block;
    padding: 7px 16px;
    background: #fff;
    color: var(--red-dark);
    font-weight: 800;
    font-size: 0.82rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    border-radius: 999px;
    margin-bottom: 22px;
    box-shadow: var(--shadow-sm);
}

.lede {
    font-size: 1.18rem;
    line-height: 1.6;
    color: var(--ink-soft);
    max-width: 38em;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.skip-link {
    position: absolute;
    top: -100px;
    left: 12px;
    background: var(--red);
    color: #fff;
    padding: 12px 20px;
    z-index: 1000;
    border-radius: 6px;
}

.skip-link:focus {
    top: 12px;
    color: #fff;
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 26px;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.005em;
    text-decoration: none;
    border-radius: 999px;
    border: 2px solid transparent;
    transition: background-color .15s ease, border-color .15s ease, color .15s ease, transform .1s ease, box-shadow .15s ease;
    cursor: pointer;
    line-height: 1.2;
    white-space: nowrap;
}

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

.btn-primary:hover,
.btn-primary:focus {
    background: var(--red-dark);
    border-color: var(--red-dark);
    color: #fff;
    transform: translateY(-1px);
}

.btn-secondary {
    background: #fff;
    color: var(--red-dark);
    border-color: var(--red);
}

.btn-secondary:hover,
.btn-secondary:focus {
    background: var(--red);
    color: #fff;
    border-color: var(--red);
}

.btn-yellow {
    background: var(--yellow);
    color: var(--red-dark);
    border-color: var(--red-dark);
    box-shadow: 0 8px 20px rgba(244, 208, 0, 0.35);
}

.btn-yellow:hover,
.btn-yellow:focus {
    background: var(--yellow-bright);
    color: var(--red-dark);
    border-color: var(--red-dark);
    transform: translateY(-1px);
}

.btn-light {
    background: #fff;
    color: var(--red-dark);
    border-color: #fff;
}

.btn-light:hover,
.btn-light:focus {
    background: var(--yellow);
    color: var(--red-dark);
    border-color: var(--yellow);
}

/* ---------- Header / Navigation ---------- */
.site-header {
    background: #fff;
    border-top: 5px solid var(--yellow);
    border-bottom: 1px solid var(--border-soft);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.02);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 24px;
    max-width: var(--maxw);
    margin: 0 auto;
    gap: 18px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    color: var(--ink);
    flex-shrink: 0;
    border-bottom: none;
}

.logo:hover { color: var(--ink); border-bottom: none; }

.logo-mark {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 60px;
    width: auto;
}

.logo-mark img {
    height: 100%;
    width: auto;
    max-width: none;
    object-fit: contain;
    display: block;
}

@media (max-width: 600px) {
    .logo-mark { height: 50px; }
}

.logo-text {
    font-weight: 800;
    font-size: 1rem;
    line-height: 1.2;
    color: var(--red-dark);
    letter-spacing: -0.012em;
}

.logo-text small {
    display: block;
    font-size: 0.72rem;
    font-weight: 800;
    color: var(--red);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-top: 3px;
}

@media (max-width: 420px) {
    .logo-text { font-size: 0.9rem; }
    .logo-text small { font-size: 0.64rem; letter-spacing: 0.08em; }
}

.header-phone {
    display: none;
    align-items: center;
    gap: 10px;
    padding: 10px 18px 10px 14px;
    background: var(--yellow);
    border: 2px solid var(--red);
    border-radius: 999px;
    color: var(--red-dark);
    font-weight: 800;
    font-size: 1rem;
    white-space: nowrap;
}

.header-phone:hover {
    background: var(--yellow-bright);
    color: var(--red-dark);
}

.header-phone .phone-icon {
    width: 26px; height: 26px;
    border-radius: 50%;
    background: var(--red);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.header-phone .phone-icon svg { width: 14px; height: 14px; }

.nav-toggle {
    background: var(--red);
    color: #fff;
    border: none;
    padding: 11px 18px;
    font-size: 0.95rem;
    font-weight: 700;
    border-radius: 8px;
    cursor: pointer;
    line-height: 1;
}

.main-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 2px;
}

.main-nav a {
    display: block;
    padding: 10px 14px;
    color: var(--ink);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.96rem;
    border-radius: 8px;
    border-bottom: none;
    transition: background-color .15s ease, color .15s ease;
}

.main-nav a:hover,
.main-nav a:focus {
    background: var(--yellow-soft);
    color: var(--red-dark);
    border-bottom: none;
}

.main-nav a.active {
    color: var(--red-dark);
    background: var(--yellow);
}

@media (max-width: 920px) {
    .main-nav {
        display: none;
        width: 100%;
        order: 3;
    }

    .main-nav.is-open { display: block; }

    .main-nav ul {
        flex-direction: column;
        gap: 0;
        padding: 8px 0 4px;
        border-top: 1px solid var(--border-soft);
        margin-top: 4px;
    }

    .main-nav a {
        padding: 14px 12px;
        border-radius: 6px;
    }
}

@media (min-width: 921px) {
    .nav-toggle { display: none; }
    .header-phone { display: inline-flex; }
}

/* ==========================================================================
   HERO – Flyer-Stil: gelber Hintergrund, geschwungener roter Bogen
   ========================================================================== */
.hero {
    position: relative;
    background: var(--yellow);
    overflow: hidden;
    padding: 80px 0 110px;
    isolation: isolate;
}

/* Großer dunkelroter Bogen rechts – moderne Interpretation des Flyer-Bogens */
.hero::before {
    content: "";
    position: absolute;
    top: -10%;
    right: -28%;
    width: 80%;
    height: 130%;
    background: var(--red);
    border-radius: 50% 0 0 50% / 50% 0 0 50%;
    z-index: -1;
}

/* Kleinerer roter Akzent-Kreis links unten als Echo */
.hero::after {
    content: "";
    position: absolute;
    bottom: -120px;
    left: -120px;
    width: 280px;
    height: 280px;
    background: var(--red);
    opacity: 0.08;
    border-radius: 50%;
    z-index: -1;
}

.hero-inner {
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
    align-items: center;
}

@media (min-width: 920px) {
    .hero-inner {
        grid-template-columns: 1.05fr 1fr;
        gap: 70px;
    }
}

.hero-content { color: var(--ink); }

.hero-content .eyebrow-pill { margin-bottom: 24px; }

.hero h1 {
    color: var(--red-dark);
    margin-bottom: 18px;
    font-size: clamp(2.3rem, 5.2vw, 3.7rem);
    letter-spacing: -0.03em;
    line-height: 1.05;
}

.hero h1 .accent {
    color: var(--red);
    display: block;
    font-size: 0.78em;
    margin-top: 6px;
}

.hero-claim {
    font-size: 1.18rem;
    line-height: 1.6;
    color: var(--ink);
    margin-bottom: 32px;
    max-width: 32em;
    font-weight: 500;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
    margin-bottom: 28px;
}

/* Telefon-Karte – weiß auf gelbem Hintergrund, rote Akzente */
.phone-card {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    padding: 14px 24px 14px 14px;
    background: #fff;
    border: 2px solid var(--red);
    border-radius: 999px;
    text-decoration: none;
    color: var(--ink);
    box-shadow: var(--shadow-md);
    transition: box-shadow .2s ease, transform .15s ease;
}

.phone-card:hover {
    color: var(--ink);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    border-color: var(--red-dark);
}

.phone-card .phone-icon {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--red);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.phone-card .phone-icon svg { width: 22px; height: 22px; }

.phone-card .phone-text {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}

.phone-card .phone-text small {
    font-size: 0.78rem;
    color: var(--red);
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.phone-card .phone-text strong {
    font-size: 1.55rem;
    font-weight: 800;
    color: var(--red-dark);
    letter-spacing: -0.01em;
}

.hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 22px;
    color: var(--ink);
    font-size: 0.95rem;
    align-items: center;
    font-weight: 600;
}

.hero-meta strong { color: var(--red-dark); font-weight: 800; }

/* Hero-Bild */
.hero-image {
    position: relative;
}

.hero-image-frame {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25), 0 0 0 6px #fff;
    aspect-ratio: 4 / 3;
    background: var(--bg-cream);
}

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

.hero-badge {
    position: absolute;
    bottom: 18px;
    left: 18px;
    background: var(--yellow);
    padding: 10px 16px;
    border-radius: 999px;
    box-shadow: var(--shadow-md);
    font-size: 0.88rem;
    font-weight: 800;
    color: var(--red-dark);
    display: flex;
    align-items: center;
    gap: 10px;
    border: 2px solid var(--red);
}

.hero-badge .dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--red);
}

/* ==========================================================================
   PAGE-HERO (kleinere Hero-Variante für Unterseiten)
   ========================================================================== */
.page-hero {
    position: relative;
    background: var(--yellow);
    text-align: center;
    padding: 70px 0 80px;
    overflow: hidden;
    isolation: isolate;
}

.page-hero::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -30%;
    width: 60%;
    height: 200%;
    background: var(--red);
    opacity: 0.08;
    border-radius: 50%;
    z-index: -1;
}

.page-hero::after {
    content: "";
    position: absolute;
    bottom: -50%;
    left: -25%;
    width: 55%;
    height: 200%;
    background: var(--red);
    opacity: 0.06;
    border-radius: 50%;
    z-index: -1;
}

.page-hero .container { position: relative; z-index: 1; }

.page-hero .eyebrow-pill { margin-bottom: 18px; }

.page-hero h1 {
    color: var(--red-dark);
    margin-bottom: 16px;
    font-size: clamp(2rem, 4.4vw, 3rem);
}

.page-hero .lede {
    margin: 0 auto;
    color: var(--ink);
    font-weight: 500;
}

/* ==========================================================================
   SEKTIONEN
   ========================================================================== */
section {
    padding: 80px 0;
}

.section-white { background: #fff; }
.section-warm  { background: var(--bg-warm); }
.section-cream { background: var(--bg-cream); }
.section-yellow{ background: var(--yellow); position: relative; overflow: hidden; }

/* Dezente rote Bogenelemente in Yellow-Sektionen */
.section-yellow::before {
    content: "";
    position: absolute;
    top: -40%;
    right: -20%;
    width: 50%;
    height: 180%;
    background: var(--red);
    opacity: 0.06;
    border-radius: 50%;
    pointer-events: none;
}

.section-yellow > .container { position: relative; z-index: 1; }

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

.section-header .eyebrow,
.section-header .eyebrow-pill {
    margin-bottom: 14px;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--ink-soft);
}

.section-yellow .section-header p { color: var(--ink); font-weight: 500; }

/* ==========================================================================
   KARTEN
   ========================================================================== */
.cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 22px;
}

@media (min-width: 640px) {
    .cards { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 980px) {
    .cards { grid-template-columns: repeat(3, 1fr); }
}

.card {
    background: #fff;
    border: 1px solid var(--border);
    border-top: 4px solid var(--yellow);
    border-radius: var(--radius);
    padding: 30px 28px;
    box-shadow: var(--shadow-sm);
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
    display: flex;
    flex-direction: column;
}

.card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-top-color: var(--red);
}

.card .card-icon {
    width: 50px; height: 50px;
    border-radius: 12px;
    background: var(--red);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    box-shadow: 0 6px 14px rgba(160, 24, 42, 0.25);
}

.card .card-icon svg { width: 24px; height: 24px; }

.card h3 {
    margin: 0 0 10px;
    color: var(--ink);
}

.card p {
    margin: 0;
    color: var(--ink-soft);
    font-size: 0.98rem;
}

/* ==========================================================================
   VERTRAUENSBEREICH
   ========================================================================== */
.trust-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
}

@media (min-width: 720px) {
    .trust-row { grid-template-columns: repeat(3, 1fr); }
}

.trust-item {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px 26px;
    text-align: left;
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}

.trust-item .trust-icon {
    width: 56px; height: 56px;
    border-radius: 50%;
    background: var(--yellow);
    color: var(--red);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    border: 3px solid var(--red);
}

.trust-item .trust-icon svg { width: 26px; height: 26px; }

.trust-item strong {
    display: block;
    color: var(--red-dark);
    font-size: 1.15rem;
    margin-bottom: 6px;
    font-weight: 800;
}

.trust-item span {
    color: var(--ink-soft);
    font-size: 0.98rem;
}

/* ==========================================================================
   REGION (Firmenwagen) – auf gelbem Hintergrund
   ========================================================================== */
.region-block {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
    align-items: center;
}

@media (min-width: 920px) {
    .region-block {
        grid-template-columns: 1fr 1fr;
        gap: 70px;
    }
}

.region-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.22), 0 0 0 6px #fff;
    aspect-ratio: 4 / 3;
    background: var(--bg-cream);
}

.region-image img {
    width: 100%; height: 100%;
    object-fit: cover; object-position: center;
}

.region-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 20px 0 0;
    padding: 0;
    list-style: none;
}

.region-badges li {
    list-style: none;
    background: #fff;
    color: var(--red-dark);
    border: 2px solid var(--red);
    border-radius: 999px;
    padding: 8px 18px;
    font-weight: 700;
    font-size: 0.96rem;
    margin: 0;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.region-badges li::before {
    content: "";
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--red);
}

/* ==========================================================================
   CTA-BLOCK – tiefrot mit gelben Akzenten (Flyer-Vibe)
   ========================================================================== */
.cta-block {
    position: relative;
    text-align: center;
    background: var(--red);
    color: #fff;
    border-radius: var(--radius-lg);
    padding: 56px 32px;
    margin: 0 auto;
    max-width: 880px;
    overflow: hidden;
    box-shadow: var(--shadow-red);
    isolation: isolate;
}

.cta-block::before {
    content: "";
    position: absolute;
    top: -100px; right: -100px;
    width: 280px; height: 280px;
    border-radius: 50%;
    background: var(--yellow);
    opacity: 0.12;
    z-index: -1;
}

.cta-block::after {
    content: "";
    position: absolute;
    bottom: -120px; left: -80px;
    width: 260px; height: 260px;
    border-radius: 50%;
    background: var(--yellow);
    opacity: 0.10;
    z-index: -1;
}

.cta-block h2 {
    color: #fff;
    margin-bottom: 12px;
}

.cta-block p {
    color: rgba(255, 255, 255, 0.92);
    font-size: 1.08rem;
    max-width: 38em;
    margin-left: auto;
    margin-right: auto;
}

.cta-phone {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    margin: 24px 0 28px;
    color: #fff;
    text-decoration: none;
    border-bottom: none;
    padding: 16px 28px 16px 18px;
    background: var(--red-dark);
    border: 2px solid var(--yellow);
    border-radius: 999px;
    transition: background .15s ease, transform .15s ease;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.20);
}

.cta-phone:hover {
    background: var(--red-deep);
    color: #fff;
    transform: translateY(-2px);
}

.cta-phone .phone-icon {
    width: 44px; height: 44px;
    background: var(--yellow);
    color: var(--red-dark);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.cta-phone .phone-icon svg { width: 20px; height: 20px; }

.cta-phone strong {
    color: var(--yellow);
    font-size: 1.7rem;
    font-weight: 800;
    letter-spacing: -0.01em;
}

.cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

/* ==========================================================================
   LEISTUNGSLISTE
   ========================================================================== */
.service-list {
    background: #fff;
    border: 1px solid var(--border);
    border-top: 6px solid var(--yellow);
    border-radius: var(--radius);
    padding: 36px 36px 28px;
    box-shadow: var(--shadow-sm);
}

.service-list h2 { margin-top: 0; color: var(--red-dark); }

.service-list ul {
    columns: 1;
    column-gap: 40px;
    list-style: none;
    padding: 0;
    margin: 0;
}

@media (min-width: 720px) {
    .service-list ul { columns: 2; }
}

.service-list li {
    padding: 11px 0 11px 38px;
    position: relative;
    break-inside: avoid;
    font-size: 1rem;
    color: var(--ink);
    border-bottom: 1px solid var(--border-soft);
    margin: 0;
    font-weight: 500;
}

.service-list li:last-child { border-bottom: none; }

.service-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 24px; height: 24px;
    border-radius: 50%;
    background: var(--yellow);
    border: 2px solid var(--red);
}

.service-list li::after {
    content: "";
    position: absolute;
    left: 6px;
    top: 50%;
    width: 9px;
    height: 5px;
    border-left: 2.5px solid var(--red);
    border-bottom: 2.5px solid var(--red);
    transform: translateY(-70%) rotate(-45deg);
}

.legal-note {
    background: var(--yellow-soft);
    border: 1px solid var(--yellow);
    border-left: 5px solid var(--red);
    padding: 18px 22px;
    border-radius: var(--radius-sm);
    margin: 0 0 32px;
    color: var(--ink);
}

.legal-note strong { color: var(--red-dark); }

/* ==========================================================================
   KONTAKT
   ========================================================================== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 860px) {
    .contact-grid { grid-template-columns: 1fr 1fr; }
}

.contact-card {
    background: #fff;
    border: 1px solid var(--border);
    border-top: 5px solid var(--yellow);
    border-radius: var(--radius);
    padding: 34px 32px;
    box-shadow: var(--shadow-sm);
}

.contact-card h3 {
    color: var(--red-dark);
    font-size: 1.2rem;
    margin: 0 0 14px;
}

.contact-card h3:not(:first-of-type) { margin-top: 28px; }

.contact-card address {
    font-style: normal;
    line-height: 1.7;
    font-size: 1.05rem;
    color: var(--ink);
}

.contact-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.contact-card ul li {
    background: var(--yellow-soft);
    color: var(--red-dark);
    border-radius: 999px;
    padding: 6px 14px;
    margin: 0;
    font-size: 0.94rem;
    font-weight: 700;
}

/* Großes Telefon auf Kontaktseite – sehr präsent (Flyer-Stil) */
.big-phone {
    display: flex;
    align-items: center;
    gap: 18px;
    background: var(--red);
    color: #fff;
    border: 3px solid var(--yellow);
    border-radius: var(--radius);
    padding: 22px 26px;
    text-decoration: none;
    margin: 16px 0;
    box-shadow: var(--shadow-red);
    transition: background .15s ease, transform .15s ease;
}

.big-phone:hover {
    background: var(--red-dark);
    color: #fff;
    transform: translateY(-2px);
}

.big-phone .phone-icon {
    width: 52px; height: 52px;
    background: var(--yellow);
    color: var(--red-dark);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.big-phone .phone-icon svg { width: 22px; height: 22px; }

.big-phone .phone-text { display: flex; flex-direction: column; }

.big-phone .phone-text small {
    color: var(--yellow);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.big-phone .phone-text strong {
    color: #fff;
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: -0.01em;
}

/* ==========================================================================
   SPLIT-LAYOUT
   ========================================================================== */
.split {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
    align-items: center;
}

@media (min-width: 920px) {
    .split { grid-template-columns: 1fr 1fr; gap: 70px; }
}

.split-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.22), 0 0 0 6px #fff;
    aspect-ratio: 4 / 3;
    background: var(--bg-cream);
}

.split-image img {
    width: 100%; height: 100%;
    object-fit: cover; object-position: center;
}

/* ==========================================================================
   RECHTSSEITEN
   ========================================================================== */
.legal-page {
    background: var(--bg-warm);
    padding: 60px 0 80px;
}

.legal-page article {
    background: #fff;
    border: 1px solid var(--border);
    border-top: 5px solid var(--yellow);
    border-radius: var(--radius);
    padding: 48px;
    box-shadow: var(--shadow-sm);
    max-width: 820px;
    margin: 0 auto;
}

.legal-page h1 { margin-top: 0; color: var(--red-dark); }

.legal-page h2 {
    margin-top: 1.8em;
    font-size: 1.25rem;
    color: var(--red-dark);
}

.legal-page h2:first-of-type { margin-top: 0; }

.legal-page p, .legal-page li { color: var(--ink-soft); }

.placeholder {
    background: var(--yellow);
    color: var(--red-dark);
    padding: 1px 8px;
    border-radius: 4px;
    font-weight: 700;
}

.warn-box {
    background: var(--yellow-soft);
    color: var(--red-dark);
    border: 1px solid var(--yellow);
    border-left: 5px solid var(--red);
    padding: 16px 20px;
    border-radius: var(--radius-sm);
    margin: 0 0 32px;
    font-weight: 500;
}

.warn-box strong { color: var(--red-dark); }

@media (max-width: 640px) {
    .legal-page article { padding: 28px 22px; }
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
    background: #15171a;
    color: #c8ccd3;
    padding: 64px 0 28px;
    margin-top: 0;
    font-size: 0.95rem;
    line-height: 1.7;
    border-top: 5px solid var(--yellow);
    position: relative;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 36px;
    margin-bottom: 40px;
}

@media (min-width: 720px) {
    .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; gap: 50px; }
}

.site-footer h4 {
    color: var(--yellow);
    margin: 0 0 14px;
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 0.02em;
}

.site-footer a {
    color: #e9ecef;
    border-bottom: 1px solid transparent;
}

.site-footer a:hover,
.site-footer a:focus {
    color: var(--yellow);
    border-bottom-color: var(--yellow);
}

.site-footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.site-footer li {
    margin-bottom: 8px;
    color: #c8ccd3;
}

.site-footer address { font-style: normal; }

.footer-brand {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
}

.footer-brand-icon {
    width: 46px; height: 46px;
    border-radius: 50%;
    background: var(--yellow);
    color: var(--red-dark);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    letter-spacing: -0.02em;
    box-shadow: inset 0 0 0 3px var(--red);
    font-size: 1rem;
}

.footer-brand-text {
    color: #fff;
    font-weight: 800;
    line-height: 1.25;
    font-size: 1.02rem;
}

.footer-bottom {
    border-top: 1px solid #2a2d33;
    padding-top: 22px;
    text-align: center;
    color: #8b91a0;
    font-size: 0.88rem;
}

/* ==========================================================================
   PRINT
   ========================================================================== */
@media print {
    .site-header, .site-footer, .nav-toggle, .cta-block .btn, .skip-link { display: none; }
    body { background: #fff; color: #000; }
    .hero, .page-hero, section { padding: 12px 0; background: #fff !important; }
    .hero::before, .hero::after, .page-hero::before, .page-hero::after { display: none; }
}
