:root {
    --gold: #C5A059;
    --gold-soft: #D4B982;
    --charcoal: #1A1817;
    --parchment: #F4EFE6;
    --white: #FFFFFF;
    --shadow: 0 20px 40px rgba(0,0,0,0.3);
}

* { box-sizing: border-box; scroll-behavior: smooth; }
body { margin: 0; font-family: 'Montserrat', sans-serif; background: var(--parchment); color: var(--charcoal); overflow-x: hidden; line-height: 1.6; }

#scroll-progress { position: fixed; top: 0; left: 0; height: 4px; background: var(--gold); width: 0%; z-index: 2000; }

/* Header - iOS FIX: Added -webkit prefix for blur */
.header { display: flex; justify-content: space-between; align-items: center; padding: 1rem 5%; background: rgba(255,255,255,0.95); position: sticky; top: 0; z-index: 1000; border-bottom: 1px solid #eee; -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px); }
.logo { font-family: 'Playfair Display'; font-weight: 700; letter-spacing: 2px; }
.nav-list { display: flex; list-style: none; gap: 20px; }
.nav-list a { text-decoration: none; color: var(--charcoal); font-size: 0.75rem; font-weight: 600; text-transform: uppercase; }

/* Cinematic Layouts - iOS FIX: Removed fixed attachment for mobile to stop image disappearance */
.cinematic-bg { position: relative; background-size: cover; background-position: center; display: flex; align-items: center; justify-content: center; }

/* Re-enable fixed parallax ONLY for desktop where it works */
@media (min-width: 1025px) {
    .cinematic-bg { background-attachment: fixed; }
}

.hero-overlay, .dark-gradient-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(20,20,20,0.85) 0%, rgba(20,20,20,0.4) 50%, rgba(20,20,20,0.9) 100%); z-index: 1; }

/* Hero Content - iOS FIX: added dvh for proper mobile height */
.hero { height: 95vh; height: 95dvh; color: white; }
.hero-content { position: relative; z-index: 2; max-width: 800px; padding: 2rem; }
.hero h1 { font-family: 'Playfair Display'; font-size: clamp(3rem, 8vw, 5rem); line-height: 1; }
.hero h1 span { display: block; font-style: italic; font-weight: 300; color: var(--gold-soft); font-size: 0.7em; }

/* Container for the buttons */
.hero-cta-row {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    flex-wrap: wrap;
}

/* Base button style */
.primary-btn {
    padding: 16px 35px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 2px;
    font-size: 0.8rem;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    display: inline-block;
    text-align: center;
}

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

.primary-btn.outline {
    background: transparent;
    border: 1px solid white;
    color: white;
}

.primary-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

/* --- MOBILE RESPONSIVENESS --- */
@media (max-width: 600px) {
    .hero-cta-row {
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }

    .primary-btn {
        width: 100%;
        margin-left: 0 !important;
        padding: 18px 20px;
    }
}

/* Sections */
.section { padding: 100px 5%; opacity: 0; transform: translateY(30px); transition: 1s ease-out; }
.section.reveal-active { opacity: 1; transform: translateY(0); }
.section-light { background: white; }
.center { text-align: center; }

/* About Section Base Layout */
.about-layout {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 60px; /* Increased gap for a more spacious, premium feel */
    justify-content: center;
}

.about-photo {
    flex: 1 1 400px;
    max-width: 500px;
    width: 100%;
    position: relative;
}

/* Luxury Image with Gold Frame Accent */
.luxury-img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    box-shadow: var(--shadow);
    display: block;
    outline: 1px solid var(--gold); /* Added a subtle gold outline */
    outline-offset: 15px; /* Creates the "floating frame" look */
}

.text-block {
    flex: 1 1 400px;
    padding: 20px;
}

/* NEW: Lead Text Highlight */
.lead-text {
    font-size: 1.25rem;
    color: var(--gold);
    font-family: 'Playfair Display', serif;
    margin-bottom: 20px;
    line-height: 1.5;
    font-style: italic;
}

/* NEW: About Stats Layout */
.about-stats {
    display: flex;
    gap: 30px;
    margin: 35px 0;
    padding: 25px 0;
    border-top: 1px solid rgba(197, 160, 89, 0.2);
    border-bottom: 1px solid rgba(197, 160, 89, 0.2);
}

.stat-item {
    text-align: center;
    flex: 1;
}

.stat-item span {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--gold);
}

