/* ==========================================================================
   PFLEGEDIENST KAMMERER – Central Hub Design System
   Differentiated from Seniorenzentrum subpage: blue brand, modular, hub-like
   ========================================================================== */

/* ---------- @font-face Declarations ---------- */
@font-face {
    font-family: 'ALittleSunshine';
    src: url('fonts/Alittlesunshine.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Clemente';
    src: url('fonts/ClementePDac-ExtraLight.woff2') format('woff2');
    font-weight: 200;
    font-style: normal;
    font-display: swap;
}

/* Headline serif – Kammerer Rebrand 2026 (ersetzt ALittleSunshine) */
@font-face {
    font-family: 'Lora';
    src: url('fonts/Lora-400.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Lora';
    src: url('fonts/Lora-600.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Lora';
    src: url('fonts/Lora-700.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Red Hat Text';
    src: url('fonts/RedHatText-400.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Red Hat Text';
    src: url('fonts/RedHatText-600.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Red Hat Text';
    src: url('fonts/RedHatText-700.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* ---------- CSS Custom Properties ---------- */
:root {
    /* Central Brand – Blue accent (hub identity) */
    --brand: #A0C8E6;
    --brand-dark: #6BADD4;
    --brand-darker: #4A94C0;
    --brand-light: #C5DFF0;
    --brand-lightest: #EBF3FA;

    /* Secondary – Sage green (family continuity, used sparingly) */
    --sage: #6B9E8A;
    --sage-light: #8EBF9E;
    --sage-lighter: #B8D8C8;
    --sage-lightest: #E8F3ED;
    --sage-dark: #4A7A63;

    --teal: #5A9AA0;
    --teal-light: #E6F3F4;

    --warm-white: #FAFBF9;
    --cream: #F7F5F0;
    --cream-light: #FCFBF8;

    /* Neutral Palette */
    --gray-900: #2C3330;
    --gray-800: #3D4543;
    --gray-700: #4F5856;
    --gray-600: #6B7572;
    --gray-500: #8A9290;
    --gray-400: #A8B0AE;
    --gray-300: #C5CBC9;
    --gray-200: #E2E6E4;
    --gray-100: #F1F3F2;
    --gray-50: #F8F9F8;

    --white: #FFFFFF;

    /* Functional */
    --text-primary: var(--gray-900);
    --text-secondary: var(--gray-600);
    --text-muted: var(--gray-500);
    --border-color: var(--gray-200);
    --border-light: var(--gray-100);

    /* Typography */
    --font-heading: 'Lora', Georgia, serif;
    --font-body: 'Red Hat Text', 'Segoe UI', system-ui, sans-serif;

    /* Spacing */
    --section-padding: 110px;
    --container-max: 1200px;
    --container-padding: 24px;

    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(44, 51, 48, 0.06);
    --shadow-md: 0 4px 12px rgba(44, 51, 48, 0.08);
    --shadow-lg: 0 8px 30px rgba(44, 51, 48, 0.1);
    --shadow-xl: 0 16px 50px rgba(44, 51, 48, 0.12);

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;

    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-base: 0.25s ease;
    --transition-slow: 0.4s ease;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    font-size: 18px;
}

body {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.7;
    color: var(--text-primary);
    background-color: var(--white);
    overflow-x: hidden;
    -webkit-text-size-adjust: 100%;
}

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

a {
    color: var(--brand-darker);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--brand-dark);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 400;
    color: var(--text-primary);
    line-height: 1.25;
}

h1 {
    font-size: clamp(2.6rem, 5.5vw, 3.8rem);
    letter-spacing: 0.01em;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    letter-spacing: 0.01em;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.2rem;
}

p {
    color: var(--text-secondary);
}

/* ---------- Container ---------- */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* ---------- Section ---------- */
.section {
    padding: var(--section-padding) 0;
}

.section-label {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--brand-darker);
    margin-bottom: 12px;
}

.section-header {
    margin-bottom: 56px;
}

.section-header h2 {
    max-width: 800px;
}

.section-header-center {
    text-align: center;
}

.section-header-center h2 {
    margin: 0 auto;
}

.section-desc {
    max-width: 620px;
    margin: 16px auto 0;
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.75;
}

/* ---------- Buttons – BLUE primary ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 12px 28px;
    border-radius: var(--radius-full);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition-base);
    text-decoration: none;
    white-space: nowrap;
}

.btn-primary {
    background-color: var(--brand-darker);
    color: var(--white);
    border-color: var(--brand-darker);
}

.btn-primary:hover {
    background-color: #3D83AE;
    border-color: #3D83AE;
    color: var(--white);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

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

.btn-outline:hover {
    background-color: var(--brand-darker);
    color: var(--white);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

/* Green button variant - for Seniorenzentrum section only */
.btn-green {
    background-color: var(--sage);
    color: var(--white);
    border-color: var(--sage);
}

.btn-green:hover {
    background-color: var(--sage-dark);
    border-color: var(--sage-dark);
    color: var(--white);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1.05rem;
}

.btn-full {
    width: 100%;
}

/* =============================================
   1. HEADER
   ============================================= */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-light);
    transition: box-shadow var(--transition-base);
}

.site-header.scrolled {
    box-shadow: var(--shadow-md);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    gap: 32px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    flex-shrink: 0;
}

.logo-img {
    height: 64px;
    width: auto;
    display: block;
}

.footer-logo .logo-img {
    height: 64px;
    filter: brightness(0) invert(1);
}

.logo-icon-wrap {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: var(--brand-lightest);
    border-radius: var(--radius-md);
}

.logo-icon-wrap i {
    width: 24px;
    height: 24px;
    color: var(--brand-darker);
}

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

.logo-main {
    font-family: var(--font-heading);
    font-size: 1.45rem;
    color: var(--gray-800);
    letter-spacing: 0.01em;
}

.logo-sub {
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--brand-darker);
    letter-spacing: 0.02em;
}

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

.nav-link {
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gray-600);
    padding: 8px 14px;
    border-radius: var(--radius-full);
    transition: all var(--transition-fast);
    text-decoration: none;
}

.nav-link:hover,
.nav-link.active {
    color: var(--brand-darker);
    background: var(--brand-lightest);
}

.header-cta {
    font-size: 0.85rem;
    padding: 10px 24px;
}

/* Mobile Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--gray-800);
    border-radius: 2px;
    transition: all var(--transition-base);
}

.mobile-menu-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-menu-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-menu-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border-light);
    box-shadow: var(--shadow-lg);
    padding: 24px;
}

.mobile-menu.active { display: block; }

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.mobile-nav-link {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray-700);
    padding: 14px 16px;
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
    text-decoration: none;
}

.mobile-nav-link:hover {
    background: var(--brand-lightest);
    color: var(--brand-darker);
}

.mobile-cta { margin-top: 16px; }

/* =============================================
   2. HERO - STANDORTKARTE
   ============================================= */
.hero-hub {
    min-height: 720px;
    padding-top: 140px;
    padding-bottom: 86px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    background: var(--white);
}

.hero-hub::before {
    content: '';
    position: absolute;
    inset: 0;
    display: none;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.92) 0%, rgba(255, 255, 255, 0.78) 34%, rgba(255, 255, 255, 0.24) 62%, rgba(255, 255, 255, 0.08) 100%),
        linear-gradient(180deg, rgba(245, 250, 248, 0.2) 0%, rgba(245, 250, 248, 0.44) 100%);
    pointer-events: none;
    z-index: 1;
}

.hero-hub-inner {
    width: 100%;
}

.hero-hub-label {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--brand-darker);
    margin-bottom: 16px;
}

.hero-hub-text h1 {
    margin-bottom: 20px;
    color: var(--gray-900);
}

.hero-hub-subtitle {
    font-size: 1.15rem;
    line-height: 1.75;
    color: var(--gray-600);
    margin-bottom: 30px;
    max-width: 520px;
}

.hero-hub-text {
    position: relative;
    z-index: 2;
    max-width: 560px;
    pointer-events: none;
}

.hero-hub-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    pointer-events: auto;
}

.legend-dot {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.9);
}

.legend-dot--green { background: #73AF24; }
.legend-dot--blue { background: #4EA3E3; }
.legend-dot--friseur { background: #D9815F; }
.legend-dot--physio { background: #3FA7A3; }

/* =============================================
   3. PFLEGEBEREICHE
   ============================================= */
.pflegebereiche {
    background: var(--white);
}

.pflegebereiche-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.pflegebereich-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
    background: var(--cream-light);
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid var(--border-light);
}

.pflegebereich-card-reverse {
    direction: rtl;
}

.pflegebereich-card-reverse > * {
    direction: ltr;
}

.pflegebereich-image {
    height: 100%;
    min-height: 400px;
    overflow: hidden;
}

.pflegebereich-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pflegebereich-content {
    padding: 48px 48px 48px 0;
}

.pflegebereich-card-reverse .pflegebereich-content {
    padding: 48px 0 48px 48px;
}

.pflegebereich-badge {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--brand-darker);
    background: var(--brand-lightest);
    padding: 6px 16px;
    border-radius: var(--radius-full);
    margin-bottom: 16px;
}

.pflegebereich-content h3 {
    font-size: clamp(1.8rem, 3vw, 2.2rem);
    color: var(--gray-800);
    margin-bottom: 14px;
}

.pflegebereich-content p {
    font-size: 1.02rem;
    line-height: 1.8;
    margin-bottom: 24px;
}

.pflegebereich-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 28px;
}

.pflegebereich-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--gray-700);
}

.pflegebereich-features i {
    width: 18px;
    height: 18px;
    color: var(--brand-darker);
    flex-shrink: 0;
}

/* =============================================
   4. PFLEGEGRADE TABLE
   ============================================= */
.pflegegrade {
    background: var(--brand-lightest);
}

.pflegegrade-table-wrap {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-light);
}

.pflegegrade-table {
    width: 100%;
    border-collapse: collapse;
    font-family: var(--font-body);
    font-size: 0.95rem;
}

.pflegegrade-table thead {
    background: var(--brand-darker);
    color: var(--white);
}

.pflegegrade-table th {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.88rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 16px 20px;
    text-align: left;
}

.pflegegrade-table td {
    padding: 16px 20px;
    border-bottom: 1px solid var(--border-light);
    color: var(--gray-700);
    vertical-align: top;
}

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

.pflegegrade-table tbody tr:hover {
    background: var(--brand-lightest);
}

.pflegegrade-table .grade-label {
    font-weight: 700;
    color: var(--brand-darker);
    white-space: nowrap;
}

.pflegegrade-note {
    margin-top: 24px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 18px 20px;
    border: 1px solid var(--border-light);
}

