@font-face {
    font-family: 'IBM Plex Sans';
    src: url('../fonts/ibm-plex-sans-latin-400-normal.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'IBM Plex Sans';
    src: url('../fonts/ibm-plex-sans-latin-500-normal.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'IBM Plex Sans';
    src: url('../fonts/ibm-plex-sans-latin-600-normal.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'IBM Plex Sans';
    src: url('../fonts/ibm-plex-sans-latin-700-normal.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

:root {
    --bg-white: #FAF9F7;
    --bg-light-grey: #F7F5F2;
    --bg-light-green: #EFEAE3;

    --ink: #3D3834;
    --ink-soft: #5B554F; --accent: #8A6A52;
    --accent-hover: #725541;
    --accent-light: #F1E9E2;

    --border-color: #DDD6CF;
    --surface: #FFFFFF;

    --max-width: 1120px;
    --header-height: 80px;

    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 20px;
    --radius-full: 9999px;

    --shadow-subtle: 0 4px 20px rgba(0, 0, 0, 0.05);
    --shadow-hover: 0 12px 32px rgba(138, 106, 82, .16);
    --transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-height, 116px);
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
}

body {
    font-family: 'IBM Plex Sans', system-ui, -apple-system, sans-serif;
    color: var(--ink);
    background-color: var(--bg-white);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
    color: var(--ink);
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(2.2rem, 4vw, 3.1rem);
    margin-bottom: 16px;
}

h2 {
    font-size: clamp(1.75rem, 3vw, 2.2rem);
    margin-bottom: 36px;
}

h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

p {
    margin-bottom: 16px;
    color: var(--ink-soft);
}

a {
    color: var(--accent);
    text-decoration: none;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.wrap {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 4px;
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.is-visible {
    opacity: 1;
    transform: none;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 34px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    transition: var(--transition);
}

.btn:active {
    transform: scale(0.98) translateY(0) !important;
}

.btn-sm {
    padding: 10px 20px;
    font-size: 0.9rem;
}

.btn-primary {
    background-color: var(--accent);
    color: #FFFFFF !important;
    box-shadow: 0 4px 14px rgba(138, 106, 82, .22);
}

.btn-primary:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(138, 106, 82, .30);
}

.btn-secondary {
    background-color: var(--accent-light);
    color: var(--accent) !important;
}

.btn-secondary:hover {
    background-color: #E9DDD3;
    transform: translateY(-2px);
}

.badge {
    display: inline-block;
    background: var(--accent-light);
    color: var(--accent);
    font-size: 0.85rem;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: var(--radius-full);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.section-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--accent);
    font-weight: 700;
    margin-bottom: 8px;
}

section {
    padding: 80px 0;
}

.section-white {
    background-color: var(--bg-white);
}

.section-alt {
    background-color: var(--bg-light-grey);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: color-mix(in srgb, var(--bg-white) 95%, transparent);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--border-color);
    padding: 20px 0;
}

.nav-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand {
    display: flex;
    align-items: center;
    gap: 14px;
}

.brand-photo {
    width: 50px;
    height: 70px;
    border-radius: 20%;
    object-fit: cover;
    border: 2px solid var(--accent-light);
}

.brand-text strong {
    display: block;
    color: var(--ink);
    font-size: 1.05rem;
}

.brand-text span {
    font-size: 0.8rem;
    color: var(--ink-soft);
}

.nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links a {
    display: inline-block;
    color: var(--ink-soft);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    padding: 6px 0;
    transition: transform 0.3s ease, color 0.3s ease;
}

.nav-links a:hover {
    color: var(--accent);
    transform: scale(1.05) translateY(-1px);
}

.header-cta {
    display: flex;
    align-items: center;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    color: var(--ink);
}

.menu-toggle svg {
    width: 26px;
    height: 26px;
}

.hero-section {
    position: relative;
    background: var(--bg-white);
    padding: 120px 0 90px;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    display: flex;
    flex-direction: column;
}

.trust-bullets {
    order: 5;
}

.hero-buttons {
    order: 6;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 16px;
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 28px;
}

.trust-bullets {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 32px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--ink);
}

.trust-item svg {
    width: 18px;
    height: 18px;
    color: var(--accent);
    flex-shrink: 0;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-shape-bg {
    position: absolute;
    width: 110%;
    height: 110%;
    background: linear-gradient(135deg, var(--accent-light) 0%, var(--bg-light-green) 100%);
    border-radius: 40% 60% 60% 40% / 50% 40% 60% 50%;
    z-index: 1;
    transform: rotate(-3deg);
    transition: transform 0.8s ease;
}

.hero-image-wrapper:hover .hero-shape-bg {
    transform: rotate(2deg) scale(1.02);
}

.hero-img {
    position: relative;
    z-index: 2;
    width: 90%;
    max-width: 450px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-hover);
    object-fit: cover;
}

.mobile-only {
    display: none;
}

.hero-img-mobile {
    width: 100%;
    aspect-ratio: 4/3.8;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-hover);
}

.about {
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 56px;
    align-items: start;
}

.about-media {
    position: sticky;
    top: calc(var(--header-height, 80px) + 24px);
}

.about-image-container {
    position: relative;
}

.about-image-container::before {
    content: '';
    position: absolute;
    inset: 20px -20px -20px 20px;
    background: var(--accent-light);
    border-radius: var(--radius-lg);
    z-index: 0;
}

.about-photo {
    position: relative;
    z-index: 1;
    display: block;
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-hover);
}

