:root {
    /* --- Dark Luxury Palette --- */
    --bg-deep: #050505;
    --bg-surface: #111111;
    --bg-card: #1a1a1a;
    
    --text-primary: #f0f0f0;
    --text-muted: #888888;
    --text-faint: #333333;
    
    --accent: #C5A059; /* Muted Gold */
    --accent-glow: rgba(197, 160, 89, 0.2);
    
    --line: rgba(255, 255, 255, 0.08);
    
    /* --- Typography --- */
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Manrope', sans-serif; /* Need to import Manrope */
    
    /* --- Spacing --- */
    --container: 1600px;
    --space-s: 1rem;
    --space-m: 3rem;
    --space-l: 8rem;
    --space-xl: 14rem;
    
    /* --- Easing --- */
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in-out: cubic-bezier(0.85, 0, 0.15, 1);
}

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: none; /* Custom Cursor support */
}

/* Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-deep); }
::-webkit-scrollbar-thumb { background: #333; }

body {
    background-color: var(--bg-deep);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7; /* Looser leading */
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* --- Preloader (Cinematic) --- */
.preloader {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: #000;
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.loader-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.loader-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    mix-blend-mode: exclusion;
}

.brand-line {
    display: block;
    opacity: 0; /* JS reveals */
}

.line-1 {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 6vw, 6rem);
    color: #fff;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    transform: translateY(20px);
}

.line-2 {
    font-family: var(--font-body);
    font-size: 0.8rem;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.5em;
    margin-top: 0.5rem;
    transform: translateY(20px);
}

.loading-bar {
    width: 200px;
    height: 1px;
    background: rgba(255,255,255,0.1);
    position: relative;
    overflow: hidden;
    margin-top: 1rem;
}

.bar-fill {
    position: absolute;
    top: 0; left: 0;
    height: 100%;
    width: 0%;
    background: #fff;
    transition: width 0.1s linear;
}

.loading-percent {
    font-family: var(--font-body);
    font-size: 0.7rem;
    color: #666;
    margin-top: 0.5rem;
    font-variant-numeric: tabular-nums;
}

.transition-curtain {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: var(--bg-surface);
    z-index: 99990;
    transform: scaleY(0);
    transform-origin: bottom;
    pointer-events: none;
}

/* --- Film Grain Noise --- */
.noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    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)' opacity='0.05'/%3E%3C/svg%3E");
    opacity: 0.07;
}

/* --- Typography --- */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 400;
    line-height: 1.1;
    color: var(--text-primary);
}

h1 { font-size: clamp(3.5rem, 8vw, 7rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(2.5rem, 5vw, 4.5rem); }
h3 { font-size: 2rem; }

.text-accent { color: var(--accent); font-style: italic; }
.text-muted { color: var(--text-muted); }

/* --- Layout --- */
.container {
    width: 90%;
    max-width: var(--container);
    margin: 0 auto;
}

.section-padding { padding: var(--space-xl) 0; }

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

img { width: 100%; display: block; opacity: 0.9; }

/* --- Custom Cursor --- */
.cursor-dot, .cursor-circle {
    position: fixed;
    top: 0; left: 0;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: 10000;
    pointer-events: none;
    mix-blend-mode: difference;
}
.cursor-dot { width: 8px; height: 8px; background: white; }
.cursor-circle { 
    width: 40px; height: 40px; 
    border: 1px solid white; 
    transition: width 0.2s, height 0.2s, background-color 0.2s; 
}

/* Hover States for Cursor */
body:has(a:hover) .cursor-circle,
body:has(button:hover) .cursor-circle {
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.1);
    border-color: transparent;
}

/* --- Utilities --- */
.mt-5 { margin-top: 5rem; }
@media (max-width: 1024px) { .mt-5 { margin-top: 0; } } /* Reset grid stagger on mobile */

/* --- Navigation: The Glass Ribbon --- */
.glass-nav {
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    height: 90px;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    border-bottom: 1px solid transparent;
}

