.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 140px 48px 80px;
    text-align: center;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(ellipse at center, rgba(66, 40, 40, 0.15) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.hero__line-top {
    position: absolute;
    top: 90px;
    left: 48px;
    right: 48px;
    height: 1px;
    background: var(--soft-sand-faint);
    opacity: 0;
    animation: lineReveal 1.2s ease 0.6s forwards;
}

.hero__content {
    position: relative;
    z-index: 1;
    max-width: 960px;
    width: 100%;
}

.hero__est {
    display: flex;
    justify-content: center;
    margin-bottom: 48px;
    opacity: 0;
    animation: fadeUp 0.8s ease 0.8s forwards;
}

.hero__est img {
    height: 72px;
    width: auto;
    mix-blend-mode: screen;
    opacity: 0.95;
}

.hero__headline {
    font-family: var(--font-display);
    font-weight: 400;
    font-style: italic;
    font-size: clamp(2.4rem, 5.5vw, 4.5rem);
    line-height: 1.15;
    letter-spacing: -0.01em;
    color: var(--soft-sand);
    margin-bottom: 40px;
    opacity: 0;
    animation: fadeUp 1s ease 1s forwards;
}

.hero__divider {
    width: 60px;
    height: 1px;
    background: var(--burnt-cocoa);
    margin: 0 auto 40px;
    opacity: 0;
    animation: fadeIn 1s ease 1.4s forwards;
}

.hero__subtitle {
    font-family: var(--font-body);
    font-size: clamp(0.875rem, 1.2vw, 1rem);
    font-weight: 300;
    line-height: 1.75;
    color: var(--soft-sand-dim);
    max-width: 680px;
    margin: 0 auto;
    font-style: italic;
    opacity: 0;
    animation: fadeUp 1s ease 1.6s forwards;
}

.hero__scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0;
    animation: fadeIn 1s ease 2.2s forwards;
}

.hero__scroll-text {
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--soft-sand-dim);
}

.hero__scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--soft-sand-dim), transparent);
    animation: scrollPulse 2s ease-in-out 2.5s infinite;
}
