/* ========== CASE STUDY CSS - CLEAN LAYOUT ========== */

/* ========== GLOBAL RESET & BASE ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    scroll-padding-top: 80px;
}

body {
    background-color: black;
    color: #F1E67C;
    font-family: "roc-grotesk-wide", sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.4)),
                var(--case-study-bg-image, url(images/myl/image3.jpg));
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
}

/* ========== LAYOUT SYSTEM ========== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

#awardscontainer {

    display: flex;
    flex-direction: column;
    gap: 8rem;  

}

.section {
    padding: 4rem 0;
    border-bottom: 1px solid rgba(241, 230, 124, 0.1);
}

.section:last-child {
    border-bottom: none;
}

/* ========== SIDE NAVIGATION ========== */
.side-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 280px;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    border-right: 1px solid rgba(241, 230, 124, 0.2);
    z-index: 1000;
    transition: transform 0.3s ease;
}

.nav-header {
    padding: 2rem;
    border-bottom: 1px solid rgba(241, 230, 124, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    font-size: 1.5rem;
    font-weight: 500;
    color: #F1E67C;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    color: #F1E67C;
}

.nav-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #F1E67C;
    margin: 5px 0;
    transition: 0.3s;
}

.nav-menu {
    list-style: none;
    padding: 2rem 0;
}

.nav-link {
    display: block;
    padding: 1rem 2rem;
    text-decoration: none;
    color: #F1E67C;
    font-size: 1rem;
    font-weight: 400;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.nav-link:hover,
.nav-link.active {
    background-color: rgba(241, 230, 124, 0.1);
    border-left-color: #F1E67C;
}

/* ========== MAIN CONTENT ========== */
.main-content {
    margin-left: 280px;
    min-height: 100vh;
}

.main-content-case-study {
    min-height: 100vh;
    background-color: transparent;
    color: #ffffff;
    font-family: "instrument-sans-variable", sans-serif;
    margin-top: 80px;
    margin-left: 280px;
}

/* ========== CASE STUDY NAVIGATION ========== */
.case-study-nav {
    position: fixed;
    top: 80px;
    left: 0;
    width: 280px;
    height: calc(100vh - 80px);
    background-color: transparent;
    z-index: 100;
    overflow-y: auto;
}

.case-study-nav-content {
    padding: 2rem 1.5rem;
    display: flex;
    align-items: center;
    height: 100%;
}

.case-study-nav-menu {
    display: flex;
    flex-direction: column;
    list-style: none;
    gap: 0.5rem;
}

.case-study-nav-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: block;
}

.case-study-nav-link:hover,
.case-study-nav-link.active {
    color: #F1E67C;
    background-color: rgba(241, 230, 124, 0.1);
    transform: translateX(5px);
}

/* ========== HERO SECTION ========== */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 2rem 0;
    position: relative;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    justify-content: center;
    min-height: 80vh;
}

.title-group {
    display: flex;
    flex-direction: column;
    gap: 2rem; 
}

.badges {
    display: flex;
    justify-content: space-between;
    flex-direction: row; 
    gap: 1rem;
    top: 0;
    left: 32px; 
    width: 90%;  
}

.badges_container img {
    width: auto; 
        height: 4rem;  
}

.project-title {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 400;
    line-height: 0.9;
    color: #F1E67C;
}

.project-collaboration {
    font-size: 0.875rem;
    font-weight: 600;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-family: "roc-grotesk-wide", sans-serif;
}

.project-subtitle {
    font-size: clamp(1.125rem, 2vw, 1.5rem);
    font-family: "instrument-sans-variable", sans-serif;
    color: #ffffff;
    line-height: 1.4;
}

.project-meta {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 3fr;
    gap: 2rem;
    width: 100%;
    grid-column: 1 / -1;
}

.meta-item h4 {
    font-size: 0.875rem;
    font-weight: 600;
    color: #F1E67C;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.meta-item p {
    font-size: 1rem;
    color: #ffffff;
    font-family: "instrument-sans-variable", sans-serif;
}

.hero-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    margin-top: 2rem;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ========== SECTION HEADERS ========== */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 400;
    color: #F1E67C;
    margin-bottom: 1rem;
}

.section-intro {
    font-size: clamp(1.125rem, 2vw, 1.25rem);
    color: #ffffff;
    font-family: "instrument-sans-variable", sans-serif;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.5;
}

/* ========== CONTENT GRID SYSTEM ========== */
.content-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 2rem;
    width: 100%;
}

