/* Canvas template: hide stray wpautop elements */
body.lb-canvas > p:empty,
body.lb-canvas > br {
    display: none;
    margin: 0;
    padding: 0;
    line-height: 0;
    font-size: 0;
}

/* ==========================================================================
   LovelyBeauty - Custom Stylesheet
   Beauty & Wellness Salon · Rose/Blush/Linen Palette
   ========================================================================== */

/* ==========================================================================
   Container & Layout
   ========================================================================== */
.lb-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ==========================================================================
   Navigation
   ========================================================================== */
.lb-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.25rem 0;
    transition: all 0.3s ease;
    background: transparent;
}

.lb-nav.scrolled {
    background: rgba(255, 251, 247, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 0.75rem 0;
    box-shadow: 0 1px 20px rgba(61, 43, 31, 0.06);
}

.lb-nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.lb-nav-brand {
    font-family: var(--ci-heading-font);
    font-size: 1.5rem;
    color: var(--lb-dark);
    text-decoration: none;
    font-style: italic;
}

.lb-nav-logo .custom-logo-link {
    display: flex;
    align-items: center;
}

.lb-nav-logo .custom-logo {
    height: 80px;
    width: auto;
    max-width: 400px;
    object-fit: contain;
}

.lb-nav-logo a {
    text-decoration: none;
}

.lb-nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.lb-nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--lb-dark);
    text-decoration: none;
    letter-spacing: 0.02em;
    transition: color 0.2s ease;
    position: relative;
}

.lb-nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--lb-rose-quartz);
    transition: width 0.3s ease;
}

.lb-nav-link:hover::after {
    width: 100%;
}

.lb-nav-link:hover {
    color: var(--lb-rose-quartz);
}

.lb-nav-cta {
    font-size: 0.85rem;
    font-weight: 500;
    color: #fff;
    background: var(--lb-rose-quartz);
    padding: 0.6rem 1.5rem;
    border-radius: 100px;
    text-decoration: none;
    transition: all 0.2s ease;
    letter-spacing: 0.02em;
}

.lb-nav-cta:hover {
    background: var(--lb-truffle);
    color: #fff;
    transform: translateY(-1px);
}

/* Navigation - Mobile Toggle */
.lb-nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.lb-nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--lb-dark);
    margin: 5px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.lb-nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.lb-nav-toggle.active span:nth-child(2) {
    opacity: 0;
}
.lb-nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.lb-mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 251, 247, 0.98);
    backdrop-filter: blur(20px);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.lb-mobile-menu.open {
    opacity: 1;
    visibility: visible;
}

.lb-mobile-menu-inner {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.lb-mobile-link {
    font-family: var(--ci-heading-font);
    font-size: 2rem;
    color: var(--lb-dark);
    text-decoration: none;
    font-style: italic;
    transition: color 0.2s ease;
}

.lb-mobile-link:hover {
    color: var(--lb-rose-quartz);
}

.lb-mobile-cta {
    display: inline-block;
    font-size: 1rem;
    font-weight: 500;
    color: #fff;
    background: var(--lb-rose-quartz);
    padding: 0.8rem 2rem;
    border-radius: 100px;
    text-decoration: none;
    margin-top: 1rem;
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.lb-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 0.8rem 2rem;
    border-radius: 100px;
    text-decoration: none;
    transition: all 0.25s ease;
    letter-spacing: 0.02em;
    cursor: pointer;
    border: none;
}

.lb-btn-primary {
    background: var(--lb-rose-quartz);
    color: #fff;
}

.lb-btn-primary:hover {
    background: var(--lb-truffle);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(201, 139, 139, 0.3);
}

.lb-btn-ghost {
    background: transparent;
    color: var(--lb-dark);
    border: 1.5px solid var(--lb-mushroom);
}

.lb-btn-ghost:hover {
    background: var(--lb-linen);
    color: var(--lb-dark);
}

.lb-btn-outline {
    background: transparent;
    color: var(--lb-rose-quartz);
    border: 1.5px solid var(--lb-rose-quartz);
}

.lb-btn-outline:hover {
    background: var(--lb-rose-quartz);
    color: #fff;
    transform: translateY(-2px);
}

.lb-btn-whatsapp {
    background: #25D366;
    color: #fff;
}

.lb-btn-whatsapp:hover {
    background: #1DA851;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
}

.lb-btn-whatsapp svg {
    width: 18px;
    height: 18px;
}

/* ==========================================================================
   Section Tags & Headers
   ========================================================================== */
.lb-section-tag {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--lb-rose-quartz);
    margin-bottom: 0.75rem;
}