.pflegegrade-note i {
    width: 20px;
    height: 20px;
    color: var(--brand-darker);
    flex-shrink: 0;
    margin-top: 2px;
}

.pflegegrade-note p {
    font-size: 0.92rem;
    line-height: 1.65;
    color: var(--gray-600);
}

/* =============================================
   5. TAGESPFLEGEN OVERVIEW – Green accent section
   ============================================= */
.tagespflegen-overview {
    background: var(--sage-lightest);
}

.tagespflegen-overview .section-label {
    color: var(--sage-dark);
}

.tagespflegen-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 32px;
}

.tagespflege-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid transparent;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-sm);
}

.tagespflege-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--sage-lighter);
}

.tagespflege-card-image {
    height: 220px;
    overflow: hidden;
}

.tagespflege-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.tagespflege-card:hover .tagespflege-card-image img {
    transform: scale(1.04);
}

.tagespflege-card--inactive {
    pointer-events: none;
}

.tagespflege-card--inactive .tagespflege-card-image img {
    filter: grayscale(1) blur(5px);
    transform: scale(1.05);
}

.tagespflege-card--inactive .tagespflege-card-content {
    opacity: 0.5;
}

.tagespflege-card--inactive .tagespflege-aufbau-badge {
    opacity: 1;
}


.tagespflege-card-content {
    padding: 28px 24px;
}

.tagespflege-card-location {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--sage);
    margin-bottom: 10px;
}

.tagespflege-card-location i {
    width: 14px;
    height: 14px;
}

.tagespflege-card-content h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: var(--gray-800);
}

.tagespflege-card-content p {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

/* Coming Soon */
.tagespflege-card.coming-soon {
    background: var(--white);
    border: 2px dashed var(--gray-300);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 380px;
}

.tagespflege-card.coming-soon:hover {
    transform: none;
    box-shadow: none;
}

.coming-soon-content {
    text-align: center;
    padding: 40px;
}

.coming-soon-content i {
    width: 44px;
    height: 44px;
    color: var(--gray-400);
    margin-bottom: 14px;
}

.coming-soon-content h3 {
    font-size: 1.2rem;
    color: var(--gray-500);
    margin-bottom: 6px;
}

.coming-soon-content p {
    color: var(--gray-400);
    font-size: 0.92rem;
}

/* Seite im Aufbau Badge */
.tagespflege-aufbau-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #FFF8E1;
    border: 1px solid #FFE082;
    color: #F57F17;
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 8px 16px;
    border-radius: var(--radius-full);
    margin-top: 4px;
}

.tagespflege-aufbau-badge i {
    width: 16px;
    height: 16px;
}

/* =============================================
   6. DECISION SUPPORT
   ============================================= */
.decision {
    background: var(--white);
}

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

.decision-card {
    background: var(--gray-50);
    border-radius: var(--radius-xl);
    padding: 40px 28px 32px;
    text-align: center;
    border: 1px solid var(--border-light);
    transition: all var(--transition-base);
}

.decision-card:hover {
    border-color: var(--brand-light);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.decision-card-highlight {
    background: var(--brand-lightest);
    border-color: var(--brand-light);
}

.decision-icon {
    width: 68px;
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border-radius: 50%;
    color: var(--brand-darker);
    margin: 0 auto 22px;
    box-shadow: var(--shadow-sm);
}

.decision-icon i {
    width: 28px;
    height: 28px;
}

.decision-card h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: var(--gray-800);
}

.decision-card p {
    font-size: 0.92rem;
    line-height: 1.75;
    margin-bottom: 24px;
}

.decision-card .btn {
    width: 100%;
}

/* =============================================
   7. WHY KAMMERER
   ============================================= */
.why-kammerer {
    background: var(--brand-lightest);
}

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

.why-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    transition: all var(--transition-base);
    border: 1px solid transparent;
}

.why-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--brand-light);
}

.why-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--brand-lightest);
    border-radius: var(--radius-md);
    color: var(--brand-darker);
    margin-bottom: 18px;
}

.why-icon i {
    width: 24px;
    height: 24px;
}

.why-card h3 {
    margin-bottom: 8px;
    color: var(--gray-800);
    font-size: 1.3rem;
}

.why-card p {
    font-size: 0.92rem;
    line-height: 1.75;
}

/* =============================================
   8. ABOUT HUB
   ============================================= */
.about-hub {
    background: var(--white);
}

.about-hub-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.about-hub-image {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-hub-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 4 / 3;
}

.about-hub-content h2 {
    margin-bottom: 20px;
}

.about-hub-content p {
    font-size: 1.02rem;
    line-height: 1.85;
    margin-bottom: 16px;
}

.about-hub-values {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 28px;
}

.about-value-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--brand-lightest);
    color: var(--brand-darker);
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    padding: 7px 16px;
    border-radius: var(--radius-full);
}

.about-value-tag i {
    width: 15px;
    height: 15px;
}

/* =============================================
   9. CONTACT
   ============================================= */
.contact {
    background: var(--cream-light);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: start;
}

.contact-info h2 {
    margin-bottom: 14px;
}

.contact-info > p {
    font-size: 1.02rem;
    line-height: 1.8;
    margin-bottom: 32px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.contact-icon {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--brand-lightest);
    border-radius: var(--radius-md);
    color: var(--brand-darker);
    flex-shrink: 0;
}

.contact-icon i {
    width: 20px;
    height: 20px;
}

.contact-detail strong {
    display: block;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--gray-500);
    margin-bottom: 2px;
}

.contact-detail a,
.contact-detail span {
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray-800);
}

.contact-detail a:hover {
    color: var(--brand-darker);
}

.contact-note {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: var(--brand-lightest);
    border-radius: var(--radius-md);
    padding: 16px 18px;
    margin-top: 28px;
}

.contact-note-icon {
    width: 18px;
    height: 18px;
    color: var(--brand-darker);
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-note p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--gray-700);
}

/* Map */
.contact-map {
    margin-top: 32px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-light);
}

.contact-map--fullwidth {
    margin-top: 48px;
    height: 400px;
    border-radius: var(--radius-lg);
}

.contact-map--fullwidth .map-iframe-wrapper,
.contact-map--fullwidth iframe {
    width: 100%;
    height: 100%;
}

.map-consent {
    background: var(--gray-50);
    padding: 40px;
    text-align: center;
}

.map-consent i {
    margin-bottom: 12px;
}

.map-consent p {
    font-size: 0.92rem;
    margin-bottom: 8px;
}

.map-consent .map-consent-text {
    font-size: 0.85rem;
    color: var(--gray-500);
    margin-bottom: 16px;
}

.map-consent .btn {
    margin-right: 10px;
}

.map-iframe-wrapper {
    width: 100%;
    height: 280px;
}

.map-iframe-wrapper iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* Form */
.contact-form-wrapper {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 36px;
    box-shadow: var(--shadow-md);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-family: var(--font-body);
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--gray-700);
}

.form-group input,
.form-group select,
.form-group textarea {
    font-family: var(--font-body);
    font-size: 0.95rem;
    padding: 11px 15px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    background: var(--white);
    color: var(--text-primary);
    transition: all var(--transition-fast);
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--brand-darker);
    box-shadow: 0 0 0 3px rgba(74, 148, 192, 0.12);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray-400);
}

.form-group textarea {
    resize: vertical;
    min-height: 90px;
}