.content-grid .content-block:not(.full-width) {
    flex: 1;
    min-width: 300px;
}

.content-block {
    background-color: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 0;
    border: 1px solid rgba(241, 230, 124, 0.1);
    transition: all 0.3s ease;
    width: 100%;
    height: 100%;
}

.content-block:hover {
    border-color: rgba(241, 230, 124, 0.2);
    transform: translateY(-2px);
}

/* Remove background and border from nested content-blocks */
.content-block .content-block {
    background-color: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border: none;
    padding: 0;
}

.content-block .content-block:hover {
    border-color: transparent;
    transform: none;
}

.content-block.full-width {
    grid-column: 1 / -1;
    margin-top: 2rem;
}

.content-block h3 {
    font-size: 1.5rem;
    font-weight: 500;
    color: #F1E67C;
    margin-bottom: 1rem;
}

.content-block p {
    font-size: 1rem;
    color: #ffffff;
    font-family: "instrument-sans-variable", sans-serif;
    line-height: 1.6;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
}

.content-block p:first-child {
    margin-top: 0;
}

.content-block p:last-child {
    margin-bottom: 0;
}

.content-block ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.content-block li {
    margin-bottom: 0.5rem;
    color: #ffffff;
    font-family: "instrument-sans-variable", sans-serif;
}

.content-block li:last-child {
    margin-bottom: 0;
}

/* ========== IMAGE STYLES ========== */
.content-block img {
    width: 100%;
    height: auto;
    border-radius: 0;
    transition: transform 0.3s ease;
}

.content-block img:hover {
    transform: scale(1.02);
}

/* ========== SPECIAL COMPONENTS ========== */
.findings-grid,
.journey-map,
.metrics,
.iterations,
.deliverables {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.finding,
.journey-stage,
.metric,
.iteration,
.deliverable {
    background-color: rgba(241, 230, 124, 0.05);
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid rgba(241, 230, 124, 0.1);
}

.finding h4,
.journey-stage h4,
.metric h4,
.iteration h4,
.deliverable h4 {
    font-size: 1.25rem;
    font-weight: 500;
    color: #F1E67C;
    margin-bottom: 0.5rem;
}

.finding p,
.journey-stage p,
.metric p,
.iteration p,
.deliverable p {
    font-size: 0.875rem;
    color: #ffffff;
    font-family: "instrument-sans-variable", sans-serif;
    line-height: 1.5;
}

.persona {
    background-color: rgba(241, 230, 124, 0.05);
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    border: 1px solid rgba(241, 230, 124, 0.1);
    display: flex;
    gap: 32px;
}

.persona_layout{
    width: 50%; 
}

.persona h4 {
    font-size: 1.25rem;
    font-weight: 500;
    color: #F1E67C;
    margin-bottom: 0.5rem;
}

/* ========== PRODUCTION GALLERY ========== */
.production-gallery-container {
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 2rem;
    margin-top: 1rem;
    border: 1px solid rgba(241, 230, 124, 0.1);
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.production-gallery-container img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.production-gallery-container img:hover {
    transform: scale(1.02);
}

.production-gallery-container img:last-child {
    margin-bottom: 0;
}

/* ========== IMAGE GRIDS ========== */
.image-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.image-grid img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
}

/* ========== OOH IDEATION GRID ========== */
.ooh-ideation-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    width: 100%;
}

.ooh-ideation-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    width: 100%;
}

.ooh-ideation-row img {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.ooh-ideation-row img:hover {
    transform: scale(1.02);
}

/* ========== VIDEO CONTAINER ========== */
.video-container {
    width: 100%;
    height: 35rem;     
    margin-top: 1rem;
}

.video-container iframe {
    width: 100%;
    height: 100%;  
    border-radius: 8px;
}

/* ========== IMAGE OVERLAY ========== */
.image-overlay {
    position: relative;
    display: inline-block;
    width: 100%;
}

.image-overlay img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
}

.overlay-text {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 1rem;
    border-radius: 0 0 8px 8px;
}

.overlay-text h4 {
    font-size: 1.125rem;
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.overlay-text p {
    font-size: 0.875rem;
    opacity: 0.9;
}

/* ========== DESIGN SHOWCASE ========== */
.design-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.design-showcase img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.design-showcase img:hover {
    transform: scale(1.02);
}

.design-showcase-single {
    margin-top: 2rem;
}

.design-showcase-single img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.design-showcase-single img:hover {
    transform: scale(1.02);
}

/* ========== PRODUCTION GALLERY ========== */
#production .content-block.full-width .image-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

#production .content-block.full-width .image-grid img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 8px;
}

