* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

:root {
    --primary-color: #4A3B33;
    /* Warmes Espresso – Text & UI */
    --secondary-color: #8C6E59;
    /* Rosé-Bronze */
    --accent-color: #D9A441;
    /* Venus-Gold */
    --accent-dark: #B07E2B;
    --text-color: #4A3B33;
    --text-muted: #8E7C70;
    --bg-light: #FFFAF8;
    /* Warmes Rosé-Weiß */
    --bg-secondary: #F7E9E6;
    /* Blush */
    --white: #ffffff;
    --gold: #D9A441;
    --gold-light: #EFCE86;
    --gold-dark: #B07E2B;
    --rose: #E8B4AE;
    --rose-deep: #C98B84;
    --gold-gradient: linear-gradient(135deg, #B07E2B 0%, #EFCE86 50%, #B07E2B 100%);
    --elegant-gradient: linear-gradient(135deg, #EFCE86 0%, #F7E9E6 100%);
    --marble-bg: linear-gradient(rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.96)), url('https://www.transparenttextures.com/patterns/marble-similar.png');
    --shadow: 0 10px 40px rgba(74, 59, 51, 0.07);
    --transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    /* Ein Regler fuer die Sichtbarkeit aller Deko-Blaetter. 1 = wie urspruenglich
       entworfen, hoeher = kraeftiger. Hier bewusst hochgedreht, weil die
       Blaetter bei 5-11 % praktisch unsichtbar waren. */
    --leaf-strength: 2.4;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-color);
    background-color: var(--bg-light);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
}

h1,
h2,
h3,
.script-font {
    font-family: 'Playfair Display', serif;
    letter-spacing: -0.01em;
    position: relative;
    overflow: hidden;
}

.reveal-text span {
    display: inline-block;
    animation: revealUp 1.2s cubic-bezier(0.77, 0, 0.175, 1) forwards;
    transform: translateY(100%);
}

@keyframes revealUp {
    0% {
        transform: translateY(100%);
    }

    100% {
        transform: translateY(0);
    }
}

/* Bokeh Effect */
.bokeh-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
    background: transparent;
}

.bokeh-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.15;
    animation: float-bokeh 25s infinite linear;
}

.orb-1 {
    width: 400px;
    height: 400px;
    background: var(--secondary-color);
    top: -10%;
    left: -10%;
    animation-duration: 35s;
}

.orb-2 {
    width: 350px;
    height: 350px;
    background: var(--accent-color);
    bottom: -5%;
    right: -5%;
    animation-duration: 45s;
    animation-delay: -5s;
}

.orb-3 {
    width: 300px;
    height: 300px;
    background: var(--primary-color);
    top: 40%;
    left: 50%;
    animation-duration: 40s;
    animation-delay: -10s;
}

.orb-4 {
    width: 250px;
    height: 250px;
    background: var(--bg-secondary);
    bottom: 30%;
    left: 10%;
    animation-duration: 30s;
    animation-delay: -15s;
}

@keyframes float-bokeh {
    0% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(100px, 150px) scale(1.1);
    }

    66% {
        transform: translate(-100px, 50px) scale(0.9);
    }

    100% {
        transform: translate(0, 0) scale(1);
    }
}

@keyframes float-soft {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

@keyframes shimmer-premium {
    to {
        background-position: 200% center;
    }
}

@keyframes blur-in {
    from {
        filter: blur(10px);
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        filter: blur(0);
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes mask-reveal-side {
    from {
        clip-path: inset(0 100% 0 0);
    }

    to {
        clip-path: inset(0 0 0 0);
    }
}

.shimmer-text {
    background: linear-gradient(to right, var(--gold-dark) 0%, var(--gold-light) 50%, var(--gold-dark) 100%);
    background-size: 200% auto;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmer-premium 4s linear infinite;
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
}

.btn {
    display: inline-block;
    padding: 16px 36px;
    border-radius: 4px;
    /* More modern than round for luxury */
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    text-align: center;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white);
    box-shadow: 0 10px 20px rgba(91, 74, 62, 0.15);
}

.btn-primary:hover {
    transform: translateY(-2px);
    background: var(--secondary-color);
    box-shadow: 0 15px 30px rgba(91, 74, 62, 0.2);
}

.btn-elegant {
    background: var(--elegant-gradient);
    color: var(--primary-color);
    box-shadow: 0 10px 20px rgba(203, 191, 175, 0.2);
}

.btn-elegant:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(203, 191, 175, 0.3);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
}

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

/* Header & Nav */
.top-bar {
    background: var(--bg-secondary);
    color: var(--primary-color);
    padding: 12px 0;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-right {
    display: flex;
    align-items: center;
}

@media (max-width: 768px) {
    .top-bar-text {
        font-size: 0.65rem;
    }

    .top-bar-link {
        font-size: 0.65rem;
        margin-left: 10px !important;
    }
}

.top-bar a {
    color: inherit;
    text-decoration: none;
    margin-left: 20px;
    transition: var(--transition);
}

/* Base Navigation Styles */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    text-decoration: none;
    color: var(--primary-color);
}

.logo-text {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    font-family: 'Playfair Display', serif;
}

.nav-links {
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--secondary-color);
}

#bookingBtn {
    color: var(--white) !important;
}

#bookingBtn:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

.nav-booking-wrapper {
    position: relative;
    display: inline-block;
}

