/* ==========================================================================
   TAGESPFLEGE AUERBACH – Design System
   Brand-aligned with Pflegedienst Kammerer
   ========================================================================== */

/* ---------- @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;
}

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

/* 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 {
    /* Brand Colors */
    --sage: #3E80A6;
    --sage-light: #7FB0CC;
    --sage-lighter: #BBD6E6;
    --sage-lightest: #EAF2F8;
    --sage-dark: #2C5E7F;

    --teal: #4F8FB0;
    --teal-light: #E3EEF5;

    --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: 100px;
    --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;
}

body {
    font-family: var(--font-body);
    font-size: 20px;
    line-height: 1.7;
    color: var(--text-primary);
    background-color: var(--white);
    overflow-x: hidden;
}

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

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

a:hover {
    color: var(--sage-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.8rem, 6vw, 4.2rem);
    font-weight: 400;
    letter-spacing: 0.01em;
}

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

h3 {
    font-size: 1.65rem;
    font-weight: 400;
}

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-heading);
    font-size: 17px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--sage);
    margin-bottom: 12px;
}

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

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

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

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

.section-desc {
    max-width: 600px;
    margin: 16px auto 0;
    font-size: 21px;
    color: var(--text-secondary);
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 19px;
    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(--sage);
    color: var(--white);
    border-color: var(--sage);
}

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

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

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

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

.btn-full {
    width: 100%;
}

/* =============================================
   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 */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    flex-shrink: 0;
}

.logo-icon-wrap {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.logo-icon-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

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

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

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

/* Navigation */
.main-nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link {
    font-family: var(--font-body);
    font-size: 16px;
    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(--sage-dark);
    background: var(--sage-lightest);
}

/* Header CTA */
.header-cta {
    font-size: 17px;
    padding: 10px 24px;
}

/* Mobile Menu 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 */
.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-heading);
    font-size: 20px;
    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(--sage-lightest);
    color: var(--sage-dark);
}

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

/* =============================================
   HERO
   ============================================= */
.hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

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

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.92) 0%,
            rgba(255, 255, 255, 0.75) 40%,
            rgba(255, 255, 255, 0.3) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    flex: 1;
    display: flex;
    align-items: center;
    padding-top: 60px;
    padding-bottom: 100px;
}

.hero-text {
    max-width: 640px;
}

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

.hero-subtitle {
    font-size: 24px;
    line-height: 1.65;
    color: var(--gray-600);
    margin-bottom: 36px;
}

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

/* Hero Badges */
.hero-badges {
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-top: 1px solid rgba(62, 128, 166, 0.15);
}

.badges-grid {
    display: flex;
    justify-content: center;
    gap: 48px;
    padding: 24px 0;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-body);
    font-size: 21px;
    font-weight: 600;
    color: var(--gray-700);
}

.badge-icon {
    width: 20px;
    height: 20px;
    color: var(--sage);
    flex-shrink: 0;
}

/* =============================================
   INTRO
   ============================================= */
.intro {
    background: var(--white);
}

.intro-content {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}

.intro-content h2 {
    margin-bottom: 24px;
}

.intro-text {
    font-size: 22px;
    line-height: 1.85;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.intro-text:last-child {
    margin-bottom: 0;
}

/* =============================================
   BENEFITS
   ============================================= */
.benefits {
    background: var(--sage-lightest);
}

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

.benefit-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    transition: all var(--transition-base);
    border: 1px solid transparent;
}

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

.benefit-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--sage-lightest);
    border-radius: var(--radius-md);
    color: var(--sage);
    margin-bottom: 20px;
}

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

.benefit-card h3 {
    margin-bottom: 10px;
    color: var(--gray-800);
}

.benefit-card p {
    font-size: 19px;
    line-height: 1.7;
}

/* =============================================
   HIGHLIGHT
   ============================================= */
.highlight {
    background: var(--white);
}

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