.about-image-container .mobile-only {
    display: none;
}

.about-image-container .desktop-only {
    display: block;
}

.about-text h3 {
    margin-bottom: 20px;
}

.doctor-quote {
    position: relative;
    background: var(--accent-light);
    border-left: none;
    padding: 28px 28px 24px 60px;
    margin: 0 0 28px;
    border-radius: var(--radius-md);
}

.doctor-quote p {
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.5;
    color: var(--ink);
    margin: 0;
    font-weight: 500;
}

.quote-icon {
    position: absolute;
    top: 22px;
    left: 20px;
    width: 28px;
    height: 28px;
    color: var(--accent);
    opacity: 0.5;
}

.about-text > p {
    margin-bottom: 16px;
}

.schwerpunkte-box {
    margin-top: 28px;
    background: var(--bg-white);
    padding: 24px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
}

.schwerpunkte-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--accent);
}

.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--bg-light-grey);
    padding: 8px 16px 8px 10px;
    border-radius: var(--radius-full);
    font-size: 0.88rem;
    font-weight: 500;
    border: 1px solid transparent;
    transition: var(--transition);
}

.tag:hover {
    background: var(--accent-light);
    border-color: rgba(138, 106, 82, .25);
    transform: translateY(-2px);
}

.tag svg {
    width: 16px;
    height: 16px;
    color: var(--accent);
    flex-shrink: 0;
}

.services {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    gap: 28px;
}

.services:has(.service-card.expanded) {
    align-items: flex-start;
}

.service-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-subtle);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    cursor: pointer;
    flex: 1 1 320px;
    max-width: 350px;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(138, 106, 82, .3);
}

.service-card:hover h3 {
    color: var(--accent);
}

.service-card-image {
    height: 200px;
    overflow: hidden;
    position: relative;
    background-color: #FAF9F7;
    padding: 12px;
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.5s ease;
}

.service-card:hover .service-card-image img {
    transform: scale(1.08);
}

.service-card-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.service-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.service-header h3 {
    transition: var(--transition);
}

.service-icon-box {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--accent-light);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition);
}

.service-card:hover .service-icon-box {
    transform: rotate(6deg) scale(1.1);
}

.service-desc {
    font-size: 0.95rem;
    margin-bottom: 16px;
    flex-grow: 1;
}

.service-toggle-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: none;
    border: none;
    color: var(--accent);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    padding: 6px 0;
    margin-top: auto;
    transition: var(--transition);
}

.service-toggle-btn svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.service-card.expanded .service-toggle-btn svg {
    transform: rotate(180deg);
}

.service-accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0, 1, 0, 1), opacity 0.3s ease;
    opacity: 0;
    border-top: 1px dashed transparent;
    margin-top: 0;
    padding-top: 0;
}

