/* Modern Reset & Premium Dark Palette */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}
html {
    scroll-behavior: smooth;
}
body {
    background-color: #0d0f12;
    color: #e2e8f0;
    line-height: 1.6;
    overflow-x: hidden;
}
a {
    color: #00f0ff;
    text-decoration: none;
    transition: color 0.3s;
}
a:hover {
    color: #ffffff;
}

/* DYNAMIC RESPONSIVE NAVIGATION SYSTEM */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: rgba(13, 15, 18, 0.98);
    border-bottom: 1px solid #1e293b;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
}
.logo {
    font-size: 1.2rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    flex-shrink: 0;
}
.logo span { color: #00f0ff; }

.nav-links {
    display: flex;
    align-items: center;
}
.nav-links a {
    margin-left: 24px;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #94a3b8;
    white-space: nowrap;
    transition: color 0.3s ease;
}
.nav-links a:hover { color: #00f0ff; }

.hamburger-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1100;
}
.hamburger-toggle .bar {
    width: 100%;
    height: 2px;
    background-color: #e2e8f0;
    transition: all 0.3s ease-in-out;
    border-radius: 2px;
}

@media (max-width: 1300px) {
    .hamburger-toggle {
        display: flex;
    }
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 320px;
        height: 100vh;
        background-color: #0b0d10;
        border-left: 1px solid #1e293b;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        padding: 60px 40px;
        transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        z-index: 1050;
    }
    .nav-links.mobile-menu-active {
        right: 0;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
    }
    .nav-links a {
        margin-left: 0;
        margin-bottom: 25px;
        font-size: 1rem;
    }
    .hamburger-toggle.open-state .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
        background-color: #00f0ff;
    }
    .hamburger-toggle.open-state .bar:nth-child(2) {
        opacity: 0;
    }
    .hamburger-toggle.open-state .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
        background-color: #00f0ff;
    }
}

section {
    padding: 120px 40px 60px 40px;
    max-width: 1400px;
    margin: 0 auto;
}
.section-title {
    font-size: 2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 40px;
    border-left: 4px solid #00f0ff;
    padding-left: 15px;
}

#hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 100px;
    max-width: 1400px;
}

.hero-split-container {
    display: flex;
    flex-direction: column-reverse;
    gap: 40px;
    width: 100%;
    align-items: center;
}

@media (min-width: 992px) {
    .hero-split-container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    .hero-content-left {
        flex: 1;
        padding-right: 40px;
    }
    .hero-image-right {
        flex: 0 0 360px;
    }
}

#hero h1 {
    font-size: calc(1.8rem + 1.8vw);
    line-height: 1.1;
    margin-bottom: 20px;
}
#hero h1 span { color: #00f0ff; }
#hero p.lead-text {
    font-size: calc(0.95rem + 0.2vw);
    color: #94a3b8;
    margin-bottom: 30px;
    text-align: justify;
}

.hero-profile-display-img {
    width: 100%;
    height: auto;
    border-radius: 6px;
    border: 1px solid #1e293b;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    display: block;
}

.action-container {
    display: flex;
    gap: 15px;
    margin-bottom: 45px;
    flex-wrap: wrap;
}
.cta-btn {
    background-color: transparent;
    border: 2px solid #00f0ff;
    color: #00f0ff;
    padding: 12px 30px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}
.cta-btn:hover {
    background-color: #00f0ff;
    color: #0d0f12;
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.4);
}
.secondary-btn {
    background-color: transparent;
    border: 2px solid #475569;
    color: #94a3b8;
    padding: 12px 30px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}
.secondary-btn:hover {
    border-color: #e2e8f0;
    color: #e2e8f0;
}

.highlight-blocks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    width: 100%;
    margin-top: 20px;
}
.highlight-card {
    background-color: #111419;
    border: 1px solid #1e293b;
    padding: 25px;
    border-radius: 4px;
    transition: border-color 0.3s;
}
.highlight-card:hover { border-color: #00f0ff; }
.highlight-card h3 {
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    color: #00f0ff;
}

.video-container {
    position: relative;
    background-color: #111419;
    background: linear-gradient(145deg, #111419 0%, #0a0c0f 100%);
    border: 1px solid #1e293b;
    margin-bottom: 20px;
    border-radius: 4px;
    overflow: hidden;
}

.responsive-embed-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    background-color: #000;
}
.responsive-embed-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.full-cinematic-theatre {
    width: 100%;
    margin-bottom: 30px;
    border: 1px solid #1e293b;
    border-radius: 4px;
    overflow: hidden;
    background-color: #111419;
}
.theatre-meta-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    background-color: #0a0c0f;
    border-top: 1px solid #1e293b;
    flex-wrap: wrap;
    gap: 15px;
}
.theatre-title-text {
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: bold;
}
.theatre-award-text {
    color: #00f0ff;
    font-weight: bold;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
}