.highlight-gallery {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.gallery-img-main {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.gallery-img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 4 / 3;
}

.gallery-img-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.gallery-img-wrap {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.gallery-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 4 / 3;
}

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

.highlight-content p {
    font-size: 21px;
    line-height: 1.8;
    margin-bottom: 16px;
}

.highlight-list {
    list-style: none;
    margin-top: 28px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.highlight-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 20px;
    font-weight: 500;
    color: var(--gray-700);
}

.check-icon {
    width: 20px;
    height: 20px;
    color: var(--sage);
    flex-shrink: 0;
}

/* =============================================
   SERVICES
   ============================================= */
.services {
    background: var(--cream-light);
}

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

.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    border: 1px solid var(--border-light);
    transition: all var(--transition-base);
    position: relative;
}

.service-card:hover {
    border-color: var(--sage-lighter);
    box-shadow: var(--shadow-md);
}

.service-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--sage-lightest);
    border-radius: var(--radius-md);
    color: var(--sage);
    margin-bottom: 16px;
}

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

.service-card h3 {
    margin-bottom: 10px;
    color: var(--gray-800);
}

.service-card p {
    font-size: 19px;
    line-height: 1.7;
}

/* =============================================
   IMAGE DIVIDER
   ============================================= */
.image-divider {
    position: relative;
    height: 400px;
    overflow: hidden;
}

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

.image-divider-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right,
            rgba(62, 128, 166, 0.75),
            rgba(79, 143, 176, 0.65));
}

.image-divider-content {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-divider blockquote {
    font-family: var(--font-heading);
    font-size: clamp(1.3rem, 2.5vw, 1.8rem);
    font-weight: 700;
    color: var(--white);
    text-align: center;
    max-width: 700px;
    line-height: 1.5;
    font-style: italic;
}

/* =============================================
   LOCATION
   ============================================= */
.location {
    background: var(--white);
}

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

.location-content h2 {
    margin-bottom: 28px;
}

.location-address {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 24px;
    background: var(--sage-lightest);
    border-radius: var(--radius-md);
    margin-bottom: 28px;
}

.location-pin {
    width: 24px;
    height: 24px;
    color: var(--sage);
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-icon {
    width: 24px;
    height: 24px;
    color: var(--sage);
    flex-shrink: 0;
    margin-top: 2px;
}

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

.location-address div {
    font-size: 20px;
    color: var(--gray-700);
    line-height: 1.6;
}

.location-address strong {
    color: var(--gray-800);
}

.location-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.location-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 19px;
    font-weight: 500;
    color: var(--gray-700);
}

.location-map {
    border-radius: var(--radius-xl);
    overflow: hidden;
    height: 420px;
    background: var(--gray-100);
    position: relative;
}

.location-map iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.map-fallback {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    color: var(--gray-500);
    text-align: center;
    padding: 24px;
}

.map-fallback svg {
    color: var(--sage-light);
}

.map-fallback p {
    font-weight: 600;
    color: var(--gray-700);
}

/* =============================================
   CONTACT
   ============================================= */
.contact {
    background: var(--sage-lightest);
}

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

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

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

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 32px;
}

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

.contact-detail .contact-icon {
    color: var(--sage);
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-detail a {
    color: var(--gray-700);
    text-decoration: none;
}

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

.contact-detail strong {
    font-size: 18px;
    color: var(--text-muted);
    font-weight: 600;
}

.contact-note {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 20px;
    background: var(--white);
    border-radius: var(--radius-md);
    border: 1px solid var(--sage-lighter);
}

.contact-note .contact-note-icon {
    color: var(--sage);
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-note p {
    font-size: 19px;
    font-style: italic;
    color: var(--gray-600);
}

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

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

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

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

.form-group label {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    color: var(--gray-700);
}

.form-group input,
.form-group select,
.form-group textarea {
    font-family: var(--font-body);
    font-size: 20px;
    padding: 14px 18px;
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius-md);
    background: var(--white);
    color: var(--gray-800);
    transition: all var(--transition-fast);
    outline: none;
    appearance: none;
    -webkit-appearance: none;
}

.form-group select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236B7572' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--sage);
    box-shadow: 0 0 0 3px rgba(62, 128, 166, 0.12);
}

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

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

