:root {
    --primary-green: #74b71b; 
    --gold: #D4AF37;
    --text-dark: #333333;
    --light-bg: #fdfdfd;
}

/* --- 1. GLOBAL & BACKGROUND (THE GLASS VIBE) --- */
body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
    background-color: #fff;
}

body::before {
    content: '';
    position: fixed;
    top: -5%;
    left: -5%;
    width: 110%;
    height: 110%;
    background-image: url('assets/images/vines-bg.png'); 
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    filter: blur(8px); 
    z-index: -1; 
}

.services h2, .gallery-title, .contact-header h2 {
    text-align: center !important;
    width: 100% !important;
    grid-column: 1 / -1; 
    margin-bottom: 30px;
}

section {
    background: transparent !important;
}

/* --- 2. THE LOADER (FASTER & SPINNING) --- */
#loader {
    position: fixed; inset: 0; background: white;
    display: flex; justify-content: center; align-items: center;
    z-index: 9999; transition: opacity 0.3s ease, visibility 0.3s ease; 
}

.fade-out { opacity: 0; visibility: hidden; }

.loader-spin {
    width: 60px; border-radius: 50%; 
    animation: spinLogo 0.8s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

@keyframes spinLogo {
    0% { transform: rotate(0deg) scale(0.9); opacity: 0.7; }
    50% { transform: rotate(180deg) scale(1.1); opacity: 1; }
    100% { transform: rotate(360deg) scale(0.9); opacity: 0.7; }
}

/* --- 3. NAVIGATION (STACKED LUXURY VERSION) --- */
header {
    position: sticky; top: 0; width: 100%;
    background: rgba(255, 255, 255, 0.95) !important; 
    backdrop-filter: blur(10px); z-index: 999;
    border-bottom: 2px solid;
    border-image: linear-gradient(to right, transparent, var(--gold), transparent) 1;
}

header nav {
    display: flex; flex-direction: column; align-items: center;
    padding: 20px 5% 0 5%; height: auto;
}

.logo {
    display: flex; align-items: center; font-family: 'Playfair Display', serif;
    font-size: 1.8rem; font-weight: 700; color: var(--primary-green);
    white-space: nowrap; margin-bottom: 20px; 
}

.logo img { height: 75px !important; margin-right: 15px; }
.logo span { font-family: 'Playfair Display', serif; font-size: 1.8rem; font-weight: 700; color: var(--primary-green); margin-left: 10px; }

.nav-container { 
    width: 100%; display: flex; justify-content: center;
    border-top: 1px solid; border-image: linear-gradient(to right, transparent, rgba(212, 175, 55, 0.3), transparent) 1;
    padding: 15px 0;
}

.nav-links {
    display: flex; list-style: none; width: 90%; max-width: 1000px; 
    justify-content: space-evenly; margin: 0; padding: 0; opacity: 1; overflow: visible;
}

.nav-links li a {
    text-decoration: none; color: var(--primary-green); font-size: 0.85rem;
    text-transform: uppercase; letter-spacing: 2px; position: relative; padding-bottom: 8px;
}

.nav-links li a::after {
    content: ''; position: absolute; width: 0; height: 2px; bottom: 0; left: 0;
    background: var(--gold); transition: 0.3s ease;
}

.nav-links li a:hover { color: var(--gold); }
.nav-links li a:hover::after { width: 100%; }

#menu-toggle { display: none; }
.hamburger { display: none; }

@media (min-width: 768px) {
    .nav-links li { flex: 1; display: flex; justify-content: center; position: relative; }
    .nav-links li:not(:last-child)::after {
        content: ''; position: absolute; right: 0; top: 50%; transform: translateY(-50%);
        height: 16px; width: 1px; background: var(--gold); opacity: 0.4; 
    }
}

/* --- PHYSICAL HERO IMAGE FIX --- */
.hero-main, .page-hero {
    position: relative; width: 100%; display: flex; justify-content: center; align-items: center; overflow: hidden; 
}
.hero-main { height: 90vh; }
.page-hero { height: 45vh; margin-bottom: 0; }

.hero-bg-img { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.hero-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.3); z-index: 1; }
.hero-content { position: relative; z-index: 2; text-align: center }

