/* ==========================================================================
   RESET & VARIABLES
   ========================================================================== */
   :root {
    /* Colors */
    --bg-main: #080808;
    --bg-secondary: #0D0D0D;
    --text-primary: #F1EEE7;
    --text-secondary: #A6A39C;
    --text-muted: #77746E;
    --accent: #BDA98C;
    --border: rgba(241, 238, 231, 0.16);
    --overlay: rgba(0, 0, 0, 0.35);
    --overlay-dark: rgba(0, 0, 0, 0.6);

    /* Typography */
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Inter', sans-serif;
    
    /* Font Sizes */
    --fs-hero: clamp(64px, 8vw, 130px);
    --fs-h2: clamp(44px, 6vw, 92px);
    --fs-body: clamp(16px, 1.2vw, 18px);
    --fs-label: clamp(11px, 0.8vw, 13px);

    /* Layout & Spacing */
    --container-width: 92%;
    --section-padding: clamp(80px, 12vw, 160px);
    
    /* Animation */
    --transition-smooth: 0.6s cubic-bezier(0.19, 1, 0.22, 1);
    --transition-fast: 0.3s ease;
}

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

html {
    scroll-behavior: auto; /* Handled by Lenis */
}

body {
    background-color: var(--bg-main);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: var(--fs-body);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

img, video {
    max-width: 100%;
    display: block;
    object-fit: cover;
}

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

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

/* Typography Utilities */
h1, h2, h3, .hero-title, .section-title {
    font-family: var(--font-heading);
    font-weight: 500;
    line-height: 1.1;
    margin-bottom: 24px;
}

.uppercase {
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-size: var(--fs-label);
}

.section-label {
    color: var(--accent);
    margin-bottom: 32px;
}

/* ==========================================================================
   NAVIGATION
   ========================================================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 32px 4%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    transition: background 0.4s ease, backdrop-filter 0.4s ease, padding 0.4s ease;
}

.navbar.scrolled {
    background: rgba(8, 8, 8, 0.85);
    backdrop-filter: blur(12px);
    padding: 20px 4%;
    border-bottom: 1px solid var(--border);
}

/* Custom CSS Logo */
.site-logo {
    max-height: 48px;
    width: auto;
    display: block;
    /* If your uploaded logo has a white background with black text, 
       uncomment the line below to perfectly invert it to white text with a transparent/dark background */
    /* filter: invert(1); */
    transition: transform 0.3s ease;
}

.footer-logo {
    max-height: 36px;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-link {
    font-size: var(--fs-label);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    position: relative;
    overflow: hidden;
    padding-bottom: 4px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--text-primary);
    transform: translateX(-101%);
    transition: transform var(--transition-smooth);
}

.nav-link:hover::after {
    transform: translateX(0);
}

.nav-cta {
    font-size: var(--fs-label);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    border: 1px solid var(--border);
    padding: 12px 24px;
    border-radius: 2px;
    transition: all var(--transition-fast);
}

.nav-cta:hover {
    background: var(--text-primary);
    color: var(--bg-main);
}

/* Mobile Nav */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 101;
    width: 30px;
    height: 20px;
    position: relative;
}

.mobile-menu-toggle span {
    display: block;
    width: 100%;
    height: 1px;
    background: var(--text-primary);
    position: absolute;
    transition: var(--transition-fast);
}

.mobile-menu-toggle span:first-child { top: 0; }
.mobile-menu-toggle span:last-child { bottom: 0; }

.mobile-menu-toggle.active span:first-child {
    transform: rotate(45deg);
    top: 9px;
}
.mobile-menu-toggle.active span:last-child {
    transform: rotate(-45deg);
    bottom: 10px;
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--bg-main);
    z-index: 99;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-smooth);
}

.mobile-menu.active {
    opacity: 1;
    pointer-events: all;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}

.mobile-nav-link {
    font-family: var(--font-heading);
    font-size: 32px;
}

