:root {
    /* Premium Elegant Palette */
    --bg-color: #fdfbfb;          /* Soft pristine cream */
    --primary-color: #b5838d;     /* Dusty Rose / Mauve */
    --secondary-color: #e5989b;   /* Delicate blush */
    --accent-gold: #c5a880;       /* Champagne Gold */
    --text-dark: #2b2323;         /* Espresso */
    --text-muted: #6d6875;        /* Soft greyish plum */
    
    /* Glassmorphism */
    --glass-bg: rgba(253, 251, 251, 0.5);
    --glass-border: rgba(255, 255, 255, 0.6);
    --shadow: 0 15px 35px rgba(43, 35, 35, 0.08);
    
    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Poppins', sans-serif;
    --transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Basic Layout Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* PRELOADER */
.preloader {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100vh;
    background: var(--primary-color);
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.8s cubic-bezier(0.77, 0, 0.175, 1);
}
.preloader.hidden {
    transform: translateY(-100%);
}
.preloader-content {
    text-align: center;
    color: #fff;
}
.preloader .logo { font-size: 4rem; margin-bottom: 20px; }
.loading-bar {
    width: 200px; height: 2px;
    background: rgba(255,255,255,0.2);
    margin: 0 auto;
    overflow: hidden;
}
.progress {
    width: 0%; height: 100%;
    background: #fff;
    animation: loadProgress 1.5s ease-out forwards;
}
@keyframes loadProgress {
    to { width: 100%; }
}

/* MARQUEE */
.marquee-container {
    width: 100%;
    background: var(--text-dark);
    color: #fff;
    padding: 1.5rem 0;
    overflow: hidden;
    white-space: nowrap;
    display: flex;
}
.marquee-content {
    display: inline-flex;
    animation: marqueeScroll 20s linear infinite;
}
.marquee-content span {
    font-size: 1.1rem;
    letter-spacing: 2px;
    margin: 0 2rem;
    font-weight: 300;
}
@keyframes marqueeScroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

html {
    scroll-behavior: smooth;
    cursor: none;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background-color: var(--bg-color);
    overflow-x: hidden;
    line-height: 1.6;
}

h1, h2, h3 {
    font-family: var(--font-heading);
    font-weight: 400;
    letter-spacing: 0.5px;
}

/* Editorial Custom Cursor */
.cursor-editorial {
    position: fixed;
    top: 0;
    left: 0;
    width: 12px;
    height: 12px;
    background: var(--primary-color);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1), 
                height 0.3s cubic-bezier(0.16, 1, 0.3, 1),
                background 0.3s ease,
                backdrop-filter 0.3s ease;
}

.cursor-text {
    color: #fff;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    opacity: 0;
    text-transform: uppercase;
    transition: opacity 0.2s ease;
    pointer-events: none;
}

/* Hover States for Cursor */
.cursor-editorial.hover-link {
    width: 40px;
    height: 40px;
    background: rgba(181, 131, 141, 0.15); /* Soft primary tint */
    border: 1px solid var(--primary-color);
}

/* Background Accent */
.bg-accent {
    position: fixed;
    top: -20%;
    right: -10%;
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, var(--secondary-color) 0%, transparent 60%);
    opacity: 0.15;
    z-index: -2;
    border-radius: 50%;
    filter: blur(60px);
}

/* Glassmorphism Helper */
.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow);
}

/* Nav */
.elegant-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(253, 251, 251, 0.9);
    backdrop-filter: blur(15px);
    z-index: 100;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), background 0.4s;
    transform: translateY(0);
}

