/* ==========================================
   1. CSS VARIABLES & TOKENS
   ========================================== */
:root {
    /* Cinematic Color Palette */
    --color-bg: #050505;
    --color-bg-darker: #020202;
    --color-surface: #0a0a0a;
    --color-surface-light: #121212;
    
    /* The Gold Standard */
    --color-gold: #D4AF37;
    --color-gold-hover: #F3E5AB;
    --color-gold-muted: rgba(212, 175, 55, 0.4);
    
    /* Text */
    --color-text: #EAEAEA;
    --color-text-muted: #888888;
    
    /* Borders */
    --color-border: rgba(255, 255, 255, 0.05);
    --color-border-gold: rgba(212, 175, 55, 0.15);

    /* Typography */
    --font-display: 'Cinzel', serif;
    --font-accent: 'Oswald', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Transitions & Spacing */
    --transition-smooth: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    
    /* Fluid Spacing for all devices */
    --section-padding: clamp(60px, 10vw, 160px) 0;
}

/* ==========================================
   2. RESET, BASE SETUP & OVERFLOW FIX
   ========================================== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html.lenis { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }
.lenis.lenis-stopped { overflow: hidden; }
.lenis.lenis-scrolling iframe { pointer-events: none; }

body {
    font-family: var(--font-body);
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body.loading {
    overflow: hidden;
}

/* FIX 1: iOS Background Scroll Lock (Bleed Fix) */
body.menu-open {
    position: fixed;
    width: 100%;
    height: 100%;
    overflow: hidden;
    overscroll-behavior: none;
}

/* FIX: The wrapper that strictly prevents horizontal scroll breaking Fold screens */
.page-wrapper {
    position: relative;
    width: 100%;
    overflow-x: hidden; 
}

img, video, iframe { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition-fast); }
ul { list-style: none; }
button { cursor: pointer; border: none; background: transparent; }

/* ==========================================
   3. TYPOGRAPHY & UTILITIES
   ========================================== */
.font-display { font-family: var(--font-display); font-weight: 500; }
.font-accent { font-family: var(--font-accent); text-transform: uppercase; letter-spacing: 2px; }
.font-body { font-family: var(--font-body); }
.font-bold { font-weight: 700; }

.text-gold { color: var(--color-gold); }
.text-white { color: #ffffff; }
.text-muted { color: var(--color-text-muted); }

.text-center { text-align: center; }
.uppercase { text-transform: uppercase; }
.italic { font-style: italic; }
.tracking-wide { letter-spacing: 2px; }
.tracking-wider { letter-spacing: 4px; }
.ml-2 { margin-left: 0.5rem; }

/* Fluid Typography */
.text-sm { font-size: clamp(0.8rem, 1.5vw, 0.9rem); }
.text-lg { font-size: clamp(1rem, 2vw, 1.15rem); }
.text-xl { font-size: clamp(1.2rem, 3vw, 1.5rem); }
.h1 { font-size: clamp(2.2rem, 6vw, 4rem); line-height: 1.1; }
.h2 { font-size: clamp(1.8rem, 4vw, 3rem); line-height: 1.2; }

.bg-darker { background-color: var(--color-bg-darker); }
.bg-surface { background-color: var(--color-surface); }
.section-padding { padding: var(--section-padding); }
.p-0 { padding: 0; }
.p-3 { padding: 1.5rem; }

.container { max-width: 1320px; margin: 0 auto; padding: 0 clamp(15px, 5vw, 40px); width: 100%; }
.container-fluid { padding: 0 clamp(15px, 5vw, 40px); width: 100%; }

.mx-auto { margin-left: auto; margin-right: auto; }
.max-w-600 { max-width: 600px; }
.max-w-700 { max-width: 700px; }

.mb-0 { margin-bottom: 0; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 3rem; }
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 4rem; }
.py-3 { padding-top: 1rem; padding-bottom: 1rem; }
.py-5 { padding-top: clamp(2rem, 5vw, 4rem); padding-bottom: clamp(2rem, 5vw, 4rem); }

