/* Awareness Workshop — hero with forest illustration background */

.aw-page {
    width: 100%;
    max-width: none;
}

.aw-hero {
    position: relative;
    width: 100%;
    min-height: clamp(22rem, 52vw, 36rem);
    background-color: #1a2820;
    background-image: url("awarness-workshop/hero-section.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 72% center;
}

.aw-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(
        90deg,
        rgba(8, 16, 12, 0.82) 0%,
        rgba(8, 16, 12, 0.5) 38%,
        rgba(8, 16, 12, 0.12) 58%,
        transparent 78%
    );
}

.aw-hero__inner {
    position: relative;
    z-index: 1;
    box-sizing: border-box;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    min-height: clamp(22rem, 52vw, 36rem);
    display: flex;
    align-items: center;
    padding: clamp(2.25rem, 5vw, 4.5rem) clamp(1.25rem, 4vw, 2.5rem);
}

.aw-hero__copy {
    max-width: min(26rem, 100%);
    padding-right: clamp(0.5rem, 3vw, 2rem);
}

@media (min-width: 901px) {
    .aw-hero__copy {
        max-width: min(32rem, 42vw);
    }
}

.aw-hero__title {
    margin: 0 0 clamp(0.85rem, 2vw, 1.25rem);
    font-family: "Playfair Display", "DM Serif Text", Georgia, serif;
    font-weight: 700;
    font-size: clamp(1.85rem, 3.2vw, 2.75rem);
    line-height: 1.12;
    color: #ffffff;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
}

.aw-hero__body {
    margin: 0;
    font-family: "Poppins", system-ui, sans-serif;
    font-size: clamp(0.9375rem, 1.05vw, 1.0625rem);
    font-weight: 400;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 1px 12px rgba(0, 0, 0, 0.4);
}

.aw-hero__body strong {
    font-weight: 600;
    color: #ffffff;
}

@media (max-width: 900px) {
    .aw-hero {
        background-position: 78% center;
        min-height: clamp(20rem, 92vw, 30rem);
    }

    .aw-hero::after {
        background: linear-gradient(
            165deg,
            rgba(8, 16, 12, 0.88) 0%,
            rgba(8, 16, 12, 0.45) 42%,
            rgba(8, 16, 12, 0.2) 70%,
            transparent 100%
        );
    }

    .aw-hero__inner {
        align-items: flex-start;
        padding-top: clamp(2rem, 6vw, 3rem);
        min-height: clamp(20rem, 92vw, 30rem);
    }

    .aw-hero__copy {
        max-width: 100%;
        padding-right: 0;
    }
}

/* —— Split: framed photo left, copy right; mobile stacks image first —— */

.aw-split {
    background-color: #ffffff;
}

.aw-split__inner {
    box-sizing: border-box;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: clamp(2.5rem, 5.5vw, 4.25rem) clamp(1.15rem, 4vw, 2.25rem);
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
    gap: clamp(1.75rem, 4vw, 3.25rem);
    align-items: center;
}

.aw-split__visual {
    position: relative;
    grid-column: 1;
    grid-row: 1;
    margin: 0;
    padding: clamp(0.85rem, 2vw, 1.25rem);
}

.aw-split__frame {
    position: absolute;
    /* border: 2px solid rgba(126, 184, 232, 0.92); */
    border-radius: clamp(12px, 1.4vw, 16px);
    pointer-events: none;
    z-index: 0;
}

.aw-split__frame--tl {
    top: 0;
    left: 0;
    width: calc(100% - 1.25rem);
    height: calc(100% - 2rem);
}

.aw-split__frame--br {
    right: 0;
    bottom: 0;
    width: calc(100% - 1.5rem);
    height: calc(100% - 1.75rem);
}

.aw-split__figure {
    position: relative;
    z-index: 1;
    margin: 0;
}

.aw-split__figure img {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: clamp(10px, 1.2vw, 14px);
    box-shadow: 0 10px 32px rgba(20, 25, 35, 0.08);
}

.aw-split__copy {
    grid-column: 2;
    grid-row: 1;
    min-width: 0;
}

.aw-split__para {
    margin: 0 0 clamp(1rem, 2vw, 1.25rem);
    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: left;
}

.aw-split__para:last-child {
    margin-bottom: 0;
}

@media (max-width: 900px) {
    .aw-split__inner {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: clamp(1.5rem, 4vw, 2.25rem);
    }

    .aw-split__visual {
        grid-column: auto;
        grid-row: auto;
        order: 1;
        max-width: min(100%, 520px);
        margin-inline: auto;
    }

    .aw-split__copy {
        grid-column: auto;
        grid-row: auto;
        order: 2;
    }
}

/* —— Concept: pale blue | pale pink; seam shifted right (~68%) so pink sits “behind” card —— */

.aw-concept {
    --aw-concept-seam: 68%;
    --aw-concept-card-w: min(34rem, calc(100% - 2.5rem));
    background-color: #ecf9ff;
}

