/* ==========================================================================
   Hero
   ========================================================================== */
.hero { padding-block: clamp(32px, 8vw, 64px) 0px; overflow: hidden; }
.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.25fr);
    align-items: center;
    gap: 40px;
}
.hero-title {
    display: flex;
    flex-direction: column;
    font-size: clamp(1.9rem, 5.5vw, 3.1rem);
    font-weight: 700;
}
.hero-title-accent { color: var(--color-orange); }
.hero-rule {
    width: 64px;
    height: 4px;
    background: var(--color-orange);
    border-radius: 2px;
    margin: 22px 0 20px;
}
.hero-desc {
    max-width: 46ch;
    color: var(--color-body);
    font-size: clamp(0.95rem, 2.2vw, 1.05rem);
}
.hero-art {
    position: relative;
    display: flex;
    justify-content: center;
    width: 100%;
}
.hero-art-img {
    width: 100%;
    max-width: 1024px;
    height: auto;
}
.shard {
    position: absolute;
    width: 0; height: 0;
    opacity: 0.9;
}
.shard--tri { border-style: solid; }
.shard--orange { border-color: transparent transparent transparent var(--color-orange); }
.shard--maroon { border-color: transparent transparent transparent var(--color-maroon); }
.shard--charcoal { border-color: transparent transparent transparent var(--color-charcoal); }
.shard--tri { border-width: 8px 0 8px 14px; }
.shard--tl { top: 6%; left: 2%; transform: rotate(8deg); }
.shard--tr { top: 8%; right: 4%; transform: rotate(160deg); }
.shard--bl { bottom: 14%; left: 6%; transform: rotate(-30deg); }
.shard--br { bottom: 4%; right: 2%; transform: rotate(140deg); }

/* ==========================================================================
   Comic bursts (starburst callouts)
   ========================================================================== */
.burst {
    position: absolute;
    width: 168px;
    aspect-ratio: 1;
    display: block;
    filter: drop-shadow(0 6px 14px rgba(28, 32, 34, 0.12));
    transition: transform 0.2s ease;
    z-index: 2;
}
.burst:hover { transform: scale(1.05) rotate(-2deg); }
.burst-shape-svg { width: 100%; height: 100%; display: block; }
.burst-shape { fill: #fff; }
.burst--orange .burst-shape { stroke: var(--color-orange); }
.burst--crimson .burst-shape { stroke: var(--color-crimson); }
.burst-shape { stroke-width: 5px; stroke-linejoin: round; }

.burst-label {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.98rem;
    line-height: 1.2;
    padding: 0 16%;
    color: var(--color-charcoal);
}
.burst--orange .burst-label { color: var(--color-orange-dark); }
.burst--crimson .burst-label { color: var(--color-crimson); }

.burst--sm { width: 130px; }
.burst--lg { width: 190px; }

.burst--1 { top: -2%; left: 6%; transform: rotate(-6deg); }
.burst--2 { top: 30%; left: -10%; transform: rotate(4deg); }
.burst--3 { bottom: 2%; left: 34%; transform: rotate(-4deg); }

/* ---- Responsive ---- */
@media (max-width: 960px) {
    .hero-grid { grid-template-columns: 1fr; text-align: center; }
    .hero-rule { margin-inline: auto; }
    .hero-desc { margin-inline: auto; }
    .hero-title { align-items: center; }
    .hero-art {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        gap: 14px;
    }
    .hero-art-img { flex: 1 1 100%; }
    .burst { position: static; margin: 0; transform: none !important; }
}

@media (max-width: 768px) {
    .hero { padding-block: 28px 0; }
    .hero-art-img { max-width: 88vw; }
}

@media (max-width: 400px) {
    .hero-title { font-size: 1.7rem; }
    .burst { width: 140px; }
    .burst--sm { width: 110px; }
    .burst--lg { width: 150px; }
}