.service-card.expanded .service-accordion-content {
    max-height: 1000px;
    opacity: 1;
    border-top-color: var(--border-color);
    margin-top: 16px;
    padding-top: 16px;
    transition: max-height 0.5s ease-in-out, opacity 0.4s ease;
}

.service-accordion-content h4 {
    font-size: 0.95rem;
    color: var(--ink);
    margin: 12px 0 4px;
}

.service-accordion-content p {
    font-size: 0.88rem;
    margin-bottom: 10px;
}

.video-frame {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 16/9;
    margin-bottom: 40px;
    box-shadow: var(--shadow-subtle);
}

.video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.5) 100%);
    z-index: 2;
    pointer-events: none;
}

.video-frame video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--ink);
}

@media (min-width: 901px) {
    .gallery-masonry {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: 200px 140px 200px;
        gap: 20px;
    }

    .gallery-item {
        position: relative;
        border-radius: var(--radius-md);
        overflow: hidden;
        box-shadow: var(--shadow-subtle);
    }

    .gallery-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.4s ease;
    }

    .gallery-item:hover img {
        transform: scale(1.06);
    }

    .gallery-item:nth-child(1) {
        grid-column: 1 / 3;
        grid-row: 1 / 3; }

    .gallery-item:nth-child(2) {
        grid-column: 3 / 4;
        grid-row: 1 / 2; }

    .gallery-item:nth-child(3) {
        grid-column: 3 / 4;
        grid-row: 2 / 4; }

    .gallery-item:nth-child(4) {
        grid-column: 1 / 2;
        grid-row: 3 / 4;
    }

    .gallery-item:nth-child(5) {
        grid-column: 2 / 3;
        grid-row: 3 / 4;
    }
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    inset-x: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.75));
    color: #FFF;
    padding: 12px;
    font-size: 0.85rem;
    font-weight: 500;
    text-align: center;
    z-index: 3;
}

.termin-alert-box {
    background: linear-gradient(135deg, #8A6A52 0%, #6E5A4A 100%);
    color: #FFFFFF;
    border-radius: var(--radius-lg);
    padding: 36px;
    display: flex;
    align-items: center;
    gap: 24px;
    position: relative;
    overflow: hidden;
    margin-bottom: 32px;
    box-shadow: 0 10px 30px rgba(138, 106, 82, .22);
}

.termin-alert-box::after {
    content: "";
    position: absolute;
    right: -80px;
    top: -80px;
    width: 220px;
    height: 220px;
    background: rgba(255, 255, 255, .05);
    border-radius: 50%;
}

.termin-alert-box p {
    color: rgba(255, 255, 255, 0.9);
}

.alert-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.alert-icon svg {
    width: 32px;
    height: 32px;
    color: #FFF;
}

.alert-content h3 {
    color: #FFF;
    font-size: 1.35rem;
    margin-bottom: 6px;
}

.phone-highlight-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #FFFFFF;
    color: var(--accent) !important;
    padding: 12px 28px;
    border-radius: var(--radius-full);
    font-size: 36px; font-weight: 700;
    margin-top: 12px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
    transition: var(--transition);
    line-height: 1.1;
}

.phone-highlight-btn svg {
    width: 30px;
    height: 30px;
}

.phone-highlight-btn:hover {
    transform: translateY(-2px);
    background: var(--bg-light-grey);
}

.termin-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 36px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    box-shadow: var(--shadow-subtle);
}

.opening-hours-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 16px;
}

.opening-card {
    background: var(--bg-light-grey);
    padding: 16px 20px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.opening-card.active {
    background: var(--accent-light);
    border-color: var(--accent);
}

.opening-card .day {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--ink);
}

.opening-card .time {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--accent);
}

.opening-card .note-tag {
    font-size: 0.8rem;
    color: var(--ink-soft);
}

.btn svg,
.schwerpunkte-title svg,
.maps-link svg,
.termin-hours h3 svg,
.termin-contact h3 svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.service-icon-box svg,
.contact-icon-wrapper svg {
    width: 20px;
    height: 20px;
}

