/* ============================================
   Pflege-WG Liebknechtstraße - Stylesheet
   Warm, einladend, barrierearm
   ============================================ */

/* --- CSS Custom Properties --- */
:root {
    --color-primary: #2a7d6e;
    --color-primary-dark: #1e5e53;
    --color-primary-light: #3a9d8b;
    --color-primary-subtle: #e8f5f1;

    --color-warm: #d4a76a;
    --color-warm-light: #f5eadb;
    --color-warm-dark: #b8863f;

    --color-accent: #4a8f82;

    --color-text: #2d3748;
    --color-text-light: #5a6a7e;
    --color-text-muted: #8899aa;

    --color-bg: #fafaf8;
    --color-bg-alt: #f2f0ec;
    --color-white: #ffffff;

    --color-border: #e2ddd5;

    --font-body: 'Euclid Circular B', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-heading: 'Yoga Sans Pro', system-ui, -apple-system, 'Segoe UI', sans-serif;

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

    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;

    --transition: 0.3s ease;

    --container-max: 1200px;
    --section-padding: 100px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 18px;
}

body {
    font-family: var(--font-body);
    color: var(--color-text);
    background: var(--color-bg);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

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

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color var(--transition);
}

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

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    color: var(--color-text);
    line-height: 1.3;
}

h1 { font-size: 2.8rem; font-weight: 700; }
h2 { font-size: 2.2rem; font-weight: 700; }
h3 { font-size: 1.4rem; font-weight: 700; }
h4 { font-size: 1.1rem; font-weight: 700; }

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

/* --- Buttons --- */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all var(--transition);
    border: 2px solid transparent;
    text-decoration: none;
}

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

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

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

.btn-outline:hover {
    background: var(--color-white);
    color: var(--color-primary);
    transform: translateY(-2px);
}

.btn-full {
    width: 100%;
}

/* --- Header & Navigation --- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    transition: all var(--transition);
    border-bottom: 1px solid transparent;
}

.site-header.scrolled {
    box-shadow: var(--shadow-sm);
    border-bottom-color: var(--color-border);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    line-height: 1.2;
}

.logo-name {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-primary);
}

.logo-sub {
    font-size: 0.7rem;
    color: var(--color-text-light);
    letter-spacing: 0.03em;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 4px;
}

.main-nav a {
    display: block;
    padding: 8px 12px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-text);
    border-radius: var(--radius-sm);
    transition: all var(--transition);
    white-space: nowrap;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--color-primary);
    background: var(--color-primary-subtle);
}

/* Hamburger */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-text);
    border-radius: 2px;
    transition: all var(--transition);
}

/* --- Hero Section --- */
.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('images/hero-gemeinschaft.jpg') center center / cover no-repeat;
    color: var(--color-white);
    text-align: center;
    padding: 120px 24px 80px;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(30, 94, 83, 0.82) 0%,
        rgba(42, 125, 110, 0.7) 50%,
        rgba(74, 143, 130, 0.6) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 750px;
}

.hero-badge {
    display: inline-block;
    padding: 8px 24px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: var(--color-white);
}

.hero h1 {
    color: var(--color-white);
    margin-bottom: 16px;
    font-size: 3rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
    font-size: 1.3rem;
    font-weight: 300;
    margin-bottom: 12px;
    opacity: 0.95;
    letter-spacing: 0.03em;
}

.hero-text {
    font-size: 1.1rem;
    margin-bottom: 36px;
    opacity: 0.9;
    line-height: 1.6;
}

.hero .btn {
    margin: 0 8px 12px;
}

/* --- Intro Cards --- */
.intro {
    padding: 80px 0;
    background: var(--color-white);
}

.intro-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.intro-card {
    text-align: center;
    padding: 36px 24px;
    border-radius: var(--radius-lg);
    transition: all var(--transition);
    background: var(--color-bg);
}

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

.intro-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 20px;
    color: var(--color-primary);
    background: var(--color-primary-subtle);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.intro-icon svg {
    width: 34px;
    height: 34px;
}

.intro-card h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.intro-card p {
    font-size: 0.9rem;
    color: var(--color-text-light);
    line-height: 1.6;
}

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

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

.section-header h2 {
    margin-bottom: 16px;
    position: relative;
}

.section-header h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--color-warm);
    margin: 16px auto 0;
    border-radius: 2px;
}

