/* ============================================
   SANTHIA Thai Massage - Premium Website Styles
   2026 Modern Design System
   ============================================ */

/* ============================================
   CSS Variables & Design Tokens
   ============================================ */
:root {
    /* Primary Colors - Warm & Natural */
    --color-cream: #F7F3ED;
    --color-cream-light: #FDFBF8;
    --color-cream-dark: #EDE6DB;
    --color-beige: #E8DFD0;
    --color-sand: #D4C4AD;
    --color-sand-dark: #BBA888;
    
    /* Accent Colors */
    --color-gold: #B8956B;
    --color-gold-light: #D4B896;
    --color-gold-dark: #9A7B56;
    --color-green: #7A9A7A;
    --color-green-light: #9DB99D;
    --color-green-dark: #5C7A5C;
    
    /* Neutrals */
    --color-text: #4A453D;
    --color-text-light: #6B645A;
    --color-text-muted: #8B8478;
    --color-white: #FFFFFF;
    --color-overlay: rgba(74, 69, 61, 0.7);
    
    /* Typography */
    --font-heading: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
    
    /* Font Sizes - Fluid Typography */
    --fs-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
    --fs-sm: clamp(0.875rem, 0.8rem + 0.375vw, 1rem);
    --fs-base: clamp(1rem, 0.925rem + 0.375vw, 1.125rem);
    --fs-lg: clamp(1.125rem, 1rem + 0.625vw, 1.375rem);
    --fs-xl: clamp(1.25rem, 1.1rem + 0.75vw, 1.625rem);
    --fs-2xl: clamp(1.5rem, 1.25rem + 1.25vw, 2.25rem);
    --fs-3xl: clamp(2rem, 1.5rem + 2.5vw, 3.5rem);
    --fs-4xl: clamp(2.5rem, 1.75rem + 3.75vw, 5rem);
    --fs-hero: clamp(3rem, 2rem + 5vw, 7rem);
    
    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;
    --space-5xl: 8rem;
    
    /* Layout */
    --container-max: 1400px;
    --container-padding: clamp(1rem, 3vw, 3rem);
    --section-padding: clamp(4rem, 8vw, 8rem);
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(74, 69, 61, 0.06);
    --shadow-md: 0 4px 20px rgba(74, 69, 61, 0.08);
    --shadow-lg: 0 8px 40px rgba(74, 69, 61, 0.12);
    --shadow-xl: 0 16px 60px rgba(74, 69, 61, 0.15);
    
    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 300ms ease;
    --transition-slow: 500ms ease;
    --transition-slower: 800ms cubic-bezier(0.16, 1, 0.3, 1);
    
    /* Z-Index Scale */
    --z-base: 1;
    --z-dropdown: 100;
    --z-sticky: 200;
    --z-fixed: 300;
    --z-modal: 400;
    --z-tooltip: 500;
    --z-preloader: 1000;
}

/* ============================================
   CSS Reset & Base Styles
   ============================================ */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    scroll-padding-top: 110px;
    overflow-x: hidden;
    overscroll-behavior-x: none;
}

body {
    font-family: var(--font-body);
    font-size: var(--fs-base);
    font-weight: 400;
    line-height: 1.7;
    color: var(--color-text);
    background-color: var(--color-cream-light);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    overscroll-behavior-x: none;
    position: relative;
    width: 100%;
}

body.no-scroll {
    overflow: hidden;
}

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

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

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

input, select, textarea {
    font-family: inherit;
    font-size: inherit;
}

ul, ol {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 400;
    line-height: 1.2;
    color: var(--color-text);
}

/* ============================================
   Utility Classes
   ============================================ */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

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

.section-subtitle {
    display: inline-block;
    font-family: var(--font-body);
    font-size: var(--fs-xs);
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: var(--space-md);
}

.section-subtitle--light {
    color: var(--color-gold-light);
}

.section-title {
    font-size: var(--fs-3xl);
    font-weight: 400;
    margin-bottom: var(--space-lg);
    color: var(--color-text);
}

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

.section-description {
    font-size: var(--fs-lg);
    color: var(--color-text-light);
    max-width: 600px;
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-3xl);
}

.section-header .section-description {
    margin: 0 auto;
}

/* ============================================
   Buttons
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: 0.875rem 1.75rem;
    font-family: var(--font-body);
    font-size: var(--fs-sm);
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-radius: var(--radius-sm);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left var(--transition-slow);
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--color-gold);
    color: var(--color-white);
    border: 2px solid var(--color-gold);
}

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

.btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    color: var(--color-white);
    border: 2px solid rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: var(--color-white);
    color: var(--color-gold);
    border-color: var(--color-white);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--color-text);
    border: 2px solid var(--color-sand);
}

.btn-outline:hover {
    background: var(--color-sand);
    border-color: var(--color-sand);
}

.btn-whatsapp {
    background: #25D366;
    color: var(--color-white);
    border: 2px solid #25D366;
}

.btn-whatsapp:hover {
    background: #1DA851;
    border-color: #1DA851;
    transform: translateY(-2px);
}

.btn-lg {
    padding: 1rem 2.25rem;
    font-size: var(--fs-base);
}

.btn-sm {
    padding: 0.625rem 1.25rem;
    font-size: var(--fs-xs);
}

.btn-block {
    width: 100%;
}

.btn-nav {
    padding: 0.625rem 1.25rem;
}

/* ============================================
   Preloader
   ============================================ */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-cream-light);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: var(--z-preloader);
    transition: opacity var(--transition-slow), visibility var(--transition-slow);
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.preloader-inner {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.preloader-logo {
    width: 150px;
    height: auto;
    margin-bottom: var(--space-xl);
    animation: pulse 2s ease-in-out infinite;
    display: block;
}

.preloader-bar {
    width: 200px;
    height: 2px;
    background: var(--color-beige);
    border-radius: var(--radius-full);
    overflow: hidden;
}

.preloader-bar::after {
    content: '';
    display: block;
    width: 50%;
    height: 100%;
    background: var(--color-gold);
    animation: loading 1.5s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(0.98); }
}

@keyframes loading {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(300%); }
}

/* ============================================
   Header & Navigation
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: var(--z-fixed);
    transition: all var(--transition-base);
}

.header.scrolled {
    background: rgba(253, 251, 248, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-sm);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 90px;
    transition: height var(--transition-base);
}

.header.scrolled .nav {
    height: 75px;
}

.nav-logo img {
    height: 154px;
    width: auto;
    transition: height var(--transition-base), opacity 0.6s ease-in-out, visibility 0.6s ease-in-out;
}

.header.scrolled .nav-logo img {
    height: 98px;
}

.nav-menu {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
}

.nav-link {
    font-size: var(--fs-sm);
    font-weight: 500;
    color: var(--color-text);
    position: relative;
    padding: var(--space-sm) 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-gold);
    transition: width var(--transition-base);
}

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

.nav-close {
    display: none;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 28px;
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--color-text);
    transition: all var(--transition-base);
}

/* Mobile Navigation */
@media (max-width: 1024px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        max-width: 100%;
        height: 100vh;
        height: 100dvh;
        background: var(--color-cream-light);
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
        padding: var(--space-md) var(--space-lg) calc(100px + var(--space-sm)) var(--space-lg);
        transition: right var(--transition-slower);
        box-shadow: var(--shadow-xl);
        overflow: hidden;
    }
    
    .nav-menu::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-image: 
            radial-gradient(circle at 20% 30%, rgba(183, 158, 124, 0.08) 0%, transparent 50%),
            radial-gradient(circle at 80% 70%, rgba(183, 158, 124, 0.06) 0%, transparent 50%),
            radial-gradient(circle at 50% 50%, rgba(183, 158, 124, 0.04) 0%, transparent 70%);
        pointer-events: none;
        z-index: 0;
    }
    
    .nav-menu::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23b79e7c' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
        opacity: 0.8;
        pointer-events: none;
        z-index: 0;
    }
    
    .nav-menu > * {
        position: relative;
        z-index: 1;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu-logo {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        padding-top: 0;
        margin-bottom: 0;
        flex-shrink: 0;
    }

    .nav-menu-logo img {
        max-width: 200px;
        height: auto;
    }

    .nav-list {
        flex-direction: column;
        gap: var(--space-sm);
        text-align: center;
        padding: var(--space-sm) 0;
        flex-shrink: 0;
    }
    
    .nav-item {
        opacity: 0;
        transform: translateY(10px);
    }
    
    .nav-menu.active .nav-item {
        opacity: 1;
        transform: translateY(0);
        transition: opacity 0.3s ease, transform 0.3s ease;
    }
    
    .nav-menu.active .nav-item:nth-child(1) { transition-delay: 0.1s; }
    .nav-menu.active .nav-item:nth-child(2) { transition-delay: 0.15s; }
    .nav-menu.active .nav-item:nth-child(3) { transition-delay: 0.2s; }
    .nav-menu.active .nav-item:nth-child(4) { transition-delay: 0.25s; }
    .nav-menu.active .nav-item:nth-child(5) { transition-delay: 0.3s; }
    .nav-menu.active .nav-item:nth-child(6) { transition-delay: 0.35s; }

    .nav-link {
        font-size: var(--fs-xl);
        font-weight: 500;
        letter-spacing: 0.02em;
        padding: var(--space-sm) var(--space-md);
        display: inline-block;
        position: relative;
    }
    
    .nav-link::before {
        content: '';
        position: absolute;
        left: 50%;
        bottom: 0;
        width: 0;
        height: 1px;
        background: var(--color-gold);
        transition: all 0.3s ease;
        transform: translateX(-50%);
    }
    
    .nav-link:hover::before,
    .nav-link:active::before {
        width: 60%;
    }

    .nav-close {
        display: flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        top: var(--space-lg);
        right: var(--space-lg);
        width: 44px;
        height: 44px;
        color: var(--color-text);
        background: var(--color-white);
        border: 1px solid rgba(139, 115, 85, 0.2);
        border-radius: var(--radius-full);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
        z-index: 10;
        transition: all var(--transition-base);
    }
    
    .nav-close:hover,
    .nav-close:active {
        background: var(--color-gold);
        color: var(--color-white);
        border-color: var(--color-gold);
    }
    
    .nav-close svg {
        width: 20px;
        height: 20px;
    }

    .nav-menu-footer {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: var(--space-sm);
        width: 100%;
        padding-top: 0;
        padding-bottom: var(--space-sm);
        flex-shrink: 0;
    }

    .nav-menu-cta {
        width: 100%;
        max-width: 280px;
        text-align: center;
        padding: var(--space-sm) var(--space-lg);
    }

    .nav-menu-social {
        display: flex;
        gap: var(--space-lg);
        justify-content: center;
    }

    .nav-menu-social a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 48px;
        height: 48px;
        border-radius: var(--radius-full);
        background: var(--color-white);
        border: 1px solid rgba(139, 115, 85, 0.15);
        color: var(--color-text);
        transition: all var(--transition-base);
    }

    .nav-menu-social a:hover {
        background: var(--color-gold);
        color: var(--color-white);
        border-color: var(--color-gold);
    }

    .nav-toggle {
        display: flex;
    }

    .nav-actions .btn-nav {
        display: none;
    }
}