.form-hp {
    position: absolute;
    left: -10000px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.form-consent {
    display: grid;
    grid-template-columns: 20px 1fr;
    align-items: start;
    gap: 10px;
    font-size: 0.84rem;
    line-height: 1.5;
    color: var(--gray-600);
}

.form-consent input {
    width: 18px;
    height: 18px;
    margin-top: 1px;
    accent-color: var(--brand-darker);
}

.form-consent a {
    color: var(--brand-darker);
    text-decoration: underline;
}

.form-status {
    padding: 12px 14px;
    border-radius: var(--radius-md);
    background: var(--brand-lightest);
    color: var(--gray-700);
    font-size: 0.88rem;
    line-height: 1.5;
    text-align: center;
}

.form-status.is-success {
    background: #eaf5e4;
    color: #2f6424;
}

.form-status.is-error {
    background: #fff0ed;
    color: #8a3226;
}

.contact-form button[type="submit"]:disabled {
    cursor: wait;
    opacity: 0.7;
}

.form-privacy {
    font-size: 0.82rem;
    color: var(--gray-500);
    text-align: center;
    margin-top: 4px;
}

.form-privacy a {
    color: var(--brand-darker);
    text-decoration: underline;
}

/* =============================================
   10. FOOTER
   ============================================= */
.site-footer {
    background: var(--gray-900);
    padding: 56px 0 0;
    color: rgba(255, 255, 255, 0.7);
}

.footer-inner {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand .logo-main { color: var(--white); }
.footer-brand .logo-sub { color: var(--brand); }
.footer-brand .logo-icon-wrap {
    background: rgba(160, 200, 230, 0.2);
}
.footer-brand .logo-icon-wrap i { color: var(--brand); }

.footer-tagline {
    margin-top: 14px;
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.6;
}

.site-footer h4 {
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 18px;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-nav a,
.cookie-settings-trigger {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.92rem;
    transition: color var(--transition-fast);
}

.cookie-settings-trigger {
    width: fit-content;
    padding: 0;
    border: 0;
    background: transparent;
    font: inherit;
    cursor: pointer;
    text-align: left;
}

.footer-nav a:hover,
.cookie-settings-trigger:hover { color: var(--brand); }

.cookie-settings-trigger:focus-visible {
    outline: 2px solid var(--brand);
    outline-offset: 3px;
}

.footer-contact p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.92rem;
    margin-bottom: 5px;
}

.footer-contact a { color: rgba(255, 255, 255, 0.65); }
.footer-contact a:hover { color: var(--brand); }
.footer-contact-mail a { font-size: 0.85rem; }

.footer-contact-label {
    display: inline-block;
    width: 52px;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.footer-bottom p {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.3);
}

.footer-credit a { color: rgba(255, 255, 255, 0.3); }
.footer-credit a:hover { color: var(--brand); }

/* =============================================
   COOKIE CONSENT
   ============================================= */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: var(--white);
    border-top: 1px solid var(--border-color);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
    padding: 18px 24px;
    display: none;
}

.cookie-banner.active { display: block; }

.cookie-banner-inner {
    max-width: var(--container-max);
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.cookie-banner-inner p {
    flex: 1;
    font-size: 0.88rem;
    color: var(--gray-600);
    min-width: 280px;
}

.cookie-actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.cookie-accept,
.cookie-decline {
    font-size: 0.82rem;
    padding: 9px 20px;
}

/* =============================================
   SCROLL ANIMATIONS
   ============================================= */
.fade-in {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* =============================================
   RESPONSIVE – TABLET
   ============================================= */
@media (max-width: 1024px) {
    :root {
        --section-padding: 80px;
    }

    .header-inner { height: 72px; }
    .main-nav { display: none; }
    .header-cta { display: none; }
    .mobile-menu-toggle { display: flex; }

    .hero-hub {
        min-height: 680px;
        padding-top: 120px;
        padding-bottom: 60px;
    }

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

    .hero-hub-text {
        max-width: 500px;
    }

    .hero-hub-text h1 {
        max-width: 520px;
        font-size: clamp(2.45rem, 4.8vw, 3.05rem);
        line-height: 1.16;
    }

    .hero-hub-subtitle {
        max-width: 500px;
        font-size: 1.08rem;
        line-height: 1.65;
    }

    .pflegebereich-card {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .pflegebereich-card-reverse { direction: ltr; }

    .pflegebereich-image { min-height: 280px; }

    .pflegebereich-content { padding: 36px 32px !important; }

    .about-hub-inner {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .about-hub-image { max-height: 360px; }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .footer-inner {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

    .decision-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .why-grid {
        grid-template-columns: 1fr 1fr;
    }

    .pflegegrade-table { font-size: 0.88rem; }
    .pflegegrade-table th,
    .pflegegrade-table td { padding: 12px 14px; }
}

/* =============================================
   RESPONSIVE – MOBILE
   ============================================= */
@media (max-width: 640px) {
    :root {
        --section-padding: 60px;
        --container-padding: 18px;
    }

    html { font-size: 15px; }

    h1 { font-size: 2.2rem; }
    h2 { font-size: 1.75rem; }

    /* Logo */
    .logo-img { height: 40px; }

    /* Hero */
    .hero-hub {
        min-height: 0;
        padding-top: 108px;
        padding-bottom: 0;
        align-items: flex-start;
    }

    .hero-hub-text h1 {
        max-width: 330px;
        font-size: 2rem;
        line-height: 1.18;
    }

    .hero-hub-subtitle {
        max-width: 330px;
        font-size: 1rem;
    }

    .hero-hub-actions {
        flex-direction: column;
        max-width: 340px;
    }

    .hero-hub-actions .btn {
        width: 100%;
        flex: none;
        justify-content: center;
    }

    /* Sections */
    .tagespflegen-grid { grid-template-columns: 1fr; }
    .why-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .contact-form-wrapper { padding: 24px 18px; }

    /* Maps */
    .contact-map--fullwidth { height: 260px; }

    /* Team image */
    #ueber-kammerer img { border-radius: 8px; }

    /* Footer */
    .footer-inner {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 6px;
        text-align: center;
    }

    /* Legal */
    .legal-page { padding-top: 110px; }

    /* Pflegegrade table scroll */
    .pflegegrade-table-wrap { overflow-x: auto; }
    .pflegegrade-table { min-width: 600px; }
}
/* ============ LEGAL PAGES ============ */
.legal-page {
    padding-top: 140px;
}

.legal-container {
    max-width: 760px;
}

.legal-container h1 {
    margin-bottom: 48px;
}

.legal-container h2 {
    font-size: 1.15rem;
    margin-top: 40px;
    margin-bottom: 10px;
    color: var(--gray-900);
}

.legal-container p,
.legal-container li {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 12px;
}

.legal-container ul {
    padding-left: 1.4em;
    margin-bottom: 12px;
}

.legal-container a {
    color: var(--brand-darker);
}

.legal-back {
    display: inline-block;
    margin-bottom: 32px;
}

/* =============================================
   MATURE REFRESH - Pichlmayr-inspired, Kammerer-native
   ============================================= */
@font-face {
    font-family: 'Clemente';
    src: url('fonts/Clemente-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Clemente';
    src: url('fonts/Clemente-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Clemente';
    src: url('fonts/Clemente-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

:root {
    --brand: #BFD8E8;
    --brand-dark: #9EC4DA;
    --brand-darker: #4F7E95;
    --brand-light: #DCEBF3;
    --brand-lightest: #F3F9FC;

    --sage: #C6DABC;
    --sage-light: #D9E8D2;
    --sage-lighter: #E5F0E0;
    --sage-lightest: #F5FAF2;
    --sage-dark: #65865E;

    --teal: #7FA7A7;
    --teal-light: #EEF7F6;

    --accent: #9EC4DA;
    --accent-hover: #4F7E95;

    --warm-white: #FBFAF6;
    --cream: #F2F7F2;
    --cream-light: #F8FBF7;

    --gray-900: #1F2923;
    --gray-800: #2F3B34;
    --gray-700: #46534B;
    --gray-600: #68736C;
    --gray-500: #8C948F;
    --gray-400: #ADB4B0;
    --gray-300: #CED5D0;
    --gray-200: #E4E8E4;
    --gray-100: #F0F2EF;
    --gray-50: #F7F8F5;

    --font-heading: 'Lora', Georgia, serif;
    --font-body: 'Red Hat Text', 'Segoe UI', system-ui, sans-serif;

    --section-padding: 96px;
    --container-max: 1220px;

    --shadow-sm: 0 1px 2px rgba(31, 41, 35, 0.06);
    --shadow-md: 0 8px 22px rgba(31, 41, 35, 0.08);
    --shadow-lg: 0 18px 46px rgba(31, 41, 35, 0.12);
    --shadow-xl: 0 28px 70px rgba(31, 41, 35, 0.16);

    --radius-sm: 4px;
    --radius-md: 6px;
    --radius-lg: 8px;
    --radius-xl: 8px;
    --radius-full: 9999px;
}

html {
    font-size: 18px;
    scroll-padding-top: 96px;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.68;
    background: var(--warm-white);
}

a {
    color: var(--brand-darker);
}

a:hover {
    color: var(--accent-hover);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-style: normal;
    font-weight: 600;
    letter-spacing: -0.01em;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 3.8rem);
    line-height: 1.08;
    font-weight: 700;
}

h2 {
    font-size: clamp(1.85rem, 3.6vw, 2.7rem);
    line-height: 1.14;
    font-weight: 700;
}

h3 {
    font-size: clamp(1.4rem, 2vw, 1.75rem);
}

p {
    color: var(--gray-600);
}

.section {
    padding: var(--section-padding) 0;
}

section[id] {
    scroll-margin-top: 104px;
}

.section-label,
.hero-hub-label {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.13em;
    color: var(--brand-darker);
}

.section-header {
    margin-bottom: 44px;
}

.section-desc {
    max-width: 700px;
    color: var(--gray-600);
}

.btn {
    border-radius: var(--radius-full);
    border-width: 1.5px;
    font-weight: 600;
    letter-spacing: 0;
    padding: 13px 28px;
}

.btn-primary,
.btn-green {
    background: var(--brand-darker);
    border-color: var(--brand-darker);
    color: var(--white);
    box-shadow: 0 10px 24px rgba(74, 148, 192, 0.26);
}

.btn-primary:hover,
.btn-green:hover {
    background: var(--accent-hover);
    border-color: var(--accent-hover);
    color: var(--white);
    box-shadow: var(--shadow-md);
    transform: translateY(-1px);
}

.btn-outline {
    color: var(--brand-darker);
    border-color: color-mix(in srgb, var(--brand-darker) 48%, transparent);
}

.btn-outline:hover {
    background: var(--brand-darker);
    border-color: var(--brand-darker);
    color: var(--white);
}

.site-header {
    background: rgba(251, 250, 246, 0.96);
    border-bottom: 1px solid rgba(31, 41, 35, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.header-inner {
    height: 88px;
    gap: 24px;
}

.logo-img {
    height: 66px;
    filter: none;
}

.nav-link {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-style: italic;
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0;
    color: var(--gray-700);
    border-radius: var(--radius-md);
    padding: 9px 12px;
    white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
    color: var(--gray-900);
    background: rgba(255, 255, 255, 0.72);
    box-shadow: inset 0 -3px 0 var(--accent);
}

.header-cta {
    background: var(--brand-darker);
    border-color: var(--brand-darker);
}

/* Hero */
.hero-hub {
    min-height: 100vh;
    padding-top: 112px;
    padding-bottom: 84px;
    overflow: hidden;
    align-items: stretch;
    color: var(--white);
    background:
        linear-gradient(90deg, rgba(31, 45, 42, 0.78) 0%, rgba(31, 45, 42, 0.58) 40%, rgba(31, 45, 42, 0.18) 74%, rgba(31, 45, 42, 0.06) 100%),
        linear-gradient(180deg, rgba(191, 216, 232, 0.08) 0%, rgba(198, 218, 188, 0.18) 100%),
        url('images/hero.jpg') center / cover no-repeat;
}

.hero-hub::before {
    display: none;
}

.hero-hub-inner {
    min-height: calc(100vh - 196px);
    display: flex;
    align-items: center;
}

.hero-hub-text {
    max-width: 680px;
    pointer-events: auto;
}

.hero-hub-label {
    color: rgba(255, 255, 255, 0.86);
    margin-bottom: 18px;
}

.hero-hub-text h1 {
    max-width: 680px;
    margin-bottom: 24px;
    color: var(--white);
    text-wrap: balance;
}

.hero-hub-subtitle {
    max-width: 620px;
    margin-bottom: 24px;
    color: rgba(255, 255, 255, 0.86);
    font-size: clamp(1.1rem, 1.6vw, 1.28rem);
    line-height: 1.72;
}

.hero-hub-facts {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 22px;
    max-width: 650px;
    margin: 28px 0 32px;
    padding: 18px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.24);
    border-bottom: 1px solid rgba(255, 255, 255, 0.24);
    color: rgba(255, 255, 255, 0.84);
}

.hero-hub-facts span {
    display: inline-flex;
    gap: 6px;
    align-items: baseline;
    font-size: 0.96rem;
}

.hero-hub-facts strong {
    color: var(--white);
}

.hero-hub-actions {
    gap: 12px;
}

.hero-hub-actions .btn-outline {
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.68);
}

.hero-hub-actions .btn-outline:hover {
    background: var(--white);
    border-color: var(--white);
    color: var(--brand-darker);
}

/* Intro and impressions */
.home-intro {
    background: var(--warm-white);
    padding-bottom: 56px;
}

.home-intro-inner {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 56px;
    align-items: end;
}

.home-intro-copy h2 {
    max-width: 640px;
}

.home-intro-text {
    max-width: 680px;
    margin-left: auto;
    font-size: clamp(1.14rem, 1.8vw, 1.36rem);
    line-height: 1.72;
    color: var(--gray-700);
}

.impressions {
    background: var(--cream-light);
    padding-top: 84px;
}

.impressions-track {
    display: grid;
    grid-template-columns: minmax(0, 1.18fr) repeat(2, minmax(0, 1fr));
    grid-auto-rows: 250px;
    gap: 16px;
}

.impression-card {
    position: relative;
    min-height: 260px;
    margin: 0;
    overflow: hidden;
    border-radius: var(--radius-lg);
    background: var(--gray-100);
}

.impression-card-large {
    grid-row: span 2;
}

.impression-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.9) contrast(1.02);
    transition: transform var(--transition-slow);
}

.impression-card-detail img {
    object-position: 58% 66%;
}

.impression-card:hover img {
    transform: scale(1.035);
}

.impression-card figcaption {
    position: absolute;
    left: 14px;
    bottom: 14px;
    max-width: calc(100% - 28px);
    padding: 7px 11px;
    border-radius: var(--radius-md);
    background: rgba(31, 41, 35, 0.78);
    color: var(--white);
    font-size: 0.82rem;
    font-weight: 700;
    line-height: 1.25;
}

/* Dedicated location map */
.standorte-map {
    background: var(--brand-lightest);
}

.standorte-map-shell {
    width: min(1320px, calc(100% - 48px));
    margin: 0 auto;
}

.standorte-directory {
    margin-top: 44px;
}

.standorte-directory-intro {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 54px;
    align-items: end;
    margin-bottom: 30px;
}

.standorte-directory-intro h3 {
    max-width: 520px;
    margin: 8px 0 0;
    color: var(--gray-900);
    font-family: var(--font-heading);
    font-size: clamp(2rem, 3vw, 3rem);
    font-style: italic;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 1.04;
}

.standorte-directory-intro p {
    max-width: 680px;
    margin: 0;
    color: var(--gray-700);
    font-size: clamp(1.04rem, 1.35vw, 1.18rem);
    line-height: 1.72;
}

.standorte-directory-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.95fr) minmax(0, 0.9fr);
    gap: 18px;
    align-items: start;
}

.standorte-directory-column {
    --category-color: var(--brand-darker);
    position: relative;
    padding: 22px;
    overflow: hidden;
    border: 1px solid rgba(31, 41, 35, 0.08);
    border-radius: var(--radius-md);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.7)),
        var(--warm-white);
    box-shadow: 0 16px 36px rgba(31, 41, 35, 0.07);
}

.standorte-directory-column::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 4px;
    background: var(--category-color);
}

.standorte-directory-column--senior {
    --category-color: #73AF24;
}

.standorte-directory-column--care {
    --category-color: #168DCE;
}

.standorte-directory-column--service {
    --category-color: #D9815F;
}

.standorte-directory-column h4 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 14px;
    color: var(--gray-900);
    font-family: var(--font-heading);
    font-size: clamp(1.34rem, 1.8vw, 1.72rem);
    font-style: italic;
    font-weight: 400;
    line-height: 1.1;
}

.standorte-directory-column .legend-dot {
    width: 12px;
    height: 12px;
    flex: 0 0 auto;
}

.standorte-directory-column ul {
    display: grid;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.standorte-directory-column li {
    display: grid;
    gap: 3px;
    padding: 10px 12px;
    border: 1px solid rgba(31, 41, 35, 0.07);
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.66);
}

.standorte-directory-column strong {
    color: var(--gray-900);
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.35;
}

.standorte-directory-column span {
    color: var(--gray-600);
    font-size: 0.92rem;
    line-height: 1.45;
}

.standorte-directory-note {
    display: grid;
    gap: 4px;
    margin-top: 12px;
    padding: 15px 16px 14px;
    border-left: 4px solid #D9815F;
    border-radius: var(--radius-sm);
    background: rgba(247, 241, 232, 0.78);
}

.standorte-directory-note strong {
    color: var(--gray-900);
}

.standorte-directory-note span {
    color: var(--gray-700);
}

.legend-dot--green {
    background: var(--brand);
}

.legend-dot--blue {
    background: var(--brand-darker);
}

/* Content sections */
.pflegebereiche {
    background: var(--warm-white);
}

.pflegebereiche-grid {
    gap: 40px;
}

.pflegebereich-card {
    border-radius: var(--radius-lg);
    border: 1px solid rgba(31, 41, 35, 0.1);
    box-shadow: none;
    background: var(--white);
}

.pflegebereich-card:hover {
    box-shadow: var(--shadow-md);
    transform: none;
}

.pflegebereich-image {
    min-height: 390px;
}

.pflegebereich-content,
.pflegebereich-card-reverse .pflegebereich-content {
    padding: 54px 48px;
}

.pflegebereich-badge {
    border-radius: var(--radius-sm);
    background: var(--brand-lightest);
    color: var(--brand-darker);
}

.pflegebereich-features li i,
.contact-note-icon,
.contact-icon,
.decision-icon {
    color: var(--brand-darker);
}

.pflegegrade {
    background: var(--white);
}

.pflegegrade-table-wrap,
.contact-form-wrapper,
.contact-map,
.contact-map--fullwidth {
    border-radius: var(--radius-lg);
}

.pflegegrade-table th {
    background: var(--brand-darker);
}

.pflegegrade-table tbody tr:hover {
    background: var(--brand-lightest);
}

.pflegegrade-note,
.contact-note {
    background: var(--brand-lightest);
    border-radius: var(--radius-lg);
}

.tagespflegen-overview {
    background: var(--sage-lightest);
}

.tagespflege-card,
.decision-card,
.why-card,
.contact-form-wrapper {
    border-radius: var(--radius-lg);
}

.tagespflege-card {
    border: 1px solid rgba(48, 76, 46, 0.12);
    box-shadow: none;
}

.tagespflege-card:hover {
    border-color: rgba(48, 76, 46, 0.28);
    box-shadow: var(--shadow-md);
    transform: none;
}

.tagespflege-card--inactive {
    pointer-events: none;
}

.tagespflege-card--inactive .tagespflege-card-image img {
    filter: saturate(0.72) contrast(0.96);
    transform: none;
}

.tagespflege-card--inactive .tagespflege-card-content {
    opacity: 0.68;
}

.tagespflege-aufbau-badge {
    border-radius: var(--radius-md);
    color: #8C5B17;
}

.decision {
    background: var(--white);
}

.decision-card {
    background: var(--warm-white);
    border-color: rgba(31, 41, 35, 0.1);
}

.decision-card:hover {
    border-color: rgba(48, 76, 46, 0.28);
    box-shadow: var(--shadow-md);
    transform: none;
}

.decision-card-highlight {
    background: var(--brand-lightest);
}

.decision-icon,
.contact-icon {
    border-radius: var(--radius-md);
    background: var(--brand-lightest);
    box-shadow: none;
}

.about-hub {
    background: var(--warm-white);
}

#ueber-kammerer img {
    width: min(1080px, 100%);
    margin: 0 auto;
    border-radius: var(--radius-lg) !important;
    box-shadow: var(--shadow-lg);
}

