﻿:root {
            --sky: #7eb8d8;
            --sky-deep: #3a7ca5;
            --travertine: #f7f5f0;
            --pool: #2a9d8f;
            --pool-deep: #1a6b62;
            --ink: #1a2a32;
            --muted: #5a6b75;
            --white: #ffffff;
            --cloud: rgba(255, 255, 255, 0.72);
            --shadow: 0 24px 60px rgba(26, 42, 50, 0.12);
            --radius: 2px;
            --font-display: "Fraunces", Georgia, serif;
            --font-body: "Outfit", "Segoe UI", sans-serif;
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }

        html { scroll-behavior: smooth; }

        body {
            font-family: var(--font-body);
            background: var(--travertine);
            color: var(--ink);
            overflow-x: hidden;
            line-height: 1.6;
        }

        img { max-width: 100%; display: block; }

        a { color: inherit; }

        .cloud-bg {
            position: fixed;
            inset: 0;
            background: url('https://images.unsplash.com/photo-1509803874385-db7c23652552?q=80&w=2070&auto=format&fit=crop') no-repeat center center / cover;
            opacity: 0.18;
            z-index: -2;
            pointer-events: none;
        }

        .cloud-bg::after {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, rgba(126, 184, 216, 0.22) 0%, rgba(247, 245, 240, 0.55) 55%, rgba(247, 245, 240, 0.92) 100%);
            z-index: -1;
        }

        .skip-link {
            position: absolute;
            left: -9999px;
            top: 0;
            background: var(--ink);
            color: #fff;
            padding: 0.75rem 1rem;
            z-index: 9999;
        }
        .skip-link:focus { left: 1rem; top: 1rem; }

        nav {
            position: fixed;
            top: 0;
            width: 100%;
            padding: 1rem 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 1rem;
            background: rgba(247, 245, 240, 0.82);
            backdrop-filter: blur(14px);
            -webkit-backdrop-filter: blur(14px);
            z-index: 1000;
            border-bottom: 1px solid rgba(26, 42, 50, 0.06);
        }

        .logo {
            font-family: var(--font-display);
            font-size: 1.35rem;
            font-weight: 700;
            letter-spacing: -0.02em;
            text-decoration: none;
            color: var(--ink);
        }

        .logo span { color: var(--sky-deep); }

        .nav-links {
            display: flex;
            gap: 1.75rem;
            list-style: none;
        }

        .nav-links a {
            text-decoration: none;
            font-weight: 500;
            font-size: 0.92rem;
            color: var(--muted);
            transition: color 0.25s ease;
        }

        .nav-links a:hover { color: var(--sky-deep); }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            background: var(--ink);
            color: #fff;
            padding: 0.85rem 1.5rem;
            border-radius: 999px;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.95rem;
            border: none;
            cursor: pointer;
            transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.3s ease, background 0.3s ease;
        }

        .btn:hover {
            transform: translateY(-2px) scale(1.03);
            box-shadow: 0 12px 28px rgba(26, 42, 50, 0.18);
        }

        .btn-accent {
            background: #25D366;
            color: #fff;
        }

        .btn-accent:hover { background: #1ebe57; }

        .btn-outline {
            background: transparent;
            color: var(--ink);
            border: 1.5px solid rgba(26, 42, 50, 0.2);
        }

        .btn-outline:hover {
            background: var(--ink);
            color: #fff;
            border-color: var(--ink);
        }

        /* Hero — full-bleed */
        .hero {
            min-height: 100vh;
            min-height: 100dvh;
            display: grid;
            align-items: end;
            position: relative;
            padding: 0;
            overflow: hidden;
        }

        .hero-media {
            position: absolute;
            inset: 0;
            z-index: 0;
        }

        .hero-media img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center 40%;
            animation: heroDrift 28s ease-in-out infinite alternate;
        }

        @keyframes heroDrift {
            from { transform: scale(1); }
            to { transform: scale(1.06); }
        }

        .hero-media::after {
            content: "";
            position: absolute;
            inset: 0;
            background:
                linear-gradient(180deg, rgba(26, 42, 50, 0.25) 0%, rgba(26, 42, 50, 0.15) 35%, rgba(26, 42, 50, 0.72) 100%);
        }

        .hero-content {
            position: relative;
            z-index: 1;
            width: min(1100px, 92%);
            margin: 0 auto;
            padding: 7rem 0 4.5rem;
            color: #fff;
        }

        .brand-mark {
            font-family: var(--font-display);
            font-size: clamp(2.6rem, 7vw, 5.2rem);
            font-weight: 700;
            letter-spacing: -0.03em;
            line-height: 1.05;
            margin-bottom: 1rem;
            text-shadow: 0 8px 40px rgba(0, 0, 0, 0.25);
        }

        .hero-lead {
            font-size: clamp(1.05rem, 2.2vw, 1.35rem);
            max-width: 34rem;
            opacity: 0.92;
            margin-bottom: 1.75rem;
            font-weight: 400;
        }

        .hero-cta {
            display: flex;
            flex-wrap: wrap;
            gap: 0.85rem;
            align-items: center;
        }

        .price-pill {
            display: inline-flex;
            align-items: baseline;
            gap: 0.4rem;
            background: rgba(255, 255, 255, 0.14);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.28);
            padding: 0.65rem 1.1rem;
            border-radius: 999px;
            font-weight: 600;
        }

        .price-pill strong {
            font-family: var(--font-display);
            font-size: 1.35rem;
        }

        .section {
            padding: clamp(4rem, 8vw, 7rem) 5%;
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
        }

        .section-wide {
            max-width: none;
            padding-left: 0;
            padding-right: 0;
        }

        .section-inner {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 5%;
        }

        .eyebrow {
            display: inline-block;
            font-size: 0.8rem;
            font-weight: 600;
            letter-spacing: 0.14em;
            text-transform: uppercase;
            color: var(--sky-deep);
            margin-bottom: 0.85rem;
        }

        .section-title {
            font-family: var(--font-display);
            font-size: clamp(2rem, 4.5vw, 3.25rem);
            font-weight: 700;
            letter-spacing: -0.02em;
            line-height: 1.15;
            margin-bottom: 1rem;
            max-width: 18ch;
        }

        .section-lead {
            color: var(--muted);
            font-size: 1.1rem;
            max-width: 40rem;
            margin-bottom: 2.5rem;
        }

        .experience-split {
            display: grid;
            grid-template-columns: 1.05fr 0.95fr;
            gap: clamp(2rem, 5vw, 4rem);
            align-items: center;
        }

        .experience-visual {
            position: relative;
            min-height: 520px;
        }

        .experience-visual img {
            width: 100%;
            height: 100%;
            min-height: 520px;
            object-fit: cover;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
        }

        .experience-visual .float-shot {
            position: absolute;
            width: 42%;
            bottom: -8%;
            right: -4%;
            min-height: auto;
            height: auto;
            border: 6px solid var(--travertine);
            box-shadow: var(--shadow);
            animation: floatY 5.5s ease-in-out infinite;
        }

        @keyframes floatY {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-12px); }
        }

        .feature-list {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 1.25rem;
            margin-top: 1.5rem;
        }

        .feature-list li {
            display: grid;
            grid-template-columns: auto 1fr;
            gap: 0.9rem;
            align-items: start;
        }

        .feature-list .num {
            font-family: var(--font-display);
            font-size: 1.25rem;
            color: var(--sky-deep);
            font-weight: 700;
            line-height: 1.2;
        }

        .feature-list h3 {
            font-size: 1.1rem;
            margin-bottom: 0.25rem;
        }

        .feature-list p { color: var(--muted); font-size: 0.98rem; }

        /* Pricing */
        .pricing {
            text-align: center;
            background: linear-gradient(165deg, rgba(126, 184, 216, 0.18), rgba(42, 157, 143, 0.08));
            border: 1px solid rgba(58, 124, 165, 0.15);
            padding: clamp(2.5rem, 5vw, 4rem) 5%;
            border-radius: 4px;
            position: relative;
            overflow: hidden;
        }

        .pricing::before {
            content: "";
            position: absolute;
            width: 280px;
            height: 280px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(255,255,255,0.55), transparent 70%);
            top: -80px;
            right: -40px;
            pointer-events: none;
            animation: pulseSoft 6s ease-in-out infinite;
        }

        @keyframes pulseSoft {
            0%, 100% { opacity: 0.5; transform: scale(1); }
            50% { opacity: 1; transform: scale(1.08); }
        }

        .pricing .section-title {
            max-width: none;
            margin-left: auto;
            margin-right: auto;
        }

        .pricing .section-lead {
            margin-left: auto;
            margin-right: auto;
        }

        .price-display {
            font-family: var(--font-display);
            font-size: clamp(3.5rem, 10vw, 6rem);
            font-weight: 700;
            letter-spacing: -0.04em;
            color: var(--ink);
            line-height: 1;
            margin: 0.5rem 0 0.75rem;
        }

        .price-display small {
            font-size: 0.35em;
            font-weight: 500;
            letter-spacing: 0;
            color: var(--muted);
            margin-left: 0.15em;
        }

        .price-note {
            color: var(--muted);
            margin-bottom: 1.75rem;
        }

        .includes {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 0.65rem 1.25rem;
            margin-bottom: 2rem;
            color: var(--ink);
            font-size: 0.95rem;
            font-weight: 500;
        }

        .includes span::before {
            content: "✓ ";
            color: var(--pool);
            font-weight: 700;
        }

        /* Gallery */
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(12, 1fr);
            grid-auto-rows: 180px;
            gap: 0.75rem;
        }

        .gallery-grid figure {
            margin: 0;
            overflow: hidden;
            position: relative;
            border-radius: var(--radius);
        }

        .gallery-grid img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.7s cubic-bezier(0.25, 1, 0.5, 1);
        }

        .gallery-grid figure:hover img { transform: scale(1.06); }

        .gallery-grid figure:nth-child(1) { grid-column: span 5; grid-row: span 2; }
        .gallery-grid figure:nth-child(2) { grid-column: span 4; grid-row: span 1; }
        .gallery-grid figure:nth-child(3) { grid-column: span 3; grid-row: span 1; }
        .gallery-grid figure:nth-child(4) { grid-column: span 3; grid-row: span 1; }
        .gallery-grid figure:nth-child(5) { grid-column: span 4; grid-row: span 1; }
        .gallery-grid figure:nth-child(6) { grid-column: span 5; grid-row: span 2; }
        .gallery-grid figure:nth-child(7) { grid-column: span 3; grid-row: span 1; }
        .gallery-grid figure:nth-child(8) { grid-column: span 4; grid-row: span 1; }

        .gallery-grid figcaption {
            position: absolute;
            left: 0;
            right: 0;
            bottom: 0;
            padding: 0.75rem 1rem;
            background: linear-gradient(transparent, rgba(26, 42, 50, 0.7));
            color: #fff;
            font-size: 0.82rem;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .gallery-grid figure:hover figcaption { opacity: 1; }

        /* FAQ */
        .faq-list {
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
            max-width: 800px;
        }

        details {
            background: rgba(255, 255, 255, 0.65);
            border: 1px solid rgba(26, 42, 50, 0.08);
            padding: 1.1rem 1.25rem;
            border-radius: 4px;
        }

        details summary {
            font-weight: 600;
            cursor: pointer;
            list-style: none;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 1rem;
        }

        details summary::-webkit-details-marker { display: none; }

        details summary::after {
            content: "+";
            font-size: 1.35rem;
            color: var(--sky-deep);
            font-weight: 400;
        }

        details[open] summary::after { content: "−"; }

        details p {
            margin-top: 0.85rem;
            color: var(--muted);
            font-size: 0.98rem;
        }

        /* Contact / CTA */
        .contact-block {
            display: grid;
            grid-template-columns: 1.1fr 0.9fr;
            gap: 2.5rem;
            align-items: stretch;
        }

        .contact-copy {
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .contact-visual {
            min-height: 360px;
            overflow: hidden;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
        }

        .contact-visual img {
            width: 100%;
            height: 100%;
            min-height: 360px;
            object-fit: cover;
        }

        .contact-meta {
            margin-top: 1.5rem;
            display: flex;
            flex-direction: column;
            gap: 0.65rem;
            color: var(--muted);
            font-size: 0.98rem;
        }

        .contact-meta strong { color: var(--ink); font-weight: 600; }

        .contact-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 0.75rem;
            margin-top: 1.75rem;
        }

        footer {
            background: #152229;
            color: rgba(255, 255, 255, 0.72);
            padding: 3.5rem 5% 2rem;
            font-size: 0.92rem;
        }

        .footer-grid {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1.4fr 1fr 1fr;
            gap: 2rem;
            margin-bottom: 2.5rem;
        }

        footer h3 {
            font-family: var(--font-display);
            color: #fff;
            font-size: 1.15rem;
            margin-bottom: 0.85rem;
        }

        footer a {
            color: rgba(255, 255, 255, 0.78);
            text-decoration: none;
        }

        footer a:hover { color: #fff; }

        footer address {
            font-style: normal;
            line-height: 1.7;
        }

        .footer-bottom {
            max-width: 1200px;
            margin: 0 auto;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 0.75rem;
            font-size: 0.85rem;
        }

        .wa-float {
            position: fixed;
            right: 1.25rem;
            bottom: 1.25rem;
            width: 58px;
            height: 58px;
            border-radius: 50%;
            background: #25D366;
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 10px 30px rgba(37, 211, 102, 0.45);
            z-index: 1100;
            text-decoration: none;
            transition: transform 0.25s ease;
        }

        .wa-float:hover { transform: scale(1.08); }

        .wa-float svg { width: 28px; height: 28px; fill: currentColor; }

        .gs-reveal {
            opacity: 0;
            visibility: hidden;
        }

        @media (max-width: 900px) {
            .nav-links { display: none; }
            .experience-split,
            .contact-block,
            .footer-grid { grid-template-columns: 1fr; }
            .experience-visual .float-shot {
                width: 48%;
                right: 4%;
                bottom: -6%;
            }
            .gallery-grid {
                grid-template-columns: repeat(2, 1fr);
                grid-auto-rows: 160px;
            }
            .gallery-grid figure:nth-child(n) {
                grid-column: span 1;
                grid-row: span 1;
            }
            .gallery-grid figure:nth-child(1),
            .gallery-grid figure:nth-child(6) {
                grid-column: span 2;
                grid-row: span 2;
            }
        }

        @media (max-width: 560px) {
            .hero-content { padding-bottom: 3rem; }
            .btn-nav-desktop { display: none; }
            .experience-visual,
            .experience-visual img { min-height: 360px; }
        }

/* Language switcher */
.lang-switch {
    position: relative;
    display: flex;
    align-items: center;
}

.lang-switch summary {
    list-style: none;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--ink);
    padding: 0.45rem 0.75rem;
    border: 1px solid rgba(26, 42, 50, 0.12);
    border-radius: 999px;
    background: rgba(255,255,255,0.65);
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.lang-switch summary::-webkit-details-marker { display: none; }

.lang-switch[open] summary {
    border-color: var(--sky-deep);
}

.lang-menu {
    position: absolute;
    top: calc(100% + 0.4rem);
    right: 0;
    min-width: 168px;
    background: #fff;
    border: 1px solid rgba(26, 42, 50, 0.08);
    border-radius: 8px;
    box-shadow: var(--shadow);
    padding: 0.4rem;
    z-index: 1200;
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.lang-menu a {
    text-decoration: none;
    padding: 0.55rem 0.75rem;
    border-radius: 6px;
    font-size: 0.88rem;
    color: var(--ink);
    font-weight: 500;
}

.lang-menu a:hover,
.lang-menu a[aria-current="page"] {
    background: rgba(126, 184, 216, 0.18);
    color: var(--sky-deep);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

[dir="rtl"] .lang-menu { right: auto; left: 0; }
[dir="rtl"] .wa-float { right: auto; left: 1.25rem; }
[dir="rtl"] .nav-links { direction: rtl; }


/* Gallery lightbox triggers */
.gallery-trigger {
    display: block;
    width: 100%;
    height: 100%;
    padding: 0;
    border: 0;
    background: none;
    cursor: zoom-in;
    position: relative;
    overflow: hidden;
    border-radius: inherit;
    color: inherit;
    text-align: left;
}

.gallery-trigger img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.25, 1, 0.5, 1);
}

.gallery-trigger:hover img,
.gallery-trigger:focus-visible img {
    transform: scale(1.06);
}

.gallery-trigger:focus-visible {
    outline: 2px solid var(--sky-deep);
    outline-offset: 2px;
}

.gallery-trigger .gallery-caption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 0.75rem 1rem;
    background: linear-gradient(transparent, rgba(26, 42, 50, 0.7));
    color: #fff;
    font-size: 0.82rem;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.gallery-trigger:hover .gallery-caption,
.gallery-trigger:focus-visible .gallery-caption {
    opacity: 1;
}

.gallery-grid figure:hover img { transform: none; }
.gallery-grid figure:hover figcaption { opacity: 1; }

body.lightbox-open {
    overflow: hidden;
}

.lightbox[hidden] {
    display: none !important;
}

.lightbox {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: grid;
    place-items: center;
    padding: 4.5rem 4rem 5rem;
}

.lightbox-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(10, 16, 20, 0.92);
    backdrop-filter: blur(6px);
    cursor: zoom-out;
}

.lightbox-figure {
    position: relative;
    z-index: 1;
    margin: 0;
    max-width: min(1100px, 92vw);
    max-height: 78vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.lightbox-image {
    max-width: 100%;
    max-height: 70vh;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 2px;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
    cursor: ew-resize;
    user-select: none;
    -webkit-user-drag: none;
}

.lightbox-caption {
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.95rem;
    text-align: center;
    max-width: 40rem;
}

.lightbox-close,
.lightbox-nav {
    position: absolute;
    z-index: 2;
    border: 0;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    cursor: pointer;
    display: grid;
    place-items: center;
    transition: background 0.2s ease, transform 0.2s ease;
}

.lightbox-close:hover,
.lightbox-nav:hover,
.lightbox-close:focus-visible,
.lightbox-nav:focus-visible {
    background: rgba(255, 255, 255, 0.22);
    outline: none;
}

.lightbox-close {
    top: 1rem;
    right: 1rem;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    font-size: 1.75rem;
    line-height: 1;
}

.lightbox-nav {
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    border-radius: 50%;
    font-size: 1.35rem;
}

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

.lightbox-nav:hover { transform: translateY(-50%) scale(1.05); }

.lightbox-counter {
    position: absolute;
    z-index: 2;
    bottom: 2.6rem;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.04em;
}

.lightbox-hint {
    position: absolute;
    z-index: 2;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.78rem;
    text-align: center;
    max-width: 90vw;
    pointer-events: none;
}

@media (max-width: 700px) {
    .lightbox {
        padding: 4rem 0.75rem 4.5rem;
    }
    .lightbox-nav {
        width: 42px;
        height: 42px;
        font-size: 1.1rem;
    }
    .lightbox-prev { left: 0.35rem; }
    .lightbox-next { right: 0.35rem; }
    .lightbox-hint { display: none; }
}

.lang-menu {
    max-height: min(70vh, 420px);
    overflow-y: auto;
}
