/* ABOUT PAGE STYLES */
:root {
    --black: #292b2d;
    --white: #f9f7f4;
    --light-gray: #f5f5f5;
    --gray: #999;
    --transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--light-gray);
    color: var(--black);
    line-height: 1.6;
    overflow-x: hidden;
    cursor: none;
}

/* CUSTOM CURSOR */
.cursor {
    position: fixed;
    width: 20px;
    height: 20px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: transform 0.1s ease-out;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
}

.cursor-follower {
    position: fixed;
    width: 20px;
    height: 20px;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: transform 0.15s ease-out;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.06);
}

.cursor-hover .cursor {
    transform: translate(-50%, -50%) scale(1.5);
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.15);
}

.cursor-hover .cursor-follower {
    transform: translate(-50%, -50%) scale(1.2);
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(18px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.08);
}


/* ABOUT PAGE LAYOUT */
.about-page {
    padding-top: 60px;
}

.about-hero {
    padding: 80px 40px 40px;
}

.about-title {
    font-size: clamp(48px, 8vw, 80px);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -2px;
    color: var(--black);
}

/* ABOUT CONTENT */
.about-content {
    padding: 40px;
}

.about-layout {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 60px;
    max-width: 1300px;
    margin: 0 auto;
}

.profile-section {
    display: flex;
    flex-direction: column;
}

.profile-image {
    width: 400px;
    height: 500px;
    background: #999;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.image-placeholder {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: var(--white);
}

.case-study-btn {
    display: block;
    width: 100%;
    padding: 20px;
    border: 3px solid var(--black);
    background-color: var(--white);
    font-family: 'JetBrains Mono', monospace;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--black);
    text-decoration: none;
    text-align: center;
    cursor: none;
    transition: var(--transition);
    box-sizing: border-box;
}

.case-study-btn:hover {
    transform: translate(3px, -3px);
    box-shadow: -3px 3px 0px var(--black);
}

/* CASE STUDY HERO SECTION */
.case-study-hero {
    background-color: var(--black);
    color: var(--white);
    padding: 120px 0 80px;
    height: 1080px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.case-study-hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 0.6;
}

