.page-hero--collection {
    padding-block: clamp(40px, 7vw, 88px) clamp(32px, 5vw, 64px);
}

.page-hero--collection .page-hero__shell {
    position: relative;
    overflow: hidden;
    border: 0;
    background:
        radial-gradient(circle at top right, rgba(123, 137, 150, 0.08), transparent 24%),
        radial-gradient(circle at bottom left, rgba(214, 220, 226, 0.38), transparent 28%),
        linear-gradient(180deg, rgba(252, 252, 251, 0.98) 0%, rgba(243, 245, 247, 0.96) 100%);
    box-shadow: 0 24px 56px rgba(18, 32, 39, 0.05), inset 0 1px 0 rgba(255, 255, 255, 0.48), inset 0 0 0 1px rgba(19, 31, 44, 0.04);
}

.page-hero--collection .page-hero__shell::after {
    content: '';
    position: absolute;
    inset: 20px;
    border: 1px solid rgba(19, 31, 44, 0.035);
    border-radius: calc(var(--nv-radius-md) - 8px);
    pointer-events: none;
}

.page-hero--collection .page-hero__content {
    position: relative;
    z-index: 1;
    max-width: 720px;
}

.page-hero--collection .page-hero__eyebrow {
    margin-bottom: 22px;
    color: rgba(19, 32, 43, 0.54);
}

.page-hero--collection .page-hero__title {
    max-width: 10ch;
    margin-bottom: 20px;
    color: #13202b;
    font-size: clamp(2.9rem, 6vw, 5.8rem);
    line-height: 0.92;
    letter-spacing: -0.045em;
    text-transform: none;
}

.page-hero--collection .page-hero__subtitle,
.page-hero--collection .page-hero__intro {
    max-width: 58ch;
    color: rgba(19, 32, 43, 0.68);
    font-size: 1rem;
    line-height: 1.8;
}

.page-hero--collection .page-hero__subtitle {
    margin-bottom: 12px;
    font-size: 0.95rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.page-hero--collection .page-hero__intro p:last-child {
    margin-bottom: 0;
}

.page-hero--collection .page-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 34px;
    align-items: center;
}

.page-hero--collection .button,
.page-hero--collection .btn {
    min-height: 48px;
    padding-inline: 20px;
    border-radius: 999px;
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 0.01em;
}

.page-hero--collection .btn-primary,
.page-hero--collection .button--primary {
    color: #f5f7f8;
    border: 0;
    background: #16202a;
    box-shadow: 0 14px 28px rgba(18, 32, 39, 0.12);
}

.page-hero--collection .btn-primary:hover,
.page-hero--collection .btn-primary:focus-visible,
.page-hero--collection .button--primary:hover,
.page-hero--collection .button--primary:focus-visible {
    color: #f5f7f8;
    background: #0f1720;
    box-shadow: 0 16px 30px rgba(18, 32, 39, 0.14);
}

.page-hero--collection .btn-outline-secondary,
.page-hero--collection .button--secondary {
    color: #16202a;
    border: 1px solid rgba(19, 31, 44, 0.08);
    background: rgba(255, 255, 255, 0.72);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.42);
}

.page-hero--collection .btn-outline-secondary:hover,
.page-hero--collection .btn-outline-secondary:focus-visible,
.page-hero--collection .button--secondary:hover,
.page-hero--collection .button--secondary:focus-visible {
    color: #16202a;
    border-color: rgba(19, 31, 44, 0.12);
    background: rgba(255, 255, 255, 0.92);
}

.page-hero--collection .page-hero__media {
    position: relative;
    height: 100%;
    min-height: clamp(320px, 40vw, 520px);
    border-radius: calc(var(--nv-radius-md) - 6px);
    overflow: hidden;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0)),
        linear-gradient(145deg, #e3e7ea 0%, #cfd7de 100%);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.28), inset 0 0 0 1px rgba(19, 31, 44, 0.04);
}

.page-hero--collection .page-hero__media::before {
    content: '';
    position: absolute;
    inset: 18px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: calc(var(--nv-radius-md) - 18px);
    z-index: 1;
    pointer-events: none;
}

.page-hero--collection .page-hero__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.page-hero--collection.page-hero--no-media .page-hero__content {
    max-width: 860px;
}

.page-hero--collection.page-hero--no-media .page-hero__shell::before {
    content: '';
    position: absolute;
    right: clamp(24px, 6vw, 72px);
    bottom: clamp(24px, 5vw, 56px);
    width: clamp(180px, 20vw, 260px);
    aspect-ratio: 1;
    border-radius: 32px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.18)),
        radial-gradient(circle at top left, rgba(171, 181, 190, 0.16), transparent 60%);
    border: 1px solid rgba(19, 31, 44, 0.04);
    transform: rotate(-10deg);
}

@media (max-width: 991px) {
    .page-hero--collection .page-hero__title {
        max-width: 12ch;
    }

    .page-hero--collection .page-hero__media {
        min-height: 360px;
    }
}

@media (max-width: 767px) {
    .page-hero--collection .page-hero__shell::after,
    .page-hero--collection.page-hero--no-media .page-hero__shell::before {
        display: none;
    }

    .page-hero--collection .page-hero__shell {
        padding: 24px;
    }

    .page-hero--collection .page-hero__title {
        max-width: none;
        font-size: clamp(2.35rem, 11vw, 3.5rem);
        line-height: 0.98;
    }

    .page-hero--collection .page-hero__subtitle,
    .page-hero--collection .page-hero__intro {
        font-size: 0.97rem;
        line-height: 1.7;
    }

    .page-hero--collection .page-hero__actions {
        align-items: stretch;
    }

    .page-hero--collection .button,
    .page-hero--collection .btn {
        width: 100%;
        justify-content: center;
    }

    .page-hero--collection .page-hero__media {
        min-height: 280px;
    }
}