.gold-dust-text {
    font-family: 'Playfair Display', serif; font-size: clamp(2.5rem, 6vw, 4.5rem);
    background: linear-gradient(to right, #fff 20%, var(--gold) 40%, var(--gold) 60%, #fff 80%);
    background-size: 200% auto; -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    animation: shine 5s linear infinite; filter: drop-shadow(2px 4px 10px rgba(0, 0, 0, 0.8)); 
}
@keyframes shine { to { background-position: 200% center; } }

/* --- 5. BUTTONS --- */
.btn-main {
    display: inline-block; padding: 15px 40px; border: 1px solid var(--gold) !important;
    cursor: pointer; font-weight: 600; text-transform: uppercase; letter-spacing: 2px;
    transition: 0.4s; text-decoration: none; text-align: center;
    background: #ffffff !important; color: var(--primary-green) !important;
}

.hero-content .btn-main {
    background: rgba(255, 255, 255, 0.1) !important; color: white !important;
    backdrop-filter: blur(10px); border: 1px solid rgba(255, 255, 255, 0.5) !important; 
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3); letter-spacing: 2px;
}

.btn-main:hover { background: var(--gold) !important; color: white !important; transform: translateY(-3px); }
.btn-main:active { background: var(--gold) !important; color: white !important; transform: translateY(2px) !important; box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2) !important; transition: 0.1s !important; }

/* THE PEARL WHITE LUXURY BUTTON (For the Gallery Section) */
.royal-text .btn-main {
    background: linear-gradient(135deg, #ffffff 0%, #f9f8f6 40%, #eef0f2 100%) !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15), inset 0 2px 4px rgba(255, 255, 255, 0.9) !important;
    border: 1px solid #e1e3e5 !important; color: var(--gold) !important; text-shadow: none !important;
}
.royal-text .btn-main:hover { box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2), inset 0 2px 5px #ffffff !important; transform: translateY(-2px); }

/* --- 6. GLASS CONTAINERS (About, Services, Contact) --- */
.about-editorial, .service-card, .home-contact, .contact-split {
    padding: 80px 10%; background: rgba(255, 255, 255, 0.75) !important; 
    backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(212, 175, 55, 0.2); box-shadow: 0 15px 35px rgba(0,0,0,0.05);
    position: relative; border-radius: 5px; margin: 40px 5%; 
}

.editorial-container { display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; align-items: center; }
.editorial-text { position: relative; padding-left: 40px; border-left: 2px solid var(--gold); }
.editorial-text::before { content: '✦'; position: absolute; left: -8px; top: -10px; color: var(--gold); font-size: 1.2rem; }
.editorial-images { position: relative; height: 550px; }
.img-frame { position: absolute; box-shadow: 20px 20px 60px rgba(0,0,0,0.1); transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1); overflow: hidden; }
.frame-1 { width: 80%; height: 75%; top: 0; left: 0; z-index: 1; transform: rotate(-2deg); }
.frame-2 { width: 60%; height: 55%; bottom: 20px; right: -20px; z-index: 2; border: 15px solid white; transform: rotate(3deg); }
.img-frame img { width: 100%; height: 100%; object-fit: cover; }
.img-frame:hover { transform: rotate(0deg) scale(1.05); z-index: 10; }

