/* =========================================================================
   LUXURY DESIGN SYSTEM (GLV - Scepter & Sword Style)
   ========================================================================= */

   :root {
    /* Colors Premium */
    --lux-bg: #030a11;        /* Deep Midnight Blue */
    --lux-surface: #0a1624;
    --lux-text: #ffffff;
    --lux-text-muted: #8d9dae;
    --lux-gold: #cfaa60;      /* Fine Gold */
    --lux-gold-dim: #8b713c;
    
    /* Typography */
    --font-lux-head: 'Cinzel', serif;
    --font-lux-body: 'Montserrat', sans-serif;

    /* Metrics & Easing */
    --rail-width: 80px;
    --ease-lux: cubic-bezier(0.85, 0, 0.15, 1);
    --transition-slow: all 0.8s var(--ease-lux);
    --transition-fast: all 0.4s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--lux-bg);
    color: var(--lux-text);
    font-family: var(--font-lux-body);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, .massive-serif, .section-title {
    font-family: var(--font-lux-head);
    font-weight: 400;
}

/* =========================================================================
   LOADING SPLASH SCREEN
   ========================================================================= */
.splash-screen {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100vh;
    background-color: var(--lux-bg);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.8s var(--ease-lux), visibility 0.8s var(--ease-lux);
}

.splash-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

.splash-inner {
    text-align: center;
}

.splash-logo {
    font-family: var(--font-lux-head);
    font-size: 4rem;
    color: var(--lux-gold);
    letter-spacing: 4px;
    margin-bottom: 20px;
}