.glass-nav.scrolled, body.menu-open .glass-nav {
    background: rgba(5, 5, 5, 0.85); /* Deep dark glass */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    height: 70px; /* Slight shrink */
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.nav-container {
    width: 92%;
    max-width: var(--container);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    display: block;
    line-height: 0;
}

.nav-logo-img {
    height: 40px; /* Refined editorial size */
    width: auto;
    filter: brightness(0) invert(1);
    transition: all 0.4s ease;
}

.glass-nav.scrolled .nav-logo-img {
    height: 32px;
}

/* Toggle Button (Now Global Fixed) */
.nav-toggle {
    position: fixed; /* Always fixed, independent of Nav bar */
    top: 25px; /* Precision alignment (90px height / 2 = 45 - 20 = 25) */
    right: 4%;  /* Align with container width */
    max-width: var(--container);
    z-index: 2005; /* Higher than glass nav (2000) */
    background: transparent;
    border: none;
    display: flex;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
    color: #fff;
    padding: 10px; /* Touch padding */
    pointer-events: auto;
    /* mix-blend-mode: difference; REMOVED for better predictability */
    text-shadow: 0 2px 10px rgba(0,0,0,0.5); /* Modern shadow for visibility */
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
    
    /* PRELOADER INTEGRATION: Hidden initially */
    opacity: 0;
    transform: translateY(-20px);
    transition: opacity 0.8s ease, transform 0.8s ease, top 0.3s ease;
    visibility: hidden;
}

.nav-toggle.revealed {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
}

/* Adjust top position when scrolled */
body.scrolled .nav-toggle {
    top: 15px; /* Precision alignment (70px height / 2 = 35 - 20 = 15) */
}

.toggle-text {
    font-family: 'Italiana', serif; /* Editorial Font */
    font-size: 1.1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.toggle-icon {
    width: 30px;
    height: 20px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    pointer-events: none; /* Let button handle click */
}

.line {
    display: block;
    width: 100%;
    height: 1.5px; /* Thicker for visibility */
    background: currentColor;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.line-mid { width: 70%; align-self: flex-end; }

/* Menu Open State (Animation) */
body.menu-open .line-top { transform: translateY(9px) rotate(45deg); }
body.menu-open .line-mid { opacity: 0; }
body.menu-open .line-bot { transform: translateY(-10px) rotate(-45deg); width: 100%; }

/* Overlay Menu */
.glass-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100vh;
    z-index: 1500;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.5s ease;
}

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

.overlay-backdrop {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: #050505;
    transform: translateY(-100%);
    transition: transform 0.8s cubic-bezier(0.7, 0, 0.2, 1);
}

.glass-overlay.active .overlay-backdrop {
    transform: translateY(0);
}

.overlay-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 15vw; /* Asymmetric editorial layout */
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease 0.3s;
}

.glass-overlay.active .overlay-content {
    opacity: 1;
    transform: translateY(0);
}

.overlay-item {
    display: block;
    font-family: var(--font-heading);
    font-size: clamp(3rem, 5vw, 6rem);
    color: #fff;
    line-height: 1.1;
    margin-bottom: 1rem;
    transition: color 0.3s ease;
    width: fit-content;
}

.overlay-item:hover {
    color: var(--accent);
    font-style: italic; /* Signature touch */
}

.overlay-item .idx {
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text-muted);
    margin-right: 2rem;
    vertical-align: middle;
    letter-spacing: 0.1em;
}

.overlay-footer {
    margin-top: 4rem;
    display: flex;
    gap: 6rem;
}

.overlay-col {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.overlay-col .label {
    font-family: 'Italiana', serif;
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.overlay-col a {
    color: #fff;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

@media (max-width: 900px) {
    .glass-nav { height: 70px; }
    .nav-logo-img { height: 28px; }
    .overlay-content { padding-left: 2rem; align-items: flex-start; }
    .overlay-item { font-size: 3.5rem; }
    .overlay-footer { flex-direction: column; gap: 2rem; margin-top: 2rem; }
}

/* --- Buttons --- */
.btn {
    display: inline-block;
    padding: 1rem 3rem;
    border: 1px solid var(--line);
    border-radius: 200px;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-primary);
    background: transparent;
    transition: all 0.4s var(--ease-out);
}
.btn:hover {
    background: var(--text-primary);
    color: var(--bg-deep);
    border-color: var(--text-primary);
}

/* --- Accordion --- */
.accordion-item {
    border-bottom: 1px solid var(--line);
    padding: 2rem 0;
    cursor: pointer;
    transition: background 0.3s ease;
}
.accordion-item:hover {
    background: rgba(255,255,255,0.02);
}
.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.accordion-body {
    height: 0;
    overflow: hidden;
    padding-top: 0;
    color: var(--text-muted);
    transition: all 0.5s var(--ease-out);
    opacity: 0;
}
.accordion-item.active .accordion-body {
    height: auto;
    padding-top: 1rem;
    opacity: 1;
}

/* --- Hero V3 (Cinematic Video) --- */
.hero-v3 {
    height: 100vh;
    width: 100%;
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.video-bg {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    object-fit: cover;
    z-index: 1;
    filter: brightness(0.6);
}

.hero-content-v3 {
    position: relative;
    z-index: 2;
    text-align: center;
    mix-blend-mode: overlay;
}

.hero-title-large {
    font-size: clamp(3rem, 15vw, 15rem); /* Massive but safe */
    line-height: 0.8;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: -0.05em;
    opacity: 0;
}

/* --- Horizontal Gallery Section (Premium) --- */
.horizontal-scroll-wrapper {
    position: relative;
    z-index: 5;
    background: #000; 
    height: 100vh; /* Force full height */
    display: flex;
    align-items: center; /* Vertical Center */
    overflow: hidden;
}

/* .horizontal-section removed as it was unused in HTML */

.gallery-track {
    display: flex;
    flex-wrap: nowrap;
    height: 75vh; /* Match items height roughly or auto */
    height: auto;
    padding: 0 10vw; 
    align-items: center;
    gap: 8vw; 
    will-change: transform;
}

.gallery-item {
    width: 45vw; /* Slightly wider */
    height: 75vh;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
    /* transition: transform 0.1s linear; Handled by JS skew */
}

.gallery-img {
    width: 130%; /* Extra width for parallax */
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: filter 0.5s ease;
    transform: translateX(-10%); /* Center the overflow initially */
    will-change: transform;
}

.gallery-item:hover .gallery-img {
    filter: grayscale(0%);
}

.gallery-caption {
    position: absolute;
    bottom: 2rem; left: -2rem; /* Offset for style */
    font-family: var(--font-heading);
    font-size: 3rem;
    color: #fff;
    z-index: 2;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
    mix-blend-mode: difference;
}
.gallery-item:hover .gallery-caption {
    opacity: 1;
    transform: translateY(0);
    left: 1rem;
}
 
.gallery-number {
    position: absolute;
    top: 1rem; right: 1rem;
    font-family: var(--font-body);
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 0.2rem 0.6rem;
    border-radius: 50px;
}

/* --- Statement Section (Premium) --- */
.statement-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    padding: 10rem 0;
}

/* Moving Light Leaks Background */
.light-leak-bg {
    position: absolute;
    top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: radial-gradient(circle at 50% 50%, rgba(197, 160, 89, 0.15), transparent 60%),
                radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.05), transparent 50%);
    z-index: 0;
    pointer-events: none;
    animation: rotateLeak 20s linear infinite;
    mix-blend-mode: screen;
}