.case-study-hero-content {
    max-width: none;
    margin: 0;
    width: 100%;
    padding: 0 80px;
    text-align: left;
    position: absolute;
    bottom: 120px;
    left: 0;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.case-study-title {
    font-size: clamp(80px, 12vw, 140px);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -3px;
    color: var(--white);
    margin-bottom: 10px;
    line-height: 0.9;
}

.case-study-subtitle {
    font-size: 28px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 12px;
    color: var(--white);
    opacity: 1;
    margin: 0 0 60px 0;
}

.case-study-hero-bottom {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    z-index: 1;
    margin-top: 0;
}

.case-study-hero-left,
.case-study-hero-right {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.case-study-hero-left {
    text-align: left;
}

.case-study-hero-right {
    text-align: right;
}

.case-study-hero-left div,
.case-study-hero-right div {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 13px;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 1;
    line-height: 1.8;
}


/* HOOK SECTION */
.hook-section {
    background-color: #000000;
    background-image: url('../../images/WARREN/WarrenBckgrnd.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 40px;
    position: relative;
}

.hook-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hook-text {
    font-family: 'Inter', sans-serif;
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 400;
    color: var(--white);
    line-height: 1.4;
    margin-bottom: 60px;
    letter-spacing: -0.5px;
}

.hook-enter-btn {
    display: inline-block;
    padding: 18px 48px;
    background-color: transparent;
    border: 2px solid var(--white);
    color: var(--white);
    font-family: 'JetBrains Mono', monospace;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: none;
    transition: all 0.3s ease;
}

.hook-enter-btn:hover {
    background-color: var(--white);
    color: #000000;
    transform: translateY(-2px);
}

/* Parallax effect for hook section */
[data-parallax-element] {
    transition: transform 0.1s linear;
}

/* WARREN PARALLAX WINDOW SECTION - Fixed background like Auri */
.warren-parallax-window {
    background-image: url('../../images/WARREN/WarrenSketchOne.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
    padding: 120px 80px;
    min-height: 100vh;
    overflow: hidden;
}

.warren-parallax-container {
    max-width: 1600px;
    margin: 0 auto;
}

/* Responsive design for parallax window */
@media (max-width: 1024px) {
    .warren-parallax-window {
        padding: 80px 40px;
        background-attachment: scroll;
    }
}

@media (max-width: 768px) {
    .warren-parallax-window {
        padding: 60px 20px;
        background-attachment: scroll;
    }
}

/* CONCEPT AND NARRATIVE SECTION - Exact Auri styling */
.warren-concept-section {
    background-color: var(--black);
    position: relative;
    padding: 96px 60px;
    min-height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}


.warren-concept-container {
    position: relative;
    z-index: 1;
    max-width: 1000px;
    margin: 0 auto;
}

.warren-concept-title {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--white);
    opacity: 0.5;
    margin-bottom: 80px;
}

.warren-concept-text {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.warren-concept-text p {
    font-family: 'Inter', sans-serif;
    font-size: 22px;
    line-height: 1.8;
    color: var(--white);
    font-weight: 300;
    margin: 0;
}

.warren-quote {
    font-size: 28px;
    font-weight: 400;
    font-style: italic;
    padding-left: 40px;
    border-left: 4px solid var(--white);
    margin: 20px 0;
}

/* Responsive design for concept section */
@media (max-width: 1024px) {
    .warren-concept-section {
        padding: 80px 40px;
    }
    
    .warren-concept-text p {
        font-size: 20px;
    }
    
    .warren-quote {
        font-size: 24px;
    }
}

@media (max-width: 768px) {
    .warren-concept-section {
        padding: 60px 20px;
    }
    
    .warren-concept-title {
        font-size: 12px;
        margin-bottom: 40px;
    }
    
    .warren-concept-text p {
        font-size: 18px;
    }
    
    .warren-quote {
        font-size: 22px;
        padding-left: 20px;
        border-left: 3px solid var(--white);
    }
}

/* BOOK SPINE NAVIGATION SECTION */
.book-spine-section {
    background-color: var(--black);
    position: relative;
    padding: 80px 60px;
    min-height: 100vh;
}

.book-spine-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        url('data:image/svg+xml,%3Csvg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"%3E%3Cfilter id="noise"%3E%3CfeTurbulence type="fractalNoise" baseFrequency="0.9" numOctaves="4" stitchTiles="stitch"/%3E%3C/filter%3E%3Crect width="100%25" height="100%25" filter="url(%23noise)" opacity="0.03"/%3E%3C/svg%3E'),
        linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
    background-size: 
        200px 200px,
        40px 40px,
        40px 40px;
    pointer-events: none;
    z-index: 0;
}


.book-spine-layout {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 80px;
    max-width: 1400px;
    margin: 0 auto;
    align-items: center;
}

.book-spine-layout.reveal-wrapper {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 1s ease, transform 1s ease;
}

.book-spine-layout.reveal-wrapper.in-view {
    opacity: 1;
    transform: translateY(0);
}

.book-spine-container {
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    gap: 15px;
    height: 100%;
}

.book-spine {
    background-color: var(--white);
    border: 3px solid var(--black);
    box-shadow: -5px 5px 0px var(--black);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    writing-mode: vertical-lr;
    transform: rotate(180deg);
}

.book-spine:hover,
.book-spine.active {
    transform: rotate(180deg);
}

.book-spine[data-book="problem"] {
    width: 120px;
    height: 450px;
}

.book-spine[data-book="brief"] {
    width: 100px;
    height: 380px;
}

.book-spine[data-book="solution"] {
    width: 140px;
    height: 520px;
}

.book-spine[data-book="audience"] {
    width: 110px;
    height: 400px;
}

.book-spine-content {
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.book-title {
    font-family: 'Inter', sans-serif;
    font-size: 24px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--black);
    margin: 0;
    line-height: 1.2;
    transition: text-decoration 0.3s ease;
}

.book-spine:hover .book-title,
.book-spine.active .book-title {
    text-decoration: underline;
    text-decoration-thickness: 3px;
    text-underline-offset: 5px;
}

.book-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--black);
    opacity: 0.7;
    margin-top: 20px;
}

/* Book Content Display Area */
.book-content-display {
    position: relative;
    min-height: 500px;
    padding: 40px;
}

.book-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease;
}

.book-content.active {
    opacity: 1;
    pointer-events: auto;
}

.content-heading {
    font-family: 'Inter', sans-serif;
    font-size: clamp(24px, 3.5vw, 36px);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--white);
    margin-bottom: 50px;
    line-height: 1.15;
    opacity: 1;
    position: relative;
    padding-bottom: 20px;
}

.content-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
}

.content-text {
    font-family: 'Inter', sans-serif;
    font-size: 17px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 10px;
    font-weight: 400;
    letter-spacing: 0.2px;
    max-width: 680px;
}

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