.form-privacy {
    font-size: 16px;
    color: var(--text-muted);
    text-align: center;
}

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

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
    background: var(--gray-900);
    color: var(--gray-400);
    padding: 60px 0 0;
}

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

.footer-logo .logo-icon-wrap {
    color: var(--sage-light);
}

.footer-logo .logo-main {
    color: var(--white);
}

.footer-logo .logo-sub {
    color: var(--sage-light);
}

.footer-tagline {
    font-size: 18px;
    color: var(--gray-500);
    margin-top: 12px;
}

.footer-contact h4,
.footer-address h4,
.footer-links h4 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 16px;
}

.footer-contact p,
.footer-address p {
    font-size: 18px;
    color: var(--gray-400);
    line-height: 1.7;
    margin-bottom: 4px;
}

.footer-contact a,
.footer-address a {
    color: var(--gray-400);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.footer-contact a:hover,
.footer-address a:hover {
    color: var(--white);
}

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

.footer-links a {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 600;
    color: var(--gray-400);
    text-decoration: none;
    transition: color var(--transition-fast);
}

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

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

.footer-bottom p {
    font-size: 16px;
    color: var(--gray-500);
}

.footer-credit a {
    color: var(--sage-light);
    text-decoration: none;
    transition: color var(--transition-fast);
}

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

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

.fade-in-up:nth-child(2) {
    animation-delay: 0.1s;
}

.fade-in-up:nth-child(3) {
    animation-delay: 0.2s;
}

.fade-in-up:nth-child(4) {
    animation-delay: 0.3s;
}

.fade-in-up:nth-child(5) {
    animation-delay: 0.4s;
}

.fade-in-up:nth-child(6) {
    animation-delay: 0.5s;
}

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

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

    .header-cta {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .main-nav {
        display: none;
    }

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

    .highlight-grid,
    .location-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .highlight-image {
        order: -1;
    }

    .badges-grid {
        gap: 32px;
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* Mobile */
@media (max-width: 640px) {
    :root {
        --section-padding: 64px;
        --container-padding: 20px;
    }

    body {
        font-size: 21px;
    }

    .header-inner {
        height: 68px;
    }

    .logo-icon {
        width: 32px;
        height: 32px;
    }

    .logo-main {
        font-size: 1.25rem;
    }

    .logo-sub {
        font-size: 0.85rem;
    }

    .hero {
        min-height: 70vh;
    }

    .hero-content {
        padding-top: 40px;
        padding-bottom: 80px;
    }

    .hero-text h1 {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 25px;
    }

    .hero-actions {
        flex-direction: column;
    }

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

    .badges-grid {
        flex-direction: column;
        gap: 16px;
        padding: 20px 0;
    }

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

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

    .contact-form-wrapper {
        padding: 28px 20px;
    }

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

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

    .image-divider {
        height: 300px;
    }

    .image-divider blockquote {
        font-size: 1.15rem;
        padding: 0 16px;
    }

    .location-map {
        height: 300px;
    }

    .btn-lg {
        padding: 14px 28px;
        font-size: 20px;
    }
}

/* Very small screens */
@media (max-width: 380px) {
    .hero-text h1 {
        font-size: 1.8rem;
    }

    h2 {
        font-size: 1.6rem;
    }
}

/* ---------- Accessibility ---------- */
@media (prefers-reduced-motion: reduce) {

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

    html {
        scroll-behavior: auto;
    }
}

/* Focus styles for keyboard navigation */
:focus-visible {
    outline: 3px solid var(--sage);
    outline-offset: 2px;
    border-radius: 4px;
}

/* High contrast mode adjustments */
@media (prefers-contrast: high) {

    .benefit-card,
    .service-card {
        border: 2px solid var(--gray-700);
    }

    .nav-link {
        color: var(--gray-800);
    }
}

/* =============================================
   COOKIE CONSENT BANNER
   ============================================= */
.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.1);
    padding: 24px;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.cookie-banner.visible {
    transform: translateY(0);
}

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

.cookie-banner-inner p {
    flex: 1;
    font-size: 18px;
    line-height: 1.6;
    color: var(--text-secondary);
}

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

@media (max-width: 768px) {
    .cookie-banner-inner {
        flex-direction: column;
        text-align: center;
    }

    .cookie-actions {
        width: 100%;
        flex-direction: column;
    }
}

/* =============================================
   MAP CONSENT OVERLAY
   ============================================= */
.map-consent {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 12px;
    padding: 40px 24px;
    background: var(--sage-lightest);
    border-radius: var(--radius-lg);
    border: 1px dashed var(--sage-lighter);
    min-height: 340px;
}

.map-consent p {
    color: var(--gray-700);
    font-size: 19px;
}

.map-consent-text {
    font-size: 17px !important;
    color: var(--text-muted) !important;
    max-width: 320px;
    line-height: 1.6;
}

.map-consent .btn {
    margin-top: 8px;
}

.map-iframe-wrapper {
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 100%;
    min-height: 400px;
}

.map-iframe-wrapper iframe {
    width: 100%;
    height: 100%;
    min-height: 400px;
    border: 0;
    border-radius: var(--radius-lg);
}

/* =============================================
   LEGAL PAGES (IMPRESSUM / DATENSCHUTZ)
   ============================================= */
.legal-page {
    padding-top: 120px;
    padding-bottom: 80px;
    min-height: 60vh;
}

.legal-page h1 {
    margin-bottom: 40px;
}

.legal-content h2 {
    margin-top: 36px;
    margin-bottom: 16px;
    font-size: 2rem;
}

.legal-content h3 {
    margin-top: 24px;
    margin-bottom: 12px;
    font-size: 1.4rem;
}

.legal-content p {
    margin-bottom: 16px;
    font-size: 20px;
    line-height: 1.8;
}

.legal-content ul {
    margin: 0 0 16px 24px;
    line-height: 1.8;
}

.legal-content ul li {
    margin-bottom: 8px;
    color: var(--text-secondary);
}

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

/* ============ ÖFFNUNGSZEITEN ============ */
.hours-grid {
    display: flex;
    justify-content: center;
    margin: 2rem 0 1.5rem;
}

.hours-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2.5rem 3.5rem;
    text-align: center;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    min-width: 280px;
}

.hours-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 1rem;
}