.w-100 { width: 100%; }
.flex-align { display: flex; align-items: flex-start; gap: 1rem; }
.flex-center { display: flex; align-items: center; justify-content: center; flex-direction: column; }
.relative { position: relative; }
.z-10 { z-index: 10; }
.border-gold-subtle { border: 1px solid var(--color-border-gold); }
.border-top-gold { border-top: 1px solid var(--color-border-gold); }
.border-top-muted { border-top: 1px solid var(--color-border); }

.section-tag {
    font-size: clamp(0.75rem, 1.5vw, 0.85rem);
    letter-spacing: 4px;
    display: block;
    margin-bottom: 1.5rem;
}

.section-title {
    font-size: clamp(2rem, 6vw, 4rem);
    margin-bottom: 1rem;
    color: #fff;
    line-height: 1.1;
}

/* ==========================================
   4. CINEMATIC NOISE & PRELOADER
   ========================================== */
.noise-overlay {
    position: fixed; inset: 0; pointer-events: none; z-index: 9999; opacity: 0.04;
    background-image: url('data:image/svg+xml,%3Csvg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"%3E%3Cfilter id="noiseFilter"%3E%3CfeTurbulence type="fractalNoise" baseFrequency="0.65" numOctaves="3" stitchTiles="stitch"/%3E%3C/filter%3E%3Crect width="100%25" height="100%25" filter="url(%23noiseFilter)"/%3E%3C/svg%3E');
}

.preloader {
    position: fixed; inset: 0; background-color: var(--color-bg); z-index: 10000;
    display: flex; justify-content: center; align-items: center;
}

/* FIX 2: Smart Preloader Skip Class */
html.skip-preloader .preloader {
    display: none !important;
}
html.skip-preloader body.loading {
    overflow: auto !important;
}

.preloader-content { text-align: center; }
.preloader-logo { font-size: clamp(2rem, 5vw, 3rem); letter-spacing: 4px; margin-bottom: 1rem; }
.preloader-line-wrapper { width: clamp(150px, 40vw, 200px); height: 1px; background-color: var(--color-border); margin: 0 auto 1rem; position: relative; overflow: hidden; }
.preloader-line { position: absolute; top: 0; left: 0; height: 100%; width: 0%; background-color: var(--color-gold); }
.preloader-text { color: var(--color-text-muted); font-size: 0.8rem; letter-spacing: 3px; opacity: 0; }

/* ==========================================
   5. CUSTOM CURSOR
   ========================================== */
.cursor-dot {
    position: fixed; top: 0; left: 0; pointer-events: none; z-index: 10001;
}

/* ==========================================
   6. BUTTONS & CRO TRIGGERS
   ========================================== */
.btn {
    display: inline-flex; align-items: center; justify-content: center;
    padding: clamp(1rem, 2vw, 1.2rem) clamp(1.5rem, 3vw, 2.5rem);
    font-family: var(--font-accent); font-size: clamp(0.9rem, 1.5vw, 1rem);
    letter-spacing: 2px; text-transform: uppercase; border-radius: 2px;
    transition: var(--transition-fast); position: relative; will-change: transform; text-align: center;
}

.btn-large { padding: clamp(1.2rem, 3vw, 1.5rem) clamp(2rem, 4vw, 3.5rem); font-size: clamp(1rem, 2vw, 1.1rem); }

.btn-primary { background-color: var(--color-gold); color: #000; border: 1px solid var(--color-gold); font-weight: 500; }
.btn-primary:hover { background-color: var(--color-gold-hover); border-color: var(--color-gold-hover); box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2); color: #000; }

.btn-outline { background-color: transparent; color: var(--color-gold); border: 1px solid var(--color-gold); }
.btn-outline:hover { background-color: var(--color-gold); color: #000; }

.hover-gold:hover { color: var(--color-gold); }
.hover-white:hover { color: #fff; }

.cta-pulse { animation: btnPulse 2.5s infinite; }
@keyframes btnPulse { 
    0% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.4); } 
    70% { box-shadow: 0 0 0 15px rgba(212, 175, 55, 0); } 
    100% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0); } 
}