/* Hide mobile menu elements on desktop */
@media (min-width: 1025px) {
    .nav-menu-logo,
    .nav-menu-footer {
        display: none;
    }
}

/* Extra small screens - optimize mobile menu spacing */
@media (max-width: 1024px) and (max-height: 700px) {
    .nav-menu {
        padding: var(--space-xs) var(--space-md) calc(100px + var(--space-xs)) var(--space-md);
    }
    
    .nav-menu-logo {
        padding-top: 0;
        margin-bottom: 0;
    }
    
    .nav-menu-logo img {
        max-width: 140px;
    }
    
    .nav-list {
        gap: var(--space-xs);
        padding: var(--space-xs) 0;
    }
    
    .nav-link {
        font-size: var(--fs-sm);
        padding: var(--space-xs);
    }
    
    .nav-close {
        width: 40px;
        height: 40px;
        top: var(--space-sm);
        right: var(--space-sm);
    }
    
    .nav-close svg {
        width: 18px;
        height: 18px;
    }
    
    .nav-menu-footer {
        gap: var(--space-xs);
        padding-bottom: var(--space-xs);
    }
    
    .nav-menu-cta {
        padding: var(--space-xs) var(--space-md);
        font-size: var(--fs-xs);
    }
    
    .nav-menu-social {
        gap: var(--space-xs);
    }
    
    .nav-menu-social a {
        width: 36px;
        height: 36px;
    }
}

/* Very small height screens */
@media (max-width: 1024px) and (max-height: 600px) {
    .nav-menu {
        padding: var(--space-xs) var(--space-sm) calc(90px + var(--space-xs)) var(--space-sm);
    }
    
    .nav-menu-logo {
        padding-top: 0;
    }
    
    .nav-menu-logo img {
        max-width: 100px;
    }
    
    .nav-list {
        gap: 0.25rem;
        padding: 0.25rem 0;
    }
    
    .nav-link {
        font-size: 0.8rem;
        padding: 0.25rem;
    }
    
    .nav-close {
        width: 36px;
        height: 36px;
        top: var(--space-xs);
        right: var(--space-xs);
    }
    
    .nav-close svg {
        width: 16px;
        height: 16px;
    }
    
    .nav-menu-footer {
        gap: 0.25rem;
        padding-bottom: 0.25rem;
    }
    
    .nav-menu-cta {
        padding: 0.4rem 0.8rem;
        font-size: 0.75rem;
    }
    
    .nav-menu-social {
        gap: 0.25rem;
    }
    
    .nav-menu-social a {
        width: 32px;
        height: 32px;
    }
}

/* ============================================
   Mobile Bottom CTA
   ============================================ */
.mobile-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--color-cream-light);
    padding: var(--space-sm) var(--space-md);
    box-shadow: 0 -4px 20px rgba(74, 69, 61, 0.1);
    z-index: 10001;
    gap: var(--space-sm);
}

.mobile-cta-btn {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-xs);
    padding: var(--space-sm);
    font-size: var(--fs-xs);
    font-weight: 500;
    color: var(--color-white);
    background: var(--color-gold);
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
}

.mobile-cta-btn--secondary {
    background: var(--color-green);
}

.mobile-cta-btn--tertiary {
    background: var(--color-text);
}

.mobile-cta-btn:active {
    transform: scale(0.95);
}

@media (max-width: 768px) {
    .mobile-cta {
        display: flex;
    }
    
    body {
        padding-bottom: 80px;
    }
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    max-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-parallax {
    position: absolute;
    top: -10%;
    left: 0;
    width: 100%;
    height: 120%;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(247, 243, 237, 0.75) 0%,
        rgba(247, 243, 237, 0.6) 40%,
        rgba(247, 243, 237, 0.45) 100%
    );
}

.hero-content {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 100px;
    padding-bottom: 80px;
}

.hero-text {
    text-align: center;
    opacity: 0;
    transform: translateY(40px);
    animation: fadeInUp 1s ease forwards;
    animation-delay: 0.5s;
}

/* Hero Logo - Prominent centered */
.hero-logo {
    margin-bottom: var(--space-md);
}

.hero-logo img {
    height: clamp(280px, 40vh, 450px);
    width: auto;
    margin: 0 auto;
    filter: drop-shadow(0 8px 30px rgba(74, 69, 61, 0.15));
}

/* Hero Info Block */
.hero-info {
    margin-bottom: var(--space-md);
}

.hero-title {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    font-weight: 400;
    letter-spacing: 0.05em;
    color: var(--color-text);
    margin-bottom: var(--space-xs);
}

.hero-location {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    font-size: var(--fs-base);
    font-weight: 500;
    color: var(--color-green-dark);
}

.hero-location svg {
    flex-shrink: 0;
    color: var(--color-green);
}

/* Hero USPs */
.hero-usps {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: var(--space-xs);
    margin-bottom: var(--space-lg);
    padding: var(--space-sm) var(--space-md);
    background: rgba(255, 255, 255, 0.6);
    border-radius: var(--radius-full);
    backdrop-filter: blur(10px);
}

.hero-usp {
    font-size: var(--fs-xs);
    font-weight: 500;
    color: var(--color-text-light);
    white-space: nowrap;
}

.hero-usp-divider {
    color: var(--color-gold);
    font-weight: 300;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-sm);
}

.hero-cta .btn {
    min-width: 200px;
}

.hero-scroll {
    position: absolute;
    bottom: 60px;
    left: 0;
    right: 0;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    color: var(--color-white);
    font-size: var(--fs-xs);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    animation: fadeIn 1s ease forwards;
    animation-delay: 1.5s;
    opacity: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    text-align: center;
}

.hero-scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--color-white), transparent);
    animation: scrollLine 2s ease-in-out infinite;
}

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

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

@keyframes scrollLine {
    0%, 100% { transform: scaleY(1); opacity: 1; }
    50% { transform: scaleY(0.5); opacity: 0.5; }
}

@media (max-width: 768px) {
    .hero {
        height: 100svh;
        min-height: 550px;
    }
    
    .hero-content {
        padding-top: 90px;
        padding-bottom: 60px;
    }
    
    .hero-logo img {
        height: clamp(150px, 25vh, 220px);
    }
    
    .hero-title {
        font-size: clamp(1rem, 2.5vw, 1.25rem);
    }
    
    .hero-location {
        font-size: var(--fs-sm);
    }
    
    .hero-usps {
        flex-direction: column;
        gap: var(--space-xs);
        padding: var(--space-sm);
        border-radius: var(--radius-lg);
        margin-bottom: var(--space-md);
    }
    
    .hero-usp {
        font-size: 0.7rem;
    }
    
    .hero-usp-divider {
        display: none;
    }
    
    .hero-scroll {
        bottom: 100px;
        font-size: 0.65rem;
    }
    
    .hero-scroll-line {
        height: 30px;
    }
    
    .hero-cta {
        gap: var(--space-xs);
        flex-direction: column;
        width: 100%;
        align-items: center;
    }
    
    .hero-cta .btn {
        width: 100%;
        max-width: 280px;
    }
    
    .hero-cta .btn-lg {
        padding: 0.75rem 1.25rem;
        font-size: var(--fs-xs);
    }
}

/* ============================================
   About Section
   ============================================ */
.about {
    background: var(--color-cream);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4xl);
    align-items: center;
}

.about-image-wrapper {
    position: relative;
    max-width: 400px;
    margin: 0 auto;
}

.about-image-slider {
    position: relative;
    width: 100%;
    aspect-ratio: 3/4;
    overflow: hidden;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.about-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    border-radius: var(--radius-lg);
}

.about-slide.active {
    position: relative;
    opacity: 1;
    z-index: 1;
}

.about-image-wrapper img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.about-image-accent {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--color-green);
    border-radius: var(--radius-lg);
    z-index: -1;
}

.about-text {
    margin-bottom: var(--space-2xl);
}

.about-text p {
    margin-bottom: var(--space-md);
    color: var(--color-text-light);
}

.about-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

.about-feature {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
}

.about-feature-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-green-light);
    border-radius: var(--radius-md);
    color: var(--color-green-dark);
}

.about-feature-text h4 {
    font-family: var(--font-body);
    font-size: var(--fs-sm);
    font-weight: 600;
    margin-bottom: var(--space-xs);
}

.about-feature-text p {
    font-size: var(--fs-xs);
    color: var(--color-text-muted);
}

@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }
    
    .about-image {
        order: -1;
        max-width: 100%;
        margin: 0 auto;
    }
    
    .about-image-wrapper {
        max-width: 350px;
    }
    
    .about-content {
        text-align: center;
    }
    
    .about-features {
        justify-content: center;
    }
}

@media (max-width: 900px) {
    .about-features {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
        gap: var(--space-xl);
    }
    
    .about-feature {
        justify-content: flex-start;
        text-align: left;
        padding: var(--space-md);
        background: rgba(255, 255, 255, 0.03);
        border-radius: var(--radius-md);
        border: 1px solid rgba(184, 149, 107, 0.1);
    }
}

@media (max-width: 640px) {
    .about-features {
        max-width: 100%;
        gap: var(--space-lg);
    }
    
    .about-feature {
        padding: var(--space-sm);
    }
    
    .about-image-wrapper {
        max-width: 280px;
    }
}

/* ============================================
   KPI Section
   ============================================ */
.kpi-section {
    background: linear-gradient(180deg, #2C3E2C 0%, #3D5240 50%, #2C3E2C 100%);
    padding: var(--space-3xl) 0;
    position: relative;
    overflow: hidden;
}

.kpi-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at 20% 30%, rgba(184, 149, 107, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 70%, rgba(122, 154, 122, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.kpi-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(184, 149, 107, 0.3), transparent);
}

.kpi-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-md);
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.kpi-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(184, 149, 107, 0.2);
    border-radius: var(--radius-lg);
    padding: var(--space-xl) var(--space-md);
    text-align: center;
    transition: all var(--transition-slow);
    position: relative;
    overflow: hidden;
    min-height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.kpi-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.kpi-card::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(184, 149, 107, 0.2) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    transition: all 0.6s ease;
}