.mobile-nav-cta {
    margin-top: 20px;
    font-size: 14px;
    border: 1px solid var(--border);
    padding: 14px 28px;
    letter-spacing: 0.15em;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: flex-end;
    padding: 4%;
    padding-bottom: 6%;
}

.hero-video-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.05); /* Slight scale for parallax potential */
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(8,8,8,0.9) 0%, rgba(8,8,8,0.2) 50%, rgba(8,8,8,0.4) 100%);
}

.hero-content {
    width: 100%;
    position: relative;
    z-index: 2;
}

.hero-label {
    margin-bottom: 24px;
    color: var(--accent);
}

.hero-title {
    font-size: var(--fs-hero);
    margin-bottom: 40px;
}

.hero-bottom-flex {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    border-top: 1px solid var(--border);
    padding-top: 24px;
}

.hero-sub {
    color: var(--text-secondary);
}

.hero-scroll-btn {
    color: var(--text-primary);
}

.hero-duration {
    color: var(--text-muted);
}

/* ==========================================================================
   FEATURED WORK
   ========================================================================== */
.work-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 40px;
    margin-top: 80px;
}

.work-item {
    display: block;
    position: relative;
}

/* Reel-focused Asymmetric Layout Classes */
.reel-large {
    grid-column: span 7;
    aspect-ratio: 9 / 16;
}

.reel-medium {
    grid-column: span 5;
    aspect-ratio: 9 / 16;
}

.reel-small {
    grid-column: span 4;
    aspect-ratio: 9 / 16;
}

/* Offsets for editorial staggered grid */
.offset-down {
    margin-top: 120px;
}

.offset-down-small {
    margin-top: 60px;
}

.work-media {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    background: var(--bg-secondary);
}

.work-media img,
.work-media video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}

.work-hover-video {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    z-index: 1;
}

.work-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.2);
    opacity: 0;
    transition: opacity var(--transition-fast);
    z-index: 2;
}

.view-project-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    font-size: var(--fs-label);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    z-index: 3;
    opacity: 0;
    transition: all var(--transition-smooth);
}

.work-info {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    transition: transform var(--transition-smooth);
}

.work-info h3 {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 500;
    margin: 0;
    letter-spacing: 0.05em;
}

.work-info p {
    font-size: 14px;
    color: var(--text-secondary);
}

/* Hover effects */
@media (hover: hover) {
    .work-item:hover .work-media img {
        transform: scale(1.03);
    }
    
    .work-item:hover .work-hover-video {
        opacity: 1;
    }
    
    .work-item:hover .work-overlay {
        opacity: 1;
    }
    
    .work-item:hover .view-project-text {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
    
    .work-item:hover .work-info {
        transform: translateY(4px);
    }
}

/* ==========================================================================
   EXPLORE CATEGORIES
   ========================================================================== */
.category-panels {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 80px;
}

.cat-row {
    display: flex;
    gap: 24px;
    height: 500px;
}

.layout-60-40 > :first-child { flex: 6; }
.layout-60-40 > :last-child { flex: 4; }

.layout-40-60 > :first-child { flex: 4; }
.layout-40-60 > :last-child { flex: 6; }

.layout-50-50 > :first-child { flex: 5; }
.layout-50-50 > :last-child { flex: 5; }

.cat-panel {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    padding: 40px;
    background: var(--bg-secondary);
}

.cat-panel img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-smooth);
    filter: brightness(0.7);
}

.cat-content {
    position: relative;
    z-index: 2;
}

.cat-title {
    font-size: 32px;
    margin-bottom: 8px;
}

@media (hover: hover) {
    .cat-panel:hover img {
        transform: scale(1.05);
        filter: brightness(0.9);
    }
}

/* ==========================================================================
   CINEMATIC BREAK
   ========================================================================== */
.cinematic-break {
    height: 100vh;
    min-height: 600px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.cinematic-bg {
    position: absolute;
    top: -15%;
    left: 0;
    width: 100%;
    height: 130%; /* Taller for parallax */
    z-index: -1;
}

.cinematic-bg img {
    width: 100%;
    height: 100%;
}

.cinematic-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--overlay-dark);
}

