/* ============================================
   SECTION: Get In Touch
   Closing CTA. Left: heading + lede + 3 pink-check
   features + Get In Touch button. Right: child photo.
   A pink decorative swirl bleeds in from the right.
   ============================================ */

.get-in-touch {
    position: relative;
    overflow: hidden;
    background: var(--color-white);
    /* Same side inset as other homepage sections — was missing above
       768px, so stacked tablet layouts ran flush to the viewport edge. */
    padding: 100px var(--section-side-padding);
}

/* The decorative pink swirl is baked into the photo asset
   (kid-showing-muscules2.png) — no separate swirl layer. */

.get-in-touch__inner {
    position: relative;
    z-index: 1;
    max-width: var(--container-max);
    margin-inline: auto;
    display: grid;
    grid-template-columns: 1fr 632px;
    gap: 88px;
    align-items: start;
}

/* ----- Left column: header + features + CTA ----- */
.get-in-touch__content {
    display: flex;
    flex-direction: column;
    gap: 48px;
    padding-top: 69px;          /* design: heading at top:169 vs section padding 100 → 69 offset */
    max-width: 639px;
}

.get-in-touch__header {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.get-in-touch__heading {
    font-family: var(--font-display);
    font-size: 56px;
    font-weight: var(--font-weight-medium);
    line-height: 58px;
    letter-spacing: -1.68px;
    color: var(--color-text-heading);
    margin: 0;
}

.get-in-touch__heading .accent-script {
    color: var(--color-primary);
    font-weight: 400;
    letter-spacing: -0.03em;
}

.get-in-touch__lede {
    font-size: 16px;
    line-height: 26px;
    color: var(--color-text-body);
    margin: 0;
    max-width: 586px;
}

/* ----- Features list (3 pink checks) ----- */
.get-in-touch__features {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.get-in-touch__feature {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 16px;
    font-weight: var(--font-weight-medium);
    line-height: 20px;
    color: var(--color-text-heading);
}

.get-in-touch__feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}

.get-in-touch__feature-icon img {
    width: 100%;
    height: 100%;
    display: block;
}

/* ----- CTA button ----- */
.get-in-touch__cta {
    align-self: flex-start;
}

/* ----- Right column: photo ----- */
.get-in-touch__photo {
    width: 100%;
    max-width: 632px;
    height: auto;
    display: block;
}

/* ----- Responsive ----- */
@media (max-width: 1024px) {
    .get-in-touch__inner {
        grid-template-columns: 1fr;
        gap: 48px;
        justify-items: center;
        text-align: left;
    }
    .get-in-touch__content {
        padding-top: 0;
        max-width: none;
        width: 100%;
    }
    .get-in-touch__photo {
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .get-in-touch {
        padding: 60px var(--section-side-padding);
    }
    .get-in-touch__heading {
        font-size: 40px;
        line-height: 46px;
        letter-spacing: -1.2px;
    }
}

/* ----- Phones -----
   Heading drops a step so "Ready when you are" stays on one line instead of
   orphaning "are", the CTA fills the column, and the photo runs edge to edge. */
@media (max-width: 600px) {
    .get-in-touch__heading {
        font-size: 32px;
        line-height: 38px;
        letter-spacing: -0.96px;
    }

    .get-in-touch__lede {
        font-size: 14px;
        line-height: 22px;
    }

    .get-in-touch__content {
        gap: 32px;
    }

    .get-in-touch__features {
        gap: 8px;
    }

    .get-in-touch__feature {
        gap: 12px;
        font-size: 15px;
    }

    .get-in-touch__feature-icon {
        width: 34px;
        height: 34px;
    }

    .get-in-touch__cta {
        width: 100%;
    }

    /* Full-bleed photo: negate the section's side padding */
    .get-in-touch__photo {
        width: calc(100% + 2 * var(--section-side-padding));
        max-width: none;
        margin-inline: calc(-1 * var(--section-side-padding));
    }
}
