/* ═══════════════════════════════════════════
   Landing Hero — Mosaic Photo Grid + Radial Vignette
═══════════════════════════════════════════ */

.landing-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--bg-warm);
}

/* Radial vignette overlay — keeps text readable over photos */
.landing-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 10;
    background: radial-gradient(
        ellipse 55% 60% at 50% 48%,
        rgba(249, 247, 243, 0.95) 0%,
        rgba(249, 247, 243, 0.75) 40%,
        rgba(249, 247, 243, 0.25) 70%,
        transparent 100%
    );
    pointer-events: none;
}

/* ── Mosaic: 3×2 grid with gaps and rounded corners ── */
.mosaic {
    position: absolute;
    inset: 2rem;
    z-index: 1;
    pointer-events: none;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 1rem;
}

.mosaic__piece {
    position: relative;
    overflow: hidden;
    will-change: transform, opacity;
    border-radius: 96px;
    transition: none;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    contain: layout style paint;
    transform: translateZ(0);
}

.mosaic__piece::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(201, 162, 39, 0.04);
    pointer-events: none;
    z-index: 1;
}

.mosaic__piece img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    --mosaic-target-opacity: 0.55;
    opacity: 0;
    filter: blur(12px);
    animation: mosaicReveal 1.8s ease-out forwards;
}

.mosaic__piece:nth-child(1) img { animation-delay: 0s; }
.mosaic__piece:nth-child(2) img { animation-delay: 0.2s; }
.mosaic__piece:nth-child(3) img { animation-delay: 0.12s; }
.mosaic__piece:nth-child(4) img { animation-delay: 0.3s; }
.mosaic__piece:nth-child(5) img { animation-delay: 0.08s; }
.mosaic__piece:nth-child(6) img { animation-delay: 0.25s; }

@keyframes mosaicReveal {
    to { opacity: var(--mosaic-target-opacity, 0.55); filter: blur(0); }
}

/* ── Hero Content ── */
.landing-hero__content {
    position: relative;
    z-index: 50;
    max-width: 750px;
    text-align: center;
    padding: 0 5%;
}

.landing-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.5rem 1.25rem;
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(201, 162, 39, 0.25);
    border-radius: 100px;
    margin-bottom: 2rem;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    opacity: 0;
    transform: translateY(20px);
    animation: landingFadeUp 0.8s var(--ease-out-expo) 0.3s forwards;
}

.landing-hero__badge-dot {
    width: 8px;
    height: 8px;
    background: var(--accent-gold);
    border-radius: 50%;
    box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.2);
    animation: landingDotPulse 3s ease-in-out 1.5s infinite;
}

@keyframes landingDotPulse {
    0%, 100% { box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.2); }
    50% { box-shadow: 0 0 0 7px rgba(201, 162, 39, 0); }
}

.landing-hero__badge-text {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-medium);
    letter-spacing: 0.04em;
}

.landing-hero__title {
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 5.5vw, 3.8rem);
    font-weight: 500;
    line-height: 1.12;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(24px);
    animation: landingFadeUp 0.9s var(--ease-out-expo) 0.5s forwards;
}

.landing-hero__desc {
    font-size: clamp(1rem, 1.7vw, 1.12rem);
    line-height: 1.8;
    color: var(--text-medium);
    margin: 0 auto 2.5rem;
    max-width: 620px;
    opacity: 0;
    transform: translateY(20px);
    animation: landingFadeUp 0.8s var(--ease-out-expo) 0.75s forwards;
}

.landing-hero__cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
    opacity: 0;
    transform: translateY(20px);
    animation: landingFadeUp 0.8s var(--ease-out-expo) 0.95s forwards;
}

.landing-hero__trust {
    opacity: 0;
    transform: translateY(16px);
    animation: landingFadeUp 0.8s var(--ease-out-expo) 1.15s forwards;
}

.landing-hero__trust-label {
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.landing-hero__trust-items {
    display: flex;
    gap: 1.8rem;
    justify-content: center;
    flex-wrap: wrap;
}

.landing-hero__trust-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.84rem;
    color: var(--text-medium);
}

.landing-hero__trust-icon {
    color: var(--accent-gold);
    width: 17px;
    height: 17px;
    flex-shrink: 0;
}

/* Scroll hint */
.landing-hero__scroll {
    position: absolute;
    bottom: 1.8rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    z-index: 50;
    opacity: 0;
    animation: landingFadeUp 0.7s var(--ease-out-expo) 1.5s forwards;
}

.landing-hero__scroll-text {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.landing-hero__scroll-line {
    width: 1px;
    height: 36px;
    background: linear-gradient(to bottom, var(--accent-gold), transparent);
    animation: landingScrollPulse 2.5s ease-in-out infinite;
}

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

@keyframes landingFadeUp {
    to { opacity: 1; transform: translateY(0); }
}

/* ═══════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════ */
@media (max-width: 768px) {
    .landing-hero {
        min-height: auto;
        padding: 5rem 0 3rem;
    }

    .landing-hero__badge {
        visibility: hidden;
    }

    .landing-hero__title {
        font-size: clamp(1.8rem, 7vw, 2.5rem);
    }

    .landing-hero__trust-items {
        flex-direction: column;
        align-items: center;
        gap: 0.65rem;
    }

    .landing-hero__cta {
        flex-direction: column;
        align-items: center;
    }

    .landing-hero__scroll { display: none; }
}

@media (max-width: 480px) {
    .landing-hero__title {
        font-size: clamp(1.6rem, 8vw, 2rem);
    }

}
