
        :root {
            --primary-teal: #5f9595;
            --sunset-gold: #F8BD4F;
            --sunset-amber: #3EB690;
            --sunset-terracotta: #34623F;
            --sunset-earth: #2A4F3D;
            --sunset-cream: #F0FAF7;
            --sunset-sand: #E0F2E9;
        }

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

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Montserrat', sans-serif;
            font-weight: 300;
            background-color: var(--sunset-cream);
            color: var(--sunset-earth);
            line-height: 1.6;
        }

        .font-serif {
            font-family: 'Cormorant Garamond', serif;
        }

        /* Navigation */
        .header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 50;
            transition: all 0.5s ease;
            padding: 1.5rem;
        }

        .header.scrolled {
            background: rgba(240, 250, 247, 0.95);
            backdrop-filter: blur(12px);
            box-shadow: 0 4px 30px rgba(52, 98, 63, 0.1);
        }

        .nav {
            max-width: 1280px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .logo {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.75rem;
            font-weight: 300;
            letter-spacing: 0.05em;
            color: white;
            text-decoration: none;
            transition: color 0.3s;
        }

        .header.scrolled .logo {
            color: var(--sunset-terracotta);
        }

        .nav-links {
            display: none;
            gap: 2rem;
        }

        @media (min-width: 768px) {
            .nav-links {
                display: flex;
            }
        }

        .nav-link {
            color: white;
            text-decoration: none;
            font-size: 0.75rem;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            font-weight: 300;
            position: relative;
            transition: color 0.3s;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 0;
            height: 1px;
            background: currentColor;
            transition: width 0.3s;
        }

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

        .header.scrolled .nav-link {
            color: var(--sunset-earth);
        }

        .btn-book {
            display: none;
            padding: 0.75rem 1.5rem;
            font-size: 0.7rem;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            font-weight: 500;
            border: 1px solid white;
            color: white;
            text-decoration: none;
            transition: all 0.3s;
        }

        @media (min-width: 768px) {
            .btn-book {
                display: inline-block;
            }
        }

        .btn-book:hover {
            background: white;
            color: var(--sunset-terracotta);
        }

        .header.scrolled .btn-book {
            border-color: var(--sunset-terracotta);
            color: var(--sunset-terracotta);
        }

        .header.scrolled .btn-book:hover {
            background: var(--sunset-terracotta);
            color: white;
        }

        .mobile-menu-btn {
            display: block;
            background: none;
            border: none;
            cursor: pointer;
            padding: 0.5rem;
            color: white;
        }

        @media (min-width: 768px) {
            .mobile-menu-btn {
                display: none;
            }
        }

        .header.scrolled .mobile-menu-btn {
            color: var(--sunset-terracotta);
        }

        .mobile-menu-btn svg {
            width: 24px;
            height: 24px;
        }

        .mobile-menu {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background: rgba(240, 250, 247, 0.95);
            backdrop-filter: blur(12px);
            padding: 2rem 1.5rem;
            border-top: 1px solid var(--sunset-sand);
        }

        .mobile-menu.active {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .mobile-menu a {
            color: var(--sunset-earth);
            text-decoration: none;
            font-size: 0.75rem;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            font-weight: 300;
        }

        .mobile-menu .btn-book-mobile {
            border: 1px solid var(--sunset-terracotta);
            color: var(--sunset-terracotta);
            padding: 0.75rem 1.5rem;
            text-align: center;
            transition: all 0.3s;
        }

        .mobile-menu .btn-book-mobile:hover {
            background: var(--sunset-terracotta);
            color: white;
        }

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

.hero-bg {
    position: absolute;
    inset: 0;
}

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

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.2), transparent 40%, rgba(0,0,0,0.4));
}

.hero-content {
    margin-top: 1.5rem;
    position: relative;
    z-index: 10;
    text-align: center;
    color: white;
    padding: 0 1.5rem;
    max-width: 900px;
}

.hero-subtitle {
    font-size: 0.875rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    font-weight: 300;
    opacity: 0.9;
}

.hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 12rem;
}