.hours-icon svg {
    width: 36px;
    height: 36px;
    color: var(--sage);
}

.hours-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.hours-time {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--sage);
    margin: 0;
}

.hours-note {
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.9rem;
    max-width: 540px;
    margin: 0 auto;
}

/* ============ FOOTER SERVICE ============ */
.footer-service {
    margin-top: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.footer-service a {
    color: var(--sage-light);
    text-decoration: none;
    transition: color 0.2s;
}

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

/* ==========================================================================
   Kammerer unified refresh 2026-06-05
   Matches the local pflegedienst-kammerer-website design language.
   ========================================================================== */

:root {
    --brand: #A6C8DD;
    --brand-dark: #5C93B0;
    --brand-darker: #2C5E7F;
    --brand-light: #D3E2EE;
    --brand-lightest: #EDF4F9;

    --sage: #BBD6E6;
    --sage-light: #CFE0EC;
    --sage-lighter: #DEE9F1;
    --sage-lightest: #F3F7FB;
    --sage-dark: #356A88;

    --teal: #5C93B0;
    --teal-light: #EDF4F9;

    --accent: #3E80A6;
    --accent-hover: #234C66;

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

    --text-primary: var(--gray-900);
    --text-secondary: var(--gray-600);
    --text-muted: var(--gray-500);
    --border-color: var(--gray-200);
    --border-light: rgba(31, 41, 35, 0.08);

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

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

    --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;
    text-rendering: optimizeLegibility;
}

body {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.68;
    background: var(--warm-white);
    color: var(--text-primary);
}

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.4rem, 5vw, 3.6rem);
    line-height: 1.1;
    font-weight: 700;
}

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

