/* ============================================
   Hero Sections
   ============================================ */

/* === Homepage Hero === */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
    background-color: var(--color-dark);
}

.hero__media {
    position: absolute;
    inset: 0;
}

.hero__image-wrapper {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
    will-change: transform;
}

.hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: var(--space-lg);
    padding-bottom: 12vh;
}

.hero__title {
    font-family: var(--font-display);
    font-size: var(--fs-hero);
    font-weight: var(--fw-light);
    color: var(--color-white);
    line-height: 1;
    letter-spacing: var(--ls-tight);
    margin-bottom: var(--space-md);
}

.hero__title-line {
    display: block;
}

.hero__subtitle {
    font-family: var(--font-body);
    font-size: var(--fs-sm);
    font-weight: var(--fw-medium);
    letter-spacing: var(--ls-widest);
    text-transform: uppercase;
    color: var(--color-sand);
    margin-bottom: var(--space-xl);
}

.hero__cta {
    margin-top: var(--space-md);
}

/* Scroll indicator */
.hero__scroll-indicator {
    position: absolute;
    bottom: var(--space-xl);
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-xs);
}

.hero__scroll-text {
    font-family: var(--font-body);
    font-size: var(--fs-xs);
    letter-spacing: var(--ls-widest);
    text-transform: uppercase;
    color: var(--color-sand);
}

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

@keyframes scrollPulse {
    0%, 100% { opacity: 1; transform: scaleY(1); }
    50%      { opacity: 0.4; transform: scaleY(0.6); }
}

/* === Collection Hero === */
.collection-hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: var(--color-dark);
}

.collection-hero__media {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.collection-hero__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.45;
    will-change: transform;
    background-color: var(--color-sand);
}

.collection-hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 var(--container-padding);
    padding-bottom: var(--section-py);
}

.collection-hero__title {
    font-family: var(--font-display);
    font-size: clamp(3.5rem, 12vw, 10rem);
    font-weight: var(--fw-light);
    color: var(--color-white);
    letter-spacing: -0.02em;
    line-height: 0.9;
    text-transform: none;
}

.collection-hero__subtitle {
    font-family: var(--font-display);
    font-size: clamp(var(--fs-lg), 3vw, var(--fs-2xl));
    font-weight: var(--fw-light);
    font-style: italic;
    color: var(--color-stone);
    margin-top: var(--space-md);
    letter-spacing: var(--ls-normal);
}
