.hero-video-container { position: relative; width: 100%; height: 75vh; background-color: var(--bg); overflow: hidden; }
.hero-media { width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity 2s ease; }

 

.video-pronto { opacity: 1; }

.hero-content { position: absolute; bottom: 8%; left: 5%; text-align: center; max-width: 80%; z-index: 2; }
.hero-content h1 { font-family: var(--alice); font-size: clamp(1.8rem, 5vw, 3.2rem); line-height: 1.1; color: white; text-shadow: 0 4px 15px rgba(0,0,0,0.5); margin: 0; }

.mission-statement { text-align: center; max-width: 1000px; margin: 60px auto; font-family: var(--nunito); font-weight: 200; font-style: italic; font-size: 1.5rem; line-height: 1.7; letter-spacing: 0.025em; opacity: 0.8; padding: 0 20px; }
.section-intro { text-align: center; padding: 30px 0 20px; }
.divider { width: 60px; height: 3px; background: var(--marine); margin: 30px auto 0; opacity: 0.3; }

.artbook-container { padding: 40px 10% 40px; max-width: 1200px; margin: 0 auto; }
.art-project { display: flex; align-items: center; margin-bottom: 110px; position: relative; }
.art-project.reverse { flex-direction: row-reverse; }

 
.art-project-link { display: none; }

 
.art-image-link { display: block; width: 100%; height: 100%; }

 
.art-image { flex: 0 0 60%; height: 400px; overflow: hidden; }
.art-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: scale(1);
    transform-origin: center center;
    transition: opacity 0.4s ease, transform 0.4s ease;
    will-change: transform;
    backface-visibility: hidden;    
}
.art-project.reverse .art-image img {
    object-position: right;
}
.art-project--marine .art-image,
.art-project--dark .art-image {
    transition: box-shadow 0.3s ease-in-out;
}

.art-project--marine .art-image { box-shadow: 15px 15px 0 rgba(74, 124, 158, 0.12); }
.art-project--dark .art-image  { box-shadow: -15px 15px 0 rgba(42, 42, 42, 0.10); }

 
.art-image-link:hover img { transform: scale(1.03); }

.art-project--marine .art-image:hover { box-shadow: 15px 15px 0 rgba(74, 124, 158, 0.3); }
.art-project--dark .art-image:hover { box-shadow: -15px 15px 0 rgba(42, 42, 42, 0.3); }

 
a.art-text {
    flex: 0 0 45%;
    background: white;
    padding: 40px;
    margin-left: -10%;
    z-index: 2;
    border: 1px solid #eee;
    text-decoration: none;
    color: inherit;
    display: block;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    will-change: transform;
}

.art-project.reverse a.art-text {
    margin-left: 0;
    margin-right: -10%;
}

.art-cat {
    font-family: var(--nunito);
    font-weight: 400;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--marine);
    opacity: 0.6;
}

a.art-text h2 {
    font-family: var(--alice);
    font-size: 2.2rem;
    line-height: 1.2;
}

a.art-text p {
    font-family: var(--nunito);
    font-weight: 400;
    font-size: 1.05rem;
    line-height: 1.6;
    opacity: 0.85;
}

.art-link {
    display: inline-flex;
    align-items: center;
    color: var(--text);
    font-family: var(--alice);
    font-size: 1.1rem;
    gap: 6px;
}

.art-link-arrow {
    display: inline-block;
    transition: transform 0.3s ease;
}

 
a.art-text:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.06);
}

a.art-text:hover .art-link-arrow {
    transform: translateX(6px);
}

.lab-section { padding: 50px 10% 70px; background-color: white; border-top: 1px solid #eee; background-image: linear-gradient( to bottom, transparent 0%, #f8fcff 100% ); }
.lab-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; margin-top: 60px; }

.blog-see-all-wrapper { text-align: center; margin-top: 70px; }
.blog-see-all-link { font-family: var(--alice); font-size: 1.02rem; color: var(--marine); text-decoration: none; letter-spacing: 0.05em; opacity: 0.85; position: relative; display: inline-block; transition: opacity 0.4s ease; padding: 12px 4px; }

 
.blog-see-all-link::after { content: ''; position: absolute; bottom: 12px; left: 0; right: 0; margin: 0 auto; width: 0; height: 1px; background-color: var(--marine); transition: width 0.4s cubic-bezier(0.645, 0.045, 0.355, 1); }
.blog-see-all-link:hover::after { width: 100%; }
.blog-see-all-link:hover { opacity: 1; }

@media (max-width: 900px) {

     
    .hero-video-container { height: 55vh; }
    .hero-content { width: 90%; left: 5%; bottom: 10%; text-align: center; }
    .hero-content h1 { font-size: 2.2rem; text-align: left; }

     
    .mission-statement { font-size: 1.2rem; padding: 0 15px; margin: 50px auto; }
    .divider { margin: 15px auto 0; width: 40px; }
    .section-intro { padding: 20px 0 10px; }

     
    .artbook-container { padding: 30px 5% 30px; }

    .art-project,
    .art-project.reverse {
        display: block;
        margin-bottom: 60px;
        position: relative;
        border-radius: 4px;
        overflow: hidden;
    }

    .art-project .art-image {
    box-shadow: none;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    flex: none;
}
    .art-project .art-image:hover {
    box-shadow: none;
    }
    .art-project a.art-text,
    .art-project.reverse a.art-text {
        margin-left: 0;
        margin-right: 0;
    }
    a.art-text {
        width: 100%;
        flex: none;
        padding: 30px 20px;
        border: 1px solid #eee;
        border-top: none;
        will-change: auto;
        transition: none;
    }
    a.art-text h2 { font-size: 1.8rem; }
    a.art-text:hover { transform: none; box-shadow: none; }

    .art-project-link {
        display: block;
        position: absolute;
        inset: 0;
        z-index: 3;
        background: transparent;
        transition: background 0.25s ease;
    }

    .art-project-link:active {
        background: rgba(74, 124, 158, 0.10);
    }

     
    .lab-section { padding: 40px 5% 50px; }
    .lab-grid { grid-template-columns: 1fr; gap: 20px; margin-top: 40px; }

     
    .blog-see-all-link::after { display: none; }
    .blog-see-all-link:active {
        opacity: 0.5;
        transition: opacity 0.1s ease;
    }
}

@-moz-document url-prefix() {
     
    .art-image-link:hover img {
        transform: scale(1) !important;
        transition: none !important;
    }
     
    .art-image-link {
        transition: none !important;
    }
}