.kpi-card:hover {
    transform: translateY(-8px);
    border-color: rgba(184, 149, 107, 0.5);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5), 0 0 40px rgba(184, 149, 107, 0.2);
    background: rgba(255, 255, 255, 0.12);
}

.kpi-card:hover::before {
    opacity: 1;
}

.kpi-card:hover::after {
    width: 250px;
    height: 250px;
}

.kpi-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto var(--space-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(184, 149, 107, 0.15);
    border-radius: 50%;
    color: var(--color-gold-light);
    transition: all var(--transition-base);
}

.kpi-icon svg {
    width: 24px;
    height: 24px;
}

.kpi-card:hover .kpi-icon {
    background: var(--color-gold);
    color: var(--color-white);
    transform: scale(1.1) rotateY(360deg);
}

.kpi-content {
    position: relative;
    z-index: 1;
}

.kpi-number {
    font-family: var(--font-heading);
    font-size: var(--fs-2xl);
    font-weight: 600;
    color: var(--color-gold-light);
    line-height: 1;
    margin-bottom: var(--space-xs);
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 2px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.counter {
    font-variant-numeric: tabular-nums;
}

.kpi-suffix {
    font-size: var(--fs-xl);
    opacity: 0.8;
}

.kpi-label {
    font-size: var(--fs-xs);
    color: rgba(247, 243, 237, 0.85);
    font-weight: 500;
    letter-spacing: 0.02em;
    line-height: 1.5;
    margin-top: var(--space-xs);
    word-wrap: break-word;
    hyphens: auto;
}

/* Responsive */
@media (max-width: 1024px) {
    .kpi-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 500px;
    }
}

@media (max-width: 640px) {
    .kpi-section {
        padding: var(--space-2xl) 0;
    }
    
    .kpi-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 100%;
        gap: var(--space-sm);
    }
    
    .kpi-card {
        padding: var(--space-lg) var(--space-sm);
        min-height: 160px;
    }
    
    .kpi-icon {
        width: 40px;
        height: 40px;
    }
    
    .kpi-icon svg {
        width: 20px;
        height: 20px;
    }
    
    .kpi-number {
        font-size: var(--fs-xl);
    }
    
    .kpi-suffix {
        font-size: var(--fs-lg);
    }
    
    .kpi-label {
        font-size: 0.7rem;
        line-height: 1.4;
    }
}

/* ============================================
   Services Section
   ============================================ */
.services {
    position: relative;
    background: var(--color-cream-light);
}

.services-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(180deg, var(--color-cream) 0%, var(--color-cream-light) 100%);
    z-index: 0;
}

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

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

.service-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-slow);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.service-card-image {
    position: relative;
    height: 160px;
    overflow: hidden;
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.service-card:hover .service-card-image img {
    transform: scale(1.05);
}

/* Service Card Accent - Grüner versetzter Rahmen */
.service-card--accent .service-card-image {
    position: relative;
}

.service-card-accent {
    position: absolute;
    top: -12px;
    right: -12px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--color-green);
    border-radius: 0;
    z-index: -1;
    pointer-events: none;
    transition: all var(--transition-base);
}

.service-card--accent:hover .service-card-accent {
    top: -16px;
    right: -16px;
}

.service-card-content {
    padding: var(--space-lg);
    display: flex;
    flex-direction: column;
    flex: 1;
}

.service-card-title {
    font-size: var(--fs-lg);
    margin-bottom: var(--space-xs);
}

.service-card-description {
    font-size: var(--fs-sm);
    color: var(--color-text-light);
    margin-bottom: var(--space-md);
    line-height: 1.5;
}

.service-card-options {
    margin-bottom: var(--space-md);
    margin-top: auto;
    border-top: 1px solid var(--color-beige);
    padding-top: var(--space-sm);
}

.service-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-xs) 0;
}

.service-duration {
    font-size: var(--fs-xs);
    color: var(--color-text-muted);
}

.service-price {
    font-family: var(--font-heading);
    font-size: var(--fs-base);
    font-weight: 500;
    color: var(--color-gold);
}

@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .services-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
    
    /* Kleinere Akzente auf mobilen Geräten */
    .service-card-accent {
        top: -8px;
        right: -8px;
    }
    
    .service-card--accent:hover .service-card-accent {
        top: -10px;
        right: -10px;
    }
}

/* ============================================
   Booking Section
   ============================================ */
.booking {
    background: var(--color-cream);
}

.booking-widget {
    max-width: 800px;
    margin: 0 auto;
    background: var(--color-white);
    border-radius: var(--radius-xl);
    padding: var(--space-lg);
    box-shadow: var(--shadow-lg);
}

/* Booking Widget Wrapper & Accent */
.booking-widget-wrapper {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.booking-accent {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--color-green);
    border-radius: var(--radius-xl);
    z-index: -1;
    pointer-events: none;
}

.booking-step {
    display: none;
}

.booking-step.active {
    display: block;
    animation: fadeInUp 0.5s ease;
}

.booking-step-header {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-md);
}

.booking-step-number {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-gold);
    color: var(--color-white);
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: var(--fs-xs);
}

.booking-step-title {
    font-size: var(--fs-md);
}

.booking-services {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-sm);
}

.booking-service-option input {
    display: none;
}

.booking-service-card {
    padding: var(--space-sm) var(--space-md);
    background: var(--color-cream-light);
    border: 2px solid transparent;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.booking-service-option input:checked + .booking-service-card {
    border-color: var(--color-gold);
    background: var(--color-cream);
}

.booking-service-card:hover {
    border-color: var(--color-sand);
}

.booking-service-card h4 {
    font-family: var(--font-body);
    font-size: var(--fs-sm);
    font-weight: 600;
    margin-bottom: 0;
    line-height: 1.3;
}

.booking-step-subtitle {
    font-size: var(--fs-sm);
    color: var(--color-text-light);
    margin-top: 0.25rem;
    font-weight: 400;
}

.booking-service-card .service-check {
    width: 22px;
    height: 22px;
    border-radius: 6px;
    border: 2px solid var(--color-sand);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all var(--transition-fast);
}

.booking-service-card .service-check svg {
    opacity: 0;
    transition: opacity var(--transition-fast);
}

.booking-service-option input:checked + .booking-service-card .service-check {
    background: var(--color-gold);
    border-color: var(--color-gold);
}

.booking-service-option input:checked + .booking-service-card .service-check svg {
    opacity: 1;
}

.booking-service-card-inner {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

/* Multi-duration selection */
.booking-durations-multi {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.duration-group {
    background: var(--color-cream-light);
    border-radius: var(--radius-md);
    padding: var(--space-md);
    border: 1px solid var(--color-cream);
}

.duration-group-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-sm);
}

.duration-group-header h4 {
    font-family: var(--font-body);
    font-size: var(--fs-sm);
    font-weight: 600;
    color: var(--color-text);
}

.duration-group-remove {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-full);
    color: #c0392b;
    cursor: pointer;
    transition: all var(--transition-fast);
    font-size: 0.85rem;
    background: rgba(192,57,43,0.08);
    border: none;
}

.duration-group-remove:hover {
    background: rgba(192,57,43,0.18);
}

.duration-group-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-sm);
}

.booking-durations {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
}

/* Summary items list */
.summary-items-list {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.summary-item-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: var(--fs-sm);
    padding: 0.2rem 0;
}

.summary-item-row .item-name {
    flex: 1;
}

.summary-item-row .item-details {
    color: var(--color-text-light);
    font-size: 0.78rem;
    text-align: right;
}

.summary-totals {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 2px solid var(--color-gold);
    padding-top: var(--space-sm);
    margin-top: var(--space-sm);
    font-weight: 600;
}

.duration-option {
    padding: var(--space-sm) var(--space-md);
    background: var(--color-cream-light);
    border: 2px solid transparent;
    border-radius: var(--radius-md);
    text-align: center;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.duration-option:hover {
    border-color: var(--color-sand);
}

.duration-option.selected {
    border-color: var(--color-gold);
    background: var(--color-cream);
}

.duration-option .duration {
    display: block;
    font-size: var(--fs-base);
    font-weight: 600;
    margin-bottom: var(--space-xs);
}

.duration-option .price {
    font-family: var(--font-heading);
    font-size: var(--fs-lg);
    color: var(--color-gold);
}

/* Calendar */
.booking-datetime {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
}

.booking-calendar {
    background: var(--color-cream-light);
    border-radius: var(--radius-md);
    padding: var(--space-md);
}

.calendar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: var(--space-md);
}

.calendar-month {
    font-family: var(--font-heading);
    font-size: var(--fs-base);
}

.calendar-nav {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-full);
    color: var(--color-text);
    transition: all var(--transition-fast);
}

.calendar-nav:hover {
    background: var(--color-cream);
    color: var(--color-gold);
}

.calendar-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: var(--space-xs);
    margin-bottom: var(--space-sm);
    text-align: center;
    font-size: var(--fs-xs);
    font-weight: 600;
    color: var(--color-text-muted);
}

.calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: var(--space-xs);
}

.calendar-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--fs-sm);
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.calendar-day:hover:not(.disabled):not(.selected) {
    background: var(--color-cream);
}

.calendar-day.disabled {
    color: var(--color-sand);
    cursor: not-allowed;
}

.calendar-day.selected {
    background: var(--color-gold);
    color: var(--color-white);
}

.calendar-day.today {
    border: 2px solid var(--color-gold);
}

/* Time Slots */
.booking-times {
    background: var(--color-cream-light);
    border-radius: var(--radius-md);
    padding: var(--space-md);
}

.booking-times h4 {
    font-family: var(--font-body);
    font-size: var(--fs-sm);
    font-weight: 600;
    margin-bottom: var(--space-sm);
}

.time-slots {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-sm);
}

.time-slots-hint {
    grid-column: 1 / -1;
    text-align: center;
    color: var(--color-text-muted);
    font-size: var(--fs-sm);
}