/* ========== OUTCOMES SECTION ========== */
#outcomes .content-block.full-width {
    margin-bottom: 2rem;
}

#outcomes .content-block.full-width:last-child {
    margin-bottom: 0;
}

#outcomes .content-block.full-width img {
    width: 100%;
    height: 800px;
    object-fit: contain;
    display: block;
    border-radius: 8px;
}

/* ========== TESTING SECTION ========== */
.testing-info-container {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

.testing-info-block {
    flex: 1;
    background-color: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(241, 230, 124, 0.1);
}

.testing-info-block h3 {
    font-size: 1.5rem;
    font-weight: 500;
    color: #F1E67C;
    margin-bottom: 2rem;
}

.testing-info-block li {
    margin-bottom: 0.5rem;
    color: #ffffff;
    font-family: "instrument-sans-variable", sans-serif;
}

.testing-info-block li:last-child {
    margin-bottom: 0;
}

#testing .content-block.full-width .image-grid {
    display: flex;
    flex-direction: row;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

#testing .content-block.full-width .image-grid img {
    flex: 1;
    min-width: calc(50% - 1rem);
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
}

/* ========== RESEARCH SECTION ========== */
#research .video-container {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

#research .video-container iframe {
    width: 100%;
    height: 100%;
    border-radius: 8px;
}

#research .content-block.full-width .image-grid {
    display: flex;
    flex-direction: row;
    gap: 2rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

#research .content-block.full-width .image-grid img {
    flex: 1;
    min-width: calc(50% - 1rem);
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
}

/* ========== DELIVERABLES HEADER ========== */
.deliverables-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.deliverables-header h3 {
    margin-bottom: 0;
}

.live-site-button {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: #F1E67C;
    color: #000000;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    border: 2px solid #F1E67C;
}

.live-site-button:hover {
    background-color: transparent;
    color: #F1E67C;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(241, 230, 124, 0.3);
}

/* ========== NEXT PROJECT FOOTER ========== */
.next-project-footer {
    padding: 4rem 0;
    border-top: 1px solid rgba(241, 230, 124, 0.1);
    display: flex;
    justify-content: flex-end;
}

.next-project-content {
    max-width: 600px;
    margin-right: 2rem;
}

.next-project-content h3 {
    font-size: 2rem;
    color: #F1E67C;
    margin-bottom: 2rem;
    text-align: left;
}

.next-project-link {
    display: flex;
    align-items: center;
    gap: 2rem;
    text-decoration: none;
    color: inherit;
    padding: 2rem;
    background-color: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    border: 1px solid rgba(241, 230, 124, 0.1);
    transition: all 0.3s ease;
}

.next-project-link:hover {
    border-color: rgba(241, 230, 124, 0.3);
    transform: translateY(-2px);
}