.urgency-badge {
    display: inline-flex; align-items: center; gap: 8px; background: rgba(212, 175, 55, 0.08);
    padding: 6px 16px; border-radius: 20px; border: 1px solid rgba(212, 175, 55, 0.2); backdrop-filter: blur(4px);
}

.pulse-dot {
    width: 8px; height: 8px; background-color: var(--color-gold); border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7); animation: pulseDot 2s infinite;
}
@keyframes pulseDot { 
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7); } 
    70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(212, 175, 55, 0); } 
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(212, 175, 55, 0); } 
}

/* ==========================================
   7. ANNOUNCEMENT BAR & HEADER
   ========================================== */
.announcement-bar {
    position: absolute; top: 0; left: 0; width: 100%;
    background: linear-gradient(90deg, #D4AF37, #F3E5AB, #D4AF37);
    color: #000; text-align: center; padding: clamp(6px, 1.5vw, 10px) 5vw; z-index: 1001;
}
.announcement-bar a { color: #000; text-decoration: underline; font-weight: 600; }

.site-header {
    position: absolute; top: clamp(32px, 5vw, 40px); left: 0; width: 100%;
    padding: clamp(1rem, 3vw, 2rem) 0; z-index: 999; transition: background-color 0.4s ease, padding 0.4s ease, top 0.4s ease;
}
.site-header.scrolled {
    position: fixed; top: 0; padding: 1rem 0; background-color: rgba(5, 5, 5, 0.95);
    backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border-bottom: 1px solid var(--color-border);
}

.header-inner { display: flex; justify-content: space-between; align-items: center; }
.logo { font-size: clamp(1.4rem, 3vw, 1.8rem); font-weight: 600; letter-spacing: 2px; }

.main-nav { display: flex; gap: clamp(1.5rem, 3vw, 3rem); }
.main-nav a { font-family: var(--font-accent); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 2px; color: var(--color-text); position: relative; padding-bottom: 5px; }
.main-nav a::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 1px; background-color: var(--color-gold); transition: width 0.3s ease; }
.main-nav a:hover::after { width: 100%; }
.main-nav a:hover { color: var(--color-white); }

.header-actions { display: flex; align-items: center; gap: clamp(1rem, 2vw, 2rem); }
.header-phone { font-family: var(--font-accent); letter-spacing: 1px; }

.menu-toggle { display: none; flex-direction: column; gap: 6px; background: none; border: none; z-index: 1001; }
.menu-toggle .line { width: 30px; height: 1px; background-color: var(--color-gold); transition: var(--transition-fast); }

/* ==========================================
   8. HERO SECTION
   ========================================== */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 100svh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-parallax-bg { position: absolute; inset: -10%; z-index: -1; width: 120%; }
.hero-parallax-bg img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.4) contrast(1.1); }
.hero-vignette { position: absolute; inset: 0; background: radial-gradient(circle at center, transparent 30%, rgba(0,0,0,0.8) 100%); }

.hero-content { max-width: 900px; position: relative; z-index: 1; margin-top: 5vh; }
.hero-trust-badge { display: inline-block; border: 1px solid var(--color-border-gold); padding: 4px 12px; border-radius: 4px; background: rgba(0,0,0,0.4); backdrop-filter: blur(4px); }

.massive-title { line-height: 1; margin-bottom: 0.5rem; color: #fff; text-shadow: 0 10px 40px rgba(0,0,0,0.8); }
.title-gradient { background: linear-gradient(to right, #ffffff, #aaaaaa); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.hero-separator { width: clamp(50px, 10vw, 80px); height: 2px; background-color: var(--color-gold); margin: clamp(1rem, 3vw, 2rem) 0; }
.hero-description { max-width: 600px; margin-bottom: clamp(2rem, 5vw, 3rem); }
.hero-cta-group { display: flex; gap: 1rem; flex-wrap: wrap; }

.scroll-indicator { position: absolute; bottom: clamp(20px, 5vw, 40px); left: 5vw; display: flex; align-items: center; gap: 15px; font-size: 0.75rem; color: var(--color-text-muted); }
.scroll-line { width: 1px; height: 50px; background-color: var(--color-border); position: relative; overflow: hidden; }
.scroll-line::after { content: ''; position: absolute; top: -50px; left: 0; width: 100%; height: 50px; background-color: var(--color-gold); animation: scrollDrop 2s infinite ease-in-out; }
@keyframes scrollDrop { 0% { top: -50px; } 50% { top: 100%; } 100% { top: 100%; } }

/* ==========================================
   9. TRUST SECTION (Fluid Grid Fix)
   ========================================== */
.trust-section { border-bottom: 1px solid var(--color-border); padding: clamp(2rem, 6vw, 4rem) 0; }

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 120px), 1fr));
    text-align: center;
    gap: 2rem;
}