.section-lead {
    font-size: 1.1rem;
    color: var(--color-text-light);
    line-height: 1.7;
}

/* --- Content Rows --- */
.content-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.content-row:last-child {
    margin-bottom: 0;
}

.content-row-reverse {
    direction: rtl;
}

.content-row-reverse > * {
    direction: ltr;
}

.content-text h3 {
    margin-bottom: 16px;
    color: var(--color-primary-dark);
}

.content-text p {
    margin-bottom: 16px;
    color: var(--color-text-light);
}

.content-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    width: 100%;
    height: 380px;
    object-fit: cover;
}

/* Feature List */
.feature-list {
    list-style: none;
    margin: 20px 0;
}

.feature-list li {
    padding: 8px 0 8px 32px;
    position: relative;
    color: var(--color-text-light);
}

.feature-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 14px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--color-primary-subtle);
    border: 2px solid var(--color-primary);
}

.feature-list li::after {
    content: '';
    position: absolute;
    left: 5px;
    top: 19px;
    width: 8px;
    height: 4px;
    border-left: 2px solid var(--color-primary);
    border-bottom: 2px solid var(--color-primary);
    transform: rotate(-45deg);
}

/* --- About Section --- */
.section-about {
    background: var(--color-white);
}

/* --- Facts Strip --- */
.facts-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin-top: 60px;
    background: var(--color-primary);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.fact {
    text-align: center;
    padding: 28px 16px;
    color: var(--color-white);
    border-right: 1px solid rgba(255,255,255,0.15);
}

.fact:last-child {
    border-right: none;
}

.fact strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 4px;
}

.fact span {
    font-size: 0.82rem;
    opacity: 0.85;
}

/* --- Gallery Strip --- */
.gallery-strip {
    padding: 0;
    overflow: hidden;
    background: var(--color-bg-alt);
}

.gallery-scroll {
    display: flex;
    gap: 6px;
    padding: 6px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.gallery-scroll::-webkit-scrollbar {
    display: none;
}

.gallery-scroll img {
    flex: 0 0 auto;
    width: 350px;
    height: 240px;
    object-fit: cover;
    border-radius: var(--radius-md);
    scroll-snap-align: start;
    transition: transform var(--transition);
}

.gallery-scroll img:hover {
    transform: scale(1.02);
}

/* --- Care Section --- */
.section-care {
    background: var(--color-bg);
}

.care-partner-banner {
    background: linear-gradient(135deg, var(--color-primary-subtle), var(--color-warm-light));
    border-radius: var(--radius-lg);
    padding: 40px 48px;
    margin-bottom: 60px;
    border-left: 5px solid var(--color-primary);
}

.badge {
    display: inline-block;
    padding: 4px 14px;
    background: var(--color-primary);
    color: var(--color-white);
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 12px;
}

.care-partner-info h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: var(--color-primary-dark);
}

.care-partner-info p {
    color: var(--color-text-light);
    max-width: 700px;
    line-height: 1.7;
}

.care-partner-info em {
    color: var(--color-primary);
    font-style: italic;
}

/* Care Services */
.care-services {
    margin-top: 24px;
}

.care-service {
    padding: 20px 0;
    border-bottom: 1px solid var(--color-border);
}

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

.care-service h4 {
    color: var(--color-primary);
    margin-bottom: 8px;
}

.care-service p {
    color: var(--color-text-light);
    font-size: 0.95rem;
}

