/* =========================================================
   UROANDRODOC RELAUNCH
   Global Styles
========================================================= */

:root {
    /* UroAndroDoc – dezente Farbwelt */

    --navy: #222222;
    --navy-dark: #171717;

    --petrol: #7d817d;
    --petrol-light: #b5b8b4;
    --petrol-soft: #f2f2f0;

    --white: #ffffff;
    --off-white: #f7f7f5;
    --light: #eeeeeb;

    --text: #2b2b2b;
    --text-soft: #6f716e;
    --border: #deded9;

    --shadow-sm: 0 8px 25px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 18px 50px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 28px 70px rgba(0, 0, 0, 0.11);

    --radius-sm: 12px;
    --radius-md: 22px;
    --radius-lg: 32px;

    --container: 1200px;
    --transition: 0.25s ease;
}


/* =========================================================
   RESET
========================================================= */

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;

    font-family:
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Roboto,
        Helvetica,
        Arial,
        sans-serif;

    color: var(--text);
    background: var(--white);

    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

body.menu-open {
    overflow: hidden;
}

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

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea,
select {
    font: inherit;
}

button {
    cursor: pointer;
}

h1,
h2,
h3,
h4,
p {
    margin-top: 0;
}

a:focus-visible,
button:focus-visible {
    outline: 3px solid var(--petrol-light);
    outline-offset: 4px;
}


/* =========================================================
   GLOBAL
========================================================= */

.container {
    width: min(calc(100% - 48px), var(--container));
    margin-inline: auto;
}

.section {
    padding: 110px 0;
}

.eyebrow {
    margin-bottom: 18px;

    color: var(--petrol);

    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.13em;
    line-height: 1.4;

    text-transform: uppercase;
}

.eyebrow-light {
    color: #d0d0cc;
}

.section-title {
    margin: 0;

    color: var(--navy);

    font-size: clamp(2.2rem, 4vw, 4.25rem);
    font-weight: 650;
    letter-spacing: -0.045em;
    line-height: 1.05;
}

.section-title span {
    color: var(--petrol);
}

.section-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: 50px;

    margin-bottom: 55px;
}

.section-heading > p {
    width: min(100%, 470px);
    margin: 0;

    color: var(--text-soft);

    font-size: 1.05rem;
}


/* =========================================================
   BUTTONS
========================================================= */

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 52px;
    padding: 0 25px;

    border: 1px solid transparent;
    border-radius: 999px;

    font-size: 0.92rem;
    font-weight: 700;

    transition:
        transform var(--transition),
        background var(--transition),
        border-color var(--transition),
        color var(--transition),
        box-shadow var(--transition);
}

.button:hover {
    transform: translateY(-2px);
}

.button-primary {
    color: var(--white);
    background: var(--navy);

    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

.button-primary:hover {
    background: #3d3d3d;

    box-shadow: 0 16px 35px rgba(0, 0, 0, 0.16);
}

.button-secondary {
    color: var(--navy);
    background: transparent;

    border-color: rgba(34, 34, 34, 0.18);
}

.button-secondary:hover {
    color: var(--navy);
    background: var(--off-white);

    border-color: var(--navy);
}

.button-light {
    color: var(--navy);
    background: var(--white);
}

.button-light:hover {
    background: var(--off-white);
}

.button-outline-light {
    color: var(--white);

    border-color: rgba(255, 255, 255, 0.35);
}

.button-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);

    border-color: var(--white);
}


/* =========================================================
   HEADER
========================================================= */

.site-header {
    position: sticky;
    z-index: 1000;
    top: 0;

    background: rgba(255, 255, 255, 0.94);

    border-bottom: 1px solid rgba(0, 0, 0, 0.07);

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.header-inner {
    width: min(calc(100% - 48px), 1320px);
    min-height: 88px;

    margin-inline: auto;

    display: flex;
    align-items: center;

    gap: 32px;
}

.brand {
    display: inline-flex;
    flex-direction: column;
    flex-shrink: 0;
}

.brand-name {
    color: var(--navy);

    font-size: 1.58rem;
    font-weight: 800;
    letter-spacing: -0.045em;
    line-height: 1;
}

.brand-name span {
    color: var(--petrol);
}

.brand-subtitle {
    margin-top: 6px;

    color: var(--text-soft);

    font-size: 0.64rem;
    font-weight: 600;
    letter-spacing: 0.055em;

    text-transform: uppercase;
}

.main-navigation {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 28px;

    margin-left: auto;
}

.main-navigation a {
    position: relative;

    padding: 10px 0;

    color: var(--navy);

    font-size: 0.9rem;
    font-weight: 650;
}

.main-navigation a::after {
    position: absolute;

    right: 0;
    bottom: 3px;
    left: 0;

    height: 2px;

    content: "";

    background: var(--petrol);

    transform: scaleX(0);
    transform-origin: center;

    transition: transform var(--transition);
}

.main-navigation a:hover::after {
    transform: scaleX(1);
}

.button-header {
    min-height: 46px;
    padding-inline: 21px;

    color: var(--white);
    background: var(--navy);
}

.button-header:hover {
    background: #424242;
}

.menu-toggle {
    display: none;

    width: 46px;
    height: 46px;

    padding: 0;

    border: 0;

    background: transparent;
}

.menu-toggle span {
    display: block;

    width: 25px;
    height: 2px;

    margin: 5px auto;

    background: var(--navy);

    transition: var(--transition);
}


/* =========================================================
   HERO
========================================================= */

.hero {
    position: relative;

    overflow: hidden;

    min-height: 710px;

    padding: 100px 0 85px;

    background:
        radial-gradient(
            circle at 88% 15%,
            rgba(150, 150, 145, 0.10),
            transparent 34%
        ),
        linear-gradient(
            135deg,
            #ffffff 0%,
            #f7f7f5 58%,
            #eeeeeb 100%
        );
}

.hero::before {
    position: absolute;

    top: -300px;
    right: -220px;

    width: 650px;
    height: 650px;

    content: "";

    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 50%;
}

.hero::after {
    position: absolute;

    right: 150px;
    bottom: -370px;

    width: 610px;
    height: 610px;

    content: "";

    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 50%;
}

.hero-background {
    position: absolute;

    inset: 0;

    pointer-events: none;
}

.hero-grid {
    position: relative;
    z-index: 2;

    display: grid;

    grid-template-columns:
        minmax(0, 1.2fr)
        minmax(330px, 0.8fr);

    align-items: center;

    gap: 85px;
}

.hero-content h1 {
    max-width: 780px;

    margin-bottom: 28px;

    color: var(--navy);

    font-size: clamp(3.1rem, 6.3vw, 6rem);
    font-weight: 650;
    letter-spacing: -0.06em;
    line-height: 0.98;
}

.hero-content h1 span {
    display: block;

    color: var(--petrol);
}

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

    margin-bottom: 34px;

    color: var(--text-soft);

    font-size: clamp(1.05rem, 1.6vw, 1.25rem);
    line-height: 1.75;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;

    gap: 14px;

    margin-bottom: 54px;
}

.hero-trust {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 28px;

    max-width: 720px;

    padding-top: 30px;

    border-top: 1px solid rgba(0, 0, 0, 0.12);
}

.trust-item {
    display: flex;
    flex-direction: column;

    gap: 4px;
}

.trust-item strong {
    color: var(--navy);

    font-size: 0.9rem;
}

.trust-item span {
    color: var(--text-soft);

    font-size: 0.78rem;
}

.hero-card {
    position: relative;

    padding: 48px;

    color: var(--white);

    background:
        linear-gradient(
            145deg,
            #303030,
            #1f1f1f
        );

    border-radius: var(--radius-lg);

    box-shadow: var(--shadow-lg);
}

.hero-card::before {
    position: absolute;

    top: 25px;
    right: 25px;

    width: 80px;
    height: 80px;

    content: "";

    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 50%;
}

.hero-card-label {
    margin-bottom: 30px;

    color: #d0d0cc;

    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.13em;

    text-transform: uppercase;
}

.hero-card h2 {
    margin-bottom: 20px;

    font-size: clamp(2rem, 3vw, 3rem);
    font-weight: 600;
    letter-spacing: -0.045em;
    line-height: 1.08;
}

.hero-card > p {
    margin-bottom: 36px;

    color: rgba(255, 255, 255, 0.72);
}

.hero-doctors {
    display: grid;

    gap: 15px;
}

.doctor-mini {
    display: grid;

    grid-template-columns: 48px 1fr;

    align-items: center;

    gap: 14px;

    padding: 15px;

    background: rgba(255, 255, 255, 0.08);

    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
}

.doctor-initials {
    display: grid;
    place-items: center;

    width: 48px;
    height: 48px;

    color: var(--navy);
    background: #d8d8d4;

    border-radius: 50%;

    font-size: 0.75rem;
    font-weight: 800;
}

.doctor-mini strong,
.doctor-mini span {
    display: block;
}

.doctor-mini strong {
    margin-bottom: 2px;

    font-size: 0.85rem;
}

.doctor-mini div > span {
    color: rgba(255, 255, 255, 0.64);

    font-size: 0.76rem;
}


/* =========================================================
   QUICK INFO
========================================================= */

.quick-info {
    position: relative;
    z-index: 5;

    margin-top: -1px;

    background: var(--white);

    border-bottom: 1px solid var(--border);
}

.quick-info-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);
}

.quick-info-item {
    display: flex;
    align-items: center;

    gap: 17px;

    min-height: 118px;

    padding: 25px 36px;

    border-right: 1px solid var(--border);

    transition:
        background var(--transition),
        color var(--transition);
}

.quick-info-item:first-child {
    border-left: 1px solid var(--border);
}

a.quick-info-item:hover {
    background: var(--off-white);
}

.quick-icon {
    display: grid;
    place-items: center;

    width: 44px;
    height: 44px;

    flex: 0 0 44px;

    color: var(--navy);
    background: var(--petrol-soft);

    border-radius: 50%;

    font-size: 1rem;
}

.quick-info-item small,
.quick-info-item strong {
    display: block;
}

.quick-info-item small {
    margin-bottom: 3px;

    color: var(--text-soft);

    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;

    text-transform: uppercase;
}

.quick-info-item strong {
    color: var(--navy);

    font-size: 0.93rem;
}


/* =========================================================
   WELCOME
========================================================= */

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

.welcome-grid {
    display: grid;

    grid-template-columns: 0.95fr 1.05fr;

    gap: 100px;
}

.welcome-copy {
    padding-top: 12px;
}

.welcome-copy p {
    margin-bottom: 22px;

    color: var(--text-soft);

    font-size: 1.08rem;
    line-height: 1.85;
}

.text-link {
    display: inline-flex;

    margin-top: 12px;
    padding-bottom: 4px;

    color: var(--navy);

    border-bottom: 1px solid rgba(34, 34, 34, 0.35);

    font-size: 0.9rem;
    font-weight: 750;

    transition:
        color var(--transition),
        border-color var(--transition);
}

.text-link:hover {
    color: var(--petrol);

    border-color: var(--petrol);
}


/* =========================================================
   DOCTORS
========================================================= */

.doctors-section {
    background: var(--off-white);
}

.doctor-grid {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 28px;
}

.doctor-card {
    overflow: hidden;

    background: var(--white);

    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: var(--radius-md);

    box-shadow: var(--shadow-sm);

    transition:
        transform var(--transition),
        box-shadow var(--transition);
}

.doctor-card:hover {
    transform: translateY(-6px);

    box-shadow: var(--shadow-md);
}

.doctor-image-placeholder {
    position: relative;

    display: grid;
    place-items: end start;

    min-height: 390px;

    padding: 30px;

    overflow: hidden;

    color: rgba(255, 255, 255, 0.78);

    background:
        linear-gradient(
            145deg,
            #7e817e,
            #303030
        );

    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.08em;

    text-transform: uppercase;
}

.doctor-image-placeholder::before {
    position: absolute;

    top: -75px;
    right: -65px;

    width: 270px;
    height: 270px;

    content: "";

    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 50%;
}

.doctor-card-content {
    padding: 38px;
}

.doctor-specialty {
    margin-bottom: 13px;

    color: var(--petrol);

    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.1em;

    text-transform: uppercase;
}

.doctor-card h3 {
    margin-bottom: 19px;

    color: var(--navy);

    font-size: clamp(1.7rem, 2.5vw, 2.55rem);
    font-weight: 650;
    letter-spacing: -0.04em;
    line-height: 1.08;
}

.doctor-card-content > p:not(.doctor-specialty) {
    color: var(--text-soft);

    line-height: 1.8;
}


/* =========================================================
   SERVICES
========================================================= */

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

.service-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    border-top: 1px solid var(--border);
    border-left: 1px solid var(--border);
}

.service-card {
    position: relative;

    min-height: 285px;

    padding: 36px;

    background: var(--white);

    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);

    transition:
        background var(--transition),
        transform var(--transition);
}

.service-card:hover {
    z-index: 2;

    background: var(--navy);
}

.service-number {
    display: block;

    margin-bottom: 45px;

    color: var(--petrol);

    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.1em;
}

.service-card h3 {
    margin-bottom: 14px;

    color: var(--navy);

    font-size: 1.6rem;
    font-weight: 650;
    letter-spacing: -0.035em;

    transition: color var(--transition);
}

.service-card p {
    max-width: 280px;

    margin-bottom: 30px;

    color: var(--text-soft);

    font-size: 0.92rem;

    transition: color var(--transition);
}

.service-arrow {
    position: absolute;

    right: 30px;
    bottom: 28px;

    display: grid;
    place-items: center;

    width: 38px;
    height: 38px;

    color: var(--petrol);

    border: 1px solid rgba(80, 80, 80, 0.25);
    border-radius: 50%;

    transition:
        transform var(--transition),
        color var(--transition),
        border-color var(--transition);
}

.service-card:hover h3,
.service-card:hover .service-number,
.service-card:hover .service-arrow {
    color: var(--white);
}

.service-card:hover p {
    color: rgba(255, 255, 255, 0.7);
}

.service-card:hover .service-arrow {
    border-color: rgba(255, 255, 255, 0.3);

    transform: translateX(3px);
}


/* =========================================================
   CONTACT CTA
========================================================= */

.contact-cta {
    padding: 95px 0;

    color: var(--white);

    background:
        radial-gradient(
            circle at 85% 15%,
            rgba(255, 255, 255, 0.08),
            transparent 27%
        ),
        #242424;
}

.contact-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 70px;
}

.contact-cta h2 {
    max-width: 720px;

    margin: 0;

    font-size: clamp(2.3rem, 4vw, 4.4rem);
    font-weight: 600;
    letter-spacing: -0.05em;
    line-height: 1.03;
}

.contact-cta-actions {
    display: flex;
    flex-direction: column;

    gap: 13px;

    min-width: 240px;
}


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

.site-footer {
    padding: 75px 0 28px;

    color: rgba(255, 255, 255, 0.7);

    background: #171717;
}

.footer-grid {
    display: grid;

    grid-template-columns:
        1.5fr
        0.8fr
        1fr
        0.7fr;

    gap: 55px;

    padding-bottom: 65px;
}

.footer-brand .brand-name {
    color: var(--white);
}

.footer-brand .brand-name span {
    color: #c5c5c1;
}

.footer-grid > div:first-child p {
    max-width: 280px;

    margin-top: 22px;

    line-height: 1.8;
}

.footer-grid h3 {
    margin-bottom: 20px;

    color: var(--white);

    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.08em;

    text-transform: uppercase;
}

.footer-grid a {
    display: block;

    width: fit-content;

    margin-bottom: 10px;

    color: rgba(255, 255, 255, 0.66);

    font-size: 0.87rem;

    transition: color var(--transition);
}

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

.footer-grid p {
    font-size: 0.87rem;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 25px;

    padding-top: 26px;

    border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.footer-bottom p {
    margin: 0;

    color: rgba(255, 255, 255, 0.42);

    font-size: 0.75rem;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1100px) {

    .header-inner {
        gap: 20px;
    }

    .main-navigation {
        gap: 17px;
    }

    .button-header {
        display: none;
    }

    .hero-grid {
        gap: 45px;
    }

    .hero-card {
        padding: 38px;
    }

    .welcome-grid {
        gap: 60px;
    }

}


/* =========================================================
   MOBILE NAVIGATION
========================================================= */

@media (max-width: 900px) {

    .container {
        width: min(calc(100% - 36px), var(--container));
    }

    .header-inner {
        width: min(calc(100% - 36px), 1320px);
        min-height: 76px;
    }

    .brand-subtitle {
        display: none;
    }

    .menu-toggle {
        display: block;

        margin-left: auto;
    }

    .main-navigation {
        position: fixed;
        z-index: 999;

        top: 76px;
        right: 0;
        bottom: 0;
        left: 0;

        display: flex;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;

        gap: 0;

        padding: 25px 25px 50px;

        background: var(--white);

        opacity: 0;
        visibility: hidden;

        transform: translateY(-10px);

        transition:
            opacity var(--transition),
            visibility var(--transition),
            transform var(--transition);
    }

    .main-navigation.is-open {
        opacity: 1;
        visibility: visible;

        transform: translateY(0);
    }

    .main-navigation a {
        padding: 20px 5px;

        border-bottom: 1px solid var(--border);

        font-size: 1.2rem;
    }

    .main-navigation a::after {
        display: none;
    }

    .menu-toggle.is-active span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .menu-toggle.is-active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.is-active span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .hero {
        min-height: auto;

        padding: 75px 0;
    }

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

    .hero-content h1 {
        max-width: 700px;
    }

    .hero-card {
        max-width: 650px;
    }

    .quick-info-grid {
        grid-template-columns: 1fr;
    }

    .quick-info-item,
    .quick-info-item:first-child {
        min-height: 95px;

        border-right: 1px solid var(--border);
        border-bottom: 1px solid var(--border);
        border-left: 1px solid var(--border);
    }

    .welcome-grid {
        grid-template-columns: 1fr;

        gap: 45px;
    }

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

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

    .contact-cta-inner {
        align-items: flex-start;
        flex-direction: column;
    }

    .contact-cta-actions {
        flex-direction: row;
        flex-wrap: wrap;
    }

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

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 600px) {

    .section {
        padding: 78px 0;
    }

    .hero {
        padding: 60px 0 65px;
    }

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

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

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

    .hero-trust {
        grid-template-columns: 1fr;

        gap: 18px;
    }

    .hero-card {
        padding: 30px 24px;

        border-radius: 24px;
    }

    .section-heading {
        align-items: flex-start;
        flex-direction: column;

        gap: 25px;
    }

    .doctor-image-placeholder {
        min-height: 300px;
    }

    .doctor-card-content {
        padding: 28px;
    }

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

    .service-card {
        min-height: 235px;

        padding: 30px;
    }

    .contact-cta {
        padding: 75px 0;
    }

    .contact-cta-actions {
        width: 100%;

        flex-direction: column;
    }

    .contact-cta-actions .button {
        width: 100%;
    }

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

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
    }

}


/* =========================================================
   UROANDRODOC ORIGINAL-FARBWELT
   Naturtöne nach bestehendem Praxisauftritt
========================================================= */

:root {
    --navy: #382E24;
    --navy-dark: #241E18;

    --petrol: #DF9069;
    --petrol-light: #F1DC73;
    --petrol-soft: #F2EDC3;

    --yellow: #F1DC73;
    --cream: #F2EDC3;
    --coral: #DF9069;
    --mint: #D5F1B8;
    --aqua: #B6EDCF;

    --white: #FFFFFF;
    --off-white: #FBF8E8;
    --light: #F2EDC3;

    --text: #2A241D;
    --text-soft: #6C6254;
    --border: #DED4A8;

    --shadow-sm: 0 8px 25px rgba(76, 61, 35, 0.08);
    --shadow-md: 0 18px 50px rgba(76, 61, 35, 0.12);
    --shadow-lg: 0 28px 70px rgba(76, 61, 35, 0.16);
}


/* ---------------------------------------------------------
   HEADER
--------------------------------------------------------- */

.site-header {
    background: rgba(255, 252, 237, 0.95);
    border-bottom: 1px solid rgba(90, 73, 42, 0.10);
}

.brand-name {
    color: var(--text);
}

.brand-name span {
    color: var(--coral);
}

.brand-subtitle {
    color: var(--text-soft);
}

.main-navigation a {
    color: var(--text);
}

.main-navigation a::after {
    background: var(--coral);
}

.button-header {
    color: #FFFFFF;
    background: var(--coral);
}

.button-header:hover {
    background: #C97856;
}


/* ---------------------------------------------------------
   HERO – warme Natur-/Sonnenfarben
--------------------------------------------------------- */

.hero {
    background:
        radial-gradient(
            circle at 88% 18%,
            rgba(241, 220, 115, 0.82),
            transparent 36%
        ),
        radial-gradient(
            circle at 15% 85%,
            rgba(182, 237, 207, 0.70),
            transparent 40%
        ),
        linear-gradient(
            135deg,
            #FFF8CE 0%,
            #F1DC73 40%,
            #D5F1B8 72%,
            #B6EDCF 100%
        );
}

.hero::before {
    border-color: rgba(56, 46, 36, 0.10);
}

.hero::after {
    border-color: rgba(56, 46, 36, 0.08);
}

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

.hero-content h1 span {
    color: #755C38;
}

.hero-text {
    color: #5E5548;
}

.eyebrow {
    color: #755C38;
}


/* ---------------------------------------------------------
   BUTTONS
--------------------------------------------------------- */

.button-primary {
    color: #FFFFFF;
    background: var(--coral);

    box-shadow: 0 12px 28px rgba(223, 144, 105, 0.25);
}

.button-primary:hover {
    background: #C97856;

    box-shadow: 0 16px 35px rgba(223, 144, 105, 0.34);
}

.button-secondary {
    color: var(--text);
    background: rgba(255, 255, 255, 0.35);

    border-color: rgba(56, 46, 36, 0.22);
}

.button-secondary:hover {
    color: var(--text);
    background: var(--cream);
    border-color: var(--coral);
}


/* ---------------------------------------------------------
   VERTRAUENSBEREICH
--------------------------------------------------------- */