.next-project-image {
    width: 200px;
    height: 200px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.next-project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.next-project-info {
    flex: 1;
}

.next-project-info h4 {
    font-size: 1.5rem;
    color: #F1E67C;
    margin-bottom: 0.5rem;
}

.next-project-info p {
    color: #ffffff;
    font-family: "instrument-sans-variable", sans-serif;
}

.next-project-arrow {
    font-size: 2rem;
    color: #F1E67C;
    flex-shrink: 0;
}

/* ========== RESPONSIVE DESIGN ========== */
@media (max-width: 1024px) {
    .side-nav {
        transform: translateX(-100%);
    }
    
    .side-nav.active {
        transform: translateX(0);
    }
    
    .main-content,
    .main-content-case-study {
        margin-left: 0;
    }
    
    .nav-toggle {
        display: block;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .project-meta {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-top: 1rem;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .design-showcase {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .testing-info-container {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .case-study-nav {
        display: none;
    }
    
    .main-content-case-study {
        margin-top: 80px;
    }
    
    .deliverables-header {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
    
    .live-site-button {
        align-self: flex-end;
    }
    
    .container {
        padding: 0 1.5rem;
    }
    
    .section {
        padding: 3rem 0;
    }
    
    .hero-section {
        padding: 1rem 0;
        min-height: auto;
        height: auto;
    }

    #awardscontainer {
        gap: 3rem;
    }

    .badges {
        flex-direction: column;
        width: 100%;
        gap: 1.5rem;
    }

    .badges_container {
        display: flex;
        flex-wrap: wrap;
        gap: 1rem;
        justify-content: center;
    }

    .badges_container img {
        width: auto;
        height: 3rem;
    }

    .awards_links {
        text-align: center;
    }

    .awards_links a {
        display: block;
        margin-bottom: 0.75rem;
        font-size: 0.875rem;
    }
    
    .hero-content {
        gap: 1.5rem;
        margin-top: 0;
        min-height: auto;
        height: auto;
    }
    
    .project-title {
        font-size: clamp(2.5rem, 8vw, 4rem);
        margin-bottom: 1rem;
    }
    
    .project-subtitle {
        font-size: clamp(1rem, 4vw, 1.25rem);
        margin-top: 1rem;
        margin-bottom: 2rem;
    }
    
    .content-block {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .content-block h3 {
        font-size: 1.25rem;
        margin-bottom: 0.75rem;
    }
    
    .content-block p {
        font-size: 0.95rem;
        margin-bottom: 0.75rem;
    }
    
    .section-header {
        margin-bottom: 2rem;
    }
    
    .section-header h2 {
        font-size: clamp(2rem, 6vw, 3rem);
        margin-bottom: 0.75rem;
    }
    
    .section-intro {
        font-size: clamp(1rem, 3vw, 1.125rem);
    }
    
    #outcomes .content-block.full-width img {
        height: 400px;
    }
    
    #production .content-block.full-width .image-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    #production .content-block.full-width .image-grid img {
        height: 200px;
    }
    
    /* General image grid mobile layout */
    .image-grid {
        grid-template-columns: 1fr !important;
        gap: 1rem;
    }
    
    /* Specific user interviews image grid mobile layout */
    .user-interviews-grid {
        grid-template-columns: 1fr !important;
        gap: 1rem;
    }
    
    /* Override inline styles for user interviews grid on mobile */
    .user-interviews-grid[style*="grid-template-columns"] {
        grid-template-columns: 1fr !important;
    }
    
    /* Increase image heights by 16px in mobile layout */
    .user-interviews-grid img {
        height: 216px !important;
    }
    
    /* User testing grid mobile layout - flex column */
    .user-testing-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 1rem;
    }
    
    .next-project-footer {
        justify-content: center;
    }
    
    .next-project-content {
        margin-right: 0;
        max-width: 100%;
    }
    
    .next-project-content h3 {
        text-align: center;
    }
    
    .next-project-link {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .next-project-image {
        width: 150px;
        height: 150px;
    }
    
    /* Force user testing section to column layout on mobile */
    .user-testing-content {
        flex-direction: column !important;
    }
    
    /* User testing content block mobile layout */
    .content-block.full-width[style*="display: flex"] {
        flex-direction: column;
        gap: 1rem;
    }
    
    .content-block.full-width[style*="display: flex"] > div {
        flex: 1;
        width: 100%;
    }

    .video-container {
        height: auto;
        aspect-ratio: 16 / 9;
    }

    .video-container iframe {
        height: 100%;
        min-height: 300px;
    }

    .content-grid {
        gap: 1.5rem;
    }

    .content-grid .content-block:not(.full-width) {
        min-width: 100%;
    }

    .title-group {
        gap: 1.5rem;
    }

    /* OOH Ideation Grid - Mobile */
    .ooh-ideation-grid {
        gap: 1.5rem;
    }

    .ooh-ideation-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .side-nav {
        width: 100%;
    }
    
    .nav-header {
        padding: 1rem;
    }
    
    .nav-menu {
        padding: 1rem 0;
    }
    
    .nav-link {
        padding: 0.75rem 1rem;
    }
    
    .main-content-case-study {
        margin-top: 60px;
    }
    
    .hero-section {
        padding: 0.5rem 0;
        min-height: auto;
    }

    #awardscontainer {
        gap: 2rem;
    }

    .badges {
        flex-direction: column;
        width: 100%;
        gap: 1rem;
    }

    .badges_container {
        display: flex;
        flex-wrap: wrap;
        gap: 0.75rem;
        justify-content: center;
    }

    .badges_container img {
        width: auto;
        height: 2.5rem;
    }

    .awards_links {
        text-align: center;
    }

    .awards_links a {
        display: block;
        margin-bottom: 0.5rem;
        font-size: 0.8rem;
        line-height: 1.4;
    }
    
    .hero-content {
        gap: 1rem;
        padding: 1rem 0;
    }
    
    .project-title {
        font-size: clamp(2rem, 6vw, 3rem);
        margin-bottom: 0.5rem;
    }
    
    .project-subtitle {
        font-size: clamp(0.9rem, 3.5vw, 1.1rem);
        margin-top: 0.5rem;
        margin-bottom: 1rem;
    }
    
    .project-meta {
        gap: 0.75rem;
        margin-top: 0.5rem;
    }
    
    .meta-item h4 {
        font-size: 0.75rem;
        margin-bottom: 0.25rem;
    }
    
    .meta-item p {
        font-size: 0.85rem;
    }
    
    /* General image grid mobile layout */
    .image-grid {
        grid-template-columns: 1fr !important;
        gap: 1rem;
    }
    
    /* Specific user interviews image grid mobile layout */
    .user-interviews-grid {
        grid-template-columns: 1fr !important;
        gap: 1rem;
    }
    
    /* Override inline styles for user interviews grid on mobile */
    .user-interviews-grid[style*="grid-template-columns"] {
        grid-template-columns: 1fr !important;
    }
    
    /* Increase image heights by 16px in mobile layout */
    .user-interviews-grid img {
        height: 216px !important;
    }
    
    /* User testing grid mobile layout - flex column */
    .user-testing-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 1rem;
    }
    
    /* Force user testing section to column layout on mobile */
    .user-testing-content {
        flex-direction: column !important;
    }
    
    /* User testing content block mobile layout */
    .content-block.full-width[style*="display: flex"] {
        flex-direction: column;
        gap: 1rem;
    }
    
    .content-block.full-width[style*="display: flex"] > div {
        flex: 1;
        width: 100%;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .section {
        padding: 2rem 0;
    }
    
    .hero-content {
        gap: 1.5rem;
    }
    
    .project-title {
        font-size: clamp(2rem, 6vw, 3rem);
        margin-bottom: 0.5rem;
    }
    
    .project-subtitle {
        font-size: clamp(0.875rem, 4vw, 1rem);
        margin-top: 0.5rem;
        margin-bottom: 1rem;
    }
    
    .hero-image {
        height: 200px;
        margin-top: 1rem;
    }
    
    .content-block {
        padding: 1.25rem;
        margin-bottom: 1.25rem;
    }
    
    .content-block h3 {
        font-size: 1.125rem;
        margin-bottom: 0.5rem;
    }
    
    .content-block p {
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
    }
    
    .section-header {
        margin-bottom: 1.5rem;
    }
    
    .section-header h2 {
        font-size: clamp(1.75rem, 5vw, 2.5rem);
        margin-bottom: 0.5rem;
    }
    
    .section-intro {
        font-size: clamp(0.875rem, 3vw, 1rem);
    }
    
    #outcomes .content-block.full-width img {
        height: 300px;
    }
    
    #production .content-block.full-width .image-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    #production .content-block.full-width .image-grid img {
        height: 150px;
    }
    
    .design-showcase img {
        height: 180px;
    }
    
    .design-showcase-single img {
        height: 180px;
    }
    
    /* Production gallery mobile layout - flex column */
    .production-gallery-container {
        display: flex !important;
        flex-direction: column !important;
        gap: 1rem;
    }
    
    .production-gallery-container img {
        height: 200px;
    }
    
    .video-container {
        height: auto;
        aspect-ratio: 16 / 9;
    }

    .video-container iframe {
        height: 100%;
        min-height: 200px;
    }
    
    .next-project-image {
        width: 120px;
        height: 120px;
    }
    
    .next-project-arrow {
        font-size: 1.5rem;
    }

    .content-grid {
        gap: 1rem;
    }

    .content-grid .content-block:not(.full-width) {
        min-width: 100%;
    }

    .title-group {
        gap: 1rem;
    }

    /* OOH Ideation Grid - Small Mobile */
    .ooh-ideation-grid {
        gap: 1rem;
    }

    .ooh-ideation-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

/* ========== ACCESSIBILITY ========== */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

.nav-link:focus,
.nav-toggle:focus,
.case-study-nav-link:focus,
a:focus,
button:focus {
    outline: 2px solid #F1E67C;
    outline-offset: 2px;
}

/* ========== SCROLL INDICATOR ========== */
.scroll-indicator {
    position: fixed;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.scroll-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(241, 230, 124, 0.3);
    transition: all 0.3s ease;
    cursor: pointer;
}

.scroll-dot.active {
    background-color: #F1E67C;
    transform: scale(1.5);
}

@media (max-width: 1024px) {
    .scroll-indicator {
        display: none;
    }
}