/* Values Strip (compact) */
.values-strip {
    margin-top: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    padding: 24px 32px;
    background: var(--color-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.values-label {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--color-primary-dark);
}

.values-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.value-tag {
    display: inline-block;
    padding: 6px 16px;
    background: var(--color-primary-subtle);
    color: var(--color-primary-dark);
    border-radius: 20px;
    font-size: 0.82rem;
    font-weight: 600;
}

/* --- Family Section --- */
.section-family {
    background: var(--color-white);
}

.family-benefits {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 60px;
}

.benefit-card {
    padding: 36px 32px;
    background: var(--color-bg);
    border-radius: var(--radius-lg);
    border-top: 4px solid var(--color-warm);
    transition: all var(--transition);
}

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

.benefit-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: var(--color-primary-subtle);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

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

.benefit-card h4 {
    margin-bottom: 12px;
    color: var(--color-primary-dark);
}

.benefit-card p {
    color: var(--color-text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* --- Tagespflege Section --- */
.section-tagespflege {
    background: var(--color-bg-alt);
}

.tagespflege-banner {
    background: linear-gradient(135deg, var(--color-warm-light) 0%, var(--color-primary-subtle) 100%);
    border-radius: var(--radius-lg);
    padding: 40px 48px;
    margin-bottom: 50px;
    border-left: 5px solid var(--color-warm);
    box-shadow: var(--shadow-sm);
}

.tagespflege-banner-info h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: var(--color-primary-dark);
}

.tagespflege-banner-info p {
    color: var(--color-text);
    line-height: 1.75;
    max-width: 800px;
}

.tagespflege-benefits {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.tagespflege-benefits .benefit-card {
    background: var(--color-white);
}

/* --- Costs Section --- */
.section-costs {
    background: var(--color-bg);
}

.costs-overview {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 60px;
}

.cost-block {
    text-align: center;
    padding: 40px 28px;
    background: var(--color-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
}

.cost-block:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.cost-icon {
    width: 68px;
    height: 68px;
    margin: 0 auto 20px;
    color: var(--color-primary);
    background: var(--color-primary-subtle);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cost-icon svg {
    width: 32px;
    height: 32px;
}

.cost-block h3 {
    margin-bottom: 12px;
    font-size: 1.2rem;
}

.cost-block p {
    color: var(--color-text-light);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Funding */
.funding-section {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 48px;
    box-shadow: var(--shadow-sm);
}

.funding-section h3 {
    margin-bottom: 12px;
    color: var(--color-primary-dark);
}

.funding-section > p {
    color: var(--color-text-light);
    margin-bottom: 32px;
}

.funding-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 36px;
}

.funding-item {
    padding: 24px;
    background: var(--color-primary-subtle);
    border-radius: var(--radius-md);
}

.funding-item strong {
    display: block;
    margin-bottom: 8px;
    color: var(--color-primary-dark);
    font-size: 1rem;
}

.funding-item p {
    color: var(--color-text-light);
    font-size: 0.9rem;
    line-height: 1.5;
}

.funding-cta {
    text-align: center;
    padding-top: 12px;
    border-top: 1px solid var(--color-border);
}

.funding-cta p {
    color: var(--color-text-light);
    margin-bottom: 20px;
}

/* --- Booking Section --- */
.section-booking {
    background: linear-gradient(135deg, var(--color-primary-subtle) 0%, var(--color-warm-light) 100%);
}

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

.booking-highlight {
    margin-bottom: 32px;
}

.booking-highlight h3 {
    color: var(--color-primary-dark);
    margin-bottom: 12px;
}

.booking-highlight p {
    color: var(--color-text-light);
}

.booking-times {
    margin-bottom: 32px;
}

.booking-times h4 {
    margin-bottom: 8px;
    color: var(--color-text);
}

.booking-times > p {
    color: var(--color-text-light);
    margin-bottom: 14px;
}

.time-slots {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.time-slot {
    display: inline-block;
    padding: 10px 20px;
    background: var(--color-white);
    border: 2px solid var(--color-primary);
    border-radius: var(--radius-sm);
    font-weight: 600;
    color: var(--color-primary);
    font-size: 0.95rem;
}

.booking-alternative h4 {
    margin-bottom: 8px;
    color: var(--color-text);
}

.booking-alternative > p {
    color: var(--color-text-light);
    margin-bottom: 10px;
}

.phone-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-primary);
    padding: 8px 0;
}

.phone-link:hover {
    color: var(--color-primary-dark);
}

.contact-name {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-top: 4px;
}

/* Booking Widget / Iframe */
.booking-iframe-wrapper {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    min-height: 500px;
}

.booking-iframe-wrapper iframe {
    display: block;
    width: 100%;
    min-height: 600px;
}

/* --- Events Section --- */
.section-events {
    background: var(--color-bg);
}

.event-card {
    display: flex;
    gap: 40px;
    background: var(--color-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition);
}

.event-card:hover {
    box-shadow: var(--shadow-lg);
}

.event-featured {
    border: 2px solid var(--color-primary);
}

.event-date-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 140px;
    padding: 32px 24px;
    background: var(--color-primary);
    color: var(--color-white);
    text-align: center;
}

.event-day {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
    font-family: var(--font-heading);
}

.event-month {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 4px;
}

.event-year {
    display: block;
    font-size: 0.85rem;
    opacity: 0.7;
    margin-top: 2px;
}

.event-details {
    padding: 36px 40px 36px 0;
    flex: 1;
}

.event-label {
    display: inline-block;
    padding: 4px 14px;
    background: var(--color-warm-light);
    color: var(--color-warm-dark);
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 12px;
}

.event-details h3 {
    font-size: 1.6rem;
    margin-bottom: 16px;
    color: var(--color-primary-dark);
}

.event-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
}

.event-meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--color-text-light);
    font-size: 0.95rem;
    font-weight: 600;
}

