/* Listras douradas no hero — formam na entrada (GSAP) */
.hero-deco-lines {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
}

.hero-headline-accent {
    display: block;
    margin-top: 0.12em;
}

.hero-deco-line {
    position: absolute;
    opacity: 0;
    will-change: transform, opacity;
}

.hero-deco-line--h {
    height: 1px;
    left: 0;
    width: min(38vw, 380px);
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(212, 156, 67, 0.15) 12%,
        rgba(247, 208, 112, 0.95) 45%,
        rgba(247, 208, 112, 0.55) 78%,
        transparent 100%
    );
    transform: scaleX(0);
    transform-origin: 0 50%;
}

.hero-deco-line--h2 {
    top: 26%;
    left: 4%;
}

.hero-deco-line--h3 {
    bottom: 22%;
    right: 0;
    left: auto;
    transform-origin: 100% 50%;
    background: linear-gradient(
        270deg,
        transparent 0%,
        rgba(212, 156, 67, 0.15) 12%,
        rgba(247, 208, 112, 0.85) 50%,
        transparent 100%
    );
}

.hero-deco-line--v {
    width: 1px;
    top: 14%;
    height: min(42vh, 320px);
    background: linear-gradient(
        180deg,
        rgba(247, 208, 112, 0.75) 0%,
        rgba(212, 156, 67, 0.2) 55%,
        transparent 100%
    );
    transform: scaleY(0);
    transform-origin: 50% 0%;
}

.hero-deco-line--v1 {
    right: 8%;
}

.hero-deco-line--v2 {
    left: 6%;
    top: auto;
    bottom: 18%;
    height: min(28vh, 220px);
    transform-origin: 50% 100%;
    background: linear-gradient(
        0deg,
        rgba(247, 208, 112, 0.55) 0%,
        rgba(212, 156, 67, 0.12) 70%,
        transparent 100%
    );
}

.hero-editorial-frame {
    position: absolute;
    inset: 12% 4% 10%;
    border: 1px solid rgba(247, 208, 112, 0.06);
    border-radius: 2px;
    pointer-events: none;
    z-index: 1;
    opacity: 0;
}

@media (max-width: 1023px) {
    .hero-editorial-frame { display: none; }
    .hero-deco-line--v1 { right: 3%; }
    .hero-deco-line--h2 { top: 20%; }
}

.page-grain {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 30;
    opacity: 0.07;
    mix-blend-mode: overlay;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