/* Responsive book spines */
@media (max-width: 768px) {
    .book-spine-section {
        padding: 60px 20px;
    }
    
    .book-spine-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .book-spine-container {
        gap: 10px;
        justify-content: center;
    }
    
    .book-spine[data-book="problem"] {
        width: 80px;
        height: 300px;
    }
    
    .book-spine[data-book="brief"] {
        width: 70px;
        height: 250px;
    }
    
    .book-spine[data-book="solution"] {
        width: 90px;
        height: 350px;
    }
    
    .book-spine[data-book="audience"] {
        width: 75px;
        height: 280px;
    }
    
    .book-title {
        font-size: 16px;
    }
    
    .book-subtitle {
        font-size: 10px;
    }
    
    .book-content-display {
        padding: 20px;
    }
}

.case-study-hero-content {
    max-width: none;
    margin: 0;
    width: 100%;
    padding: 0 80px;
    text-align: left;
    position: absolute;
    bottom: 120px;
    left: 0;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.case-study-title {
    font-size: clamp(80px, 12vw, 140px);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -3px;
    color: var(--white);
    margin-bottom: 10px;
    line-height: 0.9;
}

.case-study-subtitle {
    font-size: 28px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 12px;
    color: var(--white);
    opacity: 1;
    margin: 0 0 60px 0;
}

.case-study-hero-bottom {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    z-index: 1;
    margin-top: 0;
}

.case-study-hero-left,
.case-study-hero-right {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.case-study-hero-left {
    text-align: left;
}

.case-study-hero-right {
    text-align: right;
}

.case-study-hero-left div,
.case-study-hero-right div {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
    line-height: 1.2;
}

/* CASE STUDY PAGE CONTENT */
.case-study-page {
    padding-top: 0;
    background-color: var(--light-gray);
}

.case-study-content {
    padding: 80px 40px;
}

.case-study-layout {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.case-study-text h2 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 30px;
    color: var(--black);
}

.case-study-text p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 40px;
    color: var(--black);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.back-to-project {
    margin-top: 60px;
}

.back-btn {
    display: inline-block;
    padding: 15px 30px;
    border: 3px solid var(--black);
    background-color: var(--white);
    color: var(--black);
    text-decoration: none;
    font-family: 'JetBrains Mono', monospace;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: var(--transition);
    cursor: none;
}

.back-btn:hover {
    background-color: var(--black);
    color: var(--white);
    transform: translate(3px, -3px);
    box-shadow: -3px 3px 0px var(--black);
}

.about-text {
    max-width: 700px;
}

.about-text h2 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 30px;
    color: var(--black);
}

.about-text p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: var(--black);
}

/* Key word highlighting effects */
.highlight-text {
    position: relative;
    transition: var(--transition);
}

.key-word {
    position: relative;
    display: inline;
    transition: all 0.3s ease;
    padding: 2px 4px;
    border-radius: 3px;
    background: transparent;
}

.highlight-text:hover .key-word {
    background: var(--black);
    color: var(--white);
    font-weight: 500;
    transform: scale(1.02);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Staggered animation for multiple key words */
.highlight-text:hover .key-word:nth-child(1) { transition-delay: 0s; }
.highlight-text:hover .key-word:nth-child(2) { transition-delay: 0.05s; }
.highlight-text:hover .key-word:nth-child(3) { transition-delay: 0.1s; }
.highlight-text:hover .key-word:nth-child(4) { transition-delay: 0.15s; }
.highlight-text:hover .key-word:nth-child(5) { transition-delay: 0.2s; }
.highlight-text:hover .key-word:nth-child(6) { transition-delay: 0.25s; }
.highlight-text:hover .key-word:nth-child(7) { transition-delay: 0.3s; }
.highlight-text:hover .key-word:nth-child(8) { transition-delay: 0.35s; }

/* Alternative: Individual key word hover (in case you want each word to highlight individually) */
.key-word:hover {
    background: var(--black) !important;
    color: var(--white) !important;
    font-weight: 500 !important;
    transform: scale(1.05) !important;
    cursor: none;
}

.skills-section {
    margin-top: 50px;
}

.skill-category {
    margin-bottom: 30px;
}

.skill-category h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--black);
}

.skill-tags,
.personal-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.skill-tag,
.personal-skill {
    display: inline-block;
    padding: 8px 16px;
    background: transparent;
    border: 1px solid var(--black);
    border-radius: 20px;
    font-size: 14px;
    color: var(--black);
    font-family: 'Inter', sans-serif;
}

.personal-skill {
    background: var(--black);
    color: var(--white);
}

/* CONTACT SECTION */
.contact-section {
    padding: 80px 40px;
    background: var(--light-gray);
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-left h2 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 40px;
    color: var(--black);
}

.contact-details,
.social-details {
    margin-bottom: 40px;
}