.event-meta-item svg {
    color: var(--color-primary);
    flex-shrink: 0;
}

.event-details p {
    color: var(--color-text-light);
    margin-bottom: 16px;
    line-height: 1.7;
}

.event-highlights {
    list-style: none;
    margin: 20px 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.event-highlights li {
    padding: 8px 0 8px 28px;
    position: relative;
    color: var(--color-text-light);
    font-size: 0.95rem;
}

.event-highlights li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 13px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--color-primary-subtle);
    border: 2px solid var(--color-primary);
}

.event-highlights li::after {
    content: '';
    position: absolute;
    left: 4px;
    top: 18px;
    width: 7px;
    height: 3px;
    border-left: 2px solid var(--color-primary);
    border-bottom: 2px solid var(--color-primary);
    transform: rotate(-45deg);
}

.event-note {
    font-weight: 600;
    color: var(--color-primary) !important;
    font-size: 0.95rem;
}

.events-newsletter {
    margin-top: 48px;
    background: linear-gradient(135deg, var(--color-primary-subtle), var(--color-warm-light));
    border-radius: var(--radius-lg);
    padding: 40px 48px;
    text-align: center;
}

.events-newsletter h3 {
    margin-bottom: 12px;
    color: var(--color-primary-dark);
}

.events-newsletter p {
    color: var(--color-text-light);
    margin-bottom: 20px;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
}

/* Events Responsive */
@media (max-width: 768px) {
    .event-card {
        flex-direction: column;
    }

    .event-date-badge {
        flex-direction: row;
        gap: 12px;
        min-width: auto;
        padding: 20px 24px;
    }

    .event-day {
        font-size: 2rem;
    }

    .event-details {
        padding: 0 24px 32px;
    }

    .event-highlights {
        grid-template-columns: 1fr;
    }

    .events-newsletter {
        padding: 28px;
    }
}

/* --- Contact Section --- */
.section-contact {
    background: var(--color-white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 48px;
    margin-bottom: 60px;
}

.contact-card {
    padding: 32px;
    background: var(--color-bg);
    border-radius: var(--radius-lg);
    margin-bottom: 24px;
}

.contact-card h3 {
    margin-bottom: 20px;
    color: var(--color-primary-dark);
    font-size: 1.2rem;
}

.contact-person {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.contact-details strong {
    display: block;
    font-size: 1.1rem;
}

.contact-details span {
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-method {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    background: var(--color-white);
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--color-primary);
    transition: all var(--transition);
}

.contact-method:hover {
    background: var(--color-primary-subtle);
    color: var(--color-primary-dark);
}

.contact-card address {
    font-style: normal;
    color: var(--color-text-light);
    line-height: 1.8;
}

/* Contact Form */
.contact-form {
    background: var(--color-bg);
    padding: 40px;
    border-radius: var(--radius-lg);
}

.contact-form h3 {
    margin-bottom: 24px;
    color: var(--color-primary-dark);
}

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

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 6px;
    color: var(--color-text);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--color-border);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--color-text);
    background: var(--color-white);
    transition: border-color var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px var(--color-primary-subtle);
}

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

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

.form-privacy {
    margin-bottom: 24px;
}

.checkbox-label {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    cursor: pointer;
    font-size: 0.85rem;
    color: var(--color-text-light);
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin-top: 3px;
    flex-shrink: 0;
}

.form-note {
    margin-top: 12px;
    font-size: 0.8rem;
    color: var(--color-text-muted);
    text-align: center;
}

/* Map */
.map-container {
    margin-top: 20px;
}

.map-container h3 {
    text-align: center;
    margin-bottom: 24px;
    color: var(--color-primary-dark);
}

