/* Services — split hero (blue left / lime right, hand illustration) */

.sv-page {
    width: 100%;
    max-width: none;
    /* Contain full-bleed sections and hero nudges so the page never gains a horizontal scrollbar */
    overflow-x: hidden;
}

.sv-hero {
    background-color: #ecf9ff;
}

.sv-hero__grid {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
    /* max-width: 1280px; */
    margin: 0 auto;
    min-height: clamp(18rem, 42vw, 30rem);
    align-items: center;
}

.sv-hero__copy {
    box-sizing: border-box;
    order: 1;
    padding: clamp(2rem, 5vw, 3.5rem) clamp(1.15rem, 4vw, 2.75rem);
    background-color: #ecf9ff;
}

.sv-hero__eyebrow {
    display: flex;
    align-items: stretch;
    gap: 0.65rem;
    margin: 0 0 clamp(0.85rem, 2vw, 1.15rem);
}

.sv-hero__bar {
    flex: 0 0 3px;
    width: 3px;
    min-height: 2.75rem;
    align-self: stretch;
    background-color: #3d7ec4;
    border-radius: 2px;
}

.sv-hero__eyebrow-text {
    flex: 1;
    align-self: center;
    font-family: "Poppins", system-ui, sans-serif;
    font-size: clamp(0.65rem, 1.1vw, 0.78rem);
    font-weight: 600;
    letter-spacing: 0.1em;
    line-height: 1.45;
    color: #2b6cb0;
    text-transform: uppercase;
}

.sv-hero__title {
    margin: 0 0 clamp(1rem, 2.2vw, 1.35rem);
    max-width: 38rem;
    font-family: "Playfair Display", "DM Serif Text", Georgia, serif;
    font-weight: 700;
    font-size: clamp(1.65rem, 3.6vw, 2.65rem);
    line-height: 1.12;
    letter-spacing: -0.02em;
    color: #141414;
}

.sv-hero__body {
    margin: 0;
    max-width: 38rem;
    font-family: "Poppins", system-ui, sans-serif;
    font-size: clamp(0.9375rem, 1.05vw, 1.0625rem);
    font-weight: 400;
    line-height: 1.78;
    color: #2a3038;
    text-align: justify;
    text-wrap: pretty;
}

.sv-hero__visual {
    order: 2;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(1.25rem, 4vw, 2.5rem) clamp(1.15rem, 4vw, 2rem);
    background-color: #f7ffe0;
}

.sv-hero__figure {
    margin: 0;
    width: 100%;
    max-width: min(28rem, 94vw);
    display: flex;
    align-items: center;
    justify-content: center;
}

.sv-hero__figure img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
}

@media (min-width: 900px) {
    .sv-hero__grid {
        /* Half screen each: text | image */
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
        align-items: stretch;
    }

    .sv-hero__copy {
        order: unset;
        display: flex;
        flex-direction: column;
        justify-content: center;
        position: relative;
        z-index: 2;
        padding-right: clamp(1.5rem, 4vw, 2.75rem);
    }

    .sv-hero__visual {
        order: unset;
        position: relative;
        z-index: 1;
        min-height: clamp(20rem, 36vw, 30rem);
        margin-left: clamp(-1rem, -2vw, -1.5rem);
        padding: clamp(1.25rem, 3vw, 2.5rem) clamp(1rem, 3vw, 2rem) clamp(1.25rem, 3vw, 2.5rem)
            clamp(0.75rem, 2vw, 1.5rem);
    }

    /* Image uses the full width of the right (lime) half */
    .sv-hero__figure {
        flex: 1;
        align-self: stretch;
        max-width: none;
        width: 100%;
        min-height: 0;
    }

    .sv-hero__figure img {
        width: 100%;
        max-width: 100%;
        height: auto;
        max-height: clamp(20rem, 58vh, 38rem);
        object-fit: contain;
        object-position: center center;
    }
}

/* —— We help you in the following fields —— */

.sv-fields {
    background-color: #ffffff;
}

.sv-fields__intro {
    box-sizing: border-box;
    max-width: 48rem;
    margin: 0 auto;
    padding: clamp(2rem, 5vw, 3.25rem) clamp(1.15rem, 4vw, 2.5rem) clamp(1.5rem, 3vw, 2rem);
    text-align: center;
}

.sv-fields__logo {
    display: block;
    width: auto;
    height: clamp(4.5rem, 14vw, 7.5rem);
    max-width: min(100%, 12rem);
    margin: 0 auto clamp(1rem, 2.5vw, 1.35rem);
    object-fit: contain;
}