.stat-item p {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 5px 0 0;
    color: var(--charcoal);
    opacity: 0.8;
}

.text-block h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 3.5rem); /* Slightly larger for impact */
    margin: 10px 0 20px;
}

.vibe-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.vibe-tags span {
    border: 1px solid var(--gold);
    color: var(--gold);
    padding: 8px 18px;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 50px;
    transition: 0.3s;
}

.vibe-tags span:hover {
    background: var(--gold);
    color: #fff;
}

@media (max-width: 768px) {
    .about-layout {
        flex-direction: column;
        text-align: center;
        gap: 50px;
    }

    .about-photo {
        max-width: 85%; /* Shrink slightly on mobile to show the gold outline */
    }

    .about-stats {
        justify-content: center;
        gap: 15px;
    }

    .vibe-tags {
        justify-content: center;
    }
}

/* Services Grid */
.services-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* Increased for better readability */
    gap: 30px; 
    margin-top: 50px; 
}

.service-card { 
    background: var(--white); /* Brighter feel for the light section */
    padding: 40px; 
    border-radius: 4px; /* Sharper edges look more cinematic/modern */
    border: 1px solid rgba(197, 160, 89, 0.2); /* Subtle gold border instead of grey */
    transition: all 0.4s ease; 
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-card:hover { 
    border-color: var(--gold); 
    transform: translateY(-10px); 
    box-shadow: 0 15px 30px rgba(0,0,0,0.05); 
}

.service-info h3 { 
    font-family: 'Playfair Display', serif; 
    color: var(--gold); 
    font-size: 1.5rem;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.service-info p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--charcoal);
    opacity: 0.85;
}

/* Process section remains stable */
.slick-process-container { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 40px; margin-top: 60px; position: relative; }
.process-node { position: relative; z-index: 2; }
.node-number { font-family: 'Playfair Display'; font-size: 3rem; font-weight: 700; color: rgba(197, 160, 89, 0.15); position: absolute; top: -20px; left: 0; z-index: -1; }
.node-content h4::after { content: ''; display: block; width: 30px; height: 2px; background: var(--gold); margin-top: 8px; }

/* Pricing Cards */
.cards-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 20px; margin-top: 50px; }
.card {
    background: white;
    padding: 40px 20px;
    text-align: center;
    border: 1.5px solid var(--gold);
    border-radius: 4px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(197, 160, 89, 0.2);
    background: #fffcf7;
}

.card.featured {
    transform: scale(1.05);
    background: #fff;
    z-index: 2;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.price {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: var(--gold);
    margin: 10px 0;
    font-weight: 700;
}

.duration {
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--charcoal);
    opacity: 0.8;
    font-size: 0.75rem;
    text-transform: uppercase;
}

@media (max-width: 768px) {
    .card.featured {
        transform: scale(1);
    }
}

/* Review Layout */
/* Reviews Grid Container */
.reviews-grid {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 800px;
    margin: 0 auto 50px;
}

/* Individual Card Styling */
.review-card {
    background: #fff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    border: 1px solid rgba(197, 160, 89, 0.1);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 12px;
}

/* Circular Avatar with Initials */
.avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.1rem;
    text-transform: uppercase;
    flex-shrink: 0;
}

.reviewer-info { flex-grow: 1; }

.name-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.reviewer-name {
    font-weight: 700;
    font-size: 1.05rem;
    color: #222;
}

.review-date {
    display: block;
    font-size: 0.8rem;
    color: #777;
}

.review-card .stars {
    color: var(--gold);
    font-size: 0.9rem;
}

.review-card p {
    font-size: 1rem;
    color: #444;
    line-height: 1.6;
    margin: 0;
}

/* Share Experience Form Styling */
.add-review-box {
    max-width: 600px;
    margin: 40px auto;
    padding: 40px;
    background: #F9F7F2; 
    border-radius: 12px;
    border: 1px solid rgba(197, 160, 89, 0.2);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.add-review-box h3 {
    font-family: 'Playfair Display', serif;
    margin-bottom: 25px;
    text-align: center;
}

#review-form input, 
#review-form select, 
#review-form textarea {
    width: 100%;
    margin-bottom: 20px;
    padding: 14px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
}

#review-form input:focus, 
#review-form select:focus, 
#review-form textarea:focus {
    border-color: var(--gold);
    outline: none;
}

.rating-wrapper {
    text-align: left;
    margin-bottom: 10px;
    font-size: 0.8rem;
    text-transform: uppercase;
    color: #666;
    letter-spacing: 1px;
}