.booking-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    min-width: 200px;
    box-shadow: var(--shadow);
    border-radius: 4px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    z-index: 1001;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.booking-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(5px);
}

.dropdown-item {
    display: block;
    padding: 12px 20px;
    color: var(--primary-color);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    transition: var(--transition);
}

.dropdown-item:hover {
    background: var(--bg-secondary);
    color: var(--secondary-color);
}

/* Header & Layers */
header {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

.nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(45, 37, 32, 0.7);
    backdrop-filter: blur(8px);
    z-index: 1500;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

.menu-toggle {
    display: none;
    font-size: 1.8rem;
    color: var(--primary-color);
    cursor: pointer;
    z-index: 2005;
}

.mobile-nav {
    display: none;
}

/* Mobile Media Queries */
@media (max-width: 991px) {
    header {
        z-index: 2100;
        backdrop-filter: none !important;
        /* Fix for Safari clipping fixed children */
        -webkit-backdrop-filter: none !important;
        background: rgba(255, 255, 255, 1) !important;
        /* Solid background on mobile */
    }

    .menu-toggle {
        display: block;
        position: relative;
        z-index: 2200;
    }

    .desktop-only {
        display: none !important;
    }

    .mobile-nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: #FFFAF8;
        display: flex !important;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        gap: 25px;
        padding: 120px 40px 40px;
        z-index: 2000;
        transform: translateX(100%);
        transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        visibility: hidden;
    }

    .mobile-nav.active {
        transform: translateX(0);
        visibility: visible;
    }

    .mobile-nav a {
        font-size: 1.4rem !important;
        color: #4A3B33 !important;
        font-weight: 600 !important;
        text-decoration: none;
        width: 100%;
        text-align: center;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        display: block;
    }

    .mobile-booking-options {
        margin-top: 20px;
        width: 100%;
        text-align: center;
        border-top: 1px solid rgba(91, 74, 62, 0.1);
        padding-top: 20px;
    }

    .mobile-booking-label {
        display: block;
        font-size: 0.8rem;
        color: var(--secondary-color);
        margin-bottom: 15px;
        text-transform: uppercase;
        letter-spacing: 0.1em;
    }

    .mobile-nav .mobile-booking-item {
        background: var(--primary-color);
        color: #ffffff !important;
        padding: 14px;
        margin-bottom: 12px;
        border-radius: 2px;
        font-size: 1rem !important;
        display: block;
    }

    .booking-dropdown {
        position: static !important;
        /* Don't float on mobile menu */
        width: 100%;
        box-shadow: none;
        background: rgba(0, 0, 0, 0.03);
        margin-top: 10px;
        opacity: 1 !important;
        visibility: visible !important;
        display: none;
        transform: none !important;
    }

    .booking-dropdown.active {
        display: block;
    }
}

/* Hero Section */
.hero {
    padding: 80px 0;
    background: radial-gradient(circle at top right, var(--bg-secondary) 0%, var(--bg-light) 70%);
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 40px;
}