.time-slot {
    padding: var(--space-sm) var(--space-md);
    background: var(--color-cream);
    border: 2px solid transparent;
    border-radius: var(--radius-sm);
    text-align: center;
    font-size: var(--fs-sm);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.time-slot:hover {
    border-color: var(--color-sand);
}

.time-slot.selected {
    background: var(--color-gold);
    color: var(--color-white);
    border-color: var(--color-gold);
}

/* Contact Form */
.booking-contact {
    max-width: 600px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
}

.form-group {
    margin-bottom: var(--space-sm);
}

.form-group label {
    display: block;
    font-size: var(--fs-xs);
    font-weight: 500;
    margin-bottom: var(--space-xs);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.625rem 0.75rem;
    background: var(--color-cream-light);
    border: 2px solid transparent;
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
    font-size: var(--fs-sm);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-gold);
    background: var(--color-white);
}

.form-checkbox label {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    cursor: pointer;
}

.form-checkbox input {
    width: auto;
    margin-top: 4px;
    accent-color: var(--color-gold);
}

.form-checkbox span {
    font-size: var(--fs-sm);
    color: var(--color-text-light);
}

.form-checkbox a {
    color: var(--color-gold);
    text-decoration: underline;
}

/* Booking Summary */
.booking-summary {
    background: var(--color-cream-light);
    border-radius: var(--radius-md);
    padding: var(--space-sm) var(--space-md);
    margin: var(--space-md) 0;
}

.booking-summary h4 {
    font-family: var(--font-body);
    font-size: var(--fs-sm);
    font-weight: 600;
    margin-bottom: var(--space-sm);
}

.summary-details {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.summary-item {
    font-size: var(--fs-xs);
    color: var(--color-text-light);
}

.summary-price {
    font-family: var(--font-heading);
    font-size: var(--fs-lg);
    font-weight: 500;
    color: var(--color-gold);
    margin-top: var(--space-sm);
    padding-top: var(--space-sm);
    border-top: 1px solid var(--color-beige);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
}

.booking-discount-badge {
    display: inline-block;
    background: linear-gradient(135deg, #7A9A7A, #5f8a5f);
    color: #fff;
    font-family: var(--font-body, 'Montserrat', sans-serif);
    font-size: 0.82rem;
    font-weight: 600;
    padding: 0.4rem 0.85rem;
    border-radius: 20px;
    letter-spacing: 0.01em;
    width: 100%;
    text-align: center;
}

.summary-original-price {
    font-size: var(--fs-md, 1rem);
    color: var(--color-text-light, #b0a99e);
    text-decoration: line-through;
}

.summary-final-price {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-gold, #B8956B);
}

/* Booking Navigation */
.booking-nav {
    display: flex;
    justify-content: space-between;
    gap: var(--space-md);
    margin-top: var(--space-lg);
}

.booking-nav .btn {
    min-width: 120px;
}

/* Progress Bar */
.booking-progress {
    margin-top: var(--space-xl);
}

.progress-bar {
    height: 4px;
    background: var(--color-beige);
    border-radius: var(--radius-full);
    overflow: hidden;
    margin-bottom: var(--space-md);
}

.progress-fill {
    height: 100%;
    background: var(--color-gold);
    width: 25%;
    transition: width var(--transition-base);
}

.progress-steps {
    display: flex;
    justify-content: space-between;
}

.progress-step {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-beige);
    border-radius: var(--radius-full);
    font-size: var(--fs-xs);
    font-weight: 600;
    color: var(--color-text-muted);
    transition: all var(--transition-base);
}

.progress-step.active {
    background: var(--color-gold);
    color: var(--color-white);
}

.progress-step.completed {
    background: var(--color-green);
    color: var(--color-white);
}

/* Modal */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: var(--z-modal);
    padding: var(--space-lg);
}

.modal.active {
    display: flex;
}

.modal-content {
    background: var(--color-white);
    border-radius: var(--radius-xl);
    padding: var(--space-xl) var(--space-xl) var(--space-lg);
    max-width: 500px;
    width: 100%;
    max-height: calc(100vh - 2rem);
    max-height: calc(100dvh - 2rem);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    text-align: center;
    animation: modalIn 0.3s ease;
}

@keyframes modalIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.modal-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto var(--space-md);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-full);
    flex-shrink: 0;
}

.modal-icon.success {
    background: var(--color-green-light);
    color: var(--color-green-dark);
}

.modal-content h3 {
    font-size: clamp(1.15rem, 1rem + 0.75vw, 1.5rem);
    margin-bottom: var(--space-sm);
}

.modal-content p {
    color: var(--color-text-light);
    margin-bottom: var(--space-md);
    font-size: 0.9rem;
}

.modal-details {
    background: var(--color-cream-light);
    border-radius: var(--radius-md);
    padding: var(--space-md);
    margin-bottom: var(--space-md);
    text-align: left;
    font-size: 0.85rem;
}

.modal-details p {
    margin-bottom: 0.35rem;
    color: var(--color-text);
}

@media (max-width: 768px) {
    .booking-widget {
        padding: var(--space-md);
    }
    
    /* Kleinere Akzente auf Tablets */
    .booking-accent {
        top: -15px;
        right: -15px;
    }
    
    .booking-services,
    .booking-durations,
    .duration-group-options {
        grid-template-columns: 1fr;
    }
    
    .booking-datetime {
        grid-template-columns: 1fr;
    }
    
    .time-slots {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }

    .modal {
        padding: 0.5rem;
        align-items: flex-start;
        padding-top: 1rem;
    }

    .modal-content {
        padding: var(--space-lg) var(--space-md) var(--space-md);
        max-height: calc(100vh - 1.5rem);
        max-height: calc(100dvh - 1.5rem);
    }

    .modal-icon {
        width: 44px;
        height: 44px;
        margin-bottom: 0.5rem;
    }

    .modal-icon svg {
        width: 24px;
        height: 24px;
    }

    .modal-content h3 {
        font-size: 1.1rem;
    }

    .modal-content p {
        font-size: 0.82rem;
        margin-bottom: 0.75rem;
    }

    .modal-details {
        padding: 0.75rem;
        font-size: 0.8rem;
        margin-bottom: 0.75rem;
    }
}

@media (max-width: 640px) {
    .booking-accent {
        top: -10px;
        right: -10px;
    }
}

/* ============================================
   Voucher Success Modal
   ============================================ */
.voucher-success-modal {
    background: rgba(74, 69, 61, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.voucher-success-content {
    max-width: 460px;
    padding: var(--space-2xl) var(--space-xl) var(--space-xl);
    border: 1px solid var(--color-cream-dark);
    overflow: visible;
}

.voucher-success-celebration {
    position: relative;
    margin-bottom: var(--space-lg);
}

.voucher-success-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-green-light) 0%, var(--color-green) 100%);
    color: var(--color-white);
    animation: voucherSuccessIconIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 0.2s both;
    box-shadow: 0 8px 32px rgba(122, 154, 122, 0.35);
}

@keyframes voucherSuccessIconIn {
    from {
        opacity: 0;
        transform: scale(0) rotate(-45deg);
    }
    to {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
}

.voucher-success-title {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 1.2rem + 1vw, 2rem);
    color: var(--color-text);
    margin-bottom: 0.25rem;
    animation: voucherFadeUp 0.5s ease 0.4s both;
}

.voucher-success-subtitle {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    margin-bottom: var(--space-lg);
    animation: voucherFadeUp 0.5s ease 0.5s both;
}

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

.voucher-success-details {
    background: var(--color-cream-light);
    border: 1px solid var(--color-cream-dark);
    border-radius: var(--radius-lg);
    padding: var(--space-md) var(--space-lg);
    margin-bottom: var(--space-lg);
    animation: voucherFadeUp 0.5s ease 0.6s both;
}

.voucher-success-detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.6rem 0;
}

.voucher-success-detail-row:not(:last-child) {
    border-bottom: 1px solid var(--color-cream-dark);
}

.detail-label {
    font-size: 0.82rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 500;
}

.detail-value {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-text);
}

.detail-code {
    font-family: 'SF Mono', 'Fira Code', 'Consolas', monospace;
    font-size: 1.05rem;
    color: var(--color-gold-dark);
    background: var(--color-white);
    padding: 0.2rem 0.6rem;
    border-radius: var(--radius-sm);
    border: 1px solid var(--color-gold-light);
    letter-spacing: 0.1em;
}

.voucher-success-message {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem var(--space-md);
    background: linear-gradient(135deg, rgba(184, 149, 107, 0.08) 0%, rgba(184, 149, 107, 0.04) 100%);
    border: 1px solid rgba(184, 149, 107, 0.2);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-lg);
    animation: voucherFadeUp 0.5s ease 0.7s both;
}

.voucher-success-message svg {
    color: var(--color-gold);
    flex-shrink: 0;
}

.voucher-success-message span {
    font-size: 0.85rem;
    color: var(--color-text-light);
}

.voucher-success-btn {
    width: 100%;
    padding: 0.9rem var(--space-lg);
    font-size: 1rem;
    font-weight: 600;
    animation: voucherFadeUp 0.5s ease 0.8s both;
    background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-dark) 100%);
    border-color: var(--color-gold);
    transition: all 0.3s ease;
}

.voucher-success-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(184, 149, 107, 0.4);
}

.celebration-particles {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200px;
    height: 200px;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.celebration-particle {
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    top: 50%;
    left: 50%;
}

@keyframes particleBurst {
    0% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(0);
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: translate(var(--tx), var(--ty)) scale(1);
    }
}

@media (max-width: 768px) {
    .voucher-success-content {
        padding: var(--space-xl) var(--space-md) var(--space-md);
        max-width: 95%;
    }

    .voucher-success-icon {
        width: 64px;
        height: 64px;
    }

    .voucher-success-icon svg {
        width: 36px;
        height: 36px;
    }

    .voucher-success-details {
        padding: var(--space-sm) var(--space-md);
    }

    .voucher-success-detail-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.2rem;
        padding: 0.5rem 0;
    }

    .detail-value {
        font-size: 0.9rem;
    }
}

/* ============================================
   Voucher Section
   ============================================ */
.voucher {
    position: relative;
    padding: var(--space-2xl) 0;
    overflow: hidden;
}

.voucher-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.voucher-parallax {
    position: absolute;
    top: -10%;
    left: 0;
    width: 100%;
    height: 120%;
}

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

.voucher-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(74, 69, 61, 0.9) 0%, rgba(74, 69, 61, 0.7) 100%);
}

.voucher-content {
    position: relative;
    text-align: center;
    color: var(--color-cream);
}

.voucher-description {
    font-size: var(--fs-sm);
    color: var(--color-cream-dark);
    max-width: 550px;
    margin: 0 auto var(--space-md);
    line-height: 1.5;
}

.voucher-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
    max-width: 800px;
    margin: 0 auto var(--space-2xl);
}