.map-embed {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.map-embed iframe {
    display: block;
}

/* --- Footer --- */
.site-footer {
    background: var(--color-text);
    color: rgba(255, 255, 255, 0.8);
    padding: 0;
}

/* Partner Banner (oben im Footer) */
.footer-partner-banner {
    background: rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 32px 24px;
    max-width: var(--container-max);
    margin: 0 auto;
}

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

.partner-label {
    padding: 4px 12px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: rgba(255, 255, 255, 0.5);
}

.partner-logo {
    background: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 18px;
    border-radius: var(--radius-sm);
}

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

.partner-claim {
    font-style: italic;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.45);
}

/* Footer Grid */
.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1.2fr 1fr;
    gap: 40px;
    padding: 40px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid h4 {
    color: var(--color-white);
    font-size: 0.92rem;
    margin-bottom: 14px;
    font-family: var(--font-body);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-size: 0.78rem;
}

.footer-about address {
    font-style: normal;
    font-size: 0.85rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact-name {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 8px;
}

.footer-phone,
.footer-email {
    display: block;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
    margin-bottom: 4px;
    transition: color var(--transition);
}

.footer-phone:hover,
.footer-email:hover {
    color: var(--color-white);
}

.footer-phone {
    font-weight: 600;
    font-size: 0.95rem;
}

.footer-nav ul {
    list-style: none;
    columns: 2;
    column-gap: 20px;
}

.footer-nav li {
    margin-bottom: 6px;
}

.footer-nav a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.82rem;
    transition: color var(--transition);
}

.footer-nav a:hover {
    color: var(--color-white);
}

/* Footer Bottom */
.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 0;
    font-size: 0.78rem;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.35);
}

.footer-legal {
    display: flex;
    gap: 20px;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.35);
    font-size: 0.78rem;
}

.footer-legal a:hover {
    color: rgba(255, 255, 255, 0.7);
}

/* --- Back to Top --- */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--color-primary);
    color: var(--color-white);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all var(--transition);
    box-shadow: var(--shadow-md);
    z-index: 900;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--color-primary-dark);
    transform: translateY(-3px);
}