.sv-fields__badge {
    display: inline-block;
    margin: 0 auto clamp(0.85rem, 2vw, 1.1rem);
    padding: 0.45rem 1.15rem;
    font-family: "Poppins", system-ui, sans-serif;
    font-size: clamp(0.65rem, 1.05vw, 0.72rem);
    font-weight: 600;
    letter-spacing: 0.08em;
    line-height: 1.35;
    color: #1a3a52;
    text-transform: uppercase;
    background-color: #fdeef3;
    border-radius: 999px;
}

.sv-fields__title {
    margin: 0;
    font-family: "Playfair Display", "DM Serif Text", Georgia, serif;
    font-weight: 700;
    font-size: clamp(1.45rem, 3.2vw, 2.25rem);
    line-height: 1.18;
    letter-spacing: -0.02em;
    color: #111418;
}

.sv-fields__grid {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    align-items: stretch;
    gap: 0;
}

.sv-fields__col {
    box-sizing: border-box;
    padding: clamp(1.35rem, 3.5vw, 2.5rem) clamp(1.15rem, 4vw, 2.25rem)
        clamp(2rem, 4.5vw, 3rem);
    display: flex;
    flex-direction: column;
    gap: clamp(1rem, 2.2vw, 1.35rem);
}

.sv-fields__col--blue {
    /* background-color: #ecf9ff; */
    order: 1;
}

.sv-fields__col--lime {
    /* background-color: #f7ffe0; */
    order: 2;
}

.sv-fields__card {
    box-sizing: border-box;
    margin: 0;
    padding: clamp(1.35rem, 3vw, 1.85rem) clamp(1.15rem, 2.8vw, 1.65rem);
    background-color: #ffffff;
    border-radius: clamp(14px, 1.6vw, 20px);
    box-shadow:
        0 1px 3px rgba(20, 35, 45, 0.06),
        0 14px 36px rgba(20, 35, 45, 0.08);
}

.sv-fields__card--tall {
    flex: 1;
}

.sv-fields__card-row {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: clamp(0.85rem, 2vw, 1.25rem);
}

.sv-fields__icon {
    flex: 0 0 auto;
    width: clamp(3.5rem, 10vw, 5.25rem);
}

.sv-fields__icon img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
}

.sv-fields__text {
    flex: 1;
    min-width: 0;
}

.sv-fields__para {
    margin: 0;
    font-family: "Poppins", system-ui, sans-serif;
    font-size: clamp(0.875rem, 0.98vw, 1rem);
    font-weight: 400;
    line-height: 1.75;
    color: #3a4048;
    text-align: left;
}

.sv-fields__para strong {
    font-weight: 600;
    color: #1f242c;
}

@media (min-width: 900px) {
    .sv-fields__grid {
        grid-template-columns: minmax(0, 0.38fr) minmax(0, 0.62fr);
    }

    .sv-fields__col--blue,
    .sv-fields__col--lime {
        order: unset;
    }

    .sv-fields__col--lime {
        justify-content: flex-start;
    }

    .sv-fields__card--tall {
        min-height: 100%;
    }

    .sv-fields__card--tall .sv-fields__card-row {
        min-height: min(18rem, 42vh);
    }
}

@media (max-width: 640px) {
    .sv-fields__card-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .sv-fields__icon {
        width: clamp(4rem, 28vw, 5.5rem);
    }
}

/* —— Awareness campaigns & education —— */

