p:last-child {
                        color: var(--black-color);
                    }
/* --- Staggered Image Container --- */
.staggered-image-grid {
    display: flex;
    gap: 25px; 
    align-items: flex-start;
    padding: 20px 0;
}

.stagger-wrapper {
    flex: 1;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    /* Creates the Vertical Rectangle Look */
    aspect-ratio: 2 / 3; 
    position: relative;
}

/* --- CSS Parallax Effect (Scroll-Driven) --- */
@supports (animation-timeline: view()) {
    .parallax-up {
        animation: moveUp linear both;
        animation-timeline: view();
        animation-range: entry 0% exit 100%;
    }
    .parallax-down {
        animation: moveDown linear both;
        animation-timeline: view();
        animation-range: entry 0% exit 100%;
    }
}

@keyframes moveUp {
    from { transform: translateY(30px); }
    to { transform: translateY(-30px); }
}

@keyframes moveDown {
    from { transform: translateY(-30px); }
    to { transform: translateY(30px); }
}

/* Initial Offsets to match Canva Stagger */
.stagger-wrapper.up { margin-top: 0; }
.stagger-wrapper.down { margin-top: 60px; }

/* --- SEO Zoom Animation --- */
.about-zoom-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s ease-in-out;
}

.stagger-wrapper:hover .about-zoom-img {
    transform: scale(1.15);
}

/* --- Typography & Buttons --- */
.canva-about-title {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 700;
    line-height: 1.1;
    color: #000000;
}

.btn-canva-dark {
    background-color: #331121;
    color: #ffffff !important;
    padding: 11px 21px;
    display: inline-flex;
    align-items: center;
    font-family: "Cormorant Garamond", serif;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn-canva-dark:hover {
    transform: scale(1.05) translateY(-2px);
    background-color: #4A0C2A;
    box-shadow: 0 10px 20px rgba(51, 17, 33, 0.2);
}

/* --- Responsive Adjustments --- */
@media (max-width: 991px) {
    .staggered-image-grid {
        max-width: 80%;
        margin: 0 auto 40px;
    }
}

@media (max-width: 576px) {
    .staggered-image-grid {
        gap: 15px;
    }
    .stagger-wrapper.down {
        margin-top: 30px;
    }
}