h3 {
    font-size: clamp(1.35rem, 2vw, 1.7rem);
}

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

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

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

.section-label,
.hero-label {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    color: var(--brand-darker);
}

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

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

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

.btn-lg {
    padding: 15px 32px;
    font-size: 1rem;
}

.btn-primary {
    background: var(--brand-darker);
    border-color: var(--brand-darker);
    color: var(--white);
    box-shadow: 0 10px 24px rgba(44, 94, 127, 0.28);
}

.btn-primary: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: rgba(44, 94, 127, 0.48);
}

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

.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);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.site-header.scrolled {
    box-shadow: 0 12px 38px rgba(31, 41, 35, 0.09);
}

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

.logo {
    gap: 12px;
}

.logo-icon-wrap {
    width: 54px;
    height: 54px;
}

.logo-main {
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-style: normal;
    font-weight: 800;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    color: var(--gray-700);
}

.logo-sub {
    font-family: var(--font-heading);
    font-size: 1.38rem;
    font-style: italic;
    font-weight: 400;
    letter-spacing: 0;
    color: var(--brand-darker);
}

.main-nav {
    gap: 6px;
}

.nav-link {
    position: relative;
    padding: 10px 11px 13px;
    border-radius: var(--radius-md);
    background: transparent;
    box-shadow: none;
    color: var(--gray-700);
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-style: italic;
    font-weight: 400;
    letter-spacing: 0;
    text-transform: none;
    white-space: nowrap;
}

.nav-link::after {
    content: "";
    position: absolute;
    right: 12px;
    bottom: 5px;
    left: 12px;
    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;
    color: var(--gray-900);
}

.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(44, 94, 127, 0.22);
}

.mobile-menu-toggle {
    width: 46px;
    height: 46px;
    align-items: center;
    justify-content: center;
    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(44, 94, 127, 0.22);
    background: var(--brand-lightest);
}

.mobile-menu {
    background: var(--warm-white);
}

.mobile-nav-link {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-style: italic;
    font-weight: 400;
    color: var(--gray-800);
}

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

.mobile-nav-link.active {
    color: var(--brand-darker);
}

.hero {
    position: relative;
    min-height: 100vh;
    padding-top: 108px;
    padding-bottom: 0;
    overflow: hidden;
    background: var(--gray-900);
}

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

.hero-bg {
    z-index: 0;
}

.hero-img {
    filter: saturate(0.9) contrast(1.03);
    object-position: 58% center;
}

.hero-overlay {
    background:
        linear-gradient(90deg, rgba(18, 30, 40, 0.78) 0%, rgba(18, 30, 40, 0.6) 40%, rgba(18, 30, 40, 0.22) 76%, rgba(18, 30, 40, 0.06) 100%),
        radial-gradient(circle at 72% 36%, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0) 36%);
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    min-height: calc(100vh - 196px);
    padding-top: 0;
    padding-bottom: 54px;
    align-items: center;
}

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

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

.hero-text h1 {
    max-width: 690px;
    margin-bottom: 24px;
    color: var(--white);
    font-size: clamp(2.85rem, 5.1vw, 4.85rem);
    text-wrap: balance;
}

.hero-subtitle {
    max-width: 620px;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.88);
    font-size: clamp(1.08rem, 1.55vw, 1.24rem);
    line-height: 1.72;
}

.hero-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.25);
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
    color: rgba(255, 255, 255, 0.84);
}

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

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

.hero-actions {
    gap: 12px;
}

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