.hero-desc {
    font-size: 0.9rem;
    font-weight: 300;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

.scroll-indicator {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    opacity: 0.7;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

@media (min-width: 768px) {
    .hero-content {
        margin-top: 10.5rem;
    }

    .hero-title {
        font-size: 4.5rem;
        margin-bottom: 18rem;
    }

    .hero-desc {
        font-size: 1.125rem;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 6rem;
    }
}
        .scroll-indicator {
            position: absolute;
            bottom: 2.5rem;
            left: 50%;
            transform: translateX(-50%);
            color: white;
            opacity: 0.7;
            animation: bounce 2s infinite;
        }

        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
            40% { transform: translateX(-50%) translateY(-10px); }
            60% { transform: translateX(-50%) translateY(-5px); }
        }

        /* Sections */
        .section {
            padding: 6rem 1.5rem;
        }

        @media (min-width: 768px) {
            .section {
                padding: 8rem 1.5rem;
            }
        }

        .section-welcome {
            background: linear-gradient(to bottom, var(--sunset-cream), var(--sunset-sand), var(--sunset-cream));
        }

        .section-contact {
            background: linear-gradient(to bottom, var(--sunset-sand), #D1EDE2, var(--sunset-cream));
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .grid-2 {
            display: grid;
            gap: 4rem;
            align-items: center;
        }

        @media (min-width: 768px) {
            .grid-2 {
                grid-template-columns: 1fr 1fr;
            }
        }

        .section-label {
            color: var(--sunset-amber);
            font-size: 0.75rem;
            letter-spacing: 0.3em;
            text-transform: uppercase;
            margin-bottom: 1rem;
            font-weight: 500;
        }

        .section-title {
            font-family: 'Cormorant Garamond', serif;
            font-size: 2.5rem;
            font-weight: 300;
            line-height: 1.2;
            margin-bottom: 2rem;
            color: var(--sunset-earth);
        }

        @media (min-width: 768px) {
            .section-title {
                font-size: 3.5rem;
            }
        }

        .section-text {
            color: rgba(42, 79, 61, 0.7);
            line-height: 1.8;
            margin-bottom: 1.5rem;
            font-size: 1.125rem;
            font-weight: 300;
        }

        .signature {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.5rem;
            color: var(--sunset-amber);
            font-style: italic;
        }

        .image-container {
            position: relative;
            height: 400px;
            box-shadow: 0 25px 50px -12px rgba(52, 98, 63, 0.2);
            overflow: hidden;
        }

        @media (min-width: 768px) {
            .image-container {
                height: 500px;
            }
        }

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

        .image-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(52, 98, 63, 0.2), transparent);
        }

        /* Buttons */
        .btn-primary {
            display: inline-block;
            background: var(--sunset-terracotta);
            color: white;
            padding: 1rem 2.5rem;
            font-size: 0.75rem;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            font-weight: 500;
            text-decoration: none;
            transition: background 0.3s;
        }

        .btn-primary:hover {
            background: var(--sunset-amber);
        }

        .btn-secondary {
            display: inline-block;
            background: var(--sunset-amber);
            color: white;
            padding: 1rem 2.5rem;
            font-size: 0.75rem;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            font-weight: 500;
            text-decoration: none;
            transition: background 0.3s;
            cursor: pointer;
            border: none;
        }

        .btn-secondary:hover {
            background: var(--sunset-terracotta);
        }

        /* Photo Collage Section */
        .collage-section {
            background: var(--primary-teal);
            padding: 4rem 1rem;
            position: relative;
            overflow: hidden;
            min-height: 700px;
        }

        @media (min-width: 768px) {
            .collage-section {
                padding: 6rem 2rem;
                min-height: 800px;
            }
        }

        .collage-wrapper {
            max-width: 1400px;
            margin: 0 auto;
            position: relative;
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
            align-items: center;
        }

        @media (min-width: 1024px) {
            .collage-wrapper {
                grid-template-columns: 1fr 1.2fr 1fr;
            }
        }

        .collage-left, .collage-right {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        @media (min-width: 768px) {
            .collage-left, .collage-right {
                gap: 2rem;
            }
        }

        .collage-image {
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0,0,0,0.2);
            transition: transform 0.5s ease;
        }

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

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

        .collage-img-1 { width: 85%; height: 200px; margin-left: auto; }
        .collage-img-2 { width: 70%; height: 180px; }
        .collage-img-3 { width: 90%; height: 280px; margin-left: auto; }
        .collage-img-4 { width: 80%; height: 200px; }
        .collage-img-5 { width: 75%; height: 220px; margin-left: auto; }
        .collage-img-6 { width: 85%; height: 180px; }

        @media (min-width: 768px) {
            .collage-img-1 { height: 280px; }
            .collage-img-2 { height: 240px; }
            .collage-img-3 { height: 350px; }
            .collage-img-4 { height: 260px; }
            .collage-img-5 { height: 300px; }
            .collage-img-6 { height: 240px; }
        }

        .collage-center {
            text-align: center;
            color: white;
            padding: 2rem 1rem;
        }

        .collage-label {
            font-size: 0.7rem;
            letter-spacing: 0.4em;
            text-transform: uppercase;
            margin-bottom: 2rem;
            opacity: 0.8;
        }

        .collage-title {
            font-family: 'Cormorant Garamond', serif;
            font-size: 2rem;
            font-weight: 300;
            line-height: 1.3;
            margin-bottom: 2rem;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        @media (min-width: 768px) {
            .collage-title { font-size: 2.8rem; }
        }

        .collage-text {
            font-size: 0.95rem;
            line-height: 1.8;
            opacity: 0.9;
            margin-bottom: 2.5rem;
            max-width: 400px;
            margin-left: auto;
            margin-right: auto;
        }

        .collage-btn {
            display: inline-block;
            background: #b08968;
            color: white;
            padding: 1rem 2.5rem;
            font-size: 0.7rem;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            text-decoration: none;
            transition: all 0.3s;
        }

        .collage-btn:hover {
            background: #9a7558;
            transform: translateY(-2px);
        }

        /* ===== APARTMENT CARDS SECTION ===== */
        .section-ferienwohnungen {
            background: linear-gradient(to bottom, var(--sunset-cream), var(--sunset-sand), var(--sunset-cream));
            padding: 6rem 1.5rem;
        }

        @media (min-width: 768px) {
            .section-ferienwohnungen {
                padding: 8rem 1.5rem;
            }
        }

        .apt-grid {
            display: grid;
            gap: 2rem;
        }

        @media (min-width: 640px) {
            .apt-grid { grid-template-columns: repeat(2, 1fr); }
        }

        @media (min-width: 1024px) {
            .apt-grid { grid-template-columns: repeat(3, 1fr); }
        }

        @media (min-width: 1024px) {
            .apt-grid .apt-card:nth-child(4) {
                grid-column: 1 / 2;
                margin-left: auto;
                margin-right: 0;
            }
            .apt-grid .apt-card:nth-child(5) {
                grid-column: 2 / 3;
                margin-left: 0;
                margin-right: auto;
            }
        }

        .apt-card {
            background: rgba(240, 250, 247, 0.9);
            border: 1px solid rgba(62, 182, 144, 0.15);
            text-decoration: none;
            display: flex;
            flex-direction: column;
            transition: all 0.4s ease;
            overflow: hidden;
            cursor: pointer;
        }

        .apt-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 30px 60px -15px rgba(52, 98, 63, 0.18);
            border-color: rgba(62, 182, 144, 0.35);
        }

        .apt-card-image {
            position: relative;
            height: 14rem;
            overflow: hidden;
        }

        .apt-card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.7s ease;
        }

        .apt-card:hover .apt-card-image img {
            transform: scale(1.06);
        }

        .apt-card-badge {
            position: absolute;
            bottom: 1rem;
            left: 1rem;
            background: rgba(240, 250, 247, 0.95);
            backdrop-filter: blur(6px);
            padding: 0.35rem 0.85rem;
            font-size: 0.7rem;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            color: var(--sunset-terracotta);
            font-weight: 500;
        }

        .apt-card-body {
            padding: 1.75rem;
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        .apt-card-house {
            font-size: 0.65rem;
            letter-spacing: 0.25em;
            text-transform: uppercase;
            color: var(--sunset-amber);
            font-weight: 500;
            margin-bottom: 0.5rem;
        }

        .apt-card-name {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.6rem;
            font-weight: 400;
            color: var(--sunset-earth);
            margin-bottom: 0.75rem;
            line-height: 1.2;
        }

        .apt-card-meta {
            display: flex;
            gap: 1rem;
            font-size: 0.8rem;
            color: rgba(42, 79, 61, 0.6);
            font-weight: 300;
            margin-bottom: 1rem;
        }

        .apt-card-meta span {
            display: flex;
            align-items: center;
            gap: 0.3rem;
        }

        .apt-card-desc {
            font-size: 0.85rem;
            color: rgba(42, 79, 61, 0.65);
            line-height: 1.6;
            font-weight: 300;
            flex: 1;
            margin-bottom: 1.25rem;
        }

        .apt-card-footer {
            display: flex;
            align-items: center;
            justify-content: space-between;
            border-top: 1px solid rgba(62, 182, 144, 0.15);
            padding-top: 1.25rem;
        }

        .apt-card-price {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.4rem;
            color: var(--sunset-earth);
            font-weight: 400;
        }

        .apt-card-price span {
            font-family: 'Montserrat', sans-serif;
            font-size: 0.75rem;
            color: rgba(42, 79, 61, 0.5);
            font-weight: 300;
        }

        .apt-card-link {
            font-size: 0.7rem;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            color: var(--sunset-amber);
            font-weight: 500;
        }

        /* Contact Info Box */
        .contact-box {
            background: rgba(240, 250, 247, 0.9);
            backdrop-filter: blur(8px);
            padding: 2.5rem;
            box-shadow: 0 10px 40px rgba(52, 98, 63, 0.1);
            border: 1px solid rgba(248, 189, 79, 0.3);
        }

        .contact-box h3 {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
            color: var(--sunset-earth);
        }

        .contact-item {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
            margin-bottom: 1rem;
            color: rgba(74, 55, 40, 0.7);
        }

        .contact-item svg {
            width: 20px;
            height: 20px;
            color: var(--sunset-amber);
            flex-shrink: 0;
            margin-top: 2px;
        }

        /* Footer */
        .footer {
            background: var(--sunset-earth);
            color: white;
            padding: 4rem 1.5rem;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 2rem;
        }

        @media (min-width: 768px) {
            .footer-content {
                flex-direction: row;
                justify-content: space-between;
            }
        }

        .footer-brand { text-align: center; }

        @media (min-width: 768px) {
            .footer-brand { text-align: left; }
        }

        .footer-brand p:first-child {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.5rem;
            margin-bottom: 0.5rem;
        }

        .footer-brand p:last-child {
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.875rem;
        }

        .footer-links {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 2rem;
        }

        .footer-link {
            color: rgba(255, 255, 255, 0.6);
            text-decoration: none;
            font-size: 0.875rem;
            transition: color 0.3s;
        }

        .footer-link:hover { color: white; }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            margin-top: 2.5rem;
            padding-top: 2.5rem;
            text-align: center;
            color: rgba(255, 255, 255, 0.4);
            font-size: 0.875rem;
        }

        /* Animations */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.7s ease-out;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .text-center { text-align: center; }
        .mb-20 { margin-bottom: 5rem; }

        /* ===========================
           MODAL STYLES
        =========================== */
        .modal-backdrop {
            position: fixed;
            inset: 0;
            z-index: 1000;
            background: rgba(18, 40, 30, 0.75);
            backdrop-filter: blur(6px);
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.4s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 1rem;
        }

        .modal-backdrop.open {
            opacity: 1;
            pointer-events: all;
        }

        .modal {
            background: var(--sunset-cream);
            width: 100%;
            max-width: 900px;
            max-height: 90vh;
            overflow-y: auto;
            position: relative;
            transform: translateY(40px) scale(0.97);
            transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
            scrollbar-width: thin;
            scrollbar-color: var(--sunset-amber) transparent;
        }

        .modal-backdrop.open .modal {
            transform: translateY(0) scale(1);
        }

        .modal::-webkit-scrollbar {
            width: 4px;
        }

        .modal::-webkit-scrollbar-track {
            background: transparent;
        }

        .modal::-webkit-scrollbar-thumb {
            background: var(--sunset-amber);
        }

        /* Close button */
        .modal-close {
            position: absolute;
            top: 1.25rem;
            right: 1.25rem;
            z-index: 10;
            width: 2.5rem;
            height: 2.5rem;
            background: rgba(240, 250, 247, 0.9);
            backdrop-filter: blur(8px);
            border: 1px solid rgba(62, 182, 144, 0.2);
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.2s;
            color: var(--sunset-earth);
        }

        .modal-close:hover {
            background: var(--sunset-terracotta);
            color: white;
            border-color: var(--sunset-terracotta);
        }

        /* Gallery */
        .modal-gallery {
            position: relative;
            height: 320px;
            background: #1a2e24;
            overflow: hidden;
            cursor: pointer;
        }

        @media (min-width: 640px) {
            .modal-gallery { height: 400px; }
        }

        .modal-gallery-track {
            display: flex;
            height: 100%;
            transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .modal-gallery-slide {
            flex-shrink: 0;
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #1a2e24;
        }

        .modal-gallery-slide img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }

        .modal-gallery-prev,
        .modal-gallery-next {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            z-index: 5;
            width: 2.5rem;
            height: 2.5rem;
            background: rgba(240, 250, 247, 0.85);
            border: none;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--sunset-earth);
            transition: all 0.2s;
        }

        .modal-gallery-prev:hover,
        .modal-gallery-next:hover {
            background: white;
        }

        .modal-gallery-prev { left: 1rem; }
        .modal-gallery-next { right: 1rem; }

        .modal-gallery-dots {
            position: absolute;
            bottom: 1rem;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 0.4rem;
        }

        .modal-gallery-dot {
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: rgba(255,255,255,0.5);
            border: none;
            cursor: pointer;
            transition: all 0.2s;
            padding: 0;
        }

        .modal-gallery-dot.active {
            background: white;
            width: 20px;
            border-radius: 3px;
        }

        .modal-gallery-counter {
            position: absolute;
            bottom: 1rem;
            right: 1rem;
            background: rgba(0,0,0,0.4);
            color: white;
            font-size: 0.7rem;
            padding: 0.25rem 0.6rem;
            letter-spacing: 0.1em;
        }

        .modal-gallery-hint {
            position: absolute;
            top: 1rem;
            left: 1rem;
            background: rgba(0,0,0,0.5);
            color: white;
            font-size: 0.65rem;
            padding: 0.35rem 0.7rem;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            display: flex;
            align-items: center;
            gap: 0.4rem;
            opacity: 0.8;
            transition: opacity 0.3s;
        }

        .modal-gallery:hover .modal-gallery-hint {
            opacity: 1;
        }

        /* Modal body */
        .modal-body {
            padding: 2rem;
        }

        @media (min-width: 640px) {
            .modal-body { padding: 2.5rem; }
        }

        .modal-header {
            margin-bottom: 2rem;
            padding-bottom: 1.5rem;
            border-bottom: 1px solid rgba(62, 182, 144, 0.15);
        }

        .modal-house-label {
            font-size: 0.65rem;
            letter-spacing: 0.3em;
            text-transform: uppercase;
            color: var(--sunset-amber);
            font-weight: 500;
            margin-bottom: 0.5rem;
        }

        .modal-title {
            font-family: 'Cormorant Garamond', serif;
            font-size: 2.2rem;
            font-weight: 300;
            color: var(--sunset-earth);
            margin-bottom: 1rem;
        }

        .modal-badges {
            display: flex;
            flex-wrap: wrap;
            gap: 0.6rem;
        }

        .modal-badge {
            display: flex;
            align-items: center;
            gap: 0.4rem;
            padding: 0.4rem 0.9rem;
            background: rgba(62, 182, 144, 0.1);
            border: 1px solid rgba(62, 182, 144, 0.2);
            font-size: 0.75rem;
            color: var(--sunset-earth);
            font-weight: 400;
        }

        .modal-badge svg {
            width: 14px;
            height: 14px;
            color: var(--sunset-amber);
            flex-shrink: 0;
        }

        /* Info grid */
        .modal-info-grid {
            display: grid;
            gap: 1.5rem;
            margin-bottom: 2rem;
        }

        @media (min-width: 640px) {
            .modal-info-grid {
                grid-template-columns: 1fr 1fr;
            }
        }

        .modal-info-block {
            padding: 1.25rem;
            background: rgba(224, 242, 233, 0.5);
            border: 1px solid rgba(62, 182, 144, 0.12);
        }

        .modal-info-block-label {
            font-size: 0.65rem;
            letter-spacing: 0.25em;
            text-transform: uppercase;
            color: var(--sunset-amber);
            font-weight: 500;
            margin-bottom: 0.6rem;
        }

        .modal-info-block-text {
            font-size: 0.875rem;
            color: rgba(42, 79, 61, 0.8);
            line-height: 1.7;
            font-weight: 300;
        }

        /* Pricing */
        .modal-pricing {
            display: grid;
            gap: 1rem;
            margin-bottom: 2rem;
        }

        @media (min-width: 480px) {
            .modal-pricing { grid-template-columns: 1fr 1fr; }
        }

        .modal-price-card {
            padding: 1.25rem;
            text-align: center;
            border: 1px solid rgba(62, 182, 144, 0.2);
        }

        .modal-price-card.highlight {
            background: var(--sunset-terracotta);
            border-color: var(--sunset-terracotta);
            color: white;
        }

        .modal-price-season {
            font-size: 0.65rem;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            margin-bottom: 0.4rem;
            opacity: 0.7;
            font-weight: 500;
        }

        .modal-price-value {
            font-family: 'Cormorant Garamond', serif;
            font-size: 2.2rem;
            font-weight: 400;
            line-height: 1;
            margin-bottom: 0.2rem;
        }

        .modal-price-unit {
            font-size: 0.7rem;
            opacity: 0.6;
            letter-spacing: 0.1em;
        }

        /* CTA */
        .modal-cta {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
        }

        .modal-btn-primary {
            flex: 1;
            min-width: 180px;
            padding: 1rem 1.5rem;
            background: var(--sunset-terracotta);
            color: white;
            border: none;
            font-family: 'Montserrat', sans-serif;
            font-size: 0.7rem;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            font-weight: 500;
            cursor: pointer;
            transition: background 0.3s;
            text-align: center;
            text-decoration: none;
            display: inline-block;
        }

        .modal-btn-primary:hover {
            background: var(--sunset-amber);
        }

        .modal-btn-secondary {
            flex: 1;
            min-width: 180px;
            padding: 1rem 1.5rem;
            background: transparent;
            color: var(--sunset-earth);
            border: 1px solid rgba(42, 79, 61, 0.3);
            font-family: 'Montserrat', sans-serif;
            font-size: 0.7rem;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s;
            text-align: center;
        }

        .modal-btn-secondary:hover {
            background: var(--sunset-earth);
            color: white;
            border-color: var(--sunset-earth);
        }

        /* Prevent body scroll when modal open */
        body.modal-open {
            overflow: hidden;
        }

        /* ===========================
           FULLSCREEN GALLERY STYLES
        =========================== */
        .fullscreen-backdrop {
            position: fixed;
            inset: 0;
            z-index: 2000;
            background: rgba(0, 0, 0, 0.97);
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.4s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .fullscreen-backdrop.open {
            opacity: 1;
            pointer-events: all;
        }

        .fullscreen-close {
            position: absolute;
            top: 1.5rem;
            right: 1.5rem;
            z-index: 10;
            width: 3rem;
            height: 3rem;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.2s;
            color: white;
        }

        .fullscreen-close:hover {
            background: rgba(255, 255, 255, 0.2);
        }

        .fullscreen-gallery {
            width: 100%;
            height: 100%;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .fullscreen-track {
            display: flex;
            height: 100%;
            width: 100%;
            transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .fullscreen-slide {
            flex-shrink: 0;
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 2rem;
        }

        .fullscreen-slide img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
        }

        .fullscreen-prev,
        .fullscreen-next {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            z-index: 5;
            width: 3.5rem;
            height: 3.5rem;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            transition: all 0.2s;
        }

        .fullscreen-prev:hover,
        .fullscreen-next:hover {
            background: rgba(255, 255, 255, 0.2);
        }

        .fullscreen-prev { left: 1.5rem; }
        .fullscreen-next { right: 1.5rem; }

        .fullscreen-counter {
            position: absolute;
            bottom: 2rem;
            left: 50%;
            transform: translateX(-50%);
            background: rgba(0,0,0,0.5);
            color: white;
            font-size: 0.85rem;
            padding: 0.5rem 1.2rem;
            letter-spacing: 0.15em;
        }

        .fullscreen-dots {
            position: absolute;
            bottom: 5rem;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 0.5rem;
        }

        .fullscreen-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: rgba(255,255,255,0.4);
            border: none;
            cursor: pointer;
            transition: all 0.2s;
            padding: 0;
        }

        .fullscreen-dot.active {
            background: white;
            width: 24px;
            border-radius: 4px;
        }