/* Hero — cinematográfico */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: calc(var(--nav-h) + 1rem) 1.25rem clamp(1rem, 3vh, 2rem);
    overflow: hidden;
}

@media (max-width: 1023px) {
    .hero-section {
        min-height: auto;
        align-items: flex-start;
        padding: calc(var(--nav-h) + 1.5rem) 1rem 2rem;
    }
}

.hero-section::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    background: radial-gradient(ellipse 85% 65% at 50% 50%, transparent 35%, rgba(5, 8, 14, 0.55) 100%);
}

.hero-mesh {
    position: absolute;
    inset: -40%;
    z-index: 0;
    pointer-events: none;
    background:
        radial-gradient(ellipse 55% 42% at 18% 28%, rgba(247, 208, 112, 0.13) 0%, transparent 62%),
        radial-gradient(ellipse 48% 38% at 88% 12%, rgba(196, 92, 42, 0.09) 0%, transparent 56%),
        radial-gradient(ellipse 50% 45% at 72% 88%, rgba(140, 91, 27, 0.1) 0%, transparent 60%),
        radial-gradient(ellipse 35% 30% at 50% 50%, rgba(30, 24, 18, 0.3) 0%, transparent 70%);
    opacity: 0.55;
    animation: mesh-drift 22s ease-in-out infinite alternate;
}

.hero-aurora {
    position: absolute;
    inset: -20% -30%;
    z-index: 0;
    pointer-events: none;
    opacity: 0.18;
    background:
        conic-gradient(from 210deg at 70% 40%, transparent 0deg, rgba(247, 208, 112, 0.04) 55deg, transparent 120deg, rgba(196, 92, 42, 0.03) 200deg, transparent 280deg);
    animation: hero-aurora-spin 48s linear infinite;
}

@keyframes hero-aurora-spin {
    to { transform: rotate(360deg); }
}

.hero-chrome {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
}

.hero-chrome-corner {
    position: absolute;
    width: min(7vw, 72px);
    height: min(7vw, 72px);
    border-color: rgba(247, 208, 112, 0.22);
    border-style: solid;
    opacity: 0.85;
}

.hero-chrome-corner--tl {
    top: calc(var(--nav-h) + 1rem);
    left: 1rem;
    border-width: 2px 0 0 2px;
}

.hero-chrome-corner--tr {
    top: calc(var(--nav-h) + 1rem);
    right: 1rem;
    border-width: 2px 2px 0 0;
}

.hero-chrome-corner--bl {
    bottom: 5rem;
    left: 1rem;
    border-width: 0 0 2px 2px;
}

.hero-chrome-corner--br {
    bottom: 5rem;
    right: 1rem;
    border-width: 0 2px 2px 0;
}

@media (max-width: 639px) {
    .hero-chrome-corner { width: 44px; height: 44px; opacity: 0.55; }
}

@keyframes mesh-drift {
    0% { transform: translate(-2%, -1%) scale(1); }
    100% { transform: translate(2%, 3%) scale(1.05); }
}

.hero-watermark {
    position: absolute;
    left: 50%;
    top: 40%;
    transform: translate(-50%, -50%) rotate(-2.5deg);
    width: 118%;
    max-width: 1320px;
    font-size: clamp(3.5rem, 16vw, 12rem);
    font-weight: 650;
    line-height: 0.82;
    letter-spacing: -0.07em;
    text-align: center;
    color: transparent;
    -webkit-text-stroke: 1px rgba(247, 208, 112, 0.1);
    pointer-events: none;
    z-index: 1;
    user-select: none;
    opacity: 0.72;
    mix-blend-mode: soft-light;
    font-variant-ligatures: discretionary-ligatures;
}

.hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.hero-bg::before {
    content: "";
    position: absolute;
    inset: -25% -15% 0 -15%;
    background-image: url("https://images.unsplash.com/photo-1555396273-367ea4eb4db5?auto=format&fit=crop&w=1920&q=80");
    background-size: cover;
    background-position: center 38%;
    opacity: 0.22;
    filter: saturate(1.08) contrast(1.06);
    transform: scale(1.05);
}

.hero-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 65% 55% at 72% 18%, rgba(247, 208, 112, 0.07) 0%, transparent 55%),
        linear-gradient(110deg, rgba(10, 14, 24, 0.98) 0%, rgba(10, 14, 24, 0.92) 32%, rgba(10, 14, 24, 0.7) 52%, rgba(10, 14, 24, 0.4) 100%);
}

.hero-scroll-hint {
    position: absolute;
    bottom: 1.75rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(148, 163, 184, 0.75);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.35em;
    text-transform: uppercase;
}

.hero-scroll-hint::after {
    content: "";
    width: 1px;
    height: 36px;
    background: linear-gradient(180deg, rgba(247, 208, 112, 0.5), transparent);
    animation: scroll-line 2.2s ease-in-out infinite;
}

@keyframes scroll-line {
    0%, 100% { transform: scaleY(0.4); opacity: 0.4; transform-origin: top; }
    50% { transform: scaleY(1); opacity: 1; transform-origin: top; }
}

.hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.5rem 1rem 0.5rem 0.95rem;
    border-radius: 3px;
    border: 1px solid rgba(247, 208, 112, 0.34);
    background:
        linear-gradient(120deg, rgba(247, 208, 112, 0.14) 0%, rgba(247, 208, 112, 0.04) 38%, transparent 100%),
        rgba(8, 10, 18, 0.52);
    font-family: var(--mono);
    font-size: 0.64rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(231, 238, 248, 0.96);
    margin-bottom: 1.35rem;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.08);
    clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 50%, calc(100% - 14px) 100%, 0 100%, 12px 50%);
}

.hero-kicker-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(145deg, var(--gold-light), var(--gold-dark));
    box-shadow: 0 0 16px rgba(247, 208, 112, 0.58);
}

.hero-line-wrap {
    display: block;
    overflow: hidden;
    padding-bottom: 0.06em;
}

.hero-line-inner {
    display: inline-block;
    transform-origin: 50% 100%;
}

.hero-quote {
    position: relative;
    margin-top: 1rem;
    padding: 0.8rem 0.95rem 0.85rem 1.15rem;
    border-left: none;
    font-size: 0.98rem;
    line-height: 1.68;
    color: rgba(186, 199, 218, 0.96);
    font-weight: 400;
    max-width: 28rem;
    background: linear-gradient(90deg, rgba(247, 208, 112, 0.09) 0%, rgba(10, 14, 24, 0.2) 42%, transparent 100%);
    border-radius: 0 4px 4px 0;
}

.hero-quote::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.35rem;
    bottom: 0.35rem;
    width: 3px;
    border-radius: 2px;
    background: linear-gradient(180deg, var(--gold-light), var(--gold-dark));
    box-shadow: 0 0 18px rgba(247, 208, 112, 0.25);
}

.hero-quote em {
    color: rgba(248, 250, 252, 0.95);
    font-style: italic;
    font-family: 'Fraunces', serif;
}

@media (max-width: 640px) {
    .hero-kicker {
        font-size: 0.58rem;
        padding: 0.4rem 0.75rem 0.4rem 0.7rem;
        margin-bottom: 1rem;
        gap: 0.5rem;
    }

    .hero-quote {
        margin-top: 0.75rem;
        padding: 0.65rem 0.8rem 0.7rem 0.95rem;
        font-size: 0.88rem;
        line-height: 1.6;
        max-width: 100%;
    }
}