.cinematic-content {
    text-align: center;
    z-index: 2;
}

.sequence-text {
    font-size: clamp(24px, 4vw, 56px);
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.seq-word {
    color: var(--text-primary);
}

.seq-arrow {
    color: var(--accent);
    font-family: var(--font-body);
    font-weight: 300;
}

/* ==========================================================================
   FILM STRIP (SWIPER)
   ========================================================================== */
.film-strip {
    overflow: hidden;
    padding-top: 40px;
    padding-bottom: 40px;
}

.filmStripSwiper {
    width: 100%;
    overflow: visible; /* Let slides bleed off edge */
}

.filmStripSwiper .swiper-slide {
    width: auto; /* Let content dictate width */
    height: 400px;
    position: relative;
    cursor: grab;
    transition: filter var(--transition-fast);
}

.filmStripSwiper .swiper-slide:active {
    cursor: grabbing;
}

.filmStripSwiper .swiper-slide img {
    height: 100%;
    width: auto;
}

/* Aspect ratio classes just hint at image shape, actual size controlled by height */
.slide-caption {
    position: absolute;
    bottom: 20px;
    left: 20px;
    opacity: 0;
    transition: opacity var(--transition-fast);
    background: rgba(8,8,8,0.7);
    padding: 8px 12px;
    backdrop-filter: blur(4px);
}

.slide-caption h4 {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 2px;
}

.slide-caption p {
    font-size: 12px;
    color: var(--text-secondary);
}

@media (hover: hover) {
    .filmStripSwiper:hover .swiper-slide:not(:hover) {
        filter: grayscale(100%) brightness(0.6);
    }
    
    .filmStripSwiper .swiper-slide:hover .slide-caption {
        opacity: 1;
    }
}

/* ==========================================================================
   CAPABILITIES
   ========================================================================== */
.capabilities {
    text-align: center;
}

.capabilities .section-label {
    margin-bottom: 24px;
}

.capabilities .section-title {
    margin-bottom: 80px;
}

.capabilities-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px 40px;
    font-size: clamp(20px, 3vw, 48px);
    font-family: var(--font-heading);
    color: var(--text-secondary);
    line-height: 1.4;
    max-width: 1200px;
    margin: 0 auto;
}

.capabilities-list span:not(.slash) {
    transition: color var(--transition-fast);
    cursor: default;
}

.capabilities-list span:not(.slash):hover {
    color: var(--text-primary);
}

.slash {
    color: var(--border);
    font-family: var(--font-body);
    font-weight: 300;
}

/* ==========================================================================
   BTS COLLAGE
   ========================================================================== */
.bts-header {
    text-align: center;
    margin-bottom: 60px;
}

.bts-collage {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: 200px;
    gap: 20px;
    margin-bottom: 60px;
}

.collage-item {
    background: var(--bg-secondary);
    overflow: hidden;
}

.collage-item img {
    transition: transform 1s ease;
}

.collage-item:hover img {
    transform: scale(1.05);
}

.bts-1 { grid-column: 1 / 7; grid-row: 1 / 3; }
.bts-2 { grid-column: 7 / 10; grid-row: 1 / 2; }
.bts-3 { grid-column: 10 / 13; grid-row: 1 / 3; }
.bts-4 { grid-column: 4 / 7; grid-row: 3 / 4; }
.bts-5 { grid-column: 7 / 13; grid-row: 2 / 4; }

.bts-sub {
    text-align: center;
    color: var(--text-muted);
}

/* ==========================================================================
   CLIENTS
   ========================================================================== */
.clients-title {
    text-align: center;
    margin-bottom: 80px;
}

.marquee-container {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    overflow: hidden;
    white-space: nowrap;
    display: flex;
    padding: 60px 0;
    margin-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background-color: var(--bg-primary);
}

.marquee-content {
    display: inline-flex;
    align-items: center;
    animation: marquee-scroll 45s linear infinite;
    padding-right: 20px;
}