@keyframes rotateLeak {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.statement-container {
    max-width: 1400px;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.scrub-text {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 7vw, 7rem);
    line-height: 1.2;
    color: rgba(255,255,255,0.1); /* Start Dim */
    background: linear-gradient(to right, #fff 50%, rgba(255,255,255,0.1) 50%);
    background-size: 200% 100%;
    background-position: 100% 0; /* Start hidden (right side is dim) */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

.scrub-word {
    display: inline-block;
    color: #fff;
    margin-right: 0.2em;
    /* Opacity and blur controlled by GSAP */
}

.scrub-word.statement-accent {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    color: var(--accent) !important;
}

@media (max-width: 900px) {
    /* Mobile V3 Padding */
     .horizontal-scroll-wrapper {
        height: auto !important;
        overflow-x: hidden;
    }
}

    .gallery-caption {
        opacity: 1;
        transform: translateY(0);
        left: 2rem;
        bottom: 2rem;
        font-size: 2.5rem;
    }


/* --- Vertical Stack for Slider (Tablet & Mobile) -> NOW 2-COL GRID --- */
@media (max-width: 1024px) {
    .horizontal-scroll-wrapper {
        height: auto !important; 
        background: #000;
        display: block; 
        padding: 4rem 1.5rem; /* Clean padding */
    }

    .gallery-track {
        display: grid; /* Grid System */
        grid-template-columns: 1fr 1fr; /* 2 Columns */
        width: 100%;
        height: auto;
        padding: 0;
        gap: 1rem; /* Editorial gap */
    }

    .gallery-item {
        width: 100%; 
        height: auto;
        aspect-ratio: 3/4; /* Standard Portrait */
        margin: 0;
        transform: none !important; 
        border-radius: 12px; /* Soft corners */
        overflow: hidden;
        position: relative;
    }
    
    .gallery-img {
        width: 100%;
        height: 100%;
        transform: none !important;
        object-fit: cover;
        transition: transform 0.5s ease;
    }
    
    .gallery-caption {
        font-size: 1.2rem; /* Smaller for grid */
        bottom: 1rem; left: 1rem;
    }

    .gallery-number {
        font-size: 0.7rem;
        padding: 0.1rem 0.4rem;
        backdrop-filter: blur(5px);
    }

    /* Mobile View All Card (Solid) */
    .view-all-card {
        width: auto !important; /* Override desktop 30vw */
        background: rgba(255,255,255,0.08); /* Solid Card */
        border: 1px solid rgba(255,255,255,0.05); /* Subtle border */
        display: flex;
        align-items: center;
        justify-content: center;
        transition: background 0.3s ease;
    }
    
    .view-all-card:hover {
        background: var(--accent);
    }

    .view-all-link {
        font-size: 1.2rem !important; 
        border-bottom: none !important; /* Remove underline for button look */
        text-transform: uppercase;
        letter-spacing: 0.1em;
        font-family: var(--font-body) !important;
    }
}

/* View All Card (Base/Desktop) */
.view-all-card {
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    width: 30vw; /* Keep desktop width */
}

.view-all-link {
    font-size: 4rem; 
    font-family: var(--font-heading); 
    text-decoration: none; 
    color: #fff; 
    border-bottom: 2px solid #fff; 
    transition: opacity 0.3s;
}
.view-all-link:hover { opacity: 0.7; }

/* --- Cinematic CTA (Premium) --- */
.cta-section {
    position: relative;
    padding: 18rem 0;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    /* Subtle border to separate from footer */
    border-top: 1px solid rgba(255,255,255,0.05);
    perspective: 1000px; /* For 3D parallax */
}

/* ... existing bg img ... */
.cta-bg-img {
    /* ... keep existing ... */
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    opacity: 0.15;
    z-index: 0;
    filter: grayscale(100%) contrast(1.2);
    transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1); /* Faster for mouse follow */
    will-change: transform;
}


/* Golden inner glow */
.cta-glow {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 800px; height: 800px; /* Larer */
    background: radial-gradient(circle, rgba(197, 160, 89, 0.15) 0%, rgba(0,0,0,0) 70%);
    z-index: 1;
    pointer-events: none;
    transition: transform 0.2s ease-out;
}

.cta-bg-text {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    font-size: clamp(12rem, 35vw, 40rem);
    font-family: var(--font-heading);
    color: transparent;
    -webkit-text-stroke: 1px rgba(255,255,255,0.05);
    white-space: nowrap;
    z-index: 1;
    pointer-events: none;
    transition: transform 0.2s ease-out;
}

.cta-content {
    position: relative;
    z-index: 2;
    mix-blend-mode: normal;
}

.cta-title-gradient {
    font-size: 5rem; 
    margin-bottom: 2rem; 
    font-weight: 300; 
    line-height: 1;
    background: linear-gradient(135deg, #fff 0%, #C5A059 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.circle-btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 160px; height: 160px;
    border: 1px solid rgba(197, 160, 89, 0.3); /* Subtle Gold Border */
    border-radius: 50%;
    font-family: var(--font-body);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #fff;
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    margin-top: 3rem;
    background: rgba(197, 160, 89, 0.05); /* Very faint gold tint */
    backdrop-filter: blur(5px);
    position: relative;
    overflow: hidden;
}

.circle-btn::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: var(--accent);
    transform: scale(0);
    transform-origin: center;
    transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    z-index: -1;
    border-radius: 50%;
}

.circle-btn:hover {
    color: #000;
    border-color: var(--accent);
    transform: scale(1.15);
}
/* --- Signature Footer --- */
.footer-signature {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #050505;
    position: relative;
    overflow: hidden;
    color: #fff;
    border-top: 1px solid rgba(255,255,255,0.05);
    padding: 8vh 8vw; /* Floating Frame effect */
    box-sizing: border-box;
}

.footer-signature .container {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    max-width: none;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.footer-top-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 6rem;
    flex-wrap: wrap;
    gap: 4rem;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 1rem;
    max-width: 250px;
}

.footer-logo {
    height: 50px;
    filter: brightness(0) invert(1);
    width: auto;
}

.footer-links-group {
    display: flex;
    gap: 6rem;
}

.link-col h4 {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.link-col a {
    display: block;
    color: #fff;
    margin-bottom: 0.8rem;
    position: relative;
    width: fit-content;
}

.link-col a::after {
    content: '';
    position: absolute;
    bottom: -2px; left: 0;
    width: 0; height: 1px;
    background: var(--accent);
    transition: width 0.3s ease;
}
.link-col a:hover::after { width: 100%; }
.link-col a:hover { color: var(--accent); }

.footer-contact-row {
    margin: auto 0; /* Push it to center of the vertical space */
    padding: 4vh 0;
}

.footer-contact-row p {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.footer-email {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 4rem);
    color: #fff;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    padding-bottom: 0.5rem;
    transition: all 0.3s ease;
}
.footer-email:hover {
    color: var(--accent);
    border-color: var(--accent);
    padding-left: 1rem;
}

.footer-bottom-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    position: relative;
    z-index: 2;
}

.footer-big-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-heading);
    font-size: 25vh; /* Scale based on height now */
    color: rgba(255,255,255,0.02);
    pointer-events: none;
    z-index: 0;
    white-space: nowrap;
    letter-spacing: 0.05em;
}

