:root {
    --hl-green: #61c554;
    --hl-green-dark: #3f845f;
    --hl-navy: #1d102e;
    --hl-ink: #29203a;
    --hl-muted: #667085;
    --hl-blush: #fff6f4;
    --hl-cream: #fbfaf7;
    --hl-border: #ece8e4;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body.hl-home,
body.hl-inner {
    margin: 0;
    color: var(--hl-ink);
    background: #fff;
    font-family: Poppins, Arial, Helvetica, sans-serif;
    line-height: 1.7;
    overflow-x: hidden;
}

.hl-home h1,
.hl-home h2,
.hl-home h3,
.hl-inner h1,
.hl-inner h2,
.hl-inner h3 {
    color: var(--hl-navy);
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 700;
    line-height: 1.13;
}

.hl-home a,
.hl-inner a {
    text-decoration: none;
}

.hl-header {
    position: fixed;
    z-index: 1100;
    top: 28px;
    left: 50%;
    width: min(1120px, calc(100% - 48px));
    transform: translateX(-50%);
}

.hl-header-inner {
    min-height: 100px;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 170px 1fr auto;
    align-items: center;
    background: #fff;
    box-shadow: 0 12px 36px rgba(24, 16, 42, .14);
}

.hl-logo {
    display: flex;
    height: 70px;
    padding-right: 22px;
    align-items: center;
    border-right: 1px solid #ddd;
}

.hl-logo img {
    display: block;
    width: 145px;
    max-height: 64px;
    object-fit: contain;
}

.hl-nav {
    display: flex;
    height: 100%;
    padding-left: 28px;
    align-items: center;
    gap: clamp(20px, 2.2vw, 34px);
}

.hl-nav a {
    position: relative;
    height: 100%;
    display: inline-flex;
    align-items: center;
    color: #303654;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .035em;
    text-transform: uppercase;
}

.hl-nav a::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 4px;
    background: var(--hl-green);
    transform: scaleX(0);
    transition: transform .25s ease;
}

.hl-nav a:hover,
.hl-nav a.active {
    color: var(--hl-green);
}

.hl-nav a:hover::after,
.hl-nav a.active::after {
    transform: scaleX(1);
}

.hl-header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.hl-book-button {
    min-height: 50px;
    padding: 0 18px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid #e1e1e1;
    color: #303654;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    transition: color .2s ease, border-color .2s ease;
}

.hl-book-button:hover {
    color: var(--hl-green-dark);
    border-color: var(--hl-green);
}

.hl-menu-button {
    width: 50px;
    height: 50px;
    padding: 13px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    border: 0;
    background: var(--hl-green);
}

.hl-menu-button span {
    display: block;
    width: 21px;
    height: 2px;
    background: #fff;
}

.hl-menu-button span:nth-child(2) {
    width: 13px;
}

.hl-mobile-nav {
    margin-left: auto;
    width: 320px;
    padding: 16px 22px;
    background: #fff;
    box-shadow: 0 16px 35px rgba(24, 16, 42, .15);
}

.hl-mobile-nav a {
    display: block;
    padding: 11px 4px;
    border-bottom: 1px solid var(--hl-border);
    color: var(--hl-ink);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
}

.hl-hero {
    position: relative;
    min-height: 880px;
    display: flex;
    align-items: center;
    background: linear-gradient(90deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, 0)), url("/img/healthland/slider-bg.png") center/cover no-repeat;
    overflow: hidden;
}

.hl-hero-content {
    position: relative;
    z-index: 2;
    width: min(1120px, calc(100% - 48px));
    margin: 0 auto;
    padding-top: 92px;
}

.hl-eyebrow {
    margin: 0 0 18px;
    color: var(--hl-green);
    font-size: clamp(18px, 2vw, 26px);
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.hl-hero h1 {
    max-width: 680px;
    margin: 0 0 34px;
    font-size: clamp(58px, 6.5vw, 96px);
    letter-spacing: -.035em;
}

.hl-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
}

.hl-button {
    min-height: 62px;
    padding: 0 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border: 1px solid transparent;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    transition: transform .2s ease, background .2s ease, color .2s ease;
}