.newly-added {
    animation: fadeIn 0.6s ease;
    border-left: 4px solid var(--gold);
}

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


/* Booking */
.booking-container { 
    display: grid; 
    grid-template-columns: 1fr 1.2fr; 
    max-width: 1100px; 
    margin: 0 auto; 
    background: rgba(255, 255, 255, 0.05); 
    -webkit-backdrop-filter: blur(20px); 
    backdrop-filter: blur(20px); 
    border: 1px solid rgba(255, 255, 255, 0.1); 
    border-radius: 12px; 
    overflow: hidden; 
    position: relative; 
    z-index: 5; 
}

.booking-info-panel { 
    padding: 60px; 
    background: rgba(0, 0, 0, 0.2); 
    border-right: 1px solid rgba(255, 255, 255, 0.05); 
    color: white; 
}

.booking-form-panel { padding: 60px; background: transparent; }

.booking-form-panel input, 
.booking-form-panel select, 
.booking-form-panel textarea { 
    width: 100%; 
    padding: 12px 15px; 
    background: rgba(0, 0, 0, 0.3); 
    border: 1px solid rgba(255, 255, 255, 0.1); 
    border-radius: 4px; 
    color: white; 
    margin-bottom: 15px; 
    font-size: 16px; 
    outline: none;
}

.booking-form-panel select option {
    background-color: #1a1a1a;
    color: #ffffff;
}

.booking-form-panel input:focus, 
.booking-form-panel select:focus, 
.booking-form-panel textarea:focus {
    border-color: var(--gold);
    background: rgba(0, 0, 0, 0.5);
}

/* Gallery */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; }
.gallery-grid img { width: 100%; height: 300px; object-fit: cover; border-radius: 4px; }

/* Contact Section */
/* Contact Grid Layout */
.contact-slick-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px; /* controls spacing between cards */
    margin-top: 50px;
    align-items: stretch;
}

.contact-card {
    background: var(--charcoal);
    padding: 32px 28px;
    border-radius: 6px;
    text-decoration: none;
    border: 1px solid rgba(197, 160, 89, 0.15);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 170px; /* ensures equal card height */
    position: relative;
    overflow: hidden;
}

.card-icon {
    font-size: 0.75rem;
    letter-spacing: 2px;
    color: var(--gold);
    margin-bottom: 10px;
    font-weight: 600;
}

.card-label {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.7);
    margin-bottom: 6px;
}

.card-value {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    color: #FFFFFF;
    font-weight: 500;
    line-height: 1.4;
}

.contact-legal-disclaimer {
    max-width: 800px;
    margin: 40px auto 0;
    padding: 30px;
    background: #fdfcf9; /* Light parchment feel */
    border: 1px solid rgba(197, 160, 89, 0.3);
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.contact-legal-disclaimer h3 {
    font-family: 'Playfair Display', serif;
    color: #222;
    font-size: 1.4rem;
    margin-bottom: 12px;
}

.contact-legal-disclaimer p {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.contact-legal-disclaimer strong {
    color: #C5A059; /* Gold accent for the age requirement */
}

/* Mobile responsive */
@media (max-width: 768px) {
    .contact-legal-disclaimer {
        margin: 30px 15px 0;
        padding: 20px;
    }
}
@media (hover: hover) {
    .contact-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 18px 40px rgba(0,0,0,0.35);
        border-color: rgba(197, 160, 89, 0.35);
    }
}

@media (max-width: 768px) {
    .contact-slick-grid {
        gap: 20px;
        margin-top: 35px;
    }

    .contact-card {
        padding: 26px 22px;
        min-height: auto;
        text-align: center;
    }

    .card-icon {
        letter-spacing: 1.5px;
    }
}

/* Prevent iOS auto-link blue text */
.card-value,
.card-value a {
    color: #FFFFFF !important;
    text-decoration: none !important;
}


/* iOS Safari auto-link override */
a[x-apple-data-detectors],
a[x-apple-data-detectors-type="telephone"] {
    color: inherit !important;
    text-decoration: none !important;
    font-size: inherit !important;
    font-family: inherit !important;
}

.no-detect {
    -webkit-touch-callout: none;
    user-select: none;
}



@media (max-width: 900px) {
    .booking-container, .gallery-grid { grid-template-columns: 1fr; }
    .nav-list { display: none; }
    .form-row { grid-template-columns: 1fr; }
}