@media (max-width: 900px) {
    .footer-signature {
        min-height: auto;
        padding: 6rem 1.5rem 3rem 1.5rem; /* Add horizontal breathing room */
    }
    .footer-top-row { flex-direction: column; gap: 3rem; }
    .footer-links-group { gap: 3rem; width: 100%; justify-content: space-between; }
    .footer-big-text { 
        font-size: 25vw; 
        top: auto;
        bottom: 0; 
        transform: translateX(-50%);
    }
}
.circle-btn:hover::before {
    transform: scale(1);
}
.form-input {
    width: 100%;
    background: none;
    border: none;
    border-bottom: 2px solid var(--line);
    padding: 1rem 0;
    color: var(--text-primary);
    font-size: 1rem;
    font-family: var(--font-body);
    transition: all 0.4s ease;
}
.form-input:focus {
    outline: none;
    border-color: var(--accent);
}

/* Fix Date Picker Icon Color */
.form-input::-webkit-calendar-picker-indicator {
    filter: invert(1);
    opacity: 0.6;
    cursor: pointer;
    transition: opacity 0.3s ease;
}
.form-input::-webkit-calendar-picker-indicator:hover {
    opacity: 1;
}
.form-label {
    display: block;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.form-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}
@media (max-width: 600px) { .form-grid-2 { grid-template-columns: 1fr; gap: 1rem; } }


