.pg-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(340px, 0.62fr);
    gap: 44px;
    align-items: center;
    padding-top: 36px;
}

.pg-hero__media {
    min-height: 680px;
}

.pg-hero__placeholder {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100%;
    min-height: 680px;
    border-radius: 32px;
    background:
        linear-gradient(180deg, rgba(255, 253, 249, 0.12), rgba(46, 34, 22, 0.08)),
        radial-gradient(circle at top left, rgba(255, 255, 255, 0.65), transparent 40%),
        linear-gradient(135deg, rgba(122, 90, 58, 0.26), rgba(184, 149, 114, 0.14)),
        linear-gradient(180deg, #efe2ce, #d8c0a1);
    box-shadow: 0 40px 80px rgba(46, 34, 22, 0.08);
}

.pg-hero__grain {
    position: absolute;
    inset: 0;
    opacity: 0.45;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 22px 22px;
}

.pg-hero__card {
    position: absolute;
    z-index: 1;
    max-width: 280px;
    padding: 20px 22px;
    border: 1px solid rgba(255, 253, 249, 0.45);
    border-radius: 22px;
    background: rgba(255, 251, 245, 0.72);
    backdrop-filter: blur(14px);
}

.pg-hero__card strong,
.pg-hero__card p {
    display: block;
    margin: 8px 0 0;
    line-height: 1.55;
}

.pg-hero__card p {
    color: rgba(30, 26, 23, 0.72);
    font-size: 0.92rem;
}

.pg-hero__card--top {
    top: 34px;
    left: 34px;
}

.pg-hero__card--bottom {
    right: 34px;
    bottom: 34px;
}

.pg-hero__label,
.pg-hero__caption {
    color: rgba(30, 26, 23, 0.68);
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.pg-hero__orb {
    position: absolute;
    border-radius: 999px;
    filter: blur(2px);
}

.pg-hero__orb--left {
    left: 14%;
    bottom: 18%;
    width: 160px;
    height: 160px;
    background: rgba(255, 248, 237, 0.42);
}

.pg-hero__orb--right {
    right: 18%;
    top: 22%;
    width: 120px;
    height: 120px;
    background: rgba(122, 90, 58, 0.12);
}

.pg-hero__content h1 {
    margin: 0;
    font-size: var(--pg-text-hero);
    line-height: 1.05;
    font-weight: 500;
}

.pg-hero__copy {
    max-width: 390px;
    margin: 28px 0 0;
    color: var(--pg-color-text-muted);
    font-size: 1rem;
}

.pg-hero__meta {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    max-width: 400px;
    margin-top: 30px;
}

.pg-hero__meta div {
    padding: 18px 18px 16px;
    border: 1px solid rgba(221, 210, 196, 0.9);
    border-radius: 18px;
    background: rgba(255, 253, 249, 0.85);
}

.pg-hero__meta span {
    display: block;
    margin-bottom: 6px;
    color: var(--pg-color-text-muted);
    font-size: 0.72rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.pg-hero__meta strong {
    font-size: 0.96rem;
    font-weight: 500;
}

.pg-section--products .pg-section__head h2 {
    max-width: 520px;
}

.pg-best-products .pg-product-grid {
    margin-top: 4px;
}

.pg-section--library {
    padding-bottom: 8px;
}

@media (max-width: 900px) {
    .pg-hero {
        grid-template-columns: 1fr;
        gap: 22px;
        padding-top: 22px;
    }

    .pg-hero__media,
    .pg-hero__placeholder {
        min-height: 440px;
    }

    .pg-hero__content {
        padding: 0 4px;
    }

    .pg-hero__card {
        max-width: 220px;
        padding: 16px 18px;
    }

    .pg-hero__card--top {
        top: 18px;
        left: 18px;
    }

    .pg-hero__card--bottom {
        right: 18px;
        bottom: 18px;
    }

    .pg-hero__meta {
        grid-template-columns: 1fr;
    }
}
