.hero-title {
    font-size: clamp(2.15rem, 4.4vw, 4.2rem);
    line-height: 1.08;
    letter-spacing: -0.045em;
}

.hero-media {
    position: relative;
    width: min(390px, 100%);
    margin: 0 auto;
    transform: rotate(2deg);
}

.hero-media::before {
    content: "";
    position: absolute;
    inset: 24px -18px -18px 24px;
    border-radius: 42px;
    background: rgba(var(--accent-rgb), .15);
    filter: blur(2px);
}

.hero-image,
.hero-image-placeholder {
    position: relative;
    display: block;
    width: 100%;
    aspect-ratio: 4 / 5;
    border: 8px solid rgba(255, 255, 255, .82);
    border-radius: 38px;
    box-shadow: 0 38px 85px rgba(var(--accent-rgb), .28);
}

.hero-image {
    object-fit: cover;
    object-position: center;
}

.hero-image-placeholder {
    overflow: hidden;
    background: linear-gradient(145deg, rgba(var(--accent-rgb), .95), rgba(var(--accent-rgb), .55));
}

.hero-image-placeholder span {
    position: absolute;
    display: block;
    border-radius: 50%;
    background: rgba(255, 255, 255, .14);
}

.hero-image-placeholder span:nth-child(1) { width: 260px; height: 260px; top: -50px; right: -70px; }
.hero-image-placeholder span:nth-child(2) { width: 180px; height: 180px; left: -45px; bottom: 50px; }
.hero-image-placeholder span:nth-child(3) { width: 90px; height: 90px; right: 45px; bottom: 38px; }
