/* ABOUT – visuals & journey */

.section-about-visuals {
    padding: 0 0 3.5rem;
}

.about-visual-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
    gap: 2rem;
    align-items: stretch;
}

.about-journey {
    border-radius: 22px;
    padding: 1.4rem 1.5rem;
    background: linear-gradient(135deg,
            rgba(240, 253, 244, 0.98),
            rgba(224, 242, 254, 0.98));
    border: 1px solid rgba(34, 197, 94, 0.45);
    box-shadow: 0 16px 38px rgba(15, 23, 42, 0.16);
    font-size: 0.86rem;
}

.about-journey-title {
    margin: 0 0 0.6rem;
    font-size: 0.96rem;
    font-weight: 600;
    color: var(--text-main);
}

.about-journey-steps {
    list-style: none;
    margin: 0.2rem 0 0;
    padding: 0;
    display: grid;
    gap: 0.55rem;
}

.about-journey-step {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 0.6rem;
    align-items: flex-start;
}

.about-journey-badge {
    width: 26px;
    height: 26px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at 0 0, #22c55e, #0ea5e9);
    color: #ecfdf5;
    font-size: 0.78rem;
    font-weight: 600;
    box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.18);
    margin-top: 0.1rem;
}

.about-journey-copy strong {
    color: var(--text-main);
}

.about-journey-footnote {
    margin-top: 0.9rem;
    padding-top: 0.7rem;
    border-top: 1px dashed rgba(34, 197, 94, 0.6);
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* gallery / collage */

.about-gallery {
    display: grid;
    grid-template-rows: 1.1fr 0.5fr;
    gap: 0.6rem;
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid rgba(209, 213, 219, 0.95);
    box-shadow: 0 18px 42px rgba(15, 23, 42, 0.24);
    background: #0f172a;
}

.about-gallery-top {
    position: relative;
    overflow: hidden;
}

.about-gallery-top img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.05);
    transition: transform 260ms ease-out;
}

.about-gallery-bottom {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.6rem;
    padding: 0.6rem;
    background: radial-gradient(circle at 0 0, rgba(34, 197, 94, 0.25), transparent 70%);
}

.about-gallery-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(148, 163, 184, 0.8);
    background: #dde2fb;
    font-size: 0.8rem;
    color: #3b3b3d;
    padding: 0.55rem 0.6rem;
}

.about-gallery-label {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    opacity: 0.8;
    margin-bottom: 0.12rem;
}

.about-gallery strong {
    color: #0a0a0b;
}

.about-gallery-top:hover img {
    transform: scale(1.08);
}

/* about page – final CTA overrides to sit closer */
.section-about-final-cta {
    padding-top: 0;
}

/* responsive */
@media (max-width: 960px) {
    .about-visual-layout {
        grid-template-columns: minmax(0, 1fr);
    }

    .about-gallery {
        max-width: 480px;
        margin: 0 auto;
    }
}