/* --- Mobile Responsiveness --- */
@media (max-width: 900px) {
    /* Basic Layout Adjustments */
    .hero-content { mix-blend-mode: normal; }
    .grid-item { grid-column: span 12 !important; height: auto !important; margin: 0 !important; aspect-ratio: 3/4; }
    .cta-bg-text { display: none; }
}

/* --- Ultra Mobile (300px - 480px) --- */
@media (max-width: 480px) {
    :root {
        --container: 92%;
        --space-xl: 8rem;
        --space-l: 5rem;
        --space-m: 2rem;
    }

    h1 { font-size: clamp(2.5rem, 12vw, 4rem); }
    h2 { font-size: 2.2rem; }
    
    .hero-title-large {
        font-size: 18vw; 
        white-space: normal;
        word-break: break-word;
    }

    .footer-big-text {
        font-size: 30vw;
        bottom: 5%;
    }

    .journal-hero-section {
        padding-top: 150px;
        padding-bottom: 4rem;
    }

    .journal-row {
        gap: 2rem;
        margin-bottom: 6rem;
    }

    .footer-email {
        font-size: 1.8rem;
    }

    .circle-btn {
        width: 120px; height: 120px;
        margin-top: 2rem;
    }
}

/* --- Portfolio Page (Premium) --- */
.portfolio-header {
    padding-top: 200px;
    padding-bottom: 4rem;
    text-align: center;
}

.filter-group {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 4rem;
}

.filter-btn {
    font-family: var(--font-body);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    transition: color 0.3s ease;
    cursor: pointer;
    position: relative;
}

.filter-btn.active, .filter-btn:hover {
    color: #fff;
}

.filter-btn.active::after {
    content: '';
    position: absolute;
    bottom: -5px; left: 0; width: 100%; height: 1px;
    background: var(--accent);
}

.masonry-grid {
    column-count: 2;
    column-gap: 2rem;
}

.masonry-item {
    break-inside: avoid;
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
}

.masonry-img {
    width: 100%;
    border-radius: 2px;
    filter: grayscale(20%);
    transition: all 0.5s ease;
    display: block;
}

.masonry-item:hover .masonry-img {
    filter: grayscale(0%);
    transform: scale(1.03);
}

/* --- Portfolio Lightbox (Premium UI) --- */
.lightbox-overlay {
    position: fixed;
    inset: 0; /* Modern full screen */
    width: 100%; height: 100%;
    background: rgba(5, 5, 5, 0.96); /* Deep Matte Black */
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 2147483647; 
    
    display: none !important;
    opacity: 0;
    pointer-events: none;
    
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

.lightbox-overlay.active {
    display: flex !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    visibility: visible !important;
}

/* Container for Image */
.lightbox-content {
    position: relative;
    width: auto;
    height: auto;
    max-width: 95vw;
    max-height: 90vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.lightbox-img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    box-shadow: 0 20px 80px rgba(0,0,0,0.8); /* Deep Shadow */
    border-radius: 4px; /* Subtle roundness */
    
    /* Entry Animation */
    animation: lightboxZoom 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    transform: scale(0.9);
    opacity: 0;
}

@keyframes lightboxZoom {
    0% { transform: scale(0.9); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

/* --- Controls (floating) --- */
.lightbox-close {
    position: absolute;
    top: 30px; 
    right: 30px;
    width: 50px; 
    height: 50px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50%;
    cursor: pointer;
    z-index: 200;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}
.lightbox-close:hover {
    background: rgba(255,255,255,0.2);
    transform: rotate(90deg);
}
.lightbox-close::before, .lightbox-close::after {
    content: ''; position: absolute;
    width: 20px; height: 1px;
    background: #fff;
}
.lightbox-close::before { transform: rotate(45deg); }
.lightbox-close::after { transform: rotate(-45deg); }


.lightbox-prev, .lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px; height: 60px;
    background: rgba(255,255,255,0.05); /* Very subtle */
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 50%;
    cursor: pointer;
    z-index: 200;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}
.lightbox-prev:hover, .lightbox-next:hover {
    background: rgba(255,255,255,0.15);
    transform: translateY(-50%) scale(1.1);
}
.lightbox-prev { left: 30px; }
.lightbox-next { right: 30px; }

/* Arrows */
.lightbox-prev::after {
    content: ''; width: 10px; height: 10px;
    border-top: 2px solid #fff; border-left: 2px solid #fff;
    transform: rotate(-45deg);
    margin-left: 4px;
}
.lightbox-next::after {
    content: ''; width: 10px; height: 10px;
    border-top: 2px solid #fff; border-right: 2px solid #fff;
    transform: rotate(45deg);
    margin-right: 4px;
}

/* Caption (Elegant) */
.lightbox-caption {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,0.8);
    font-family: var(--font-heading);
    font-size: 1.2rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
    background: rgba(0,0,0,0.5); /* Readable pill */
    padding: 10px 20px;
    border-radius: 30px;
    backdrop-filter: blur(10px);
}

/* Mobile Adjustments */
@media (max-width: 900px) {
    .lightbox-close { top: 20px; right: 20px; width: 40px; height: 40px; }
    .lightbox-prev, .lightbox-next { width: 45px; height: 45px; }
    .lightbox-prev { left: 15px; }
    .lightbox-next { right: 15px; }
    .lightbox-img { max-width: 100vw; max-height: 80vh; }
    .lightbox-caption { font-size: 0.9rem; bottom: 80px; width: 80%; text-align: center; }
}

/* --- Restored Grid Item Hover Styles --- */
.item-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.4);
    opacity: 0;
    transition: opacity 0.5s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    pointer-events: none; /* KEY: Let clicks pass through to container */
}