.pin-icon {
    width: 20px;
    height: 20px;
}

.contact-block {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 16px;
    margin-bottom: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px;
    border-radius: var(--radius-md);
    background: var(--bg-light-grey);
    color: var(--ink);
}

.contact-item:hover {
    background: var(--accent-light);
}

.contact-icon-wrapper {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #FFF;
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.contact-item .label {
    display: block;
    font-size: 0.8rem;
    color: var(--ink-soft);
}

.contact-item .val {
    font-weight: 600;
    font-size: 1.05rem;
}

.note {
    font-size: 0.9rem;
    color: var(--ink-soft);
    display: flex;
    gap: 8px;
    align-items: flex-start;
}

.note svg {
    width: 18px;
    height: 18px;
    color: var(--accent);
    flex-shrink: 0;
    margin-top: 2px;
}

.anfahrt-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.anfahrt-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 36px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: var(--shadow-subtle);
}

.address {
    font-size: 1.15rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.pin-icon {
    color: var(--accent);
    flex-shrink: 0;
}

.map-frame {
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4/3;
    box-shadow: var(--shadow-subtle);
    border: 1px solid var(--border-color);
}

.map-frame iframe {
    width: 111.11%;
    height: 111.11%;
    border: 0;
    transform: scale(0.9);
    transform-origin: 0 0;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 14px;
    padding: 32px;
    background: var(--bg-light-grey);
}

.map-placeholder svg {
    width: 32px;
    height: 32px;
    color: var(--accent);
}

.map-placeholder p {
    color: var(--ink-soft);
    font-size: 0.9rem;
    max-width: 32ch;
    line-height: 1.6;
}

.cookie-banner {
    position: fixed;
    left: 0; right: 0; bottom: 0;
    z-index: 999;
    background: var(--surface);
    border-top: 1px solid var(--border-color);
    box-shadow: var(--shadow-hover);
    padding: 20px 24px;
    transform: translateY(120%);
    transition: transform 0.35s ease;
}

.cookie-banner.open {
    transform: translateY(0);
}

.cookie-banner-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.cookie-banner-inner p {
    color: var(--ink-soft);
    font-size: 0.88rem;
    line-height: 1.6;
    margin: 0;
    flex: 1 1 380px;
}

.cookie-banner-inner a {
    color: var(--accent);
    text-decoration: underline;
}

.cookie-banner-actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

footer {
    background: #2D2621;
    color: #E5E7EB;
    padding: 60px 0 30px;
    font-size: 0.9rem;
    border-top: 1px solid rgba(255, 255, 255, .08);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.footer-brand strong {
    color: #FFFFFF;
    font-size: 1.2rem;
    display: block;
}

.footer-brand span {
    color: #D1D5DB;
    font-size: 0.85rem;
    margin-bottom: 16px;
    display: block;
}

.footer-col h4 {
    color: #FFFFFF;
    font-size: 1.05rem;
    margin-bottom: 16px;
}

.footer-times {
    line-height: 1.8;
    margin-bottom: 20px;
}

.footer-legal-links {
    display: flex;
    gap: 20px;
}

.footer-legal-links a {
    color: #D1D5DB;
}

.footer-legal-links a:hover {
    color: #FFFFFF;
    text-decoration: underline;
}

.footer-cookie-link {
    background: none;
    border: none;
    padding: 0;
    font: inherit;
    color: #D1D5DB;
    cursor: pointer;
}

.footer-cookie-link:hover {
    color: #FFFFFF;
    text-decoration: underline;
}

.footer-bottom {
    padding-top: 30px;
    text-align: center;
    font-size: 0.85rem;
    color: #9CA3AF;
}

.footer-info {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
    line-height: 1.6;
}

.footer-info i {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    color: #E5E7EB;
}

.footer-info a {
    color: #E5E7EB;
    text-decoration: none;
}

.footer-info a:hover {
    color: #FFFFFF;
}

@media (max-width: 900px) {
    .btn {
        padding: 14px 24px; }

    header {
        padding: 12px 0;
    }

    .nav-container {
        position: relative;
    }

    .header-cta {
        display: none;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg-white);
        flex-direction: column;
        gap: 16px;
        padding: 24px;
        border-bottom: 1px solid var(--border-color);
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        text-align: center;
    }

    .nav-links.open {
        display: flex;
    }

    .menu-toggle {
        display: flex;
    }

    .badge {
        display: inline-block;
        padding: 0;
        margin-left: 0;
        margin-bottom: 4px;
        border-radius: 0;
        background: transparent;
    }

    section {
        padding: 40px 0;
    }

    .wrap {
        padding: 0 16px;
    }

    body {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    h1 {
        font-size: 1.85rem;
        margin-bottom: 12px;
    }

    h2 {
        font-size: 1.45rem;
        margin-bottom: 20px;
    }

    .hero-section {
        padding: 24px 0 32px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        text-align: left;
        gap: 16px;
    }

    .desktop-only {
        display: none;
    }

    .mobile-only {
        display: block;
        margin: 0 0 20px;
    }

    .about-image-container .desktop-only {
        display: none;
    }

    .about-image-container .mobile-only {
        display: block;
        margin: 0 0 20px;
    }

    .badge {
        margin-bottom: 10px;
    }

    .hero-subtitle {
        font-size: 1.05rem;
        margin-bottom: 12px;
    }

    .hero-description {
        font-size: 1rem;
        margin-bottom: 20px;
    }

    .trust-bullets {
        order: 7;
        grid-template-columns: 1fr 1fr;
        gap: 10px 14px;
        max-width: none;
        margin: 0 0 24px;
        background: var(--bg-light-grey);
        border: 1px solid var(--border-color);
        border-radius: var(--radius-md);
        padding: 16px;
    }

    .trust-item {
        font-size: 0.85rem;
    }

    .hero-buttons {
        order: 6;
        flex-direction: row;
        flex-wrap: nowrap;
        gap: 10px;
        width: 100%;
        margin-bottom: 20px;
    }

    .hero-buttons .btn {
        flex: 1 1 0;
        width: auto;
        padding-left: 12px;
        padding-right: 12px;
        font-size: 0.9rem;
    }

    .about {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .about-media {
        position: static;
    }

    .about-image-container {
        max-width: 320px;
        margin: 0 auto;
    }

    .gallery {
        display: block;
        position: relative;
        height: 380px;
        max-width: 280px;
        margin: 20px auto 30px;
        perspective: 1000px;
        cursor: pointer;
    }

    .gallery-item {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        border-radius: var(--radius-lg);
        overflow: hidden; box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
        border: 4px solid #FFFFFF;
        background: #FFF;
        user-select: none;
        transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.5s ease, z-index 0.5s step-end;
    }

    .gallery-item img {
        width: 100%;
        height: 100%;
        object-fit: cover; border-radius: calc(var(--radius-lg) - 4px);
    }

    .gallery-item:nth-child(1) {
        z-index: 3;
        transform: translate(0, 0) rotate(0deg) scale(1);
    }

    .gallery-item:nth-child(2) {
        z-index: 2;
        transform: translate(-10px, -8px) rotate(-6deg) scale(0.96);
    }

    .gallery-item:nth-child(3) {
        z-index: 1;
        transform: translate(12px, -12px) rotate(6deg) scale(0.92);
    }

    .gallery-item:nth-child(n+4) {
        z-index: 0;
        transform: translate(0, -15px) rotate(0deg) scale(0.88);
        opacity: 0;
    }

    .gallery-item.swiping {
        transform: translateX(-120%) rotate(-20deg) !important;
        opacity: 0;
        z-index: 10 !important;
        transition: transform 0.4s ease-in, opacity 0.4s ease-in;
    }

    .termin-alert-box {
        flex-direction: column;
        text-align: center;
        padding: 24px 16px;
    }

    .phone-highlight-btn {
        width: 100%;
        justify-content: center;
        font-size: 26px; }

    .termin-card {
        grid-template-columns: 1fr;
        padding: 20px 16px;
        gap: 20px;
    }

    .anfahrt-grid {
        grid-template-columns: 1fr;
    }

    footer {
        padding: 40px 0 20px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        padding-bottom: 24px;
    }
}