.marquee-content span {
    font-size: 56px;
    font-family: 'Cormorant Garamond', serif;
    text-transform: uppercase;
    color: var(--text-primary);
    padding: 0 40px;
    letter-spacing: 0.05em;
    font-weight: 300;
}

.marquee-content span.marquee-dot {
    font-size: 32px;
    color: var(--accent);
    padding: 0;
    opacity: 0.6;
}

@keyframes marquee-scroll {
    0% { transform: translateX(0%); }
    100% { transform: translateX(-100%); }
}

.marquee-container:hover .marquee-content {
    animation-play-state: paused;
}

/* ==========================================================================
   ABOUT
   ========================================================================== */
.about-split {
    display: flex;
    align-items: center;
    gap: 8%;
}

.about-image {
    flex: 1;
    aspect-ratio: 4/5;
    background: var(--bg-secondary);
    overflow: hidden;
}

.about-content {
    flex: 1;
}

.about-desc {
    font-size: clamp(20px, 1.8vw, 28px);
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.4;
}

.about-sub {
    color: var(--accent);
    margin-bottom: 80px;
}

.founders {
    display: flex;
    gap: 60px;
    border-top: 1px solid var(--border);
    padding-top: 40px;
}

.founder h4 {
    font-size: 16px;
    margin-bottom: 4px;
}

.founder p {
    font-size: 14px;
    color: var(--text-secondary);
}

/* ==========================================================================
   FINAL CTA
   ========================================================================== */
.final-cta {
    position: relative;
    height: 90vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    top: -15%;
    left: 0;
    width: 100%;
    height: 130%;
    z-index: -1;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--overlay-dark);
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-title {
    font-size: var(--fs-h2);
    margin-bottom: 20px;
}

.cta-sub {
    font-size: 24px;
    color: var(--text-secondary);
    margin-bottom: 60px;
    font-family: var(--font-heading);
    font-style: italic;
}

.cta-btn {
    background: transparent;
    border: 1px solid var(--text-primary);
    color: var(--text-primary);
    padding: 20px 40px;
    font-size: 14px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.cta-btn:hover {
    background: var(--text-primary);
    color: var(--bg-main);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
    border-top: 1px solid var(--border);
    padding: 60px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 80px;
}

.footer-left p {
    font-size: 14px;
    letter-spacing: 0.1em;
}

.footer-center p {
    font-family: var(--font-heading);
    font-size: 24px;
    color: var(--text-secondary);
}

.footer-right {
    display: flex;
    flex-direction: column;
    gap: 12px;
    text-align: right;
}

.footer-right a {
    font-size: 14px;
    color: var(--text-secondary);
    transition: color var(--transition-fast);
}

.footer-right a:hover {
    color: var(--text-primary);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: var(--text-muted);
}

/* ==========================================================================
   MODAL (CONTACT FORM)
   ========================================================================== */
.contact-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 200;
    display: flex;
    justify-content: flex-end;
    pointer-events: none;
    opacity: 0;
    transition: opacity var(--transition-smooth);
}

.contact-modal.active {
    opacity: 1;
    pointer-events: all;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(8px);
}

.modal-content {
    position: relative;
    width: 100%;
    max-width: 760px;
    height: 100%;
    background: var(--bg-main);
    padding: 40px 50px;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
    border-left: 1px solid var(--border);
    display: flex;
    flex-direction: column;
}

/* Elegant Scrollbar for Modal */
.modal-content::-webkit-scrollbar {
    width: 6px;
}
.modal-content::-webkit-scrollbar-track {
    background: transparent;
}
.modal-content::-webkit-scrollbar-thumb {
    background: var(--border);
    border-radius: 3px;
}
.modal-content::-webkit-scrollbar-thumb:hover {
    background: var(--text-secondary);
}

.contact-modal.active .modal-content {
    transform: translateX(0);
}

.close-modal {
    position: absolute;
    top: 30px;
    right: 40px;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 32px;
    cursor: pointer;
    font-weight: 300;
}

.modal-header {
    margin-bottom: 40px;
}

.modal-header h2 {
    font-size: 32px;
    margin-bottom: 4px;
}