.contact {
    background: var(--cream-light);
}

.form-group input,
.form-group select,
.form-group textarea {
    border-radius: var(--radius-md);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--brand-darker);
    box-shadow: 0 0 0 3px rgba(48, 76, 46, 0.13);
}

.site-footer {
    background: #172019;
}

.footer-brand .logo-img {
    filter: brightness(0) invert(1);
}

.footer-nav a:hover,
.footer-contact a:hover,
.footer-credit a:hover {
    color: var(--accent);
}

@media (max-width: 1024px) {
    .header-inner {
        height: 76px;
    }

    .hero-hub {
        min-height: 760px;
        padding-top: 104px;
        background-position: 58% center;
    }

    .hero-hub-inner {
        min-height: 600px;
    }

    .home-intro-inner {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .home-intro-text {
        margin-left: 0;
    }

    .impressions-track {
        grid-template-columns: 1fr 1fr;
    }

    .impression-card-large {
        grid-column: span 2;
        grid-row: span 1;
    }

    .standorte-directory-intro,
    .standorte-directory-grid {
        grid-template-columns: 1fr;
    }

    .standorte-directory-intro {
        gap: 18px;
    }

    .standorte-directory-grid {
        gap: 16px;
    }
}

@media (max-width: 640px) {
    :root {
        --section-padding: 64px;
    }

    html {
        font-size: 16px;
    }

    h1 {
        font-size: clamp(2.75rem, 14vw, 4rem);
    }

    h2 {
        font-size: clamp(2rem, 10vw, 2.7rem);
    }

    .logo-img {
        height: 48px;
    }

    .hero-hub {
        min-height: 720px;
        padding-top: 96px;
        padding-bottom: 54px;
        background:
            linear-gradient(180deg, rgba(31, 45, 42, 0.82) 0%, rgba(31, 45, 42, 0.58) 52%, rgba(31, 45, 42, 0.28) 100%),
            url('images/hero.jpg') 52% center / cover no-repeat;
    }

    .hero-hub-inner {
        min-height: 560px;
        align-items: flex-end;
    }

    .hero-hub-text h1,
    .hero-hub-subtitle {
        max-width: none;
    }

    .hero-hub-facts {
        display: grid;
        gap: 8px;
    }

    .hero-hub-actions {
        flex-direction: column;
        max-width: none;
    }

    .hero-hub-actions .btn {
        width: 100%;
    }

    .home-intro {
        padding-bottom: 40px;
    }

    .impressions-track {
        display: flex;
        gap: 14px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        padding-bottom: 8px;
        margin-right: calc(var(--container-padding) * -1);
    }

    .impression-card,
    .impression-card-large {
        flex: 0 0 82%;
        min-height: 330px;
        scroll-snap-align: start;
    }

    .standorte-map-shell {
        width: calc(100% - 24px);
    }

    .standorte-directory {
        margin-top: 30px;
    }

    .standorte-directory-grid {
        gap: 12px;
    }

    .standorte-directory-column {
        padding: 18px;
    }

    .standorte-directory-column li {
        padding: 10px 11px;
    }

    .pflegebereich-image {
        min-height: 280px;
    }

    .pflegebereich-content,
    .pflegebereich-card-reverse .pflegebereich-content {
        padding: 32px 24px !important;
    }

    .contact-map--fullwidth {
        height: 300px;
    }
}

/* ==========================================================================
   Design polish 2026-06-05: calmer premium start page
   ========================================================================== */

.site-header {
    background: rgba(251, 250, 246, 0.98);
    border-bottom: 1px solid rgba(31, 41, 35, 0.07);
    box-shadow: 0 10px 34px rgba(31, 41, 35, 0.055);
}

.header-inner {
    height: 94px;
}

.logo-img {
    height: 64px;
}

.main-nav {
    gap: 3px;
}

.nav-link {
    position: relative;
    padding: 10px 9px 13px;
    font-size: 0.8rem;
    letter-spacing: 0.04em;
    background: transparent;
    box-shadow: none;
}

.nav-link::after {
    content: "";
    position: absolute;
    right: 9px;
    bottom: 5px;
    left: 9px;
    height: 2px;
    border-radius: var(--radius-full);
    background: var(--accent);
    opacity: 0;
    transform: scaleX(0.4);
    transform-origin: center;
    transition: opacity var(--transition-base), transform var(--transition-base);
}

.nav-link:hover,
.nav-link.active {
    background: transparent;
    box-shadow: none;
}

.nav-link:hover::after,
.nav-link.active::after {
    opacity: 1;
    transform: scaleX(1);
}

.header-cta {
    min-height: 52px;
    padding-inline: 24px;
    border-radius: var(--radius-md);
    box-shadow: 0 14px 30px rgba(79, 126, 149, 0.22);
}

.mobile-menu-toggle {
    width: 46px;
    height: 46px;
    border: 1px solid rgba(31, 41, 35, 0.12);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.68);
}

