:root {
    --bg: #0d0d0d;
    --text: #ffffff;
    --acid: #CCFF00;
    --hot-pink: #FF0055;
    --border: #ffffff;
    --border-width: 3px;
    --shadow: 6px 6px 0px 0px #ffffff;
    --shadow-hover: 10px 10px 0px 0px var(--acid);
    
    --font-display: 'Archivo Black', sans-serif;
    --font-mono: 'Space Mono', monospace;
}

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

body {
    background-color: var(--bg);
    color: var(--text);
    font-family: var(--font-mono);
    overflow-x: hidden;
    line-height: 1.5;
}

a { text-decoration: none; color: inherit; }

/* --- FLOATING NAVIGATION (NEOBRUTALIST) --- */
nav {
    position: fixed; 
    top: -150px; /* START HIDDEN ABOVE VIEWPORT */
    left: 50%;
    transform: translateX(-50%);
    width: 90%; 
    max-width: 1200px;
    height: 70px;
    opacity: 0; /* Hidden */
    
    display: flex; justify-content: space-between; align-items: center; 
    padding: 0 3rem;
    z-index: 1000;
    
    background: rgba(13, 13, 13, 0.95);
    backdrop-filter: blur(10px);
    
    border: var(--border-width) solid var(--border);
    border-radius: 50px; /* Pill shape */
    box-shadow: 6px 6px 0px 0px black; /* Hard shadow */
    
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* REVEAL ON SCROLL - Default Black/White */
nav.scrolled {
    top: 2rem;
    opacity: 1;
    
    width: 80%;
    height: 60px;
    background: #000;
    border-color: white;
    color: white;
    box-shadow: 4px 4px 0px 0px white;
}

/* SECTION 02 HIGHLIGHT - Acid Mode */
nav.acid-mode {
    background: var(--acid) !important;
    border-color: black !important;
    color: black !important;
    box-shadow: 4px 4px 0px 0px var(--hot-pink) !important;
}

.nav-brand {
    display: flex; align-items: center;
}

.nav-logo {
    height: 40px;
    filter: brightness(0) invert(1); /* Start/Scrolled White */
    transition: 0.3s;
}

nav.acid-mode .nav-logo {
    filter: brightness(0); /* Become Black in Acid Mode */
}

/* Lang Links */
.lang-selector a {
    margin-left: 1rem;
    font-weight: bold;
    opacity: 0.5;
    transition: 0.2s;
}

nav.scrolled .lang-selector a {
    color: white;
}

nav.acid-mode .lang-selector a {
    color: black;
    opacity: 0.6;
}

.lang-selector a.active, .lang-selector a:hover {
    opacity: 1;
    color: var(--acid);
    text-decoration: underline;
    text-decoration-thickness: 3px;
    text-underline-offset: 4px;
}

nav.scrolled .lang-selector a.active, 
nav.scrolled .lang-selector a:hover {
    color: var(--hot-pink);
}

/* --- HERO SECTION --- */
.hero-section {
    padding-top: 0; /* Nav is floating now */
    min-height: 100vh;
    border-bottom: var(--border-width) solid var(--border);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    min-height: calc(100vh - 80px);
}

.hero-text-block {
    padding: 4rem;
    display: flex; flex-direction: column; justify-content: center;
    border-right: var(--border-width) solid var(--border);
    position: relative;
    background: var(--bg);
}

.glitch-text {
    font-family: var(--font-display);
    font-size: clamp(3.5rem, 8vw, 7rem);
    line-height: 0.85;
    text-transform: uppercase;
    margin-bottom: 2rem;
    color: var(--text);
}

.highlight {
    color: var(--bg);
    background-color: var(--acid);
    padding: 0 1rem;
}

.hero-meta {
    font-size: 0.9rem;
    border-top: 1px solid var(--text);
    padding-top: 1rem;
    display: flex; gap: 2rem;
    font-weight: bold;
    letter-spacing: 1px;
}

.hero-img-block {
    position: relative;
    overflow: hidden;
    display: flex; align-items: center; justify-content: center;
    background: #111;
    padding: 2rem;
}

.brutal-img {
    width: 100%; height: 100%;
    object-fit: cover;
    border: var(--border-width) solid var(--border);
    border-left: none; /* Merges with the center line */
    box-shadow: none; /* Clean look */
    transition: 0.5s;
    filter: grayscale(100%) contrast(110%); /* Start B&W */
}

.brutal-img:hover {
    filter: grayscale(0%) contrast(100%); /* Color on Hover */
}

.sticker {
    position: absolute; bottom: 2rem; right: 2rem;
    background: var(--hot-pink); color: white;
    padding: 0.5rem 1.5rem;
    font-weight: bold;
    transform: rotate(-5deg);
    border: 2px solid white;
    box-shadow: 4px 4px 0px 0px black;
    font-family: var(--font-mono);
}

/* --- MARQUEE --- */
.marquee-container {
    background: var(--text);
    color: var(--bg);
    padding: 1rem 0;
    overflow: hidden;
    border-bottom: var(--border-width) solid var(--border);
    font-family: var(--font-display);
    font-size: 1.5rem;
    white-space: nowrap;
}

.marquee-content {
    display: inline-block;
}

/* --- SECTIONS GENERAL --- */
.section-brutal {
    border-bottom: var(--border-width) solid var(--border);
}

.bg-light {
    background-color: var(--text);
    color: var(--bg);
}

/* Fix text colors inside light sections */
.bg-light h2, .bg-light h3, .bg-light p, .bg-light span, .bg-light div {
    color: var(--bg) !important;
}
.bg-light .tag.dark {
    color: white !important;
}

/* --- GRID LAYOUTS --- */
.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.two-col > div {
    padding: 6rem;
    display: flex; flex-direction: column; justify-content: center;
}

.border-right {
    border-right: var(--border-width) solid var(--border);
}

.tag {
    display: inline-block;
    background: var(--acid); color: var(--bg);
    padding: 0.2rem 0.8rem;
    font-weight: bold;
    margin-bottom: 2rem;
    border: 2px solid var(--bg);
    text-transform: uppercase;
}

.tag.dark {
    background: var(--hot-pink);
    color: white;
    border: 2px solid black;
}

h2 {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 4vw, 4rem);
    line-height: 1;
    margin-bottom: 2rem;
    text-transform: uppercase;
}