.elegant-nav.hidden {
    transform: translateY(-100%);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2.5rem;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.logo span {
    color: var(--primary-color);
    font-style: italic;
    font-weight: 400;
}

.links a {
    text-decoration: none;
    color: var(--text-dark);
    margin: 0 1.5rem;
    font-weight: 400;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    position: relative;
    transition: color 0.3s ease;
}

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

.btn-primary {
    background: var(--primary-color);
    color: #fff;
    padding: 0.9rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: var(--transition);
    border: 1px solid transparent;
}

.btn-primary:hover {
    background: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-text {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-text:hover {
    color: var(--primary-color);
    gap: 15px;
}

/* Hero Section Split Layout */
.hero-split {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 100px 5% 0;
    max-width: 1400px;
    margin: 0 auto;
}

.hero-text-side {
    width: 50%;
    padding-right: 5%;
}

.hero-text-content {
    max-width: 600px;
}

.eyebrow {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--primary-color);
    display: block;
    margin-bottom: 1rem;
    font-weight: 500;
}

.title {
    font-size: 6rem;
    line-height: 1;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.title span {
    color: var(--primary-color);
    font-style: italic;
    font-weight: 400;
}

.hero-text-content p {
    font-size: 1.15rem;
    margin-bottom: 3rem;
    color: var(--text-muted);
    font-weight: 300;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.hero-image-side {
    width: 50%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-arch {
    width: 400px;
    height: 550px;
    border-radius: 200px 200px 0 0;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.image-arch img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 10s ease;
}

.image-arch:hover img {
    transform: scale(1.1);
}

.floating-badge {
    position: absolute;
    bottom: 50px;
    left: 10%;
    background: rgba(253, 251, 251, 0.9);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 50%;
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid var(--primary-color);
    animation: float 6s ease-in-out infinite;
}

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

.floating-badge p {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.floating-badge span {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--primary-color);
    font-style: italic;
    text-transform: capitalize;
}

/* Giant Parallax Image Break */
.image-break {
    height: 90vh;
    position: relative;
    overflow: hidden;
}

.parallax-window {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 130%;
}

.parallax-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    will-change: transform;
    filter: saturate(0.9);
}

.overlay-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    text-align: center;
}

.overlay-text h2 {
    font-size: 7rem;
    color: #fff;
    font-weight: 400;
    letter-spacing: 8px;
    text-transform: uppercase;
    text-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* Services */
.services {
    padding: 8rem 5%;
}

.glass-title {
    background: rgba(253, 251, 251, 0.85);
    backdrop-filter: blur(15px);
    padding: 2.5rem 4rem;
    border-radius: 4px;
    display: inline-block;
    margin-bottom: 5rem;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.8);
}

.glass-title h2 {
    font-size: 3.8rem;
    margin-bottom: 0.5rem;
}

.glass-title span {
    color: var(--primary-color);
    font-style: italic;
}

.glass-title p {
    color: var(--text-muted);
    font-size: 1.1rem;
    letter-spacing: 1px;
}

.services-container {
    display: flex;
    flex-direction: column;
    gap: 5rem;
}

.service-card {
    display: flex;
    align-items: stretch;
    border-radius: 4px;
    padding: 2.5rem;
    gap: 4rem;
}

.service-card:nth-child(even) {
    flex-direction: row-reverse;
}

.service-img {
    width: 50%;
    height: 450px;
    overflow: hidden;
    border-radius: 2px;
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s ease;
}

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

.service-info {
    width: 50%;
    padding: 3rem 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-info h3 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.service-info p {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    color: var(--text-muted);
    line-height: 1.8;
    font-weight: 300;
}

.service-info .price {
    font-size: 1.6rem;
    color: var(--primary-color);
    font-family: var(--font-heading);
    font-style: italic;
}

/* Masonry Gallery */
.gallery-section {
    padding: 2rem 5% 8rem;
}

.masonry-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 350px;
    gap: 30px;
}

.masonry-item {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
}

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

.masonry-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.5s ease;
    filter: brightness(0.9);
}

.masonry-item:hover img {
    transform: scale(1.05);
    filter: brightness(1);
}

.item-overlay {
    position: absolute;
    bottom: -100%;
    left: 0;
    width: 100%;
    padding: 3rem;
    background: linear-gradient(transparent, rgba(43, 35, 35, 0.8));
    transition: bottom 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    align-items: flex-end;
}

.masonry-item:hover .item-overlay {
    bottom: 0;
}

.item-overlay span {
    color: #fff;
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 400;
    letter-spacing: 1px;
}

/* Testimonials */
.testimonials-section {
    padding: 8rem 5%;
    text-align: center;
    background: var(--bg-light);
}
.testimonials-wrapper {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-top: 4rem;
    flex-wrap: wrap;
}
.testimonial-card {
    flex: 1;
    min-width: 300px;
    max-width: 350px;
    padding: 3rem 2rem;
    background: rgba(253, 251, 251, 0.9);
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    text-align: center;
}
.quote-icon {
    font-size: 2rem;
    color: var(--primary-color);
    opacity: 0.5;
    margin-bottom: 1.5rem;
}
.testimonial-card p {
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 2rem;
}
.testimonial-card h4 {
    font-family: var(--font-heading);
    letter-spacing: 1px;
}

/* FAQ Section */
.faq-section {
    padding: 4rem 5% 8rem;
    max-width: 800px;
    margin: 0 auto;
}
.faq-item {
    border-bottom: 1px solid rgba(43,35,35,0.1);
    margin-bottom: 1rem;
}
.faq-question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 1.5rem 0;
    font-family: var(--font-body);
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--text-dark);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: color 0.3s ease;
}
.faq-question:hover {
    color: var(--primary-color);
}
.faq-question i {
    transition: transform 0.3s ease;
}
.faq-question.active i {
    transform: rotate(45deg);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}
.faq-answer p {
    padding-bottom: 1.5rem;
    color: #555;
    line-height: 1.6;
}

/* Booking Section */
.booking-section {
    padding: 4rem 5% 8rem;
    display: flex;
    justify-content: center;
}

.booking-container {
    display: flex;
    max-width: 1100px;
    width: 100%;
    border-radius: 4px;
    overflow: hidden;
    background: rgba(253, 251, 251, 0.9);
}