.voucher-card {
    position: relative;
    background: var(--color-white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    text-align: left;
    color: var(--color-text);
    transition: all var(--transition-slow);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.voucher-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.voucher-card--featured {
    border: 3px solid var(--color-gold);
}

.voucher-card-badge {
    position: absolute;
    top: var(--space-sm);
    right: var(--space-sm);
    padding: var(--space-xs) var(--space-sm);
    background: var(--color-gold);
    color: var(--color-white);
    font-size: var(--fs-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: var(--radius-full);
}

.voucher-card-header {
    padding: var(--space-lg) var(--space-lg) var(--space-sm);
    border-bottom: 1px solid var(--color-beige);
}

.voucher-type {
    font-family: var(--font-heading);
    font-size: var(--fs-lg);
}

.voucher-card-body {
    padding: var(--space-md) var(--space-lg);
    flex: 1;
    display: flex;
    flex-direction: column;
}

.voucher-card-body > p {
    font-size: var(--fs-xs);
    color: var(--color-text-muted);
    margin-bottom: var(--space-md);
}

.voucher-amounts {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
}

.voucher-amount {
    padding: var(--space-sm) var(--space-md);
    background: var(--color-cream-light);
    border: 2px solid transparent;
    border-radius: var(--radius-md);
    font-size: var(--fs-base);
    font-weight: 600;
    color: var(--color-text);
    transition: all var(--transition-fast);
}

.voucher-amount:hover,
.voucher-amount.selected {
    border-color: var(--color-gold);
    background: var(--color-cream);
}

.voucher-custom {
    margin-bottom: var(--space-md);
}

.voucher-custom label {
    display: block;
    font-size: var(--fs-xs);
    color: var(--color-text-muted);
    margin-bottom: var(--space-xs);
}

.voucher-custom-input {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.voucher-custom-input input {
    flex: 1;
    padding: var(--space-sm) var(--space-md);
    background: var(--color-cream-light);
    border: 2px solid transparent;
    border-radius: var(--radius-md);
    font-size: var(--fs-sm);
}

.voucher-custom-input input:focus {
    outline: none;
    border-color: var(--color-gold);
}

.voucher-custom-input span {
    font-size: var(--fs-base);
    font-weight: 600;
    color: var(--color-text-muted);
}

.voucher-packages {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.voucher-packages li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-sm) var(--space-md);
    background: var(--color-cream-light);
    border-radius: var(--radius-md);
    font-size: var(--fs-xs);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.voucher-packages li:hover {
    background: var(--color-cream);
}

.voucher-packages .price {
    font-family: var(--font-heading);
    font-size: var(--fs-base);
    color: var(--color-gold);
}

.voucher-card > .btn {
    margin: auto var(--space-lg) var(--space-lg);
    width: calc(100% - var(--space-lg) * 2);
}

.voucher-features {
    display: flex;
    justify-content: center;
    gap: var(--space-lg);
    flex-wrap: wrap;
    margin-bottom: var(--space-md);
}

.voucher-feature {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    color: var(--color-cream);
    font-size: var(--fs-xs);
}

.voucher-feature svg {
    color: var(--color-gold-light);
    width: 16px;
    height: 16px;
}

@media (max-width: 768px) {
    .voucher-features {
        flex-direction: row;
        align-items: center;
        gap: var(--space-md);
    }
}

/* ============================================
   Voucher Wizard - Schritt-für-Schritt Formular
   ============================================ */
.voucher-wizard-container {
    background: var(--color-white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    margin-top: var(--space-lg);
}

/* Wizard Progress Bar */
.voucher-wizard-progress {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-sm) var(--space-lg);
    background: linear-gradient(135deg, var(--color-cream-light) 0%, var(--color-white) 100%);
    border-bottom: 1px solid var(--color-beige);
    gap: var(--space-xs);
}

.wizard-step {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    opacity: 0.5;
    transition: all var(--transition-base);
}

.wizard-step.active {
    opacity: 1;
}

.wizard-step.completed {
    opacity: 1;
    cursor: pointer;
}

.wizard-step.completed:hover .wizard-step-number {
    transform: scale(1.1);
    box-shadow: 0 2px 8px rgba(122, 154, 122, 0.3);
}

.wizard-step.completed .wizard-step-number {
    background: var(--color-green);
    border-color: var(--color-green);
}

.wizard-step-number {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--color-white);
    border: 2px solid var(--color-beige);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: var(--fs-xs);
    font-weight: 600;
    color: var(--color-text-muted);
    transition: all var(--transition-base);
}

.wizard-step.active .wizard-step-number {
    background: var(--color-gold);
    border-color: var(--color-gold);
    color: var(--color-white);
}

.wizard-step-label {
    font-size: var(--fs-xs);
    font-weight: 500;
    color: var(--color-text-muted);
    display: none;
}

.wizard-step.active .wizard-step-label {
    color: var(--color-text);
}

.wizard-step-connector {
    width: 20px;
    height: 2px;
    background: var(--color-beige);
    flex-shrink: 0;
}

/* Wizard Content Layout */
.voucher-wizard-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 480px;
}

/* Wizard Form */
.voucher-wizard-form {
    padding: var(--space-lg) var(--space-xl);
    background: var(--color-white);
    color: var(--color-text);
}

.wizard-form-step {
    display: none;
    animation: fadeIn 0.3s ease;
}

.wizard-form-step.active {
    display: block;
}

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

.wizard-form-title {
    font-family: var(--font-heading);
    font-size: var(--fs-lg);
    color: var(--color-text);
    margin-bottom: var(--space-md);
}

/* Voucher Type Selector */
.voucher-type-selector {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
}

.voucher-type-option input {
    display: none;
}

.voucher-type-card {
    background: var(--color-cream-light);
    border: 2px solid transparent;
    border-radius: var(--radius-md);
    padding: var(--space-sm) var(--space-md);
    text-align: center;
    cursor: pointer;
    transition: all var(--transition-base);
}

.voucher-type-card:hover {
    border-color: var(--color-gold-light);
    background: var(--color-cream);
}

.voucher-type-option input:checked + .voucher-type-card {
    border-color: var(--color-gold);
    background: var(--color-cream);
    box-shadow: 0 0 0 3px rgba(184, 149, 107, 0.15);
}

.voucher-type-card svg {
    color: var(--color-gold);
    margin-bottom: var(--space-xs);
    width: 24px;
    height: 24px;
}

.voucher-type-card .type-name {
    display: block;
    font-family: var(--font-heading);
    font-size: var(--fs-sm);
    font-weight: 500;
    color: var(--color-text);
    margin-bottom: 2px;
}

.voucher-type-card .type-desc {
    display: block;
    font-size: 11px;
    color: var(--color-text-muted);
}

/* Value Options */
.voucher-value-options,
.voucher-treatment-options {
    animation: fadeIn 0.3s ease;
}

.options-label {
    font-size: var(--fs-xs);
    color: var(--color-text-muted);
    margin-bottom: var(--space-sm);
}

.voucher-amounts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xs);
    margin-bottom: var(--space-md);
}

.voucher-amount-btn {
    padding: var(--space-sm) var(--space-xs);
    background: var(--color-cream-light);
    border: 2px solid transparent;
    border-radius: var(--radius-md);
    font-size: var(--fs-sm);
    font-weight: 600;
    color: var(--color-text);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.voucher-amount-btn:hover {
    border-color: var(--color-gold-light);
    background: var(--color-cream);
}

.voucher-amount-btn.selected {
    border-color: var(--color-gold);
    background: var(--color-gold);
    color: var(--color-white);
}

/* Custom Amount */
.voucher-custom-amount {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    flex-wrap: wrap;
}

.voucher-custom-amount label {
    font-size: var(--fs-xs);
    color: var(--color-text-muted);
}

.custom-amount-input {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    background: var(--color-cream-light);
    border: 2px solid transparent;
    border-radius: var(--radius-md);
    padding: var(--space-xs) var(--space-sm);
    transition: all var(--transition-fast);
}

.custom-amount-input:focus-within {
    border-color: var(--color-gold);
    background: var(--color-white);
}

.custom-amount-input input {
    width: 60px;
    border: none;
    background: transparent;
    font-size: var(--fs-sm);
    font-weight: 600;
    color: var(--color-text);
    text-align: right;
}

.custom-amount-input input:focus {
    outline: none;
}

.currency-symbol {
    font-size: var(--fs-sm);
    font-weight: 600;
    color: var(--color-text-muted);
}

/* Treatment Select */
.treatment-select-wrapper {
    position: relative;
}

.treatment-select {
    width: 100%;
    padding: 0;
    background: var(--color-cream-light);
    border: none;
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: var(--fs-xs);
    color: var(--color-text);
    cursor: pointer;
    transition: all var(--transition-fast);
    
    /* Fixe Größe mit 10 sichtbaren Zeilen */
    height: auto;
    overflow-y: auto;
}

.treatment-select:focus {
    outline: none;
    border: none;
    box-shadow: none;
}

/* Optgroup Labels - Kategorien dezent hervorheben wie Wertgutschein */
.treatment-select optgroup {
    font-weight: 600;
    font-size: var(--fs-xs);
    color: var(--color-text-muted);
    font-style: normal;
    background-color: var(--color-cream);
    padding: var(--space-xs);
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

/* ALLE Options einheitlich - passend zum Wertgutschein-Stil */
.treatment-select option {
    padding: var(--space-sm) var(--space-md) !important;
    font-size: var(--fs-xs) !important;
    font-weight: 500 !important;
    font-style: normal !important;
    text-align: left !important;
    cursor: pointer;
    background-color: var(--color-cream-light) !important;
    color: var(--color-text) !important;
}

/* Nur die allererste Option (Platzhalter) */
.treatment-select > option:first-child {
    font-weight: 500 !important;
    font-style: normal !important;
    color: var(--color-text-muted) !important;
    text-align: center !important;
    background-color: var(--color-cream) !important;
    padding: var(--space-sm) !important;
}

.treatment-select option:hover {
    background-color: var(--color-cream) !important;
}

.treatment-select option:checked,
.treatment-select option:focus {
    background-color: var(--color-beige) !important;
    color: var(--color-text) !important;
}

/* Remove arrow indicator since we're showing the list */
.treatment-select-wrapper::after {
    display: none;
}

/* Wizard Form Fields */
.voucher-wizard-form .form-group {
    margin-bottom: var(--space-md);
}

.voucher-wizard-form .form-group label {
    display: block;
    font-size: var(--fs-xs);
    font-weight: 500;
    color: var(--color-text);
    margin-bottom: 4px;
}

.voucher-wizard-form .form-group input,
.voucher-wizard-form .form-group textarea {
    width: 100%;
    padding: var(--space-sm);
    background: var(--color-cream-light);
    border: 2px solid transparent;
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: var(--fs-xs);
    color: var(--color-text);
    transition: all var(--transition-fast);
}

.voucher-wizard-form .form-group textarea {
    resize: none;
}

.voucher-wizard-form .form-group input:focus,
.voucher-wizard-form .form-group textarea:focus {
    outline: none;
    border-color: var(--color-gold);
    background: var(--color-white);
}

.voucher-wizard-form .form-group input::placeholder,
.voucher-wizard-form .form-group textarea::placeholder {
    color: var(--color-text-muted);
}

.voucher-wizard-form .form-hint {
    display: block;
    font-size: 10px;
    color: var(--color-text-muted);
    margin-top: 2px;
}

.voucher-wizard-form .char-counter {
    text-align: right;
}

.voucher-wizard-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-sm);
}

