/* Hero — white, emblem-led, boutique editorial */
@keyframes hero-fade-drop {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes hero-scroll-pulse {
    0%, 100% {
        opacity: 0.75;
        transform: translateX(-50%) translateY(0);
    }
    50% {
        opacity: 1;
        transform: translateX(-50%) translateY(6px);
    }
}

.hero {
    position: relative;
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    background: var(--bg);
    color: var(--ink);
}

.hero > .announcement-banner {
    flex-shrink: 0;
    width: 100%;
}

.hero__main {
    position: relative;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: clamp(3.5rem, 12vw, 6rem) var(--space-md) clamp(4.75rem, 12vw, 5.75rem);
    padding-left: calc(var(--space-md) + env(safe-area-inset-left));
    padding-right: calc(var(--space-md) + env(safe-area-inset-right));
    box-sizing: border-box;
}

.hero__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: var(--home-max);
    width: 100%;
}

.hero__logo {
    width: clamp(9.5rem, 48vw, 13.5rem);
    height: auto;
    display: block;
    margin: 0 0 clamp(1.5rem, 4vw, 2rem);
    animation: hero-fade-drop 0.55s ease-out both;
}

.hero__heading {
    margin: 0 0 0.85rem;
    max-width: 18ch;
    font-family: var(--font-family);
    font-size: clamp(1.75rem, 6.5vw, 2.45rem);
    font-weight: 500;
    line-height: 1.22;
    letter-spacing: -0.01em;
    color: var(--ink);
    animation: hero-fade-drop 0.55s ease-out 0.06s both;
}

.hero__support {
    margin: 0 0 1.75rem;
    max-width: 28ch;
    font-family: var(--font-family);
    font-size: clamp(1rem, 3.6vw, 1.125rem);
    font-weight: 400;
    line-height: 1.6;
    color: var(--muted);
    animation: hero-fade-drop 0.55s ease-out 0.12s both;
}

.hero__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1.9rem;
    min-height: 48px;
    font-family: var(--font-family);
    font-size: 1.05rem;
    font-weight: 500;
    letter-spacing: 0.03em;
    color: #fff;
    background: #1a1a1a;
    border: none;
    border-radius: 999px;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.22s ease, transform 0.12s ease;
    -webkit-tap-highlight-color: transparent;
    animation: hero-fade-drop 0.55s ease-out 0.18s both;
}

.hero__btn:hover {
    background: #333;
}

.hero__btn:active {
    transform: translateY(1px);
}

.hero__scroll {
    position: absolute;
    left: 50%;
    bottom: calc(2.65rem + env(safe-area-inset-bottom));
    transform: translateX(-50%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    color: var(--muted);
    text-decoration: none;
    animation: hero-scroll-pulse 2.4s ease-in-out infinite;
    -webkit-tap-highlight-color: transparent;
}

.hero__scroll-icon {
    width: 1.35rem;
    height: 1.35rem;
    background-color: currentColor;
    -webkit-mask: center / contain no-repeat;
    mask: center / contain no-repeat;
    -webkit-mask-image: url("../../../assets/icons/arrow-down-s-line.svg");
    mask-image: url("../../../assets/icons/arrow-down-s-line.svg");
}

.hero__scroll:hover {
    color: var(--accent);
}

.hero-animations-off .hero__logo,
.hero-animations-off .hero__heading,
.hero-animations-off .hero__support,
.hero-animations-off .hero__btn {
    animation: none !important;
}

.hero-animations-off .hero__scroll {
    animation: none !important;
    opacity: 0.85;
    transform: translateX(-50%);
}

@media (prefers-reduced-motion: reduce) {
    .hero__logo,
    .hero__heading,
    .hero__support,
    .hero__btn,
    .hero__scroll {
        animation: none !important;
    }
}