.sv-awareness {
    position: relative;
    box-sizing: border-box;
    width: 100%;
    max-width: none;
    margin-left: 0;
    margin-right: 0;
    overflow: hidden;
    /* Full-bleed split: join at 65% — text block is centred on this line (desktop) */
    background: linear-gradient(to right, #f1fae1 0%, #f1fae1 65%, #ffe6ef 65%, #ffe6ef 100%);
}

/* Soft pink accents at the far edges (low opacity) */
.sv-awareness::before,
.sv-awareness::after {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: min(28vw, 18rem);
    height: min(70%, 28rem);
    border-radius: 58% 42% 50% 50% / 50% 48% 52% 48%;
    background: radial-gradient(
        ellipse 70% 65% at 50% 50%,
        rgba(255, 190, 205, 0.22) 0%,
        transparent 70%
    );
    pointer-events: none;
    z-index: 0;
}

.sv-awareness::before {
    left: -4%;
}

.sv-awareness::after {
    right: -4%;
}

.sv-awareness__grid {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    align-items: stretch;
    box-sizing: border-box;
}

.sv-awareness__visual {
    position: relative;
    z-index: 1;
    box-sizing: border-box;
    padding: clamp(1.75rem, 4.5vw, 3.25rem) clamp(1.15rem, 4vw, 2.5rem);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: min(52vw, 22rem);
}

.sv-awareness__blob {
    position: absolute;
    width: min(78%, 26rem);
    height: min(88%, 32rem);
    left: 50%;
    top: 52%;
    transform: translate(-50%, -50%);
    background: radial-gradient(
        ellipse 80% 70% at 40% 45%,
        rgba(255, 200, 210, 0.45) 0%,
        rgba(255, 210, 218, 0.22) 45%,
        transparent 72%
    );
    border-radius: 58% 42% 48% 52% / 52% 48% 52% 48%;
    pointer-events: none;
    z-index: 0;
}

.sv-awareness__figure {
    position: relative;
    z-index: 1;
    margin: 0;
    width: 100%;
    max-width: min(36rem, 100%);
    display: flex;
    justify-content: center;
    align-items: center;
}

.sv-awareness__collage {
    display: block;
    width: 100%;
    height: auto;
    max-width: 100%;
    object-fit: contain;
    object-position: center;
    filter: drop-shadow(0 12px 28px rgba(30, 40, 30, 0.12));
}

.sv-awareness__content {
    position: relative;
    z-index: 2;
    box-sizing: border-box;
    padding: clamp(2rem, 5vw, 3.75rem) clamp(1.25rem, 4.5vw, 3rem);
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: min(42vw, 18rem);
    overflow: hidden;
    background: transparent;
}

.sv-awareness__waves {
    position: absolute;
    inset: auto -5% -8% auto;
    width: min(55%, 14rem);
    height: min(40%, 10rem);
    opacity: 0.2;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 120' fill='none'%3E%3Cpath stroke='%23ffffff' stroke-width='3' stroke-linecap='round' d='M20 90c30-20 50-20 80 0s55 15 85-10M35 65c25-15 45-12 70 5s48 8 78-12M50 40c22-12 40-10 62 8s40 6 65-8'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: bottom right;
    background-size: contain;
    pointer-events: none;
}

.sv-awareness__title {
    position: relative;
    z-index: 1;
    margin: 0 0 clamp(1rem, 2vw, 1.35rem);
    max-width: 28rem;
    font-family: "Playfair Display", "DM Serif Text", Georgia, serif;
    font-weight: 700;
    font-size: clamp(1.5rem, 3.2vw, 2.35rem);
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: #141414;
}

.sv-awareness__body {
    position: relative;
    z-index: 1;
    margin: 0;
    max-width: 36rem;
    font-family: "Poppins", system-ui, sans-serif;
    font-size: clamp(0.9rem, 1.05vw, 1.05rem);
    font-weight: 400;
    line-height: 1.78;
    color: #3a3540;
    text-align: left;
    text-wrap: pretty;
}

@media (max-width: 899px) {
    .sv-awareness {
        /* Image on top (lime), text below (pink) */
        background: linear-gradient(to bottom, #f1fae1 0%, #f1fae1 46%, #ffe6ef 46%, #ffe6ef 100%);
    }

    .sv-awareness::before,
    .sv-awareness::after {
        opacity: 0.65;
    }
}

@media (min-width: 900px) {
    .sv-awareness {
        min-height: clamp(24rem, 40vw, 36rem);
    }

    .sv-awareness__grid {
        display: block;
        min-height: clamp(24rem, 40vw, 36rem);
        padding: clamp(2rem, 4vw, 3.5rem) clamp(1.25rem, 3vw, 2.5rem);
    }

    /* Collage stays in the left (lime) band */
    .sv-awareness__visual {
        width: min(56%, 38rem);
        margin: 0;
        padding: 0 clamp(0.5rem, 1.5vw, 1rem) 0 0;
        min-height: min(36rem, 70vh);
        align-items: center;
        justify-content: flex-start;
    }

    .sv-awareness__figure {
        max-width: 100%;
    }

    /* Centre of text block sits on the 65% colour join (viewport / section width) */
    .sv-awareness__content {
        position: absolute;
        left: 65%;
        top: 50%;
        transform: translate(-50%, -50%);
        width: min(34rem, 36vw);
        max-width: calc(100% - 2rem);
        min-height: 0;
        padding: clamp(1.25rem, 2.5vw, 2rem) clamp(1rem, 2vw, 1.5rem);
        margin: 0;
        justify-content: center;
    }
}

/* —— Therapeutic workshops & group supports —— */

.sv-workshops {
    position: relative;
    box-sizing: border-box;
    width: 100%;
    max-width: none;
    margin-left: 0;
    margin-right: 0;
    overflow: hidden;
    /* Join sits under the image stack (right band) — left blue, right white */
    background: linear-gradient(to right, #ecf9ff 0%, #ecf9ff 57%, #ffffff 57%, #ffffff 100%);
}

.sv-workshops__grid {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    align-items: stretch;
    box-sizing: border-box;
}

.sv-workshops__copy {
    order: 2;
    position: relative;
    z-index: 2;
    box-sizing: border-box;
    padding: clamp(1.75rem, 4.5vw, 3rem) clamp(1.15rem, 4vw, 2.25rem);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.sv-workshops__title {
    margin: 0 0 clamp(0.85rem, 2vw, 1.15rem);
    max-width: 32rem;
    font-family: "Playfair Display", "DM Serif Text", Georgia, serif;
    font-weight: 700;
    font-size: clamp(1.45rem, 3vw, 2.2rem);
    line-height: 1.18;
    letter-spacing: -0.02em;
    color: #111418;
}

.sv-workshops__body {
    margin: 0;
    max-width: 36rem;
    font-family: "Poppins", system-ui, sans-serif;
    font-size: clamp(0.9rem, 1.02vw, 1.03rem);
    font-weight: 400;
    line-height: 1.72;
    color: #3a4048;
    text-align: left;
    text-wrap: pretty;
}

.sv-workshops__body strong {
    font-weight: 600;
    color: #1f242c;
}

.sv-workshops__visual {
    order: 1;
    position: relative;
    z-index: 1;
    box-sizing: border-box;
    padding: clamp(1.75rem, 4vw, 3rem) clamp(1.15rem, 4vw, 2.25rem);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: min(48vw, 20rem);
}

/* Light blue rounded frame behind the collage */
.sv-workshops__outline {
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 52%;
    width: min(92%, 26rem);
    height: min(88%, 30rem);
    transform: translate(-50%, -50%);
    /* border: 2px solid rgba(120, 178, 228, 0.45); */
    border-radius: clamp(20px, 2.5vw, 28px);
    pointer-events: none;
}

.sv-workshops__figure {
    position: relative;
    z-index: 1;
    margin: 0;
    width: 100%;
    max-width: min(34rem, 100%);
    display: flex;
    justify-content: center;
    align-items: center;
}

.sv-workshops__collage {
    display: block;
    width: 100%;
    height: auto;
    max-width: 100%;
    border-radius: clamp(16px, 2vw, 24px);
    object-fit: contain;
    object-position: center;
    filter: drop-shadow(0 14px 32px rgba(25, 55, 90, 0.12));
}

@media (max-width: 899px) {
    .sv-workshops {
        /* Image band (blue), then text on white — join under the image block */
        background: linear-gradient(to bottom, #ecf9ff 0%, #ecf9ff 48%, #ffffff 48%, #ffffff 100%);
    }
}

@media (min-width: 900px) {
    .sv-workshops {
        min-height: clamp(22rem, 36vw, 34rem);
    }

    .sv-workshops__grid {
        display: grid;
        grid-template-columns: minmax(0, 0.52fr) minmax(0, 0.48fr);
        align-items: center;
        gap: 0;
        min-height: clamp(22rem, 36vw, 34rem);
        padding: clamp(2rem, 4vw, 3.5rem) clamp(1.25rem, 3vw, 2.5rem);
    }

    .sv-workshops__copy {
        order: 1;
        padding: clamp(1rem, 2vw, 1.5rem) clamp(0.5rem, 2vw, 1.25rem) clamp(1rem, 2vw, 1.5rem) 0;
        max-width: 36rem;
    }

    .sv-workshops__visual {
        order: 2;
        justify-content: flex-end;
        padding: 0 0 0 clamp(0.5rem, 2vw, 1.5rem);
        min-height: 0;
        /* Nudge collage so it sits across the colour join */
        margin-right: clamp(-0.5rem, -1vw, 0rem);
    }

    .sv-workshops__figure {
        max-width: min(38rem, 52vw);
        margin-left: auto;
        transform: translateX(clamp(-0.75rem, -2.5vw, -1.5rem));
    }

    .sv-workshops__outline {
        transform: translate(calc(-50% + clamp(-0.5rem, -1.5vw, 0rem)), -50%);
        width: min(96%, 28rem);
    }
}