.voucher-wizard-form .form-checkbox {
    margin-top: var(--space-sm);
}

.voucher-wizard-form .form-checkbox label {
    display: flex;
    align-items: flex-start;
    gap: var(--space-xs);
    cursor: pointer;
    font-size: var(--fs-xs);
}

.voucher-wizard-form .form-checkbox input[type="checkbox"] {
    width: auto;
    margin-top: 2px;
    accent-color: var(--color-gold);
}

.voucher-wizard-form .form-checkbox span {
    flex: 1;
}

.voucher-wizard-form .form-checkbox a {
    color: var(--color-gold);
    text-decoration: underline;
}

/* Wizard Navigation */
.wizard-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: var(--space-lg);
    padding-top: var(--space-md);
    border-top: 1px solid var(--color-beige);
}

.wizard-prev-btn,
.wizard-next-btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    padding: var(--space-xs) var(--space-md);
    font-size: var(--fs-xs);
    cursor: pointer;
}

.wizard-prev-btn {
    background: var(--color-cream-light, #f5f0e8);
    color: var(--color-text, #4A453D);
    border: 1.5px solid var(--color-beige, #e0d5c5);
    border-radius: var(--radius-md, 8px);
}

.wizard-prev-btn:hover {
    background: var(--color-beige, #e0d5c5);
    border-color: var(--color-gold, #B8956B);
    color: var(--color-gold, #B8956B);
}

.wizard-prev-btn svg,
.wizard-next-btn svg {
    width: 16px;
    height: 16px;
}

/* Order Summary */
.order-summary {
    background: var(--color-cream-light);
    border-radius: var(--radius-md);
    padding: var(--space-sm) var(--space-md);
    margin-bottom: var(--space-md);
}

.order-summary--compact {
    padding: var(--space-xs) var(--space-md);
    margin-bottom: var(--space-sm);
}

.summary-compact-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.25rem 0.75rem;
    font-size: var(--fs-xs);
    color: var(--color-text);
    padding: 0.35rem 0;
}

.order-summary--compact .summary-total-section {
    margin-top: 0.25rem;
    padding-top: 0.4rem;
}

.order-summary--compact .summary-total {
    font-size: var(--fs-md);
}

.summary-section {
    margin-bottom: var(--space-xs);
    padding-bottom: var(--space-xs);
    border-bottom: 1px solid var(--color-beige);
}

.summary-section:last-of-type {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.summary-section h4 {
    font-family: var(--font-heading);
    font-size: var(--fs-xs);
    color: var(--color-text-muted);
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    font-size: var(--fs-xs);
    color: var(--color-text);
    margin-bottom: 2px;
}

.summary-item:last-child {
    margin-bottom: 0;
}

.summary-total-section {
    margin-top: var(--space-xs);
    padding-top: var(--space-xs);
    border-top: 2px solid var(--color-gold-light);
}

.summary-total {
    display: flex;
    justify-content: space-between;
    font-family: var(--font-heading);
    font-size: var(--fs-lg);
    font-weight: 600;
}

.summary-total span:last-child {
    color: var(--color-gold);
}

/* Payment Section */
.payment-section {
    text-align: center;
    padding: var(--space-sm) var(--space-md);
    background: var(--color-cream-light);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-md);
}

#paypal-button-container {
    max-width: 500px;
    margin: 0 auto;
    min-height: 60px;
}

[data-wizard-step="4"].active {
    max-width: 560px;
    margin: 0 auto;
}

.payment-info {
    font-size: var(--fs-xs);
    color: var(--color-text-muted);
    margin-bottom: var(--space-sm);
}

.voucher-buy-btn {
    width: 100%;
    padding: var(--space-sm) var(--space-md);
    font-size: var(--fs-sm);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xs);
    margin-bottom: var(--space-sm);
    letter-spacing: 0.02em;
}

.voucher-buy-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.payment-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xs);
    font-size: 10px;
    color: var(--color-text-muted);
}

.payment-note svg {
    color: var(--color-green);
    width: 14px;
    height: 14px;
}

/* ============================================
   Voucher Preview
   ============================================ */
.voucher-preview-wrapper {
    background: linear-gradient(135deg, var(--color-cream) 0%, var(--color-cream-dark) 100%);
    padding: var(--space-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.preview-title {
    font-family: var(--font-heading);
    font-size: var(--fs-sm);
    color: var(--color-text-muted);
    margin-bottom: var(--space-sm);
    text-align: center;
}

.voucher-preview {
    width: 100%;
    max-width: 300px;
    aspect-ratio: 3 / 4;
    background: 
        linear-gradient(145deg, #FDFBF8 0%, #F7F3ED 50%, #EDE6DB 100%);
    border-radius: var(--radius-lg);
    box-shadow: 
        0 20px 50px rgba(74, 69, 61, 0.25),
        0 0 0 1px rgba(184, 149, 107, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    position: relative;
    overflow: hidden;
}

.voucher-preview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, 
        transparent, 
        var(--color-gold) 20%, 
        var(--color-gold) 80%, 
        transparent);
    opacity: 0.6;
}

.voucher-preview-inner {
    position: absolute;
    inset: 0;
    padding: var(--space-md);
    display: flex;
    flex-direction: column;
    text-align: center;
}

/* Decorative Corners - Elegant Gold */
.voucher-corner {
    position: absolute;
    width: 30px;
    height: 30px;
    border: 2px solid var(--color-gold);
    opacity: 0.7;
}

.voucher-corner--tl {
    top: 12px;
    left: 12px;
    border-right: none;
    border-bottom: none;
    border-top-left-radius: 4px;
}

.voucher-corner--tr {
    top: 12px;
    right: 12px;
    border-left: none;
    border-bottom: none;
    border-top-right-radius: 4px;
}

.voucher-corner--bl {
    bottom: 12px;
    left: 12px;
    border-right: none;
    border-top: none;
    border-bottom-left-radius: 4px;
}

.voucher-corner--br {
    bottom: 12px;
    right: 12px;
    border-left: none;
    border-top: none;
    border-bottom-right-radius: 4px;
}

/* Preview Header */
.voucher-preview-header {
    margin-bottom: var(--space-xs);
}

.voucher-preview-logo {
    height: 45px;
    width: auto;
    margin: 0 auto;
    filter: drop-shadow(0 2px 4px rgba(74, 69, 61, 0.1));
}

/* Preview Title */
.voucher-preview-title {
    margin-bottom: var(--space-xs);
}

.voucher-preview-label {
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-gold);
    text-shadow: 0 1px 2px rgba(184, 149, 107, 0.15);
}

/* Preview Value */
.voucher-preview-value {
    margin-bottom: var(--space-sm);
}

.voucher-preview-value span {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 6vw, 2.25rem);
    font-weight: 500;
    color: var(--color-gold);
    line-height: 1;
    text-shadow: 0 2px 4px rgba(184, 149, 107, 0.2);
}

/* Treatment Name - Prominent wie Wert anzeigen */
.voucher-preview-treatment {
    margin-bottom: var(--space-sm);
}

.voucher-preview-treatment span {
    font-size: 9px;
    color: var(--color-text-muted);
    display: block;
    margin-bottom: var(--space-xs);
}

.voucher-preview-treatment strong {
    font-family: var(--font-heading);
    font-size: clamp(0.9rem, 3vw, 1.1rem);
    font-weight: 500;
    color: var(--color-gold);
    line-height: 1.2;
    display: block;
}

/* Preview Recipient */
.voucher-preview-recipient {
    margin-bottom: var(--space-sm);
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.recipient-label {
    font-size: 10px;
    color: var(--color-text-muted);
    display: block;
    margin-bottom: 2px;
    letter-spacing: 0.05em;
}

.recipient-name {
    font-family: var(--font-heading);
    font-size: var(--fs-md);
    font-style: italic;
    font-weight: 500;
    color: var(--color-text);
    text-shadow: 0 1px 2px rgba(74, 69, 61, 0.08);
}

/* Preview Message */
.voucher-preview-message {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.8) 0%, rgba(247, 243, 237, 0.9) 100%);
    border-radius: var(--radius-sm);
    padding: var(--space-sm);
    margin-bottom: var(--space-sm);
    max-height: 70px;
    overflow-y: auto;
    border: 1px solid rgba(184, 149, 107, 0.15);
}

.voucher-preview-message p {
    font-size: 10px;
    font-style: italic;
    color: var(--color-text-light);
    line-height: 1.5;
    margin: 0;
    word-wrap: break-word;
}

/* Preview From */
.voucher-preview-from {
    font-size: 10px;
    color: var(--color-text-muted);
    margin-bottom: var(--space-sm);
    letter-spacing: 0.03em;
}

.voucher-preview-from span:last-child {
    font-weight: 600;
    font-style: italic;
    color: var(--color-text);
    margin-left: var(--space-xs);
}

/* Preview Footer */
.voucher-preview-footer {
    display: flex;
    justify-content: space-between;
    font-size: 9px;
    color: var(--color-text-muted);
    padding-top: var(--space-sm);
    border-top: 1px solid rgba(184, 149, 107, 0.3);
    margin-bottom: var(--space-xs);
}

.voucher-preview-footer strong {
    display: block;
    font-weight: 600;
    color: var(--color-gold-dark);
    font-size: 10px;
}

/* Preview Contact */
.voucher-preview-contact {
    font-size: 8px;
    color: var(--color-text-muted);
    display: flex;
    flex-direction: column;
    gap: 0;
}

.preview-note {
    font-size: 10px;
    color: var(--color-text-muted);
    margin-top: var(--space-sm);
    text-align: center;
}