.acoustic-disclaimer-box {
    background-color: #131922;
    border: 1px solid #1e293b;
    border-left: 4px solid #00f0ff;
    padding: 25px;
    border-radius: 4px;
    margin-bottom: 35px;
}

.vault-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}
.vault-card {
    position: relative;
    background-color: #111419;
    border: 1px solid #1e293b;
    border-radius: 4px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: border-color 0.3s;
}
.vault-card:hover { border-color: #00f0ff; }

.vault-bg-graphic {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 4px;
    margin-bottom: 20px;
    border: 1px solid #1e293b;
    filter: brightness(0.85) contrast(1.05);
}
.vault-card:hover .vault-bg-graphic { filter: brightness(1) contrast(1.1); }
.vault-bg-graphic.mirrored { transform: scaleX(-1); }
.vault-content { position: relative; z-index: 2; }

.gallery-slider-component {
    position: relative;
    width: 100%;
    background-color: #111419;
    border: 1px solid #1e293b;
    border-radius: 4px;
    overflow: hidden;
    margin-top: 15px;
    margin-bottom: 30px;
}
.slider-viewport {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}
.slider-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.4s ease-in-out;
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: none;
}
.slider-slide.active-slide {
    opacity: 1;
    pointer-events: auto;
}
.slider-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.slider-caption-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(10,12,15,0.95) 0%, rgba(10,12,15,0.4) 70%, rgba(0,0,0,0) 100%);
    padding: 20px 25px;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.8);
}
.slider-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(13, 15, 18, 0.75);
    border: 1px solid #1e293b;
    color: #ffffff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
    transition: all 0.3s;
}
.slider-nav-btn:hover {
    background-color: #00f0ff;
    color: #0d0f12;
    border-color: #00f0ff;
    box-shadow: 0 0 10px rgba(0, 240, 255, 0.4);
}
.slider-nav-btn.prev-btn { left: 15px; }
.slider-nav-btn.next-btn { right: 15px; }

.split-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.theater-grid, .archive-video-grid, .hex-video-grid, .nexus-video-grid, .st-video-grid, .metro-video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.accolades-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 20px;
    margin-top: 30px;
}
.accolade-card {
    background-color: #111419;
    border: 1px solid #1e293b;
    padding: 25px;
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.accolade-quote {
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 15px;
}
.accolade-source {
    font-size: 0.8rem;
    color: #00f0ff;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: bold;
}

.case-study-box {
    background-color: #111419;
    border-left: 4px solid #00f0ff;
    padding: 30px;
}
.quote-text {
    font-style: italic;
    color: #00f0ff;
    font-size: 1.1rem;
    margin-bottom: 20px;
    line-height: 1.5;
}

.split-archive-block {
    background-color: #111419;
    border: 1px solid #1e293b;
    border-radius: 4px;
    padding: 35px;
    margin-bottom: 40px;
}

.cv-block {
    background-color: #111419;
    border: 1px solid #1e293b;
    padding: 30px;
    border-radius: 4px;
    margin-bottom: 25px;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    width: 100%;
    margin-top: 20px;
}
.contact-card {
    background: linear-gradient(135deg, #111419 0%, #0d0f12 100%);
    border: 1px solid #1e293b;
    border-radius: 4px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}
.contact-card:hover {
    border-color: #00f0ff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 240, 255, 0.05);
}
.contact-icon {
    font-size: 2rem;
    color: #00f0ff;
    margin-bottom: 15px;
}
.contact-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #64748b;
    margin-bottom: 5px;
}
.contact-link-text {
    font-size: 1.1rem;
    font-weight: bold;
    color: #e2e8f0;
}

footer {
    background-color: #090b0d;
    border-top: 1px solid #1e293b;
    padding: 30px 40px;
    text-align: center;
    font-size: 0.85rem;
    color: #64748b;
}

@media (max-width: 1024px) {
    section { padding: 100px 20px 40px 20px; }
}