.lb-section-title {
    font-family: var(--ci-heading-font);
    font-size: var(--ci-h2-size);
    color: var(--lb-dark);
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.lb-section-desc {
    color: var(--lb-truffle);
    font-size: 1.05rem;
    max-width: 600px;
    line-height: 1.7;
}

.lb-section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.lb-section-header .lb-section-desc {
    margin-left: auto;
    margin-right: auto;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.lb-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, var(--lb-warm-white) 0%, var(--lb-linen) 50%, var(--lb-blush) 100%);
}

.lb-hero-bg {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(242, 212, 208, 0.4) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(196, 168, 130, 0.2) 0%, transparent 50%);
}

.lb-hero-content {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 8rem 1.5rem 4rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.lb-hero-badge {
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--lb-rose-quartz);
    margin-bottom: 1.5rem;
}

.lb-hero-title {
    font-family: var(--ci-heading-font);
    font-size: clamp(2.5rem, 5.5vw, 4rem);
    color: var(--lb-dark);
    font-style: italic;
    line-height: 1.15;
    margin-bottom: 1.25rem;
}

.lb-hero-subtitle {
    font-size: 1.1rem;
    color: var(--lb-truffle);
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 480px;
}

.lb-hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.lb-hero-image {
    position: relative;
    display: flex;
    justify-content: center;
}

.lb-hero-image-frame {
    width: 502px;
    height: 634px;
    border-radius: 200px 200px 30px 30px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 25px 60px rgba(139, 115, 102, 0.2);
}

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

.lb-hero-decoration {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: var(--lb-blush);
    opacity: 0.6;
    z-index: -1;
}

/* ==========================================================================
   About Section
   ========================================================================== */
.lb-about {
    padding: 7rem 0;
    background: var(--lb-warm-white);
}

.lb-about-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
    align-items: center;
}

.lb-about-image-stack {
    position: relative;
    display: inline-block;
}

.lb-arch-frame {
    width: 100%;
    max-width: 380px;
    aspect-ratio: 3/4;
    border-radius: 200px 200px 20px 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(139, 115, 102, 0.15);
}

.lb-arch-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lb-portrait-frame {
    position: absolute;
    bottom: -30px;
    right: -50px;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--lb-warm-white);
    box-shadow: 0 12px 35px rgba(139, 115, 102, 0.25);
    z-index: 2;
}

.lb-portrait-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
}

.lb-about-text p {
    color: var(--lb-truffle);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.lb-about-text strong {
    color: var(--lb-dark);
}

.lb-about-content .lb-btn {
    margin-top: 1.5rem;
}

/* ==========================================================================
   Services Section
   ========================================================================== */
.lb-services {
    padding: 7rem 0;
    background: var(--lb-linen);
}

.lb-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.lb-service-card {
    background: #fff;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(196, 168, 130, 0.15);
    position: relative;
    overflow: hidden;
}

.lb-service-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: blur(18px) saturate(0.8);
    opacity: 0.18;
    transform: scale(1.15);
    transition: opacity 0.4s ease, filter 0.4s ease;
    z-index: 0;
}

.lb-service-card:hover .lb-service-bg {
    opacity: 0.28;
    filter: blur(14px) saturate(1);
}

.lb-service-icon,
.lb-service-title,
.lb-service-desc {
    position: relative;
    z-index: 1;
}

.lb-service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(139, 115, 102, 0.12);
}

.lb-service-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--lb-blush);
    border-radius: 16px;
    color: var(--lb-rose-quartz);
}

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