.trust-stat { border-right: 1px solid var(--color-border); }
.trust-stat h3 { line-height: 1; margin-bottom: 0.5rem; }
.trust-stat .star { font-size: clamp(1.2rem, 3vw, 2.2rem); margin-left: 5px; }

/* ==========================================
   10. TRANSFORMATIONS (Slider)
   ========================================== */
.ba-wrapper { max-width: 900px; margin: 0 auto; position: relative; border: 1px solid var(--color-border-gold); padding: clamp(5px, 2vw, 10px); background-color: var(--color-surface); }
.ba-container { position: relative; width: 100%; aspect-ratio: 16/10; overflow: hidden; }
.ba-image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ba-before { z-index: 1; }
.ba-after { z-index: 2; clip-path: inset(0 50% 0 0); -webkit-clip-path: inset(0 50% 0 0); }
.ba-slider { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0; z-index: 10; cursor: ew-resize; }
.ba-slider-line { position: absolute; top: 0; bottom: 0; left: 50%; width: 2px; background-color: var(--color-gold); transform: translateX(-50%); pointer-events: none; z-index: 5; }
.ba-slider-button { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: clamp(36px, 8vw, 46px); height: clamp(36px, 8vw, 46px); background-color: var(--color-bg); border: 1px solid var(--color-gold); border-radius: 50%; display: flex; justify-content: center; align-items: center; color: var(--color-gold); font-size: clamp(1rem, 3vw, 1.2rem); }

/* ==========================================
   11. FUTURISTIC 3D REEL CAROUSEL
   ========================================== */
.overflow-hidden { overflow: hidden; }

.reel-swiper { width: 100%; padding-top: 2rem; padding-bottom: 4rem; overflow: visible; }
.reel-swiper .swiper-slide {
    width: clamp(240px, 70vw, 320px); 
    aspect-ratio: 9 / 16;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.6);
    background-color: var(--color-bg-darker);
    transition: box-shadow 0.3s ease;
}

.reel-swiper .swiper-slide-active { box-shadow: 0 0 40px rgba(212, 175, 55, 0.25); }
.video-wrapper { width: 100%; height: 100%; position: relative; }
.video-placeholder { width: 100%; height: 100%; background: linear-gradient(135deg, #1a1a1a, #050505); cursor: pointer; position: relative; transition: opacity 0.3s ease; }
.video-placeholder:hover { background: linear-gradient(135deg, #222, #0a0a0a); }

.injected-video { animation: fadeIn 0.4s ease forwards; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

.swiper-pagination-bullet { background: #fff; opacity: 0.3; }
.swiper-pagination-bullet-active { background: var(--color-gold); opacity: 1; }

/* ==========================================
   12. SERVICES MENU
   ========================================== */
.menu-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 350px), 1fr)); gap: clamp(3rem, 6vw, 6vw); max-width: 1200px; margin: 0 auto; }
.menu-category { font-size: clamp(1.4rem, 3vw, 1.8rem); margin-bottom: 2rem; padding-bottom: 1rem; border-bottom: 1px solid var(--color-border); }
.menu-item { margin-bottom: 2rem; transition: transform 0.3s; }
.menu-item:hover { transform: translateX(10px); }
.menu-item-header { display: flex; align-items: flex-end; margin-bottom: 0.5rem; }
.menu-item h4 { font-size: clamp(1.1rem, 2.5vw, 1.3rem); color: #fff; transition: color 0.3s; }
.menu-item:hover h4 { color: var(--color-gold); }
.menu-dots { flex-grow: 1; margin: 0 1rem 0.4rem; border-bottom: 1px dotted var(--color-text-muted); opacity: 0.3; }
.menu-price { font-size: clamp(1.2rem, 3vw, 1.4rem); }

/* ==========================================
   13. MASTERS (Team & Specialties)
   ========================================== */
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr)); gap: clamp(2rem, 4vw, 4vw); max-width: 900px; margin: clamp(2rem, 5vw, 4rem) auto 0; }
.team-image-wrapper { position: relative; aspect-ratio: 3/4; border: 1px solid var(--color-border); border-radius: 4px; }
.team-img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition-smooth); filter: grayscale(30%); }
.team-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.95), transparent 70%); display: flex; flex-direction: column; justify-content: flex-end; padding: clamp(1.5rem, 4vw, 2rem); opacity: 0; transform: translateY(20px); transition: var(--transition-smooth); }
.team-card:hover .team-img { transform: scale(1.05); filter: grayscale(0%); }
.team-card:hover .team-overlay { opacity: 1; transform: translateY(0); }