.hero-actions .btn-outline {
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.68);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
}

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

.hero-scroll-cue {
    position: absolute;
    bottom: 98px;
    left: 50%;
    z-index: 3;
    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);
}

.hero-badges {
    z-index: 2;
    background: rgba(251, 250, 246, 0.94);
    border-top: 1px solid rgba(255, 255, 255, 0.34);
    box-shadow: 0 -12px 34px rgba(31, 41, 35, 0.08);
}

.badges-grid {
    gap: 30px;
    padding: 22px 0;
}

.badge-item {
    color: var(--gray-700);
    font-size: 0.96rem;
    font-weight: 700;
}

.badge-icon {
    color: var(--brand-darker);
}

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

.intro-content {
    max-width: none;
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 68px;
    text-align: left;
    align-items: start;
}

.intro-content .section-label {
    grid-column: 1;
}

.intro-content h2 {
    grid-column: 1;
    max-width: 650px;
    margin-bottom: 0;
}

.intro-title span {
    display: block;
}

.intro-copy {
    grid-column: 2;
    grid-row: 1 / span 2;
    align-self: end;
    max-width: 660px;
    margin-left: auto;
}

.intro-text {
    grid-column: 2;
    max-width: 710px;
    margin-bottom: 16px;
    color: var(--gray-700);
    font-size: clamp(1.08rem, 1.65vw, 1.26rem);
    line-height: 1.74;
}

.intro-text-lead {
    color: var(--gray-800);
}

.intro-content .section-label + h2 + .intro-text {
    grid-row: 1 / span 2;
    align-self: end;
}

.home-entry-grid {
    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.45rem, 2vw, 1.86rem);
    font-style: italic;
    font-weight: 400;
    line-height: 1.03;
}

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

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

.benefits-grid,
.services-grid {
    gap: 18px;
}

.benefit-card,
.service-card,
.hours-card,
.contact-form-wrapper {
    border-radius: var(--radius-lg);
    border: 1px solid rgba(31, 41, 35, 0.09);
    box-shadow: none;
}

.benefit-card,
.service-card {
    padding: 34px 28px;
    background: rgba(255, 255, 255, 0.86);
}

.benefit-card:hover,
.service-card:hover {
    border-color: rgba(44, 94, 127, 0.24);
    box-shadow: var(--shadow-md);
    transform: none;
}

.benefit-icon,
.service-icon,
.hours-icon,
.contact-icon,
.decision-icon {
    border-radius: 0;
    background: none;
    color: var(--brand-darker);
    box-shadow: none;
}

.benefit-card h3,
.service-card h3 {
    color: var(--gray-800);
}

.benefit-card p,
.service-card p {
    font-size: 0.98rem;
    line-height: 1.7;
}

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

.highlight-grid {
    gap: 54px;
}

.gallery-img-main,
.gallery-img-wrap {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.gallery-img-main img,
.gallery-img-wrap img {
    filter: saturate(0.9) contrast(1.02);
}

.highlight-content p {
    font-size: 1.05rem;
    line-height: 1.78;
}

.highlight-list li,
.location-features li {
    font-size: 0.98rem;
    font-weight: 600;
}

.check-icon,
.location-pin,
.contact-note-icon {
    color: var(--brand-darker);
}

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

.image-divider {
    height: 440px;
}

.image-divider img {
    filter: saturate(0.9) contrast(1.03);
}

.image-divider-overlay {
    background:
        linear-gradient(90deg, rgba(18, 30, 40, 0.78) 0%, rgba(44, 94, 127, 0.58) 100%);
}

.image-divider blockquote {
    max-width: 780px;
    font-size: clamp(1.7rem, 3vw, 2.35rem);
    font-weight: 400;
    line-height: 1.18;
}

.opening-hours {
    background: var(--white);
}

.hours-card {
    min-width: min(420px, 100%);
    padding: 42px 56px;
    background: var(--warm-white);
}

.hours-icon svg {
    color: var(--brand-darker);
}

.hours-card h3 {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gray-600);
}

