:root {
    --bg: #030303;
    --text: #ffffff;
    --text-muted: rgba(255,255,255,0.7);
    --font-heading: 'Raleway', sans-serif;
    --font-body: 'Montserrat', sans-serif;
    --container-padding: 6vw;
}

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

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

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1.5rem var(--container-padding);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
}

.logo {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.8rem;
    letter-spacing: 0.4em;
    color: #000;
}

.nav-container ul {
    display: flex;
    gap: 3rem;
    list-style: none;
}

.nav-container a {
    text-decoration: none;
    color: #000;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.2rem;
    font-weight: 700;
    transition: opacity 0.3s ease;
}

.nav-container a:hover {
    opacity: 0.6;
}

/* Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1100;
}

.menu-toggle span {
    width: 100%;
    height: 2px;
    background-color: #000;
    transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}

.menu-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    transform: translateY(-8px) rotate(-45deg);
}

.btn-cta {
    border-bottom: 2px solid #000;
    padding-bottom: 2px;
}

/* Inquire Button */
.btn-inquire {
    position: relative;
    font-weight: 800 !important;
    transition: all 0.4s ease !important;
}

.btn-inquire::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #000;
    transition: width 0.4s ease;
}

.btn-inquire:hover::after {
    width: 100%;
}

/* Cinematic Contact Overlay */
.contact-overlay {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.overlay-bg {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    opacity: 0;
}

.overlay-content {
    position: relative;
    width: 90%;
    max-width: 1000px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    padding: 4rem;
    border-radius: 4px;
    transform: translateY(50px);
    opacity: 0;
    margin: 20px;
}

.close-overlay {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: transparent;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.close-overlay:hover {
    transform: rotate(90deg);
}

.overlay-header {
    margin-bottom: 4rem;
}

#contact-overlay .overlay-title {
    font-family: var(--font-heading);
    font-size: 1.4rem !important;
    font-weight: 900;
    line-height: 1.2;
    letter-spacing: 0.02em;
    margin: 1.5rem 0;
    text-transform: uppercase;
    width: 100%;
    display: block;
}

@media (max-width: 768px) {
    .overlay-title {
        font-size: 1.8rem;
    }
}

.overlay-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.overlay-form .form-field {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.overlay-form label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.2rem;
    opacity: 0.5;
}

.overlay-form input, .overlay-form textarea {
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    padding: 1.2rem 0;
    font-size: 1rem;
    font-family: var(--font-body);
    font-weight: 400;
    outline: none;
    transition: all 0.3s ease;
}

.overlay-form input::placeholder, .overlay-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.3);
    font-weight: 300;
}

.overlay-form input:focus, .overlay-form textarea:focus {
    border-color: rgba(255, 255, 255, 0.5);
}

.btn-send {
    width: 100%;
    padding: 1.8rem;
    background: white;
    color: black;
    border: none;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 2rem;
}

.btn-send:hover {
    background: #f0f0f0;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

/* Scenes Structure */
.scene, .scene-pinned, .event-scene {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.scene-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.scene-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vignette {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, transparent 20%, rgba(0,0,0,0.5) 100%);
    pointer-events: none;
}

.scene-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 0 var(--container-padding);
}

/* Hero Glass Plate (Lighter as requested) */
.hero-glass-plate {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    padding: 4rem 6rem;
    border-radius: 4px;
    border: 1px solid rgba(255,255,255,0.1);
    max-width: 1000px;
}

.giant-text {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 4.2vw, 3.2rem);
    line-height: 1.05;
    font-weight: 400;
    margin: 1rem 0 1.5rem;
    letter-spacing: -0.02em;
    text-transform: uppercase;
}

.eyebrow {
    font-size: 0.7rem;
    letter-spacing: 0.4rem;
    opacity: 0.7;
    text-transform: uppercase;
}

.subtitle {
    font-size: 1.15rem;
    font-weight: 300;
    opacity: 0.85;
    letter-spacing: 0.05em;
    margin-bottom: 5rem;
    line-height: 1.6;
}


.anim-reveal {
    opacity: 0;
    transform: translateY(30px);
}
/* Glass Container (Readability - Scenes) */
.glass-container {
    background: rgba(0, 0, 0, 0.4); 
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 3.5rem;
    max-width: 500px;
    border-radius: 2px;
}

.glass-container.left { margin-right: auto; }
.glass-container.right { margin-left: auto; }
.glass-container.mid { margin: 0 auto; text-align: center; }

.scene-title {
    font-family: var(--font-heading);
    font-size: 1.6rem; 
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

/* Stats */
.stats-layout { max-width: 600px !important; }
.stats-row {
    display: flex;
    justify-content: space-around;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.stat-item .val {
    display: block;
    font-size: 2.8rem;
    font-weight: 800;
    font-family: var(--font-heading);
}

/* Contact Section */
.contact-section {
    padding: 12rem 0;
    background: #050505;
}

.contact-layout {
    max-width: 800px;
    margin: 0 auto;
}

.form-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    margin: 1.5rem 0 4rem;
}

.input-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.modern-form input, .modern-form textarea {
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255,255,255,0.15);
    color: white;
    padding: 1rem 0;
    font-size: 1rem;
    font-family: var(--font-body);
    outline: none;
}

.btn-cinematic-alt {
    padding: 1.5rem 4rem;
    background: white;
    color: black;
    border: none;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.75rem;
    cursor: pointer;
}

/* Event Scene (High Production Restoration) */
.event-scene {
    background: #000;
}

