/* ============================================
   About Intro ("Hi, I'm Molly")
   ============================================ */
.about-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1300px;
    margin: 0 auto;
    padding: 5rem 3rem 6rem;
}

.about-intro-content {
    text-align: left;
}

.about-intro-title {
    text-align: left;
    margin-bottom: 1rem;
}

.about-intro-subtitle {
    font-family: 'Lato', sans-serif;
    font-weight: 300;
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--earth-brand);
    margin: 0 0 1.5rem;
}

.about-intro-content p {
    font-size: 1.05rem;
    line-height: 1.9;
    font-weight: 300;
    opacity: 0.85;
    margin-bottom: 2rem;
}

.about-intro-image {
    aspect-ratio: 4/5;
    overflow: hidden;
    border-radius: 4px;
    box-shadow: 0 20px 45px rgba(35, 31, 32, 0.2);
}

    .about-intro-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

/* ============================================
   About Deeper ("Let's Dive Deeper") - mirrored: collage left, text right
   ============================================ */
.about-deeper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1300px;
    margin: 0 auto;
    padding: 4rem 3rem 6rem;
}

.about-deeper-collage {
    position: relative;
    aspect-ratio: 1/1;
}

.about-deeper-tile {
    position: absolute;
    overflow: hidden;
    border-radius: 4px;
    box-shadow: 0 16px 36px rgba(35, 31, 32, 0.22);
}

    .about-deeper-tile img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

.about-deeper-tile-1 { left: 0;   top: 8%;  width: 42%; height: 55%; }
.about-deeper-tile-2 { left: 46%; top: 0;   width: 54%; height: 42%; }
.about-deeper-tile-3 { left: 46%; top: 46%; width: 36%; height: 40%; }
.about-deeper-tile-4 { left: 6%;  top: 66%; width: 34%; height: 32%; }

.about-deeper-content {
    text-align: left;
}

.about-deeper-title {
    text-align: left;
    margin-bottom: 1.5rem;
}

.about-deeper-content p {
    font-size: 1.05rem;
    line-height: 1.9;
    font-weight: 300;
    opacity: 0.85;
    margin-bottom: 2rem;
}

/* ============================================
   Quote band (dark)
   ============================================ */
.about-quote {
    background: var(--earth-darkest);
    color: var(--earth-lightest);
    text-align: center;
    padding: 5rem 3rem;
}

    .about-quote p {
        max-width: 800px;
        margin: 0 auto;
        font-size: clamp(1.4rem, 3vw, 2rem);
        line-height: 1.6;
    }

/* ============================================
   What Inspires Me - staggered moodboard
   ============================================ */
.inspires {
    max-width: 1300px;
    margin: 0 auto;
    padding: 6rem 3rem;
    text-align: center;
}

.inspires-title {
    margin-bottom: 4rem;
}

.inspires-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
    align-items: start;
}

.inspires-item {
    text-align: center;
}

.inspires-item-image {
    aspect-ratio: 3/4;
    overflow: hidden;
    border-radius: 4px;
    margin-bottom: 1rem;
}

    .inspires-item-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    .inspires-item p {
        font-family: 'Arapey', serif;
        font-style: italic;
        font-size: 1rem;
        color: var(--earth-brand);
        margin: 0;
    }

/* True alternating zigzag: odd items sit higher (baseline), even items sit lower */
.inspires-item-1, .inspires-item-3, .inspires-item-5 { margin-top: 0; }
.inspires-item-2, .inspires-item-4 { margin-top: 4rem; }

/* ============================================
   Where to Next (gold-taupe band)
   ============================================ */
.next-steps {
    background: var(--earth-brand);
    color: var(--earth-lightest);
    padding: 6rem 3rem;
}

.next-steps-title {
    color: var(--earth-lightest);
    margin-bottom: 3rem;
}

.next-steps-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1300px;
    margin: 0 auto;
    align-items: center;
}

.next-steps-image {
    aspect-ratio: 4/5;
    overflow: hidden;
    border-radius: 4px;
}

    .next-steps-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

.next-steps-list {
    display: flex;
    flex-direction: column;
}

.next-step {
    padding: 1.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 246, 0.3);
    text-align: left;
}

.next-step-last {
    border-bottom: none;
}

.next-step-heading {
    display: flex;
    align-items: baseline;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.next-step-number {
    font-family: 'Lato', sans-serif;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    opacity: 0.7;
}

.next-step-link {
    font-family: 'Literata', serif;
    font-size: 1.4rem;
    font-weight: 300;
    color: var(--earth-lightest);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

    .next-step-link:hover {
        opacity: 0.7;
    }

.next-step p {
    font-size: 0.95rem;
    line-height: 1.7;
    font-weight: 300;
    opacity: 0.85;
    margin: 0;
}

/* ============================================
   Responsive - Tablet
   ============================================ */
@media (max-width: 1024px) {
    .section-title {
        font-size: 2.5rem;
    }

    .about-intro,
    .about-deeper,
    .next-steps-body {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }

        .about-intro-content,
        .about-deeper-content {
            text-align: center;
        }

            .about-intro-title,
            .about-deeper-title {
                text-align: center;
            }

    .about-deeper-collage {
        max-width: 500px;
        margin: 0 auto;
    }

    .next-step {
        text-align: center;
    }

        .next-step-heading {
            justify-content: center;
        }

    .inspires-grid {
        grid-template-columns: repeat(3, 1fr);
        row-gap: 3rem;
    }

    .inspires-item-1, .inspires-item-2, .inspires-item-3, .inspires-item-4, .inspires-item-5 {
        margin-top: 0;
    }
}

/* ============================================
   Responsive - Mobile
   ============================================ */
@media (max-width: 768px) {
    .section-title {
        font-size: 1.8rem;
    }

    .about-intro,
    .about-deeper,
    .about-quote,
    .inspires,
    .next-steps {
        padding: 3rem 1.5rem;
    }

    .inspires-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