.mobile-menu-toggle.active {
    border-color: rgba(79, 126, 149, 0.22);
    background: var(--brand-lightest);
}

.hero-hub {
    position: relative;
    min-height: 100vh;
    padding-top: 108px;
    padding-bottom: 88px;
    background:
        linear-gradient(90deg, rgba(24, 37, 32, 0.7) 0%, rgba(24, 37, 32, 0.56) 38%, rgba(24, 37, 32, 0.18) 72%, rgba(24, 37, 32, 0.04) 100%),
        radial-gradient(circle at 72% 36%, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0) 36%),
        url('images/hero.jpeg') 62% center / cover no-repeat;
}

.hero-hub::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 130px;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(251, 250, 246, 0) 0%, var(--warm-white) 100%);
    opacity: 0.56;
}

.hero-hub-inner {
    position: relative;
    z-index: 1;
    min-height: calc(100vh - 196px);
}

.hero-hub-text {
    max-width: 720px;
}

.hero-hub-label {
    display: inline-flex;
    margin-bottom: 16px;
    padding: 8px 11px;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.13);
    color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
}

.hero-hub-text h1 {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    max-width: 720px;
    margin-bottom: 22px;
    font-size: clamp(2.85rem, 5.1vw, 4.7rem);
}

.hero-title-line {
    display: inline-block;
    max-width: 100%;
    padding: 0.01em 0.18em 0.09em;
    border-radius: var(--radius-md);
    color: var(--white);
    line-height: 0.98;
    text-shadow: none;
    box-shadow: 0 16px 38px rgba(31, 41, 35, 0.18);
}

.hero-title-line--sage {
    background: rgba(101, 134, 94, 0.94);
}

.hero-title-line--blue {
    margin-left: 0.52em;
    background: rgba(79, 126, 149, 0.94);
}

.hero-title-line--soft {
    margin-left: 1.24em;
    background: rgba(191, 216, 232, 0.92);
    color: var(--gray-900);
}

.hero-hub-subtitle {
    max-width: 560px;
    margin-bottom: 20px;
    padding-left: 18px;
    border-left: 2px solid rgba(255, 255, 255, 0.48);
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.58;
}

.hero-hub-facts {
    max-width: 610px;
    margin: 20px 0 24px;
    padding: 13px 0;
    border-color: rgba(255, 255, 255, 0.3);
}

.hero-hub-actions .btn {
    min-width: 184px;
    justify-content: center;
    padding-block: 12px;
}

.hero-hub-actions .btn-primary {
    background: rgba(79, 126, 149, 0.96);
    border-color: rgba(79, 126, 149, 0.96);
}

.hero-hub-actions .btn-outline {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
}

.hero-scroll-cue {
    position: absolute;
    bottom: 22px;
    left: 50%;
    z-index: 2;
    width: 54px;
    height: 54px;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.86);
    box-shadow: 0 18px 38px rgba(31, 41, 35, 0.2);
    transform: translateX(-50%);
}

.hero-scroll-cue::before,
.hero-scroll-cue::after {
    content: "";
    position: absolute;
    left: 50%;
    background: var(--gray-700);
    transform: translateX(-50%);
}

.hero-scroll-cue::before {
    top: 15px;
    width: 2px;
    height: 20px;
}

.hero-scroll-cue::after {
    top: 28px;
    width: 12px;
    height: 12px;
    border-right: 2px solid var(--gray-700);
    border-bottom: 2px solid var(--gray-700);
    background: transparent;
    transform: translateX(-50%) rotate(45deg);
}

.home-intro {
    position: relative;
    padding-top: 90px;
    padding-bottom: 86px;
    background:
        linear-gradient(180deg, var(--warm-white) 0%, #ffffff 100%);
}

.home-intro-inner {
    gap: 68px;
}

.home-intro-copy h2 {
    max-width: 680px;
}

.home-intro-text {
    max-width: 710px;
    color: var(--gray-700);
}

.home-entry-grid {
    width: min(var(--container-max), calc(100% - (var(--container-padding) * 2)));
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    margin: 46px auto 0;
}

.home-entry-card {
    position: relative;
    min-height: 198px;
    padding: 24px;
    overflow: hidden;
    border: 1px solid rgba(31, 41, 35, 0.08);
    border-radius: var(--radius-lg);
    background: var(--white);
    color: var(--gray-900);
    box-shadow: 0 16px 40px rgba(31, 41, 35, 0.07);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.home-entry-card::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 6px;
    background: var(--brand-darker);
}

.home-entry-card::after {
    content: "";
    position: absolute;
    width: 132px;
    height: 132px;
    right: -46px;
    top: -48px;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.34);
}