.aw-concept__inner {
    box-sizing: border-box;
    width: 100%;
    /* max-width: 1280px; */
    margin: 0 auto;
    padding: clamp(4.5rem, 5.5vw, 4.25rem)clamp(1.15rem, 4vw, 2.25rem);
    background: linear-gradient(
        90deg,
        #ecf9ff 0%,
        #ecf9ff var(--aw-concept-seam),
        #fff0f3 var(--aw-concept-seam),
        #fff0f3 100%
    );
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    min-height: clamp(18rem, 32vw, 28rem);
}

.aw-concept__intro {
    position: relative;
    z-index: 1;
    flex: 0 1 62%;
    width: 62%;
    max-width: 62%;
    min-width: 0;
    box-sizing: border-box;
    padding-right: clamp(2.75rem, calc(var(--aw-concept-card-w) / 2 + 1rem), 18rem);
    padding-left: clamp(2.75rem, calc(var(--aw-concept-card-w) / 2 + 1rem), 9rem);
    padding-bottom: clamp(2.75rem, calc(var(--aw-concept-card-w) / 2 + 1rem), 9rem);
}

.aw-concept__title {
    margin: 0 0 clamp(0.85rem, 2vw, 1.15rem);
    font-family: "Playfair Display", "DM Serif Text", Georgia, serif;
    font-weight: 700;
    font-size: clamp(1.45rem, 2.5vw, 2rem);
    line-height: 1.2;
    color: #0f1216;
}

.aw-concept__lead {
    margin: 0;
    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;
}

.aw-concept__card {
    position: absolute;
    left: 72%;
    top: 50%;
    transform: translate(-50%, -50%);
    margin: 0;
    width: var(--aw-concept-card-w);
    max-width: 34rem;
    min-width: 0;
    z-index: 2;
    padding: clamp(1.35rem, 3vw, 2rem) clamp(1.25rem, 2.8vw, 1.85rem);
    background-color: #ffffff;
    border-radius: clamp(12px, 1.4vw, 16px);
    box-shadow:
        0 1px 3px rgba(20, 25, 35, 0.06),
        0 14px 36px rgba(20, 25, 35, 0.1);
}

.aw-concept__card-para {
    margin: 0 0 clamp(0.95rem, 2vw, 1.15rem);
    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;
}

.aw-concept__card-para:last-child {
    margin-bottom: 0;
}

.aw-concept__card-para strong {
    font-weight: 600;
    color: #1a1f26;
}

@media (max-width: 900px) {
    .aw-concept {
        background-color: #ecf9ff;
    }

    .aw-concept__inner {
        /* Narrower pink band at top (like desktop: pink sits “behind” card), then blue for intro */
        background: linear-gradient(
            180deg,
            #fff0f3 0%,
            #fff0f3 min(32%, 11.5rem),
            #ecf9ff min(32%, 11.5rem),
            #ecf9ff 100%
        );
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: clamp(1.5rem, 4vw, 2rem);
        min-height: 0;
    }

    .aw-concept__card {
        position: relative;
        left: auto;
        top: auto;
        transform: none;
        order: 1;
        width: 100%;
        max-width: 100%;
    }

    .aw-concept__intro {
        order: 2;
        width: 100%;
        max-width: 100%;
        flex: none;
        padding-right: 0;
        padding-left: 0;
        padding-bottom: 0;
    }
}

/* —— Promo: cream panel, image left / copy right; mobile stacks image (left) then text —— */

.aw-promo {
    background-color: #f9fbe7;
}

.aw-promo__inner {
    box-sizing: border-box;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding-block: clamp(2.5rem, 5.5vw, 4.25rem);
    /* Slightly more space on the left, tighter on the right so copy can sit nearer the edge */
    padding-inline: clamp(1.35rem, 4.5vw, 2.75rem) clamp(0.85rem, 2.8vw, 1.35rem);
    display: grid;
    grid-template-columns: minmax(0, 0.42fr) minmax(0, 0.58fr);
    gap: clamp(1.75rem, 4.5vw, 3.25rem);
    align-items: center;
}

.aw-promo__figure {
    margin: 0;
    min-width: 0;
}

.aw-promo__figure img {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    object-position: 58% center;
    border-radius: 20px;
    box-shadow: 0 12px 40px rgba(42, 48, 36, 0.1);
}

.aw-promo__copy {
    min-width: 0;
}

.aw-promo__title {
    margin: 0 0 clamp(1rem, 2vw, 1.35rem);
    font-family: "Playfair Display", "DM Serif Text", Georgia, serif;
    font-weight: 700;
    font-size: clamp(1.45rem, 2.5vw, 2rem);
    line-height: 1.2;
    color: #0f1216;
}

.aw-promo__para {
    margin: 0 0 clamp(1rem, 2vw, 1.25rem);
    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: left;
}

.aw-promo__para:last-child {
    margin-bottom: 0;
}

.aw-promo__para strong {
    font-weight: 600;
    color: #1a1f26;
}

@media (max-width: 900px) {
    .aw-promo__inner {
        grid-template-columns: 1fr;
        gap: clamp(1.5rem, 4vw, 2.25rem);
        padding-inline: clamp(1.15rem, 4vw, 2.25rem);
    }

    .aw-promo__figure {
        max-width: min(100%, 26rem);
        margin-inline: auto;
    }

    .aw-promo__figure img {
        aspect-ratio: 3 / 4;
        max-height: min(68vh, 30rem);
    }
}