.vignette-dark {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.6);
}

.event-narrative {
    text-align: center;
}

.event-title {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 10vw, 7rem);
    line-height: 0.9;
    margin: 2rem 0;
    font-weight: 800;
}

.event-date {
    font-size: 1.5rem;
    letter-spacing: 0.5rem;
    margin-bottom: 4rem;
}

.btn-event-cta {
    display: inline-block;
    padding: 1.8rem 5rem;
    border: 2px solid white;
    color: #fff !important;
    text-decoration: none !important;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.8rem;
}

/* WHITE FOOTER (GRID RESTORATION - COMPACT VERSION) */
.white-footer {
    background: #ffffff !important;
    color: #000 !important;
    padding: 3rem 0 1.5rem; /* Reduced padding */
}

.footer-wrap {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.f-logo {
    font-family: var(--font-heading);
    font-size: 1.2rem; /* Slighly smaller */
    letter-spacing: 0.15rem;
    margin-bottom: 2.5rem; /* Reduced margin */
    font-weight: 800;
    color: #000 !important;
}

.f-nav-grid {
    display: flex;
    gap: 12vw;
    margin-bottom: 3.5rem;
    align-items: flex-start;
}

.logo-col {
    margin-left: auto; /* Push to the far right */
}

.footer-logo-img {
    height: 100px; /* Increased for more impact */
    width: auto;
    opacity: 1; /* Full opacity for brand impact */
    transition: transform 0.3s ease;
}

.footer-logo-img:hover {
    transform: scale(1.05);
}

.f-col h3 {
    font-size: 0.55rem;
    letter-spacing: 0.25rem;
    text-transform: uppercase;
    opacity: 0.4;
    margin-bottom: 1.2rem; /* Reduced margin */
}

.f-link {
    display: block;
    color: #000 !important;
    text-decoration: none !important;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
}

.social-links {
    display: flex;
    flex-direction: column;
}

.f-bottom {
    border-top: 1px solid rgba(0,0,0,0.08);
    padding-top: 2rem; /* Reduced padding */
    font-size: 0.55rem;
    opacity: 0.5;
}

/* About LEAM Card */
.about-leam-card {
    max-width: 800px !important;
    text-align: center;
}

.about-text {
    font-size: 1.25rem;
    line-height: 1.8;
    margin-bottom: 3rem;
    font-weight: 300;
}

@media (max-width: 768px) {
    .about-text {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
}

@media (max-width: 1024px) {
    :root { --container-padding: 8vw; }
    .glass-container { padding: 2.5rem; }
}


@media (max-width: 900px) {
    .menu-toggle { display: flex; }

    .nav-container {
        position: fixed;
        top: 0;
        right: 0;
        width: 100%;
        height: 100vh;
        background: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        transform: translateX(100%);
        transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
        z-index: 1050;
    }

    .nav-container.active {
        transform: translateX(0);
    }

    .nav-container ul {
        flex-direction: column;
        align-items: center;
        gap: 3rem;
    }

    .nav-container a {
        font-size: 1.5rem;
        letter-spacing: 0.4rem;
    }

    .navbar { padding: 2rem var(--container-padding); }
    .logo { font-size: 0.7rem; letter-spacing: 0.3em; }

    .overlay-content {
        padding: 3rem 2rem;
    }
    .overlay-form .form-row {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

}

@media (max-width: 768px) {
    .f-nav-grid { flex-direction: column; gap: 3rem; }
    .input-grid { grid-template-columns: 1fr; gap: 1.5rem; }
    .glass-container { width: 100%; max-width: 100%; padding: 3rem 1.5rem; border-radius: 0; }
    .stats-row { flex-direction: column; gap: 2rem; }
    .stat-item .val { font-size: 2.2rem; }
    .contact-section { padding: 6rem 0; }
    .form-title { margin-bottom: 2.5rem; }
    .event-date { font-size: 1.1rem; letter-spacing: 0.3rem; }
    .btn-event-cta { width: 100%; padding: 1.5rem 2rem; }
    .f-logo { margin-bottom: 3.5rem; }
    .logo-col { margin-left: 0; margin-top: 2rem; }
}

@media (max-width: 480px) {
    :root { --container-padding: 6vw; }
}


/* Consolidated Mobile Hero & Branding (MODERN PIVOT) */
@media (max-width: 991px) {
    .navbar { padding: 1.5rem var(--container-padding) !important; }
    
    .hero-glass-plate {
        padding: 3rem 1.5rem !important;
        max-width: 92% !important;
        text-align: center !important;
        margin: 0 auto !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        border-radius: 4px !important;
    }
    
    .hero-glass-plate .giant-text {
        font-size: 1.55rem !important;
        line-height: 1.15 !important;
        margin: 1rem 0 1.2rem !important;
        text-align: center !important;
        text-transform: uppercase !important;
        display: block !important;
        width: 100% !important;
    }

    .hero-glass-plate .subtitle {
        font-size: 0.95rem !important;
        margin-bottom: 4rem !important;
        text-align: center !important;
        opacity: 0.9 !important;
        display: block !important;
        width: 100% !important;
    }

    .btn-cinematic-alt {
        width: auto !important;
        min-width: 220px !important;
        margin: 0 auto !important;
        display: inline-block !important;
    }
}

/* Touch fixes */
@media (hover: none) and (pointer: coarse) {
    .cursor { display: none; }
    * { cursor: auto !important; }
}

