.hero {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    background-color: var(--color-text-heading);
}
.hero-split {
    display: grid;
    grid-template-columns: 1fr;
    min-height: 100vh;
    min-height: 100dvh;
}
@media (min-width: 1024px) {
    .hero-split {
        grid-template-columns: 1fr 1fr;
    }
}
.hero-content {
    background-color: var(--color-text-heading);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-2xl) var(--space-lg);
    order: 1;
}
@media (min-width: 1024px) {
    .hero-content {
        padding: var(--space-3xl) var(--space-2xl);
        order: 0;
    }
}
.hero-content-inner {
    max-width: 500px;
}
.hero-subtitle {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: var(--font-weight-bold);
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--color-text-heading);
    margin-bottom: var(--space-md);
    padding: var(--space-xs) var(--space-sm);
    background-color: var(--color-primary);
    display: inline-block;
    border: 3px solid var(--color-bg-surface);
    box-shadow: 4px 4px 0 var(--color-bg-surface);
}
.hero-title {
    margin: 0 0 var(--space-lg);
}
.hero-name {
    display: block;
    font-family: var(--font-heading);
    font-size: clamp(3rem, 12vw, 6rem);
    font-weight: var(--font-weight-black);
    line-height: 0.9;
    letter-spacing: -0.04em;
    text-transform: uppercase;
    color: var(--color-bg-surface);
}
.hero-name--1 {
    color: var(--color-bg-surface);
}
.hero-name--2 {
    color: var(--color-primary);
}
.hero-connector {
    display: block;
    font-family: var(--font-body);
    font-size: clamp(1.5rem, 5vw, 2.5rem);
    font-weight: var(--font-weight-black);
    color: var(--color-bg-surface);
    margin: var(--space-xs) 0;
}
.hero-date-box {
    display: inline-block;
    background-color: var(--color-bg-surface);
    padding: var(--space-sm) var(--space-lg);
    margin-bottom: var(--space-lg);
    border: 3px solid var(--color-bg-surface);
}
.hero-date {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: var(--font-weight-bold);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-text-heading);
}
.hero-countdown {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
}
.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 4.5rem;
    height: 4.5rem;
    background-color: var(--color-bg-surface);
    border: 3px solid var(--color-bg-surface);
    box-shadow: 4px 4px 0 var(--color-primary);
    transition: transform 0.1s ease, box-shadow 0.1s ease;
}
.countdown-item:hover {
    transform: translate(-2px, -2px);
    box-shadow: 6px 6px 0 var(--color-primary);
}
.countdown-value {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: var(--font-weight-black);
    line-height: 1;
    color: var(--color-text-heading);
}
.countdown-label {
    font-family: var(--font-body);
    font-size: 0.6rem;
    font-weight: var(--font-weight-bold);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 0.25rem;
    color: var(--color-text-muted);
}
.hero-image {
    position: relative;
    background-color: var(--color-text-heading);
    order: 0;
    min-height: 50vh;
    max-height: 100dvh;
}
@media (min-width: 1024px) {
    .hero-image {
        order: 1;
        min-height: auto;
    }
}
.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: contrast(110%) saturate(80%);
}
.hero-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 6px solid var(--color-primary);
    pointer-events: none;
    z-index: 1;
}
.hero-scroll-indicator {
    position: absolute;
    bottom: var(--space-lg);
    left: var(--space-lg);
    z-index: 10;
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    color: var(--color-bg-surface);
    cursor: pointer;
    animation: scrollPulse 2s ease-in-out infinite;
}
@media (min-width: 1024px) {
    .hero-scroll-indicator {
        left: var(--space-2xl);
        bottom: var(--space-2xl);
    }
}
.scroll-text {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: var(--font-weight-bold);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    writing-mode: vertical-rl;
    text-orientation: mixed;
}
.scroll-arrow {
    width: 1.5rem;
    height: 1.5rem;
    border: 3px solid currentColor;
    border-radius: 0;
    position: relative;
}
.scroll-arrow::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0.5rem;
    height: 0.5rem;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: translate(-50%, -70%) rotate(45deg);
}
@keyframes scrollPulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}
@media (max-width: 1023px) {
    .hero-content {
        min-height: 50vh;
        text-align: center;
    }
    .hero-content-inner {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .hero-countdown {
        justify-content: center;
    }
    .hero-scroll-indicator {
        left: 50%;
        transform: translateX(-50%);
    }
    .scroll-text {
        writing-mode: horizontal-tb;
    }
}
.theme-dark .hero {
    background-color: var(--color-bg-primary);
}
.theme-dark .hero-content {
    background-color: var(--color-bg-primary);
}
.theme-dark .hero-subtitle {
    color: var(--color-bg-primary);
    border-color: var(--color-text-heading);
    box-shadow: 4px 4px 0 var(--color-text-heading);
}
.theme-dark .hero-name {
    color: var(--color-text-heading);
}
.theme-dark .hero-name--1 {
    color: var(--color-text-heading);
}
.theme-dark .hero-connector {
    color: var(--color-text-heading);
}
.theme-dark .hero-date-box {
    background-color: var(--color-text-heading);
    border-color: var(--color-text-heading);
}
.theme-dark .hero-date {
    color: var(--color-bg-primary);
}
.theme-dark .countdown-item {
    background-color: var(--color-bg-secondary);
    border-color: var(--color-bg-secondary);
}
.theme-dark .countdown-value {
    color: var(--color-text-heading);
}
.theme-dark .countdown-label {
    color: var(--color-text-muted);
}
.theme-dark .hero-image {
    background-color: var(--color-bg-primary);
}
.theme-dark .hero-scroll-indicator {
    color: var(--color-text-heading);
}