.contact-details h3,
.social-details h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--black);
}

.contact-item {
    margin-bottom: 10px;
}

.contact-item span {
    display: inline-block;
    padding: 12px 20px;
    border: 1px solid var(--black);
    border-radius: 25px;
    font-size: 14px;
    color: var(--black);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    display: inline-block;
    padding: 12px 20px;
    border: 1px solid var(--black);
    border-radius: 25px;
    text-decoration: none;
    font-size: 14px;
    color: var(--black);
    transition: var(--transition);
}

.social-link:hover {
    background: var(--black);
    color: var(--white);
}

.contact-right {
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-image {
    width: 350px;
    height: 250px;
    background: #999;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* FOOTER */
.footer {
    background: var(--black);
    color: var(--white);
    padding: 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 40px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-left {
    text-align: left;
}

.footer-text {
    font-size: 14px;
    line-height: 1.5;
}

.footer-nav {
    display: flex;
    gap: 40px;
}

.footer-link {
    color: var(--white);
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    transition: opacity 0.3s ease;
}

.footer-link:hover {
    opacity: 0.7;
}

.footer-right {
    text-align: right;
}

.footer-contact {
    font-size: 14px;
    line-height: 1.5;
}

.footer-contact div:first-child {
    font-weight: 600;
    margin-bottom: 10px;
}

/* RESPONSIVE DESIGN */
@media (max-width: 1024px) {
    .about-layout {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .profile-image {
        width: 350px;
        height: 450px;
        margin: 0 auto 20px;
    }
    
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .contact-image {
        margin: 0 auto;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer-nav {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .about-hero {
        padding: 60px 20px 20px;
    }
    
    .about-content {
        padding: 20px;
    }
    
    .contact-section {
        padding: 60px 20px;
    }
    
    .footer {
        padding: 30px 20px;
    }
    
    .nav {
        padding: 0 20px;
    }
    
    .nav-menu {
        gap: 20px;
    }
    
    .profile-image {
        width: 300px;
        height: 380px;
    }
    
    .contact-image {
        width: 280px;
        height: 200px;
    }
    
    .skill-tags,
    .personal-skills {
        justify-content: center;
    }
}

/* HIDE CURSOR ON TOUCH DEVICES */
@media (hover: none) and (pointer: coarse) {
    .cursor,
    .cursor-follower {
        display: none;
    }
    
    body {
        cursor: auto;
    }
    
    .social-link,
    .case-study-btn,
    .back-btn {
        cursor: pointer;
    }
}/* FOOTER */
.footer {
    background-image: url('../../images/background-hero-home.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: var(--black);
    color: var(--white);
    padding: 80px 60px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 40px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-left {
    text-align: left;
}

.footer-text {
    font-size: 14px;
    line-height: 1.5;
}

.footer-nav {
    display: flex;
    gap: 40px;
}

.footer-link {
    color: var(--white);
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    transition: opacity 0.3s ease;
}

.footer-link:hover {
    opacity: 0.7;
}

.footer-right {
    text-align: right;
}

.footer-contact {
    font-size: 14px;
    line-height: 1.5;
}

.footer-contact div:first-child {
    font-weight: 600;
    margin-bottom: 10px;
}

/* RESPONSIVE DESIGN */
@media (max-width: 1024px) {
    .about-layout {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .profile-image {
        width: 350px;
        height: 450px;
        margin: 0 auto 20px;
    }
    
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .contact-image {
        margin: 0 auto;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer-nav {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .about-hero {
        padding: 60px 20px 20px;
    }
    
    .about-content {
        padding: 20px;
    }
    
    .contact-section {
        padding: 60px 20px;
    }
    
    .footer {
        padding: 30px 20px;
    }
    
    .nav {
        padding: 0 20px;
    }
    
    .nav-menu {
        gap: 20px;
    }
    
    .profile-image {
        width: 300px;
        height: 380px;
    }
    
    .contact-image {
        width: 280px;
        height: 200px;
    }
    
    .skill-tags,
    .personal-skills {
        justify-content: center;
    }
}

/* HIDE CURSOR ON TOUCH DEVICES */
@media (hover: none) and (pointer: coarse) {
    .cursor,
    .cursor-follower {
        display: none;
    }
    
    body {
        cursor: auto;
    }
    
    .social-link,
    .case-study-btn,
    .back-btn {
        cursor: pointer;
    }
}

/* ===================================
   LOGO & BRANDING SECTION
   =================================== */

.logo-branding-section {
    background-color: var(--black);
    position: relative;
    padding: 120px 60px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}


.logo-branding-container {
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.logo-header {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    margin-bottom: 80px;
}

.logo-branding-title {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--white);
    opacity: 0.5;
    margin: 0;
    flex-shrink: 0;
}

.logo-caption-display {
    flex: 1;
    min-height: 60px;
}

.logo-caption-display p {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--white);
    margin: 0;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-left: 3px solid var(--white);
    border-radius: 4px;
    opacity: 0;
    transform: translateX(-10px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.logo-caption-display p:not(:empty) {
    opacity: 1;
    transform: translateX(0);
}

.logo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 400px 400px;
    row-gap: 20px;
    column-gap: 20px;
    height: auto;
}

.logo-item {
    perspective: 1000px;
    height: 100%;
}

/* Auri Name Section (text + image) */
.auri-name-section {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
    align-items: center;
}

.auri-name-text {
    flex: 1;
    max-width: 50%;
}

.auri-name-text .logo-text-heading {
    font-family: 'Neue Montreal', sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 16px;
    letter-spacing: 0.5px;
}

.auri-name-text p {
    font-family: 'Neue Montreal', sans-serif;
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.auri-name-text em {
    font-style: italic;
}

.auri-name-image {
    flex-shrink: 0;
}

.auri-name-image img {
    height: 107px;
    width: auto;
    object-fit: contain;
    border-radius: 8px;
}

/* Warren Name Section (two column layout) */
.warren-name-section {
    margin-bottom: 40px;
}

.warren-name-title {
    font-family: 'Neue Montreal', sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.warren-name-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.warren-name-column-left,
.warren-name-column-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.warren-name-column-left p,
.warren-name-column-right p {
    font-family: 'Neue Montreal', sans-serif;
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

/* Row 1 - Wordmark + Typography */
/* Box 1: Main Logo with Wordmark */
.logo-item:nth-child(1) {
    grid-column: 1 / 3;
    grid-row: 1 / 2;
    height: auto;
}

/* Box 3: Typography with images */
.logo-item:nth-child(3) {
    grid-column: 3 / 4;
    grid-row: 1 / 2;
    height: auto;
}

/* Row 2 - Symbol Mark + Color Palette */
/* Box 2: Alternate logo with Symbol Mark */
.logo-item:nth-child(2) {
    grid-column: 1 / 3;
    grid-row: 2 / 3;
    height: auto;
}

/* Box 4: Color Palette */
.logo-item:nth-child(4) {
    grid-column: 3 / 4;
    grid-row: 2 / 3;
    height: auto;
}

/* Hide items beyond 4 */
.logo-item:nth-child(n+5) {
    display: none;
}

/* Typography Box Styling (Box 3) */
.logo-typography-box .logo-typography-content {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 40px;
    gap: 20px;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(60px) saturate(180%);
    -webkit-backdrop-filter: blur(60px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 32px;
    box-shadow: 
        0 10px 40px 0 rgba(0, 0, 0, 0.25),
        inset 0 1px 0 0 rgba(255, 255, 255, 0.5);
}

.logo-typography-box .logo-text-heading {
    margin: 0;
}

.logo-typography-box .logo-split-images-grid {
    display: flex;
    flex-direction: column;
    gap: 15px;
    flex: 1;
    justify-content: center;
}

.logo-typography-box .logo-split-images-grid img {
    width: 100%;
    height: auto;
    max-height: 200px;
    object-fit: contain;
}

/* Color Palette Box (Box 4) */
.logo-color-palette .color-palette-content {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 40px;
    gap: 30px;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(60px) saturate(180%);
    -webkit-backdrop-filter: blur(60px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 32px;
    box-shadow: 
        0 10px 40px 0 rgba(0, 0, 0, 0.25),
        inset 0 1px 0 0 rgba(255, 255, 255, 0.5);
}

.logo-color-palette .logo-text-heading {
    margin: 0;
}

.color-bars {
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex: 1;
}

.color-bar {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    position: relative;
}

.color-label {
    font-family: 'Neue Montreal', sans-serif;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.color-bar:nth-child(2) .color-label {
    color: #000000;
    text-shadow: none;
}

/* Logo item inner animation */
.logo-item-inner {
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s ease, transform 1s ease;
    width: 100%;
    height: 100%;
}

.logo-item.in-view .logo-item-inner {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger animation delays */
.logo-item[data-index="0"] .logo-item-inner { transition-delay: 0s; }
.logo-item[data-index="1"] .logo-item-inner { transition-delay: 0.15s; }
.logo-item[data-index="2"] .logo-item-inner { transition-delay: 0.1s; }
.logo-item[data-index="3"] .logo-item-inner { transition-delay: 0.25s; }
.logo-item[data-index="4"] .logo-item-inner { transition-delay: 0.3s; }

/* Logo text heading */
.logo-text-heading {
    font-family: 'Neue Montreal', sans-serif;
    font-size: 18px;
    font-weight: 500;
    text-transform: none;
    letter-spacing: 0.5px;
    color: #ffffff;
    margin: 0 0 10px 0;
}

/* Split box - logo on left, text on right */
.logo-split-container {
    display: flex;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(60px) saturate(180%);
    -webkit-backdrop-filter: blur(60px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 32px;
    box-shadow: 
        0 10px 40px 0 rgba(0, 0, 0, 0.25),
        inset 0 1px 0 0 rgba(255, 255, 255, 0.5);
    overflow: hidden;
}

.logo-split-image {
    flex: 0 0 60%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: none;
}

.logo-split-image img {
    width: 100%;
    max-height: 350px;
    object-fit: contain;
    padding: 40px;
}

.logo-split-text {
    flex: 1;
    padding: 25px 30px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.logo-split-text h3 {
    margin: 0;
}

.logo-split-text p {
    font-family: 'Neue Montreal', sans-serif;
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    font-weight: 300;
}

/* Responsive design for logo branding section */
@media (max-width: 1024px) {
    .logo-branding-section {
        padding: 80px 40px;
    }
    
    .logo-header {
        flex-direction: column;
        gap: 20px;
    }
    
    .auri-name-section {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .auri-name-text {
        max-width: 100%;
    }
    
    .warren-name-columns {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .logo-branding-section {
        padding: 60px 20px;
    }
    
    .logo-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 20px;
    }
    
    .logo-item:nth-child(1),
    .logo-item:nth-child(2),
    .logo-item:nth-child(3),
    .logo-item:nth-child(4) {
        grid-column: 1 / 2;
        grid-row: auto;
    }
    
    .auri-name-image img {
        height: 80px;
    }
}

/* ===================================
   SCREEN SECTIONS (HOME & NAVIGATION)
   =================================== */

.screen-section {
    background-color: var(--black);
    position: relative;
    padding: 30px 60px;
    min-height: 80vh;
    display: flex;
    align-items: center;
}


.screen-container {
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    width: 100%;
}

.screen-text-left,
.screen-text-right {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.screen-title {
    font-family: 'Inter', sans-serif;
    font-size: 48px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--white);
    margin: 0 0 20px 0;
    line-height: 1.2;
}

.screen-description {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
    font-weight: 300;
}

.screen-image-right,
.screen-image-left {
    width: 100%;
    height: 100%;
    min-height: 500px;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
}

.screen-image-placeholder {
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 2px dashed rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.screen-image-placeholder span {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.screen-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    background: transparent;
    border: none;
    outline: none;
    box-shadow: none;
}

.screen-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
    display: block;
}

/* Responsive design for screen sections */
@media (max-width: 1024px) {
    .screen-section {
        padding: 80px 40px;
    }
    
    .screen-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .screen-title {
        font-size: 36px;
    }
    
    .screen-image-right,
    .screen-image-left {
        min-height: 400px;
    }
}

@media (max-width: 768px) {
    .screen-section {
        padding: 60px 20px;
    }
    
    .screen-container {
        gap: 40px;
    }
    
    .screen-title {
        font-size: 28px;
    }
    
    .screen-description {
        font-size: 16px;
    }
    
    .screen-image-right,
    .screen-image-left {
        min-height: 300px;
    }
}

/* Second Parallax Window */
.warren-parallax-window-2 {
    background-image: url('../../images/WARREN/WarrenSketchTwo.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
    padding: 120px 80px;
    min-height: 100vh;
    overflow: hidden;
}

/* Responsive design for parallax window 2 */
@media (max-width: 1024px) {
    .warren-parallax-window-2 {
        padding: 80px 40px;
        background-attachment: scroll;
    }
}

@media (max-width: 768px) {
    .warren-parallax-window-2 {
        padding: 60px 20px;
        background-attachment: scroll;
    }
}

/* ===================================
   DOOR IMAGES SECTION
   =================================== */

.door-images-section {
    background-color: var(--black);
    position: relative;
    padding: 120px 60px;
    overflow: hidden;
}


.door-images-container {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    max-width: 1800px;
    margin: 0 auto;
}

.door-image-item {
    flex: 1;
    max-width: 300px;
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    animation: float 6s ease-in-out infinite;
}

.door-image-item:nth-child(1) { animation-delay: 0s; }
.door-image-item:nth-child(2) { animation-delay: 1.2s; }
.door-image-item:nth-child(3) { animation-delay: 2.4s; }
.door-image-item:nth-child(4) { animation-delay: 3.6s; }
.door-image-item:nth-child(5) { animation-delay: 4.8s; }

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

.door-image-item:hover {
    transform: translateY(-15px) scale(1.05);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    z-index: 10;
}

.door-image {
    width: 100%;
    height: auto;
    display: block;
    transition: filter 0.4s ease, transform 0.4s ease;
    filter: grayscale(20%) brightness(0.9);
}

.door-image-item:hover .door-image {
    filter: grayscale(0%) brightness(1.1);
    transform: scale(1.02);
}

/* Responsive design for door images */
@media (max-width: 1024px) {
    .door-images-section {
        padding: 80px 40px;
    }
    
    .door-images-container {
        gap: 20px;
    }
    
    .door-image-item {
        max-width: 250px;
    }
}

@media (max-width: 768px) {
    .door-images-section {
        padding: 60px 20px;
    }
    
    .door-images-container {
        flex-direction: column;
        gap: 30px;
    }
    
    .door-image-item {
        max-width: 400px;
        width: 100%;
    }
}

/* ===================================
   MATERIALS ACCORDION SECTION
   =================================== */

.materials-accordion-section {
    background-color: var(--black);
    position: relative;
    padding: 100px 60px;
    min-height: 100vh;
}


.materials-accordion-container {
    position: relative;
    z-index: 1;
    max-width: 1600px;
    margin: 0 auto;
}

.materials-section-title {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--white);
    opacity: 0.5;
    margin-bottom: 20px;
}

.materials-section-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.75);
    margin: 0 0 60px 0;
    font-weight: 300;
    max-width: 900px;
}

/* Horizontal Accordion */
.horizontal-accordion {
    display: flex;
    gap: 0;
    height: 600px;
    overflow: hidden;
}

.accordion-tab {
    position: relative;
    height: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: flex 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    flex: 0 0 80px;
    cursor: pointer;
    overflow: hidden;
}

.accordion-tab.active {
    flex: 1;
    cursor: default;
}

.accordion-tab-label {
    position: absolute;
    left: 0;
    top: 0;
    width: 80px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    background: rgba(0, 0, 0, 0.3);
    z-index: 2;
    transition: background 0.3s ease;
}

.accordion-tab:hover .accordion-tab-label {
    background: rgba(0, 0, 0, 0.5);
}

.accordion-tab.active .accordion-tab-label {
    background: rgba(255, 255, 255, 0.1);
}

.tab-number {
    font-family: 'Inter', sans-serif;
    font-size: 32px;
    font-weight: 900;
    color: var(--white);
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    letter-spacing: 2px;
}

.tab-title {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 2px;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    white-space: nowrap;
}

.accordion-tab-content {
    position: absolute;
    left: 80px;
    top: 0;
    right: 0;
    height: 100%;
    opacity: 0;
    pointer-events: none;
    padding: 50px 60px;
    overflow-y: auto;
    transition: opacity 0.4s ease 0.2s;
}

.accordion-tab.active .accordion-tab-content {
    opacity: 1;
    pointer-events: auto;
}

/* Tab Content Layout */
.tab-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    height: 100%;
}

.content-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.content-heading {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: var(--white);
    margin: 0;
    letter-spacing: 0.5px;
}

/* Material detail headings */
.material-main-heading {
    font-family: 'Inter', sans-serif;
    font-size: 48px;
    font-weight: 300;
    color: var(--white);
    margin: 0 0 30px 0;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.material-subheading {
    font-family: 'Inter', sans-serif;
    font-size: 28px;
    font-weight: 400;
    color: var(--white);
    margin: 0 0 20px 0;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.material-section-title {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--white);
    margin: 30px 0 15px 0;
    letter-spacing: 0.5px;
}

.material-section-title.material-compact {
    margin: 15px 0 8px 0;
}

.content-text {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
    font-weight: 300;
}

.content-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.content-list li {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 300;
    padding-left: 25px;
    position: relative;
}

.content-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: rgba(255, 255, 255, 0.6);
    font-size: 20px;
}

.content-image-placeholder {
    width: 100%;
    height: 200px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px dashed rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
}

.content-image-placeholder span {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.content-images-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    width: 100%;
}

.content-image {
    width: 100%;
    height: auto;
    display: block;
}

/* Responsive design for accordion */
@media (max-width: 1024px) {
    .materials-accordion-section {
        padding: 80px 40px;
    }
    
    .horizontal-accordion {
        height: auto;
        min-height: 500px;
    }
    
    .tab-content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .materials-accordion-section {
        padding: 60px 20px;
    }
    
    .horizontal-accordion {
        flex-direction: column;
        height: auto;
    }
    
    .accordion-tab {
        flex: 0 0 60px;
        width: 100%;
    }
    
    .accordion-tab.active {
        flex: 0 0 auto;
    }
    
    .accordion-tab-label {
        width: 100%;
        height: 60px;
        flex-direction: row;
        justify-content: flex-start;
        padding-left: 20px;
    }
    
    .tab-number,
    .tab-title {
        writing-mode: horizontal-tb;
        transform: none;
    }
    
    .accordion-tab-content {
        position: relative;
        left: 0;
        top: 0;
        padding: 30px 20px;
    }
}

/* ===================================
   EXPERIMENT DETAIL SECTION
   =================================== */

.experiment-detail-section {
    background-color: var(--light-gray);
    position: relative;
    min-height: 100vh;
    padding: 100px 0;
    overflow: hidden;
}

.experiment-detail-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 60px;
    display: grid;
    grid-template-columns: 500px 1fr;
    gap: 80px;
    align-items: flex-start;
}

.sticky-text-column {
    position: sticky;
    top: 150px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.experiment-title {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--black);
    opacity: 0.5;
    margin: 0 0 40px 0;
}

.experiment-text {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    line-height: 1.7;
    color: var(--black);
    margin: 0;
    font-weight: 300;
}

.experiment-text strong {
    font-weight: 600;
}

/* Key word highlighting effects */
.highlight-text {
    position: relative;
    transition: var(--transition);
}

.key-word {
    position: relative;
    display: inline;
    transition: all 0.3s ease;
    padding: 2px 4px;
    border-radius: 3px;
    background: transparent;
}

.highlight-text:hover .key-word {
    background: var(--black);
    color: var(--white);
    font-weight: 500;
    transform: scale(1.02);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Staggered animation for multiple key words */
.highlight-text:hover .key-word:nth-child(1) { transition-delay: 0s; }
.highlight-text:hover .key-word:nth-child(2) { transition-delay: 0.05s; }
.highlight-text:hover .key-word:nth-child(3) { transition-delay: 0.1s; }
.highlight-text:hover .key-word:nth-child(4) { transition-delay: 0.15s; }
.highlight-text:hover .key-word:nth-child(5) { transition-delay: 0.2s; }
.highlight-text:hover .key-word:nth-child(6) { transition-delay: 0.25s; }
.highlight-text:hover .key-word:nth-child(7) { transition-delay: 0.3s; }
.highlight-text:hover .key-word:nth-child(8) { transition-delay: 0.35s; }

/* Individual key word hover */
.key-word:hover {
    background: var(--black) !important;
    color: var(--white) !important;
    font-weight: 500 !important;
    transform: scale(1.05) !important;
    cursor: none;
}

.scrolling-images-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    padding-bottom: 100px;
}

.images-column {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* Parallax effect - column 1 scrolls faster */
.column-1 {
    transform: translateY(0);
    transition: transform 0.1s linear;
}

.column-2 {
    transform: translateY(80px);
    transition: transform 0.1s linear;
}

.experiment-image-placeholder {
    width: 100%;
    height: 500px;
    background: var(--gray);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 500;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.experiment-image {
    width: 100%;
    height: auto;
    display: block;
}

/* Responsive design */
@media (max-width: 1024px) {
    .experiment-detail-container {
        grid-template-columns: 1fr;
        gap: 60px;
        padding: 0 40px;
    }
    
    .sticky-text-column {
        position: relative;
        top: 0;
    }
    
    .scrolling-images-column {
        padding-bottom: 0;
    }
}

@media (max-width: 768px) {
    .experiment-detail-section {
        min-height: auto;
        padding: 60px 0;
    }
    
    .experiment-detail-container {
        padding: 0 20px;
    }
    
    .experiment-title {
        font-size: 32px;
    }
    
    .scrolling-images-column {
        grid-template-columns: 1fr;
    }
    
    .column-2 {
        transform: translateY(0);
    }
    
    .experiment-image-placeholder {
        height: 400px;
    }
}

/* ===================================
   SHOWREEL VIDEO SECTION
   =================================== */

.showreel-section {
    background: var(--light-gray);
    padding: 80px;
}

.showreel-container {
    max-width: 1200px;
    margin: 0 auto;
}

.showreel-title {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--black);
    opacity: 0.5;
    margin: 0 0 40px 0;
}

.showreel-video-wrapper {
    width: 100%;
}

/* Responsive */
@media (max-width: 768px) {
    .showreel-section {
        padding: 60px 40px;
    }
}