.back-to-top svg {
    width: 20px;
    height: 20px;
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* ============================================
   RESPONSIVE
   ============================================ */

/* Tablet Landscape */
@media (max-width: 1024px) {
    :root {
        --section-padding: 70px;
    }

    html { font-size: 17px; }
    h1 { font-size: 2.3rem; }
    h2 { font-size: 1.9rem; }

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

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

/* ---- MOBILE (Tablet Portrait + Phone) ---- */
@media (max-width: 768px) {
    :root {
        --section-padding: 50px;
    }

    html { font-size: 16px; }

    .container {
        padding: 0 20px;
    }

    /* ===== MOBILE NAV ===== */
    .nav-toggle {
        display: flex;
    }

    .main-nav {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: var(--color-white);
        box-shadow: var(--shadow-xl);
        padding: 12px 0;
        transform: translateY(-120%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.35s ease;
        z-index: 999;
    }

    .main-nav.open {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 0;
    }

    .main-nav a {
        padding: 15px 24px;
        font-size: 1rem;
        border-bottom: 1px solid var(--color-bg-alt);
        display: block;
    }

    .main-nav li:last-child a {
        border-bottom: none;
    }

    /* ===== HERO - MOBIL ===== */
    .hero {
        min-height: 85vh;
        min-height: 85dvh;
        padding: 110px 20px 60px;
        background-position: 65% center;
        align-items: flex-end;
    }

    .hero-overlay {
        background: linear-gradient(
            180deg,
            rgba(30, 94, 83, 0.5) 0%,
            rgba(30, 94, 83, 0.65) 40%,
            rgba(30, 94, 83, 0.88) 100%
        );
    }

    .hero-content {
        padding-bottom: 20px;
    }

    .hero-badge {
        font-size: 0.65rem;
        padding: 6px 14px;
        margin-bottom: 14px;
        letter-spacing: 0.06em;
    }

    .hero h1 {
        font-size: 1.75rem;
        line-height: 1.3;
        margin-bottom: 10px;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 8px;
    }

    .hero-text {
        font-size: 0.88rem;
        margin-bottom: 24px;
        line-height: 1.5;
    }

    .hero .btn {
        display: block;
        margin: 0 0 10px;
        padding: 15px 20px;
        font-size: 0.95rem;
        border-radius: var(--radius-md);
    }

    .hero .btn-outline {
        background: rgba(255,255,255,0.15);
    }

    /* ===== INTRO KARTEN ===== */
    .intro {
        padding: 40px 0;
    }

    .intro-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .intro-card {
        padding: 20px 14px;
        border-radius: var(--radius-md);
    }

    .intro-icon {
        width: 52px;
        height: 52px;
        margin-bottom: 12px;
    }

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

    .intro-card h3 {
        font-size: 0.88rem;
        margin-bottom: 6px;
    }

    .intro-card p {
        font-size: 0.78rem;
        line-height: 1.45;
    }

    /* ===== SECTIONS ALLGEMEIN ===== */
    .section-header {
        margin-bottom: 32px;
    }

    .section-header h2 {
        font-size: 1.5rem;
    }

    .section-header h2::after {
        width: 40px;
        margin-top: 12px;
    }

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

    /* ===== CONTENT ROWS (Text + Bild) ===== */
    .content-row,
    .content-row-reverse {
        grid-template-columns: 1fr;
        gap: 20px;
        direction: ltr;
        margin-bottom: 40px;
    }

    .content-text h3 {
        font-size: 1.15rem;
    }

    .content-text p {
        font-size: 0.9rem;
    }

    .content-image {
        order: -1;
    }

    .content-image img {
        height: 220px;
        border-radius: var(--radius-md);
        box-shadow: var(--shadow-md);
    }

    .feature-list li {
        font-size: 0.9rem;
        padding: 6px 0 6px 28px;
    }

    .feature-list li::before {
        width: 16px;
        height: 16px;
        top: 11px;
    }

    .feature-list li::after {
        left: 4px;
        top: 16px;
        width: 7px;
        height: 3px;
    }

    /* ===== GALERIE ===== */
    .gallery-scroll {
        padding: 4px;
        gap: 4px;
    }

    .gallery-scroll img {
        width: 240px;
        height: 170px;
        border-radius: var(--radius-sm);
    }

    /* ===== PFLEGE / CARE ===== */
    .care-partner-banner {
        padding: 24px 20px;
        border-left-width: 4px;
    }

    .care-partner-info h3 {
        font-size: 1.15rem;
    }

    .care-partner-info p {
        font-size: 0.88rem;
    }

    .care-service {
        padding: 16px 0;
    }

    .care-service h4 {
        font-size: 1rem;
    }

    .care-service p {
        font-size: 0.88rem;
    }

    /* Werte Strip */
    .values-strip {
        margin-top: 36px;
        flex-direction: column;
        gap: 12px;
        padding: 20px;
        text-align: center;
    }

    .values-tags {
        justify-content: center;
    }

    .value-tag {
        font-size: 0.78rem;
        padding: 5px 12px;
    }

    /* Facts Strip */
    .facts-strip {
        grid-template-columns: repeat(2, 1fr);
        margin-top: 36px;
    }

    .fact {
        padding: 20px 12px;
        border-bottom: 1px solid rgba(255,255,255,0.15);
    }

    .fact:nth-child(odd) {
        border-right: 1px solid rgba(255,255,255,0.15);
    }

    .fact:nth-child(even) {
        border-right: none;
    }

    .fact:nth-last-child(-n+2) {
        border-bottom: none;
    }

    .fact strong {
        font-size: 1.4rem;
    }

    /* ===== FÜR ANGEHÖRIGE ===== */
    .family-benefits {
        grid-template-columns: 1fr;
        gap: 14px;
        margin-top: 36px;
    }

    .benefit-card {
        padding: 22px 20px;
        border-top-width: 3px;
    }

    .benefit-icon {
        width: 44px;
        height: 44px;
        margin-bottom: 12px;
    }

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

    .benefit-card h4 {
        font-size: 1rem;
        margin-bottom: 8px;
    }

    .benefit-card p {
        font-size: 0.88rem;
    }

    /* ===== TAGESPFLEGE ===== */
    .tagespflege-banner {
        padding: 24px 22px;
        margin-bottom: 28px;
        border-left-width: 4px;
    }

    .tagespflege-banner-info h3 {
        font-size: 1.15rem;
    }

    .tagespflege-banner-info p {
        font-size: 0.92rem;
        line-height: 1.65;
    }

    .tagespflege-benefits {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    /* ===== KOSTEN ===== */
    .costs-overview {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .cost-block {
        padding: 20px;
        text-align: left;
        display: flex;
        align-items: center;
        gap: 16px;
    }

    .cost-icon {
        margin: 0;
        min-width: 52px;
        width: 52px;
        height: 52px;
        flex-shrink: 0;
    }

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

    .cost-block h3 {
        font-size: 1rem;
        margin-bottom: 4px;
    }

    .cost-block p {
        font-size: 0.82rem;
    }

    .funding-section {
        padding: 24px 20px;
    }

    .funding-section h3 {
        font-size: 1.15rem;
    }

    .funding-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .funding-item {
        padding: 16px;
    }

    .funding-item strong {
        font-size: 0.92rem;
    }

    .funding-item p {
        font-size: 0.82rem;
    }

    .funding-cta p {
        font-size: 0.88rem;
    }

    /* ===== BESICHTIGUNG ===== */
    .booking-content {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .booking-highlight h3 {
        font-size: 1.15rem;
    }

    .booking-highlight p {
        font-size: 0.88rem;
    }

    .booking-times h4 {
        font-size: 1rem;
    }

    .booking-times > p {
        font-size: 0.88rem;
    }

    .time-slots {
        flex-direction: column;
        gap: 8px;
    }

    .time-slot {
        padding: 12px 16px;
        font-size: 0.88rem;
        text-align: center;
    }

    .phone-link {
        font-size: 1.15rem;
    }

    .booking-iframe-wrapper {
        min-height: 400px;
        border-radius: var(--radius-md);
    }

    .booking-iframe-wrapper iframe {
        min-height: 480px;
    }

    /* ===== VERANSTALTUNGEN ===== */
    .event-card {
        flex-direction: column;
        gap: 0;
    }

    .event-date-badge {
        flex-direction: row;
        align-items: center;
        gap: 10px;
        padding: 16px 20px;
        min-width: auto;
    }

    .event-day {
        font-size: 2.2rem;
    }

    .event-month {
        font-size: 1rem;
    }

    .event-details {
        padding: 20px;
    }

    .event-details h3 {
        font-size: 1.25rem;
        margin-bottom: 12px;
    }

    .event-meta {
        flex-direction: column;
        gap: 8px;
        margin-bottom: 16px;
    }

    .event-meta-item {
        font-size: 0.88rem;
    }

    .event-details p {
        font-size: 0.88rem;
    }

    .event-highlights {
        grid-template-columns: 1fr;
        gap: 6px;
        margin: 16px 0 20px;
    }

    .event-highlights li {
        font-size: 0.88rem;
        padding: 6px 0 6px 26px;
    }

    .event-highlights li::before {
        width: 14px;
        height: 14px;
        top: 11px;
    }

    .event-highlights li::after {
        left: 3px;
        top: 15px;
        width: 6px;
        height: 3px;
    }

    .event-note {
        font-size: 0.88rem !important;
    }

    .events-newsletter {
        padding: 28px 20px;
    }

    .events-newsletter h3 {
        font-size: 1.1rem;
    }

    .events-newsletter p {
        font-size: 0.88rem;
    }

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

    .contact-card {
        padding: 22px 20px;
        margin-bottom: 0;
        border-radius: var(--radius-md);
    }

    .contact-card h3 {
        font-size: 1.1rem;
        margin-bottom: 14px;
    }

    .contact-details strong {
        font-size: 1rem;
    }

    .contact-method {
        font-size: 0.85rem;
        padding: 12px 14px;
        border-radius: var(--radius-sm);
    }

    .contact-form {
        padding: 24px 20px;
        border-radius: var(--radius-md);
    }

    .contact-form h3 {
        font-size: 1.1rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 14px 14px;
        font-size: 1rem;
    }

    .form-group label {
        font-size: 0.88rem;
    }

    .btn-full {
        padding: 16px;
        font-size: 1rem;
    }

    .map-container h3 {
        font-size: 1.1rem;
    }

    .map-embed {
        border-radius: var(--radius-md);
    }

    .map-embed iframe {
        height: 260px;
    }

    /* ===== FOOTER ===== */

    /* Partner Banner Mobile */
    .footer-partner-banner {
        padding: 24px 20px;
    }

    .footer-partner-inner {
        flex-direction: column;
        gap: 12px;
        text-align: center;
        justify-content: center;
    }

    .partner-logo {
        padding: 10px 20px;
    }

    .partner-logo img {
        width: 110px;
    }

    .partner-claim {
        font-size: 0.78rem;
    }

    /* Footer Grid Mobile */
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 28px 20px;
        padding: 28px 0;
    }

    .footer-grid h4 {
        font-size: 0.72rem;
        margin-bottom: 10px;
    }

    .footer-about {
        grid-column: 1;
    }

    .footer-about address {
        font-size: 0.82rem;
        line-height: 1.6;
    }

    .footer-contact {
        grid-column: 2;
    }

    .footer-contact-name {
        font-size: 0.82rem;
    }

    .footer-phone {
        font-size: 0.88rem;
    }

    .footer-email {
        font-size: 0.75rem;
        word-break: break-all;
    }

    .footer-nav {
        grid-column: 1 / -1;
        border-top: 1px solid rgba(255,255,255,0.08);
        padding-top: 20px;
    }

    .footer-nav h4 {
        text-align: center;
    }

    .footer-nav ul {
        columns: 1;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0;
    }

    .footer-nav li {
        margin: 0;
    }

    .footer-nav a {
        display: block;
        padding: 6px 12px;
        font-size: 0.78rem;
    }

    /* Footer Bottom Mobile */
    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
        padding: 14px 0;
    }

    .footer-bottom p {
        font-size: 0.72rem;
    }

    .footer-legal {
        gap: 16px;
    }

    .footer-legal a {
        font-size: 0.72rem;
    }

    /* Back to Top */
    .back-to-top {
        bottom: 16px;
        right: 16px;
        width: 42px;
        height: 42px;
    }

    .back-to-top svg {
        width: 18px;
        height: 18px;
    }
}

/* ---- SMALL PHONE ---- */
@media (max-width: 400px) {
    .container {
        padding: 0 16px;
    }

    .hero {
        padding: 100px 16px 40px;
    }

    .hero h1 {
        font-size: 1.5rem;
    }

    .hero-text {
        font-size: 0.82rem;
    }

    .intro-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .intro-card {
        display: flex;
        flex-direction: row;
        align-items: center;
        text-align: left;
        gap: 14px;
        padding: 16px;
    }

    .intro-icon {
        margin: 0;
        min-width: 46px;
        width: 46px;
        height: 46px;
        flex-shrink: 0;
    }

    .intro-card h3 {
        margin-bottom: 4px;
    }

    .content-image img {
        height: 190px;
    }

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

    .event-date-badge {
        padding: 14px 16px;
    }

    .event-details {
        padding: 16px;
    }

    .booking-highlight,
    .booking-times,
    .booking-alternative {
        margin-bottom: 20px;
    }
}

/* --- Print --- */
@media print {
    .site-header,
    .back-to-top,
    .gallery-strip,
    .booking-widget,
    .nav-toggle {
        display: none !important;
    }

    .hero {
        min-height: auto;
        padding: 40px 0;
        background: none;
        color: var(--color-text);
    }

    .hero-overlay {
        display: none;
    }

    .hero h1 {
        color: var(--color-text);
        text-shadow: none;
    }

    .section {
        padding: 30px 0;
    }

    .content-row {
        gap: 20px;
    }
}

/* --- Accessibility: Focus Styles --- */
:focus-visible {
    outline: 3px solid var(--color-primary);
    outline-offset: 2px;
}

/* Legal Sections (Impressum / Datenschutz) */
.legal-section {
    background: var(--color-bg);
    border-top: 1px solid var(--color-border);
}

.legal-section-alt {
    background: var(--color-bg-alt);
}

.legal-content {
    max-width: 820px;
    margin: 0 auto;
}

.legal-content h1,
.legal-content h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--color-primary-dark);
    margin-bottom: 28px;
}

.legal-back {
    margin-bottom: 24px;
}

.legal-back a {
    color: var(--color-text-light);
    text-decoration: none;
    font-size: 0.95rem;
}

.legal-back a:hover {
    color: var(--color-primary);
}

.legal-content h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    color: var(--color-text);
    margin-top: 32px;
    margin-bottom: 10px;
}

.legal-content p {
    color: var(--color-text-light);
    line-height: 1.75;
    margin-bottom: 14px;
}

.legal-content a {
    color: var(--color-primary);
    text-decoration: underline;
}

.legal-content a:hover {
    color: var(--color-primary-dark);
}

.legal-stand {
    margin-top: 32px;
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