.masonry-item:hover .item-overlay {
    opacity: 1;
}

.item-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: #fff;
    transform: translateY(20px);
    transition: transform 0.5s ease;
}
.masonry-item:hover .item-title { transform: translateY(0); }

/* --- Stories Page (Journal/Parallax Layout FIXED) --- */
.journal-hero-section {
    padding-top: 200px;
    padding-bottom: 6rem;
    text-align: center;
    background: #050505;
}

.journal-stream {
    padding-bottom: 12rem;
    background: #050505;
}

.journal-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem; /* Good breathing room */
    align-items: center;
    margin-bottom: 10rem; /* Space between stories */
}

.journal-row:last-child {
    margin-bottom: 0;
}

/* Zig-Zag: Swap visually on even rows */
.journal-row:nth-child(even) .journal-img-col {
    order: 2; /* Image moves to right */
}
.journal-row:nth-child(even) .journal-text-col {
    order: 1; /* Text moves to left */
    text-align: right; /* Text aligns right */
}
/* Ensure meta lines up on right-aligned text */
.journal-row:nth-child(even) .journal-meta {
    border-left: none;
    border-right: 2px solid var(--accent);
    padding-left: 0;
    padding-right: 2rem;
}

.journal-img-col {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.journal-img {
    width: 100%;
    aspect-ratio: 4/5; /* Portrait format */
    object-fit: cover;
    filter: grayscale(100%) contrast(1.1);
    transition: all 0.7s ease;
    display: block;
}

.journal-row:hover .journal-img {
    filter: grayscale(0%) contrast(1);
    transform: scale(1.03);
}

.journal-text-col {
    padding: 2rem;
}

.journal-quote {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.8rem, 3vw, 2.5rem); /* Readable size */
    line-height: 1.4;
    color: #fff;
    font-weight: 300;
    font-style: italic;
    margin-bottom: 2.5rem;
}

.journal-meta {
    border-left: 2px solid var(--accent);
    padding-left: 2rem;
}

.journal-names {
    display: block;
    font-family: var(--font-body);
    font-size: 1rem;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 0.5rem;
}

.journal-category {
    font-family: var(--font-body);
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.stories-cta-section {
    padding: 10rem 0;
    text-align: center;
}

@media (max-width: 900px) {
    .journal-row {
        grid-template-columns: 1fr;
        gap: 3rem;
        margin-bottom: 6rem;
    }

    /* Reset order on mobile for simpler flow */
    .journal-row:nth-child(even) .journal-img-col { order: unset; }
    .journal-row:nth-child(even) .journal-text-col { order: unset; text-align: left; }
    .journal-row:nth-child(even) .journal-meta { border-right: none; border-left: 2px solid var(--accent); padding-right: 0; padding-left: 2rem; }
}
/* --- About Page (Editorial Refined) --- */
.about-hero-section {
    padding-top: 180px;
    padding-bottom: 8rem;
    position: relative;
    overflow: hidden;
}

.editorial-layout {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 6rem;
    align-items: center;
}

.editorial-col-img {
    position: relative;
}

.editorial-img-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 2px;
}

.editorial-img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 4/5;
    object-fit: cover;
    filter: grayscale(100%) contrast(1.1);
    transition: filter 0.7s ease, transform 0.7s ease;
}

.editorial-img-wrapper:hover .editorial-img {
    filter: grayscale(0%) contrast(1);
    transform: scale(1.03);
}

.editorial-col-text {
    padding-right: 2rem;
}

.leading-text {
    font-size: 1.2rem;
    letter-spacing: 0.05em;
    color: var(--accent);
    margin-bottom: 1rem;
    display: block;
    text-transform: uppercase;
}

.editorial-title {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 6vw, 5.5rem);
    line-height: 0.95;
    margin-bottom: 3rem;
    color: #fff;
}

.editorial-bio {
    columns: 1; /* Default to 1, spread to 2 on wide if much text */
    gap: 3rem;
}

.editorial-bio p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.editorial-bio p.lead-text {
    font-size: 1.25rem;
    color: var(--text-primary);
    font-weight: 300;
}

.signature-block {
    margin-top: 4rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 2rem;
    display: inline-block;
}

.signature-font {
    font-family: 'Italiana', serif;
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 0.2rem;
}

.role-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--accent);
}

/* Philosophy Section */
.philosophy-section {
    position: relative;
    padding: 12rem 0; /* More breathing room */
    background: #080808;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.philosophy-section .sub-heading {
    display: block;
    font-family: var(--font-body);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--accent);
    margin-bottom: 2.5rem; /* Increased separation */
    opacity: 0.9;
}