.hero-trust {
    border-top-color: rgba(56, 46, 36, 0.16);
}

.trust-item strong {
    color: var(--text);
}

.trust-item span {
    color: var(--text-soft);
}


/* ---------------------------------------------------------
   HERO CARD
--------------------------------------------------------- */

.hero-card {
    color: var(--text);

    background:
        linear-gradient(
            145deg,
            #F5E683 0%,
            #F1DC73 55%,
            #E7CF64 100%
        );

    border: 1px solid rgba(104, 84, 44, 0.12);

    box-shadow:
        0 28px 70px rgba(111, 89, 45, 0.18);
}

.hero-card::before {
    border-color: rgba(56, 46, 36, 0.15);
}

.hero-card-label {
    color: #705B38;
}

.hero-card h2 {
    color: var(--text);
}

.hero-card > p {
    color: rgba(56, 46, 36, 0.72);
}

.doctor-mini {
    background: rgba(242, 237, 195, 0.76);

    border-color: rgba(56, 46, 36, 0.09);
}

.doctor-initials {
    color: var(--text);
    background: var(--coral);
}

.doctor-mini strong {
    color: var(--text);
}

.doctor-mini div > span {
    color: #6B5B47;
}


/* ---------------------------------------------------------
   SCHNELLINFORMATIONEN
--------------------------------------------------------- */

.quick-info {
    background: #FFFDF4;

    border-color: var(--border);
}

.quick-info-item {
    border-color: var(--border);
}

a.quick-info-item:hover {
    background: var(--cream);
}

.quick-icon {
    color: var(--text);
    background: var(--yellow);
}

.quick-info-item small {
    color: #796C59;
}

.quick-info-item strong {
    color: var(--text);
}


/* ---------------------------------------------------------
   WILLKOMMEN
--------------------------------------------------------- */

.welcome {
    background: #FFFDF5;
}

.section-title {
    color: var(--text);
}

.section-title span {
    color: #806839;
}

.welcome-copy p {
    color: var(--text-soft);
}

.text-link {
    color: #9A6045;

    border-color: rgba(223, 144, 105, 0.6);
}

.text-link:hover {
    color: var(--coral);
    border-color: var(--coral);
}


/* ---------------------------------------------------------
   ÄRZTE
--------------------------------------------------------- */

.doctors-section {
    background:
        radial-gradient(
            circle at 8% 15%,
            rgba(213, 241, 184, 0.72),
            transparent 36%
        ),
        radial-gradient(
            circle at 90% 82%,
            rgba(182, 237, 207, 0.68),
            transparent 38%
        ),
        linear-gradient(
            135deg,
            #EEF1B6 0%,
            #D5F1B8 45%,
            #B6EDCF 100%
        );
}

.doctor-card {
    background: var(--yellow);

    border-color: rgba(90, 71, 38, 0.10);

    box-shadow:
        0 12px 32px rgba(89, 72, 39, 0.12);
}

.doctor-image-placeholder {
    color: var(--text);

    background:
        linear-gradient(
            145deg,
            #F5E887 0%,
            #D5F1B8 48%,
            #B6EDCF 100%
        );
}

.doctor-image-placeholder::before {
    border-color: rgba(56, 46, 36, 0.15);
}

.doctor-specialty {
    color: #956044;
}

.doctor-card h3 {
    color: var(--text);
}

.doctor-card-content > p:not(.doctor-specialty) {
    color: #61584B;
}


/* ---------------------------------------------------------
   LEISTUNGEN
--------------------------------------------------------- */

.services {
    background:
        linear-gradient(
            180deg,
            #FFFDF5 0%,
            #F6F0C6 100%
        );
}

.service-grid {
    border-color: #D9CF9F;
}

.service-card {
    background: var(--cream);

    border-color: #D9CF9F;
}

.service-number {
    color: #A96B4E;
}

.service-card h3 {
    color: var(--text);
}

.service-card p {
    color: var(--text-soft);
}

.service-arrow {
    color: var(--coral);

    border-color: rgba(223, 144, 105, 0.45);
}

.service-card:hover {
    background: var(--coral);
}

.service-card:hover h3,
.service-card:hover .service-number,
.service-card:hover .service-arrow {
    color: #FFFFFF;
}

.service-card:hover p {
    color: rgba(255, 255, 255, 0.88);
}


/* ---------------------------------------------------------
   TERMIN CTA
--------------------------------------------------------- */

.contact-cta {
    color: var(--text);

    background:
        radial-gradient(
            circle at 88% 15%,
            rgba(182, 237, 207, 0.70),
            transparent 33%
        ),
        linear-gradient(
            135deg,
            #F1DC73 0%,
            #F4E484 55%,
            #D5F1B8 100%
        );
}

.contact-cta h2 {
    color: var(--text);
}

.eyebrow-light {
    color: #765B35;
}

.button-light {
    color: #FFFFFF;
    background: var(--coral);
}

.button-light:hover {
    background: #C97856;
}

.button-outline-light {
    color: var(--text);

    background: rgba(255, 255, 255, 0.25);

    border-color: rgba(56, 46, 36, 0.28);
}

.button-outline-light:hover {
    color: var(--text);

    background: var(--cream);

    border-color: var(--coral);
}


/* ---------------------------------------------------------
   FOOTER – wie Original warm statt schwarz
--------------------------------------------------------- */

.site-footer {
    color: #50493E;

    background:
        radial-gradient(
            circle at 10% 25%,
            rgba(213, 241, 184, 0.48),
            transparent 35%
        ),
        linear-gradient(
            135deg,
            #F1DC73 0%,
            #E9DD83 50%,
            #D9E7A6 100%
        );
}

.footer-brand .brand-name {
    color: var(--text);
}

.footer-brand .brand-name span {
    color: #A66549;
}

.footer-grid h3 {
    color: var(--text);
}

.footer-grid a {
    color: #544C40;
}

.footer-grid a:hover {
    color: #A45F43;
}

.footer-grid p {
    color: #5E5549;
}

.footer-bottom {
    border-top-color: rgba(56, 46, 36, 0.16);
}

.footer-bottom p {
    color: rgba(56, 46, 36, 0.62);
}


/* ---------------------------------------------------------
   MOBILE NAVIGATION
--------------------------------------------------------- */

@media (max-width: 900px) {

    .main-navigation {
        background: #FFFDF4;
    }

    .main-navigation a {
        color: var(--text);

        border-bottom-color: var(--border);
    }

}



/* =========================================================
   ECHTE ARZTFOTOS
========================================================= */

.doctor-image {
    position: relative;
    overflow: hidden;

    width: 100%;
    height: 390px;

    background:
        linear-gradient(
            145deg,
            #F5E887,
            #D5F1B8
        );
}

.doctor-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center top;

    transition:
        transform 0.45s ease,
        filter 0.45s ease;
}

.doctor-card:hover .doctor-image img {
    transform: scale(1.025);
}

@media (max-width: 600px) {

    .doctor-image {
        height: 310px;
    }

}


/* =========================================================
   PRAXISZEITEN
========================================================= */

.practice-hours {
    background:
        radial-gradient(
            circle at 5% 15%,
            rgba(213, 241, 184, 0.55),
            transparent 32%
        ),
        linear-gradient(
            135deg,
            #FFF9D7 0%,
            #F5E893 52%,
            #DDEEB5 100%
        );
}

.practice-hours-heading {
    margin-bottom: 48px;
}

.practice-hours-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.practice-hours-card {
    padding: 42px;

    background: rgba(255, 253, 240, 0.92);

    border: 1px solid rgba(80, 63, 35, 0.10);
    border-radius: var(--radius-md);

    box-shadow: var(--shadow-sm);
}

.practice-hours-card-alt {
    background: rgba(242, 237, 195, 0.94);
}

.practice-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    margin-bottom: 28px;
}

.practice-number {
    display: grid;
    place-items: center;

    width: 42px;
    height: 42px;

    color: #FFFFFF;
    background: var(--coral);

    border-radius: 50%;

    font-size: 0.72rem;
    font-weight: 800;
}

.practice-label {
    margin: 0;

    color: #806347;

    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.09em;

    text-transform: uppercase;
}

.practice-hours-card h3 {
    margin-bottom: 8px;

    color: var(--text);

    font-size: clamp(1.6rem, 2.5vw, 2.35rem);
    font-weight: 650;
    letter-spacing: -0.04em;
    line-height: 1.1;
}

.practice-hours-card h4 {
    margin-bottom: 32px;

    color: #8B5C45;

    font-size: 1rem;
    font-weight: 700;
}

.hours-list {
    margin-bottom: 24px;

    border-top: 1px solid rgba(56, 46, 36, 0.13);
}

.hours-row {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 25px;

    padding: 15px 0;

    border-bottom: 1px solid rgba(56, 46, 36, 0.13);
}

.hours-row span {
    color: var(--text-soft);
}

.hours-row strong {
    color: var(--text);

    font-size: 0.93rem;
    text-align: right;
}

.hours-note {
    margin: 22px 0;

    color: var(--text-soft);

    font-size: 0.92rem;
    line-height: 1.7;
}

@media (max-width: 800px) {

    .practice-hours-grid {
        grid-template-columns: 1fr;
    }

}

@media (max-width: 500px) {

    .practice-hours-card {
        padding: 28px 22px;
    }

    .hours-row {
        align-items: flex-start;
        flex-direction: column;

        gap: 4px;
    }

    .hours-row strong {
        text-align: left;
    }

}


/* =========================================================
   UROANDRODOC ORIGINAL-LOGO
========================================================= */

.brand-logo {
    display: flex;
    align-items: center;

    width: 185px;
    max-width: 185px;
}

.brand-logo img {
    display: block;

    width: 100%;
    height: auto;

    object-fit: contain;
}

.footer-logo {
    width: 190px;
    max-width: 190px;

    margin-bottom: 20px;
}

.footer-logo img {
    display: block;

    width: 100%;
    height: auto;

    object-fit: contain;
}

@media (max-width: 900px) {

    .brand-logo {
        width: 145px;
        max-width: 145px;
    }

}

@media (max-width: 500px) {

    .brand-logo {
        width: 130px;
        max-width: 130px;
    }

    .footer-logo {
        width: 160px;
        max-width: 160px;
    }

}


/* =========================================================
   KORREKTUR: ARZTFOTOS VOLLSTÄNDIG ANZEIGEN
========================================================= */

.doctor-image {
    width: 100%;
    height: auto;
    overflow: hidden;

    background: #ffffff;
}

.doctor-image img {
    display: block;

    width: 100%;
    height: auto;

    object-fit: contain;
    object-position: center;

    transform: none;
}

.doctor-card:hover .doctor-image img {
    transform: none;
}


/* Alte feste mobile Bildhöhe überschreiben */

@media (max-width: 600px) {

    .doctor-image {
        height: auto;
    }

}


/* =========================================================
   FOOTER – KONTAKTDATEN STATT LOGO
========================================================= */

.footer-grid {
    grid-template-columns: 1.5fr 0.75fr 0.75fr;
}

.footer-contact-main h3 {
    margin-bottom: 16px;
}

.footer-practice-name {
    margin-bottom: 18px !important;

    color: var(--text) !important;

    font-size: 1rem !important;
    font-weight: 700;
    line-height: 1.5 !important;
}

.footer-contact-main address {
    margin-bottom: 22px;

    color: #554c40;

    font-size: 0.9rem;
    font-style: normal;
    line-height: 1.7;
}

.footer-contact-links {
    display: grid;

    gap: 10px;
}

.footer-contact-links a {
    display: block;

    width: fit-content;

    margin: 0;

    color: #4f473c;

    font-size: 0.88rem;
    line-height: 1.5;
}

.footer-contact-links a span {
    display: inline-block;

    min-width: 58px;

    color: #8e6045;

    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.06em;

    text-transform: uppercase;
}

.footer-contact-links a:hover {
    color: #a45f43;
}


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

@media (max-width: 900px) {

    .footer-grid {
        grid-template-columns: 1.4fr 0.8fr 0.8fr;
    }

}

@media (max-width: 650px) {

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

    .footer-contact-main {
        grid-column: 1 / -1;

        padding-bottom: 25px;
    }

}

@media (max-width: 480px) {

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

    .footer-contact-main {
        grid-column: auto;
    }

}


/* =========================================================
   PROFESSIONAL PRACTICE HEADER
========================================================= */

.site-header {
    position: sticky;
    z-index: 1000;
    top: 0;

    background: #fffdf2;

    border-bottom: 0;

    box-shadow:
        0 3px 18px rgba(80, 61, 25, 0.08);

    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}


/* ---------------------------------------------------------
   OBERE PRAXISZEILE
--------------------------------------------------------- */

.practice-header {
    background:
        linear-gradient(
            100deg,
            #f5e47c 0%,
            #f1dc73 55%,
            #f4e58b 100%
        );
}

.practice-header-inner {
    width: min(calc(100% - 48px), 1320px);

    min-height: 105px;

    margin-inline: auto;

    display: grid;

    grid-template-columns:
        76px
        minmax(260px, 1.35fr)
        minmax(170px, 0.7fr)
        minmax(235px, 1fr);

    align-items: center;

    gap: 28px;
}


/* ---------------------------------------------------------
   LOGO
--------------------------------------------------------- */

.practice-logo {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 68px;
}

.practice-logo img {
    display: block;

    width: 68px;
    height: auto;
}


/* ---------------------------------------------------------
   PRAXISIDENTITÄT
--------------------------------------------------------- */

.practice-identity {
    display: flex;
    flex-direction: column;

    gap: 3px;
}

.practice-kicker {
    color: #8a6545;

    font-size: 0.66rem;
    font-weight: 800;
    letter-spacing: 0.13em;

    text-transform: uppercase;
}

.practice-identity strong {
    color: #2e281f;

    font-size: 1.02rem;
    font-weight: 750;
    line-height: 1.3;
}

.practice-specialties {
    color: #655845;

    font-size: 0.76rem;
    line-height: 1.4;
}


/* ---------------------------------------------------------
   ADRESSE
--------------------------------------------------------- */

.practice-address {
    display: flex;
    flex-direction: column;

    padding-left: 26px;

    border-left: 1px solid rgba(70, 54, 28, 0.18);
}

.practice-address strong {
    color: #332b22;

    font-size: 0.82rem;
}

.practice-address span {
    color: #665a49;

    font-size: 0.78rem;
}


/* ---------------------------------------------------------
   KONTAKTDATEN
--------------------------------------------------------- */

.practice-contact {
    display: grid;

    gap: 5px;

    padding-left: 26px;

    border-left: 1px solid rgba(70, 54, 28, 0.18);
}

.practice-contact a,
.practice-contact div {
    display: grid;

    grid-template-columns: 52px 1fr;

    align-items: baseline;

    color: #3a3026;

    font-size: 0.75rem;
}

.practice-contact a:hover {
    color: #b86848;
}

.practice-contact span {
    color: #8a6545;

    font-size: 0.59rem;
    font-weight: 800;
    letter-spacing: 0.06em;

    text-transform: uppercase;
}


/* ---------------------------------------------------------
   NAVIGATION
--------------------------------------------------------- */

.navigation-bar {
    background: rgba(255, 253, 242, 0.98);

    border-top: 1px solid rgba(76, 58, 30, 0.08);
}

.navigation-inner {
    width: min(calc(100% - 48px), 1320px);

    min-height: 60px;

    margin-inline: auto;

    display: flex;
    align-items: center;

    gap: 30px;
}

.main-navigation {
    display: flex;
    align-items: center;

    gap: 25px;

    margin: 0;
}

.main-navigation a {
    position: relative;

    padding: 20px 0 17px;

    color: #42372b;

    font-size: 0.77rem;
    font-weight: 700;
}

.main-navigation a::after {
    position: absolute;

    right: 0;
    bottom: 12px;
    left: 0;

    height: 2px;

    content: "";

    background: #df9069;

    transform: scaleX(0);

    transition: transform 0.25s ease;
}

.main-navigation a:hover::after {
    transform: scaleX(1);
}


/* ---------------------------------------------------------
   TERMINBUTTON
--------------------------------------------------------- */

.header-appointment {
    margin-left: auto;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 40px;

    padding: 0 20px;

    color: #ffffff;
    background: #df9069;

    border-radius: 999px;

    font-size: 0.76rem;
    font-weight: 750;

    box-shadow:
        0 7px 18px rgba(184, 106, 73, 0.18);

    transition:
        background 0.25s ease,
        transform 0.25s ease;
}

.header-appointment:hover {
    background: #c97856;

    transform: translateY(-1px);
}


/* ---------------------------------------------------------
   MOBILE ELEMENTS
--------------------------------------------------------- */

.mobile-phone {
    display: none;
}

.mobile-menu-contact {
    display: none;
}


/* =========================================================
   TABLET HEADER
========================================================= */

@media (max-width: 1120px) {

    .practice-header-inner {
        grid-template-columns:
            68px
            1.25fr
            0.75fr;
    }

    .practice-contact {
        display: none;
    }

    .main-navigation {
        gap: 18px;
    }

    .main-navigation a {
        font-size: 0.72rem;
    }

}


/* =========================================================
   MOBILE HEADER
========================================================= */

@media (max-width: 900px) {

    .practice-header-inner {
        width: min(calc(100% - 28px), 1320px);

        min-height: 74px;

        display: flex;
        align-items: center;

        gap: 13px;
    }

    .practice-logo {
        width: 48px;
        flex: 0 0 48px;
    }

    .practice-logo img {
        width: 48px;
    }

    .practice-identity {
        min-width: 0;

        margin-right: auto;
    }

    .practice-kicker {
        font-size: 0.52rem;
    }

    .practice-identity strong {
        overflow: hidden;

        max-width: 235px;

        font-size: 0.78rem;

        white-space: nowrap;
        text-overflow: ellipsis;
    }

    .practice-specialties {
        display: none;
    }

    .practice-address,
    .practice-contact {
        display: none;
    }

    .mobile-phone {
        display: grid;
        place-items: center;

        width: 38px;
        height: 38px;

        flex: 0 0 38px;

        color: #ffffff;
        background: #df9069;

        border-radius: 50%;

        font-size: 0.9rem;
    }

    .menu-toggle {
        display: block;

        width: 42px;
        height: 42px;

        margin: 0;

        flex: 0 0 42px;
    }

    .navigation-bar {
        border: 0;
    }

    .navigation-inner {
        width: 100%;
        min-height: 0;
    }

    .header-appointment {
        display: none;
    }

    .main-navigation {
        position: fixed;

        z-index: 999;

        top: 74px;
        right: 0;
        bottom: 0;
        left: 0;

        display: flex;

        flex-direction: column;
        align-items: stretch;

        gap: 0;

        margin: 0;

        padding: 20px 25px 45px;

        overflow-y: auto;

        background: #fffdf2;

        opacity: 0;
        visibility: hidden;

        transform: translateY(-8px);

        transition:
            opacity 0.25s ease,
            visibility 0.25s ease,
            transform 0.25s ease;
    }

    .main-navigation.is-open {
        opacity: 1;
        visibility: visible;

        transform: translateY(0);
    }

    .main-navigation > a {
        padding: 17px 4px;

        border-bottom: 1px solid #e3d9b0;

        font-size: 1rem;
    }

    .main-navigation > a::after {
        display: none;
    }

    .mobile-menu-contact {
        display: flex;
        flex-direction: column;

        gap: 9px;

        margin-top: 25px;
        padding: 22px;

        color: #44372b;
        background: #f5e47c;

        border-radius: 18px;

        font-size: 0.83rem;
    }

    .mobile-menu-contact strong {
        font-size: 0.95rem;
    }

    .mobile-menu-contact a {
        padding: 0;

        color: #9b5e43;

        border: 0;

        font-size: 0.85rem;
    }

}


/* =========================================================
   SEHR KLEINE DISPLAYS
========================================================= */

@media (max-width: 480px) {

    .practice-identity strong {
        max-width: 170px;

        font-size: 0.72rem;
    }

    .practice-kicker {
        font-size: 0.48rem;
    }

    .practice-logo,
    .practice-logo img {
        width: 44px;
    }

    .practice-logo {
        flex-basis: 44px;
    }

}


/* =========================================================
   UROANDRODOC HERO – ORIGINAL SONNENUNTERGANG
========================================================= */

.hero {
    position: relative;
    isolation: isolate;
    overflow: hidden;

    min-height: 720px;

    background: #f1dc73;
}

/* Originalbild */
.hero-background {
    position: absolute;
    z-index: -2;
    inset: 0;

    overflow: hidden;

    pointer-events: none;
}

.hero-background::before {
    position: absolute;
    inset: -5%;

    content: "";

    background-image:
        url("../images/hero-sonnenuntergang.jpg");

    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;

    transform: scale(1.04);

    animation:
        uroandrodocHeroMove 20s ease-in-out infinite alternate;

    will-change: transform;
}

/* Dezenter Lesbarkeitsverlauf über dem Bild */
.hero-background::after {
    position: absolute;
    inset: 0;

    content: "";

    background:
        linear-gradient(
            90deg,
            rgba(255, 246, 190, 0.92) 0%,
            rgba(255, 241, 168, 0.76) 34%,
            rgba(255, 222, 109, 0.30) 58%,
            rgba(255, 214, 90, 0.10) 100%
        );
}


/* Langsame, hochwertige Bildbewegung */
@keyframes uroandrodocHeroMove {

    0% {
        transform:
            scale(1.04)
            translate3d(0, 0, 0);
    }

    50% {
        transform:
            scale(1.09)
            translate3d(-1.2%, -0.8%, 0);
    }

    100% {
        transform:
            scale(1.13)
            translate3d(1%, -1.2%, 0);
    }

}


/* Hero-Texte auf dem Bild */

.hero-content h1 {
    color: #211b16;
}

.hero-content h1 span {
    color: #5e4731;
}

.hero-text {
    color: #443a30;
}

.hero .eyebrow {
    color: #6c4e31;
}

.hero-trust {
    border-top-color: rgba(42, 32, 21, 0.24);
}

.hero .trust-item strong {
    color: #2d251e;
}