/* --- 7. SERVICES GRID & TWINKLE --- */
.services { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; padding: 80px 10%; justify-items: center; }
.services h2, .services .subtitle { grid-column: 1 / -1 !important; text-align: center !important; width: 100% !important; display: block !important; margin: 0 auto 40px auto !important; }
.service-card { padding: 50px 30px; border-radius: 20px; text-align: center; display: flex; flex-direction: column; align-items: center; transition: all 0.5s ease; }
.service-card:hover { transform: translateY(-10px); box-shadow: 0 0 40px rgba(212, 175, 55, 0.4); border-color: var(--gold); }
.circle-img { width: 220px; height: 220px; border-radius: 50%; background-size: cover; background-position: center; border: 3px solid var(--gold); margin-bottom: 30px; box-shadow: 0 10px 25px rgba(0,0,0,0.1); }
.service-card h3 { font-family: 'Playfair Display', serif; color: var(--primary-green); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 25px; }
.service-list { list-style: none !important; padding: 0 !important; margin-bottom: 35px; }
.service-list li { font-size: 0.85rem; color: #666; margin-bottom: 12px; text-transform: uppercase; letter-spacing: 1px; }

/* --- 8. MUSEUM MATTE FRAME (Royal Portfolio) --- */
.royal-portfolio { display: flex; align-items: center; justify-content: center; gap: 80px; padding: 120px 10%; }
.royal-text { flex: 1; max-width: 400px; }

/* GALLERY TEXT FIX (Gold & White readable text) */
.royal-text h2 { font-family: 'Playfair Display', serif; font-size: 3.5rem; color: var(--gold) !important; text-shadow: 0px 2px 10px rgba(0, 0, 0, 0.8) !important; margin-bottom: 20px; }
.royal-text p, .royal-text .subtitle { color: #ffffff !important; text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8) !important; font-weight: 400; letter-spacing: 1px; }

.royal-image-container { flex: 1; display: flex; justify-content: center; padding: 20px; }
.castle-frame { position: relative; padding: 30px; background: #fff; box-shadow: 0 30px 60px rgba(0,0,0,0.1), 0 10px 20px rgba(212, 175, 55, 0.05); width: 100%; max-width: 450px; height: auto !important; margin: 0 auto; display: block; border: none; outline: none; }
.castle-frame::before { content: ''; position: absolute; inset: 15px; border: 1px solid var(--gold); pointer-events: none; z-index: 10; }
.castle-frame:hover { transform: scale(1.02); transition: transform 0.5s; }
.royal-fade-slider { position: relative; width: 100%; height: 0 !important; padding-top: 125% !important; overflow: hidden; }
.royal-slide { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover !important; opacity: 0; transition: opacity 1.5s ease-in-out; }
.royal-slide.active { opacity: 1; }

/* --- 9. SLIDERS (Gallery & Contact) --- */
.luxury-slider { position: relative; width: 100vw; margin-left: calc(-50vw + 50%); padding: 60px 0 100px 0; overflow: hidden; }
.slider-track { display: flex; gap: 30px; padding: 0 5vw 0 5vw; transition: transform 0.8s cubic-bezier(0.23, 1, 0.32, 1); width: max-content; will-change: transform; }
.slider-track::after { content: ''; min-width: 30vw; display: block; }
.luxury-slide { width: 320px; height: 450px; background: white; padding: 12px; box-shadow: 0 10px 30px rgba(0,0,0,0.08); flex-shrink: 0; display: flex; justify-content: center; align-items: center; }
.luxury-slide:nth-child(even) { transform: rotate(2deg); }
.luxury-slide:nth-child(odd) { transform: rotate(-1.5deg); }
.luxury-slide img { width: 100%; height: 100%; object-fit: cover; display: block; }

.slider-arrow { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(255, 255, 255, 0.8); color: var(--gold); border: 1px solid var(--gold); width: 50px; height: 50px; border-radius: 50%; cursor: pointer; z-index: 10; font-size: 1.2rem; transition: 0.3s; }
.slider-arrow:hover { background: var(--gold); color: white; }
.prev-arr { left: 30px; }
.next-arr { right: 30px; }

/* Stacked Contact Gallery */
.contact-right { flex: 1; padding: 60px; display: flex; justify-content: center; align-items: center; }
.photo-stack-container { position: relative; width: 100%; max-width: 450px; height: 550px; margin: 0 auto; }
.fade-slider { position: relative; width: 100%; height: 100%; }
.fade-slide { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; border: 15px solid white; box-shadow: 10px 15px 40px rgba(0,0,0,0.15); transition: opacity 0.8s ease, transform 0.8s ease; transform: scale(0.95); }
.fade-slide:nth-child(1).active { opacity: 1; z-index: 2; transform: scale(1) rotate(-3deg); }
.fade-slide:nth-child(2).active { opacity: 1; z-index: 2; transform: scale(1) rotate(2deg); }
.fade-slide:nth-child(3).active { opacity: 1; z-index: 2; transform: scale(1) rotate(-1deg); }
.fade-slide:nth-child(4).active { opacity: 1; z-index: 2; transform: scale(1) rotate(3deg); }
.fade-slide:nth-child(5).active { opacity: 1; z-index: 2; transform: scale(1) rotate(-2deg); }
.stack-arrow { position: absolute; top: 50%; transform: translateY(-50%); background: white; color: var(--gold); border: 2px solid var(--gold); width: 45px; height: 45px; border-radius: 50%; cursor: pointer; z-index: 10; font-size: 1.2rem; transition: 0.3s; box-shadow: 0 5px 15px rgba(0,0,0,0.1); }
.stack-arrow:hover { background: var(--gold); color: white; }
.prev-stack { left: -25px; }
.next-stack { right: -25px; }

.contact-left { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; width: 100%; padding: 60px 20px; }
.contact-header { width: 100%; margin-bottom: 20px; }

/* --- 10. FORMS & CONTACT --- */
.minimal-form, #contact-form { max-width: 700px; margin: 40px auto 0; width: 100%; display: flex; flex-direction: column; align-items: center; }
#contact-form .btn-main { margin: 30px auto 0 !important; display: table !important; background: white !important; color: var(--primary-green) !important; border: 1px solid var(--gold) !important; }
.form-row { display: flex; gap: 20px; margin-bottom: 20px; width: 100%; }
.minimal-form input, .minimal-form textarea, #contact-form input, #contact-form textarea { width: 100%; padding: 15px; border: none; border-bottom: 1px solid var(--gold); background: transparent; outline: none; font-family: 'Poppins', sans-serif; box-sizing: border-box; }
.home-contact .subtitle, .contact-header .subtitle, .contact-header h3 { text-align: center !important; display: block !important; width: 100% !important; margin: 0 auto 10px auto !important; }
.minimal-form textarea, #contact-form textarea { margin-bottom: 40px !important; min-height: 80px; resize: vertical; }
.social-links { margin-top: 80px; display: flex; gap: 40px; justify-content: center; }
.social-links a { color: var(--gold) !important; text-decoration: none !important; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; transition: all 0.4s ease; }
.social-links a:hover { color: var(--gold) !important; text-shadow: 0 0 10px rgba(212, 175, 55, 0.6); letter-spacing: 3px; }

/* --- 11. DIVIDERS & FOOTER --- */
.gold-divider { display: flex; align-items: center; justify-content: center; gap: 20px; margin: 60px auto; width: 80%; }
.gold-line { flex: 1; height: 1px; background: linear-gradient(to right, transparent, var(--gold), transparent); opacity: 0.5; }
.ornament { color: var(--gold); font-size: 1.2rem; }

.sleek-footer { background: var(--primary-green); color: white; padding: 60px 10%; text-align: center; }
.footer-logo { display: flex; justify-content: center; align-items: center; font-family: 'Playfair Display', serif; font-size: 1.8rem; margin-bottom: 25px; }
.footer-brand-img { height: 35px; margin-right: 12px; border-radius: 4px; filter: brightness(1.2); }
.footer-links a { color: rgba(255,255,255,0.7); text-decoration: none; margin: 0 15px; font-size: 0.8rem; text-transform: uppercase; }
.copyright { margin-top: 40px; font-size: 0.7rem; opacity: 0.4; }

/* --- RESTORED: HIGH-END SCROLL REVEAL --- */
.reveal { opacity: 0; transform: translateY(60px); transition: all 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important; }
.reveal.active { opacity: 1 !important; transform: translateY(0) !important; }

/* --- RESTORED: SERVICES INTRO CONTAINER --- */
.services-intro { padding: 80px 10%; background: rgba(255, 255, 255, 0.85) !important; backdrop-filter: blur(15px); -webkit-backdrop-filter: blur(15px); border: 1px solid rgba(212, 175, 55, 0.2); box-shadow: 0 15px 35px rgba(0,0,0,0.05); border-radius: 5px; margin: 40px 5% 60px 5% !important; text-align: center; }
.intro-lead { font-family: 'Playfair Display', serif; font-size: 2.2rem; color: var(--primary-green); margin-bottom: 20px; font-weight: 700; }
.intro-text { font-family: 'Poppins', sans-serif; font-size: 1.1rem; color: #666; line-height: 1.8; }

/* --- RESTORED GALLERY SPREAD --- */
.gallery-title { font-family: 'Playfair Display', serif; font-size: 3.5rem; color: var(--primary-green); text-align: center; margin: 60px 0; background: transparent; }
.table-spread { position: relative; max-width: 1200px; height: auto !important; min-height: 80vh; margin: 0 auto; display: flex; flex-wrap: wrap; justify-content: center; gap: 40px; padding-bottom: 100px; }
.photo { width: 300px; padding: 12px 12px 40px 12px; background: white; box-shadow: 0 15px 40px rgba(0,0,0,0.15); transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); opacity: 0; animation: fadeInPhoto 1s forwards; margin: 0 !important; }
.photo img { width: 100%; height: auto; display: block; }
@keyframes fadeInPhoto { to { opacity: 1; } }
.photo:nth-child(odd) { transform: rotate(-3deg); z-index: 2; }
.photo:nth-child(even) { transform: rotate(4deg); z-index: 1; }
.photo-1 { animation-delay: 0.2s; } .photo-2 { animation-delay: 0.4s; } .photo-3 { animation-delay: 0.6s; } .photo-4 { animation-delay: 0.8s; } .photo-5 { animation-delay: 1s; }

/* THE SCANNING GOLD SHINE */
.gallery-page .gallery-title, .gallery-page .gold-dust-text { background-image: linear-gradient(to right, var(--gold) 30%, #FDF5D3 45%, #ffffff 50%, #FDF5D3 55%, var(--gold) 70%) !important; background-size: 250% auto !important; -webkit-background-clip: text !important; background-clip: text !important; -webkit-text-fill-color: transparent !important; color: transparent !important; animation: luxuryScan 6s ease-in-out infinite alternate !important; filter: drop-shadow(0px 2px 4px rgba(0, 0, 0, 0.12)) !important; text-shadow: none !important; font-weight: 700 !important; }
@keyframes luxuryScan { 0% { background-position: 200% center; } 100% { background-position: -50% center; } }


/* ==========================================================================
   12. MOBILE OVERRIDES (EVERYTHING BELOW THIS LINE FIXES PHONES & TABLETS)
   ========================================================================== */

/* 1. HIDE MOBILE BUTTONS ON DESKTOP */
.mobile-actions { display: none; position: fixed; bottom: 0; left: 0; width: 100%; background: var(--primary-green); z-index: 1000; box-shadow: 0 -5px 15px rgba(0,0,0,0.1); }
.action-btn { flex: 1; text-align: center; padding: 18px 10px; text-decoration: none !important; color: white !important; font-weight: 600; text-transform: uppercase; letter-spacing: 1.5px; font-size: 0.85rem; }
.action-btn:first-child { border-right: 1px solid rgba(255, 255, 255, 0.3); }

/* 2. SHOW ON TABLETS */
@media (max-width: 1024px) {
    .mobile-actions { display: flex !important; }
    .services { display: flex !important; flex-wrap: wrap; justify-content: center; gap: 40px; }
    .service-card { width: calc(50% - 20px) !important; max-width: 450px; }
    nav ul { gap: 20px; } 
    .editorial-container { gap: 40px; }
}

/* 3. MOBILE VIEW (Phones) - RESTORED HAMBURGER & FIXES */
@media (max-width: 767px) {
    
    /* NAV & HAMBURGER RESTORED */
    header nav { flex-direction: row !important; justify-content: center !important; padding: 15px 5% !important; height: 70px !important; position: relative !important; }
    .logo { font-size: 1.2rem !important; margin-bottom: 0 !important; margin: 0 auto !important; }
    .logo img { height: 35px !important; margin-right: 8px; }
    .logo span { font-size: 1.2rem !important; margin-left: 5px; }
    .nav-container { width: auto !important; border-top: none !important; padding: 0 !important; }
    
    .hamburger { display: flex !important; cursor: pointer; flex-direction: column; gap: 5px; padding: 5px; z-index: 1001; position: absolute !important; right: 5%; top: 25px; }
    .hamburger span { width: 25px; height: 2px; background: var(--primary-green); transition: 0.3s; }
    .nav-links { position: absolute; top: 70px; left: 0; width: 100%; flex-direction: column; align-items: center; background: #ffffff; box-shadow: 0 15px 30px rgba(0,0,0,0.1); gap: 25px; padding: 0; max-height: 0; opacity: 0; overflow: hidden; transition: all 0.4s ease; margin: 0; border-bottom: 2px solid var(--gold); }
    #menu-toggle:checked ~ .nav-links { max-height: 400px; padding: 30px 0; opacity: 1; }
    #menu-toggle:checked + .hamburger span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
    #menu-toggle:checked + .hamburger span:nth-child(2) { opacity: 0; }
    #menu-toggle:checked + .hamburger span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

    /* RESTORED OVERLAPPING SCATTER (About Images) */
    .editorial-images { height: auto !important; display: flex; flex-direction: column; align-items: center; gap: 0 !important; margin-top: 30px; padding-bottom: 40px !important; }
    .img-frame, .photo { position: relative !important; width: 95% !important; max-width: 420px !important; padding: 10px !important; background: #ffffff !important; box-shadow: 0 15px 35px rgba(0,0,0,0.15); transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease !important; border-radius: 4px; }
    .photo { padding-bottom: 35px !important; }
    .frame-1 { transform: rotate(-4deg) !important; z-index: 1; margin: 0 auto !important; }
    .frame-2 { transform: rotate(5deg) !important; margin: -70px auto 0 auto !important; z-index: 2; border: 6px solid white !important; }
    .img-frame:hover, .img-frame:active, .photo:hover, .photo:active { transform: scale(1.05) rotate(0deg) !important; box-shadow: 0 25px 50px rgba(0,0,0,0.3) !important; z-index: 10 !important; }

    /* GENERAL MOBILE LAYOUT OVERRIDES */
    .page-hero-content h1 { font-size: 2.8rem !important; }
    .gold-dust-text { font-size: 2.5rem !important; line-height: 1.2; padding: 0 15px; }
    .intro-lead { font-size: 1.6rem !important; }
    .editorial-container, .royal-portfolio, .contact-split { display: flex; flex-direction: column; text-align: center; padding: 40px 5%; }
    .services { grid-template-columns: 1fr; padding: 40px 5%; } 
    .services-intro { padding: 50px 5% 30px !important; }
    .royal-text, .royal-image-container { width: 100% !important; max-width: 100% !important; flex: none !important; }
    .castle-frame { box-sizing: border-box !important; padding: 15px !important; width: 100% !important; max-width: 350px !important; background: #fff !important; margin: 30px auto 0 !important; display: block !important; }
    .castle-frame::before { inset: 8px !important; }
    .royal-fade-slider { padding-top: 0 !important; height: 350px !important; width: 100% !important; position: relative; overflow: hidden; }
    .royal-text h2 { font-size: 2.2rem !important; }
    .social-links { gap: 20px; flex-wrap: wrap; margin-top: 40px; }
    .btn-main { width: auto !important; padding: 15px 40px !important; margin: 20px auto !important; display: table !important; }
    #contact-form .btn-main, .minimal-form .btn-main { width: 90% !important; }
    
    /* --- NEW CONTACT FORM FIXES --- */
    .contact-right { order: -1; width: 100%; padding: 40px 10px !important; box-sizing: border-box; }
    .form-row { flex-direction: column; margin-bottom: 0; }
    .minimal-form, #contact-form { width: 100%; padding: 0 15px; box-sizing: border-box; }

    /* --- NEW CONTACT STACK ARROW FIX (Centers perfectly) --- */
    .photo-stack-container { width: 100% !important; max-width: 320px !important; height: 420px !important; margin: 0 auto 40px auto !important; }
    .prev-stack { left: -5px !important; z-index: 20 !important; }
    .next-stack { right: -5px !important; z-index: 20 !important; }

    /* --- NEW NATIVE SWIPE FIX (Works perfectly now) --- */
    .luxury-slider { width: 100vw !important; overflow-x: auto !important; scroll-snap-type: x mandatory !important; -webkit-overflow-scrolling: touch !important; padding: 0 !important; scrollbar-width: none !important; }
    .luxury-slider::-webkit-scrollbar { display: none !important; }
    .slider-track { transform: none !important; width: max-content !important; padding: 20px 5vw !important; gap: 15px !important; }
    .luxury-slide { scroll-snap-align: center !important; width: 80vw !important; max-width: 300px !important; height: 420px !important; margin: 0 !important; flex-shrink: 0 !important; }
    .slider-arrow { display: none !important; } /* Hide the desktop arrows so you can just swipe */
}

/* ==========================================================================
   SAFE ADDITIONS: PADDING, DECORATION, AND IMAGE SIZING
   ========================================================================== */

/* 1. Prevent Mobile Buttons from Blocking Content */
@media (max-width: 1024px) {
    body {
        /* Adds invisible space at the bottom so you can scroll past the buttons */
        padding-bottom: 75px !important; 
    }
}

/* 2. Upgrading the Services Intro (Ultra-Minimalist Luxury Line) */
.intro-lead {
    position: relative;
    padding-bottom: 25px; /* Gives the text room to breathe */
}

/* The tiny, elegant gold dot */
.intro-lead::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 4px;
    background: var(--gold);
    border-radius: 50%; /* Makes it a perfect circle */
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.8); /* Soft, expensive glow */
    z-index: 2;
}

/* The razor-thin, tailored gradient line */
.intro-lead::before {
    content: '';
    position: absolute;
    bottom: 1.5px; /* Aligns perfectly with the center of the dot */
    left: 25%; /* Keeps the line shorter and more tailored */
    width: 50%;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(212, 175, 55, 0.6), transparent);
    z-index: 1;
}

/* 3. Fixing the "What We Provide" Single Image Size on Mobile */
@media (max-width: 768px) {
    /* Targets only that specific single image frame */
    .editorial-images .img-frame:not(.frame-1):not(.frame-2) {
        width: 85vw !important; /* Make it wide and luxurious */
        max-width: 350px !important;
        height: 350px !important; /* Forces a nice, large shape */
        margin: 0 auto !important; /* Centers it perfectly */
        display: block !important;
    }
    .editorial-images .img-frame:not(.frame-1):not(.frame-2) img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
    }
}
/* --- Fix Footer Links Wrapping on Mobile --- */
@media (max-width: 768px) {
    .footer-links a {
        margin: 0 8px !important; /* Shrinks the wide desktop margins */
        font-size: 0.75rem !important; /* Slightly smaller text to fit all 4 */
    }
}