.hours-time {
    font-family: var(--font-heading);
    font-size: clamp(1.7rem, 3vw, 2.2rem);
    font-style: italic;
    font-weight: 400;
    color: var(--brand-darker);
}

.hours-note {
    color: var(--gray-600);
    font-size: 0.95rem;
}

.location {
    background: var(--brand-lightest);
}

.location-grid,
.contact-grid {
    gap: 56px;
}

.location-address,
.contact-note {
    background: var(--white);
    border: 1px solid rgba(31, 41, 35, 0.09);
    border-radius: var(--radius-lg);
}

.location-address div {
    font-size: 1rem;
}

.location-map,
.map-iframe-wrapper,
.map-iframe-wrapper iframe {
    border-radius: var(--radius-lg);
}

.location-map {
    height: 440px;
    box-shadow: var(--shadow-lg);
}

.map-consent {
    min-height: 100%;
    background: linear-gradient(145deg, #ffffff 0%, var(--brand-lightest) 100%);
    border: 1px dashed rgba(44, 94, 127, 0.28);
    border-radius: var(--radius-lg);
}

.map-consent p {
    font-size: 0.98rem;
}

.map-consent i {
    color: var(--brand-darker) !important;
}

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

.contact-info > p {
    font-size: 1.06rem;
    line-height: 1.78;
}

.contact-detail {
    gap: 14px;
}

.contact-detail .contact-icon {
    margin-top: 0;
}

.contact-detail strong {
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.contact-detail a {
    color: var(--gray-700);
}

.contact-detail a:hover,
.form-privacy a,
.legal-content a {
    color: var(--brand-darker);
}

.contact-note p {
    font-size: 0.98rem;
    line-height: 1.62;
}

.contact-form-wrapper {
    padding: 40px;
    background: var(--white);
    box-shadow: var(--shadow-md);
}

.form-group label {
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gray-600);
}

.form-group input,
.form-group select,
.form-group textarea {
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 1rem;
}

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

.site-footer {
    background: #172019;
}

.footer-inner {
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr) minmax(0, 1fr) minmax(0, 0.8fr);
}

.footer-logo .logo-main,
.site-footer h4 {
    color: var(--white);
}

.footer-logo .logo-sub,
.footer-service a,
.footer-credit a {
    color: var(--accent);
}

.footer-tagline,
.footer-service,
.footer-contact p,
.footer-address p,
.footer-links a,
.footer-contact a,
.footer-address a,
.footer-bottom p {
    color: rgba(255, 255, 255, 0.62);
}