.hero .trust-item span {
    color: #554b40;
}


/* Hero-Karte etwas transparenter und natürlicher */

.hero-card {
    background:
        linear-gradient(
            145deg,
            rgba(245, 226, 116, 0.94),
            rgba(239, 211, 93, 0.90)
        );

    border: 1px solid rgba(83, 60, 31, 0.16);

    box-shadow:
        0 25px 65px rgba(64, 43, 17, 0.22);

    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}


/* Bewegungsreduktion für Barrierefreiheit */

@media (prefers-reduced-motion: reduce) {

    .hero-background::before {
        animation: none;

        transform: scale(1.05);
    }

}


/* Mobile Anpassung */

@media (max-width: 900px) {

    .hero {
        min-height: auto;
    }

    .hero-background::before {
        background-position: 57% center;
    }

    .hero-background::after {
        background:
            linear-gradient(
                180deg,
                rgba(255, 241, 168, 0.82) 0%,
                rgba(255, 232, 140, 0.58) 48%,
                rgba(255, 221, 105, 0.34) 100%
            );
    }

}


/* =========================================================
   UROANDRODOC – HERO SHOWCASE
   Originalbild als zentraler Hingucker
========================================================= */

.hero.hero-showcase {
    position: relative;
    isolation: isolate;

    min-height: 720px;
    padding: 0;

    overflow: hidden;

    background: #e6c95c;
}


/* ---------------------------------------------------------
   ORIGINALBILD
--------------------------------------------------------- */

.hero-showcase .hero-background {
    position: absolute;
    z-index: -3;

    inset: 0;

    overflow: hidden;
}

.hero-showcase .hero-background::before {
    position: absolute;

    inset: -4%;

    content: "";

    background-image:
        url("../images/hero-sonnenuntergang.jpg");

    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;

    transform: scale(1.035);

    animation:
        uroHeroCinematic 24s ease-in-out infinite alternate;

    will-change: transform;
}


/* ---------------------------------------------------------
   NUR LEICHTER VERLAUF FÜR LESBARKEIT
   Das Bild bleibt klar sichtbar.
--------------------------------------------------------- */

.hero-showcase .hero-background::after {
    position: absolute;

    inset: 0;

    content: "";

    background:
        linear-gradient(
            90deg,
            rgba(35, 27, 19, 0.52) 0%,
            rgba(47, 35, 23, 0.32) 32%,
            rgba(47, 35, 23, 0.09) 58%,
            rgba(47, 35, 23, 0.00) 78%
        );
}


/* Vorherige dekorative Hero-Kreise deaktivieren */

.hero.hero-showcase::before,
.hero.hero-showcase::after {
    display: none;
}


/* ---------------------------------------------------------
   INHALT
--------------------------------------------------------- */

.hero-showcase-inner {
    position: relative;
    z-index: 2;

    min-height: 720px;

    display: flex;
    align-items: center;

    padding-top: 70px;
    padding-bottom: 70px;
}

.hero-message {
    width: min(100%, 760px);

    padding: 26px 0;
}


/* ---------------------------------------------------------
   KLEINE ZEILE
--------------------------------------------------------- */

.hero-showcase .hero-kicker {
    display: flex;
    align-items: center;

    gap: 13px;

    margin-bottom: 25px;

    color: rgba(255, 255, 255, 0.88);

    font-size: 0.72rem;
    font-weight: 750;
    letter-spacing: 0.16em;

    text-transform: uppercase;
}

.hero-showcase .hero-kicker::before {
    width: 42px;
    height: 1px;

    content: "";

    background: #f1dc73;
}


/* ---------------------------------------------------------
   HAUPTBOTSCHAFT
--------------------------------------------------------- */

.hero-showcase .hero-message h1 {
    margin: 0 0 28px;

    color: #ffffff;

    font-size: clamp(4rem, 7.3vw, 7.4rem);
    font-weight: 520;
    letter-spacing: -0.065em;
    line-height: 0.88;

    text-shadow:
        0 3px 20px rgba(31, 22, 13, 0.18);
}

.hero-showcase .hero-message h1 span {
    display: block;

    color: #ffffff;
}

.hero-showcase .hero-message h1 span:nth-child(2) {
    margin-left: 7%;
}

.hero-showcase .hero-message h1 span:nth-child(3) {
    margin-left: 14%;

    color: #f5e283;
}


/* ---------------------------------------------------------
   ZWEITE BOTSCHAFT
--------------------------------------------------------- */

.hero-statement {
    width: fit-content;
    max-width: 620px;

    margin-left: 14%;
    padding-top: 21px;

    color: rgba(255, 255, 255, 0.90);

    border-top: 1px solid rgba(255, 255, 255, 0.36);

    font-size: clamp(1.2rem, 2vw, 1.7rem);
    font-weight: 350;
    letter-spacing: -0.02em;
    line-height: 1.35;
}

.hero-statement strong {
    color: #ffffff;

    font-weight: 650;
}


/* ---------------------------------------------------------
   TERMIN
--------------------------------------------------------- */

.hero-showcase-actions {
    margin-top: 34px;
    margin-left: 14%;
}

.hero-appointment-button {
    display: inline-flex;
    align-items: center;

    gap: 22px;

    min-height: 50px;

    padding: 0 23px 0 25px;

    color: #32281f;
    background: rgba(245, 226, 131, 0.94);

    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 999px;

    box-shadow:
        0 12px 30px rgba(40, 27, 16, 0.16);

    font-size: 0.82rem;
    font-weight: 750;

    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);

    transition:
        transform 0.25s ease,
        background 0.25s ease,
        box-shadow 0.25s ease;
}

.hero-appointment-button span {
    font-size: 1.15rem;

    transition: transform 0.25s ease;
}

.hero-appointment-button:hover {
    background: #f5e283;

    transform: translateY(-2px);

    box-shadow:
        0 16px 38px rgba(40, 27, 16, 0.22);
}

.hero-appointment-button:hover span {
    transform: translateX(4px);
}


/* ---------------------------------------------------------
   KLEINE SIGNATUR UNTEN RECHTS
--------------------------------------------------------- */

.hero-image-caption {
    position: absolute;

    right: 0;
    bottom: 42px;

    display: flex;
    flex-direction: column;
    align-items: flex-end;

    color: rgba(255, 255, 255, 0.78);

    text-align: right;

    text-shadow:
        0 2px 12px rgba(30, 20, 10, 0.25);
}

.hero-image-caption span {
    margin-bottom: 3px;

    color: #f5e283;

    font-size: 0.64rem;
    font-weight: 800;
    letter-spacing: 0.16em;

    text-transform: uppercase;
}

.hero-image-caption strong {
    font-size: 0.75rem;
    font-weight: 550;
}


/* ---------------------------------------------------------
   SANFTE FILMISCHE ANIMATION
--------------------------------------------------------- */

@keyframes uroHeroCinematic {

    0% {
        transform:
            scale(1.035)
            translate3d(0, 0, 0);
    }

    50% {
        transform:
            scale(1.075)
            translate3d(-0.8%, -0.4%, 0);
    }

    100% {
        transform:
            scale(1.105)
            translate3d(0.7%, -0.7%, 0);
    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

    .hero.hero-showcase,
    .hero-showcase-inner {
        min-height: 650px;
    }

    .hero-showcase-inner {
        align-items: flex-end;

        padding-top: 90px;
        padding-bottom: 65px;
    }

    .hero-showcase .hero-background::before {
        background-position: 58% center;
    }

    .hero-showcase .hero-background::after {
        background:
            linear-gradient(
                180deg,
                rgba(31, 23, 16, 0.08) 0%,
                rgba(31, 23, 16, 0.18) 38%,
                rgba(31, 23, 16, 0.62) 100%
            );
    }

    .hero-message {
        width: min(100%, 650px);
    }

    .hero-showcase .hero-message h1 {
        font-size: clamp(3.8rem, 11vw, 6rem);
    }

    .hero-showcase .hero-message h1 span:nth-child(2),
    .hero-showcase .hero-message h1 span:nth-child(3),
    .hero-statement,
    .hero-showcase-actions {
        margin-left: 0;
    }

    .hero-statement {
        max-width: 530px;
    }

    .hero-image-caption {
        display: none;
    }

}


/* =========================================================
   SMARTPHONE
========================================================= */

@media (max-width: 600px) {

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

    .hero-showcase-inner {
        padding-top: 90px;
        padding-bottom: 48px;
    }

    .hero-showcase .hero-background::before {
        inset: -2%;

        background-position: 62% center;
    }

    .hero-showcase .hero-kicker {
        margin-bottom: 18px;

        font-size: 0.61rem;
    }

    .hero-showcase .hero-message h1 {
        margin-bottom: 22px;

        font-size: clamp(3.4rem, 17vw, 5.3rem);
        line-height: 0.91;
    }

    .hero-statement {
        padding-top: 17px;

        font-size: 1.12rem;
    }

    .hero-showcase-actions {
        margin-top: 27px;
    }

}


/* =========================================================
   BARRIEREFREIHEIT
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .hero-showcase .hero-background::before {
        animation: none;

        transform: scale(1.04);
    }

}


/* =========================================================
   UROANDRODOC HERO – TYPOGRAFISCHES KEYVISUAL
========================================================= */

.hero.hero-showcase {
    position: relative;
    isolation: isolate;
    overflow: hidden;

    min-height: 760px;
    padding: 0;

    background: #e7c65a;
}


/* ---------------------------------------------------------
   ORIGINALBILD
--------------------------------------------------------- */

.hero-showcase .hero-background {
    position: absolute;
    z-index: -3;
    inset: 0;

    overflow: hidden;
}

.hero-showcase .hero-background::before {
    position: absolute;
    inset: -4%;

    content: "";

    background:
        url("../images/hero-sonnenuntergang.jpg")
        center center / cover no-repeat;

    animation:
        uroHeroWowImage 24s ease-in-out infinite alternate;

    will-change: transform;
}


/* Nur links etwas Abdunklung – Bild bleibt sichtbar */

.hero-showcase .hero-background::after {
    position: absolute;
    inset: 0;

    content: "";

    background:
        linear-gradient(
            90deg,
            rgba(35, 24, 14, 0.50) 0%,
            rgba(35, 24, 14, 0.29) 32%,
            rgba(35, 24, 14, 0.07) 57%,
            transparent 74%
        );
}

.hero.hero-showcase::before,
.hero.hero-showcase::after {
    display: none;
}


/* ---------------------------------------------------------
   POSITIONIERUNG
--------------------------------------------------------- */

.hero-wow-inner {
    position: relative;
    z-index: 3;

    min-height: 760px;

    display: flex;
    align-items: center;

    padding-top: 55px;
    padding-bottom: 65px;
}

.hero-wow-copy {
    width: min(100%, 780px);
}


/* ---------------------------------------------------------
   KLEINE ZEILE OBEN
--------------------------------------------------------- */

.hero-wow-kicker {
    display: flex;
    align-items: center;

    gap: 13px;

    margin: 0 0 25px;

    color: rgba(255, 255, 255, 0.90);

    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.17em;

    text-transform: uppercase;
}

.hero-wow-kicker::before {
    width: 45px;
    height: 2px;

    content: "";

    background: #f1dc73;
}


/* ---------------------------------------------------------
   GROSSE TYPOGRAFIE
--------------------------------------------------------- */

.hero-wow-lockup {
    position: relative;

    display: flex;
    align-items: center;

    min-height: 440px;
}

.hero-wow-main {
    position: relative;
    z-index: 3;

    display: flex;
    flex-direction: column;

    width: 66%;
}

.wow-word {
    display: block;

    color: #ffffff;

    font-size: clamp(4.4rem, 7.5vw, 8rem);
    font-weight: 720;
    letter-spacing: -0.075em;
    line-height: 0.82;

    text-shadow:
        0 4px 25px rgba(25, 17, 8, 0.24);
}

.wow-word-2 {
    margin-left: 7%;

    font-weight: 480;
}

.wow-word-3 {
    margin-left: 15%;

    color: #f4df76;
}


/* ---------------------------------------------------------
   ORGANISCHER ZITAT-RING
--------------------------------------------------------- */

.therapy-orbit {
    position: absolute;
    z-index: 4;

    top: 51%;
    left: 51%;

    width: 390px;
    min-height: 230px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 38px 50px;

    border: 2px solid rgba(255, 240, 161, 0.88);
    border-radius: 50% 46% 52% 48% / 45% 55% 47% 53%;

    transform:
        translate(-5%, -50%)
        rotate(-6deg);

    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.08);

    animation:
        therapyOrbitFloat 6s ease-in-out infinite alternate;
}


/* Zweiter feiner Kreis */

.therapy-orbit::before {
    position: absolute;

    inset: 9px -13px -7px 12px;

    content: "";

    border: 1px solid rgba(255, 255, 255, 0.30);
    border-radius: 47% 53% 45% 55% / 51% 45% 55% 49%;

    transform: rotate(4deg);

    pointer-events: none;
}


/* Kleiner Korallpunkt am Ring */

.therapy-orbit::after {
    position: absolute;

    top: 21px;
    right: 52px;

    width: 11px;
    height: 11px;

    content: "";

    background: #df9069;

    border: 3px solid rgba(255, 247, 210, 0.92);
    border-radius: 50%;

    box-shadow:
        0 3px 12px rgba(75, 38, 22, 0.25);
}


.therapy-orbit p {
    position: relative;
    z-index: 2;

    margin: 0;

    color: #ffffff;

    font-size: clamp(1.45rem, 2.25vw, 2.15rem);
    font-weight: 390;
    letter-spacing: -0.04em;
    line-height: 1.02;

    text-align: center;

    transform: rotate(6deg);

    text-shadow:
        0 3px 18px rgba(31, 20, 9, 0.25);
}

.therapy-orbit p strong {
    display: block;

    margin-top: 5px;

    color: #f3d86f;

    font-size: 1.14em;
    font-weight: 760;
}


/* Große Anführungszeichen */

.quote-mark,
.quote-close {
    position: absolute;

    color: rgba(223, 144, 105, 0.95);

    font-family: Georgia, "Times New Roman", serif;
    font-weight: 700;

    line-height: 1;

    text-shadow: none;
}

.quote-mark {
    top: -18px;
    left: 35px;

    font-size: 7rem;
}

.quote-close {
    right: 27px;
    bottom: -54px;

    font-size: 6rem;
}


/* ---------------------------------------------------------
   UNTERE ZEILE
--------------------------------------------------------- */

.hero-wow-bottom {
    display: flex;
    align-items: center;

    gap: 30px;

    margin-top: 15px;
    margin-left: 15%;
}

.hero-wow-bottom > p {
    max-width: 310px;

    margin: 0;

    color: rgba(255, 255, 255, 0.82);

    font-size: 0.84rem;
    line-height: 1.6;

    text-shadow:
        0 2px 9px rgba(30, 18, 8, 0.28);
}


/* ---------------------------------------------------------
   BUTTON
--------------------------------------------------------- */

.hero-wow-button {
    display: inline-flex;
    align-items: center;

    gap: 18px;

    min-height: 50px;

    padding: 0 24px;

    color: #2f241b;
    background: #f3dc78;

    border-radius: 999px;

    box-shadow:
        0 12px 30px rgba(36, 23, 10, 0.18);

    font-size: 0.8rem;
    font-weight: 800;

    transition:
        transform 0.25s ease,
        background 0.25s ease,
        box-shadow 0.25s ease;
}

.hero-wow-button span {
    font-size: 1.2rem;

    transition: transform 0.25s ease;
}

.hero-wow-button:hover {
    background: #df9069;

    transform: translateY(-2px);

    box-shadow:
        0 17px 38px rgba(36, 23, 10, 0.23);
}

.hero-wow-button:hover span {
    transform: translateX(4px);
}


/* ---------------------------------------------------------
   ANIMATIONEN
--------------------------------------------------------- */

@keyframes uroHeroWowImage {

    from {
        transform:
            scale(1.035)
            translate3d(0, 0, 0);
    }

    to {
        transform:
            scale(1.10)
            translate3d(-0.8%, -0.7%, 0);
    }

}