.philosophy-quote {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 5vw, 5rem); /* Larger, more impact */
    line-height: 1.2;
    color: #fff;
    max-width: 900px;
    margin: 0 auto;
    font-style: italic; /* Elegant touch */
    font-weight: 300;
}

/* Process Section */
.process-section {
    padding-top: 8rem;
    padding-bottom: 8rem;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    color: #fff;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.process-card {
    padding: 3rem 2rem;
    border: 1px solid rgba(255,255,255,0.05);
    transition: all 0.4s ease;
    background: transparent;
}

.process-card:hover {
    border-color: var(--accent);
    background: rgba(255,255,255,0.02);
    transform: translateY(-5px);
}

.process-number {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    color: rgba(255,255,255,0.1);
    margin-bottom: 1.5rem;
    transition: color 0.4s ease;
}

.process-card:hover .process-number {
    color: var(--accent);
}

.process-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 1rem;
}

.process-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

@media (max-width: 992px) {
    .editorial-layout { grid-template-columns: 1fr; gap: 4rem; }
    .editorial-col-text { padding-right: 0; }
    .process-grid { grid-template-columns: 1fr; }
}

/* --- Testimonials (Cards) --- */
.testimonial-card {
    background: #0a0a0a;
    border: 1px solid rgba(255,255,255,0.05);
    padding: 4rem;
    transition: transform 0.3s ease, border-color 0.3s ease;
}
.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255,255,255,0.1);
}

.quote-icon {
    font-family: var(--font-heading);
    font-size: 4rem;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 2rem;
    opacity: 0.5;
}

/* --- Inquire Split Layout (Ultra Premium) --- */
.inquire-split-layout {
    display: grid;
    grid-template-columns: 45% 55%;
    min-height: 100vh;
}

.inquire-visual {
    position: sticky;
    top: 0;
    height: 100vh;
    overflow: hidden;
    background: #000;
}

.slideshow-container {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0; left: 0;
}

.visual-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6);
    position: absolute;
    top: 0; left: 0;
    opacity: 0;
    animation: slideShow 20s infinite;
}

.visual-img:nth-child(1) { animation-delay: 0s; }
.visual-img:nth-child(2) { animation-delay: 5s; }
.visual-img:nth-child(3) { animation-delay: 10s; }
.visual-img:nth-child(4) { animation-delay: 15s; }

@keyframes slideShow {
    0% { opacity: 0; transform: scale(1); }
    5% { opacity: 1; }
    25% { opacity: 1; }
    30% { opacity: 0; transform: scale(1.1); }
    100% { opacity: 0; }
}

.visual-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.6));
    z-index: 1;
}

.visual-text {
    position: absolute;
    bottom: 10%;
    left: 10%;
    z-index: 2;
    color: #fff;
}

.visual-text h2 {
    font-family: var(--font-heading);
    font-size: 4rem;
    line-height: 1;
    margin-bottom: 1rem;
}

.inquire-content {
    background: #050505;
    min-height: 100vh;
    padding-top: 150px;
    padding-left: 10%;
    padding-right: 10%;
}

.content-wrapper {
    max-width: 600px;
    margin: 0 auto;
}

/* Clean Form Styles */
.premium-form-clean {
    margin-top: 3rem;
}

/* Radio Chips */
.radio-chip-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.radio-chip {
    cursor: pointer;
    position: relative;
}

.radio-chip input {
    position: absolute;
    opacity: 0;
    width: 0; height: 0;
}

.radio-chip span {
    display: inline-block;
    padding: 0.6rem 1.5rem;
    border: 1px solid var(--line);
    border-radius: 50px;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    transition: all 0.3s ease;
}

.radio-chip input:checked + span {
    background: #fff;
    color: #000;
    border-color: #fff;
}

.radio-chip:hover span {
    border-color: #fff;
    color: #fff;
}

@media (max-width: 900px) {
    /* CRITICAL: Restore default cursor for touch reliability */
    *, *::before, *::after {
        cursor: auto !important;
    }
    .cursor-dot, .cursor-circle { display: none !important; }

    .inquire-split-layout { grid-template-columns: 1fr; }
    .inquire-visual { position: relative; height: 50vh; }
    .visual-text h2 { font-size: 3rem; }
    .inquire-content { padding-top: 4rem; }
}

/* --- Tablet Tier (600px - 1024px) --- */
@media (min-width: 601px) and (max-width: 1024px) {
    /* Smooth 2-Column State */
    .masonry-grid { column-count: 2; column-gap: 2rem; }
    .process-grid { grid-template-columns: 1fr 1fr; }
    .journal-row { gap: 4rem; } 
    .container { width: 92%; }
    .footer-signature { padding: 6rem 3rem; } /* Explicit tablet breathing room */
}

/* --- Ultra-Wide Tier (> 1800px) --- */
@media (min-width: 1801px) {
    :root {
        --container: 1900px;
    }
    body { font-size: 18px; } /* Scale up body text */
    h1 { font-size: 8rem; }   /* Massive Headings */
    .hero-title-large { font-size: 16rem; }
}

