body {
    margin: 0;
    padding: 0;
    font-family: "Manrope", sans-serif;
    color: #1f2428;
}

.site-header {
    background: #fff;
    border-bottom: 1px solid #e3e7e5;
}

.site-header__inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 18px 24px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    column-gap: 24px;
}

.site-logo {
    justify-self: start;
    text-decoration: none;
    color: #1f5f4b;
    font-family: "Playfair Display", serif;
    font-size: clamp(30px, 1.95vw, 44px);
    line-height: 1;
    font-weight: 700;
    letter-spacing: -0.2px;
    white-space: nowrap;
}

.site-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: clamp(20px, 2vw, 44px);
    padding-right: 20px;
}

.site-nav a {
    color: #1f2428;
    text-decoration: none;
    font-size: clamp(16px, 1.1vw, 22px);
    line-height: 1;
    font-weight: 500;
    white-space: nowrap;
    transition: color 0.18s ease;
}

.site-nav a:hover {
    color: #1f5f4b;
}

.site-cta {
    justify-self: end;
    text-decoration: none;
    background: #2f6f58;
    color: #fff;
    border-radius: 16px;
    padding: 16px clamp(32px, 2.1vw, 42px);
    font-size: clamp(16px, 1.1vw, 21px);
    line-height: 1;
    font-weight: 600;
    white-space: nowrap;
    transition: background-color 0.2s ease;
}

.site-cta:hover {
    background: #275b49;
}

.hero {
    position: relative;
    overflow: hidden;
    min-height: 705px;
    background-color: #b9d0b7;
    background-image:
        linear-gradient(90deg, rgba(187, 210, 183, 0.92) 0%, rgba(170, 199, 164, 0.86) 45%, rgba(150, 182, 144, 0.9) 100%),
        url("/img/bgr_girl.jpg"),
        url("/img/bgr_base.jpg");
    background-repeat: no-repeat, no-repeat, repeat-x;
    background-size: cover, cover, auto 100%;
    background-position: top center, top center, top center;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("/img/bgr_top.jpg") no-repeat top center;
    background-size: cover;
    opacity: 0.14;
    pointer-events: none;
}

.hero__inner {
    position: relative;
    z-index: 1;
    max-width: 1180px;
    margin: 0 auto;
    min-height: 705px;
    padding: 0 24px;
    display: grid;
    grid-template-columns: minmax(420px, 1fr) minmax(420px, 560px);
    column-gap: 18px;
    align-items: end;
}

.hero__content {
    padding: 72px 0 96px;
}

.hero__title {
    margin: 0;
    color: #2e6f5a;
    font-family: "Playfair Display", serif;
    font-size: clamp(62px, 6vw, 108px);
    line-height: 0.95;
    letter-spacing: -1.1px;
}

.hero__title span {
    display: block;
}

.hero__subtitle {
    margin: 14px 0 0;
    color: rgba(39, 87, 70, 0.93);
    font-size: clamp(28px, 2.2vw, 47px);
    line-height: 0.95;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    font-weight: 300;
}

.hero__description {
    margin: 28px 0 0;
    color: rgba(31, 69, 55, 0.86);
    font-size: clamp(18px, 1.25vw, 29px);
    line-height: 1.35;
    font-weight: 400;
}

.hero__actions {
    margin-top: 44px;
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 258px;
    padding: 18px 28px;
    border-radius: 12px;
    border: 2px solid #2f6f58;
    text-decoration: none;
    font-size: clamp(16px, 1.08vw, 20px);
    line-height: 1;
    font-weight: 500;
    transition: background-color 0.18s ease, color 0.18s ease;
}

.hero-btn--primary {
    background: #2f6f58;
    color: #fff;
}

.hero-btn--primary:hover {
    background: #295f4d;
}

.hero-btn--secondary {
    background: rgba(255, 255, 255, 0.15);
    color: #275947;
}

.hero-btn--secondary:hover {
    background: rgba(255, 255, 255, 0.35);
}

.hero__image-wrap {
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    min-height: 705px;
}

.hero__image {
    width: clamp(410px, 36vw, 560px);
    height: auto;
    object-fit: contain;
    object-position: bottom right;
}

@media screen and (max-width: 1200px) {
    .site-header__inner {
        max-width: 100%;
        padding: 16px 20px;
        grid-template-columns: auto 1fr auto;
        column-gap: 14px;
    }

    .site-nav {
        justify-content: center;
        gap: 14px 22px;
        padding-right: 0;
    }

    .hero {
        min-height: 640px;
    }

    .hero__inner {
        max-width: 100%;
        min-height: 640px;
        grid-template-columns: 1fr 480px;
        padding: 0 20px;
    }

    .hero__content {
        padding: 56px 0 72px;
    }

    .hero__title {
        font-size: clamp(54px, 6.2vw, 84px);
    }

    .hero__subtitle {
        font-size: clamp(25px, 2.55vw, 37px);
    }

    .hero__description {
        font-size: clamp(17px, 1.5vw, 23px);
    }

    .hero-btn {
        min-width: 220px;
        padding: 16px 22px;
        font-size: clamp(15px, 1.2vw, 19px);
    }

    .hero__image-wrap {
        min-height: 640px;
    }

    .hero__image {
        width: clamp(350px, 34vw, 470px);
    }
}

@media screen and (max-width: 900px) {
    .site-header__inner {
        grid-template-columns: 1fr;
        row-gap: 12px;
        padding: 14px 18px;
    }

    .site-logo,
    .site-cta {
        justify-self: center;
    }

    .site-nav {
        flex-wrap: wrap;
        gap: 10px 18px;
    }

    .hero {
        min-height: 0;
    }

    .hero__inner {
        min-height: 0;
        grid-template-columns: 1fr;
        row-gap: 18px;
        justify-items: center;
        align-items: start;
        padding: 0 18px 30px;
    }

    .hero__content {
        padding: 46px 0 0;
        text-align: center;
    }

    .hero__title {
        font-size: clamp(46px, 9vw, 76px);
        letter-spacing: -0.8px;
    }

    .hero__subtitle {
        font-size: clamp(22px, 4.6vw, 36px);
        line-height: 1;
    }

    .hero__description {
        font-size: clamp(16px, 2.8vw, 22px);
        line-height: 1.42;
    }

    .hero__description br {
        display: none;
    }

    .hero__actions {
        margin-top: 30px;
        justify-content: center;
    }

    .hero-btn {
        min-width: 250px;
    }

    .hero__image-wrap {
        min-height: 0;
        justify-content: center;
    }

    .hero__image {
        width: min(86vw, 510px);
    }
}

@media screen and (max-width: 640px) {
    .site-logo {
        font-size: 36px;
    }

    .site-nav a {
        font-size: 18px;
    }

    .site-cta {
        font-size: 19px;
        padding: 14px 28px;
    }

    .hero__content {
        padding-top: 38px;
    }

    .hero__title {
        font-size: clamp(44px, 14vw, 62px);
    }

    .hero__subtitle {
        margin-top: 12px;
        font-size: clamp(21px, 7vw, 28px);
        letter-spacing: 0.8px;
    }

    .hero__description {
        margin-top: 20px;
        font-size: clamp(16px, 4.6vw, 19px);
    }

    .hero__actions {
        gap: 12px;
    }

    .hero-btn {
        min-width: 100%;
        font-size: 17px;
        padding: 15px 20px;
    }
}
