/* Hero — Apple-esque centered, massive type */

.hero {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    /* Soft radial veil — mosaic shows at edges, fades behind text */
    background: radial-gradient(
        ellipse 60% 50% at 50% 45%,
        rgba(251, 250, 248, 0.7) 0%,
        rgba(251, 250, 248, 0.3) 60%,
        transparent 100%
    );
}

[data-theme="dark"] .hero {
    background: radial-gradient(
        ellipse 60% 50% at 50% 45%,
        rgba(17, 17, 16, 0.75) 0%,
        rgba(17, 17, 16, 0.35) 60%,
        transparent 100%
    );
}

.hero__content {
    position: relative;
    z-index: 1;
    max-width: 780px;
    padding: 0 24px;
}

/* Brand lockup — logo + wordmark, the first thing you see */
.hero__brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin-bottom: 28px;
}

.hero__logo {
    width: clamp(56px, 10vw, 80px);
    height: clamp(56px, 10vw, 80px);
    color: var(--terracotta);
    filter: drop-shadow(0 2px 8px rgba(196, 120, 92, 0.25));
}

[data-theme="dark"] .hero__logo {
    filter: drop-shadow(0 2px 12px rgba(232, 169, 144, 0.3));
}

.hero__wordmark {
    font-family: 'Fraunces', serif;
    font-size: clamp(3.8rem, 10vw, 6.5rem);
    font-weight: 700;
    letter-spacing: -0.04em;
    line-height: 1;
    color: var(--text-primary);
}

/* Tagline — the brand's voice */
.hero__tagline {
    font-family: 'Fraunces', serif;
    font-size: clamp(1.3rem, 3vw, 1.8rem);
    font-weight: 400;
    color: var(--text-secondary);
    letter-spacing: -0.01em;
    line-height: 1.3;
    margin-bottom: 16px;
}

.hero__subheadline {
    font-size: clamp(1rem, 1.8vw, 1.15rem);
    color: var(--text-tertiary);
    max-width: 480px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

.hero__cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Scroll indicator — subtle line */
.scroll-indicator {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--text-tertiary);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.scroll-indicator__line {
    width: 1px;
    height: 36px;
    background: var(--text-tertiary);
    opacity: 0.3;
    position: relative;
    overflow: hidden;
}

.scroll-indicator__line::after {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 50%;
    background: var(--sage);
    animation: scroll-line 2.4s var(--ease-apple) infinite;
}

@keyframes scroll-line {
    0% { top: -50%; }
    100% { top: 150%; }
}