/* --- Micro-Mobile Tier (300px - 380px) --- */
@media (max-width: 380px) {
    .container { width: 94%; padding: 0 0.5rem; }
    
    h1 { font-size: clamp(2rem, 10vw, 3rem); }
    
    .nav-logo-img { height: 24px; }
    
    .btn { padding: 0.8rem 1.5rem; font-size: 0.75rem; }
    
    /* Ensure no horizontal scroll ever */
    html, body { overflow-x: hidden; width: 100%; }
}

/* NUCLEAR FIX: Mobile Toggle Positioning */
@media (max-width: 900px) {
    .nav-toggle {
        top: 20px !important;
        right: 20px !important;
        left: auto !important; /* Prevent stretching */
        width: auto !important; /* Prevent stretching */
        
        /* High Z-Index, but let Logo win ties */
        z-index: 2147483646 !important; 
        
        background: transparent !important; 
        backdrop-filter: none !important;
        padding: 8px;
        border-radius: 0;
        color: #fff !important;
        mix-blend-mode: normal !important; 
        border: none !important;
        text-shadow: 0 2px 10px rgba(0,0,0,0.5); /* Re-assert shadow for mobile */
    }
    
    .toggle-text { display: none; } 
    
    /* NUCLEAR FIX: Logo Positioning (The Winner) */
    .nav-brand { 
        position: fixed !important;
        top: 20px !important; 
        left: 20px !important;
        
        /* ABSOLUTE MAX Z-INDEX (Wins over Button) */
        z-index: 2147483647 !important; 
        
        pointer-events: auto !important; 
        cursor: pointer !important;
        padding: 10px; /* Touch padding */
        margin: -5px;
        display: block; 
        line-height: 0;
        
        /* Ensure it's not huge */
        width: auto !important;
    }
    
    /* Ensure image fits */
    .nav-logo-img {
        height: 32px !important; /* Fixed height for alignment */
        width: auto;
    }

    /* Ensure container doesn't block styling but allows children to be seen */
    /* Ensure container doesn't block styling but allows children to be seen */
    .glass-nav { 
        pointer-events: none; 
        background: transparent; /* Default transparent */
        backdrop-filter: none;
        border-bottom: none;
        height: 0; /* Default collapsed */
        transition: background 0.4s ease, height 0.4s ease;
    }
    
    /* When Scrolled (Added by JS) - Show Background */
    .glass-nav.scrolled {
        background: rgba(5, 5, 5, 0.9) !important;
        backdrop-filter: blur(12px) !important;
        -webkit-backdrop-filter: blur(12px) !important;
        height: 70px !important;
        border-bottom: 1px solid rgba(255,255,255,0.05) !important;
    }
    
    .nav-container { pointer-events: none; }
}

/* --- ISOLATED MOBILE LOGO STYLES --- */
/* Default: Hidden on Desktop */
.mobile-logo-brand {
    display: none;
}

@media (max-width: 900px) {
    /* Hide the original internal logo */
    .nav-brand { display: none !important; }
    
    /* Show and Position the Isolated Logo */
    .mobile-logo-brand {
        display: block !important;
        position: fixed !important;
        top: 20px !important; 
        left: 20px !important;
        
        /* ABSOLUTE MAX Z-INDEX */
        z-index: 2147483647 !important; 
        
        pointer-events: auto !important; 
        cursor: pointer !important;
        padding: 10px; 
        margin: -5px;
        line-height: 0;
        width: auto !important;
        
        /* PRELOADER INTEGRATION: Hidden initially */
        opacity: 0;
        transform: translateY(-20px);
        transition: opacity 0.8s ease, transform 0.8s ease;
        visibility: hidden;
    }
    
    .mobile-logo-brand.revealed {
        opacity: 1;
        transform: translateY(0);
        visibility: visible;
    }
    
    .mobile-logo-brand .nav-logo-img {
        height: 32px !important;
        width: auto;
    }
}

/* Premium Submit Button */
.submit-btn-premium {
    width: 100%;
    padding: 1.2rem 2rem;
    background: transparent;
    border: 1px solid var(--accent);
    color: var(--accent);
    font-family: var(--font-body);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.submit-btn-premium::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 0%; height: 100%;
    background: var(--accent);
    z-index: 0;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.submit-btn-premium:hover::before {
    width: 100%;
}

.submit-btn-premium span {
    position: relative;
    z-index: 1;
    transition: color 0.4s ease;
}

.submit-btn-premium:hover span {
    color: #000;
}

.btn-arrow {
    font-size: 1.5rem;
    transition: transform 0.4s ease;
}

.submit-btn-premium:hover .btn-arrow {
    transform: translateX(10px);
}

/* Switch Toggle UI */
.switch {
    position: relative;
    display: inline-block;
    width: 40px;
    height: 22px;
}

.switch input { 
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: #333;
    transition: .4s;
    border-radius: 34px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 16px;
    width: 16px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked + .slider {
    background-color: var(--accent);
}

input:checked + .slider:before {
    transform: translateX(18px);
}