.splash-loader {
    width: 60px;
    height: 1px;
    background-color: var(--lux-gold-dim);
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.splash-loader::after {
    content: '';
    position: absolute;
    top: 0; left: -100%; width: 100%; height: 100%;
    background-color: var(--lux-gold);
    animation: loadingBar 1.5s ease-in-out infinite;
}

@keyframes loadingBar {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* =========================================================================
   LEFT RAIL (Persistent Branding)
   ========================================================================= */
.left-rail {
    position: fixed;
    top: 0; left: 0;
    width: var(--rail-width);
    height: 100vh;
    background-color: rgba(3, 10, 17, 0.95);
    backdrop-filter: blur(10px);
    border-right: 1px solid rgba(255,255,255,0.05);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 40px 0;
    z-index: 100;
}

.rail-logo {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
    font-family: var(--font-lux-head);
    color: var(--lux-gold);
    text-decoration: none;
    font-size: 1.5rem;
    letter-spacing: 2px;
}

.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.scroll-text {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    font-size: 0.65rem;
    letter-spacing: 2px;
    color: var(--lux-text-muted);
}

.scroll-line {
    width: 1px;
    height: 60px;
    background-color: rgba(255,255,255,0.2);
    position: relative;
}
.scroll-line::after {
    content: ''; position: absolute;
    top: 0; left: 0; width: 100%; height: 30%;
    background-color: var(--lux-gold);
    animation: scrollDrop 2s ease-in-out infinite;
}

@keyframes scrollDrop {
    0% { top: -30%; opacity: 0; }
    50% { opacity: 1; }
    100% { top: 100%; opacity: 0; }
}

/* Hamburguer Toggle */
.menu-toggle {
    background: none; border: none; cursor: pointer;
    width: 40px; height: 40px;
    display: flex; flex-direction: column;
    justify-content: center; align-items: center; gap: 8px;
    z-index: 1000;
}

.menu-toggle .bar {
    width: 24px; height: 1px;
    background-color: var(--lux-text);
    transition: var(--transition-fast);
}

.menu-toggle.active .top {
    transform: translateY(4.5px) rotate(45deg);
}
.menu-toggle.active .bottom {
    transform: translateY(-4.5px) rotate(-45deg);
}

/* =========================================================================
   FULLSCREEN OVERLAY MENU
   ========================================================================= */
.fullscreen-menu {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100vh;
    background-color: var(--lux-bg);
    z-index: 90;
    display: flex; flex-direction: column;
    justify-content: center; padding-left: calc(var(--rail-width) + 10%);
    opacity: 0; visibility: hidden;
    clip-path: circle(0% at 40px 90%);
    transition: clip-path 0.8s var(--ease-lux), opacity 0.8s;
}

.fullscreen-menu.open {
    opacity: 1; visibility: visible;
    clip-path: circle(150% at 40px 90%);
}

.menu-bg-element {
    position: absolute;
    right: -5%; bottom: -10%;
    font-family: var(--font-lux-head);
    font-size: 40vw; color: rgba(255,255,255,0.02);
    pointer-events: none;
    z-index: -1;
}

.luxury-links {
    list-style: none;
}

.menu-item {
    margin-bottom: 24px;
    overflow: hidden;
}

.menu-link {
    font-family: var(--font-lux-head);
    font-size: clamp(2rem, 4vw, 4rem);
    color: var(--lux-text);
    text-decoration: none;
    display: inline-block;
    position: relative;
    transition: color 0.4s;
    transform: translateY(100%);
    opacity: 0;
}

.fullscreen-menu.open .menu-link {
    transform: translateY(0); opacity: 1;
    transition: transform 0.8s var(--ease-lux), opacity 0.8s;
}

.menu-item:nth-child(1) .menu-link { transition-delay: 0.1s; }
.menu-item:nth-child(2) .menu-link { transition-delay: 0.15s; }
.menu-item:nth-child(3) .menu-link { transition-delay: 0.2s; }
.menu-item:nth-child(4) .menu-link { transition-delay: 0.25s; }
.menu-item:nth-child(5) .menu-link { transition-delay: 0.3s; }
.menu-item:nth-child(6) .menu-link { transition-delay: 0.35s; }
.menu-item:nth-child(7) .menu-link { transition-delay: 0.4s; }

.menu-link::before {
    content: attr(data-count);
    position: absolute; top: 10px; left: -40px;
    font-size: 1rem; color: var(--lux-gold);
    font-family: var(--font-lux-body); opacity: 0;
    transition: var(--transition-fast);
}

.menu-link:hover { color: var(--lux-gold); }
.menu-link:hover::before { opacity: 1; left: -30px; }

.menu-footer {
    margin-top: 60px;
    display: flex; gap: 40px;
    font-size: 0.8rem; letter-spacing: 2px;
    color: var(--lux-text-muted); opacity: 0;
}
.fullscreen-menu.open .menu-footer {
    opacity: 1; transition: opacity 1s 0.6s;
}

/* =========================================================================
   SMOOTH SCROLL WRAPPER
   ========================================================================= */
.smooth-scroll-wrapper {
    margin-left: var(--rail-width);
    min-height: 100vh;
}

/* =========================================================================
   LUXURY SECTIONS & SPLIT LAYOUTS
   ========================================================================= */
.lux-section {
    min-height: 100vh;
    position: relative;
    padding: 120px 8%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Hero Variant */
.lux-hero {
    align-items: flex-start;
}

.hero-bg-layer {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: -1;
    background: url('../assets/media/IMG20250423092957.jpg') center/cover;
}
.dark-gradient {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to right, rgba(3,10,17,0.9) 0%, rgba(3,10,17,0.3) 100%);
}

.eyebrow {
    font-size: 0.85rem; letter-spacing: 4px; color: var(--lux-gold);
    display: block; margin-bottom: 24px;
}

.massive-serif {
    font-size: clamp(3rem, 8vw, 7rem);
    line-height: 1;
    margin-bottom: 10px;
}
.massive-serif.gold { color: var(--lux-gold); }

.hero-subtext {
    max-width: 500px; margin-top: 40px; font-size: 1.1rem; line-height: 1.8;
    color: var(--lux-text-muted);
}

/* Side-by-Side Asymmetrical */
.side-by-side {
    position: relative;
}

.giant-bg-number {
    position: absolute;
    font-family: var(--font-lux-head);
    font-size: 45vw;
    color: rgba(255,255,255,0.02);
    top: 50%; transform: translateY(-50%);
    left: -5%; z-index: -1;
    pointer-events: none;
}
.giant-bg-number.right { left: auto; right: -5%; }

.split-layout {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 80px; align-items: center;
}
.lux-section.invert .split-layout {
    grid-template-columns: 1.2fr 1fr;
}

.section-title {
    font-size: clamp(2.5rem, 4vw, 4rem);
    line-height: 1.1; margin-bottom: 32px;
}
.section-title span { color: var(--lux-gold); display: block; }
.section-subtitle {
    font-size: 0.85rem; letter-spacing: 3px; color: var(--lux-text-muted); display: block; margin-bottom: 16px;
}

.gold-divider {
    width: 60px; height: 2px;
    background-color: var(--lux-gold); margin-bottom: 40px;
}

.body-text {
    color: var(--lux-text-muted); line-height: 1.8; margin-bottom: 40px; font-size: 1.05rem;
}

.lux-btn {
    display: inline-block; padding: 16px 32px;
    border: 1px solid var(--lux-gold); color: var(--lux-gold);
    text-decoration: none; font-size: 0.85rem; letter-spacing: 2px;
    transition: var(--transition-fast); position: relative; overflow: hidden;
}

.lux-btn:hover { background-color: var(--lux-gold); color: var(--lux-bg); }

.img-container {
    width: 100%; aspect-ratio: 3/4; overflow: hidden; position: relative;
    background: var(--lux-surface);
}

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

.split-layout:hover .img-container img { transform: scale(1.05); }


/* =========================================================================
   ANIMATIONS (REVEAL FX)
   ========================================================================= */
.is-revealed {
    /* Triggered via JS or default rendered */
}

/* CSS Keyframes injected via JS later */

/* =========================================================================
   FOOTER LUXURY
   ========================================================================= */
.lux-footer {
    padding: 120px 8% 40px; background-color: var(--lux-surface);
    position: relative;
}

.footer-hero { margin-bottom: 100px; }

.footer-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px; margin-bottom: 80px; padding-bottom: 80px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.foot-title {
    font-family: var(--font-lux-head); color: var(--lux-gold);
    font-size: 1.2rem; margin-bottom: 24px; letter-spacing: 2px;
}

.footer-grid p { color: var(--lux-text-muted); margin-bottom: 12px; }

.footer-bottom {
    display: flex; justify-content: space-between; align-items: center;
    color: rgba(255,255,255,0.3); font-size: 0.85rem;
}
.footer-bottom a { color: var(--lux-gold); text-decoration: none; letter-spacing: 1px; }

@media (max-width: 1024px) {
    .split-layout, .lux-section.invert .split-layout {
        grid-template-columns: 1fr; gap: 40px;
    }
}
@media (max-width: 768px) {
    .left-rail { width: 60px; }
    .smooth-scroll-wrapper { margin-left: 60px; }
    .fullscreen-menu { padding-left: 80px; }
    .menu-link { font-size: 2rem; }
}

/* =========================================================================
   FORMS LUXURY (PQRSD)
   ========================================================================= */
.lux-form {
    background-color: var(--lux-surface);
    padding: 40px;
    border: 1px solid rgba(255,255,255,0.05);
}

.lux-form .form-group {
    margin-bottom: 24px;
}

.lux-form label {
    display: block;
    font-family: var(--font-lux-head);
    font-size: 0.85rem;
    letter-spacing: 2px;
    color: var(--lux-text-muted);
    margin-bottom: 8px;
}

.lux-form input, 
.lux-form select, 
.lux-form textarea {
    width: 100%;
    background-color: rgba(0,0,0,0.2);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 16px;
    color: var(--lux-text);
    font-family: var(--font-lux-body);
    font-size: 1rem;
    transition: var(--transition-fast);
}

.lux-form input:focus, 
.lux-form select:focus, 
.lux-form textarea:focus {
    outline: none;
    border-color: var(--lux-gold);
    background-color: rgba(0,0,0,0.4);
}

.lux-form option {
    background-color: var(--lux-surface);
    color: var(--lux-text);
}