p.lead {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    font-weight: bold;
    line-height: 1.4;
}

.studio-list {
    list-style: none;
    padding-left: 0;
    margin: 0;
}
.studio-list li {
    font-family: 'Space Mono', monospace;
    font-size: 1rem;
    line-height: 2;
    letter-spacing: 0.05em;
}

/* --- VIDEO ELEMENT --- */
.brutal-video {
    width: 100%; height: auto;
    display: block;
    border: var(--border-width) solid var(--text);
    box-shadow: -10px 10px 0px 0px var(--acid);
    filter: grayscale(100%) contrast(120%);
    transition: 0.5s;
    object-fit: cover;
}

.brutal-video:hover {
    filter: grayscale(0%) contrast(100%);
    box-shadow: -15px 15px 0px 0px var(--hot-pink);
    transform: translate(5px, -5px);
}

/* --- PROCESS STEPS --- */
.container-padded {
    padding: 6rem 4rem;
}

.section-header {
    text-align: center; margin-bottom: 4rem;
}

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

.step-card {
    border: 3px solid #000;
    padding: 2rem;
    background: white;
    transition: 0.3s;
    position: relative;
    top: 0; left: 0;
}

.step-card:hover {
    top: -8px; left: -8px;
    box-shadow: 12px 12px 0px 0px var(--hot-pink);
    background: var(--acid);
}

.step-num {
    font-size: 4rem;
    font-family: var(--font-display);
    opacity: 0.1;
    display: block;
    margin-bottom: 1rem;
    color: black !important;
}

.step-card h3 {
    font-family: var(--font-display);
    font-size: 1.5rem; margin-bottom: 1rem;
    color: black !important;
}
.step-card p {
    color: black !important;
}

/* --- GALLERY --- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.gallery-item {
    border: var(--border-width) solid var(--border);
    aspect-ratio: 1/1;
    overflow: hidden;
    position: relative;
}

.gallery-item img {
    width: 100%; height: 100%; object-fit: cover;
    filter: grayscale(100%);
    transition: 0.3s;
}

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

/* --- FOOTER --- */
.footer-brutal {
    padding: 8rem 2rem 4rem 2rem;
    background: var(--acid);
    color: var(--bg);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border-top: 4px solid white;
}

.footer-cta h2 {
    color: black !important;
}

.btn-giant {
    display: inline-block;
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 4vw, 3rem);
    background: var(--bg);
    color: var(--acid);
    padding: 1.5rem 4rem;
    margin-top: 2rem;
    border: 4px solid black;
    box-shadow: 12px 12px 0px 0px var(--hot-pink);
    transition: 0.2s;
    text-transform: uppercase;
}

.btn-giant:hover {
    transform: translate(6px, 6px);
    box-shadow: 4px 4px 0px 0px var(--hot-pink);
    background: var(--hot-pink);
    color: white;
    border-color: white;
}

.footer-info {
    margin-top: 6rem;
    display: flex; justify-content: space-between;
    border-top: 3px solid black;
    padding-top: 2rem;
    font-weight: bold;
    color: black !important;
    font-family: var(--font-mono);
}

/* --- STUDIO INTERACTION --- */
.studio-interaction {
    position: relative;
    padding: 0 !important;
    border-left: var(--border-width) solid var(--border);
    overflow: hidden;
}

.studio-carousel {
    position: relative;
    width: 100%;
    height: 700px;
}

.studio-slides {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.studio-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%) contrast(110%);
    opacity: 0;
    transition: opacity 0.5s ease, filter 0.4s ease;
}

.studio-slide.active {
    opacity: 1;
}

.studio-carousel:hover .studio-slide.active {
    filter: grayscale(0%) contrast(100%);
}