.booking-info {
    width: 45%;
    padding: 5rem;
    background: var(--primary-color);
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.booking-info h2 {
    font-size: 3.5rem;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.booking-info h2 span {
    font-style: italic;
    font-family: var(--font-heading);
}

.booking-info p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    font-weight: 300;
}

.booking-perks {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.booking-perks p {
    margin-bottom: 0;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
}

.booking-form {
    width: 55%;
    padding: 5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group input, 
.form-group select {
    width: 100%;
    padding: 1.2rem;
    border: 1px solid rgba(43, 35, 35, 0.1);
    background: transparent;
    border-radius: 2px;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text-dark);
    transition: var(--transition);
}

.form-group input:focus, 
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.5);
}

.form-row {
    display: flex;
    gap: 1.5rem;
}

.form-group.half {
    width: 50%;
}

.btn-submit {
    background: var(--text-dark);
    color: #fff;
    padding: 1.2rem;
    border: none;
    font-family: var(--font-body);
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    margin-top: 1rem;
    transition: var(--transition);
}

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

.success-msg {
    display: none;
    color: #25d366;
    margin-top: 1rem;
    font-weight: 500;
    text-align: center;
}

/* Lightbox Styles */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(20, 15, 15, 0.95);
    backdrop-filter: blur(15px);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.lightbox.active {
    opacity: 1;
    pointer-events: auto;
}

.lightbox-content {
    max-width: 80%;
    max-height: 85vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lightbox-img {
    max-width: 100%;
    max-height: 75vh;
    border-radius: 4px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    transform: scale(0.95);
    transition: transform 0.4s ease;
}

.lightbox.active .lightbox-img {
    transform: scale(1);
}

.lightbox-caption {
    color: #fff;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-top: 1.5rem;
    letter-spacing: 2px;
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 3rem;
    color: #fff;
    cursor: pointer;
    transition: color 0.3s;
}

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

.lightbox-prev, .lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: #fff;
    font-size: 2.5rem;
    cursor: pointer;
    padding: 20px;
    transition: color 0.3s;
}

.lightbox-prev:hover, .lightbox-next:hover {
    color: var(--primary-color);
}

.lightbox-prev { left: 5%; }
.lightbox-next { right: 5%; }

/* Footer */
.footer-glass {
    padding: 0 5% 4rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5rem;
    border-radius: 4px;
    flex-wrap: wrap;
    gap: 3rem;
    border: 1px solid rgba(255,255,255,0.8);
}

.footer-brand h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
}

.footer-brand span {
    color: var(--primary-color);
    font-style: italic;
}

.footer-brand p {
    color: var(--text-muted);
    margin-top: 0.5rem;
}

.footer-cta h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: transparent;
    color: var(--text-dark);
    border: 1px solid var(--text-dark);
    padding: 1rem 2.5rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: var(--transition);
}

.btn-whatsapp:hover {
    background: var(--text-dark);
    color: #fff;
}

.footer-info p {
    margin-bottom: 0.8rem;
    font-size: 1.05rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-info p i {
    color: var(--primary-color);
}

.socials {
    margin-top: 1.5rem;
    display: flex;
    gap: 1.5rem;
}

.socials a {
    color: var(--text-dark);
    font-size: 1.5rem;
    transition: var(--transition);
}

.socials a:hover {
    color: var(--primary-color);
    transform: translateY(-5px);
}

/* Floating Support Button */
.floating-support {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--primary-color);
    color: #fff;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 10px 25px rgba(181, 131, 141, 0.4);
    z-index: 999;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
    text-decoration: none;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.floating-support:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 15px 35px rgba(181, 131, 141, 0.6);
    background: var(--text-dark);
    border-color: var(--primary-color);
}

.support-tooltip {
    position: absolute;
    right: 85px;
    background: rgba(253, 251, 251, 0.95);
    backdrop-filter: blur(10px);
    color: var(--text-dark);
    padding: 12px 18px;
    border-radius: 30px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateX(15px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    white-space: nowrap;
    border: 1px solid rgba(0,0,0,0.05);
}

/* Little arrow for tooltip */
.support-tooltip::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -6px;
    transform: translateY(-50%);
    border-width: 6px 0 6px 6px;
    border-style: solid;
    border-color: transparent transparent transparent rgba(253, 251, 251, 0.95);
}

.floating-support:hover .support-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

/* Responsive */
@media (max-width: 1024px) {
    .service-card, .service-card:nth-child(even) {
        flex-direction: column;
        gap: 2rem;
    }
    .service-img, .service-info {
        width: 100%;
    }
    .overlay-text h2 {
        font-size: 4rem;
    }
    .booking-container {
        flex-direction: column;
    }
    .booking-info, .booking-form {
        width: 100%;
        padding: 3rem;
    }
}

@media (max-width: 768px) {
    .title { font-size: 3.5rem; }
    .links { display: none; }
    .hero-glass-panel { padding: 3rem 2rem; }
    .masonry-grid { grid-template-columns: 1fr; }
    .masonry-item.large { grid-row: span 1; }
    .footer-content { flex-direction: column; text-align: center; }
    .footer-info p { justify-content: center; }
    .socials { justify-content: center; }
}

/* Scroll Reveal Animations */
.reveal {
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}