.hl-button:hover {
    transform: translateY(-2px);
}

.hl-button-light {
    color: #303654;
    background: #fff;
}

.hl-button-light:hover {
    color: #fff;
    background: var(--hl-green-dark);
}

.hl-button-green {
    color: #fff;
    background: var(--hl-green-dark);
}

.hl-button-green:hover {
    color: #fff;
    background: var(--hl-navy);
}

.hl-hero-shape {
    position: absolute;
    z-index: 1;
    right: -70px;
    bottom: -120px;
    width: 54vw;
    max-width: 740px;
    pointer-events: none;
}

.hl-section {
    position: relative;
    padding: 105px 24px;
}

.hl-section-heading {
    max-width: 820px;
    margin: 0 auto 55px;
    text-align: center;
}

.hl-section-heading img {
    width: 74px;
    height: 74px;
    margin-bottom: 12px;
    object-fit: contain;
}

.hl-section-heading h2 {
    margin: 0 0 18px;
    font-size: clamp(42px, 5vw, 64px);
}

.hl-section-heading p {
    margin: 0;
    color: var(--hl-muted);
    font-size: 16px;
}

.hl-services-section {
    background: #fff url("/img/healthland/section-bg-1.png") left top/auto 460px no-repeat;
}

.hl-service-grid {
    width: min(1120px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.hl-service-card {
    position: relative;
    min-height: 410px;
    margin: 0;
    border: 5px solid #f5f3f1;
    overflow: hidden;
}

.hl-service-card > img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}

.hl-service-card > div {
    position: absolute;
    inset: 0;
    padding: 38px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(29, 16, 46, .43);
    color: #fff;
    text-align: center;
    transition: background .3s ease;
}

.hl-service-card h3 {
    margin: 0;
    color: #fff;
    font-size: clamp(27px, 2.5vw, 36px);
}

.hl-service-card p,
.hl-service-card a {
    opacity: 0;
    transform: translateY(12px);
    transition: opacity .3s ease, transform .3s ease;
}

.hl-service-card p {
    margin: 20px 0;
    font-size: 14px;
    line-height: 1.8;
}

.hl-service-card a {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    color: var(--hl-green-dark);
    background: #fff;
    font-size: 22px;
}

.hl-service-card:hover > img {
    transform: scale(1.05);
}

.hl-service-card:hover > div,
.hl-service-card:focus-within > div {
    background: rgba(63, 132, 95, .94);
}

.hl-service-card:hover h3 {
    transform: translateY(-4px);
}

.hl-service-card:hover p,
.hl-service-card:hover a,
.hl-service-card:focus-within p,
.hl-service-card:focus-within a {
    opacity: 1;
    transform: translateY(0);
}

.hl-about {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: var(--hl-blush);
}

.hl-about-title,
.hl-about-copy {
    min-height: 560px;
    padding: clamp(60px, 7vw, 110px);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hl-about-title {
    position: relative;
    color: #fff;
    background: var(--hl-navy) url("/img/healthland/therapy-left-bg.png") center/cover no-repeat;
    overflow: hidden;
}

.hl-about-title::after {
    content: "";
    position: absolute;
    top: -10px;
    right: -40px;
    width: 220px;
    height: 150px;
    background: url("/img/healthland/flower-shape.png") center/contain no-repeat;
    opacity: .2;
}

.hl-about-title img {
    width: 74px;
    margin-bottom: 18px;
}

.hl-about-title h2 {
    max-width: 520px;
    margin: 0;
    color: #fff;
    font-size: clamp(46px, 5vw, 70px);
}

.hl-about-copy {
    align-items: flex-start;
    background: url("/img/healthland/therapy-right-bg.png") right center/cover no-repeat;
}

.hl-about-copy .hl-kicker {
    color: var(--hl-green-dark);
    font-size: 17px;
    font-weight: 800;
    text-transform: uppercase;
}

.hl-about-copy > p:not(.hl-kicker) {
    max-width: 670px;
    margin-bottom: 30px;
    color: #5f667a;
    font-size: 16px;
}

.hl-gallery-section {
    position: relative;
    min-height: 700px;
    padding: 100px max(24px, calc((100vw - 1120px) / 2));
    display: grid;
    grid-template-columns: .8fr 1.45fr;
    align-items: center;
    gap: 70px;
    background: #fff;
    overflow: hidden;
}

.hl-gallery-heading {
    position: relative;
    z-index: 2;
}

.hl-gallery-heading > span {
    color: var(--hl-green-dark);
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.hl-gallery-heading h2 {
    margin: 18px 0 28px;
    font-size: clamp(48px, 5.2vw, 72px);
}

.hl-gallery-heading a {
    width: 62px;
    height: 62px;
    display: grid;
    place-items: center;
    color: #fff;
    background: var(--hl-green-dark);
    font-size: 24px;
}

.hl-gallery-image {
    position: relative;
    min-height: 490px;
}

.hl-gallery-image > img:first-child {
    position: absolute;
    top: 0;
    right: 0;
    width: min(760px, 100%);
}

.hl-spa-elements {
    position: absolute;
    z-index: 2;
    right: 15%;
    bottom: -10px;
    width: min(350px, 55%);
    filter: drop-shadow(0 18px 14px rgba(38, 29, 27, .16));
}

.hl-features-section {
    padding-top: 110px;
    background: var(--hl-cream) url("/img/healthland/section-bg-2.png") right top/auto 500px no-repeat;
}

.hl-features-layout {
    width: min(1180px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr minmax(360px, 1.45fr) 1fr;
    align-items: center;
    gap: 35px;
}

.hl-feature-image img {
    width: 100%;
}

.hl-feature-list {
    display: grid;
    gap: 50px;
}

.hl-feature-list article {
    position: relative;
    padding-left: 72px;
}

.hl-feature-list article::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: #fff url("/img/healthland/feature-icon.png") center/36px no-repeat;
    box-shadow: 0 8px 24px rgba(40, 30, 40, .08);
}

.hl-feature-list h3 {
    margin: 0 0 10px;
    font-size: 29px;
}

.hl-feature-list p {
    margin: 0;
    color: var(--hl-muted);
    font-size: 14px;
}

.hl-testimonials {
    padding: 105px 24px 120px;
    color: #fff;
    background: var(--hl-green-dark);
}

.hl-section-heading-light h2,
.hl-section-heading-light p {
    color: #fff;
}

.hl-testimonial-grid {
    width: min(1120px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.hl-testimonial-grid figure {
    margin: 0;
    padding: 38px;
    background: rgba(255, 255, 255, .11);
    border: 1px solid rgba(255, 255, 255, .22);
}

.hl-testimonial-grid blockquote {
    position: relative;
    margin: 0 0 30px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 20px;
    line-height: 1.65;
}

.hl-testimonial-grid figcaption {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.hl-testimonial-grid strong {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 22px;
}

.hl-testimonial-grid span {
    color: rgba(255, 255, 255, .75);
    font-size: 12px;
}

.hl-cta {
    width: min(1120px, calc(100% - 48px));
    margin: -54px auto 70px;
    padding: 40px 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    background: var(--hl-navy);
    box-shadow: 0 20px 45px rgba(29, 16, 46, .2);
}

.hl-cta span {
    color: var(--hl-green);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .09em;
    text-transform: uppercase;
}

.hl-cta h2 {
    margin: 5px 0 0;
    color: #fff;
    font-size: clamp(30px, 3vw, 42px);
}

.hl-page-hero {
    min-height: 390px;
    padding: 170px 24px 70px;
    display: grid;
    place-items: center;
    text-align: center;
    background: linear-gradient(rgba(29, 16, 46, .66), rgba(29, 16, 46, .66)), url("/img/healthland/slider-bg.png") center/cover no-repeat;
}

.hl-page-hero span {
    color: var(--hl-green);
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.hl-page-hero h1 {
    margin: 10px 0 0;
    color: #fff;
    font-size: clamp(52px, 7vw, 80px);
}

.hl-footer {
    color: rgba(255, 255, 255, .72);
    background: #170d25;
}

.hl-footer-grid {
    width: min(1120px, calc(100% - 48px));
    margin: 0 auto;
    padding: 90px 0 70px;
    display: grid;
    grid-template-columns: 1.5fr .8fr 1.2fr 1.1fr;
    gap: 55px;
}

.hl-footer h2 {
    margin: 0 0 25px;
    color: #fff;
    font-size: 24px;
}

.hl-footer-about > img {
    width: 160px;
    margin-bottom: 25px;
    padding: 10px;
    background: #fff;
}

.hl-footer p,
.hl-footer ul {
    margin: 0;
    padding: 0;
}

.hl-footer li {
    margin-bottom: 10px;
    list-style: none;
}

.hl-footer a {
    color: rgba(255, 255, 255, .72);
    transition: color .2s ease;
}

.hl-footer a:hover {
    color: var(--hl-green);
}

.hl-contact-list li {
    display: grid;
    grid-template-columns: 22px 1fr;
    gap: 8px;
}

.hl-footer-bottom {
    padding: 24px;
    border-top: 1px solid rgba(255, 255, 255, .1);
    text-align: center;
    font-size: 13px;
}

@media (max-width: 1050px) {
    .hl-header-inner {
        grid-template-columns: 170px 1fr auto;
    }

    .hl-nav {
        display: none;
    }

    .hl-header-actions {
        grid-column: 3;
    }

    .hl-service-grid,
    .hl-testimonial-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hl-features-layout {
        grid-template-columns: 1fr 1fr;
    }

    .hl-feature-image {
        grid-row: span 2;
    }

    .hl-footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 760px) {
    .hl-header {
        top: 0;
        width: 100%;
    }

    .hl-header-inner {
        min-height: 74px;
        padding: 0 14px;
        grid-template-columns: 1fr auto;
    }

    .hl-logo {
        height: 58px;
        border: 0;
    }

    .hl-logo img {
        width: 128px;
    }

    .hl-header-actions {
        grid-column: 2;
    }

    .hl-book-button {
        display: none;
    }

    .hl-menu-button {
        width: 46px;
        height: 46px;
    }

    .hl-mobile-nav {
        width: 100%;
    }

    .hl-hero {
        min-height: 740px;
        background-position: 58% center;
    }

    .hl-hero::before {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(255, 255, 255, .26);
    }

    .hl-hero-content {
        width: calc(100% - 36px);
        padding-top: 70px;
    }

    .hl-hero h1 {
        font-size: clamp(50px, 15vw, 68px);
    }

    .hl-hero-actions {
        gap: 12px;
    }

    .hl-button {
        min-height: 56px;
        padding: 0 20px;
    }

    .hl-hero-shape {
        display: none;
    }

    .hl-section {
        padding: 75px 18px;
    }

    .hl-section-heading {
        margin-bottom: 38px;
    }

    .hl-section-heading h2 {
        font-size: 42px;
    }

    .hl-service-grid,
    .hl-testimonial-grid,
    .hl-about,
    .hl-gallery-section,
    .hl-features-layout,
    .hl-footer-grid {
        grid-template-columns: 1fr;
    }

    .hl-service-card {
        min-height: 390px;
    }

    .hl-about-title,
    .hl-about-copy {
        min-height: 470px;
        padding: 60px 28px;
    }

    .hl-about-title h2 {
        font-size: 48px;
    }

    .hl-gallery-section {
        min-height: 850px;
        padding: 75px 18px;
        gap: 20px;
    }

    .hl-gallery-heading h2 {
        font-size: 46px;
    }

    .hl-gallery-image {
        min-height: 370px;
    }

    .hl-feature-image {
        grid-row: auto;
        grid-row-start: 1;
    }

    .hl-feature-list {
        gap: 34px;
    }

    .hl-cta {
        width: calc(100% - 36px);
        padding: 34px 26px;
        flex-direction: column;
        align-items: flex-start;
    }

    .hl-footer-grid {
        padding: 70px 0 50px;
        gap: 35px;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
    }
}