/* --- NEOBRUTALIST CAROUSEL BUTTONS --- */
.carousel-btn {
    position: absolute;
    top: 50%;
    width: 72px;
    height: 72px;
    background: var(--acid);
    color: black;
    border: var(--border-width) solid black;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 10;
    padding: 0;
    transition: 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 6px 6px 0px 0px black;
}

.carousel-btn.prev {
    left: 1.5rem;
    transform: translateY(-50%);
}

.carousel-btn.next {
    right: 1.5rem;
    transform: translateY(-50%);
}

.carousel-btn svg {
    width: 32px;
    height: 32px;
}

.carousel-btn:hover {
    background: var(--hot-pink);
    color: white;
    box-shadow: 10px 10px 0px 0px black;
}

.carousel-btn.prev:hover {
    transform: translate(-4px, calc(-50% - 4px));
}

.carousel-btn.next:hover {
    transform: translate(-4px, calc(-50% - 4px));
}

.carousel-btn:focus-visible {
    outline: 3px solid var(--acid);
    outline-offset: 4px;
}

/* --- MOBILE --- */
@media (max-width: 900px) {
    .nav-brand { font-size: 1.2rem; }
    .hero-grid { grid-template-columns: 1fr;  }
    .hero-text-block { border-right: none; border-bottom: var(--border-width) solid var(--border); padding: 2rem; }
    
    .hero-img-block { 
        padding: 0; 
        height: 50vh; 
        min-height: 400px;
    }
    .brutal-img { 
        width: 100%; 
        height: 100%; 
        border: none; 
        box-shadow: none; 
        object-fit: cover;
        object-position: top; /* Fix for face cropping */
    }
    
    .content-grid { grid-template-columns: 1fr; }
    .two-col > div { padding: 3rem 2rem; }
    .process-steps, .gallery-grid { grid-template-columns: 1fr; }
    .border-right { border-right: none; border-bottom: var(--border-width) solid var(--border); }
    .container-padded { padding: 4rem 2rem; }
    
    /* Mobile Studio */
    .studio-interaction { border-left: none; border-top: var(--border-width) solid var(--border); }
    .studio-carousel { height: 500px; }
    .carousel-btn { width: 56px; height: 56px; box-shadow: 4px 4px 0px 0px black; }
    .carousel-btn svg { width: 24px; height: 24px; }
    .carousel-btn.prev { left: 1rem; }
    .carousel-btn.next { right: 1rem; }
    .carousel-btn:hover { box-shadow: 6px 6px 0px 0px black; }
    
    .btn-giant { width: 100%; padding: 1.5rem 1rem; font-size: 1.5rem; }
    .footer-info { flex-direction: column; gap: 1rem; text-align: center; }
}

/* --- FOOTER LAYOUT GRID --- */
.footer-layout-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    width: 100%;
    max-width: 1100px;
    margin: 4rem auto 0 auto;
    padding-top: 3rem;
    border-top: var(--border-width) solid black;
    align-items: center;
}

/* --- FOOTER DETAILS (NEOBRUTALIST) --- */
.footer-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    text-align: left;
    width: 100%;
}

.detail-block {
    text-align: left;
}

.detail-block h4 {
    font-family: var(--font-display);
    color: black;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
    text-transform: uppercase;
}

.detail-block p {
    font-family: var(--font-mono);
    font-size: 0.9rem;
    line-height: 1.5;
    color: black;
    font-weight: bold;
}

/* Footer Logo */
.footer-logo-img {
    height: 60px;
    margin-top: 4rem;
    filter: brightness(0); /* Black logo */
    opacity: 0.8;
    transition: 0.3s;
}
.footer-logo-img:hover { opacity: 1; transform: scale(1.05); }

.footer-social-link {
    display: inline-block;
    color: black;
    margin-top: 1rem;
    transition: transform 0.3s;
}

.footer-social-link:hover {
    transform: scale(1.1);
}

@media (max-width: 900px) {
    .footer-layout-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        border-top: none; /* Keep border logic simple */
    }
    
    .footer-details {
        text-align: center;
        align-items: center;
        border-top: var(--border-width) solid black;
        padding-top: 2rem;
    }

    .detail-block { text-align: center; }
}

/* --- MAP (NEOBRUTALIST) --- */
.map-container {
    width: 100%;
    height: 300px; /* Reduced Size */
    border: var(--border-width) solid black;
    position: relative;
    background: #e0e0e0;
}

.map-container iframe {
    width: 100%; height: 100%;
    filter: grayscale(100%); /* Simple B&W */
    transition: filter 0.3s;
    display: block;
}

.map-container:hover iframe {
    filter: grayscale(0%);
}

.map-overlay-link {
    position: absolute;
    bottom: 1rem; right: 1rem;
    background: black;
    color: var(--acid);
    padding: 0.5rem 1rem;
    font-weight: bold;
    font-family: var(--font-mono);
    text-decoration: none;
    border: 2px solid black;
    box-shadow: 4px 4px 0px 0px black; 
    transition: 0.2s;
}

.map-overlay-link:hover {
    background: var(--acid);
    color: black;
    transform: translate(2px, 2px);
    box-shadow: 2px 2px 0px 0px black;
}