@keyframes therapyOrbitFloat {

    from {
        transform:
            translate(-5%, -50%)
            rotate(-6deg);
    }

    to {
        transform:
            translate(-3%, -52%)
            rotate(-4deg);
    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {

    .hero.hero-showcase,
    .hero-wow-inner {
        min-height: 700px;
    }

    .hero-wow-main {
        width: 74%;
    }

    .therapy-orbit {
        left: 48%;

        width: 340px;
        min-height: 205px;

        padding: 30px 42px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

    .hero.hero-showcase,
    .hero-wow-inner {
        min-height: 680px;
    }

    .hero-wow-inner {
        align-items: flex-end;

        padding-top: 80px;
        padding-bottom: 48px;
    }

    .hero-showcase .hero-background::before {
        background-position: 61% center;
    }

    .hero-showcase .hero-background::after {
        background:
            linear-gradient(
                180deg,
                rgba(25, 17, 9, 0.02) 0%,
                rgba(25, 17, 9, 0.20) 42%,
                rgba(25, 17, 9, 0.67) 100%
            );
    }

    .hero-wow-lockup {
        display: block;

        min-height: 400px;
    }

    .hero-wow-main {
        width: 100%;
    }

    .wow-word {
        font-size: clamp(3.6rem, 17vw, 5.8rem);
    }

    .wow-word-2 {
        margin-left: 4%;
    }

    .wow-word-3 {
        margin-left: 8%;
    }

    .therapy-orbit {
        top: auto;
        right: 0;
        bottom: -9px;
        left: auto;

        width: min(88vw, 325px);
        min-height: 175px;

        padding: 29px 35px;

        transform: rotate(-4deg);

        animation: none;
    }

    .therapy-orbit p {
        font-size: 1.35rem;

        transform: rotate(4deg);
    }

    .quote-mark {
        top: -19px;
        left: 26px;

        font-size: 5rem;
    }

    .quote-close {
        right: 22px;
        bottom: -42px;

        font-size: 4rem;
    }

    .hero-wow-bottom {
        align-items: flex-start;
        flex-direction: column;

        gap: 18px;

        margin-top: 25px;
        margin-left: 0;
    }

}


/* =========================================================
   REDUZIERTE BEWEGUNG
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .hero-showcase .hero-background::before,
    .therapy-orbit {
        animation: none;
    }

}


/* =========================================================
   HERO – LESBARKEIT & PREMIUM KEYVISUAL
========================================================= */

/*
   Links stärkerer Kontrast für die große Botschaft,
   rechts bleibt das Sonnenuntergangsbild weitgehend frei.
*/
.hero-showcase .hero-background::after {
    background:
        linear-gradient(
            90deg,
            rgba(27, 19, 12, 0.72) 0%,
            rgba(27, 19, 12, 0.58) 26%,
            rgba(27, 19, 12, 0.34) 43%,
            rgba(27, 19, 12, 0.10) 62%,
            rgba(27, 19, 12, 0.00) 78%
        );
}


/* Der komplette Bereich darf jetzt die Containerbreite nutzen */

.hero-wow-copy {
    width: 100%;
    max-width: none;
}

.hero-wow-lockup {
    position: relative;

    min-height: 445px;

    display: block;
}


/* =========================================================
   KOMPETENZ · ERFAHRUNG · GEDULD
========================================================= */

.hero-wow-main {
    position: relative;
    z-index: 5;

    width: 54%;
}

.wow-word {
    color: #ffffff;

    font-size: clamp(4.6rem, 7vw, 7.4rem);
    font-weight: 760;
    letter-spacing: -0.07em;
    line-height: 0.88;

    text-shadow:
        0 4px 22px rgba(0, 0, 0, 0.50),
        0 1px 3px rgba(0, 0, 0, 0.72);
}

.wow-word-1 {
    margin-left: 0;
}

.wow-word-2 {
    margin-left: 5%;
}

.wow-word-3 {
    margin-left: 11%;

    color: #f5df79;

    text-shadow:
        0 4px 20px rgba(0, 0, 0, 0.48),
        0 1px 3px rgba(0, 0, 0, 0.65);
}


/* =========================================================
   THERAPIE-ZITAT
   Kein Überschneiden mehr mit der großen Überschrift
========================================================= */

.therapy-orbit {
    position: absolute;
    z-index: 6;

    top: 50%;
    right: 2%;
    left: auto;

    width: 405px;
    min-height: 235px;

    padding: 43px 50px;

    display: flex;
    align-items: center;
    justify-content: center;

    background:
        linear-gradient(
            145deg,
            rgba(38, 29, 20, 0.61),
            rgba(63, 45, 28, 0.43)
        );

    border: 2px solid rgba(248, 226, 126, 0.88);

    border-radius:
        51% 49% 46% 54% /
        47% 53% 49% 51%;

    box-shadow:
        0 16px 45px rgba(22, 15, 8, 0.22),
        inset 0 0 0 1px rgba(255, 255, 255, 0.09);

    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);

    transform:
        translateY(-50%)
        rotate(-3deg);

    animation:
        therapyOrbitReadable 7s ease-in-out infinite alternate;
}


/* Zweiter handgezeichneter Ring */

.therapy-orbit::before {
    inset: 9px -10px -8px 11px;

    border:
        1px solid
        rgba(255, 247, 211, 0.42);

    border-radius:
        46% 54% 51% 49% /
        53% 47% 55% 45%;

    transform: rotate(4deg);
}


/* Korallfarbener Akzentpunkt */

.therapy-orbit::after {
    width: 12px;
    height: 12px;

    top: 23px;
    right: 58px;

    background: #df9069;

    border: 3px solid #f7e596;
}


/* Zitat jetzt deutlich lesbarer */

.therapy-orbit p {
    margin: 0;

    color: #fffdf4;

    font-size: clamp(1.55rem, 2.2vw, 2rem);
    font-weight: 430;
    letter-spacing: -0.035em;
    line-height: 1.12;

    text-align: center;

    transform: rotate(3deg);

    text-shadow:
        0 3px 16px rgba(0, 0, 0, 0.48);
}

.therapy-orbit p strong {
    display: block;

    margin-top: 7px;

    color: #f5df79;

    font-size: 1.18em;
    font-weight: 780;
    line-height: 1.05;
}


/* Anführungszeichen dezenter */

.quote-mark {
    top: -24px;
    left: 34px;

    color: #df9069;

    font-size: 6rem;
}

.quote-close {
    right: 28px;
    bottom: -50px;

    color: #df9069;

    font-size: 5rem;
}


/* =========================================================
   KLEINE ÜBERSCHRIFT
========================================================= */

.hero-wow-kicker {
    color: #ffffff;

    font-weight: 800;

    text-shadow:
        0 2px 10px rgba(0, 0, 0, 0.45);
}


/* =========================================================
   UNTERER TEXT + BUTTON
========================================================= */

.hero-wow-bottom {
    margin-top: 18px;
    margin-left: 11%;
}

.hero-wow-bottom > p {
    color: rgba(255, 255, 255, 0.94);

    font-size: 0.88rem;
    font-weight: 500;

    text-shadow:
        0 2px 9px rgba(0, 0, 0, 0.55);
}

.hero-wow-button {
    color: #30251b;

    background: #f5df79;

    box-shadow:
        0 12px 30px rgba(25, 16, 8, 0.30);
}

.hero-wow-button:hover {
    color: #ffffff;
    background: #df9069;
}


/* =========================================================
   NEUE SANFTE KREISBEWEGUNG
========================================================= */

@keyframes therapyOrbitReadable {

    from {
        transform:
            translateY(-50%)
            rotate(-3deg);
    }

    to {
        transform:
            translateY(-52%)
            rotate(-1.5deg);
    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {

    .hero-wow-main {
        width: 58%;
    }

    .therapy-orbit {
        right: 0;

        width: 350px;
        min-height: 210px;

        padding: 36px 40px;
    }

}


/* =========================================================
   SMARTPHONE
========================================================= */

@media (max-width: 700px) {

    .hero-showcase .hero-background::after {
        background:
            linear-gradient(
                180deg,
                rgba(25, 17, 9, 0.12) 0%,
                rgba(25, 17, 9, 0.30) 35%,
                rgba(25, 17, 9, 0.76) 100%
            );
    }

    .hero-wow-lockup {
        min-height: 430px;
    }

    .hero-wow-main {
        width: 100%;
    }

    .wow-word {
        font-size: clamp(3.7rem, 17vw, 5.5rem);
    }

    .wow-word-2 {
        margin-left: 3%;
    }

    .wow-word-3 {
        margin-left: 7%;
    }

    .therapy-orbit {
        top: auto;
        right: 0;
        bottom: -12px;
        left: auto;

        width: min(88vw, 330px);
        min-height: 178px;

        padding: 30px 34px;

        background:
            rgba(39, 28, 19, 0.72);

        transform: rotate(-2deg);

        animation: none;
    }

    .therapy-orbit p {
        font-size: 1.3rem;

        transform: rotate(2deg);
    }

    .hero-wow-bottom {
        margin-left: 0;
    }

}


/* =========================================================
   BEWEGUNG REDUZIEREN
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .therapy-orbit {
        animation: none;
    }

}


/* =========================================================
   UROANDRODOC – AIRY SIGNATURE HERO
========================================================= */

.hero.hero-airy {
    position: relative;
    isolation: isolate;
    overflow: hidden;

    min-height: 820px;
    padding: 0;

    background: #e9cb65;
}

.hero.hero-airy::before,
.hero.hero-airy::after {
    display: none;
}


/* =========================================================
   ORIGINALBILD
========================================================= */

.hero-airy-background {
    position: absolute;
    z-index: -3;
    inset: 0;

    overflow: hidden;
}

.hero-airy-background::before {
    position: absolute;
    inset: -3%;

    content: "";

    background:
        url("../images/hero-sonnenuntergang.jpg")
        center 55% / cover no-repeat;

    animation:
        heroAiryImage 28s ease-in-out infinite alternate;

    will-change: transform;
}


/*
   Nur hinter der Botschaft ein ganz leichter warmer
   Lichtschleier. Keine dunkle Fläche.
*/

.hero-airy-background::after {
    position: absolute;
    inset: 0;

    content: "";

    background:
        radial-gradient(
            ellipse at 30% 27%,
            rgba(255, 247, 205, 0.67) 0%,
            rgba(255, 242, 188, 0.42) 24%,
            rgba(255, 235, 165, 0.16) 43%,
            transparent 63%
        );
}


/* =========================================================
   KOMPOSITION
========================================================= */

.hero-airy-inner {
    position: relative;
    z-index: 2;

    min-height: 820px;

    display: flex;
    align-items: flex-start;

    padding-top: 90px;
    padding-bottom: 70px;
}

.hero-airy-message {
    width: 100%;

    display: flex;
    justify-content: flex-start;
}


/* =========================================================
   GROSSER OFFENER DOPPELRING
========================================================= */

.hero-airy-ring {
    position: relative;

    width: min(100%, 790px);
    min-height: 400px;

    margin-left: 1%;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    padding: 80px 105px;

    text-align: center;

    background:
        radial-gradient(
            ellipse at center,
            rgba(255, 250, 220, 0.30) 0%,
            rgba(255, 247, 213, 0.12) 48%,
            transparent 73%
        );
}


/* erster organischer Ring */

.hero-airy-ring::before {
    position: absolute;

    inset: 9px 3px 4px 5px;

    content: "";

    border: 2px solid rgba(78, 55, 35, 0.60);

    border-radius:
        52% 48% 50% 50% /
        47% 53% 46% 54%;

    transform: rotate(-2deg);

    animation:
        heroAiryRingOne 10s ease-in-out infinite alternate;

    pointer-events: none;
}


/* zweiter sehr feiner Ring */

.hero-airy-ring::after {
    position: absolute;

    inset: -7px -17px 14px 20px;

    content: "";

    border: 1px solid rgba(104, 72, 43, 0.28);

    border-radius:
        47% 53% 51% 49% /
        54% 46% 52% 48%;

    transform: rotate(3deg);

    animation:
        heroAiryRingTwo 13s ease-in-out infinite alternate;

    pointer-events: none;
}


/* =========================================================
   HAUPTBOTSCHAFT
========================================================= */

.hero-airy-ring h1 {
    position: relative;
    z-index: 3;

    max-width: 650px;

    margin: 0;

    color: #30261e;

    font-size: clamp(3.7rem, 5.6vw, 6rem);
    font-weight: 500;
    letter-spacing: -0.055em;
    line-height: 1.02;

    text-shadow:
        0 1px 9px rgba(255, 244, 191, 0.55);
}

.hero-airy-ring h1 span {
    display: block;

    margin-top: 5px;

    color: #4f3a2b;

    font-weight: 680;
}


/* =========================================================
   TRENNLINIE
========================================================= */

.hero-airy-line {
    position: relative;
    z-index: 3;

    width: 110px;
    height: 1px;

    margin: 34px 0 27px;

    background: rgba(111, 73, 45, 0.55);
}

.hero-airy-line::after {
    position: absolute;

    top: 50%;
    left: 50%;

    width: 9px;
    height: 9px;

    content: "";

    background: #df9069;

    border: 2px solid #fff1bb;
    border-radius: 50%;

    transform: translate(-50%, -50%);
}


/* =========================================================
   ZWEITE ZEILE
========================================================= */

.hero-airy-ring p {
    position: relative;
    z-index: 3;

    max-width: 480px;

    margin: 0;

    color: #514236;

    font-size: clamp(1.45rem, 2vw, 1.9rem);
    font-weight: 360;
    letter-spacing: -0.025em;
    line-height: 1.35;
}

.hero-airy-ring p strong {
    color: #b9694c;

    font-weight: 720;
}


/* =========================================================
   ANIMATION
========================================================= */

@keyframes heroAiryImage {

    from {
        transform:
            scale(1.025)
            translate3d(0, 0, 0);
    }

    to {
        transform:
            scale(1.07)
            translate3d(-0.5%, -0.4%, 0);
    }

}

@keyframes heroAiryRingOne {

    from {
        transform:
            rotate(-2deg)
            scale(1);
    }

    to {
        transform:
            rotate(-0.8deg)
            scale(1.008);
    }

}

@keyframes heroAiryRingTwo {

    from {
        transform:
            rotate(3deg)
            scale(1);
    }

    to {
        transform:
            rotate(1.8deg)
            scale(0.995);
    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {

    .hero.hero-airy,
    .hero-airy-inner {
        min-height: 720px;
    }

    .hero-airy-inner {
        padding-top: 70px;
    }

    .hero-airy-ring {
        width: min(100%, 680px);
        min-height: 365px;

        padding: 68px 75px;
    }

}


/* =========================================================
   SMARTPHONE
========================================================= */

@media (max-width: 700px) {

    .hero.hero-airy,
    .hero-airy-inner {
        min-height: 650px;
    }

    .hero-airy-inner {
        align-items: flex-end;

        padding-top: 90px;
        padding-bottom: 42px;
    }

    .hero-airy-background::before {
        background-position: 60% center;
    }

    .hero-airy-background::after {
        background:
            linear-gradient(
                180deg,
                rgba(255, 244, 194, 0.08) 0%,
                rgba(255, 237, 174, 0.12) 40%,
                rgba(37, 26, 17, 0.48) 100%
            );
    }

    .hero-airy-ring {
        width: min(94vw, 520px);
        min-height: 330px;

        margin-inline: auto;

        padding: 48px 32px;

        background:
            radial-gradient(
                ellipse at center,
                rgba(255, 241, 184, 0.26),
                rgba(43, 30, 19, 0.10) 62%,
                transparent 76%
            );
    }

    .hero-airy-ring::before {
        border-color:
            rgba(247, 220, 112, 0.80);
    }

    .hero-airy-ring::after {
        border-color:
            rgba(255, 244, 201, 0.40);
    }

    .hero-airy-ring h1 {
        color: #ffffff;

        font-size: clamp(2.8rem, 11.5vw, 4.5rem);

        text-shadow:
            0 3px 15px rgba(0, 0, 0, 0.48);
    }

    .hero-airy-ring h1 span {
        color: #f4df79;
    }

    .hero-airy-ring p {
        color: #fff8e6;

        font-size: 1.16rem;

        text-shadow:
            0 2px 9px rgba(0, 0, 0, 0.42);
    }

    .hero-airy-ring p strong {
        color: #f0a17d;
    }

}


/* =========================================================
   REDUZIERTE BEWEGUNG
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .hero-airy-background::before,
    .hero-airy-ring::before,
    .hero-airy-ring::after {
        animation: none;
    }

}


/* =========================================================
   HERO – KEYVISUAL WEITER NACH LINKS
========================================================= */

@media (min-width: 1001px) {

    .hero-airy-ring {
        margin-left: -85px;
    }

}


/* Tablet etwas weniger weit verschieben */

@media (min-width: 701px) and (max-width: 1000px) {

    .hero-airy-ring {
        margin-left: -35px;
    }

}


/* Smartphone mittig lassen */

@media (max-width: 700px) {

    .hero-airy-ring {
        margin-left: auto;
        margin-right: auto;
    }

}


/* =========================================================
   HERO – KEYVISUAL WEITER AUS DEM PERSONENBEREICH
========================================================= */

/* Desktop */
@media (min-width: 1101px) {

    .hero-airy-ring {
        margin-left: -175px;
    }

}


/* Kleinere Desktop-/Tablet-Breite */
@media (min-width: 901px) and (max-width: 1100px) {

    .hero-airy-ring {
        margin-left: -110px;
    }

}


/* Tablet */
@media (min-width: 701px) and (max-width: 900px) {

    .hero-airy-ring {
        margin-left: -60px;
    }

}


/* Smartphone weiterhin sauber zentriert */
@media (max-width: 700px) {

    .hero-airy-ring {
        margin-left: auto;
        margin-right: auto;
    }

}


/* =========================================================
   HERO – FEINERE, ELEGANTERE TYPOGRAFIE
========================================================= */

.hero-airy-ring h1 {
    max-width: 590px;

    color: #352a21;

    font-size: clamp(2.8rem, 4.25vw, 4.45rem);
    font-weight: 430;

    letter-spacing: -0.035em;
    line-height: 1.08;

    text-shadow:
        0 1px 6px rgba(255, 246, 205, 0.35);
}


/* "und Geduld." nicht mehr so massiv */

.hero-airy-ring h1 span {
    display: block;

    margin-top: 8px;

    color: #4f3b2c;

    font-weight: 520;
}


/* Trennlinie etwas filigraner */

.hero-airy-line {
    width: 82px;
    height: 1px;

    margin-top: 29px;
    margin-bottom: 24px;

    background: rgba(102, 71, 44, 0.42);
}


/* Unterzeile größer lesbar, aber leicht */

.hero-airy-ring p {
    max-width: 430px;

    color: #514338;

    font-size: clamp(1.25rem, 1.65vw, 1.6rem);
    font-weight: 350;

    letter-spacing: -0.015em;
    line-height: 1.42;
}


/* Nur der wichtige Abschluss bekommt Gewicht */

.hero-airy-ring p strong {
    display: block;

    margin-top: 3px;

    color: #b76d51;

    font-size: 1.08em;
    font-weight: 590;

    letter-spacing: -0.02em;
}


/* =========================================================
   TABLET
========================================================= */

@media (min-width: 701px) and (max-width: 1000px) {

    .hero-airy-ring h1 {
        font-size: clamp(2.6rem, 5vw, 3.9rem);
    }

}


/* =========================================================
   SMARTPHONE
========================================================= */

@media (max-width: 700px) {

    .hero-airy-ring h1 {
        font-size: clamp(2.35rem, 9.5vw, 3.5rem);
        font-weight: 440;

        line-height: 1.08;
    }

    .hero-airy-ring h1 span {
        font-weight: 540;
    }

    .hero-airy-ring p {
        font-size: 1.08rem;
        line-height: 1.4;
    }

    .hero-airy-ring p strong {
        font-weight: 620;
    }

}


/* =========================================================
   UROANDRODOC – EDITORIAL HERO
   Alternative Gestaltung ohne Ring
========================================================= */

.hero.hero-editorial {
    position: relative;
    isolation: isolate;
    overflow: hidden;

    min-height: 790px;
    padding: 0;

    background: #edcf68;
}

.hero.hero-editorial::before,
.hero.hero-editorial::after {
    display: none;
}


/* =========================================================
   ORIGINALBILD
========================================================= */

.hero-editorial-background {
    position: absolute;
    z-index: -3;
    inset: 0;

    overflow: hidden;
}

.hero-editorial-background::before {
    position: absolute;
    inset: -3%;

    content: "";

    background:
        url("../images/hero-sonnenuntergang.jpg")
        center 54% / cover no-repeat;

    animation:
        editorialHeroMove 28s ease-in-out infinite alternate;

    will-change: transform;
}


/*
   Nur links ein sanfter Lichtbereich.
   Keine sichtbare Box.
*/

.hero-editorial-background::after {
    position: absolute;
    inset: 0;

    content: "";

    background:
        linear-gradient(
            90deg,
            rgba(255, 248, 214, 0.86) 0%,
            rgba(255, 244, 201, 0.70) 22%,
            rgba(255, 238, 180, 0.38) 40%,
            rgba(255, 230, 150, 0.10) 57%,
            transparent 70%
        );
}


/* =========================================================
   POSITION
========================================================= */

.hero-editorial-inner {
    position: relative;
    z-index: 2;

    min-height: 790px;

    display: flex;
    align-items: center;

    padding-top: 70px;
    padding-bottom: 85px;
}

.hero-editorial-copy {
    position: relative;

    width: min(100%, 600px);

    margin-left: -20px;

    padding-left: 42px;
}


/* vertikale Akzentlinie */

.hero-editorial-copy::before {
    position: absolute;

    top: 7px;
    bottom: 10px;
    left: 0;

    width: 2px;

    content: "";

    background:
        linear-gradient(
            180deg,
            transparent 0%,
            #df9069 18%,
            #df9069 82%,
            transparent 100%
        );
}


/* =========================================================
   KOMPETENZ · ERFAHRUNG · GEDULD
========================================================= */

.editorial-eyebrow {
    display: flex;
    align-items: center;
    flex-wrap: wrap;

    gap: 12px;

    margin-bottom: 32px;

    color: #5c4634;

    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.18em;

    text-transform: uppercase;
}

.editorial-eyebrow i {
    width: 4px;
    height: 4px;

    background: #df9069;

    border-radius: 50%;
}


/* =========================================================
   KLEINE LINIE
========================================================= */

.editorial-rule {
    width: 95px;
    height: 1px;

    margin-bottom: 34px;

    background: rgba(82, 57, 37, 0.48);
}


/* =========================================================
   HAUPTBOTSCHAFT
========================================================= */

.hero-editorial h1 {
    max-width: 560px;

    margin: 0;

    color: #34291f;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: clamp(3.5rem, 5.4vw, 6rem);
    font-weight: 400;
    letter-spacing: -0.045em;
    line-height: 0.98;
}

.hero-editorial h1 strong {
    display: block;

    margin-top: 10px;

    color: #b96549;

    font-weight: 500;
    font-style: italic;

    line-height: 1.02;
}


/* =========================================================
   KLEINE SIGNATUR
========================================================= */

.editorial-signature {
    max-width: 390px;

    margin: 36px 0 0;

    color: #665346;

    font-size: 0.95rem;
    font-weight: 430;
    line-height: 1.7;

    letter-spacing: 0.01em;
}


/* =========================================================
   BILDANIMATION
========================================================= */

@keyframes editorialHeroMove {

    from {
        transform:
            scale(1.025)
            translate3d(0, 0, 0);
    }

    to {
        transform:
            scale(1.075)
            translate3d(-0.6%, -0.4%, 0);
    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {

    .hero.hero-editorial,
    .hero-editorial-inner {
        min-height: 700px;
    }

    .hero-editorial-copy {
        width: min(100%, 520px);

        margin-left: 0;
    }

    .hero-editorial h1 {
        font-size: clamp(3.2rem, 6vw, 5rem);
    }

}


/* =========================================================
   SMARTPHONE
========================================================= */

@media (max-width: 700px) {

    .hero.hero-editorial,
    .hero-editorial-inner {
        min-height: 640px;
    }

    .hero-editorial-inner {
        align-items: flex-end;

        padding-top: 100px;
        padding-bottom: 48px;
    }

    .hero-editorial-background::before {
        background-position: 61% center;
    }

    .hero-editorial-background::after {
        background:
            linear-gradient(
                180deg,
                rgba(255, 243, 193, 0.04) 0%,
                rgba(255, 234, 163, 0.14) 38%,
                rgba(38, 27, 18, 0.76) 100%
            );
    }

    .hero-editorial-copy {
        width: 100%;

        margin: 0;

        padding-left: 25px;
    }

    .hero-editorial-copy::before {
        background:
            linear-gradient(
                180deg,
                transparent,
                #efaa85 20%,
                #efaa85 80%,
                transparent
            );
    }

    .editorial-eyebrow {
        color: #fff3d3;

        font-size: 0.65rem;

        text-shadow:
            0 2px 8px rgba(0, 0, 0, 0.38);
    }

    .editorial-rule {
        background:
            rgba(255, 241, 203, 0.50);
    }

    .hero-editorial h1 {
        color: #ffffff;

        font-size: clamp(3rem, 13vw, 4.6rem);

        text-shadow:
            0 3px 16px rgba(0, 0, 0, 0.38);
    }

    .hero-editorial h1 strong {
        color: #f1a27e;
    }

    .editorial-signature {
        color: rgba(255, 249, 231, 0.88);

        font-size: 0.88rem;

        text-shadow:
            0 2px 8px rgba(0, 0, 0, 0.35);
    }

}


/* =========================================================
   REDUZIERTE BEWEGUNG
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .hero-editorial-background::before {
        animation: none;
    }

}


/* =========================================================
   HERO – EDITORIAL FINAL FINETUNING
========================================================= */

/* ---------------------------------------------------------
   WENIGER SCHLEIER – MEHR ORIGINALBILD
--------------------------------------------------------- */

.hero-editorial-background::after {
    background:
        linear-gradient(
            90deg,
            rgba(255, 247, 211, 0.68) 0%,
            rgba(255, 243, 201, 0.48) 20%,
            rgba(255, 236, 180, 0.22) 38%,
            rgba(255, 229, 155, 0.06) 53%,
            transparent 64%
        );
}


/* ---------------------------------------------------------
   GESAMTEN TEXT ETWAS WEITER NACH LINKS
--------------------------------------------------------- */

.hero-editorial-copy {
    width: min(100%, 640px);

    margin-left: -55px;

    padding-left: 38px;
}


/* ---------------------------------------------------------
   SCHLANKE AKZENTLINIE
--------------------------------------------------------- */

.hero-editorial-copy::before {
    width: 1px;

    top: 5px;
    bottom: 4px;

    background:
        linear-gradient(
            180deg,
            transparent 0%,
            rgba(185, 101, 73, 0.75) 16%,
            rgba(185, 101, 73, 0.75) 84%,
            transparent 100%
        );
}


/* ---------------------------------------------------------
   KOMPETENZ · ERFAHRUNG · GEDULD
   jetzt eigenständiger Teil der Botschaft
--------------------------------------------------------- */

.editorial-eyebrow {
    gap: 14px;

    margin-bottom: 28px;

    color: #44372b;

    font-size: 0.92rem;
    font-weight: 650;

    letter-spacing: 0.12em;

    text-transform: uppercase;
}

.editorial-eyebrow i {
    width: 5px;
    height: 5px;

    background: #c8795a;
}


/* kleine Linie danach dezenter */

.editorial-rule {
    width: 70px;

    margin-bottom: 30px;

    background: rgba(74, 52, 35, 0.34);
}


/* ---------------------------------------------------------
   HAUPTBOTSCHAFT
--------------------------------------------------------- */

.hero-editorial h1 {
    max-width: 610px;

    color: #30271f;

    font-family:
        "Baskerville",
        "Palatino Linotype",
        Palatino,
        Georgia,
        serif;

    font-size: clamp(3.5rem, 5vw, 5.55rem);

    font-weight: 400;

    letter-spacing: -0.035em;
    line-height: 1.03;

    text-shadow:
        0 1px 8px rgba(255, 244, 195, 0.28);
}


/*
   Nicht mehr stark kursiv.
   Dadurch medizinischer und hochwertiger.
*/

.hero-editorial h1 strong {
    display: block;

    margin-top: 7px;

    color: #aa634a;

    font-weight: 500;
    font-style: normal;

    letter-spacing: -0.04em;
    line-height: 1.02;
}


/* Nur das letzte Wort leicht hervorheben */

.hero-editorial h1 strong::after {
    display: inline-block;

    width: 42px;
    height: 1px;

    margin-left: 14px;
    margin-bottom: 0.25em;

    content: "";

    background: rgba(170, 99, 74, 0.7);
}


/* ---------------------------------------------------------
   UNTERTEXT STARK REDUZIEREN
--------------------------------------------------------- */

.editorial-signature {
    max-width: 350px;

    margin-top: 29px;

    color: #594b3f;

    font-size: 0.82rem;
    font-weight: 440;

    line-height: 1.65;
}


/* =========================================================
   TABLET
========================================================= */

@media (min-width: 701px) and (max-width: 1000px) {

    .hero-editorial-copy {
        margin-left: -20px;
    }

    .editorial-eyebrow {
        font-size: 0.78rem;
    }

}


/* =========================================================
   SMARTPHONE
========================================================= */

@media (max-width: 700px) {

    .hero-editorial-copy {
        margin-left: 0;

        padding-left: 22px;
    }

    .editorial-eyebrow {
        gap: 9px;

        color: #fff5dc;

        font-size: 0.68rem;

        letter-spacing: 0.09em;
    }

    .hero-editorial h1 {
        font-size: clamp(2.8rem, 12vw, 4.25rem);
    }

    .hero-editorial h1 strong {
        color: #f0a17e;
    }

    .editorial-signature {
        color: rgba(255, 249, 232, 0.88);
    }

}


/* =========================================================
   DR. VON KELLENBACH – DETAILSEITE
========================================================= */


/* =========================================================
   HERO
========================================================= */

.doctor-profile-hero {
    padding: 80px 0 90px;

    background:
        radial-gradient(
            circle at 91% 14%,
            rgba(182, 237, 207, 0.65),
            transparent 31%
        ),
        linear-gradient(
            135deg,
            #fff8cf 0%,
            #f2df79 56%,
            #d9efb2 100%
        );
}


.doctor-profile-hero-grid {
    display: grid;

    grid-template-columns:
        minmax(0, 0.88fr)
        minmax(420px, 1.12fr);

    align-items: center;

    gap: 75px;
}


.doctor-profile-copy h1 {
    margin: 0 0 28px;

    color: var(--text);

    font-size: clamp(3.5rem, 5.8vw, 6.4rem);
    font-weight: 560;

    letter-spacing: -0.065em;
    line-height: 0.92;
}


.doctor-profile-copy h1 span {
    color: #a56548;
}


.doctor-profile-lead {
    max-width: 560px;

    margin-bottom: 30px;

    color: #5d5247;

    font-size: 1.1rem;
    line-height: 1.8;
}


.doctor-profile-specialties {
    display: flex;
    flex-wrap: wrap;

    gap: 9px;

    margin-bottom: 35px;
}


.doctor-profile-specialties span {
    padding: 9px 14px;

    color: #69533e;
    background: rgba(255,255,255,0.48);

    border: 1px solid rgba(91,68,41,0.13);
    border-radius: 999px;

    font-size: 0.72rem;
    font-weight: 750;
}


.doctor-profile-actions {
    display: flex;
    flex-wrap: wrap;

    gap: 12px;
}


.doctor-profile-portrait {
    position: relative;

    overflow: hidden;

    min-height: 570px;

    background: #ffffff;

    border-radius: 28px;

    box-shadow:
        0 28px 70px rgba(92,68,34,0.18);
}


.doctor-profile-portrait img {
    display: block;

    width: 100%;
    height: 100%;

    min-height: 570px;

    object-fit: cover;
    object-position: center top;
}


.doctor-profile-photo-label {
    position: absolute;

    right: 24px;
    bottom: 24px;

    min-width: 210px;

    padding: 17px 20px;

    background: rgba(255,248,213,0.93);

    border: 1px solid rgba(90,63,32,0.12);
    border-radius: 16px;

    backdrop-filter: blur(8px);
}


.doctor-profile-photo-label span,
.doctor-profile-photo-label strong {
    display: block;
}


.doctor-profile-photo-label span {
    margin-bottom: 3px;

    color: #a26649;

    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.11em;

    text-transform: uppercase;
}


.doctor-profile-photo-label strong {
    color: var(--text);

    font-size: 0.9rem;
}



/* =========================================================
   INTRO
========================================================= */

.doctor-intro {
    padding: 105px 0;

    background: #fffdf5;
}


.doctor-intro-grid {
    display: grid;

    grid-template-columns: 0.9fr 1.1fr;

    gap: 100px;
}


.doctor-intro h2 {
    margin: 0;

    color: var(--text);

    font-size: clamp(2.8rem, 4.6vw, 5rem);
    font-weight: 550;

    letter-spacing: -0.055em;
    line-height: 1.03;
}


.doctor-intro h2 span {
    display: block;

    color: #88683e;
}


.doctor-intro-copy {
    padding-top: 15px;
}


.doctor-intro-copy p {
    margin-bottom: 22px;

    color: var(--text-soft);

    font-size: 1.05rem;
    line-height: 1.85;
}



/* =========================================================
   CAREER SECTIONS
========================================================= */

.doctor-career-section {
    padding: 95px 0;
}


.doctor-career-light {
    background: #fffaf0;
}


.doctor-career-green {
    background:
        linear-gradient(
            135deg,
            #e4f1b5,
            #bdecc9
        );
}


.doctor-career-yellow {
    background:
        linear-gradient(
            135deg,
            #f3df77,
            #e8eca5
        );
}


.doctor-career-grid {
    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(0, 1fr);

    align-items: stretch;

    gap: 35px;
}


.doctor-career-reverse {
    grid-template-columns:
        minmax(0, 1fr)
        minmax(0, 1fr);
}


.doctor-career-image {
    min-height: 520px;

    overflow: hidden;

    background: #fff;

    border-radius: 24px;

    box-shadow:
        0 16px 42px rgba(70,55,35,0.11);
}


.doctor-career-image img {
    display: block;

    width: 100%;
    height: 100%;

    min-height: 520px;

    object-fit: cover;
}


.doctor-career-portrait-small img {
    object-position: center top;
}


.doctor-career-card {
    position: relative;

    padding: 55px;

    background: rgba(255,253,240,0.90);

    border: 1px solid rgba(80,61,35,0.09);
    border-radius: 24px;

    box-shadow:
        0 13px 38px rgba(70,55,35,0.08);
}


.doctor-career-number {
    position: absolute;

    top: 28px;
    right: 30px;

    display: grid;
    place-items: center;

    width: 42px;
    height: 42px;

    color: #ffffff;
    background: #df9069;

    border-radius: 50%;

    font-size: 0.7rem;
    font-weight: 800;
}


.doctor-career-card h2 {
    max-width: 500px;

    margin-bottom: 32px;

    color: var(--text);

    font-size: clamp(2rem, 3.4vw, 3.7rem);
    font-weight: 570;

    letter-spacing: -0.05em;
    line-height: 1.04;
}


.doctor-career-list {
    display: grid;

    gap: 0;

    margin: 0 0 28px;
    padding: 0;

    list-style: none;
}


.doctor-career-list li {
    position: relative;

    padding: 13px 0 13px 26px;

    color: #5e5548;

    border-bottom: 1px solid rgba(76,58,37,0.11);

    font-size: 0.94rem;
    line-height: 1.65;
}


.doctor-career-list li::before {
    position: absolute;

    top: 19px;
    left: 2px;

    width: 8px;
    height: 8px;

    content: "";

    background: #df9069;

    border-radius: 50%;
}


.doctor-promotion {
    margin-top: 30px;
    padding: 25px;

    background: #f1e5a0;

    border-radius: 18px;
}


.doctor-promotion span {
    display: block;

    margin-bottom: 10px;

    color: #9a6548;

    font-size: 0.66rem;
    font-weight: 800;
    letter-spacing: 0.11em;

    text-transform: uppercase;
}


.doctor-promotion p {
    margin-bottom: 8px;

    color: var(--text);

    font-weight: 650;
    line-height: 1.55;
}


.doctor-promotion small {
    color: #675b4d;

    line-height: 1.6;
}


.doctor-career-text {
    color: #605649;

    font-size: 1rem;
    line-height: 1.8;
}


.doctor-fields {
    display: flex;
    flex-wrap: wrap;

    gap: 9px;

    margin-top: 25px;
}


.doctor-fields span {
    padding: 9px 14px;

    color: #624d38;
    background: rgba(255,255,255,0.5);

    border-radius: 999px;

    font-size: 0.72rem;
    font-weight: 700;
}



/* =========================================================
   EXPERTISE
========================================================= */

.doctor-expertise {
    padding: 110px 0;

    background: #fffdf5;
}


.doctor-expertise-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: 60px;

    margin-bottom: 55px;
}


.doctor-expertise-heading h2 {
    max-width: 680px;

    margin: 0;

    color: var(--text);

    font-size: clamp(2.8rem, 4.4vw, 4.8rem);
    font-weight: 560;

    letter-spacing: -0.055em;
    line-height: 1.03;
}


.doctor-expertise-heading h2 span {
    display: block;

    color: #8b693d;
}


.doctor-expertise-heading > p {
    max-width: 420px;

    margin: 0;

    color: var(--text-soft);

    line-height: 1.75;
}


.doctor-expertise-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    border-top: 1px solid #ddd2a4;
    border-left: 1px solid #ddd2a4;
}


.doctor-expertise-item {
    min-height: 260px;

    padding: 32px;

    background: #f3edc4;

    border-right: 1px solid #ddd2a4;
    border-bottom: 1px solid #ddd2a4;

    transition:
        transform 0.25s ease,
        background 0.25s ease;
}


.doctor-expertise-item:hover {
    z-index: 2;

    background: #f0dc73;

    transform: translateY(-4px);
}


.doctor-expertise-item > span {
    display: block;

    margin-bottom: 45px;

    color: #b5694d;

    font-size: 0.68rem;
    font-weight: 800;
}


.doctor-expertise-item h3 {
    margin-bottom: 12px;

    color: var(--text);

    font-size: 1.35rem;
}


.doctor-expertise-item p {
    color: #6a6052;

    font-size: 0.88rem;
    line-height: 1.7;
}



/* =========================================================
   AWARDS
========================================================= */

.doctor-awards {
    padding: 95px 0;

    background:
        linear-gradient(
            135deg,
            #f2df78,
            #dceca8
        );
}


.doctor-awards-inner {
    display: grid;

    grid-template-columns: 0.9fr 1.1fr;

    gap: 90px;

    align-items: start;
}


.doctor-awards h2 {
    margin: 0;

    color: var(--text);

    font-size: clamp(2.7rem, 4.4vw, 4.7rem);
    font-weight: 560;

    letter-spacing: -0.05em;
    line-height: 1.05;
}


.doctor-awards-copy p {
    max-width: 650px;

    color: #615648;

    font-size: 1rem;
    line-height: 1.8;
}


.doctor-awards-note {
    margin-top: 20px;
    padding: 20px 22px;

    background: rgba(255,255,255,0.35);

    border-radius: 14px;

    font-size: 0.85rem !important;
}



/* =========================================================
   ACTIVE NAV
========================================================= */

.main-navigation a[aria-current="page"] {
    color: #b96749;
}


.main-navigation a[aria-current="page"]::after {
    transform: scaleX(1);
}



/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {

    .doctor-profile-hero-grid {
        grid-template-columns: 1fr;

        gap: 45px;
    }

    .doctor-profile-copy {
        max-width: 720px;
    }

    .doctor-profile-portrait {
        max-width: 720px;
    }

    .doctor-intro-grid,
    .doctor-awards-inner {
        grid-template-columns: 1fr;

        gap: 45px;
    }

    .doctor-career-grid,
    .doctor-career-reverse {
        grid-template-columns: 1fr;
    }

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

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 650px) {

    .doctor-profile-hero {
        padding: 58px 0 65px;
    }

    .doctor-profile-copy h1 {
        font-size: clamp(3rem, 14vw, 4.5rem);
    }

    .doctor-profile-actions {
        flex-direction: column;
    }

    .doctor-profile-actions .button {
        width: 100%;
    }

    .doctor-profile-portrait,
    .doctor-profile-portrait img {
        min-height: 390px;
    }

    .doctor-profile-photo-label {
        right: 15px;
        bottom: 15px;
        left: 15px;

        min-width: 0;
    }

    .doctor-intro,
    .doctor-career-section,
    .doctor-expertise,
    .doctor-awards {
        padding: 72px 0;
    }

    .doctor-career-card {
        padding: 38px 25px;
    }

    .doctor-career-image,
    .doctor-career-image img {
        min-height: 330px;
    }

    .doctor-expertise-heading {
        flex-direction: column;
        align-items: flex-start;

        gap: 25px;
    }

    .doctor-expertise-grid {
        grid-template-columns: 1fr;
    }

    .doctor-expertise-item {
        min-height: 210px;
    }

}


/* =========================================================
   DR. VON KELLENBACH
   WEICHERE, RUHIGERE TYPOGRAFIE
========================================================= */


/* ---------------------------------------------------------
   HERO – NAME
--------------------------------------------------------- */

.doctor-profile-copy h1 {
    max-width: 680px;

    margin-bottom: 28px;

    color: #3f342a;

    font-size: clamp(2.9rem, 4.6vw, 4.9rem);
    font-weight: 460;

    letter-spacing: -0.035em;
    line-height: 1.02;
}

.doctor-profile-copy h1 span {
    color: #a56b4f;

    font-weight: 500;
}


/* ---------------------------------------------------------
   HERO – EINLEITUNG
--------------------------------------------------------- */

.doctor-profile-lead {
    max-width: 570px;

    color: #685b4e;

    font-size: 1.04rem;
    font-weight: 400;
    line-height: 1.8;
}


/* ---------------------------------------------------------
   KLEINE ÜBERSCHRIFTEN / EYEBROWS
--------------------------------------------------------- */

.doctor-profile-hero .eyebrow,
.doctor-intro .eyebrow,
.doctor-career-section .eyebrow,
.doctor-expertise .eyebrow,
.doctor-awards .eyebrow {
    color: #9b6a50;

    font-size: 0.68rem;
    font-weight: 700;

    letter-spacing: 0.12em;
}


/* ---------------------------------------------------------
   INTRO
--------------------------------------------------------- */

.doctor-intro h2 {
    max-width: 650px;

    color: #40352b;

    font-size: clamp(2.25rem, 3.5vw, 3.8rem);
    font-weight: 470;

    letter-spacing: -0.03em;
    line-height: 1.1;
}

.doctor-intro h2 span {
    margin-top: 4px;

    color: #876a45;

    font-weight: 500;
}


/* ---------------------------------------------------------
   WERDEGANG-KARTEN
--------------------------------------------------------- */

.doctor-career-card h2 {
    max-width: 520px;

    margin-bottom: 30px;

    color: #40352b;

    font-size: clamp(1.9rem, 2.8vw, 3rem);
    font-weight: 480;

    letter-spacing: -0.025em;
    line-height: 1.12;
}


/* Nummern etwas dezenter */

.doctor-career-number {
    color: #ffffff;

    background: #df9069;

    font-weight: 700;

    box-shadow: none;
}


/* Listen ruhiger */

.doctor-career-list li {
    color: #655a4d;

    font-size: 0.92rem;
    line-height: 1.7;
}

.doctor-career-list li::before {
    width: 6px;
    height: 6px;

    background: #d98f6c;
}


/* ---------------------------------------------------------
   PROMOTION
--------------------------------------------------------- */

.doctor-promotion p {
    color: #4b4036;

    font-weight: 540;
}

.doctor-promotion small {
    color: #706355;
}


/* ---------------------------------------------------------
   EXPERTISE
--------------------------------------------------------- */

.doctor-expertise-heading h2 {
    max-width: 700px;

    color: #40352b;

    font-size: clamp(2.3rem, 3.6vw, 3.9rem);
    font-weight: 470;

    letter-spacing: -0.03em;
    line-height: 1.1;
}

.doctor-expertise-heading h2 span {
    margin-top: 4px;

    color: #876a45;

    font-weight: 500;
}


.doctor-expertise-item h3 {
    color: #40352b;

    font-size: 1.2rem;
    font-weight: 540;

    letter-spacing: -0.015em;
}


/* ---------------------------------------------------------
   AUSZEICHNUNGEN
--------------------------------------------------------- */

.doctor-awards h2 {
    max-width: 600px;

    color: #40352b;

    font-size: clamp(2.25rem, 3.5vw, 3.8rem);
    font-weight: 470;

    letter-spacing: -0.03em;
    line-height: 1.1;
}


/* ---------------------------------------------------------
   GENERELL ETWAS WENIGER KONTRAST
--------------------------------------------------------- */

.doctor-profile-copy h1,
.doctor-intro h2,
.doctor-career-card h2,
.doctor-expertise-heading h2,
.doctor-awards h2 {
    text-shadow: none;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {

    .doctor-profile-copy h1 {
        font-size: clamp(2.8rem, 7vw, 4.3rem);
    }

}


/* =========================================================
   SMARTPHONE
========================================================= */

@media (max-width: 650px) {

    .doctor-profile-copy h1 {
        font-size: clamp(2.5rem, 11vw, 3.7rem);
        line-height: 1.04;
    }

    .doctor-intro h2,
    .doctor-expertise-heading h2,
    .doctor-awards h2 {
        font-size: clamp(2rem, 8vw, 2.9rem);
    }

    .doctor-career-card h2 {
        font-size: clamp(1.8rem, 7vw, 2.6rem);
    }

}


/* =========================================================
   UROANDRODOC
   PREMIUM HEADER + WEICHERE TYPOGRAFIE
========================================================= */


/* =========================================================
   WEICHERE SCHRIFTFARBEN
========================================================= */

.doctor-profile-copy h1,
.doctor-intro h2,
.doctor-career-card h2,
.doctor-expertise-heading h2,
.doctor-awards h2,
.contact-cta h2 {
    color: #55483c !important;
}

.doctor-profile-copy h1 span,
.doctor-intro h2 span,
.doctor-expertise-heading h2 span {
    color: #a97355 !important;
}

.doctor-career-card h3,
.doctor-expertise-item h3 {
    color: #574b40 !important;
}

.doctor-profile-lead,
.doctor-intro-copy p,
.doctor-career-list li,
.doctor-career-text,
.doctor-expertise-heading > p,
.doctor-expertise-item p,
.doctor-awards-copy p {
    color: #75695d !important;
}

.doctor-career-card h2 {
    font-weight: 430 !important;
}

.doctor-intro h2,
.doctor-expertise-heading h2,
.doctor-awards h2 {
    font-weight: 430 !important;
}

.contact-cta h2 {
    font-weight: 470 !important;
}


/* =========================================================
   HEADER GESAMT
========================================================= */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;

    background: rgba(255, 252, 236, 0.96) !important;

    border: 0 !important;

    box-shadow:
        0 7px 28px rgba(89, 69, 37, 0.08) !important;

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}


/* =========================================================
   OBERE PRAXISZEILE
========================================================= */

.practice-header {
    background:
        linear-gradient(
            100deg,
            #f7e991 0%,
            #f3e280 45%,
            #f5e99a 100%
        ) !important;

    border-bottom:
        1px solid rgba(89, 67, 37, 0.10);
}

.practice-header-inner {
    min-height: 88px !important;

    grid-template-columns:
        60px
        minmax(280px, 1.4fr)
        minmax(180px, 0.7fr)
        minmax(250px, 1fr) !important;

    gap: 24px !important;
}


/* Logo */

.practice-logo {
    width: 52px !important;
}

.practice-logo img {
    width: 52px !important;
}


/* Praxisname */

.practice-identity {
    gap: 2px !important;
}

.practice-kicker {
    color: #9a7657 !important;

    font-size: 0.58rem !important;
    font-weight: 650 !important;
    letter-spacing: 0.13em !important;
}

.practice-identity strong {
    color: #55483c !important;

    font-size: 0.91rem !important;
    font-weight: 600 !important;

    letter-spacing: -0.01em;
}

.practice-specialties {
    color: #796b5d !important;

    font-size: 0.68rem !important;
}


/* Adresse */

.practice-address {
    padding-left: 22px !important;

    border-left:
        1px solid rgba(89, 67, 37, 0.14) !important;
}

.practice-address strong {
    color: #5b4e42 !important;

    font-size: 0.74rem !important;
    font-weight: 600 !important;
}

.practice-address span {
    color: #807264 !important;

    font-size: 0.68rem !important;
}


/* Kontakt */

.practice-contact {
    gap: 4px !important;

    padding-left: 22px !important;

    border-left:
        1px solid rgba(89, 67, 37, 0.14) !important;
}

.practice-contact a,
.practice-contact div {
    color: #66594d !important;

    font-size: 0.67rem !important;
}

.practice-contact span {
    color: #a27053 !important;

    font-size: 0.52rem !important;
    font-weight: 700 !important;
}


/* =========================================================
   NEUE NAVIGATIONSLEISTE
========================================================= */

.navigation-bar {
    background:
        rgba(255, 253, 244, 0.97) !important;

    border-top: 0 !important;

    border-bottom:
        1px solid rgba(103, 79, 46, 0.10) !important;
}

.navigation-inner {
    width: min(calc(100% - 48px), 1320px) !important;

    min-height: 62px !important;

    gap: 24px !important;
}


/* Navigation */

.main-navigation {
    display: flex !important;
    align-items: center !important;

    gap: 6px !important;

    margin: 0 !important;
}


/* einzelne Navigationselemente */

.main-navigation > a {
    position: relative;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 38px;

    padding:
        0 14px !important;

    color: #66594d !important;

    border-radius: 999px;

    font-size: 0.72rem !important;
    font-weight: 560 !important;

    letter-spacing: 0.005em;

    transition:
        color 0.22s ease,
        background 0.22s ease,
        transform 0.22s ease !important;
}


/* alte Unterstriche entfernen */

.main-navigation > a::after {
    display: none !important;
}


/* Hover */

.main-navigation > a:hover {
    color: #9f664b !important;

    background:
        rgba(239, 210, 151, 0.27);

    transform: translateY(-1px);
}


/* Aktive Seite */

.main-navigation > a[aria-current="page"] {
    color: #8e5f48 !important;

    background:
        #f6ead4 !important;

    box-shadow:
        inset 0 0 0 1px
        rgba(178, 119, 84, 0.15);
}


/* =========================================================
   TERMINBUTTON
========================================================= */

.header-appointment {
    min-height: 40px !important;

    margin-left: auto !important;

    padding:
        0 21px !important;

    color: #fffaf3 !important;

    background:
        linear-gradient(
            135deg,
            #df9775,
            #d88462
        ) !important;

    border:
        1px solid rgba(178, 102, 68, 0.14);

    border-radius: 999px !important;

    box-shadow:
        0 7px 20px rgba(174, 101, 69, 0.15) !important;

    font-size: 0.69rem !important;
    font-weight: 650 !important;

    letter-spacing: 0.015em;

    transition:
        transform 0.22s ease,
        box-shadow 0.22s ease,
        background 0.22s ease !important;
}

.header-appointment:hover {
    background:
        linear-gradient(
            135deg,
            #d98b68,
            #c97858
        ) !important;

    transform:
        translateY(-1px) !important;

    box-shadow:
        0 10px 24px rgba(174, 101, 69, 0.20) !important;
}


/* =========================================================
   CTA UNTEN EBENFALLS WEICHER
========================================================= */

.contact-cta h2 {
    color: #514538 !important;

    letter-spacing: -0.035em !important;
}

.contact-cta .eyebrow {
    color: #9b7254 !important;
}


/* =========================================================
   FOOTER TYPOGRAFIE WEICHER
========================================================= */

.site-footer,
.site-footer p,
.site-footer address,
.site-footer a {
    color: #756859 !important;
}

.site-footer h3,
.footer-practice-name {
    color: #574b3f !important;
}

.footer-contact-links a span {
    color: #a46e51 !important;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1120px) {

    .practice-header-inner {
        grid-template-columns:
            52px
            1.3fr
            0.75fr !important;
    }

    .practice-contact {
        display: none !important;
    }

    .main-navigation {
        gap: 2px !important;
    }

    .main-navigation > a {
        padding:
            0 10px !important;

        font-size:
            0.67rem !important;
    }

}


/* =========================================================
   MOBILE HEADER
========================================================= */

@media (max-width: 900px) {

    .practice-header-inner {
        min-height: 70px !important;

        display: flex !important;

        gap: 11px !important;
    }

    .practice-logo,
    .practice-logo img {
        width: 44px !important;
    }

    .practice-logo {
        flex:
            0 0 44px !important;
    }

    .practice-identity strong {
        color: #574a3e !important;

        font-size: 0.75rem !important;
        font-weight: 580 !important;
    }

    .practice-kicker {
        font-size: 0.48rem !important;
    }

    .mobile-phone {
        width: 37px !important;
        height: 37px !important;

        color: #ffffff !important;

        background:
            #dc8e6d !important;

        box-shadow:
            0 5px 16px
            rgba(172, 102, 73, 0.16);
    }

    .menu-toggle {
        width: 40px !important;
        height: 40px !important;
    }

    .menu-toggle span {
        width: 22px !important;

        background:
            #67584b !important;
    }

    .main-navigation {
        top: 70px !important;

        padding:
            22px 22px 42px !important;

        background:
            rgba(255, 253, 244, 0.99) !important;
    }

    .main-navigation > a {
        min-height: auto;

        justify-content: flex-start;

        padding:
            16px 8px !important;

        color:
            #62554a !important;

        background:
            transparent !important;

        border-bottom:
            1px solid rgba(105, 82, 52, 0.10) !important;

        border-radius: 0;

        font-size:
            0.96rem !important;

        font-weight:
            520 !important;
    }

    .main-navigation > a[aria-current="page"] {
        padding-left:
            14px !important;

        color:
            #a36449 !important;

        border-left:
            2px solid #dc8e6d !important;
    }

    .mobile-menu-contact {
        color:
            #66584b !important;

        background:
            linear-gradient(
                135deg,
                #f7e993,
                #f2e4a7
            ) !important;

        border:
            1px solid
            rgba(99, 72, 40, 0.08);

        box-shadow:
            0 10px 30px
            rgba(91, 68, 38, 0.07);
    }

}


/* =========================================================
   SEHR KLEINE DISPLAYS
========================================================= */

@media (max-width: 480px) {

    .practice-identity strong {
        max-width:
            175px !important;
    }

}


/* =========================================================
   STARTSEITE IN NAVIGATION IMMER SICHTBAR
========================================================= */

.main-navigation > a.nav-home {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;

    color: #66564a !important;

    font-weight: 650 !important;
}

.main-navigation > a.nav-home:hover {
    color: #9c6248 !important;

    background: rgba(231, 192, 139, 0.18) !important;
}

.main-navigation > a.nav-home[aria-current="page"] {
    color: #955e46 !important;

    background: rgba(229, 180, 126, 0.20) !important;
}

@media (max-width: 900px) {

    .main-navigation > a.nav-home {
        display: flex !important;
        justify-content: flex-start !important;
    }

}


/* =========================================================
   HEADER + NAVIGATION – TYPOGRAFISCH PRÄSENTER
========================================================= */

.practice-header-inner {
    min-height: 104px !important;
}

.practice-logo,
.practice-logo img {
    width: 62px !important;
}

.practice-kicker {
    margin-bottom: 4px !important;

    color: #946a50 !important;

    font-size: 0.68rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.12em !important;
}

.practice-identity strong {
    color: #514439 !important;

    font-size: 1.14rem !important;
    font-weight: 620 !important;

    letter-spacing: -0.015em !important;
    line-height: 1.25 !important;
}

.practice-specialties {
    margin-top: 4px !important;

    color: #736458 !important;

    font-size: 0.79rem !important;
    font-weight: 460 !important;

    line-height: 1.4 !important;
}

.practice-address strong {
    color: #55483d !important;

    font-size: 0.84rem !important;
    font-weight: 620 !important;
}

.practice-address span {
    margin-top: 3px !important;

    color: #76675b !important;

    font-size: 0.77rem !important;
}

.practice-contact a,
.practice-contact div {
    color: #5f5247 !important;

    font-size: 0.77rem !important;
    font-weight: 500 !important;

    line-height: 1.5 !important;
}

.practice-contact span {
    min-width: 58px !important;

    color: #9e6a50 !important;

    font-size: 0.58rem !important;
    font-weight: 720 !important;

    letter-spacing: 0.08em !important;
}


/* =========================================================
   NAVIGATIONSLEISTE
========================================================= */

.navigation-inner {
    min-height: 70px !important;
}

.main-navigation {
    gap: 7px !important;
}

.main-navigation > a {
    min-height: 44px !important;

    padding: 0 16px !important;

    color: #5d5046 !important;

    font-size: 0.85rem !important;
    font-weight: 580 !important;

    letter-spacing: 0 !important;

    border-radius: 999px !important;
}

.main-navigation > a:hover {
    color: #9c634b !important;

    background: rgba(226, 185, 137, 0.19) !important;
}

.main-navigation > a[aria-current="page"] {
    color: #955f48 !important;

    background: rgba(231, 191, 146, 0.23) !important;
}

.header-appointment {
    min-height: 44px !important;

    padding: 0 24px !important;

    font-size: 0.80rem !important;
    font-weight: 640 !important;
}


/* =========================================================
   CTA – WENIGER MASSIV
   "Vereinbaren Sie Ihren Termin bei UroAndroDoc."
========================================================= */

.contact-cta {
    padding-top: 82px !important;
    padding-bottom: 82px !important;
}

.contact-cta h2 {
    max-width: 610px !important;

    color: #574a3e !important;

    font-size: clamp(2.15rem, 3.25vw, 3.45rem) !important;
    font-weight: 420 !important;

    letter-spacing: -0.035em !important;
    line-height: 1.08 !important;
}

.contact-cta .eyebrow,
.contact-cta .eyebrow-light {
    margin-bottom: 16px !important;

    color: #946a51 !important;

    font-size: 0.67rem !important;
    font-weight: 680 !important;
    letter-spacing: 0.13em !important;
}

.contact-cta-actions {
    min-width: 235px !important;
}

.contact-cta-actions .button {
    min-height: 46px !important;

    font-size: 0.78rem !important;
    font-weight: 620 !important;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1120px) {

    .practice-identity strong {
        font-size: 1rem !important;
    }

    .practice-specialties {
        font-size: 0.73rem !important;
    }

    .main-navigation > a {
        padding: 0 11px !important;

        font-size: 0.76rem !important;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 900px) {

    .practice-header-inner {
        min-height: 78px !important;
    }

    .practice-logo,
    .practice-logo img {
        width: 50px !important;
    }

    .practice-logo {
        flex-basis: 50px !important;
    }

    .practice-kicker {
        font-size: 0.52rem !important;
    }

    .practice-identity strong {
        font-size: 0.84rem !important;
        font-weight: 610 !important;
    }

    .main-navigation {
        top: 78px !important;
    }

    .main-navigation > a {
        padding: 18px 9px !important;

        font-size: 1.02rem !important;
        font-weight: 540 !important;
    }

    .contact-cta h2 {
        max-width: 520px !important;

        font-size: clamp(2rem, 8vw, 2.8rem) !important;
        line-height: 1.1 !important;
    }

}


/* =========================================================
   KLEINES SMARTPHONE
========================================================= */

@media (max-width: 550px) {

    .contact-cta {
        padding-top: 68px !important;
        padding-bottom: 68px !important;
    }

    .contact-cta h2 {
        font-size: clamp(1.9rem, 9vw, 2.45rem) !important;
        font-weight: 430 !important;
    }

}

/* UROANDRODOC – HEADER UND NAVIGATION DEUTLICH GRÖSSER */

.practice-header-inner {
    min-height: 122px !important;
    grid-template-columns:
        78px
        minmax(360px, 1.5fr)
        minmax(220px, 0.75fr)
        minmax(290px, 1fr) !important;
    gap: 32px !important;
}

.practice-logo {
    width: 72px !important;
}

.practice-logo img {
    width: 72px !important;
}

.practice-kicker {
    margin-bottom: 5px !important;
    font-size: 0.76rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.13em !important;
}

.practice-identity strong {
    color: #51453b !important;
    font-size: 1.34rem !important;
    font-weight: 620 !important;
    letter-spacing: -0.018em !important;
    line-height: 1.24 !important;
}

.practice-specialties {
    margin-top: 5px !important;
    font-size: 0.91rem !important;
    font-weight: 450 !important;
    line-height: 1.45 !important;
}

.practice-address {
    padding-left: 28px !important;
}

.practice-address strong {
    font-size: 0.96rem !important;
    font-weight: 620 !important;
}

.practice-address span {
    margin-top: 4px !important;
    font-size: 0.87rem !important;
}

.practice-contact {
    padding-left: 28px !important;
    gap: 6px !important;
}

.practice-contact a,
.practice-contact div {
    grid-template-columns: 66px 1fr !important;
    font-size: 0.87rem !important;
    font-weight: 500 !important;
    line-height: 1.5 !important;
}

.practice-contact span {
    font-size: 0.64rem !important;
    font-weight: 720 !important;
}


/* NAVIGATION */

.navigation-inner {
    min-height: 82px !important;
}

.main-navigation {
    gap: 8px !important;
}

.main-navigation > a {
    min-height: 50px !important;
    padding: 0 18px !important;
    color: #5d5148 !important;
    font-size: 0.96rem !important;
    font-weight: 580 !important;
    letter-spacing: 0 !important;
    border-radius: 999px !important;
}

.main-navigation > a:hover {
    color: #975f48 !important;
    background: rgba(226, 185, 137, 0.20) !important;
}

.main-navigation > a[aria-current="page"] {
    color: #925c46 !important;
    background: rgba(230, 190, 145, 0.25) !important;
}

.header-appointment {
    min-height: 50px !important;
    padding: 0 27px !important;
    font-size: 0.90rem !important;
    font-weight: 650 !important;
}


/* MITTLERE BILDSCHIRME */

@media (max-width: 1250px) {

    .practice-header-inner {
        grid-template-columns:
            68px
            minmax(300px, 1.4fr)
            minmax(190px, 0.7fr)
            minmax(250px, 1fr) !important;
        gap: 24px !important;
    }

    .practice-logo,
    .practice-logo img {
        width: 64px !important;
    }

    .practice-identity strong {
        font-size: 1.18rem !important;
    }

    .practice-specialties {
        font-size: 0.82rem !important;
    }

    .practice-address strong {
        font-size: 0.88rem !important;
    }

    .practice-address span,
    .practice-contact a,
    .practice-contact div {
        font-size: 0.78rem !important;
    }

    .main-navigation > a {
        padding: 0 13px !important;
        font-size: 0.86rem !important;
    }

}


/* TABLET */

@media (max-width: 1120px) {

    .practice-header-inner {
        min-height: 108px !important;
        grid-template-columns:
            64px
            minmax(320px, 1.4fr)
            minmax(200px, 0.75fr) !important;
    }

    .practice-contact {
        display: none !important;
    }

    .navigation-inner {
        min-height: 76px !important;
    }

    .main-navigation > a {
        padding: 0 11px !important;
        font-size: 0.80rem !important;
    }

}


/* MOBIL */

@media (max-width: 900px) {

    .practice-header-inner {
        min-height: 88px !important;
    }

    .practice-logo,
    .practice-logo img {
        width: 56px !important;
    }

    .practice-logo {
        flex-basis: 56px !important;
    }

    .practice-kicker {
        font-size: 0.57rem !important;
    }

    .practice-identity strong {
        max-width: 260px !important;
        font-size: 0.94rem !important;
        font-weight: 610 !important;
    }

    .main-navigation {
        top: 88px !important;
    }

    .main-navigation > a {
        padding: 20px 10px !important;
        font-size: 1.12rem !important;
        font-weight: 550 !important;
    }

    .mobile-phone {
        width: 44px !important;
        height: 44px !important;
    }

    .menu-toggle {
        width: 46px !important;
        height: 46px !important;
    }

}


.practice-header-inner {
    width: min(calc(100% - 64px), 1500px) !important;
    min-height: 138px !important;

    grid-template-columns:
        90px
        minmax(410px, 1.55fr)
        minmax(240px, 0.72fr)
        minmax(320px, 0.95fr) !important;

    gap: 38px !important;
}

.practice-logo,
.practice-logo img {
    width: 82px !important;
}

.practice-kicker {
    margin-bottom: 7px !important;

    color: #95684f !important;

    font-size: 0.82rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.13em !important;
}

.practice-identity strong {
    color: #51443a !important;

    font-size: 1.55rem !important;
    font-weight: 600 !important;

    letter-spacing: -0.025em !important;
    line-height: 1.2 !important;
}

.practice-specialties {
    margin-top: 7px !important;

    color: #746458 !important;

    font-size: 1rem !important;
    font-weight: 450 !important;

    line-height: 1.4 !important;
}

.practice-address {
    padding-left: 30px !important;

    border-left:
        1px solid rgba(94, 71, 42, 0.16) !important;
}

.practice-address strong {
    color: #55483e !important;

    font-size: 1.02rem !important;
    font-weight: 620 !important;

    line-height: 1.35 !important;
}

.practice-address span {
    margin-top: 5px !important;

    color: #77685c !important;

    font-size: 0.92rem !important;
}

.practice-contact {
    padding-left: 30px !important;
    gap: 8px !important;

    border-left:
        1px solid rgba(94, 71, 42, 0.16) !important;
}

.practice-contact a,
.practice-contact div {
    grid-template-columns: 72px 1fr !important;

    color: #5e5146 !important;

    font-size: 0.92rem !important;
    font-weight: 500 !important;

    line-height: 1.5 !important;
}

.practice-contact span {
    color: #a06b51 !important;

    font-size: 0.67rem !important;
    font-weight: 750 !important;

    letter-spacing: 0.08em !important;
}

.navigation-inner {
    width: min(calc(100% - 64px), 1500px) !important;
    min-height: 92px !important;
}

.main-navigation {
    gap: 8px !important;
}

.main-navigation > a {
    min-height: 54px !important;

    padding: 0 18px !important;

    color: #5b4e44 !important;

    font-size: 1.04rem !important;
    font-weight: 580 !important;

    letter-spacing: -0.005em !important;

    border-radius: 999px !important;
}

.main-navigation > a:hover {
    color: #975f48 !important;

    background:
        rgba(226, 184, 137, 0.20) !important;
}

.main-navigation > a[aria-current="page"] {
    color: #925c46 !important;

    background:
        rgba(232, 190, 145, 0.27) !important;

    box-shadow:
        inset 0 0 0 1px
        rgba(171, 108, 75, 0.12) !important;
}

.header-appointment {
    min-height: 54px !important;

    padding: 0 30px !important;

    font-size: 1rem !important;
    font-weight: 640 !important;
}

@media (max-width: 1350px) {

    .practice-header-inner {
        min-height: 124px !important;

        grid-template-columns:
            76px
            minmax(350px, 1.45fr)
            minmax(210px, 0.7fr)
            minmax(270px, 0.9fr) !important;

        gap: 27px !important;
    }

    .practice-logo,
    .practice-logo img {
        width: 72px !important;
    }

    .practice-identity strong {
        font-size: 1.34rem !important;
    }

    .practice-specialties {
        font-size: 0.90rem !important;
    }

    .practice-address strong {
        font-size: 0.92rem !important;
    }

    .practice-address span,
    .practice-contact a,
    .practice-contact div {
        font-size: 0.82rem !important;
    }

    .navigation-inner {
        min-height: 84px !important;
    }

    .main-navigation > a {
        padding: 0 14px !important;

        font-size: 0.94rem !important;
    }

    .header-appointment {
        min-height: 50px !important;

        padding: 0 24px !important;

        font-size: 0.90rem !important;
    }

}

@media (max-width: 1120px) {

    .practice-header-inner {
        min-height: 116px !important;

        grid-template-columns:
            72px
            minmax(360px, 1.4fr)
            minmax(220px, 0.75fr) !important;
    }

    .practice-contact {
        display: none !important;
    }

    .navigation-inner {
        min-height: 80px !important;
    }

    .main-navigation > a {
        padding: 0 10px !important;

        font-size: 0.86rem !important;
    }

}

@media (max-width: 900px) {

    .practice-header-inner {
        width: min(calc(100% - 28px), 1500px) !important;
        min-height: 94px !important;
    }

    .practice-logo,
    .practice-logo img {
        width: 60px !important;
    }

    .practice-logo {
        flex-basis: 60px !important;
    }

    .practice-kicker {
        font-size: 0.60rem !important;
    }

    .practice-identity strong {
        max-width: 270px !important;

        font-size: 1rem !important;
        font-weight: 610 !important;
    }

    .main-navigation {
        top: 94px !important;
    }

    .main-navigation > a {
        padding: 21px 11px !important;

        font-size: 1.16rem !important;
        font-weight: 550 !important;
    }

    .mobile-phone {
        width: 46px !important;
        height: 46px !important;
    }

    .menu-toggle {
        width: 48px !important;
        height: 48px !important;
    }

}


/* =========================================================
   UROANDRODOC – FOOTER XL
   Gleiche typografische Präsenz wie der neue Header
========================================================= */

.site-footer {
    padding: 82px 0 34px !important;
}

.footer-grid {
    width: min(calc(100% - 64px), 1500px) !important;

    grid-template-columns:
        minmax(390px, 1.5fr)
        minmax(220px, 0.7fr)
        minmax(220px, 0.7fr) !important;

    gap: 85px !important;

    padding-bottom: 72px !important;
}


/* =========================================================
   FOOTER ÜBERSCHRIFTEN
========================================================= */

.footer-grid h3 {
    margin-bottom: 24px !important;

    color: #55483d !important;

    font-size: 0.82rem !important;
    font-weight: 720 !important;

    letter-spacing: 0.12em !important;
    line-height: 1.3 !important;

    text-transform: uppercase !important;
}


/* =========================================================
   PRAXISNAME
========================================================= */

.footer-practice-name {
    margin-bottom: 20px !important;

    color: #514439 !important;

    font-size: 1.28rem !important;
    font-weight: 600 !important;

    letter-spacing: -0.018em !important;
    line-height: 1.35 !important;
}


/* =========================================================
   ADRESSE
========================================================= */

.footer-contact-main address {
    margin-bottom: 25px !important;

    color: #6b5d51 !important;

    font-size: 1rem !important;
    font-weight: 450 !important;

    line-height: 1.7 !important;
}


/* =========================================================
   TELEFON · FAX · E-MAIL
========================================================= */

.footer-contact-links {
    gap: 12px !important;
}

.footer-contact-links a,
.footer-contact-links div {
    color: #625449 !important;

    font-size: 0.96rem !important;
    font-weight: 500 !important;

    line-height: 1.55 !important;
}

.footer-contact-links a span,
.footer-contact-links div span {
    display: inline-block !important;

    min-width: 76px !important;

    color: #a16a50 !important;

    font-size: 0.68rem !important;
    font-weight: 750 !important;

    letter-spacing: 0.09em !important;

    text-transform: uppercase !important;
}


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

.footer-grid > div:not(.footer-contact-main) a {
    margin-bottom: 14px !important;

    color: #67594e !important;

    font-size: 1rem !important;
    font-weight: 500 !important;

    line-height: 1.45 !important;

    transition:
        color 0.22s ease,
        transform 0.22s ease !important;
}

.footer-grid > div:not(.footer-contact-main) a:hover {
    color: #9d654c !important;

    transform: translateX(3px);
}


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

.footer-bottom {
    width: min(calc(100% - 64px), 1500px) !important;

    padding-top: 28px !important;

    border-top:
        1px solid rgba(92, 70, 43, 0.14) !important;
}

.footer-bottom p {
    color: #7a6b5e !important;

    font-size: 0.78rem !important;
    font-weight: 450 !important;

    line-height: 1.5 !important;
}


/* =========================================================
   MITTLERE BILDSCHIRME
========================================================= */

@media (max-width: 1350px) {

    .footer-grid {
        gap: 60px !important;
    }

    .footer-practice-name {
        font-size: 1.16rem !important;
    }

    .footer-contact-main address,
    .footer-grid > div:not(.footer-contact-main) a {
        font-size: 0.92rem !important;
    }

    .footer-contact-links a,
    .footer-contact-links div {
        font-size: 0.88rem !important;
    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

    .site-footer {
        padding-top: 68px !important;
    }

    .footer-grid {
        width: min(calc(100% - 36px), 1500px) !important;

        grid-template-columns:
            1.3fr
            0.7fr
            0.7fr !important;

        gap: 40px !important;
    }

    .footer-bottom {
        width: min(calc(100% - 36px), 1500px) !important;
    }

    .footer-practice-name {
        font-size: 1.08rem !important;
    }

}


/* =========================================================
   SMARTPHONE
========================================================= */

@media (max-width: 650px) {

    .site-footer {
        padding:
            58px 0 28px !important;
    }

    .footer-grid {
        grid-template-columns: 1fr !important;

        gap: 38px !important;

        padding-bottom: 48px !important;
    }

    .footer-contact-main {
        grid-column: auto !important;
    }

    .footer-grid h3 {
        font-size: 0.76rem !important;
    }

    .footer-practice-name {
        font-size: 1.18rem !important;
    }

    .footer-contact-main address {
        font-size: 0.95rem !important;
    }

    .footer-contact-links a,
    .footer-contact-links div,
    .footer-grid > div:not(.footer-contact-main) a {
        font-size: 0.96rem !important;
    }

    .footer-bottom {
        flex-direction: column !important;
        align-items: flex-start !important;

        gap: 9px !important;
    }

    .footer-bottom p {
        font-size: 0.74rem !important;
    }

}


/* =========================================================
   UROANDRODOC – AQUARELL / NATURHINTERGRUND
   Moderne Interpretation des bisherigen Praxisdesigns
========================================================= */

:root {
    --uro-watercolor:
        url("../images/uroandrodoc-aquarell-hintergrund.svg");
}


/* =========================================================
   STARTSEITE – PRAXISZEITEN
========================================================= */

.practice-hours {
    background-color: #f8e985 !important;

    background-image:
        linear-gradient(
            rgba(255, 250, 225, 0.16),
            rgba(255, 250, 225, 0.16)
        ),
        var(--uro-watercolor) !important;

    background-size:
        cover,
        cover !important;

    background-position:
        center,
        center !important;
}


/* =========================================================
   STARTSEITE – ÄRZTE
========================================================= */

.doctors-section {
    background-color: #d5efb6 !important;

    background-image:
        linear-gradient(
            rgba(240, 255, 225, 0.14),
            rgba(227, 255, 239, 0.12)
        ),
        var(--uro-watercolor) !important;

    background-size:
        cover,
        cover !important;

    background-position:
        center,
        center 65% !important;
}


/* =========================================================
   LEISTUNGEN – SEHR DEZENT
========================================================= */

.services {
    background-color: #fffaf0 !important;

    background-image:
        linear-gradient(
            rgba(255,255,255,.76),
            rgba(255,253,239,.76)
        ),
        var(--uro-watercolor) !important;

    background-size:
        cover,
        cover !important;

    background-position:
        center,
        center !important;
}


/* =========================================================
   TERMINBEREICH
========================================================= */

.contact-cta {
    background-color: #f2df72 !important;

    background-image:
        linear-gradient(
            90deg,
            rgba(245, 219, 103, .52),
            rgba(214, 240, 168, .36),
            rgba(181, 237, 205, .42)
        ),
        var(--uro-watercolor) !important;

    background-size:
        cover,
        cover !important;

    background-position:
        center,
        center 58% !important;
}


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

.site-footer {
    background-color: #eee083 !important;

    background-image:
        linear-gradient(
            rgba(244, 224, 119, .50),
            rgba(225, 235, 156, .42)
        ),
        var(--uro-watercolor) !important;

    background-size:
        cover,
        cover !important;

    background-position:
        center,
        center bottom !important;
}


/* =========================================================
   DR. VON KELLENBACH – GRÜNE ABSCHNITTE
========================================================= */

.doctor-career-green {
    background-color: #d9efb1 !important;

    background-image:
        linear-gradient(
            rgba(230, 250, 204, .28),
            rgba(190, 238, 209, .24)
        ),
        var(--uro-watercolor) !important;

    background-size:
        cover,
        cover !important;

    background-position:
        center,
        center 70% !important;
}


/* =========================================================
   DR. VON KELLENBACH – GELBE ABSCHNITTE
========================================================= */

.doctor-career-yellow,
.doctor-awards {
    background-color: #f2df77 !important;

    background-image:
        linear-gradient(
            rgba(248, 226, 119, .38),
            rgba(218, 238, 164, .24)
        ),
        var(--uro-watercolor) !important;

    background-size:
        cover,
        cover !important;

    background-position:
        center,
        center !important;
}


/* =========================================================
   KARTEN BLEIBEN RUHIG UND LESBAR
========================================================= */

.practice-hours-card,
.doctor-card,
.doctor-career-card {
    background:
        rgba(255, 253, 239, .92) !important;

    backdrop-filter:
        blur(4px);

    -webkit-backdrop-filter:
        blur(4px);
}


/* =========================================================
   DESKTOP – DEZENTE FIXIERUNG FÜR MEHR TIEFE
========================================================= */

@media (min-width: 1000px) {

    .practice-hours,
    .doctors-section,
    .contact-cta,
    .site-footer,
    .doctor-career-green,
    .doctor-career-yellow,
    .doctor-awards {
        background-attachment:
            scroll,
            scroll !important;
    }

}


/* =========================================================
   MOBIL – TEXTUR ETWAS RUHIGER
========================================================= */

@media (max-width: 700px) {

    .practice-hours,
    .doctors-section,
    .contact-cta,
    .site-footer,
    .doctor-career-green,
    .doctor-career-yellow,
    .doctor-awards {
        background-size:
            cover,
            1200px auto !important;
    }

}

/* =========================================================
   UROANDRODOC – ORIGINALER NATURHINTERGRUND
   Drkellenbachhintergrund.jpg
========================================================= */

:root {
    --uro-watercolor:
        url("../images/Drkellenbachhintergrund.jpg");
}


/* Praxiszeiten */

.practice-hours {
    background-image:
        linear-gradient(
            rgba(255, 250, 225, 0.20),
            rgba(255, 250, 225, 0.20)
        ),
        var(--uro-watercolor) !important;

    background-size:
        cover,
        cover !important;

    background-position:
        center,
        center !important;

    background-repeat:
        no-repeat,
        no-repeat !important;
}


/* Ärzte */

.doctors-section {
    background-image:
        linear-gradient(
            rgba(238, 255, 220, 0.18),
            rgba(220, 255, 235, 0.16)
        ),
        var(--uro-watercolor) !important;

    background-size:
        cover,
        cover !important;

    background-position:
        center,
        center 55% !important;

    background-repeat:
        no-repeat,
        no-repeat !important;
}


/* Leistungen – Hintergrund bewusst heller */

.services {
    background-image:
        linear-gradient(
            rgba(255, 253, 242, 0.84),
            rgba(255, 253, 242, 0.84)
        ),
        var(--uro-watercolor) !important;

    background-size:
        cover,
        cover !important;

    background-position:
        center,
        center !important;

    background-repeat:
        no-repeat,
        no-repeat !important;
}


/* Terminbereich */

.contact-cta {
    background-image:
        linear-gradient(
            90deg,
            rgba(245, 220, 103, 0.55),
            rgba(217, 241, 170, 0.42),
            rgba(184, 239, 209, 0.42)
        ),
        var(--uro-watercolor) !important;

    background-size:
        cover,
        cover !important;

    background-position:
        center,
        center 60% !important;

    background-repeat:
        no-repeat,
        no-repeat !important;
}


/* Footer */

.site-footer {
    background-image:
        linear-gradient(
            rgba(243, 225, 125, 0.55),
            rgba(226, 237, 170, 0.48)
        ),
        var(--uro-watercolor) !important;

    background-size:
        cover,
        cover !important;

    background-position:
        center,
        center bottom !important;

    background-repeat:
        no-repeat,
        no-repeat !important;
}


/* Dr. von Kellenbach – grüne Sektion */

.doctor-career-green {
    background-image:
        linear-gradient(
            rgba(225, 249, 207, 0.34),
            rgba(191, 239, 211, 0.30)
        ),
        var(--uro-watercolor) !important;

    background-size:
        cover,
        cover !important;

    background-position:
        center,
        center 60% !important;

    background-repeat:
        no-repeat,
        no-repeat !important;
}


/* Dr. von Kellenbach – gelbe Bereiche */

.doctor-career-yellow,
.doctor-awards {
    background-image:
        linear-gradient(
            rgba(247, 225, 119, 0.40),
            rgba(220, 238, 166, 0.30)
        ),
        var(--uro-watercolor) !important;

    background-size:
        cover,
        cover !important;

    background-position:
        center,
        center !important;

    background-repeat:
        no-repeat,
        no-repeat !important;
}


/* Karten für gute Lesbarkeit */

.practice-hours-card,
.doctor-career-card {
    background:
        rgba(255, 253, 239, 0.93) !important;

    backdrop-filter:
        blur(3px);

    -webkit-backdrop-filter:
        blur(3px);
}


/* Smartphone */

@media (max-width: 700px) {

    .practice-hours,
    .doctors-section,
    .services,
    .contact-cta,
    .site-footer,
    .doctor-career-green,
    .doctor-career-yellow,
    .doctor-awards {
        background-size:
            cover,
            auto 100% !important;
    }

}


/* =========================================================
   "Zwei medizinische Fachbereiche ..."
   stärker hervorheben – weich und hochwertig
========================================================= */

.doctors-section .section-heading > p {
    position: relative;

    max-width: 520px !important;

    margin: 0 !important;
    padding: 22px 26px 22px 30px !important;

    color: #665548 !important;

    background:
        rgba(255, 253, 237, 0.62) !important;

    border:
        1px solid rgba(168, 115, 78, 0.14) !important;

    border-radius: 18px !important;

    box-shadow:
        0 10px 30px rgba(94, 67, 40, 0.07) !important;

    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);

    font-size: 1.13rem !important;
    font-weight: 480 !important;

    letter-spacing: -0.012em !important;
    line-height: 1.65 !important;
}


/* Korallfarbene feine Akzentlinie */

.doctors-section .section-heading > p::before {
    position: absolute;

    top: 22px;
    bottom: 22px;
    left: 0;

    width: 3px;

    content: "";

    background:
        linear-gradient(
            180deg,
            #df9069,
            #c77f5e
        );

    border-radius: 999px;
}


/* kleines dekoratives Zeichen */

.doctors-section .section-heading > p::after {
    position: absolute;

    top: -14px;
    right: 22px;

    content: "“";

    color: rgba(201, 125, 91, 0.30);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 4.3rem;
    font-weight: 400;
    line-height: 1;
}


/* Tablet */

@media (max-width: 900px) {

    .doctors-section .section-heading > p {
        max-width: 100% !important;

        font-size: 1.05rem !important;
    }

}


/* Smartphone */

@media (max-width: 600px) {

    .doctors-section .section-heading > p {
        padding:
            19px 21px 19px 25px !important;

        font-size: 1rem !important;
        line-height: 1.6 !important;

        border-radius: 15px !important;
    }

}

/* =========================================================
   UROANDRODOC – BARRIEREÄRMERE TYPOGRAFIE
   Mindestschriftgröße 18 px + Baskerville
========================================================= */

html {
    font-size: 18px !important;
}

body,
button,
input,
textarea,
select {
    font-family:
        Baskerville,
        "Palatino Linotype",
        Palatino,
        "Book Antiqua",
        Georgia,
        serif !important;
}


/* =========================================================
   MINDESTSCHRIFTGRÖSSE 18 PX
========================================================= */

p,
a,
li,
address,
button,
input,
textarea,
select,
label,
small,
.footer-grid a,
.footer-grid p,
.footer-contact-links a,
.footer-contact-links div,
.practice-contact a,
.practice-contact div,
.practice-address strong,
.practice-address span,
.practice-identity strong,
.practice-specialties,
.practice-kicker,
.main-navigation > a,
.header-appointment,
.eyebrow,
.doctor-specialty,
.practice-label,
.quick-info-item small,
.quick-info-item strong,
.trust-item span,
.trust-item strong,
.doctor-career-list li,
.doctor-career-text,
.doctor-expertise-item p,
.doctor-expertise-item > span,
.doctor-profile-specialties span,
.doctor-fields span,
.footer-bottom p {
    font-size: 18px !important;
}


/* =========================================================
   ÜBERSCHRIFTEN – WEICH UND GUT LESBAR
========================================================= */

h1,
h2,
h3,
h4,
.section-title,
.doctor-profile-copy h1,
.doctor-intro h2,
.doctor-career-card h2,
.doctor-expertise-heading h2,
.doctor-awards h2,
.contact-cta h2 {
    font-family:
        Baskerville,
        "Palatino Linotype",
        Palatino,
        "Book Antiqua",
        Georgia,
        serif !important;

    color: #55483c !important;

    font-weight: 400 !important;

    letter-spacing: -0.02em !important;
}


/* =========================================================
   BODY-TEXT
========================================================= */

body,
p,
li,
address {
    color: #695c50;

    line-height: 1.7;
}


/* =========================================================
   HEADER – AUF 18 PX AUSLEGEN
========================================================= */

.practice-header-inner {
    min-height: 150px !important;

    grid-template-columns:
        92px
        minmax(430px, 1.5fr)
        minmax(270px, 0.75fr)
        minmax(350px, 1fr) !important;

    gap: 38px !important;
}

.practice-logo,
.practice-logo img {
    width: 82px !important;
}

.practice-kicker {
    font-size: 18px !important;
    font-weight: 500 !important;

    letter-spacing: 0.07em !important;

    text-transform: uppercase;
}

.practice-identity strong {
    font-size: 24px !important;
    font-weight: 500 !important;

    line-height: 1.25 !important;
}

.practice-specialties {
    font-size: 18px !important;

    line-height: 1.45 !important;
}

.practice-address strong {
    font-size: 19px !important;
    font-weight: 500 !important;
}

.practice-address span {
    font-size: 18px !important;
}

.practice-contact a,
.practice-contact div {
    grid-template-columns: 82px 1fr !important;

    font-size: 18px !important;
}

.practice-contact span {
    font-size: 18px !important;

    font-weight: 500 !important;

    text-transform: none !important;
}


/* =========================================================
   NAVIGATION – MINDESTENS 18 PX
========================================================= */

.navigation-inner {
    width: min(calc(100% - 64px), 1550px) !important;

    min-height: 92px !important;
}

.main-navigation {
    gap: 4px !important;
}

.main-navigation > a {
    min-height: 54px !important;

    padding: 0 15px !important;

    color: #5e5146 !important;

    font-size: 18px !important;
    font-weight: 500 !important;

    border-radius: 999px !important;
}

.header-appointment {
    min-height: 54px !important;

    padding: 0 25px !important;

    font-size: 18px !important;
    font-weight: 500 !important;
}


/* =========================================================
   KLEINE LABEL NICHT MEHR MIKROSKOPISCH
========================================================= */

.eyebrow,
.doctor-specialty,
.practice-label,
.doctor-career-number,
.practice-number,
.service-number {
    font-size: 18px !important;

    font-weight: 500 !important;

    letter-spacing: 0.07em !important;
}


/* =========================================================
   KARTEN / FLIESSTEXT
========================================================= */

.practice-hours-card,
.doctor-card-content,
.doctor-career-card,
.service-card,
.doctor-expertise-item {
    font-size: 18px !important;
}

.hours-row span,
.hours-row strong {
    font-size: 18px !important;
}

.hours-note {
    font-size: 18px !important;
}


/* =========================================================
   FOOTER – GELBTON DER UROANDRODOC-SEITE
========================================================= */

.site-footer {
    background: #F1DC73 !important;
    background-image: none !important;

    color: #5c5045 !important;

    padding-top: 85px !important;
    padding-bottom: 38px !important;
}

.footer-grid {
    width: min(calc(100% - 64px), 1500px) !important;

    gap: 80px !important;
}

.footer-grid h3 {
    color: #55483c !important;

    font-size: 18px !important;
    font-weight: 500 !important;

    letter-spacing: 0.06em !important;
}

.footer-practice-name {
    color: #51453b !important;

    font-size: 23px !important;
    font-weight: 500 !important;

    line-height: 1.4 !important;
}

.footer-contact-main address {
    color: #65584c !important;

    font-size: 18px !important;
}

.footer-contact-links a,
.footer-contact-links div,
.footer-grid > div:not(.footer-contact-main) a {
    color: #62564a !important;

    font-size: 18px !important;

    line-height: 1.55 !important;
}

.footer-contact-links a span,
.footer-contact-links div span {
    min-width: 90px !important;

    color: #9c674d !important;

    font-size: 18px !important;

    text-transform: none !important;
}

.footer-bottom p {
    color: #76685b !important;

    font-size: 18px !important;
}


/* =========================================================
   CTA UNTEN – WEICHER UND KLEINER
========================================================= */

.contact-cta h2 {
    max-width: 660px !important;

    font-size: clamp(2.1rem, 3vw, 3.15rem) !important;
    font-weight: 400 !important;

    line-height: 1.12 !important;
}

.contact-cta-actions .button {
    font-size: 18px !important;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1250px) {

    .practice-header-inner {
        grid-template-columns:
            78px
            minmax(380px, 1.45fr)
            minmax(240px, 0.8fr) !important;

        min-height: 140px !important;
    }

    .practice-contact {
        display: none !important;
    }

    .main-navigation > a {
        padding: 0 10px !important;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 900px) {

    .practice-header-inner {
        min-height: 100px !important;
    }

    .practice-logo,
    .practice-logo img {
        width: 62px !important;
    }

    .practice-logo {
        flex-basis: 62px !important;
    }

    .practice-kicker {
        font-size: 18px !important;
    }

    .practice-identity strong {
        max-width: 310px !important;

        font-size: 20px !important;

        white-space: normal !important;
    }

    .practice-specialties {
        display: none !important;
    }

    .main-navigation {
        top: 100px !important;
    }

    .main-navigation > a {
        padding: 20px 10px !important;

        font-size: 18px !important;
    }

    .mobile-menu-contact,
    .mobile-menu-contact a,
    .mobile-menu-contact span,
    .mobile-menu-contact strong {
        font-size: 18px !important;
    }

}


/* =========================================================
   KLEINE SMARTPHONES
========================================================= */

@media (max-width: 550px) {

    .practice-kicker {
        display: none !important;
    }

    .practice-identity strong {
        font-size: 18px !important;
    }

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

}


/* =========================================================
   UROANDRODOC – TYPOGRAFIE-FEINSCHLIFF
   18px gut lesbarer Fließtext
   Baskerville für Überschriften
   klare Sans-Serif für Navigation und Informationen
========================================================= */

body {
    font-family:
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Arial,
        Helvetica,
        sans-serif !important;

    font-size: 18px !important;
    line-height: 1.7 !important;

    color: #62564b !important;
}


/* =========================================================
   ELEGANTE SCHRIFT NUR FÜR ÜBERSCHRIFTEN
========================================================= */

h1,
h2,
h3,
h4,
.section-title,
.hero-editorial h1,
.doctor-profile-copy h1,
.doctor-intro h2,
.doctor-career-card h2,
.doctor-expertise-heading h2,
.doctor-awards h2,
.contact-cta h2 {
    font-family:
        Baskerville,
        "Palatino Linotype",
        Palatino,
        Georgia,
        serif !important;

    font-weight: 400 !important;
}


/* =========================================================
   NORMALE TEXTE MINDESTENS 18PX
========================================================= */

p,
li,
address,
.hours-row span,
.hours-row strong,
.hours-note,
.doctor-card-content p,
.doctor-career-list li,
.doctor-career-text,
.doctor-expertise-item p,
.footer-contact-main address,
.footer-contact-links a,
.footer-contact-links div {
    font-size: 18px !important;
    line-height: 1.7 !important;
}


/* =========================================================
   HEADER – KLAR UND GUT LESBAR
========================================================= */

.practice-header-inner {
    min-height: 142px !important;
}

.practice-identity {
    font-family:
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Arial,
        sans-serif !important;
}

.practice-kicker {
    font-family: inherit !important;

    font-size: 18px !important;
    font-weight: 650 !important;

    letter-spacing: 0.07em !important;
}

.practice-identity strong {
    font-family: inherit !important;

    font-size: 25px !important;
    font-weight: 620 !important;

    line-height: 1.25 !important;
}

.practice-specialties {
    font-family: inherit !important;

    font-size: 18px !important;
    font-weight: 450 !important;
}

.practice-address strong {
    font-family: inherit !important;

    font-size: 19px !important;
    font-weight: 620 !important;
}

.practice-address span {
    font-family: inherit !important;

    font-size: 18px !important;
}

.practice-contact a,
.practice-contact div,
.practice-contact span {
    font-family: inherit !important;

    font-size: 18px !important;
}


/* =========================================================
   NAVIGATION – NICHT IN BASKERVILLE
========================================================= */

.main-navigation,
.main-navigation a,
.header-appointment {
    font-family:
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Arial,
        Helvetica,
        sans-serif !important;
}

.navigation-inner {
    min-height: 86px !important;
}

.main-navigation > a {
    min-height: 50px !important;

    padding: 0 16px !important;

    font-size: 18px !important;
    font-weight: 570 !important;

    color: #5d5148 !important;
}

.header-appointment {
    min-height: 50px !important;

    padding: 0 26px !important;

    font-size: 18px !important;
    font-weight: 620 !important;
}


/* =========================================================
   EYEBROWS / KLEINE ÜBERSCHRIFTEN
========================================================= */

.eyebrow,
.doctor-specialty,
.practice-label {
    font-family:
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Arial,
        sans-serif !important;

    font-size: 18px !important;
    font-weight: 600 !important;

    letter-spacing: 0.06em !important;
}


/* =========================================================
   ÄRZTE-KARTEN
========================================================= */

.doctor-card h3 {
    font-size: 30px !important;
    line-height: 1.1 !important;
}

.doctor-card-content p {
    font-size: 18px !important;
}


/* =========================================================
   LEISTUNGEN
========================================================= */

.service-card h3 {
    font-family:
        Baskerville,
        "Palatino Linotype",
        Palatino,
        Georgia,
        serif !important;

    font-size: 27px !important;
    font-weight: 400 !important;
}

.service-card p {
    font-size: 18px !important;
    line-height: 1.65 !important;
}


/* =========================================================
   TERMIN CTA – WENIGER MÄCHTIG
========================================================= */

.contact-cta h2 {
    max-width: 680px !important;

    font-size: clamp(2rem, 2.8vw, 3rem) !important;
    font-weight: 400 !important;

    line-height: 1.12 !important;
}


/* =========================================================
   FOOTER – KLARER GELBTON + 18PX
========================================================= */

.site-footer {
    background: #F1DC73 !important;
    background-image: none !important;
}

.site-footer,
.site-footer p,
.site-footer a,
.site-footer address {
    font-family:
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Arial,
        Helvetica,
        sans-serif !important;

    font-size: 18px !important;
}

.footer-practice-name {
    font-size: 23px !important;
    font-weight: 600 !important;
}

.footer-grid h3 {
    font-size: 18px !important;
    font-weight: 700 !important;
}


/* =========================================================
   MOBILE – NAVIGATION WIEDER ALS RICHTIGES MENÜ
========================================================= */

@media (max-width: 900px) {

    .practice-header-inner {
        min-height: 94px !important;
    }

    .practice-kicker {
        display: none !important;
    }

    .practice-identity strong {
        max-width: 260px !important;

        font-size: 18px !important;

        white-space: normal !important;
    }

    .practice-specialties,
    .practice-address,
    .practice-contact {
        display: none !important;
    }

    .main-navigation {
        position: fixed !important;

        top: 94px !important;
        right: 0 !important;
        bottom: 0 !important;
        left: 0 !important;

        display: flex !important;
        flex-direction: column !important;
        align-items: stretch !important;

        padding: 24px !important;

        background: #fffdf4 !important;

        opacity: 0 !important;
        visibility: hidden !important;

        transform: translateY(-8px) !important;

        overflow-y: auto !important;
    }

    .main-navigation.is-open {
        opacity: 1 !important;
        visibility: visible !important;

        transform: translateY(0) !important;
    }

    .main-navigation > a {
        width: 100% !important;
        min-height: 58px !important;

        justify-content: flex-start !important;

        padding: 16px 8px !important;

        font-size: 18px !important;

        background: transparent !important;

        border-bottom:
            1px solid rgba(89, 69, 45, 0.12) !important;

        border-radius: 0 !important;
    }

    .menu-toggle {
        display: block !important;
    }

}


/* =========================================================
   SMARTPHONE
========================================================= */

@media (max-width: 550px) {

    body {
        font-size: 18px !important;
    }

    .doctor-card h3 {
        font-size: 26px !important;
    }

    .service-card h3 {
        font-size: 24px !important;
    }

    .contact-cta h2 {
        font-size: 2.15rem !important;
    }

}



/* =========================================================
   UROONKOLOGIE – HEADER / FACHBEREICHE
========================================================= */

.practice-specialties {
    white-space: normal !important;
    line-height: 1.45 !important;
}

.doctor-profile-specialties {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 10px !important;
}



/* =========================================================
   UROANDRODOC – TEAMSEITE
========================================================= */

.team-page {
    background: #fffaf0;
}


/* =========================================================
   TEAM HERO
========================================================= */

.team-hero {
    padding: 90px 0 105px;

    background-color: #f3df78;

    background-image:
        linear-gradient(
            rgba(247, 226, 127, 0.42),
            rgba(213, 240, 180, 0.20)
        ),
        url("../images/Drkellenbachhintergrund.jpg");

    background-size:
        cover,
        cover;

    background-position:
        center,
        center 25%;
}


.team-hero-heading {
    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(320px, 0.65fr);

    align-items: end;

    gap: 70px;

    margin-bottom: 50px;
}


.team-hero-heading h1 {
    max-width: 850px;

    margin: 0;

    color: #55483c !important;

    font-family:
        Baskerville,
        "Palatino Linotype",
        Palatino,
        Georgia,
        serif !important;

    font-size: clamp(3.4rem, 5vw, 5.7rem);
    font-weight: 400 !important;

    letter-spacing: -0.035em;
    line-height: 1.02;
}


.team-hero-heading > p {
    margin: 0 0 8px;

    color: #685b4e;

    font-size: 18px !important;
    line-height: 1.7;
}


.team-group-photo {
    position: relative;

    overflow: hidden;

    padding: 24px;

    background:
        rgba(255, 250, 227, 0.84);

    border:
        1px solid rgba(110, 83, 48, 0.10);

    border-radius: 28px;

    box-shadow:
        0 25px 65px rgba(93, 68, 37, 0.13);
}


.team-group-photo img {
    display: block;

    width: 100%;
    height: auto;

    border-radius: 18px;
}


.team-group-caption {
    position: absolute;

    right: 45px;
    bottom: 45px;

    max-width: 360px;

    padding: 18px 22px;

    background:
        rgba(255, 252, 237, 0.92);

    border-radius: 15px;

    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}


.team-group-caption span,
.team-group-caption strong {
    display: block;
}


.team-group-caption span {
    margin-bottom: 4px;

    color: #a06a4f;

    font-size: 18px !important;
}


.team-group-caption strong {
    color: #5a4c40;

    font-size: 20px !important;
    font-weight: 500;
}


/* =========================================================
   ÄRZTE
========================================================= */

.team-doctors {
    padding: 105px 0;

    background: #fffaf0;
}


.team-section-heading,
.practice-team-heading {
    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(320px, 0.65fr);

    align-items: end;

    gap: 70px;

    margin-bottom: 55px;
}


.team-section-heading h2,
.practice-team-heading h2 {
    margin: 0;

    color: #55483c !important;

    font-family:
        Baskerville,
        "Palatino Linotype",
        Palatino,
        Georgia,
        serif !important;

    font-size: clamp(2.8rem, 4vw, 4.6rem);
    font-weight: 400 !important;

    letter-spacing: -0.03em;
}


.team-section-heading > p,
.practice-team-heading > p {
    margin: 0;

    padding: 23px 27px;

    color: #67594d;

    background:
        rgba(255, 252, 236, 0.75);

    border:
        1px solid rgba(163, 112, 78, 0.12);

    border-radius: 18px;

    font-size: 18px !important;
    line-height: 1.7;
}


.team-doctors-grid {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 30px;
}


.team-doctor-card {
    display: grid;

    grid-template-columns:
        minmax(260px, 0.9fr)
        minmax(0, 1.1fr);

    overflow: hidden;

    background:
        rgba(255, 253, 239, 0.94);

    border:
        1px solid rgba(99, 75, 46, 0.10);

    border-radius: 24px;

    box-shadow:
        0 15px 42px rgba(78, 58, 36, 0.09);
}


.team-doctor-image {
    min-height: 430px;

    overflow: hidden;

    background: #fff;
}


.team-doctor-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center top;
}


.team-doctor-content {
    display: flex;
    flex-direction: column;
    justify-content: center;

    padding: 42px;
}


.team-doctor-specialty {
    margin-bottom: 15px !important;

    color: #a36b50 !important;

    font-size: 18px !important;
    font-weight: 500;

    letter-spacing: 0.035em;
}


.team-doctor-content h3 {
    margin-bottom: 20px;

    color: #55483c !important;

    font-family:
        Baskerville,
        "Palatino Linotype",
        Palatino,
        Georgia,
        serif !important;

    font-size: clamp(2rem, 2.8vw, 3rem) !important;
    font-weight: 400 !important;

    line-height: 1.04;
}


.team-doctor-content > p:not(.team-doctor-specialty) {
    color: #6e6155;

    font-size: 18px !important;
    line-height: 1.7;
}


.team-text-link {
    width: fit-content;

    margin-top: 15px;

    color: #a06349 !important;

    font-size: 18px !important;
    font-weight: 600;

    border-bottom:
        1px solid rgba(160, 99, 73, 0.40);
}


/* =========================================================
   PRAXISTEAM
========================================================= */

.practice-team-section {
    padding: 110px 0;

    background-color: #d7efb2;

    background-image:
        linear-gradient(
            rgba(225, 249, 207, 0.16),
            rgba(183, 237, 211, 0.12)
        ),
        url("../images/Drkellenbachhintergrund.jpg");

    background-size:
        cover,
        cover;

    background-position:
        center,
        center 72%;
}


.practice-team-grid {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 25px;
}


.staff-card {
    overflow: hidden;

    background:
        rgba(255, 253, 239, 0.94);

    border:
        1px solid rgba(96, 72, 43, 0.10);

    border-radius: 20px;

    box-shadow:
        0 12px 35px rgba(78, 57, 35, 0.08);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}


.staff-card:hover {
    transform: translateY(-5px);

    box-shadow:
        0 18px 42px rgba(78, 57, 35, 0.13);
}


.staff-photo {
    overflow: hidden;

    aspect-ratio: 1 / 1;
}


.staff-photo img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center top;

    transition:
        transform 0.4s ease;
}


.staff-card:hover .staff-photo img {
    transform: scale(1.025);
}


.staff-card h3 {
    min-height: 105px;

    margin: 0;

    display: flex;
    align-items: center;

    padding: 24px 25px;

    color: #594c40 !important;

    font-family:
        Baskerville,
        "Palatino Linotype",
        Palatino,
        Georgia,
        serif !important;

    font-size: 26px !important;
    font-weight: 400 !important;

    letter-spacing: -0.015em;
    line-height: 1.05;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1100px) {

    .team-doctors-grid {
        grid-template-columns: 1fr;
    }

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

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 800px) {

    .team-hero {
        padding:
            70px 0 80px;
    }

    .team-hero-heading,
    .team-section-heading,
    .practice-team-heading {
        grid-template-columns: 1fr;

        gap: 28px;
    }

    .team-group-photo {
        padding: 12px;

        border-radius: 20px;
    }

    .team-group-photo img {
        border-radius: 13px;
    }

    .team-group-caption {
        position: static;

        max-width: none;

        margin-top: 12px;

        background:
            rgba(255, 252, 237, 0.84);
    }

    .team-doctor-card {
        grid-template-columns: 1fr;
    }

    .team-doctor-image {
        min-height: auto;
    }

    .team-doctor-image img {
        height: auto;

        object-fit: contain;
    }

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

}


/* =========================================================
   SMARTPHONE
========================================================= */

@media (max-width: 520px) {

    .team-hero-heading h1 {
        font-size: 2.9rem;
    }

    .team-doctor-content {
        padding: 30px 24px;
    }

    .practice-team-grid {
        grid-template-columns: 1fr;
    }

    .staff-card {
        display: grid;

        grid-template-columns:
            145px 1fr;

        align-items: stretch;
    }

    .staff-photo {
        aspect-ratio: auto;

        min-height: 165px;
    }

    .staff-card h3 {
        min-height: 165px;

        padding: 22px;

        font-size: 24px !important;
    }

}


/* =========================================================
   TEAMSEITE – HINTERGRUND WIE STARTSEITE
   + kleinere, gleich große, abgerundete Fotos
========================================================= */

.team-page {
    background: #fffaf0 !important;
}


/* =========================================================
   HERO / EINLEITUNG
========================================================= */

.team-hero {
    padding: 90px 0 95px !important;

    background-color: #f2df77 !important;
    background-image:
        linear-gradient(
            rgba(247, 225, 119, 0.34),
            rgba(218, 238, 166, 0.20)
        ),
        url("../images/Drkellenbachhintergrund.jpg") !important;

    background-size:
        cover,
        cover !important;

    background-position:
        center,
        center 30% !important;
}

.team-hero-heading {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.62fr) !important;
    gap: 56px !important;
    align-items: end !important;
    margin-bottom: 42px !important;
}

.team-hero-heading h1 {
    margin: 0 !important;

    color: #56493d !important;

    font-family:
        Baskerville,
        "Palatino Linotype",
        Palatino,
        Georgia,
        serif !important;

    font-size: clamp(2.9rem, 4.4vw, 4.9rem) !important;
    font-weight: 400 !important;
    line-height: 1.02 !important;
    letter-spacing: -0.03em !important;
}

.team-hero-heading > p {
    margin: 0 !important;

    color: #6a5c50 !important;

    font-size: 18px !important;
    line-height: 1.7 !important;
}

.team-group-photo {
    max-width: 1120px !important;
    margin: 0 auto !important;
    padding: 18px !important;

    background: rgba(255, 252, 237, 0.78) !important;

    border: 1px solid rgba(112, 84, 50, 0.10) !important;
    border-radius: 28px !important;

    box-shadow: 0 18px 44px rgba(78, 57, 35, 0.10) !important;
}

.team-group-photo img {
    display: block !important;
    width: 100% !important;
    height: auto !important;

    border-radius: 22px !important;
}


/* =========================================================
   ÄRZTEBEREICH
========================================================= */

.team-doctors {
    padding: 100px 0 !important;

    background-color: #fffaf0 !important;
    background-image:
        linear-gradient(
            rgba(255,255,255,.72),
            rgba(255,250,240,.72)
        ),
        url("../images/Drkellenbachhintergrund.jpg") !important;

    background-size:
        cover,
        cover !important;

    background-position:
        center,
        center !important;
}

.team-section-heading,
.practice-team-heading {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.62fr) !important;
    gap: 56px !important;
    align-items: end !important;
    margin-bottom: 46px !important;
}

.team-section-heading h2,
.practice-team-heading h2 {
    margin: 0 !important;

    color: #56493d !important;

    font-family:
        Baskerville,
        "Palatino Linotype",
        Palatino,
        Georgia,
        serif !important;

    font-size: clamp(2.4rem, 3.6vw, 4rem) !important;
    font-weight: 400 !important;
    letter-spacing: -0.028em !important;
}

.team-section-heading > p,
.practice-team-heading > p {
    margin: 0 !important;
    padding: 22px 26px !important;

    color: #6a5c50 !important;

    background: rgba(255, 252, 237, 0.76) !important;

    border: 1px solid rgba(163, 112, 78, 0.12) !important;
    border-radius: 18px !important;

    font-size: 18px !important;
    line-height: 1.7 !important;
}

.team-doctors-grid {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(280px, 420px)) !important;
    justify-content: center !important;
    gap: 30px !important;
}

.team-doctor-card {
    display: flex !important;
    flex-direction: column !important;

    max-width: 420px !important;
    width: 100% !important;

    overflow: hidden !important;

    background: rgba(255, 253, 239, 0.95) !important;

    border: 1px solid rgba(96, 72, 43, 0.10) !important;
    border-radius: 26px !important;

    box-shadow: 0 14px 36px rgba(78, 57, 35, 0.09) !important;
}

.team-doctor-image {
    aspect-ratio: 1 / 1.05 !important;
    min-height: auto !important;
    overflow: hidden !important;

    background: #f7f5f1 !important;
}

.team-doctor-image img {
    display: block !important;
    width: 100% !important;
    height: 100% !important;

    object-fit: cover !important;
    object-position: center top !important;
}

.team-doctor-content {
    padding: 26px 24px 28px !important;
}

.team-doctor-specialty {
    margin: 0 0 12px !important;

    color: #a16a4f !important;

    font-size: 18px !important;
    font-weight: 500 !important;
    line-height: 1.45 !important;
}

.team-doctor-content h3 {
    margin: 0 0 16px !important;

    color: #56493d !important;

    font-family:
        Baskerville,
        "Palatino Linotype",
        Palatino,
        Georgia,
        serif !important;

    font-size: 2.05rem !important;
    font-weight: 400 !important;
    line-height: 1.06 !important;
}

.team-doctor-content > p:not(.team-doctor-specialty) {
    margin: 0 !important;

    color: #6a5c50 !important;

    font-size: 18px !important;
    line-height: 1.7 !important;
}

.team-text-link {
    margin-top: 16px !important;
    width: fit-content !important;

    color: #a06449 !important;

    font-size: 18px !important;
    font-weight: 600 !important;
}


/* =========================================================
   PRAXISTEAM
========================================================= */

.practice-team-section {
    padding: 105px 0 !important;

    background-color: #d8efb3 !important;
    background-image:
        linear-gradient(
            rgba(225, 249, 207, 0.24),
            rgba(183, 237, 211, 0.18)
        ),
        url("../images/Drkellenbachhintergrund.jpg") !important;

    background-size:
        cover,
        cover !important;

    background-position:
        center,
        center 68% !important;
}

.practice-team-grid {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(165px, 220px)) !important;
    justify-content: center !important;
    gap: 24px !important;
}

.staff-card {
    display: flex !important;
    flex-direction: column !important;

    max-width: 220px !important;
    width: 100% !important;
    margin: 0 auto !important;

    overflow: hidden !important;

    background: rgba(255, 253, 239, 0.94) !important;

    border: 1px solid rgba(96, 72, 43, 0.10) !important;
    border-radius: 22px !important;

    box-shadow: 0 12px 30px rgba(78, 57, 35, 0.08) !important;
}

.staff-photo {
    aspect-ratio: 1 / 1.06 !important;
    min-height: auto !important;
    overflow: hidden !important;
}

.staff-photo img {
    display: block !important;
    width: 100% !important;
    height: 100% !important;

    object-fit: cover !important;
    object-position: center top !important;
}

.staff-card h3 {
    min-height: 92px !important;
    margin: 0 !important;

    display: flex !important;
    align-items: center !important;

    padding: 18px 18px 20px !important;

    color: #56493d !important;

    font-family:
        Baskerville,
        "Palatino Linotype",
        Palatino,
        Georgia,
        serif !important;

    font-size: 1.28rem !important;
    font-weight: 400 !important;
    line-height: 1.05 !important;
    letter-spacing: -0.01em !important;
}


/* =========================================================
   CTA UNTEN – HINTERGRUND WIE STARTSEITE
========================================================= */

.contact-cta {
    background-color: #f2df72 !important;
    background-image:
        linear-gradient(
            90deg,
            rgba(245, 219, 103, .52),
            rgba(214, 240, 168, .36),
            rgba(181, 237, 205, .42)
        ),
        url("../images/Drkellenbachhintergrund.jpg") !important;

    background-size:
        cover,
        cover !important;

    background-position:
        center,
        center 58% !important;
}


/* =========================================================
   MOBIL / TABLET
========================================================= */

@media (max-width: 1100px) {

    .team-doctors-grid {
        grid-template-columns: repeat(2, minmax(260px, 1fr)) !important;
    }

    .practice-team-grid {
        grid-template-columns: repeat(3, minmax(160px, 220px)) !important;
    }

}

@media (max-width: 820px) {

    .team-hero-heading,
    .team-section-heading,
    .practice-team-heading {
        grid-template-columns: 1fr !important;
        gap: 24px !important;
    }

    .team-doctors-grid {
        grid-template-columns: 1fr !important;
    }

    .team-doctor-card {
        max-width: 430px !important;
        margin: 0 auto !important;
    }

    .practice-team-grid {
        grid-template-columns: repeat(2, minmax(150px, 1fr)) !important;
    }

}

@media (max-width: 520px) {

    .team-hero {
        padding: 72px 0 76px !important;
    }

    .team-group-photo {
        padding: 12px !important;
        border-radius: 20px !important;
    }

    .team-group-photo img {
        border-radius: 16px !important;
    }

    .practice-team-grid {
        grid-template-columns: repeat(2, minmax(135px, 1fr)) !important;
        gap: 16px !important;
    }

    .staff-card {
        max-width: none !important;
        border-radius: 18px !important;
    }

    .staff-card h3 {
        min-height: 78px !important;
        padding: 14px 14px 16px !important;
        font-size: 1.06rem !important;
    }

    .team-doctor-content h3 {
        font-size: 1.8rem !important;
    }

}


/* =========================================================
   STARTSEITE – ALLE FOTOS ABGERUNDET
========================================================= */

.home-page main img {
    border-radius: 24px !important;
}


/* Arztfotos */

.home-page .doctor-card,
.home-page .doctor-card-image,
.home-page .doctor-card img {
    border-radius: 24px !important;
}

.home-page .doctor-card {
    overflow: hidden !important;
}

.home-page .doctor-card img {
    display: block !important;
    width: 100% !important;
}


/* Praxis-/Team-/Showcase-Bilder */

.home-page .practice-image,
.home-page .practice-image img,
.home-page .team-image,
.home-page .team-image img,
.home-page .showcase-image,
.home-page .showcase-image img,
.home-page .feature-image,
.home-page .feature-image img {
    border-radius: 24px !important;
    overflow: hidden !important;
}


/* Logo und kleine Icons NICHT abrunden */

.home-page .practice-logo img,
.home-page header img,
.home-page .icon img {
    border-radius: 0 !important;
}


/* Mobil etwas kleinere Rundung */

@media (max-width: 700px) {

    .home-page main img,
    .home-page .doctor-card,
    .home-page .doctor-card-image,
    .home-page .doctor-card img,
    .home-page .practice-image,
    .home-page .practice-image img,
    .home-page .team-image,
    .home-page .team-image img,
    .home-page .showcase-image,
    .home-page .showcase-image img {
        border-radius: 18px !important;
    }

}