/* ==========================================
   14. GOOGLE REVIEWS CARDS
   ========================================== */
.google-reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr)); gap: 2rem; text-align: left; }
.google-review-card { background-color: var(--color-surface); border: 1px solid var(--color-border); border-radius: 12px; padding: clamp(1.5rem, 4vw, 2rem); transition: var(--transition-smooth); position: relative; overflow: hidden; }
.google-review-card::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 3px; background: linear-gradient(90deg, #4285F4, #EA4335, #FBBC04, #34A853); opacity: 0; transition: opacity 0.3s; }
.google-review-card:hover { transform: translateY(-5px); border-color: rgba(255, 255, 255, 0.15); background-color: var(--color-surface-light); }
.google-review-card:hover::before { opacity: 1; }
.gr-header { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.2rem; }
.gr-avatar { width: clamp(40px, 8vw, 45px); height: clamp(40px, 8vw, 45px); background-color: #2D2D2D; color: #FFF; border-radius: 50%; display: flex; justify-content: center; align-items: center; font-family: var(--font-accent); font-size: 1.1rem; letter-spacing: 1px; }
.gr-info h4 { font-family: var(--font-display); font-size: clamp(1rem, 2vw, 1.1rem); color: #fff; margin-bottom: 4px; }
.gr-stars { color: #FBBC04; font-size: 1.1rem; display: flex; align-items: center; gap: 6px; }
.g-icon { width: 14px; height: 14px; object-fit: contain; }
.gr-text { font-family: var(--font-body); color: var(--color-text-muted); font-size: clamp(0.9rem, 1.5vw, 0.95rem); font-style: italic; line-height: 1.7; }

/* ==========================================
   15. FAQ SECTION
   ========================================== */
.faq-item { transition: background-color 0.3s ease; border-radius: 4px; cursor: pointer; }
.faq-item:hover { background-color: var(--color-surface-light); }
.faq-item summary { list-style: none; position: relative; padding-right: 2rem; outline: none; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; position: absolute; right: 0; top: 50%; transform: translateY(-50%); color: var(--color-gold); font-size: 1.5rem; font-weight: 300; transition: transform 0.3s ease; }
.faq-item[open] summary::after { content: '-'; transform: translateY(-50%) rotate(180deg); }

/* ==========================================
   16. LOCATION
   ========================================== */
.icon-gold { width: 24px; height: 24px; stroke: var(--color-gold); fill: none; stroke-width: 1.5; margin-top: 4px; flex-shrink: 0; }
.location-split { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 400px), 1fr)); }
.location-content { padding-right: 5vw; display: flex; flex-direction: column; justify-content: center; }
.hours-row { display: flex; justify-content: space-between; border-bottom: 1px solid var(--color-border); padding: 1rem 0; }
.hours-row:last-child { border-bottom: none; }
.btn-group { display: flex; gap: 1rem; flex-wrap: wrap; }

.location-map { height: 100%; min-height: clamp(300px, 50vw, 500px); position: relative; border-left: 1px solid var(--color-border); }
.location-map iframe { width: 100%; height: 100%; filter: grayscale(100%) invert(90%) contrast(85%); transition: var(--transition-smooth); }
.location-map:hover iframe { filter: grayscale(30%) invert(90%) contrast(90%); }
.map-overlay { position: absolute; inset: 0; pointer-events: none; background: rgba(5,5,5,0.2); transition: opacity 0.3s; }
.location-map:hover .map-overlay { opacity: 0; }

/* ==========================================
   17. FINAL CTA
   ========================================== */
.final-cta { position: relative; padding: 10vw 5vw; overflow: hidden; border-top: 1px solid var(--color-border); }
.cta-bg { position: absolute; inset: -20% 0; background: linear-gradient(rgba(5,5,5,0.85), rgba(5,5,5,0.85)), url('../images/final-cta-bg.jpg') center/cover; z-index: 0; }

/* ==========================================
   18. FOOTER & SOCIALS
   ========================================== */
.social-btn { display: inline-flex; justify-content: center; align-items: center; width: 50px; height: 50px; border: 1px solid var(--color-border); border-radius: 50%; color: var(--color-gold); transition: var(--transition-fast); margin: 0 0.5rem; }
.social-btn:hover { background-color: var(--color-gold); color: #000; transform: translateY(-5px); }

/* ==========================================
   19. MOBILE MENU & RESPONSIVE FIXES
   ========================================== */
.mobile-floating-cta { 
    display: none; position: fixed; bottom: 0; left: 0; width: 100%; 
    background: rgba(5,5,5,0.95); backdrop-filter: blur(10px); 
    padding: 1rem 5vw calc(1rem + env(safe-area-inset-bottom, 0)); 
    z-index: 998; border-top: 1px solid var(--color-border); transition: opacity 0.3s ease;
}

.mobile-menu-overlay { position: fixed; inset: 0; background: rgba(2,2,2,0.98); backdrop-filter: blur(15px); z-index: 1002; display: flex; flex-direction: column; justify-content: center; padding: 5vw; opacity: 0; pointer-events: none; transition: var(--transition-smooth); }
.mobile-menu-overlay.active { opacity: 1; pointer-events: all; }
.close-menu { position: absolute; top: 2rem; right: 5vw; background: none; border: none; color: var(--color-gold); font-size: 3rem; cursor: pointer; }
.mobile-nav { display: flex; flex-direction: column; gap: clamp(1.5rem, 4vw, 2rem); text-align: center; margin-bottom: 4rem; }
.mobile-link { font-size: clamp(1.8rem, 6vw, 3rem); color: #fff; text-transform: uppercase; transition: color 0.3s; }
.mobile-link:hover { color: var(--color-gold); }

/* Desktop to Tablet Transition */
@media (max-width: 1024px) {
    .main-nav, .header-actions .btn { display: none; }
    .menu-toggle { display: flex; }
    
    .trust-stat:nth-child(even) { border-right: none; }
    .trust-stat:nth-child(1), .trust-stat:nth-child(2) { border-bottom: 1px solid var(--color-border); padding-bottom: 2rem; margin-bottom: 2rem;}
    
    .location-content { padding-right: 0; padding-bottom: 3rem; }
    .location-map { border-left: none; border-top: 1px solid var(--color-border); }
    
    body { padding-bottom: calc(90px + env(safe-area-inset-bottom, 0)); } 
    .mobile-floating-cta { display: block; }
}

/* Tablet to Mobile Transition */
@media (max-width: 768px) {
    .hero-content { text-align: center; margin-top: 0; }
    .hero-cta-group { justify-content: center; }
    .hero-separator { margin: clamp(1.5rem, 5vw, 2rem) auto; }
    
    .trust-grid { grid-template-columns: 1fr 1fr; }
    
    /* Flip/Fold Devices Specific Fallback */
    @media (max-width: 350px) {
        .trust-grid { grid-template-columns: 1fr; }
        .trust-stat { border-right: none !important; border-bottom: 1px solid var(--color-border); padding-bottom: 1.5rem; margin-bottom: 1.5rem; }
        .trust-stat:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
    }
}