.ra-hcf,
.ra-hcf * { box-sizing: border-box; }

.ra-hcf {
    --ra-accent: #ff285d;
    --ra-accent-soft: #f6a0b8;
    --ra-bg: #fff9fa;
    --ra-title: #111111;
    --ra-helper: #657b8d;
    --ra-button-text: #ffffff;
    position: relative;
    width: 100%;
    overflow: hidden;
    background: linear-gradient(180deg, var(--ra-bg) 0%, #fff 100%);
    color: var(--ra-title);
    font-family: "Montserrat", Arial, sans-serif;
    isolation: isolate;
}

.ra-hcf__hero {
    position: relative;
    min-height: 700px;
    overflow: hidden;
}

.ra-hcf__hero-image {
    position: absolute;
    z-index: 0;
    inset: 0 0 0 auto;
    width: 55%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.ra-hcf__wash {
    position: absolute;
    z-index: 1;
    top: 0;
    bottom: 0;
    left: 38%;
    width: 34%;
    pointer-events: none;
    background: linear-gradient(90deg, var(--ra-bg) 0%, rgba(255,249,250,.92) 18%, rgba(255,249,250,.54) 48%, rgba(255,249,250,0) 100%);
}

.ra-hcf__content {
    position: relative;
    z-index: 2;
    width: 44%;
    max-width: 640px;
    margin-left: clamp(45px, 8vw, 150px);
    padding: 66px 10px 120px;
    text-align: center;
}

.ra-hcf__eyebrow {
    margin: 0;
    color: var(--ra-accent);
    font-family: "Montserrat", Arial, sans-serif;
    font-size: 18px;
    line-height: 1.2;
    font-weight: 600;
    letter-spacing: .32em;
    text-transform: uppercase;
}

.ra-hcf__title {
    margin: 28px auto 26px;
    max-width: 610px;
    color: var(--ra-title);
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(38px, 3.2vw, 48px);
    line-height: 1.05;
    letter-spacing: -.025em;
    font-weight: 700;
    text-wrap: balance;
}

.ra-hcf__separator {
    width: 174px;
    margin: 15px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    color: var(--ra-accent);
}

.ra-hcf__separator span {
    display: block;
    height: 1px;
    width: 64px;
    background: currentColor;
    opacity: .72;
}

.ra-hcf__separator b {
    display: block;
    font-size: 11px;
    line-height: 1;
    font-weight: 700;
}

.ra-hcf__wa-button {
    width: 420px;
    max-width: 100%;
    min-height: 78px;
    margin: 40px auto 0;
    padding: 18px 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    border: 0;
    border-radius: 14px;
    color: var(--ra-button-text) !important;
    background: linear-gradient(135deg, #ff2051 0%, var(--ra-accent) 100%);
    box-shadow: 0 12px 28px rgba(255,40,93,.12);
    text-decoration: none !important;
    font-family: "Montserrat", Arial, sans-serif;
    font-size: 21px;
    line-height: 1.15;
    font-weight: 700;
    transition: transform .22s ease, box-shadow .22s ease, filter .22s ease;
}

.ra-hcf__wa-button:hover,
.ra-hcf__wa-button:focus {
    color: var(--ra-button-text) !important;
    transform: translateY(-2px);
    box-shadow: 0 16px 34px rgba(255,40,93,.2);
    filter: saturate(1.05);
}

.ra-hcf__wa-icon {
    width: 34px;
    height: 34px;
    display: inline-flex;
    flex: 0 0 34px;
}

.ra-hcf__wa-icon svg,
.ra-hcf__helper-icon svg,
.ra-hcf__decor svg {
    display: block;
    width: 100%;
    height: 100%;
}

.ra-hcf__helper {
    margin: 27px auto 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 13px;
    color: var(--ra-helper);
    font-size: 14px;
    font-weight: 500;
}

.ra-hcf__helper-icon {
    width: 27px;
    height: 27px;
    color: #10ba69;
    display: inline-flex;
    flex: 0 0 27px;
}

.ra-hcf--hide-helper .ra-hcf__helper { display: none; }

.ra-hcf__cards {
    position: relative;
    z-index: 5;
    width: calc(100% - 44px);
    max-width: 1100px;
    margin: -86px auto 46px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
}

.ra-hcf__card {
    display: block;
    overflow: hidden;
    padding: 14px 14px 0;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 12px 30px rgba(48,32,36,.12);
    color: inherit !important;
    text-decoration: none !important;
    transition: transform .22s ease, box-shadow .22s ease;
}

.ra-hcf__card:hover,
.ra-hcf__card:focus {
    transform: translateY(-3px);
    box-shadow: 0 18px 36px rgba(48,32,36,.16);
}

.ra-hcf__card-image-wrap {
    width: 100%;
    height: 205px;
    overflow: hidden;
    border-radius: 7px;
    background: #f3eef0;
}

.ra-hcf__card-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform .35s ease;
}

.ra-hcf__card:hover .ra-hcf__card-image { transform: scale(1.018); }

.ra-hcf__card-body {
    min-height: 85px;
    padding: 16px 8px 12px;
    text-align: center;
}

.ra-hcf__card-title {
    color: var(--ra-accent);
    font-family: "Montserrat", Arial, sans-serif;
    font-size: 19px;
    line-height: 1.2;
    font-weight: 500;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.ra-hcf__card .ra-hcf__separator {
    width: 150px;
    margin: 15px auto 5px;
    gap: 11px;
}

.ra-hcf__card .ra-hcf__separator span { width: 56px; }
.ra-hcf__card .ra-hcf__separator b { font-size: 10px; }

.ra-hcf__decor {
    position: absolute;
    z-index: 4;
    display: block;
    width: 52px;
    height: 52px;
    color: var(--ra-accent-soft);
    pointer-events: none;
}

.ra-hcf__decor--left {
    left: 15px;
    top: 580px;
    transform: rotate(-14deg);
}

.ra-hcf__decor--right {
    display: none;
}

.ra-hcf--hide-decorations .ra-hcf__decor { display: none !important; }

@media (max-width: 1200px) {
    .ra-hcf__content {
        margin-left: 45px;
        width: 48%;
    }
    .ra-hcf__title { font-size: 40px; }
    .ra-hcf__hero-image { width: 56%; }
}

/* Reference mobile composition: centered, no top floral image, one card per row. */
@media (max-width: 1024px) {
    .ra-hcf {
        min-height: 100%;
        background: radial-gradient(circle at 48% 28%, #fff 0%, var(--ra-bg) 58%, #fff 100%);
    }

    .ra-hcf__hero {
        min-height: 610px;
        overflow: visible;
    }

    .ra-hcf__hero-image,
    .ra-hcf__wash {
        display: none;
    }

    .ra-hcf--show-mobile-bg .ra-hcf__hero-image {
        display: block;
        width: 100%;
        opacity: .18;
        background-position: center;
    }

    .ra-hcf--show-mobile-bg .ra-hcf__wash {
        display: block;
        left: 0;
        width: 100%;
        background: rgba(255,249,250,.78);
    }

    .ra-hcf__content {
        width: min(680px, 88%);
        max-width: none;
        margin: 0 auto;
        padding: 58px 0 36px;
        text-align: center;
    }

    .ra-hcf__eyebrow {
        font-size: 22px;
        letter-spacing: .31em;
    }

    .ra-hcf__separator {
        width: 245px;
        gap: 24px;
        margin: 24px auto;
    }

    .ra-hcf__separator span { width: 92px; }
    .ra-hcf__separator b { font-size: 15px; }

    .ra-hcf__title {
        max-width: 680px;
        margin: 47px auto 38px;
        font-size: clamp(42px, 5.1vw, 57px);
        line-height: 1.08;
    }

    .ra-hcf__wa-button {
        width: min(620px, 88vw);
        min-height: 100px;
        margin-top: 38px;
        border-radius: 16px;
        gap: 25px;
        font-size: 30px;
        padding: 24px 34px;
    }

    .ra-hcf__wa-icon {
        width: 42px;
        height: 42px;
        flex-basis: 42px;
    }

    .ra-hcf__helper { display: none; }

    .ra-hcf__cards {
        width: min(760px, 78vw);
        max-width: 760px;
        margin: 43px auto 46px;
        grid-template-columns: 1fr;
        gap: 31px;
    }

    .ra-hcf__card {
        padding: 17px 17px 0;
        border-radius: 13px;
        box-shadow: 0 15px 33px rgba(48,32,36,.11);
    }

    .ra-hcf__card-image-wrap {
        height: clamp(230px, 29vw, 292px);
        border-radius: 7px;
    }

    .ra-hcf__card-body {
        min-height: 106px;
        padding: 20px 8px 16px;
    }

    .ra-hcf__card-title {
        font-size: 26px;
        letter-spacing: .18em;
    }

    .ra-hcf__card .ra-hcf__separator {
        width: 245px;
        margin: 24px auto 3px;
        gap: 24px;
    }
    .ra-hcf__card .ra-hcf__separator span { width: 92px; }
    .ra-hcf__card .ra-hcf__separator b { font-size: 15px; }

    .ra-hcf__decor {
        width: 60px;
        height: 60px;
    }

    .ra-hcf__decor--left {
        left: 6.5%;
        top: 585px;
        transform: rotate(-15deg);
    }

    .ra-hcf__decor--right {
        display: block;
        right: 4.5%;
        top: 1295px;
        transform: rotate(13deg);
    }
}

@media (max-width: 767px) {
    .ra-hcf__hero { min-height: 465px; }
    .ra-hcf__content { width: 90%; padding-top: 40px; }
    .ra-hcf__eyebrow { font-size: 15px; }
    .ra-hcf__separator { width: 160px; gap: 14px; margin: 16px auto; }
    .ra-hcf__separator span { width: 62px; }
    .ra-hcf__separator b { font-size: 11px; }
    .ra-hcf__title { margin: 28px auto 26px; font-size: clamp(34px, 8.8vw, 47px); }
    .ra-hcf__wa-button { width: 88vw; min-height: 76px; margin-top: 25px; font-size: 20px; gap: 15px; padding: 18px 20px; }
    .ra-hcf__wa-icon { width: 31px; height: 31px; flex-basis: 31px; }
    .ra-hcf__cards { width: 84vw; margin-top: 30px; gap: 25px; }
    .ra-hcf__card { padding: 12px 12px 0; }
    .ra-hcf__card-image-wrap { height: 31vw; min-height: 170px; }
    .ra-hcf__card-body { min-height: 88px; padding: 16px 5px 12px; }
    .ra-hcf__card-title { font-size: 18px; letter-spacing: .15em; }
    .ra-hcf__card .ra-hcf__separator { width: 160px; gap: 14px; margin: 16px auto 2px; }
    .ra-hcf__card .ra-hcf__separator span { width: 62px; }
    .ra-hcf__card .ra-hcf__separator b { font-size: 11px; }
    .ra-hcf__decor--left { top: 450px; left: 4%; width: 43px; height: 43px; }
    .ra-hcf__decor--right { top: auto; bottom: 145px; right: 2.5%; width: 43px; height: 43px; }
}

@media (prefers-reduced-motion: reduce) {
    .ra-hcf__wa-button,
    .ra-hcf__card,
    .ra-hcf__card-image { transition: none !important; }
}