.home-entry-card--blue {
    background: linear-gradient(145deg, #ffffff 0%, var(--brand-lightest) 100%);
}

.home-entry-card--sage {
    background: linear-gradient(145deg, #ffffff 0%, var(--sage-lightest) 100%);
}

.home-entry-card--sage::before {
    background: var(--sage-dark);
}

.home-entry-card--map {
    background: linear-gradient(145deg, #ffffff 0%, var(--teal-light) 100%);
}

.home-entry-card--map::before {
    background: var(--teal);
}

.home-entry-card--team {
    background: linear-gradient(145deg, #ffffff 0%, #f7f1e8 100%);
}

.home-entry-card--team::before {
    background: #b58a56;
}

.home-entry-kicker {
    position: relative;
    z-index: 1;
    margin-bottom: 10px;
    color: var(--gray-600);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.home-entry-card strong {
    position: relative;
    z-index: 1;
    display: block;
    margin-bottom: 12px;
    font-family: var(--font-heading);
    font-size: clamp(1.55rem, 2.2vw, 2rem);
    font-style: italic;
    font-weight: 400;
    line-height: 1.03;
    overflow-wrap: break-word;
    word-break: break-word;
    hyphens: auto;
}

.home-entry-card span:last-child {
    position: relative;
    z-index: 1;
    color: var(--gray-600);
    font-size: 0.95rem;
    line-height: 1.48;
}

.home-entry-card:hover {
    color: var(--gray-900);
    transform: translateY(-3px);
    box-shadow: 0 22px 54px rgba(31, 41, 35, 0.11);
}

.impressions {
    padding-top: 96px;
    background:
        linear-gradient(180deg, #ffffff 0%, var(--cream-light) 100%);
}

.impressions-track {
    grid-template-columns: minmax(0, 1.3fr) repeat(2, minmax(0, 0.95fr));
    grid-auto-rows: 270px;
    gap: 12px;
}

.impression-card {
    border-radius: var(--radius-lg);
    box-shadow: 0 14px 34px rgba(31, 41, 35, 0.08);
}

.impression-card img {
    filter: saturate(0.98) contrast(1.03);
}

.impression-card figcaption {
    left: 16px;
    bottom: 16px;
    background: rgba(31, 41, 35, 0.72);
    backdrop-filter: blur(6px);
}

@media (max-width: 1024px) {
    .header-inner {
        height: 78px;
    }

    .hero-hub {
        min-height: 740px;
        padding-top: 104px;
        padding-bottom: 78px;
        background:
            linear-gradient(90deg, rgba(24, 37, 32, 0.72) 0%, rgba(24, 37, 32, 0.54) 48%, rgba(24, 37, 32, 0.16) 100%),
            url('images/hero.jpeg') 64% center / cover no-repeat;
    }

    .hero-hub-inner {
        min-height: 558px;
    }

    .hero-hub-text h1 {
        font-size: clamp(2.75rem, 7vw, 4.3rem);
    }

    .hero-title-line--blue {
        margin-left: 0.28em;
    }

    .hero-title-line--soft {
        margin-left: 0.72em;
    }

    .home-entry-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .site-header {
        box-shadow: 0 8px 24px rgba(31, 41, 35, 0.06);
    }

    .logo-img {
        height: 50px;
    }

    .mobile-menu {
        position: fixed;
        top: 76px;
        right: 0;
        bottom: auto;
        left: 0;
        height: calc(100vh - 76px);
        min-height: 0;
        overflow-y: auto;
        padding: 28px 24px 34px;
        background: var(--warm-white);
        box-shadow: 0 22px 46px rgba(31, 41, 35, 0.12);
        z-index: 1001;
    }

    .mobile-nav {
        gap: 0;
    }

    .mobile-nav-link {
        padding: 17px 0;
        border-bottom: 1px solid rgba(31, 41, 35, 0.08);
        font-family: var(--font-heading);
        font-size: 1.42rem;
        font-style: italic;
    }

    .mobile-cta {
        margin-top: 26px;
    }

    .hero-hub {
        min-height: 740px;
        padding-top: 94px;
        padding-bottom: 66px;
        background:
            linear-gradient(180deg, rgba(24, 37, 32, 0.78) 0%, rgba(24, 37, 32, 0.52) 46%, rgba(24, 37, 32, 0.26) 100%),
            url('images/hero.jpeg') 70% center / cover no-repeat;
    }

    .hero-hub-inner {
        min-height: 578px;
        align-items: flex-end;
    }

    .hero-hub-label {
        margin-bottom: 16px;
        padding: 7px 9px;
        font-size: 0.7rem;
    }

    .hero-hub-text h1 {
        gap: 6px;
        margin-bottom: 18px;
        font-size: clamp(2.35rem, 11vw, 3rem);
    }

    .hero-title-line {
        padding-right: 0.16em;
        padding-left: 0.16em;
    }

    .hero-title-line--blue,
    .hero-title-line--soft {
        margin-left: 0;
    }

    .hero-hub-subtitle {
        padding-left: 14px;
        font-size: 1.05rem;
        line-height: 1.62;
    }

    .hero-hub-facts {
        margin: 18px 0 22px;
        padding: 12px 0;
    }

    .hero-scroll-cue {
        display: none;
    }

    .home-intro {
        padding-top: 66px;
        padding-bottom: 64px;
    }

    .home-entry-grid {
        grid-template-columns: 1fr;
        gap: 12px;
        margin: 32px auto 0;
    }

    .home-entry-card {
        min-height: 168px;
        padding: 22px;
    }

    .impressions {
        padding-top: 70px;
    }
}

/* ==========================================================================
   Standort-Farben (Legende & Verzeichnis)
   ========================================================================== */

.legend-dot--green {
    background: #73AF24;
}

.legend-dot--blue {
    background: #168DCE;
}

.legend-dot--friseur {
    background: #D9815F;
}

.legend-dot--physio {
    background: #26A7A1;
}

/* =============================================
   WOHN- UND PFLEGEKONZEPT PAGE
   ============================================= */
.home-concept-teaser {
    max-width: var(--container-max);
    margin: 44px auto 0;
    padding: 34px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 30px;
    align-items: center;
    background:
        linear-gradient(135deg, rgba(235, 243, 250, 0.94), rgba(232, 243, 237, 0.92)),
        var(--white);
    border: 1px solid rgba(160, 200, 230, 0.36);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

.home-concept-teaser h3 {
    font-size: clamp(1.7rem, 3vw, 2.45rem);
    margin-bottom: 10px;
}

.home-concept-teaser p {
    max-width: 780px;
}

.concept-hero {
    padding: 150px 0 96px;
    background:
        radial-gradient(circle at 16% 22%, rgba(232, 243, 237, 0.98), rgba(232, 243, 237, 0) 35%),
        linear-gradient(120deg, var(--cream-light), var(--white) 52%, var(--brand-lightest));
    overflow: hidden;
}

.concept-hero-inner {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1.08fr);
    gap: clamp(44px, 7vw, 92px);
    align-items: center;
}

.concept-hero-copy {
    max-width: 620px;
}

.concept-hero h1 {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 7px;
    font-size: clamp(2.6rem, 7vw, 5.25rem);
    line-height: 1.02;
    margin-bottom: 24px;
}

.concept-title-line {
    display: inline-block;
    padding: 0.03em 0.22em 0.12em;
    border-radius: var(--radius-sm);
}

.concept-title-line--sage {
    color: var(--white);
    background: rgba(107, 158, 138, 0.92);
}

.concept-title-line--blue {
    color: var(--white);
    background: rgba(74, 148, 192, 0.94);
    margin-left: 38px;
}

.concept-title-line--soft {
    color: var(--gray-900);
    background: rgba(197, 223, 240, 0.86);
    margin-left: 78px;
}

#team-hero .concept-title-line {
    white-space: nowrap;
}

.concept-hero-subtitle {
    max-width: 580px;
    font-size: 1.12rem;
    line-height: 1.8;
    margin-bottom: 30px;
}

.concept-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.concept-hero-media {
    position: relative;
}

.concept-hero-media img,
.concept-living-image img,
.concept-graphic img,
.concept-wheel img {
    width: 100%;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
}

.concept-hero-media img {
    aspect-ratio: 1 / 0.86;
    object-fit: cover;
}

.concept-hero-note {
    position: static;
    display: block;
    margin: 16px 8px 2px;
    padding: 13px 4px 0;
    border-top: 1px solid rgba(31, 41, 35, 0.1);
    background: none;
    box-shadow: none;
    color: var(--gray-500);
    font-family: var(--font-heading);
    font-style: italic;
    font-weight: 400;
    font-size: 1.02rem;
    line-height: 1.5;
    text-align: center;
}

.concept-hero-note i,
.concept-hero-note svg {
    display: none;
}

.concept-intro-grid,
.concept-split,
.concept-living-grid,
.concept-wheel-grid,
.concept-comparison-head {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
    gap: clamp(34px, 6vw, 76px);
    align-items: center;
}

.concept-reasons,
.concept-mini-grid,
.concept-block-list,
.concept-benefit-grid {
    display: grid;
    gap: 18px;
}

.concept-reasons {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.concept-reasons article,
.concept-mini-grid article,
.concept-block-list article,
.concept-compare-cards article,
.concept-flow article,
.concept-benefit-grid article {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.concept-reasons article {
    padding: 26px 24px;
}

.concept-reasons i,
.concept-block-list i {
    width: 30px;
    height: 30px;
    color: var(--brand-darker);
    margin-bottom: 16px;
}

.concept-reasons h3,
.concept-benefit-grid h3 {
    font-size: 1.45rem;
    margin-bottom: 10px;
}

.concept-house,
.concept-building-blocks,
.concept-partner {
    background: var(--gray-50);
}

.concept-house-card {
    position: relative;
    padding: 72px 30px 30px;
    background: var(--white);
    border: 1px solid rgba(160, 200, 230, 0.42);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
}

.concept-roof {
    position: absolute;
    left: 50%;
    top: 28px;
    width: 150px;
    height: 62px;
    transform: translateX(-50%) rotate(45deg);
    border-top: 10px solid var(--brand-darker);
    border-left: 10px solid var(--brand-darker);
    border-radius: 4px 0 0 0;
    opacity: 0.86;
}

.concept-floor {
    display: grid;
    gap: 7px;
    padding: 22px 24px;
    background: var(--cream-light);
    border: 1px solid var(--border-light);
    border-bottom: 0;
}

.concept-floor:first-of-type {
    border-radius: var(--radius-md) var(--radius-md) 0 0;
}

.concept-floor:last-of-type {
    border-bottom: 1px solid var(--border-light);
    border-radius: 0 0 var(--radius-md) var(--radius-md);
}

.concept-floor--soft {
    background: var(--sage-lightest);
}

.concept-floor--blue {
    background: var(--brand-lightest);
}

.concept-floor span,
.concept-compare-cards span,
.concept-flow span {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--brand-darker);
}

.section-desc-left {
    margin-left: 0;
    margin-right: 0;
}

.concept-check-list {
    display: grid;
    gap: 12px;
    margin-top: 28px;
}

.concept-check-list span {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--gray-700);
}

.concept-check-list i {
    width: 20px;
    height: 20px;
    color: var(--sage);
    margin-top: 4px;
    flex: 0 0 auto;
}

.concept-living {
    background: var(--white);
}

.concept-living-image img {
    aspect-ratio: 1 / 0.86;
    object-fit: cover;
}

.concept-mini-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 28px;
}

.concept-mini-grid article {
    padding: 22px;
    background: var(--cream-light);
}

.concept-mini-grid strong,
.concept-mini-grid span,
.concept-block-list strong,
.concept-block-list span {
    display: block;
}

.concept-mini-grid strong,
.concept-block-list strong {
    color: var(--gray-900);
    margin-bottom: 7px;
}

.concept-mini-grid span,
.concept-block-list span {
    color: var(--text-secondary);
    font-size: 0.94rem;
    line-height: 1.6;
}

.concept-wheel-grid {
    grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1.1fr);
}

.concept-wheel {
    margin: 0;
}

.concept-wheel img {
    box-shadow: none;
    border-radius: 0;
}

.concept-block-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.concept-block-list article {
    padding: 22px;
}

.concept-comparison-head {
    margin-bottom: 38px;
}

.concept-comparison-head p {
    font-size: 1.08rem;
}

.concept-graphic {
    margin: 0;
    padding: 12px;
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

.concept-graphic img {
    box-shadow: none;
    border-radius: var(--radius-lg);
}

.concept-compare-cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
    margin-top: 30px;
}

.concept-compare-cards article {
    padding: 28px;
}

.concept-compare-cards article:first-child {
    border-top: 5px solid var(--brand-darker);
}

.concept-compare-cards article:last-child {
    border-top: 5px solid var(--sage);
}

.concept-compare-cards h3 {
    margin: 8px 0 14px;
}

.concept-compare-cards ul {
    margin-left: 20px;
    color: var(--text-secondary);
}

.concept-costs {
    background: linear-gradient(135deg, var(--cream-light), var(--white) 46%, var(--brand-lightest));
}

.concept-formula {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
    gap: 10px;
    align-items: center;
    margin: 28px 0 18px;
}

.concept-formula span,
.concept-formula strong {
    display: flex;
    min-height: 70px;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 14px 16px;
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    color: var(--gray-800);
    font-size: 0.92rem;
    line-height: 1.35;
}

.concept-formula strong {
    background: var(--sage-lightest);
    color: var(--sage-dark);
}

.concept-formula i {
    width: 18px;
    height: 18px;
    color: var(--brand-darker);
}

.concept-note {
    font-size: 0.88rem;
    color: var(--text-muted);
}

.concept-graphic--small img {
    border-radius: var(--radius-lg);
}

.concept-flow {
    display: grid;
    gap: 16px;
}

.concept-flow article {
    position: relative;
    padding: 24px 24px 24px 82px;
}

.concept-flow span {
    position: absolute;
    left: 24px;
    top: 24px;
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    border-radius: var(--radius-full);
    background: var(--brand-lightest);
}

.concept-flow strong {
    display: block;
    margin-bottom: 5px;
}

.concept-benefits {
    background: var(--white);
}

.concept-benefit-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.concept-benefit-grid article {
    padding: 30px;
}

.concept-benefit-grid article:nth-child(2) {
    background: var(--sage-lightest);
}

.concept-benefit-grid article:nth-child(3) {
    background: var(--brand-lightest);
}

.concept-cta {
    background:
        linear-gradient(120deg, rgba(44, 51, 48, 0.88), rgba(74, 148, 192, 0.84)),
        url('images/tp-auerbach.jpg') center / cover;
    color: var(--white);
}

.concept-cta-inner {
    max-width: 760px;
}

.concept-cta .section-label,
.concept-cta h2,
.concept-cta p {
    color: var(--white);
}

.concept-cta p {
    color: rgba(255, 255, 255, 0.82);
    margin-bottom: 28px;
}

.concept-cta .btn-outline {
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.72);
}

.concept-cta .btn-outline:hover {
    background: var(--white);
    color: var(--brand-darker);
}

@media (max-width: 1100px) {
    .home-concept-teaser,
    .concept-hero-inner,
    .concept-intro-grid,
    .concept-split,
    .concept-living-grid,
    .concept-wheel-grid,
    .concept-comparison-head {
        grid-template-columns: 1fr;
    }

    .concept-reasons {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .home-concept-teaser {
        padding: 26px;
        grid-template-columns: 1fr;
        align-items: stretch;
    }

    .concept-hero {
        padding: 122px 0 72px;
    }

    .concept-title-line--blue,
    .concept-title-line--soft {
        margin-left: 0;
    }

    #team-hero h1 {
        font-size: clamp(2.25rem, 11vw, 2.65rem);
    }

    .concept-hero-note {
        position: static;
        margin: 16px 0 0;
    }

    .concept-mini-grid,
    .concept-block-list,
    .concept-compare-cards,
    .concept-benefit-grid {
        grid-template-columns: 1fr;
    }

    .concept-formula {
        grid-template-columns: 1fr;
        justify-items: stretch;
    }

    .concept-formula i {
        justify-self: center;
    }

    .concept-flow article {
        padding-left: 24px;
    }

    .concept-flow span {
        position: static;
        margin-bottom: 12px;
    }
}

/* Wohnkonzept QA refinements */
.header-inner {
    max-width: 1380px;
}

.concept-hero h1 {
    font-size: clamp(2.6rem, 5.8vw, 4.35rem);
}

.concept-title-line--blue {
    margin-left: 24px;
}

.concept-title-line--soft {
    margin-left: 44px;
}

.concept-reasons h3,
.concept-block-list strong,
.concept-benefit-grid h3 {
    font-family: var(--font-body);
    font-weight: 700;
}

.concept-reasons h3 {
    font-size: 0.98rem;
    overflow-wrap: anywhere;
}

.concept-benefit-grid h3 {
    font-size: 1.15rem;
}

.concept-formula {
    grid-template-columns: 1fr;
    justify-items: stretch;
}

.concept-formula i {
    justify-self: center;
}

@media (max-width: 1320px) {
    .main-nav {
        gap: 0;
    }

    .nav-link {
        padding-left: 10px;
        padding-right: 10px;
    }
}

@media (max-width: 1180px) {
    .header-cta {
        display: none;
    }
}

@media (max-width: 768px) {
    .concept-title-line--blue,
    .concept-title-line--soft {
        margin-left: 0;
    }
}

/* Wohnkonzept compact redesign */
.concept-intro,
.concept-house,
.concept-living,
.concept-building-blocks,
.concept-comparison,
.concept-costs,
.concept-partner,
.concept-benefits,
.concept-cta {
    display: none;
}

.concept-hero {
    padding-bottom: 78px;
}

.concept-hero .concept-hero-media--photo {
    display: grid;
    place-items: center;
    overflow: visible;
    padding: 12px;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(160, 200, 230, 0.34);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.concept-hero .concept-hero-media--photo img {
    width: 100%;
    aspect-ratio: 1 / 0.86;
    max-height: 620px;
    object-fit: cover;
    object-position: center;
    border-radius: calc(var(--radius-xl) - 8px);
    box-shadow: none;
}

.concept-hero-note svg,
.concept-hero-note i {
    width: 30px;
    height: 30px;
    color: var(--sage);
    flex: 0 0 auto;
}

.concept-refresh {
    position: relative;
}

.concept-refresh-head {
    max-width: 900px;
    margin: 0 auto 42px;
    text-align: center;
}

.concept-refresh-head h2 {
    margin-bottom: 18px;
}

.concept-refresh-head p {
    max-width: 820px;
    margin: 0 auto;
    font-size: 1.06rem;
}

.concept-pillars,
.concept-audience-grid,
.concept-detail-list,
.concept-info-bundle {
    display: grid;
    gap: 18px;
}

.concept-pillars {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.concept-pillars article,
.concept-audience-grid article,
.concept-detail-list article,
.concept-compact-table > div,
.concept-system-card,
.concept-decision-panel {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.concept-pillars article {
    padding: 24px 22px;
}

.concept-pillars span {
    display: inline-flex;
    width: 34px;
    height: 34px;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    color: var(--brand-darker);
    background: var(--brand-lightest);
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 0.82rem;
}

.concept-pillars h3,
.concept-audience-grid h3 {
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 9px;
}

.concept-pillars p,
.concept-audience-grid p,
.concept-detail-list span,
.concept-stack p {
    font-size: 0.94rem;
    line-height: 1.62;
}

.concept-pillars--cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: 1040px;
    margin: 0 auto;
}

.concept-pillars--centered article {
    text-align: center;
}

.concept-refresh--soft {
    background: var(--gray-50);
}

.concept-refresh--cream {
    background: var(--cream-light);
}

.concept-compact-grid,
.concept-service-focus,
.concept-info-bundle {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(340px, 1.05fr);
    gap: clamp(34px, 6vw, 76px);
    align-items: center;
}

.concept-system-card,
.concept-decision-panel {
    padding: clamp(26px, 4vw, 40px);
}

.concept-stack {
    display: grid;
    gap: 0;
    margin-top: 10px;
    overflow: hidden;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
}

.concept-stack > div {
    padding: 22px 24px;
    background: var(--white);
    border-bottom: 1px solid var(--border-light);
}

.concept-stack > div:nth-child(2) {
    background: var(--sage-lightest);
}

.concept-stack > div:last-child {
    border-bottom: 0;
    background: var(--brand-lightest);
}

.concept-stack small,
.concept-equation span,
.concept-compact-table strong {
    display: block;
    font-size: 0.74rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--brand-darker);
}

.concept-stack strong {
    display: block;
    margin: 5px 0 6px;
    color: var(--gray-900);
}

.concept-decision-panel h2,
.concept-info-bundle h2 {
    margin-bottom: 16px;
}

.concept-equation {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 26px;
}

.concept-equation span,
.concept-equation strong {
    padding: 14px;
    min-height: 68px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--cream-light);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
}

.concept-equation strong {
    color: var(--sage-dark);
    background: var(--sage-lightest);
}

.concept-service-circle {
    margin: 0;
}

.concept-service-circle img {
    width: min(100%, 620px);
    margin: 0 auto;
    filter: drop-shadow(0 20px 34px rgba(44, 51, 48, 0.12));
}

.concept-service-circle--wide img {
    display: block;
    width: min(100%, 920px);
    margin: 0 auto;
}

.concept-detail-list--row {
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.concept-detail-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 28px;
}

.concept-detail-list article {
    padding: 20px;
}

.concept-detail-list strong,
.concept-detail-list span {
    display: block;
}

.concept-detail-list strong {
    margin-bottom: 7px;
    color: var(--gray-900);
}

.concept-audience-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.concept-audience-grid article {
    padding: 28px;
}

.concept-audience-grid i {
    width: 32px;
    height: 32px;
    color: var(--brand-darker);
    margin-bottom: 16px;
}

.concept-audience-grid article:nth-child(2) {
    background: var(--sage-lightest);
}

.concept-audience-grid article:nth-child(3) {
    background: var(--brand-lightest);
}

.concept-compact-table {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.concept-compact-table > div {
    padding: 24px;
}

.concept-compact-table strong {
    margin-bottom: 14px;
}

.concept-compact-table span {
    display: block;
    padding: 11px 0;
    color: var(--text-secondary);
    border-top: 1px solid var(--border-light);
}

.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;
}

.concept-refresh--comparison {
    background: linear-gradient(180deg, var(--white) 0%, var(--brand-lightest) 100%);
}

.care-comparison-graphic {
    --stationary-accent: #DF8642;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1.08fr);
    gap: 14px;
    align-items: stretch;
    max-width: 900px;
    margin: 0 auto;
}

.care-comparison-card {
    min-width: 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(160, 200, 230, 0.45);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.care-comparison-card--concept {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(235, 243, 250, 0.95));
}

.care-comparison-card--stationary {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(252, 251, 248, 0.96));
    border-color: rgba(223, 134, 66, 0.28);
}

.care-comparison-card-head {
    display: flex;
    gap: 14px;
    align-items: center;
    padding: 18px 22px;
    border-bottom: 1px solid rgba(160, 200, 230, 0.36);
}

.care-comparison-card--stationary .care-comparison-card-head {
    border-bottom-color: rgba(223, 134, 66, 0.25);
}

.care-comparison-card-head > div > strong,
.care-comparison-card-head > div > span {
    display: block;
}

.care-comparison-card-head > div > strong {
    font-size: clamp(1.02rem, 1.6vw, 1.3rem);
    line-height: 1.18;
    color: var(--brand-darker);
}

.care-comparison-card--stationary .care-comparison-card-head > div > strong {
    color: #C86926;
}

.care-comparison-card-head > div > span {
    margin-top: 4px;
    font-size: 0.98rem;
    color: var(--text-primary);
}

.care-comparison-icon,
.care-comparison-saving-icon,
.care-comparison-benefits svg,
.care-investment-note svg {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-full);
}