.footer-contact h4,
.footer-address h4,
.footer-links h4 {
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-style: normal;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.footer-links a {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
}

.footer-contact a:hover,
.footer-address a:hover,
.footer-links a:hover,
.footer-service a:hover,
.footer-credit a:hover {
    color: var(--white);
}

.cookie-banner {
    background: rgba(251, 250, 246, 0.98);
    border-top: 1px solid rgba(31, 41, 35, 0.09);
    box-shadow: 0 -14px 44px rgba(31, 41, 35, 0.1);
}

.cookie-banner-inner p {
    font-size: 0.92rem;
}

.legal-page {
    background: var(--warm-white);
}

.legal-page h1 {
    color: var(--gray-900);
}

.legal-content h2,
.legal-content h3 {
    color: var(--gray-800);
}

.legal-content p,
.legal-content li {
    font-size: 1rem;
}

:focus-visible {
    outline: 3px solid rgba(44, 94, 127, 0.55);
    outline-offset: 2px;
}

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

    .header-cta {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .main-nav {
        display: none;
    }

    .hero {
        min-height: 760px;
        padding-top: 104px;
    }

    .hero-content {
        min-height: 592px;
    }

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

    .intro-content .section-label,
    .intro-content h2,
    .intro-copy,
    .intro-text,
    .intro-content .section-label + h2 + .intro-text {
        grid-column: auto;
        grid-row: auto;
    }

    .intro-copy {
        max-width: 680px;
        margin-left: 0;
    }

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

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

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

    html {
        font-size: 16px;
    }

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

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

    .header-inner {
        height: 76px;
    }

    .logo-icon-wrap {
        width: 44px;
        height: 44px;
    }

    .logo-main {
        font-size: 0.64rem;
    }

    .logo-sub {
        font-size: 1.08rem;
    }

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

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

    .hero {
        min-height: 740px;
        padding-top: 94px;
        background: var(--gray-900);
    }

    .hero-img {
        object-position: 55% center;
    }

    .hero-overlay {
        background:
            linear-gradient(180deg, rgba(18, 30, 40, 0.82) 0%, rgba(18, 30, 40, 0.58) 52%, rgba(18, 30, 40, 0.28) 100%);
    }

    .hero-content {
        min-height: 568px;
        padding-bottom: 42px;
        align-items: flex-end;
    }

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

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

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

    .hero-subtitle {
        font-size: 1.05rem;
        line-height: 1.62;
    }

    .hero-facts {
        display: grid;
        gap: 8px;
        margin: 20px 0 24px;
        padding: 14px 0;
    }

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

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

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

    .badges-grid {
        align-items: flex-start;
        gap: 14px;
    }

    .badge-item {
        width: 100%;
        justify-content: flex-start;
    }

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

    .benefits-grid,
    .services-grid {
        gap: 14px;
    }

    .highlight-grid,
    .location-grid,
    .contact-grid {
        gap: 36px;
    }

    .gallery-img-row {
        gap: 12px;
    }

    .image-divider {
        height: 320px;
    }

    .hours-card {
        padding: 34px 24px;
    }

    .location-map {
        height: 330px;
    }

    .contact-form-wrapper {
        padding: 28px 20px;
    }

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

/* Smaller type pass: align Tagespflege proportions with Kammerer */
html {
    font-size: 17px;
}

h1 {
    font-size: clamp(2.75rem, 5.2vw, 4.8rem);
}

h2 {
    font-size: clamp(2rem, 3.8vw, 3.3rem);
}

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

.header-inner {
    gap: 18px;
}

.logo-icon-wrap {
    width: 50px;
    height: 50px;
}

.logo-main {
    font-size: 0.7rem;
}

.logo-sub {
    font-size: 1.28rem;
}

.main-nav {
    gap: 4px;
}

.nav-link {
    padding: 9px 9px 12px;
    font-size: 0.98rem;
}

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

.header-cta {
    min-height: 50px;
    padding-inline: 22px;
}

.hero-text h1 {
    max-width: 660px;
    font-size: clamp(2.7rem, 4.7vw, 4.35rem);
}

.hero-subtitle {
    max-width: 590px;
    font-size: clamp(1.02rem, 1.42vw, 1.16rem);
}

.hero-facts span,
.badge-item,
.benefit-card p,
.service-card p,
.highlight-content p,
.contact-info > p,
.contact-note p,
.location-address div,
.highlight-list li,
.location-features li {
    font-size: 0.94rem;
}

.intro-text {
    font-size: clamp(1.02rem, 1.5vw, 1.16rem);
}

.home-entry-card strong {
    font-size: clamp(1.34rem, 1.8vw, 1.72rem);
}

.home-entry-card span:last-child {
    font-size: 0.9rem;
}

.btn {
    font-size: 0.9rem;
}

.btn-lg {
    font-size: 0.94rem;
}

@media (max-width: 640px) {
    html {
        font-size: 16px;
    }

    .logo-main {
        font-size: 0.62rem;
    }

    .logo-sub {
        font-size: 1.02rem;
    }

    .hero-text h1 {
        font-size: clamp(2.35rem, 11vw, 3.25rem);
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .mobile-nav-link {
        font-size: 1.32rem;
    }
}
