.hero {
    position: relative;
    min-height: 760px;
    height: 100svh;
    display: flex;
    align-items: center;
    color: #fff;
    overflow: hidden
}

.hero__media,
.hero__shade {
    position: absolute;
    inset: 0
}

.hero__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center
}

.hero__shade {
    background: linear-gradient(90deg, rgba(5, 35, 49, .78) 0%, rgba(5, 35, 49, .45) 46%, rgba(5, 35, 49, .04) 72%)
}

.hero__inner {
    position: relative;
    z-index: 2;
    padding-top: 80px
}

.hero__eyebrow {
    font-family: "Cormorant Garamond", serif;
    letter-spacing: .2em;
    color: #ead59d
}

.hero__lead {
    margin: 12px 0 10px;
    font-size: 1.9rem;
    font-weight: 600
}

.hero__title {
    max-width: 780px;
    font-size: clamp(4rem, 6.2vw, 5.8rem);
    line-height: 1.22;
    letter-spacing: .03em
}

.hero__title span {
    display: block;
    font-size: .48em;
    font-weight: 500;
    margin-bottom: 12px
}

.hero__text {
    margin: 25px 0 36px;
    font-size: clamp(1.7rem, 2vw, 2.2rem);
    letter-spacing: .08em
}

.worries {
    background: var(--mist)
}

.worry-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px
}

.worry-list li {
    position: relative;
    min-height: 210px;
    padding: 48px 28px 30px;
    background: #fff;
    border-top: 3px solid var(--green);
    box-shadow: 0 14px 42px rgba(30, 72, 78, .08)
}

.worry-list span {
    position: absolute;
    top: 12px;
    right: 18px;
    font-family: "Cormorant Garamond", serif;
    color: #dbe7e5;
    font-size: 5rem;
    line-height: 1
}

.worry-list p {
    position: relative;
    font-size: 1.8rem;
    font-weight: 600;
    line-height: 1.75
}

.about {
    overflow: hidden
}

.services {
    background: var(--cream)
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px
}

.service-card {
    background: #fff;
    box-shadow: var(--shadow);
    overflow: hidden
}

.service-card figure {
    overflow: hidden
}

.service-card figure img {
    width: 100%;
    aspect-ratio: 1.5;
    object-fit: cover;
    transition: transform .6s
}

.service-card:hover figure img {
    transform: scale(1.035)
}

.service-card__body {
    padding: 38px
}

.service-card__label {
    font-family: "Cormorant Garamond", serif;
    letter-spacing: .2em;
    color: var(--gold);
    font-weight: 600
}

.service-card h3 {
    margin: 8px 0 10px;
    font-size: 2.4rem;
    color: var(--navy)
}

.service-card__target {
    margin-bottom: 18px;
    color: var(--green);
    font-weight: 600
}

.price {
    margin-top: 26px;
    border-top: 1px solid var(--line)
}

.price>div {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 13px 0;
    border-bottom: 1px solid var(--line)
}

.price dd {
    font-weight: 700;
    color: var(--navy)
}

.price small {
    font-size: 1.1rem
}

.strength {
    background: #fff
}

.strength__inner {
    display: grid;
    grid-template-columns: 1fr 360px;
    align-items: center;
    gap: 80px
}

.check-list {
    display: grid;
    gap: 18px
}

.check-list li {
    position: relative;
    padding-left: 38px;
    font-weight: 600
}

.check-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--green);
    color: #fff;
    font-size: 1.3rem
}

.strength__badge {
    text-align: center
}

.strength__badge img {
    width: 280px;
    margin-inline: auto
}

.strength__badge figcaption {
    font-size: 1.1rem;
    color: var(--muted);
    margin-top: 14px
}

@media(max-width:900px) {
    .hero {
        min-height: 700px
    }

    .hero__media img {
        object-position: 60% center
    }

    .hero__shade {
        background: linear-gradient(90deg, rgba(5, 35, 49, .76), rgba(5, 35, 49, .35))
    }

    .worry-list,
    .service-grid {
        grid-template-columns: 1fr
    }

    .strength__inner {
        grid-template-columns: 1fr
    }

    .strength__badge {
        order: -1
    }

    .strength__badge img {
        width: 230px
    }
}

@media(max-width:600px) {
    .hero {
        min-height: 690px;
        height: 92svh;
        align-items: flex-end;
        padding-bottom: 70px
    }

    .hero__shade {
        background: linear-gradient(0deg, rgba(5, 35, 49, .88) 0%, rgba(5, 35, 49, .45) 55%, rgba(5, 35, 49, .05) 100%)
    }

    .hero__inner {
        padding-top: 70px
    }

    .hero__title {
        font-size: 4rem
    }

    .hero__title span {
        font-size: .47em
    }

    .hero__text {
        font-size: 1.6rem
    }

    .worry-list li {
        min-height: auto
    }

    .service-card__body {
        padding: 28px
    }

    .price>div {
        display: block
    }

    .price dd {
        margin-top: 4px
    }
}