/* ========== ABOUT HERO UPDATES ========== */
.about-hero {
    position: relative;
    height: 50vh;
    width: 100%;
    overflow: hidden; /* Clips video to container */
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.about-hero .hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: 0;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.about-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Overlay to keep "Our Story" legible */
    z-index: 1;
}

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

.about-hero h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    text-transform: uppercase;
    letter-spacing: 4px;
    font-weight: 700;
}

/* ========== NARRATIVE SECTION ========== */
.narrative-section {
    padding: 8rem 2rem;
    background-color: #fff;
}

.narrative-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.narrative-text h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.narrative-text p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: #444;
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.narrative-image img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.narrative-image img, 
.value-image img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    border-radius: 4px;
    
    /* THE SHADOW SYNTAX */
    /* x-offset: 0, y-offset: 20px, blur: 40px, color: 15% opacity black */
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.narrative-image img:hover, 
.value-image img:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25);
}

/* ========== NARRATIVE UPDATES ========== */
.sub-heading {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    color: #888;
    display: block;
    margin-bottom: 0.5rem;
}

/* ========== VALUES SECTION ========== */
.values-section {
    padding: 6rem 2rem;
    background-color: #fafafa; /* Subtle contrast from the white intro */
}

.value-row {
    display: flex;
    align-items: center;
    gap: 6rem;
    margin-bottom: 8rem;
}

.value-row.reverse {
    flex-direction: row-reverse;
}

.value-image, .value-text {
    flex: 1;
}

.value-image img {
    width: 100%;
    aspect-ratio: 16/9; /* Matches your Still001 ratio */
    object-fit: cover;
    border-radius: 4px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
}

.value-text h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.value-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    font-weight: 300;
}

/* ========== FILMS CTA (Same as About Page) ========== */
.about-cta {
    padding: 10rem 2rem;
    text-align: center;
    background-color: #1a1a1a; /* Dark background to contrast the white film list */
    color: #fff;
}

.about-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.about-cta p {
    margin-bottom: 2.5rem;
    color: #aaa;
    font-size: 1.2rem;
    font-weight: 300;
}

/* Reusing your Primary Button Style */
.btn-primary {
    display: inline-block;
    padding: 1.1rem 3.5rem;
    background-color: #ffffff;
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.4s ease;
    border: 1px solid #ffffff;
}

.btn-primary:hover {
    background-color: transparent;
    color: #ffffff;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 992px) {
    .value-row, .value-row.reverse {
        flex-direction: column;
        gap: 2rem;
        margin-bottom: 5rem;
        text-align: center;
    }
}

/* ========== RESPONSIVE ========== */
@media (max-width: 992px) {
    .narrative-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
}