.hero-content h1 {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.hero-content h1 span {
    color: var(--secondary-color);
    font-style: italic;
    font-weight: 400;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 50px;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.hero-booking-buttons {
    margin-bottom: 18px;
    flex-wrap: wrap;
}

.btn-booking {
    background: linear-gradient(135deg, #B07E2B 0%, #E0B65C 100%);
    color: var(--white);
    box-shadow: 0 10px 20px rgba(176, 126, 43, 0.28);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-booking i {
    font-size: 1rem;
}

.btn-booking:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, #96691F 0%, #C99433 100%);
    box-shadow: 0 15px 30px rgba(176, 126, 43, 0.40);
    color: var(--white);
}

.hero-image-wrapper {
    position: relative;
}

.hero-image-wrapper img {
    max-width: 100%;
    border-radius: 2px;
    box-shadow: 40px 40px 0px var(--bg-secondary);
}

/* Locations */
.locations {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header h2 {
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    margin-bottom: 15px;
    color: var(--primary-color);
    line-height: 1.2;
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.location-card {
    background: var(--white);
    border-radius: 0;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.location-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(91, 74, 62, 0.1);
}

.location-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.location-info {
    padding: 40px;
}

.location-info h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.location-info p {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--text-muted);
}

.location-info i {
    width: 20px;
    color: var(--secondary-color);
}

.opening-hours {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #efefef;
}

/* Services */
.services {
    padding: 150px 0;
    background: var(--bg-secondary);
}

.service-accordion {
    max-width: 900px;
    margin: 0 auto;
}

.accordion-item {
    background: var(--white);
    margin-bottom: 20px;
    border-radius: 0;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.accordion-header {
    padding: 30px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.accordion-header h3 {
    margin: 0;
    font-size: 1.3rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--primary-color);
}

.accordion-content {
    padding: 0 40px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.accordion-item.active .accordion-content {
    padding: 0 40px 40px 40px;
    max-height: 2000px;
}

.service-item {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid #f5f5f5;
    font-weight: 500;
}

.service-price {
    font-weight: 700;
    color: var(--primary-color);
}

/* Gallery */
.gallery {
    padding: 150px 0;
    background: var(--white);
}

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

.gallery-item {
    aspect-ratio: 4/5;
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* Footer */
footer {
    background: #2A211C;
    /* Darker version of espresso */
    color: var(--white);
    padding: 60px 0 40px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-logo .logo-text {
    color: var(--white);
    margin-bottom: 20px;
}

.footer-links h4 {
    margin-bottom: 30px;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.9rem;
    color: var(--accent-color);
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 15px;
}

.footer-links a {
    color: #AD9B8E;
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
    display: block;
}

.footer-links a i {
    margin-right: 10px;
    width: 15px;
    color: var(--accent-color);
}

.footer-links a:hover {
    color: var(--white);
    transform: translateX(5px);
}

.footer-social-icons {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.footer-social-icons a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--white);
    font-size: 1.1rem;
    transition: var(--transition);
}

.footer-social-icons a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer-contact-block .location-name,
.footer-address .location-name {
    display: block;
    color: var(--white);
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    margin-bottom: 12px;
}

.footer-contact-block a {
    margin-bottom: 8px;
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.8rem;
    color: #666;
    letter-spacing: 0.05em;
}

/* Responsive */
@media (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }

    .hero-content h1 {
        font-size: 3.5rem;
    }

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

@media (max-width: 768px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-content h1 {
        font-size: 3rem;
    }

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

@media (max-width: 991px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 480px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

/* Animations & Reveal Effects */
.reveal-text {
    position: relative;
    overflow: hidden;
}

[data-aos="reveal-up"] {
    opacity: 0;
    transform: translateY(30px);
    transition-property: transform, opacity;
}

[data-aos="reveal-up"].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

.hero-content h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: 30px;
    perspective: 1000px;
}

.hero-main-title {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    color: var(--primary-color);
    font-weight: 600;
    font-size: clamp(2.2rem, 5.5vw, 4rem);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 5px;
    animation: mask-reveal-side 1.5s cubic-bezier(0.77, 0, 0.175, 1) forwards, shimmer-premium 4s linear infinite 1.5s;
}

.hero-sub-title {
    display: block;
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: clamp(1.8rem, 4.5vw, 3.5rem);
    font-weight: 400;
    color: var(--secondary-color);
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: blur-in 2s cubic-bezier(0.23, 1, 0.32, 1) forwards, float-soft 6s ease-in-out infinite;
    animation-delay: 0.5s, 2s;
    opacity: 0;
}

.hero-collage {
    position: relative;
    width: 100%;
    height: clamp(350px, 50vh, 550px);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
}

.collage-img {
    position: absolute;
    border-radius: 4px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    overflow: hidden;
    background: white;
}

.collage-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@keyframes swapLayers1 {

    0%,
    40% {
        z-index: 2;
        transform: translate(-15%, -10%) rotate(-2deg);
        opacity: 1;
    }

    50% {
        z-index: 1;
        transform: translate(0, 0) scale(0.9);
        opacity: 0.7;
    }

    60%,
    100% {
        z-index: 1;
        transform: translate(25%, 15%) rotate(3deg);
        opacity: 0.9;
    }
}

@keyframes swapLayers2 {

    0%,
    40% {
        z-index: 1;
        transform: translate(25%, 15%) rotate(3deg);
        opacity: 0.9;
    }

    50% {
        z-index: 2;
        transform: translate(0, 0) scale(1.1);
        opacity: 1;
    }

    60%,
    100% {
        z-index: 2;
        transform: translate(-15%, -10%) rotate(-2deg);
        opacity: 1;
    }
}

.img-1 {
    width: clamp(180px, 30vw, 320px);
    height: clamp(260px, 45vw, 480px);
    border: clamp(4px, 1vw, 8px) solid white;
    animation: swapLayers1 8s ease-in-out infinite;
}

.img-2 {
    width: clamp(160px, 28vw, 300px);
    height: clamp(240px, 40vw, 420px);
    border: clamp(4px, 1vw, 8px) solid white;
    animation: swapLayers2 8s ease-in-out infinite;
}

.collage-img:hover {
    z-index: 10;
    transform: translate(0, 0) scale(1.05);
}

@keyframes textAppear {
    from {
        opacity: 0;
        transform: rotateX(-40deg) translateY(30px);
    }

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

.hero-badge {
    position: absolute;
    bottom: 20px;
    right: -20px;
    background: var(--white);
    padding: 25px;
    box-shadow: var(--shadow);
    border: 1px solid var(--bg-secondary);
    border-radius: 2px;
    z-index: 10;
    animation: float 6s ease-in-out infinite;
}

.badge-title {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--primary-color);
}

.badge-subtitle {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-muted);
    font-weight: 600;
}

/* About Section */
.about {
    padding: 80px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    padding: 60px;
    border-radius: 4px;
    box-shadow: var(--shadow);
}

.owner-image {
    width: 100%;
    max-width: 450px;
    display: block;
    margin: 0 auto;
    border-radius: 2px;
    filter: grayscale(10%) contrast(1.05);
}

.owner-title {
    text-transform: uppercase;
    letter-spacing: 0.25em;
    font-size: 0.85rem;
    color: var(--secondary-color);
    font-weight: 700;
}

.owner-headline {
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    margin: 25px 0;
    color: var(--primary-color);
    line-height: 1.2;
}

.owner-greeting {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    color: var(--text-color);
    margin-bottom: 35px;
    font-weight: 500;
}

.owner-name-italic {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 700;
}

.owner-text-wrapper {
    color: var(--text-muted);
    line-height: 2;
    font-size: 1.15rem;
}

.owner-quote {
    margin-bottom: 30px;
    font-style: italic;
    border-left: 3px solid var(--accent-color);
    padding-left: 20px;
}

.owner-desc {
    margin-bottom: 30px;
}

@media (max-width: 768px) {
    .about {
        padding: 80px 0;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 30px;
        text-align: center;
    }

    .about-image {
        display: flex;
        justify-content: center;
    }

    .owner-image {
        max-width: 280px;
        height: auto;
    }

    .owner-headline {
        margin: 20px 0;
    }
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background: var(--bg-light);
}

/* Testimonial Slider */
.testimonials-slider {
    position: relative;
    max-width: 800px;
    margin: 60px auto 0;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-card {
    position: absolute;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: all 0.8s ease;
    padding: 60px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.testimonial-card.active {
    opacity: 1;
    visibility: visible;
    position: relative;
}

.testimonial-stars {
    color: #D4AF37;
    /* Gold */
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.testimonial-text {
    font-style: italic;
    color: var(--text-color);
    line-height: 1.8;
    margin-bottom: 30px;
    flex-grow: 1;
    font-size: 1rem;
}

.testimonial-author {
    justify-content: center;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 15px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding-top: 20px;
}

.author-avatar {
    width: 45px;
    height: 45px;
    background: var(--elegant-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-weight: 700;
    font-family: 'Playfair Display', serif;
}

.author-info h4 {
    font-size: 1rem;
    color: var(--primary-color);
    margin: 0;
}

.author-info span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.quote-icon {
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 2.5rem;
    color: rgba(91, 74, 62, 0.05);
    pointer-events: none;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 40px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--bg-secondary);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: var(--primary-color);
    transform: scale(1.3);
}

@media (max-width: 768px) {
    .testimonials {
        padding: 80px 0;
    }

    .testimonial-card {
        padding: 40px 20px;
    }

    .testimonials-slider {
        min-height: 500px;
    }
}

.whatsapp-float-wrapper {
    position: fixed;
    bottom: 40px;
    right: 40px;
    z-index: 2000;
}

.whatsapp-main-btn {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 10px 25px rgba(91, 74, 62, 0.3);
    cursor: pointer;
    transition: var(--transition);
}

.whatsapp-main-btn:hover {
    transform: scale(1.1);
}

.whatsapp-main-btn .fa-calendar-check {
    font-size: 24px;
}

.whatsapp-menu {
    position: absolute;
    bottom: 80px;
    right: 0;
    background: white;
    padding: 15px;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    display: none;
    width: 250px;
    animation: slideUp 0.3s ease-out;
}

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

.whatsapp-option {
    display: block;
    padding: 12px 15px;
    text-decoration: none;
    color: var(--primary-color);
    border-radius: 8px;
    transition: var(--transition);
    margin-bottom: 5px;
}

.whatsapp-option:hover {
    background: var(--bg-secondary);
}

.whatsapp-option strong {
    display: block;
    font-size: 0.9rem;
}

.whatsapp-option span {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.booking-option {
    background: var(--elegant-gradient);
    border: 1px solid var(--accent-color);
}

.booking-option:hover {
    background: var(--primary-color);
}

.booking-option:hover strong,
.booking-option:hover span {
    color: var(--white);
}

.booking-option strong i,
.whatsapp-option strong i {
    margin-right: 6px;
}

.float-menu-divider {
    height: 1px;
    background: var(--bg-secondary);
    margin: 10px 0;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

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

/* Marble Card Effect */
.marble-card {
    background: white;
    background-image: var(--marble-bg);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

@media (max-width: 480px) {
    .whatsapp-float-wrapper {
        bottom: 20px;
        right: 20px;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
}

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

    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 50px;
    }

    .hero-content {
        order: 2;
    }

    .hero-collage {
        order: 1;
        height: 350px;
        margin-top: 0;
    }

    .hero-main-title {
        font-size: 2.2rem;
        letter-spacing: 0.1em;
        white-space: normal;
    }

    .hero-sub-title {
        font-size: 1.8rem;
        white-space: normal;
    }

    .hero-buttons {
        justify-content: center;
        flex-direction: column;
        gap: 15px;
    }

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

    .img-1 {
        width: 180px;
        height: 270px;
    }

    .img-2 {
        width: 160px;
        height: 240px;
    }

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

/* Lightbox Modal */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(45, 37, 32, 0.95);
    z-index: 3000;
    display: none;
    justify-content: center;
    align-items: center;
    cursor: zoom-out;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    border: 5px solid white;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
    border-radius: 2px;
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    color: white;
    font-size: 3rem;
    font-weight: 300;
    cursor: pointer;
    line-height: 1;
}
/* ==========================================================================
   Venus Nails & Beauty – projektspezifische Ergänzungen
   ========================================================================== */

/* Logo als Bild statt Schriftzug */
.logo {
    display: flex;
    align-items: center;
    line-height: 0;
}

.logo-image {
    height: 54px;
    width: auto;
    display: block;
    transition: var(--transition);
}

.logo:hover .logo-image {
    transform: scale(1.03);
}

.footer-logo-image {
    height: 82px;
    width: auto;
    display: block;
}

/* Preisliste: Umschalter Viersen / Mönchengladbach */
.price-switch {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.price-switch-btn {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 14px 34px;
    border: 1px solid var(--gold-dark);
    background: transparent;
    color: var(--primary-color);
    cursor: pointer;
    border-radius: 2px;
    transition: var(--transition);
}

.price-switch-btn:hover {
    background: var(--bg-secondary);
}

.price-switch-btn.active {
    background: linear-gradient(135deg, #B07E2B 0%, #E0B65C 100%);
    border-color: transparent;
    color: var(--white);
    box-shadow: 0 10px 20px rgba(176, 126, 43, 0.28);
}

.price-panel {
    display: none;
}

.price-panel.active {
    display: block;
}

/* Hinweiszeile innerhalb einer Preiskategorie */
.service-note {
    font-size: 0.82rem;
    line-height: 1.6;
    color: var(--text-muted);
    font-style: italic;
    padding: 0 0 14px;
    margin-bottom: 6px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

/* Social-Icons in der Standortkarte */
.location-social {
    display: flex;
    gap: 14px;
    margin-top: 16px;
}

.location-social a {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--bg-secondary);
    border-radius: 50%;
    color: var(--gold-dark);
    font-size: 1rem;
    transition: var(--transition);
}

.location-social a:hover {
    background: var(--gold-gradient);
    border-color: transparent;
    color: var(--white);
}

/* Goldakzente */
.top-bar-text i,
.top-bar-link i,
.location-info i,
.footer-contact-block i,
.opening-hours strong {
    color: var(--gold-dark);
}

.accordion-item.active .accordion-header {
    border-left: 3px solid var(--gold);
}

.hero-badge {
    border: 1px solid var(--gold-light);
}

.author-avatar {
    background: var(--gold-gradient);
    color: var(--white);
}

/* Top-Bar auf kleinen Screens entschlacken */
@media (max-width: 640px) {
    .top-bar-text {
        display: none;
    }

    .top-bar .container {
        justify-content: center;
    }

    .top-bar-right {
        display: flex;
        gap: 18px;
    }

    .top-bar a {
        margin-left: 0 !important;
    }
}

@media (max-width: 991px) {
    .logo-image {
        height: 44px;
    }
}

@media (max-width: 480px) {
    .logo-image {
        height: 38px;
    }

    .footer-logo-image {
        height: 58px;
    }

    .price-switch-btn {
        flex: 1 1 auto;
        padding: 13px 18px;
        font-size: 0.75rem;
    }
}

/* Doppelpreise ("32 € / 34 €") duerfen nicht umbrechen */
.service-price {
    white-space: nowrap;
    padding-left: 14px;
}

/* ==========================================================================
   Neon & Tropen – Handschrift des Ladens (Leuchtreklame + Pflanzen)
   Alle Bewegungen sind dekorativ und werden bei prefers-reduced-motion
   abgeschaltet. Die Blaetter liegen hinter dem Inhalt und fangen keine Klicks.
   ========================================================================== */

.hero,
.services,
.gallery,
.testimonials {
    position: relative;
    overflow-x: clip;
}

.hero > .container,
.services > .container,
.gallery > .container,
.testimonials > .container {
    position: relative;
    z-index: 1;
}


/* --- Neon: Leuchten statt harter Schatten ------------------------------- */

/* drop-shadow statt text-shadow: die Ueberschriften sind per
   background-clip:text gefuellt, ein text-shadow wuerde darunter verschwinden. */
.logo-image {
    filter: drop-shadow(0 0 6px rgba(233, 138, 148, 0.35));
    animation: neonBreathe 5.5s ease-in-out infinite;
}

.section-header h2.shimmer-text {
    filter: drop-shadow(0 0 10px rgba(233, 138, 148, 0.30));
}

/* (Der Hero-Titel ist jetzt der Wortwechsler weiter unten.) */

@keyframes neonBreathe {
    0%, 100% { filter: drop-shadow(0 0 8px rgba(233, 138, 148, 0.28)); }
    50%      { filter: drop-shadow(0 0 18px rgba(233, 138, 148, 0.50)); }
}

/* Anflackern wie eine Leuchtroehre, die angeht */
@keyframes neonStartup {
    0%   { opacity: 0.25; filter: drop-shadow(0 0 0 rgba(233, 138, 148, 0)); }
    6%   { opacity: 1;    filter: drop-shadow(0 0 16px rgba(233, 138, 148, 0.55)); }
    10%  { opacity: 0.3;  filter: drop-shadow(0 0 0 rgba(233, 138, 148, 0)); }
    16%  { opacity: 1;    filter: drop-shadow(0 0 14px rgba(233, 138, 148, 0.5)); }
    20%  { opacity: 0.45; filter: drop-shadow(0 0 2px rgba(233, 138, 148, 0.1)); }
    26%  { opacity: 1;    filter: drop-shadow(0 0 18px rgba(233, 138, 148, 0.6)); }
    34%  { opacity: 0.7;  filter: drop-shadow(0 0 6px rgba(233, 138, 148, 0.25)); }
    40%, 100% { opacity: 1; filter: drop-shadow(0 0 14px rgba(233, 138, 148, 0.4)); }
}

/* Buchungsknopf: leichter Leuchtrand beim Darueberfahren */
.btn-booking:hover,
.price-switch-btn.active {
    filter: drop-shadow(0 0 10px rgba(217, 164, 65, 0.45));
}

/* Standort-Umschalter bekommt beim Wechsel einen kurzen Impuls */
.price-panel.active {
    animation: panelIn 0.45s ease-out;
}

@keyframes panelIn {
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Wer Bewegung reduziert haben will, bekommt die ruhige Fassung. */
@media (prefers-reduced-motion: reduce) {

    .hero::after,
    .services::before,
    .gallery::after,
    .testimonials::before,
    .logo-image,
    .hero-main-title,
    .price-panel.active {
        animation: none !important;
    }

    .hero-main-title {
        opacity: 1;
        filter: drop-shadow(0 0 12px rgba(233, 138, 148, 0.35));
    }
}

/* Auf kleinen Screens stoeren grosse Blaetter mehr als sie bringen */
@media (max-width: 768px) {

    .gallery::after,
    .testimonials::before {
        display: none;
    }

    .hero::after {
        width: 230px;
        height: 250px;
        top: -30px;
        right: -80px;
    }

    .services::before {
        width: 190px;
        height: 300px;
        left: -70px;
        bottom: -70px;
    }
}

/* --- Echte Leuchtreklame im dunklen Footer ------------------------------
   Auf dem hellen Seitenhintergrund bleibt Neon zwangslaeufig zurueckhaltend.
   Der Footer ist dunkel, hier darf der Schriftzug wirklich leuchten. */

footer {
    position: relative;
    overflow: hidden;
}

footer .container {
    position: relative;
    z-index: 1;
}

.footer-logo-image {
    filter:
        drop-shadow(0 0 4px rgba(255, 182, 193, 0.9))
        drop-shadow(0 0 12px rgba(233, 138, 148, 0.75))
        drop-shadow(0 0 30px rgba(216, 90, 130, 0.55));
    animation: neonSign 7s linear infinite;
}

/* Leichtes, unregelmaessiges Zucken wie bei einer echten Roehre */
@keyframes neonSign {
    0%, 42%, 44%, 58%, 60%, 100% {
        filter:
            drop-shadow(0 0 4px rgba(255, 182, 193, 0.9))
            drop-shadow(0 0 12px rgba(233, 138, 148, 0.75))
            drop-shadow(0 0 30px rgba(216, 90, 130, 0.55));
        opacity: 1;
    }
    43%, 59% {
        filter:
            drop-shadow(0 0 2px rgba(255, 182, 193, 0.4))
            drop-shadow(0 0 5px rgba(233, 138, 148, 0.25));
        opacity: 0.72;
    }
    72% {
        filter:
            drop-shadow(0 0 6px rgba(255, 182, 193, 1))
            drop-shadow(0 0 18px rgba(233, 138, 148, 0.9))
            drop-shadow(0 0 42px rgba(216, 90, 130, 0.7));
        opacity: 1;
    }
}

/* Leuchtende Trennlinie ueber der Fusszeile */
.footer-bottom {
    position: relative;
}

.footer-bottom::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: min(420px, 70%);
    height: 1px;
    background: linear-gradient(90deg,
        rgba(233, 138, 148, 0) 0%,
        rgba(233, 138, 148, 0.75) 50%,
        rgba(233, 138, 148, 0) 100%);
    box-shadow: 0 0 10px rgba(233, 138, 148, 0.6);
    animation: neonBreathe 5.5s ease-in-out infinite;
}

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

    .footer-logo-image,
    .footer-bottom::before {
        animation: none !important;
    }
}

/* --- Hero: Wortwechsler im Neon-Look ------------------------------------ */

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip-path: inset(50%);
    white-space: nowrap;
    border: 0;
}

.hero-headline {
    display: block;
}

.hero-lead {
    display: block;
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 400;
    font-size: clamp(1.6rem, 3.4vw, 2.6rem);
    color: var(--text-muted);
    letter-spacing: 0.01em;
    margin-bottom: 4px;
    animation: mask-reveal-side 1.4s cubic-bezier(0.77, 0, 0.175, 1) forwards;
}

/* Alle Woerter liegen in derselben Rasterzelle. Dadurch ist die Zeile so
   breit und hoch wie das laengste Wort und springt beim Wechsel nicht. */
.hero-words {
    display: grid;
    justify-items: start;
}

.hero-word {
    grid-area: 1 / 1;
    font-family: 'Poppins', 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: clamp(2.4rem, 6vw, 4.4rem);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    line-height: 1.1;
    background: linear-gradient(to right, var(--gold-dark) 0%, var(--gold-light) 50%, var(--gold-dark) 100%);
    background-size: 200% auto;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.45s ease;
    filter: drop-shadow(0 0 10px rgba(233, 138, 148, 0.30));
}

.hero-word.is-on {
    opacity: 1;
    visibility: visible;
    animation: shimmer-premium 4s linear infinite,
               neonBreathe 5.5s ease-in-out infinite;
}

/* Beim Umschalten kurz zucken wie eine Leuchtroehre, die die Schrift wechselt */
.hero-word.is-flicker {
    animation: wordFlicker 0.72s steps(1, end) 1,
               shimmer-premium 4s linear infinite;
}

@keyframes wordFlicker {
    0%   { opacity: 0.15; filter: drop-shadow(0 0 0 rgba(233, 138, 148, 0)); }
    14%  { opacity: 1;    filter: drop-shadow(0 0 16px rgba(233, 138, 148, 0.65)); }
    24%  { opacity: 0.3;  filter: drop-shadow(0 0 2px rgba(233, 138, 148, 0.1)); }
    38%  { opacity: 1;    filter: drop-shadow(0 0 20px rgba(233, 138, 148, 0.7)); }
    50%  { opacity: 0.55; filter: drop-shadow(0 0 6px rgba(233, 138, 148, 0.2)); }
    64%, 100% { opacity: 1; filter: drop-shadow(0 0 12px rgba(233, 138, 148, 0.4)); }
}

/* Das erste Wort leuchtet beim Laden einmal an */
.hero-word:first-child.is-on {
    animation: neonStartup 2.2s steps(1, end) 1 both,
               shimmer-premium 4s linear infinite 2.2s,
               neonBreathe 5.5s ease-in-out 2.2s infinite;
}

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

    .hero-lead,
    .hero-word,
    .hero-word.is-on,
    .hero-word:first-child.is-on {
        animation: none !important;
    }

    .hero-word.is-on {
        opacity: 1;
        visibility: visible;
        filter: drop-shadow(0 0 10px rgba(233, 138, 148, 0.3));
    }
}

/* --- Tropen-Deko: eigene Ebene pro Abschnitt ----------------------------
   Eigene Elemente statt ::before/::after, weil pro Abschnitt mehrere
   Blaetter gestapelt werden. Die Ebene faengt keine Klicks und liegt
   hinter dem Inhalt. */

.leaves {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.leaf {
    position: absolute;
    display: block;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    will-change: transform;
    transform-origin: 50% 100%;
}

.leaf--monstera-a, .leaf--monstera-b, .leaf--monstera-c,
.leaf--monstera-d, .leaf--monstera-e {
    background-image: url('img/leaf-monstera.svg');
}

.leaf--palm-a, .leaf--palm-b, .leaf--palm-c,
.leaf--palm-d, .leaf--palm-e {
    background-image: url('img/leaf-palm.svg');
}

.leaf--banana-a, .leaf--banana-b, .leaf--banana-c, .leaf--banana-d {
    background-image: url('img/leaf-banana.svg');
}

/* Hero – Zweiergruppe oben rechts, versetzt gestapelt */
.leaf--monstera-a { width: 380px; height: 420px; top: -70px;  right: -90px;  opacity: calc(0.11 * var(--leaf-strength)); --rot: 22deg;  animation: leafSway 19s ease-in-out infinite alternate; }
.leaf--banana-a   { width: 300px; height: 400px; top: 140px;  right: -140px; opacity: calc(0.08 * var(--leaf-strength)); --rot: -14deg; animation: leafSway 25s ease-in-out infinite alternate-reverse; }

/* Ueber uns – ruhig, damit der Text der Held bleibt */
.leaf--palm-a     { width: 230px; height: 360px; bottom: -90px; left: -80px;  opacity: calc(0.09 * var(--leaf-strength)); --rot: -26deg; animation: leafSway 23s ease-in-out infinite alternate; }
.leaf--monstera-b { width: 210px; height: 230px; top: 20px;    right: -70px; opacity: calc(0.07 * var(--leaf-strength)); --rot: 34deg;  animation: leafSway 29s ease-in-out infinite alternate-reverse; }

/* Standorte */
.leaf--banana-b   { width: 290px; height: 390px; top: -60px;   right: -110px; opacity: calc(0.09 * var(--leaf-strength)); --rot: 18deg;  animation: leafSway 21s ease-in-out infinite alternate; }
.leaf--palm-b     { width: 200px; height: 320px; bottom: -70px; left: -70px;  opacity: calc(0.07 * var(--leaf-strength)); --rot: -30deg; animation: leafSway 26s ease-in-out infinite alternate-reverse; }

/* Preise – auf dem Blush-Grund duerfen sie etwas kraeftiger sein */
.leaf--palm-c     { width: 300px; height: 470px; bottom: -130px; left: -95px; opacity: calc(0.10 * var(--leaf-strength)); --rot: -22deg; animation: leafSway 24s ease-in-out infinite alternate; }
.leaf--monstera-c { width: 260px; height: 290px; top: 60px;     right: -90px; opacity: calc(0.08 * var(--leaf-strength)); --rot: 28deg;  animation: leafSway 18s ease-in-out infinite alternate-reverse; }

/* Galerie – auf Weiss zurueckhaltender */
.leaf--monstera-d { width: 300px; height: 330px; top: 30px;     left: -120px; opacity: calc(0.06 * var(--leaf-strength)); --rot: -32deg; animation: leafSway 27s ease-in-out infinite alternate; }
.leaf--banana-c   { width: 240px; height: 320px; bottom: -80px; right: -90px; opacity: calc(0.05 * var(--leaf-strength)); --rot: 20deg;  animation: leafSway 31s ease-in-out infinite alternate-reverse; }

/* Bewertungen */
.leaf--palm-d     { width: 270px; height: 430px; top: 20px;     right: -100px; opacity: calc(0.09 * var(--leaf-strength)); --rot: 28deg;  animation: leafSway 21s ease-in-out infinite alternate; }
.leaf--banana-d   { width: 230px; height: 310px; bottom: -70px; left: -85px;   opacity: calc(0.07 * var(--leaf-strength)); --rot: -24deg; animation: leafSway 28s ease-in-out infinite alternate-reverse; }

/* Footer – auf Dunkel wirken sie als Schattenriss */
.leaf--palm-e     { width: 300px; height: 470px; bottom: -150px; right: -70px; opacity: calc(0.10 * var(--leaf-strength)); --rot: 16deg;  animation: leafSway 23s ease-in-out infinite alternate; }
.leaf--monstera-e { width: 240px; height: 265px; top: -50px;     left: -80px;  opacity: calc(0.07 * var(--leaf-strength)); --rot: -20deg; animation: leafSway 30s ease-in-out infinite alternate-reverse; }

/* Wiegen im Wind. --par kommt vom Parallax-Skript und ist ohne JS schlicht 0. */
@keyframes leafSway {
    from { transform: translateY(var(--par, 0px)) rotate(var(--rot, 0deg)); }
    to   { transform: translateY(calc(var(--par, 0px) - 14px)) rotate(calc(var(--rot, 0deg) + 3.5deg)); }
}

@media (max-width: 900px) {
    /* Auf schmalen Screens nur je ein Blatt, und kleiner. */
    .leaf--banana-a, .leaf--monstera-b, .leaf--palm-b,
    .leaf--monstera-c, .leaf--banana-c, .leaf--banana-d,
    .leaf--monstera-e {
        display: none;
    }

    .leaf--monstera-a { width: 200px; height: 220px; top: -20px; right: -70px; }
    .leaf--palm-a     { width: 150px; height: 235px; bottom: -50px; left: -55px; }
    .leaf--banana-b   { width: 170px; height: 230px; top: -30px; right: -70px; }
    .leaf--palm-c     { width: 180px; height: 280px; bottom: -70px; left: -60px; }
    .leaf--monstera-d { width: 180px; height: 200px; top: 20px; left: -80px; }
    .leaf--palm-d     { width: 160px; height: 255px; top: 10px; right: -65px; }
    .leaf--palm-e     { width: 190px; height: 300px; bottom: -90px; right: -50px; }
}

@media (prefers-reduced-motion: reduce) {
    .leaf {
        animation: none !important;
        transform: rotate(var(--rot, 0deg)) !important;
    }
}

/* Auf schmalen Screens ist der Hero zentriert – das Wechselwort muss mit.
   Diese Regel steht bewusst am Dateiende: sie hat dieselbe Spezifitaet wie
   die Grundregel weiter oben und gewinnt nur durch die Reihenfolge. */
@media (max-width: 768px) {
    .hero-words {
        justify-items: center;
    }
}

/* Der globale Reset setzt alle Margins auf 0 – die Absaetze im Inhabertext
   klebten dadurch aneinander. */
.owner-text-wrapper p + p {
    margin-top: 1.1em;
}

/* Schutz gegen verzerrte Bilder: Seit die Bilder width/height im HTML tragen
   (gegen Layout-Springen), wuerde ein Bild, dessen CSS nur die Breite setzt,
   auf die HTML-Hoehe gestreckt. `height: auto` stellt das Seitenverhaeltnis
   wieder her. Bilder mit absichtlich fester Hoehe (Galerie, Standortkarten,
   Hero-Collage, Logo) haben hoehere Spezifitaet und bleiben unberuehrt.
   Ohne diese Regel war das Inhaberbild auf 450x1100 statt 450x600 gestreckt. */
img {
    height: auto;
}

/* Zierzweig unter jeder Abschnitts-Ueberschrift.
   Eigenes Element statt Pseudo auf dem h2: die Ueberschriften sind per
   background-clip:text gefuellt, ein Pseudo-Element darin wuerde mitgefaerbt. */
.section-header::after {
    content: "";
    display: block;
    width: 220px;
    height: 34px;
    margin: 20px auto 0;
    background: url('img/leaf-ornament.svg') center / contain no-repeat;
    opacity: 0.75;
}

/* Im Hero und im Footer gibt es keine .section-header – dort passt der
   Zweig unter die Fusszeilen-Ueberschriften nicht, deshalb nur in Abschnitten. */
.footer-grid .section-header::after {
    display: none;
}

/* Fuenf zusaetzliche Blaetter – die Seite soll sichtbar bewachsen wirken. */
.leaf--palm-f, .leaf--palm-g          { background-image: url('img/leaf-palm.svg'); }
.leaf--banana-e, .leaf--banana-f      { background-image: url('img/leaf-banana.svg'); }
.leaf--monstera-f                     { background-image: url('img/leaf-monstera.svg'); }

.leaf--palm-f     { width: 210px; height: 330px; bottom: -110px; left: -60px;  opacity: calc(0.07 * var(--leaf-strength)); --rot: -34deg; animation: leafSway 26s ease-in-out infinite alternate; }
.leaf--banana-e   { width: 200px; height: 270px; top: -70px;     right: 140px; opacity: calc(0.05 * var(--leaf-strength)); --rot: 40deg;  animation: leafSway 30s ease-in-out infinite alternate-reverse; }
.leaf--palm-g     { width: 180px; height: 285px; top: -60px;     right: 60px;  opacity: calc(0.05 * var(--leaf-strength)); --rot: 14deg;  animation: leafSway 22s ease-in-out infinite alternate; }
.leaf--monstera-f { width: 200px; height: 220px; top: -40px;     left: 120px;  opacity: calc(0.05 * var(--leaf-strength)); --rot: -16deg; animation: leafSway 25s ease-in-out infinite alternate; }
.leaf--banana-f   { width: 190px; height: 255px; top: 40px;      right: 220px; opacity: calc(0.06 * var(--leaf-strength)); --rot: -28deg; animation: leafSway 27s ease-in-out infinite alternate-reverse; }

/* Zierzweig etwas kraeftiger */
.section-header::after {
    width: 168px;
    height: 44px;
    opacity: 0.85;
}

@media (max-width: 900px) {
    .leaf--palm-f, .leaf--banana-e, .leaf--palm-g,
    .leaf--monstera-f, .leaf--banana-f {
        display: none;
    }
}