.care-comparison-icon {
    width: 52px;
    height: 52px;
    color: var(--brand-darker);
    background: var(--brand-lightest);
    border: 1px solid rgba(160, 200, 230, 0.55);
}

.care-comparison-card--stationary .care-comparison-icon {
    color: #C86926;
    background: #FFF6EC;
    border-color: rgba(223, 134, 66, 0.42);
}

.care-comparison-icon svg,
.care-comparison-icon i {
    width: 26px;
    height: 26px;
    color: inherit;
    stroke: currentColor;
}

.care-comparison-saving {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 16px;
    align-items: center;
    padding: 20px;
}

.care-comparison-saving-icon {
    width: 88px;
    height: 88px;
    color: var(--brand-darker);
    background: rgba(160, 200, 230, 0.18);
    border: 1px solid rgba(160, 200, 230, 0.42);
}

.care-comparison-saving-icon svg,
.care-comparison-saving-icon i {
    width: 42px;
    height: 42px;
}

.care-comparison-saving p {
    margin: 0;
    color: var(--text-primary);
    font-size: clamp(0.98rem, 1.5vw, 1.14rem);
    line-height: 1.35;
}

.care-comparison-saving strong {
    display: block;
    margin-bottom: 4px;
    color: var(--brand-darker);
    font-size: clamp(1.55rem, 3vw, 2.2rem);
    line-height: 1.08;
}

.care-comparison-list {
    list-style: none;
    display: grid;
    gap: 0;
    padding: 0 22px 16px;
}

.care-comparison-list li {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 12px;
    align-items: start;
    padding: 9px 0;
    border-top: 1px solid rgba(160, 200, 230, 0.38);
    color: var(--text-primary);
}

.care-comparison-list svg,
.care-comparison-list i {
    width: 22px;
    height: 22px;
    color: var(--brand-darker);
    stroke-width: 2.6;
}

.care-comparison-callout {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 14px;
    align-items: center;
    margin: auto 22px 22px;
    padding: 14px 16px;
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(160, 200, 230, 0.45);
    border-radius: var(--radius-md);
}

.care-comparison-callout svg,
.care-comparison-callout i {
    width: 30px;
    height: 30px;
    color: var(--brand-darker);
    fill: rgba(160, 200, 230, 0.28);
}

