.hero-section {
    position: relative;
    overflow: hidden;
    padding: 78px 0 92px;
    border-bottom: 1px solid var(--border);
    background:
        radial-gradient(
            circle at 78% 20%,
            rgba(195, 161, 106, 0.18),
            transparent 25rem
        ),
        radial-gradient(
            circle at 10% 80%,
            rgba(97, 96, 61, 0.08),
            transparent 28rem
        ),
        linear-gradient(
            135deg,
            var(--background),
            var(--surface)
        );
}

.hero-section::before {
    position: absolute;
    top: -230px;
    right: -180px;
    width: 560px;
    height: 560px;
    border: 1px solid rgba(97, 96, 61, 0.10);
    border-radius: 50%;
    content: "";
}

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    min-height: 560px;
    grid-template-columns:
        minmax(0, 1.08fr)
        minmax(360px, 0.92fr);
    align-items: center;
    gap: 64px;
}

.hero-content h1 {
    max-width: 760px;
    margin-bottom: 22px;
    font-size: clamp(3.5rem, 7vw, 7rem);
    font-weight: 600;
    letter-spacing: -0.065em;
    line-height: 0.9;
}

.hero-content > p {
    max-width: 630px;
    margin-bottom: 0;
    color: var(--text-secondary);
    font-size: 1.02rem;
    line-height: 1.85;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 11px;
    margin-top: 30px;
}

.hero-actions .btn {
    min-height: 52px;
    padding-inline: 24px;
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 20px;
    margin-top: 27px;
    color: var(--text-secondary);
    font-size: 0.72rem;
    font-weight: 500;
}

.hero-trust span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.hero-trust .bi {
    color: var(--secondary);
}

.hero-visual {
    position: relative;
    display: grid;
    aspect-ratio: 1;
    place-items: center;
}

.hero-orbit {
    position: absolute;
    border: 1px solid rgba(97, 96, 61, 0.14);
    border-radius: 50%;
}

.hero-orbit-large {
    width: 86%;
    height: 86%;
}

.hero-orbit-small {
    width: 60%;
    height: 60%;
    border-color: rgba(195, 161, 106, 0.28);
}

.hero-product-shape {
    position: relative;
    z-index: 2;
    display: grid;
    width: 210px;
    height: 360px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.70);
    border-radius: 90px 90px 42px 42px;
    color: var(--white);
    background:
        linear-gradient(
            155deg,
            var(--primary),
            var(--primary-dark)
        );
    box-shadow: 0 30px 60px rgba(69, 67, 34, 0.24);
}

.hero-product-cap {
    position: absolute;
    top: -30px;
    width: 80px;
    height: 58px;
    border-radius: 18px 18px 8px 8px;
    background:
        linear-gradient(
            145deg,
            #D2B27D,
            var(--secondary)
        );
    box-shadow: 0 10px 24px rgba(195, 161, 106, 0.18);
}

.hero-product-shape > div {
    display: grid;
    place-items: center;
}

.hero-product-shape small,
.hero-product-shape span {
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.17em;
}

.hero-product-shape strong {
    margin: 6px 0;
    font-family: "Playfair Display", serif;
    font-size: 5rem;
    font-weight: 500;
    line-height: 1;
}

.hero-note {
    position: absolute;
    z-index: 3;
    display: flex;
    min-width: 150px;
    align-items: center;
    gap: 10px;
    padding: 11px 14px;
    border: 1px solid rgba(236, 225, 209, 0.95);
    border-radius: 15px;
    background: rgba(251, 245, 238, 0.90);
    box-shadow: var(--shadow-sm);
    backdrop-filter: blur(10px);
}

.hero-note > .bi {
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border-radius: 50%;
    color: var(--primary);
    background: rgba(195, 161, 106, 0.18);
}

.hero-note > div {
    display: grid;
}

.hero-note small {
    color: var(--text-secondary);
    font-size: 0.6rem;
}

.hero-note strong {
    font-size: 0.76rem;
}

.hero-note-top {
    top: 16%;
    left: 0;
}

.hero-note-bottom {
    right: 0;
    bottom: 16%;
}

@media (max-width: 991px) {
    .hero-grid {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        width: min(100%, 520px);
        justify-self: center;
    }
}

@media (max-width: 575px) {
    .hero-section {
        padding-block: 56px 68px;
    }

    .hero-grid {
        min-height: 0;
        gap: 50px;
    }

    .hero-content h1 {
        font-size: clamp(3.2rem, 16vw, 5rem);
    }

    .hero-product-shape {
        width: 160px;
        height: 285px;
    }

    .hero-product-cap {
        top: -23px;
        width: 64px;
        height: 46px;
    }

    .hero-note {
        min-width: 128px;
        padding: 9px 11px;
    }
}

/* ============================================================
   Home Discovery Search
============================================================ */

.home-search-section {
    position: relative;
    z-index: 8;
    margin-top: -34px;
    padding-bottom: 18px;
}

.home-search-card {
    display: grid;
    grid-template-columns:
        minmax(0, 0.9fr)
        minmax(360px, 1.1fr);
    align-items: center;
    gap: 34px;
    padding: 28px 30px;
    border: 1px solid var(--border);
    border-radius: 26px;
    background:
        radial-gradient(
            circle at 100% 0%,
            rgba(195, 161, 106, 0.13),
            transparent 18rem
        ),
        rgba(251, 245, 238, 0.98);
    box-shadow:
        0 22px 50px rgba(49, 47, 19, 0.10);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.home-search-copy h2 {
    margin: 0;
    color: var(--text-primary);
    font-size: clamp(1.55rem, 3vw, 2.35rem);
    line-height: 1.08;
}

.home-search-copy p {
    max-width: 610px;
    margin: 10px 0 0;
    color: var(--text-secondary);
    font-size: 0.82rem;
    line-height: 1.75;
}

.home-global-search {
    width: 100%;
    max-width: none;
    min-width: 0;
}

.home-global-search-form {
    min-height: 58px;
    padding-inline: 18px 8px;
    border-color: rgba(97, 96, 61, 0.22);
    background: var(--white);
    box-shadow:
        0 10px 30px rgba(49, 47, 19, 0.06);
}

.home-search-input {
    font-size: 0.88rem;
}

.home-search-submit {
    width: 42px;
    height: 42px;
    background:
        linear-gradient(
            135deg,
            var(--secondary),
            #AD8751
        );
}

.home-search-submit:hover {
    background:
        linear-gradient(
            135deg,
            #B58F58,
            #967340
        );
}

.home-search-results {
    top: calc(100% + 12px);
}


@media (max-width: 991px) {
    .home-search-section {
        margin-top: -22px;
    }

    .home-search-card {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}


@media (max-width: 575px) {
    .home-search-section {
        margin-top: -18px;
    }

    .home-search-card {
        padding: 22px 18px;
        border-radius: 21px;
    }

    .home-global-search-form {
        min-height: 54px;
        padding-inline: 14px 7px;
    }
}
