.home-page {
    background: #f4f7f5 !important;
}

.home-page .shell {
    width: min(1180px, calc(100% - 28px));
    padding-bottom: 42px;
}

.home-hero {
    position: relative;
    min-height: clamp(500px, 70vh, 760px);
    overflow: hidden;
    border-radius: 8px;
    background: #12251e;
    color: #fff;
    box-shadow: 0 22px 48px rgba(23, 32, 42, .18);
}

.home-hero-media,
.home-hero-media img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.home-hero-media img {
    object-fit: cover;
    object-position: center 54%;
}

.home-hero::before {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(90deg, rgba(8, 24, 18, .58) 0%, rgba(8, 24, 18, .24) 42%, rgba(8, 24, 18, .04) 76%),
        linear-gradient(180deg, rgba(8, 24, 18, .04), rgba(8, 24, 18, .34));
    content: "";
    pointer-events: none;
}

.home-hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    align-content: end;
    min-height: inherit;
    width: min(760px, 100%);
    padding: clamp(30px, 5vw, 58px);
}

.home-eyebrow,
.home-gallery-label span {
    color: #f2cb76;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.home-hero h1 {
    margin: 12px 0 0;
    font-size: clamp(58px, 9vw, 112px);
    line-height: 1;
    letter-spacing: 0;
    text-shadow: 0 5px 26px rgba(0, 0, 0, .36);
    word-break: keep-all;
}

.home-hero p {
    margin: 14px 0 0;
    color: rgba(255, 255, 255, .92);
    font-size: clamp(16px, 2vw, 22px);
    font-weight: 800;
    line-height: 1.45;
    text-shadow: 0 3px 18px rgba(0, 0, 0, .34);
    word-break: keep-all;
}

.home-gallery {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(280px, .65fr);
    gap: 12px;
    margin-top: 12px;
}

.home-gallery-card {
    position: relative;
    min-height: 260px;
    overflow: hidden;
    border-radius: 8px;
    background: #dfe8dd;
    box-shadow: 0 12px 30px rgba(28, 42, 37, .065);
}

.home-gallery-card-large {
    min-height: 536px;
}

.home-gallery-visual,
.home-gallery-visual img {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
}

.home-gallery-visual img {
    object-fit: cover;
    object-position: center;
}

.home-gallery-card::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, .02) 40%, rgba(0, 0, 0, .58));
    content: "";
    pointer-events: none;
}

.home-gallery-label {
    position: absolute;
    inset: auto 18px 18px;
    z-index: 1;
    display: grid;
    gap: 5px;
    color: #fff;
}

.home-gallery-label strong {
    font-size: clamp(26px, 3.5vw, 44px);
    line-height: 1.05;
    letter-spacing: 0;
    word-break: keep-all;
}

.anthurium-card .home-gallery-visual img {
    object-position: 52% 42%;
}

.euphorbia-card .home-gallery-visual img {
    object-position: 50% 42%;
}

.footer-note {
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid var(--line);
    color: var(--muted);
    font-size: 13px;
    word-break: keep-all;
}

@media (max-width: 900px) {
    .home-gallery {
        grid-template-columns: 1fr 1fr;
    }

    .home-gallery-card-large {
        min-height: 420px;
    }

    .home-gallery-card {
        min-height: 260px;
    }
}

@media (max-width: 640px) {
    .home-page .shell {
        width: min(100% - 16px, 1180px);
        padding-top: 8px;
        padding-bottom: 34px;
    }

    .home-hero {
        min-height: 520px;
    }

    .home-hero-media img {
        object-position: 54% 54%;
    }

    .home-hero-content {
        padding: 24px 22px;
    }

    .home-hero h1 {
        font-size: clamp(42px, 12vw, 56px);
    }

    .home-hero p {
        font-size: 15px;
    }

    .home-gallery {
        grid-template-columns: 1fr;
        gap: 8px;
        margin-top: 8px;
    }

    .home-gallery-card,
    .home-gallery-card-large {
        min-height: 270px;
    }

    .home-gallery-card-large {
        min-height: 360px;
    }

    .home-gallery-label {
        inset: auto 14px 14px;
    }

    .home-gallery-label strong {
        font-size: 30px;
    }
}

@media (max-width: 390px) {
    .home-hero {
        min-height: 500px;
    }
}