.modal-header p {
    color: var(--text-secondary);
    font-size: 14px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex-grow: 1;
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-row .form-group {
    flex: 1;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-secondary);
}

.form-group input,
.form-group select,
.form-group textarea {
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--border);
    padding: 12px 0;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 16px;
    outline: none;
    transition: border-color var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--accent);
}

.form-group select {
    appearance: none;
    background: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23A6A39C'%3E%3Cpath d='M3 4l3 4 3-4z'/%3E%3C/svg%3E") no-repeat right center;
}

.form-group select option {
    background: var(--bg-secondary);
    color: var(--text-primary);
}

.submit-btn {
    background: var(--text-primary);
    color: var(--bg-main);
    border: none;
    padding: 18px;
    font-size: 14px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    cursor: pointer;
    margin-top: 20px;
    transition: background var(--transition-fast);
}

.submit-btn:hover {
    background: var(--accent);
}

.modal-footer {
    margin-top: 40px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
    display: flex;
    gap: 24px;
}

.modal-footer a {
    font-size: 11px;
    letter-spacing: 0.1em;
    color: var(--text-secondary);
}

/* ==========================================================================
   BENTO GRID LAYOUT
   ========================================================================== */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 300px;
    gap: 16px;
    margin-top: 60px;
}

.bento-item {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    background: #111;
}

.bento-item img, .bento-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

.bento-item:hover img, .bento-item:hover video {
    transform: scale(1.03);
}

.bento-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.1) 40%, rgba(0,0,0,0) 100%);
    pointer-events: none;
    z-index: 1;
}

.bento-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 24px;
    z-index: 2;
}

.bento-title {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.05em;
    margin-bottom: 4px;
}

.bento-sub {
    font-size: 10px;
    color: var(--text-secondary);
    letter-spacing: 0.1em;
}

/* Span classes for bento layout */
.bento-span-2x2 { grid-column: span 2; grid-row: span 2; }
.bento-span-2x1 { grid-column: span 2; grid-row: span 1; }
.bento-span-1x2 { grid-column: span 1; grid-row: span 2; }
.bento-span-1x1 { grid-column: span 1; grid-row: span 1; }

/* ==========================================================================
   RESPONSIVE (Mobile First & Adjustments)
   ========================================================================== */
@media (max-width: 1200px) {
    /* No marquee specific adjustments needed at 1200px */
}

@media (max-width: 992px) {
    .work-item.reel-large,
    .work-item.reel-medium,
    .work-item.reel-small {
        grid-column: span 12;
        margin-top: 0;
    }
    
    .work-media {
        aspect-ratio: 9/16;
    }

    .cat-row {
        flex-direction: column;
        height: auto;
    }
    
    .cat-panel {
        aspect-ratio: 16/9;
        padding: 30px;
    }
    
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 250px;
    }
    
    .bento-span-2x2,
    .bento-span-2x1,
    .bento-span-1x2,
    .bento-span-1x1 {
        grid-column: span 2;
        grid-row: span 1;
    }
    .bento-span-1x2 {
        grid-row: span 2;
    }
    
    .about-split {
        flex-direction: column;
        gap: 60px;
    }
    
    .bts-collage {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: minmax(150px, auto);
    }
    
    .bts-1, .bts-2, .bts-3, .bts-4, .bts-5 {
        grid-column: span 1;
        grid-row: span 1;
    }
    .bts-1 { grid-column: span 2; }
}

@media (max-width: 768px) {
    .nav-right {
        display: none; /* Hidden on mobile */
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .hero-bottom-flex {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    
    .hero-scroll-btn {
        display: none;
    }
    
    .form-row {
        flex-direction: column;
        gap: 24px;
    }
    
    .marquee-content span {
        font-size: 36px;
        padding: 0 20px;
    }
    
    .marquee-content span.marquee-dot {
        font-size: 24px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 40px;
        align-items: center;
        text-align: center;
    }
    
    .footer-right {
        text-align: center;
    }
    
    .modal-content {
        padding: 40px 20px;
    }
}