/* ============================================
   Voucher Wizard Responsive
   ============================================ */
@media (min-width: 769px) {
    .wizard-step-label {
        display: block;
    }
}

@media (max-width: 1024px) {
    .voucher-wizard-content {
        grid-template-columns: 1fr;
    }
    
    .voucher-preview-wrapper {
        order: -1;
        padding: var(--space-md);
    }
    
    .voucher-preview {
        max-width: 200px;
        aspect-ratio: 3 / 4;
    }
}

@media (max-width: 768px) {
    .voucher-wizard-progress {
        padding: var(--space-sm);
    }
    
    .wizard-step-connector {
        width: 12px;
    }
    
    .voucher-type-selector {
        grid-template-columns: 1fr;
    }
    
    .voucher-amounts-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .voucher-wizard-form .form-row {
        grid-template-columns: 1fr;
    }
    
    .voucher-wizard-form {
        padding: var(--space-md);
    }
}

@media (max-width: 480px) {
    .voucher-preview {
        max-width: 180px;
    }
    
    .voucher-preview-logo {
        height: 35px;
    }
    
    .voucher-preview-value span {
        font-size: 1.5rem;
    }
}

.form-hint {
    text-align: center;
    font-size: var(--fs-xs);
    color: var(--color-text-muted);
    margin-top: var(--space-sm);
}

/* ============================================
   Gallery Section
   ============================================ */
.gallery {
    background: var(--color-cream);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 250px);
    gap: var(--space-md);
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
}

.gallery-item--large {
    grid-column: span 2;
    grid-row: span 2;
}

/* Gallery Image Wrapper & Accent */
.gallery-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.gallery-image-accent {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--color-green);
    border-radius: var(--radius-lg);
    z-index: -1;
    pointer-events: none;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(74, 69, 61, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-base);
}

.gallery-overlay svg {
    color: var(--color-white);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

/* Lightbox */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: var(--z-modal);
}

.lightbox.active {
    display: flex;
}

.lightbox-close {
    position: absolute;
    top: var(--space-xl);
    right: var(--space-xl);
    color: var(--color-white);
    padding: var(--space-sm);
    transition: color var(--transition-fast);
}

.lightbox-close:hover {
    color: var(--color-gold);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: var(--color-white);
    padding: var(--space-md);
    transition: color var(--transition-fast);
}

.lightbox-nav:hover {
    color: var(--color-gold);
}

.lightbox-prev {
    left: var(--space-xl);
}

.lightbox-next {
    right: var(--space-xl);
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 85vh;
    border-radius: var(--radius-md);
}

@media (max-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }
    
    .gallery-item--large {
        grid-column: span 2;
        grid-row: span 1;
        height: 300px;
    }
    
    .gallery-item:not(.gallery-item--large) {
        height: 200px;
    }
}

@media (max-width: 640px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-item--large {
        grid-column: span 1;
    }
    
    /* Kleinere Akzente auf mobilen Geräten */
    .gallery-image-accent {
        top: -12px;
        left: -12px;
    }
}

/* ============================================
   Trust Section
   ============================================ */
.trust {
    background: var(--color-cream-light);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-xl);
    margin-bottom: var(--space-4xl);
}

.trust-card {
    text-align: center;
    padding: var(--space-2xl);
    background: var(--color-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-slow);
}

.trust-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.trust-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--space-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-green-light);
    border-radius: var(--radius-full);
    color: var(--color-green-dark);
}

.trust-card h3 {
    font-family: var(--font-body);
    font-size: var(--fs-lg);
    font-weight: 600;
    margin-bottom: var(--space-md);
}

.trust-card p {
    font-size: var(--fs-sm);
    color: var(--color-text-light);
}

/* Testimonials */
.testimonials {
    background: var(--color-white);
    border-radius: var(--radius-xl);
    padding: var(--space-3xl);
    box-shadow: var(--shadow-md);
}

.testimonials-title {
    text-align: center;
    font-size: var(--fs-xl);
    margin-bottom: var(--space-2xl);
}

.testimonials-slider {
    position: relative;
    overflow: hidden;
}

.testimonial {
    display: none;
    text-align: center;
    animation: fadeIn 0.5s ease;
}

.testimonial.active {
    display: block;
}

.testimonial-content {
    max-width: 700px;
    margin: 0 auto var(--space-xl);
}

.testimonial-content p {
    font-family: var(--font-heading);
    font-size: var(--fs-xl);
    font-style: italic;
    line-height: 1.6;
    color: var(--color-text);
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.author-name {
    font-weight: 600;
    color: var(--color-text);
}

.author-location {
    font-size: var(--fs-sm);
    color: var(--color-text-muted);
}

.testimonials-nav {
    display: flex;
    justify-content: center;
    gap: var(--space-sm);
    margin-top: var(--space-xl);
}

.testimonial-dot {
    width: 10px;
    height: 10px;
    border-radius: var(--radius-full);
    background: var(--color-beige);
    transition: all var(--transition-fast);
}

.testimonial-dot:hover {
    background: var(--color-sand);
}

.testimonial-dot.active {
    background: var(--color-gold);
    width: 30px;
}

@media (max-width: 1024px) {
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .trust-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials {
        padding: var(--space-xl);
    }
}

/* ============================================
   Contact Section
   ============================================ */
.contact {
    background: var(--color-cream);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4xl);
}

.contact-details {
    margin-bottom: var(--space-2xl);
}

.contact-item {
    display: flex;
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
}

.contact-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-green-light);
    border-radius: var(--radius-md);
    color: var(--color-green-dark);
}

.contact-text h4 {
    font-family: var(--font-body);
    font-size: var(--fs-base);
    font-weight: 600;
    margin-bottom: var(--space-xs);
}

.contact-text p {
    font-size: var(--fs-sm);
    color: var(--color-text-light);
    line-height: 1.6;
}

.contact-text a {
    color: var(--color-gold);
}

.contact-text a:hover {
    text-decoration: underline;
}

.contact-cta {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
}

/* Map Wrapper & Accent */
.map-wrapper {
    position: relative;
    height: 100%;
}

.map-container {
    height: 100%;
    min-height: 400px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.map-container iframe {
    border-radius: var(--radius-lg);
}

.map-accent {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--color-green);
    border-radius: var(--radius-lg);
    z-index: -1;
    pointer-events: none;
}

@media (max-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: var(--space-3xl);
    }
    
    .map-container {
        min-height: 300px;
    }
    
    /* Kleinere Akzente auf Tablets */
    .map-accent {
        top: -15px;
        right: -15px;
    }
}

@media (max-width: 640px) {
    .map-accent {
        top: -10px;
        right: -10px;
    }
}

/* ============================================
   CTA Section
   ============================================ */
.cta-section {
    position: relative;
    padding: var(--space-4xl) 0;
    overflow: hidden;
    background: transparent;
}

.cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.cta-parallax {
    position: absolute;
    top: -15%;
    left: 0;
    width: 100%;
    height: 150%;
}

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

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(184, 149, 107, 0.65) 0%, rgba(184, 149, 107, 0.55) 100%);
    z-index: 1;
}

.cta-content {
    position: relative;
    text-align: center;
    color: var(--color-white);
    z-index: 2;
}

.cta-content h2 {
    font-size: var(--fs-3xl);
    color: var(--color-white);
    margin-bottom: var(--space-md);
}

.cta-content p {
    font-size: var(--fs-lg);
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto var(--space-2xl);
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: var(--space-md);
    flex-wrap: wrap;
}

.cta-section .btn-primary {
    background: var(--color-white);
    color: var(--color-gold);
    border-color: var(--color-white);
}

.cta-section .btn-primary:hover {
    background: var(--color-cream);
    border-color: var(--color-cream);
}

.cta-section .btn-secondary {
    color: var(--color-white);
    border-color: var(--color-white);
}

.cta-section .btn-secondary:hover {
    background: var(--color-white);
    color: var(--color-gold);
}

/* ============================================
   Footer
   ============================================ */
.footer {
    background: var(--color-text);
    color: var(--color-cream-dark);
    padding: var(--space-4xl) 0 var(--space-xl);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: var(--space-3xl);
    margin-bottom: var(--space-3xl);
}

.footer-logo {
    display: inline-block;
    margin-bottom: var(--space-lg);
}

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

.footer-brand {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-brand p {
    font-size: var(--fs-sm);
    line-height: 1.8;
    opacity: 0.8;
}

.footer h4 {
    font-family: var(--font-body);
    font-size: var(--fs-sm);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-cream);
    margin-bottom: var(--space-lg);
}

.footer-nav ul {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.footer-nav a {
    font-size: var(--fs-sm);
    opacity: 0.8;
    transition: opacity var(--transition-fast);
}

.footer-nav a:hover {
    opacity: 1;
    color: var(--color-gold-light);
}

.footer-contact p,
.footer-hours p {
    font-size: var(--fs-sm);
    line-height: 1.8;
    opacity: 0.8;
}

.footer-contact a:hover {
    color: var(--color-gold-light);
}

/* Footer Social Media */
.footer-social-links {
    display: flex;
    gap: var(--space-md);
    margin-bottom: var(--space-md);
}

.footer-social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    color: var(--color-cream);
    transition: all var(--transition-base);
}

.footer-social-links a:hover {
    background: var(--color-green);
    color: var(--color-white);
    transform: translateY(-3px);
}

.footer-social-text {
    font-size: var(--fs-xs);
    line-height: 1.6;
    opacity: 0.7;
}

.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: var(--space-lg);
    padding-top: var(--space-xl);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-legal {
    display: flex;
    gap: var(--space-xl);
}

.footer-legal a {
    font-size: var(--fs-sm);
    opacity: 0.8;
    transition: opacity var(--transition-fast);
}

.footer-legal a:hover {
    opacity: 1;
}

.footer-cta {
    display: flex;
    gap: var(--space-md);
}

.footer-cta .btn-primary {
    background: var(--color-gold);
    border-color: var(--color-gold);
}

.footer-cta .btn-outline {
    color: var(--color-cream-dark);
    border-color: rgba(255, 255, 255, 0.3);
}

.footer-cta .btn-outline:hover {
    background: var(--color-gold);
    border-color: var(--color-gold);
    color: var(--color-white);
}

.footer-copyright {
    width: 100%;
    text-align: center;
    font-size: var(--fs-xs);
    opacity: 0.6;
    margin-top: var(--space-lg);
}

.footer-powered {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: 0.25rem;
    margin-top: 0.5rem;
    font-size: 0.65rem;
    opacity: 0.5;
    text-align: center;
}