.care-comparison-vs {
    z-index: 1;
    align-self: center;
    display: grid;
    place-items: center;
    width: 60px;
    height: 60px;
    margin: 0 -8px;
    border-radius: var(--radius-full);
    color: var(--white);
    background: linear-gradient(145deg, var(--gray-800), var(--gray-600));
    box-shadow: var(--shadow-lg);
    font-size: 1.3rem;
    font-weight: 800;
    letter-spacing: 0.02em;
}

.care-cost-panel {
    padding: 16px 22px 18px;
}

.care-cost-panel h3 {
    margin: 0;
    font-family: var(--font-body);
    font-size: 1.05rem;
    line-height: 1.25;
    color: var(--text-primary);
}

.care-cost-panel p {
    margin: 3px 0 12px;
    color: var(--text-secondary);
}

.care-cost-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    overflow: hidden;
    border: 1px solid rgba(223, 134, 66, 0.22);
    border-radius: var(--radius-md);
    background: var(--white);
}

.care-cost-table th,
.care-cost-table td {
    padding: 9px 16px;
    border-bottom: 1px solid rgba(223, 134, 66, 0.18);
    text-align: left;
}

.care-cost-table tr:last-child th,
.care-cost-table tr:last-child td {
    border-bottom: 0;
}

.care-cost-table th {
    width: 42%;
    color: var(--text-primary);
    font-weight: 700;
}

.care-cost-table td {
    color: var(--text-primary);
    font-weight: 700;
}

.care-cost-table .is-example th,
.care-cost-table .is-example td {
    background: #FFF2DE;
}

.care-cost-table .is-example td {
    color: #C86926;
}

.care-cost-table td span {
    display: inline-flex;
    margin-left: 12px;
    padding: 4px 10px;
    color: var(--white);
    background: #D8772F;
    border-radius: var(--radius-full);
    font-size: 0.82rem;
    font-weight: 700;
    vertical-align: middle;
}

.care-investment-note {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 14px;
    align-items: center;
    margin: auto 22px 22px;
    padding: 13px 16px;
    color: var(--text-primary);
    background: #FFF8EE;
    border: 1px solid rgba(223, 134, 66, 0.25);
    border-radius: var(--radius-md);
}

.care-investment-note svg,
.care-investment-note i {
    width: 40px;
    height: 40px;
    color: #C86926;
    border: 1px solid rgba(223, 134, 66, 0.45);
}

.care-investment-note p {
    margin: 0;
    line-height: 1.45;
}

.care-investment-note strong {
    color: #C86926;
}

.care-investment-note span {
    display: block;
    color: var(--text-secondary);
}

.care-comparison-benefits {
    display: grid;
    grid-template-columns: 1.12fr 1fr 1fr 1.18fr;
    gap: 0;
    margin-top: 18px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(160, 200, 230, 0.45);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.care-comparison-benefits article {
    min-width: 0;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 14px;
    align-items: center;
    padding: 22px;
    color: var(--text-primary);
    border-right: 1px solid rgba(160, 200, 230, 0.42);
}

.care-comparison-benefits article:last-child {
    border-right: 0;
}

.care-comparison-benefits svg,
.care-comparison-benefits i {
    width: 54px;
    height: 54px;
    padding: 13px;
    color: var(--brand-darker);
    background: var(--brand-lightest);
    border: 1px solid rgba(160, 200, 230, 0.6);
}

.care-comparison-benefits strong,
.care-comparison-benefits span {
    line-height: 1.35;
}

.care-comparison-footnote {
    max-width: 960px;
    margin: 18px auto 0;
    color: var(--text-muted);
    font-size: 0.88rem;
    text-align: center;
}

.concept-refresh--cta {
    background: linear-gradient(135deg, var(--gray-900), var(--brand-darker));
    color: var(--white);
}

.concept-next-steps {
    max-width: 760px;
}

.concept-next-steps .section-label,
.concept-next-steps h2,
.concept-next-steps p {
    color: var(--white);
}

.concept-next-steps p {
    color: rgba(255, 255, 255, 0.78);
    margin-bottom: 28px;
}

.concept-next-steps .btn-outline {
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.72);
}

.concept-next-steps .btn-outline:hover {
    color: var(--brand-darker);
    background: var(--white);
}

@media (max-width: 1100px) {
    .concept-pillars,
    .concept-compact-grid,
    .concept-service-focus,
    .concept-info-bundle {
        grid-template-columns: 1fr;
    }

    .concept-pillars {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .care-comparison-graphic {
        grid-template-columns: 1fr;
        max-width: 780px;
        margin: 0 auto;
    }

    .care-comparison-vs {
        justify-self: center;
        width: 74px;
        height: 74px;
        margin: -2px 0;
        font-size: 1.55rem;
    }

    .care-comparison-benefits {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        max-width: 780px;
        margin-left: auto;
        margin-right: auto;
    }

    .care-comparison-benefits article:nth-child(2) {
        border-right: 0;
    }

    .care-comparison-benefits article:nth-child(n + 3) {
        border-top: 1px solid rgba(160, 200, 230, 0.42);
    }
}

@media (max-width: 768px) {
    .concept-hero .concept-hero-media {
        padding: 18px;
    }

    .concept-hero .concept-hero-media img {
        max-height: 430px;
    }

    .concept-pillars,
    .concept-detail-list,
    .concept-audience-grid,
    .concept-compact-table,
    .concept-equation {
        grid-template-columns: 1fr;
    }

    .concept-refresh-head {
        text-align: left;
    }

    .care-comparison-card-head,
    .care-comparison-saving,
    .care-cost-panel {
        padding: 22px;
    }

    .care-comparison-saving {
        grid-template-columns: 1fr;
    }

    .care-comparison-saving-icon {
        width: 104px;
        height: 104px;
    }

    .care-comparison-saving-icon svg,
    .care-comparison-saving-icon i {
        width: 50px;
        height: 50px;
    }

    .care-comparison-list {
        padding: 0 22px 22px;
    }

    .care-comparison-callout,
    .care-investment-note {
        margin: auto 22px 22px;
    }

    .care-cost-table th,
    .care-cost-table td {
        padding: 12px 14px;
    }

    .care-comparison-benefits {
        grid-template-columns: 1fr;
    }

    .care-comparison-benefits article {
        border-right: 0;
        border-top: 1px solid rgba(160, 200, 230, 0.42);
    }

    .care-comparison-benefits article:first-child {
        border-top: 0;
    }
}

@media (max-width: 520px) {
    .care-comparison-card-head {
        align-items: flex-start;
    }

    .care-comparison-icon {
        width: 56px;
        height: 56px;
    }

    .care-comparison-icon svg,
    .care-comparison-icon i {
        width: 28px;
        height: 28px;
    }

    .care-comparison-card-head strong {
        font-size: 1.18rem;
    }

    .care-comparison-saving strong {
        font-size: 2rem;
    }

    .care-cost-table th,
    .care-cost-table td {
        font-size: 0.92rem;
    }

    .care-cost-table td span {
        display: table;
        margin: 7px 0 0;
    }

    .care-investment-note {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   STANDORTKARTE – Leaflet / OpenStreetMap (CARTO Positron)
   ========================================================================== */
.standorte-leaflet {
    position: relative;
    height: clamp(440px, 56vw, 660px);
    border: 1px solid rgba(48, 76, 46, 0.14);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background: linear-gradient(180deg, #f8fcfe 0%, #f3faf2 100%);
}

.standorte-leaflet-map {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.standorte-leaflet .leaflet-container {
    background: #eaf3f7;
    font-family: var(--font-body);
    border-radius: inherit;
}

/* Marker (Tropfenform in Markenfarben) */
.kmr-pin svg {
    display: block;
    filter: drop-shadow(0 3px 5px rgba(31, 41, 35, 0.35));
    transition: transform 0.15s ease;
}

.kmr-pin:hover svg {
    transform: scale(1.12);
}

/* Popups */
.kmr-popup {
    display: flex;
    flex-direction: column;
    gap: 3px;
    min-width: 168px;
}

.kmr-popup strong {
    font-size: 1.02rem;
    color: var(--gray-900);
}

.kmr-popup-service {
    font-size: 0.86rem;
    font-weight: 600;
    color: var(--brand-darker);
}

.kmr-popup-addr {
    font-size: 0.85rem;
    line-height: 1.4;
    color: var(--gray-700);
}

.kmr-popup-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 6px;
}

.kmr-popup-links a {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--brand-darker);
    text-decoration: none;
    border-bottom: 1px solid currentColor;
}

.kmr-popup-links a:hover {
    color: var(--brand-dark);
}

.standorte-leaflet .leaflet-popup-content {
    margin: 12px 14px;
}

.standorte-leaflet .leaflet-popup-content-wrapper {
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(31, 41, 35, 0.18);
}

/* Consent-Overlay (DSGVO) */
.standorte-leaflet-consent {
    position: absolute;
    inset: 0;
    z-index: 30;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 28px;
    text-align: center;
    background: linear-gradient(180deg, rgba(235, 243, 250, 0.92), rgba(243, 250, 242, 0.95));
    -webkit-backdrop-filter: blur(2px);
    backdrop-filter: blur(2px);
}

.standorte-leaflet-consent i {
    width: 40px;
    height: 40px;
    color: var(--brand-darker);
}

.standorte-leaflet-consent p {
    margin: 0;
    max-width: 440px;
}

.standorte-leaflet-consent strong {
    font-size: 1.15rem;
    color: var(--gray-900);
}

.standorte-leaflet-consent-text {
    font-size: 0.92rem;
    line-height: 1.6;
    color: var(--gray-700);
}

.standorte-leaflet-consent-text a {
    color: var(--brand-darker);
}

.standorte-leaflet-consent .btn {
    margin-top: 6px;
}

/* Legende */
.standorte-leaflet-legend {
    position: absolute;
    right: 16px;
    bottom: 16px;
    z-index: 20;
    display: grid;
    gap: 6px;
    padding: 12px 14px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(31, 41, 35, 0.08);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    font-size: 0.82rem;
    color: var(--gray-800);
    -webkit-backdrop-filter: blur(3px);
    backdrop-filter: blur(3px);
}

.standorte-leaflet-legend span {
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

@media (max-width: 640px) {
    .standorte-leaflet {
        height: clamp(380px, 76vw, 460px);
    }

    .standorte-leaflet-legend {
        right: 10px;
        bottom: 10px;
        gap: 4px;
        padding: 9px 10px;
        font-size: 0.74rem;
    }

    .standorte-leaflet-consent {
        padding: 20px;
    }

    .legal-container h1 {
        font-size: 2.25rem;
        overflow-wrap: anywhere;
    }
}