.lb-service-title {
    font-family: var(--ci-heading-font);
    font-size: 1.35rem;
    color: var(--lb-dark);
    font-style: italic;
    margin-bottom: 0.75rem;
}

.lb-service-desc {
    color: var(--lb-truffle);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ==========================================================================
   UV-Technik Section
   ========================================================================== */
.lb-uv-technik {
    padding: 7rem 0;
    background: var(--lb-warm-white);
}

.lb-uv-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.lb-uv-intro {
    color: var(--lb-truffle);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.lb-uv-benefits {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.lb-uv-benefit {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.lb-uv-benefit-icon {
    font-size: 1.2rem;
    color: var(--lb-rose-quartz);
    margin-top: 2px;
    flex-shrink: 0;
}

.lb-uv-benefit strong {
    display: block;
    color: var(--lb-dark);
    margin-bottom: 0.25rem;
    font-size: 0.95rem;
}

.lb-uv-benefit p {
    color: var(--lb-truffle);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

.lb-uv-card {
    background: linear-gradient(135deg, var(--lb-blush) 0%, var(--lb-linen) 100%);
    border-radius: 24px;
    padding: 3rem;
}

.lb-uv-card-inner {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    text-align: center;
}

.lb-uv-stat-number {
    display: block;
    font-family: var(--ci-heading-font);
    font-size: 3rem;
    font-style: italic;
    color: var(--lb-dark);
    line-height: 1;
}

.lb-uv-stat-label {
    display: block;
    font-size: 0.85rem;
    color: var(--lb-truffle);
    margin-top: 0.5rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* ==========================================================================
   Pricing Section
   ========================================================================== */
.lb-pricing {
    padding: 7rem 0;
    background: var(--lb-linen);
}

.lb-pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    align-items: stretch;
}

.lb-price-card {
    background: #fff;
    border-radius: 24px;
    padding: 2.5rem 2rem;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid rgba(196, 168, 130, 0.15);
    display: flex;
    flex-direction: column;
}

.lb-price-card.featured {
    border-color: var(--lb-rose-quartz);
    box-shadow: 0 20px 50px rgba(201, 139, 139, 0.15);
    transform: scale(1.03);
}

.lb-price-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(139, 115, 102, 0.12);
}

.lb-price-card.featured:hover {
    transform: scale(1.03) translateY(-4px);
}

.lb-price-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--lb-rose-quartz);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.35rem 1.25rem;
    border-radius: 100px;
}

.lb-price-name {
    font-family: var(--ci-heading-font);
    font-size: 1.5rem;
    color: var(--lb-dark);
    font-style: italic;
    margin-bottom: 0.25rem;
}

.lb-price-desc {
    color: var(--lb-truffle);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.lb-price-amount {
    margin-bottom: 1.5rem;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
}

.lb-price-value {
    font-family: var(--ci-heading-font);
    font-size: 3.5rem;
    font-style: italic;
    color: var(--lb-dark);
    line-height: 1;
}

.lb-price-currency {
    font-size: 1.25rem;
    color: var(--lb-truffle);
    font-weight: 500;
}

.lb-price-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
    flex-grow: 1;
}

.lb-price-features li {
    padding: 0.6rem 0;
    color: var(--lb-truffle);
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(196, 168, 130, 0.1);
}

.lb-price-features li:last-child {
    border-bottom: none;
}

.lb-price-features li::before {
    content: '✓ ';
    color: var(--lb-rose-quartz);
    font-weight: 600;
}

.lb-price-card .lb-btn {
    width: 100%;
    justify-content: center;
}

.lb-pricing-note {
    text-align: center;
    margin-top: 2.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 16px;
}

.lb-pricing-note p {
    color: var(--lb-truffle);
    font-size: 0.9rem;
    margin: 0;
}

/* ==========================================================================
   Contact Section
   ========================================================================== */
.lb-contact {
    padding: 7rem 0;
    background: var(--lb-warm-white);
}

.lb-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.lb-contact-text {
    color: var(--lb-truffle);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.lb-contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.lb-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

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

.lb-contact-item strong {
    display: block;
    color: var(--lb-dark);
    font-size: 0.9rem;
    margin-bottom: 0.15rem;
}

.lb-contact-item span,
.lb-contact-item a {
    color: var(--lb-truffle);
    font-size: 0.9rem;
    text-decoration: none;
}

.lb-contact-item a:hover {
    color: var(--lb-rose-quartz);
}

.lb-map-wrapper {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(139, 115, 102, 0.1);
}

/* ==========================================================================
   CTA Section
   ========================================================================== */
.lb-cta-section {
    padding: 5rem 0;
    margin-top: -1px;
    background: linear-gradient(135deg, var(--lb-blush) 0%, var(--lb-linen) 100%);
}

.lb-cta-inner {
    text-align: center;
    max-width: 650px;
    margin: 0 auto;
}

.lb-cta-inner h2 {
    font-family: var(--ci-heading-font);
    font-size: var(--ci-h2-size);
    color: var(--lb-dark);
    font-style: italic;
    margin-bottom: 1rem;
}

.lb-cta-inner p {
    color: var(--lb-truffle);
    font-size: 1.05rem;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.lb-calendly-wrap {
    max-width: 900px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 45px rgba(139, 115, 102, 0.15);
    background: var(--lb-warm-white);
}

.lb-calendly-wrap .calendly-inline-widget {
    overflow: hidden;
    border-radius: 20px;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.lb-footer {
    background: var(--lb-dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 4rem 0 0;
}

.lb-footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
}

.lb-footer-logo {
    margin-bottom: 0.75rem;
}

.lb-footer-logo img {
    height: 70px;
    width: auto;
    filter: brightness(0) invert(1);
}

.lb-footer-logo span {
    font-family: var(--ci-heading-font);
    font-size: 1.75rem;
    color: #fff;
    font-style: italic;
}

.lb-footer-tagline {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.lb-footer-social a {
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.2s ease;
}

.lb-footer-social a:hover {
    color: var(--lb-blush);
}

.lb-footer-links h4 {
    color: #fff;
    font-family: var(--ci-body-font);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
    font-style: normal;
}

.lb-footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.lb-footer-links li {
    margin-bottom: 0.6rem;
    font-size: 0.9rem;
}

.lb-footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.2s ease;
}

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

.lb-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem 0;
    text-align: center;
}

.lb-footer-bottom p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
    margin: 0;
}

/* ==========================================================================
   Responsive Design
   ========================================================================== */
@media (max-width: 1024px) {
    .lb-hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 7rem;
    }
    
    .lb-hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }
    
    .lb-hero-actions {
        justify-content: center;
    }
    
    .lb-hero-image-frame {
        width: 300px;
        height: 380px;
        margin: 0 auto;
    }
    
    .lb-about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .lb-about-image {
        display: flex;
        justify-content: center;
    }
    
    .lb-arch-frame {
        max-width: 300px;
    }
    
    .lb-portrait-frame {
        width: 140px;
        height: 140px;
        bottom: -20px;
        right: -20px;
    }
    
    .lb-about-content .lb-btn {
        margin-left: auto;
        margin-right: auto;
    }
    
    .lb-services-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .lb-uv-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .lb-pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .lb-price-card.featured {
        transform: none;
    }
    
    .lb-price-card.featured:hover {
        transform: translateY(-4px);
    }
    
    .lb-contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .lb-footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .lb-nav-links {
        display: none;
    }
    
    .lb-nav-toggle {
        display: block;
    }
    
    .lb-hero-title {
        font-size: clamp(2rem, 8vw, 3rem);
    }
    
    .lb-hero-image-frame {
        width: 260px;
        height: 340px;
    }
    
    .lb-footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .lb-footer-social {
        justify-content: center;
        display: flex;
    }
}

/* ==========================================================================
   Animations & Entrance Effects
   ========================================================================== */
@media (prefers-reduced-motion: no-preference) {
    .lb-hero-text,
    .lb-hero-image,
    .lb-about-image,
    .lb-about-content,
    .lb-service-card,
    .lb-uv-content,
    .lb-uv-visual,
    .lb-price-card,
    .lb-contact-info,
    .lb-contact-map {
        opacity: 0;
        transform: translateY(30px);
        animation: fadeInUp 0.7s ease forwards;
    }
    
    .lb-hero-text { animation-delay: 0.2s; }
    .lb-hero-image { animation-delay: 0.5s; }
    .lb-about-image { animation-delay: 0.1s; }
    .lb-about-content { animation-delay: 0.3s; }
    .lb-service-card:nth-child(1) { animation-delay: 0.1s; }
    .lb-service-card:nth-child(2) { animation-delay: 0.25s; }
    .lb-service-card:nth-child(3) { animation-delay: 0.4s; }
    .lb-uv-content { animation-delay: 0.1s; }
    .lb-uv-visual { animation-delay: 0.3s; }
    .lb-price-card:nth-child(1) { animation-delay: 0.1s; }
    .lb-price-card:nth-child(2) { animation-delay: 0.25s; }
    .lb-price-card:nth-child(3) { animation-delay: 0.4s; }
    .lb-contact-info { animation-delay: 0.1s; }
    .lb-contact-map { animation-delay: 0.3s; }
    
    @keyframes fadeInUp {
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
}

/* ==========================================================================
   Shimmer Text Effect
   ========================================================================== */
.lb-shimmer-text {
    padding-right: 0.05em;
    display: inline-block;
    color: var(--lb-rose-quartz);
    background: linear-gradient(
        to right,
        var(--lb-rose-quartz) 0%,
        #f5d0c5 40%,
        #f5d0c5 60%,
        var(--lb-rose-quartz) 100%
    );
    background-size: 200% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0% {
        background-position: 200% center;
    }
    100% {
        background-position: -200% center;
    }
}

/* ==========================================================================
   Legal Pages (Impressum, Datenschutz)
   ========================================================================== */
.lb-legal {
    padding: 8rem 0 4rem;
    background: var(--lb-warm-white);
    min-height: 80vh;
}

.lb-legal-inner {
    max-width: 780px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.lb-legal h1 {
    font-family: var(--ci-heading-font);
    font-size: var(--ci-h1-size);
    color: var(--lb-dark);
    margin-bottom: 0.5rem;
    font-style: italic;
}

.lb-legal .lb-legal-subtitle {
    color: var(--lb-truffle);
    font-size: 1rem;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--lb-blush);
}

.lb-legal h2 {
    font-family: var(--ci-heading-font);
    font-size: var(--ci-h3-size);
    color: var(--lb-dark);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    font-style: italic;
}

.lb-legal h3 {
    font-family: var(--ci-heading-font);
    font-size: var(--ci-h4-size);
    color: var(--lb-dark);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.lb-legal p,
.lb-legal li {
    color: var(--lb-truffle);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.lb-legal ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
}

.lb-legal ul li {
    position: relative;
    padding-left: 1.25rem;
    margin-bottom: 0.5rem;
}

.lb-legal ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.6em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--lb-rose-quartz);
}

.lb-legal a {
    color: var(--lb-rose-quartz);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s ease;
}

.lb-legal a:hover {
    border-bottom-color: var(--lb-rose-quartz);
}

.lb-legal .lb-legal-card {
    background: #fff;
    border: 1px solid var(--lb-blush);
    border-radius: 12px;
    padding: 1.5rem 2rem;
    margin: 1.5rem 0;
}

.lb-legal .lb-legal-card p {
    margin-bottom: 0.25rem;
}

.lb-legal .lb-legal-back {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 3rem;
    padding: 0.75rem 1.5rem;
    background: var(--lb-blush);
    color: var(--lb-dark);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
}

.lb-legal .lb-legal-back:hover {
    background: var(--lb-rose-quartz);
    color: #fff;
    border-bottom: none;
}

@media (max-width: 768px) {
    .lb-legal {
        padding: 6rem 0 3rem;
    }
    .lb-legal-inner {
        padding: 0 1.25rem;
    }
    .lb-legal .lb-legal-card {
        padding: 1.25rem 1.5rem;
    }
}