.footer-powered a {
    display: inline-flex;
    align-items: center;
    transition: opacity var(--transition-fast);
}

.footer-powered a:hover {
    opacity: 0.8;
}

.jusatech-logo {
    height: 14px;
    width: auto;
    filter: brightness(0) saturate(100%) invert(55%) sepia(10%) saturate(400%) hue-rotate(15deg);
    transition: filter var(--transition-fast);
}

.footer-powered a:hover .jusatech-logo {
    filter: brightness(0) saturate(100%) invert(70%) sepia(15%) saturate(600%) hue-rotate(15deg);
}

@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-brand {
        grid-column: span 2;
    }
    
    .footer-logo img {
        height: 140px;
    }
    
    .footer-social {
        grid-column: span 2;
    }
}

@media (max-width: 640px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-brand {
        grid-column: span 1;
        text-align: center;
    }
    
    .footer-logo img {
        height: 100px;
        width: auto;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-legal {
        justify-content: center;
    }
}

/* ============================================
   Cookie Banner (DSGVO-konform)
   ============================================ */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--color-white);
    box-shadow: 0 -4px 20px rgba(74, 69, 61, 0.15);
    padding: var(--space-lg) var(--space-md);
    z-index: 10000;
    transform: translateY(100%);
    transition: transform var(--transition-slower);
}

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

.cookie-content {
    max-width: var(--container-max);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-lg);
}

.cookie-text {
    flex: 1;
}

.cookie-text p {
    font-size: var(--fs-sm);
    color: var(--color-text-light);
    line-height: 1.5;
    margin: 0 0 var(--space-xs) 0;
}

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

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

.cookie-text a {
    color: var(--color-gold);
    text-decoration: underline;
}

.cookie-actions {
    display: flex;
    gap: var(--space-sm);
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .cookie-banner {
        bottom: 0;
        padding: var(--space-md);
        padding-bottom: calc(var(--space-md) + 80px);
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: var(--space-md);
    }
    
    .cookie-text p {
        font-size: 12px;
        line-height: 1.4;
    }
    
    .cookie-actions {
        width: 100%;
        justify-content: center;
        gap: var(--space-sm);
    }
    
    .cookie-actions .btn {
        flex: 1;
        padding: var(--space-sm) var(--space-md);
        font-size: 12px;
    }
}

/* ============================================
   Google Maps Platzhalter (DSGVO)
   ============================================ */
.map-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-cream);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.map-placeholder.hidden {
    display: none;
}

.map-placeholder-content {
    text-align: center;
    padding: var(--space-xl);
    max-width: 300px;
}

.map-placeholder-content svg {
    color: var(--color-gold);
    margin-bottom: var(--space-md);
}

.map-placeholder-content p {
    font-size: var(--fs-sm);
    color: var(--color-text-light);
    margin: 0 0 var(--space-md) 0;
    line-height: 1.5;
}

.map-placeholder-content p:first-of-type {
    color: var(--color-text);
    margin-bottom: var(--space-sm);
}

.map-container {
    position: relative;
}

/* ============================================
   Scroll to Top Button
   ============================================ */
.scroll-to-top {
    position: fixed;
    bottom: var(--space-xl);
    right: var(--space-xl);
    width: 50px;
    height: 50px;
    background: var(--color-gold);
    color: var(--color-white);
    border: 2px solid var(--color-gold);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.9);
    transition: all var(--transition-base);
    z-index: 9998;
    box-shadow: var(--shadow-lg);
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.scroll-to-top.cookie-visible {
    bottom: 160px;
}

.scroll-to-top:hover {
    background: var(--color-gold-dark);
    border-color: var(--color-gold-dark);
    transform: translateY(-4px) scale(1.05);
    box-shadow: var(--shadow-xl);
}

.scroll-to-top:active {
    transform: translateY(-2px) scale(1);
}

.scroll-to-top svg {
    animation: bounceUp 2s ease-in-out infinite;
}

@keyframes bounceUp {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-4px);
    }
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        transform: translate(30px, -30px) rotate(5deg);
    }
    66% {
        transform: translate(-20px, 20px) rotate(-5deg);
    }
}

@media (max-width: 768px) {
    .scroll-to-top {
        bottom: 100px;
        right: var(--space-md);
        width: 45px;
        height: 45px;
    }
    
    .scroll-to-top.cookie-visible {
        bottom: 240px;
    }
}

@media (max-width: 480px) {
    .scroll-to-top {
        width: 42px;
        height: 42px;
    }
    
    .scroll-to-top svg {
        width: 18px;
        height: 18px;
    }
}

/* ============================================
   Reveal Animations
   ============================================ */
[data-reveal] {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-reveal="left"] {
    transform: translateX(-40px);
}

[data-reveal="right"] {
    transform: translateX(40px);
}

[data-reveal].revealed {
    opacity: 1;
    transform: translate(0);
}

/* Stagger children */
[data-reveal] > *:nth-child(1) { transition-delay: 0.1s; }
[data-reveal] > *:nth-child(2) { transition-delay: 0.2s; }
[data-reveal] > *:nth-child(3) { transition-delay: 0.3s; }
[data-reveal] > *:nth-child(4) { transition-delay: 0.4s; }
[data-reveal] > *:nth-child(5) { transition-delay: 0.5s; }
[data-reveal] > *:nth-child(6) { transition-delay: 0.6s; }

/* ============================================
   Legal Pages (Impressum, Datenschutz)
   ============================================ */
.header--solid {
    background: var(--cream);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.header--solid .nav-link {
    color: var(--text);
}

.header--solid .nav-link:hover {
    color: var(--gold);
}

.legal-page {
    padding: 140px 0 80px;
    min-height: 100vh;
    background: var(--cream);
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
}

.legal-content h1 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 2.8rem);
    font-weight: 500;
    color: var(--text);
    margin-bottom: 0.5rem;
    text-align: center;
}

.legal-subtitle {
    text-align: center;
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border);
}

.legal-toc {
    background: var(--cream);
    padding: 1.5rem 2rem;
    border-radius: 8px;
    margin-bottom: 2.5rem;
}

.legal-toc h2 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 1rem;
    color: var(--text);
}

.legal-toc ol {
    list-style: decimal;
    padding-left: 1.5rem;
    margin: 0;
    columns: 2;
    column-gap: 2rem;
}

.legal-toc li {
    margin-bottom: 0.5rem;
    break-inside: avoid;
}

.legal-toc a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

.legal-toc a:hover {
    color: var(--gold);
}

.legal-section {
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border);
}

.legal-section:last-of-type {
    border-bottom: none;
}

.legal-section h2 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--text);
    margin-bottom: 1rem;
}

.legal-section h3 {
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.legal-section p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-section ul,
.legal-section ol {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.legal-section li {
    margin-bottom: 0.5rem;
}

.legal-section a {
    color: var(--gold);
    text-decoration: none;
    transition: color 0.3s ease;
}

.legal-section a:hover {
    color: var(--gold-dark);
    text-decoration: underline;
}

.legal-section strong {
    color: var(--text);
    font-weight: 600;
}

.placeholder {
    background: linear-gradient(135deg, #fff3cd 0%, #ffeeba 100%);
    color: #856404;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-weight: 500;
}

.legal-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
    font-size: 0.95rem;
}

.legal-table th,
.legal-table td {
    padding: 0.75rem 1rem;
    text-align: left;
    border-bottom: 1px solid var(--border);
}

.legal-table th {
    background: var(--cream);
    font-weight: 600;
    color: var(--text);
}

.legal-table td {
    color: var(--text-muted);
}

.legal-todo {
    background: linear-gradient(135deg, #fff3cd 0%, #ffeeba 100%);
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #ffc107;
}

.legal-todo h2 {
    color: #856404;
}

.legal-todo ul {
    color: #856404;
}

.legal-todo li {
    color: #856404;
}

.legal-updated {
    text-align: center;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
}

.legal-updated p {
    color: var(--text-muted);
    font-size: 0.9rem;
    font-style: italic;
}

@media (max-width: 768px) {
    .legal-page {
        padding: 120px 1rem 60px;
    }
    
    .legal-content {
        padding: 1.5rem;
    }
    
    .legal-toc ol {
        columns: 1;
    }
    
    .legal-table {
        font-size: 0.85rem;
    }
    
    .legal-table th,
    .legal-table td {
        padding: 0.5rem;
    }
}

/* ============================================
   Print Styles
   ============================================ */
@media print {
    .header,
    .mobile-cta,
    .cookie-banner,
    .hero-scroll,
    .btn,
    .lightbox {
        display: none !important;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.5;
    }
    
    .section {
        padding: 2rem 0;
        page-break-inside: avoid;
    }
    
    .legal-content {
        box-shadow: none;
        padding: 0;
    }
    
    .placeholder {
        border: 2px dashed #856404;
        background: transparent;
    }
}

/* ============================================
   Grand Opening Top Banner
   Automatically hidden after April 7, 2026
   ============================================ */
.grand-opening-banner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background: linear-gradient(135deg, var(--color-gold-dark) 0%, var(--color-gold) 100%);
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.5rem 2.5rem 0.5rem 1rem;
    font-family: var(--font-body);
    font-size: var(--fs-base);
    text-align: center;
    animation: bannerSlideDown 0.5s ease-out forwards;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.grand-opening-banner.hidden {
    animation: bannerSlideUp 0.4s ease-in forwards;
    pointer-events: none;
}

@keyframes bannerSlideDown {
    from {
        opacity: 0;
        transform: translateY(-100%);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bannerSlideUp {
    from {
        opacity: 1;
        transform: translateY(0);
    }
    to {
        opacity: 0;
        transform: translateY(-100%);
    }
}

.grand-opening-banner span {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.15em;
}

.grand-opening-close {
    position: absolute;
    top: 50%;
    right: 0.5rem;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--color-white);
    font-size: 1.1rem;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.2s ease;
    padding: 0.25rem;
    line-height: 1;
}

.grand-opening-close:hover {
    opacity: 1;
}

body.has-opening-banner .header {
    top: var(--opening-banner-h, 36px);
}

body.has-opening-banner .hero {
    margin-top: var(--opening-banner-h, 36px);
}

body.has-opening-banner .legal-page {
    padding-top: calc(100px + var(--opening-banner-h, 36px));
}

@media (max-width: 600px) {
    .grand-opening-banner {
        font-size: var(--fs-xs);
        padding: 0.4rem 2rem 0.4rem 0.75rem;
        gap: 0.35rem;
    }
}
