/* HERO MAJESTUEUX - SPLIT DESIGN - RÉFÉRENCE */
.hero {
    position: relative;
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, var(--noir) 0%, var(--noir-doux) 100%);
    margin-bottom: 0;
}

/* COLONNE GAUCHE - IMAGE PORTRAIT */
.hero-background {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.hero-background::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        transparent 0%,
        rgba(0, 0, 0, 0.4) 70%,
        var(--noir) 100%
    );
    z-index: 2;
}

.hero-background::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 120px;
    height: 100%;
    background: linear-gradient(90deg, transparent, var(--noir));
    z-index: 3;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.7) contrast(1.1) saturate(0.95);
    display: block;
}

@keyframes heroZoom {
    from { transform: scale(1.1); }
    to { transform: scale(1); }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: radial-gradient(
        circle at 30% 50%,
        rgba(184, 134, 11, 0.08) 0%,
        transparent 60%
    );
    pointer-events: none;
}

.hero-overlay::after {
    display: none;
}

/* COLONNE DROITE - CONTENU */
.hero-content {
    position: relative;
    z-index: 3;
    text-align: left;
    max-width: 700px;
    padding: 0 8% 0 6%;
    color: var(--blanc);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.hero-badge {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 400;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--champagne);
    padding: 0.9rem 2.5rem;
    border: 1px solid rgba(247, 231, 206, 0.35);
    margin-bottom: 3rem;
    opacity: 0;
    animation: fadeInUp 1.2s ease 0.4s forwards;
    position: relative;
    backdrop-filter: blur(10px);
    background: rgba(0, 0, 0, 0.15);
}

.hero-badge::before {
    content: '';
    position: absolute;
    left: -80px;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(184, 134, 11, 0.4));
}

.hero-badge::after {
    content: '◆';
    position: absolute;
    left: -16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gold);
    font-size: 8px;
    opacity: 0.7;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.8rem, 5.5vw, 5rem);
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: 0.08em;
    margin-bottom: 1.5rem;
    color: var(--blanc);
    text-transform: uppercase;
    opacity: 0;
    animation: fadeInUp 1.2s ease 0.7s forwards;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
    position: relative;
    padding-bottom: 0.8rem;
}

/* Ligne décorative dorée sous le titre - CENTRÉE */
.hero-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, var(--gold) 0%, var(--gold-shimmer) 50%, var(--gold) 100%);
    box-shadow: 0 0 12px rgba(184, 134, 11, 0.5);
    animation: lineGrow 1s ease 1.5s forwards;
    transform-origin: center;
}

@keyframes lineGrow {
    to {
        transform: translateX(-50%) scaleX(1);
    }
}

.hero-subtitle {
    font-size: clamp(0.9rem, 1.5vw, 1.1rem);
    font-weight: 300;
    letter-spacing: 0.25em;
    margin-bottom: 3.5rem;
    color: var(--champagne);
    text-transform: uppercase;
    opacity: 0;
    animation: fadeInUp 1.2s ease 1s forwards;
    max-width: 500px;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: flex-start;
    opacity: 0;
    animation: fadeInUp 1.2s ease 1.3s forwards;
}

.btn {
    padding: 1.3rem 3.8rem;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: rgba(184, 134, 11, 0.15);
    color: var(--blanc);
    border: 1.5px solid var(--gold);
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(184, 134, 11, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(184, 134, 11, 0.3), transparent);
    transition: left 0.7s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    border-color: var(--gold-shimmer);
    box-shadow: 0 12px 48px rgba(184, 134, 11, 0.4);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: var(--blanc);
    border: 1px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    border-color: var(--gold);
    box-shadow: 0 8px 32px rgba(184, 134, 11, 0.3);
}

/* HERO RESPONSIVE */
@media (max-width: 1024px) {
    .hero {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .hero-background {
        height: 50vh;
        order: 1;
    }

    .hero-background::after {
        width: 100%;
        height: 80px;
        top: auto;
        bottom: 0;
        background: linear-gradient(to bottom, transparent, var(--noir));
    }

    .hero-background::before {
        background: linear-gradient(
            to bottom,
            transparent 0%,
            rgba(0, 0, 0, 0.4) 70%,
            var(--noir) 100%
        );
    }

    .hero-content {
        order: 2;
        text-align: center;
        max-width: 100%;
        padding: 5rem 6% 3rem;
        margin: 0 auto;
        align-items: center;
    }

    .hero-badge::before {
        display: none;
    }

    .hero-badge::after {
        left: 50%;
        transform: translate(-50%, -50%);
        top: -20px;
    }

    .hero-actions {
        justify-content: center;
        width: 100%;
    }

    .hero-subtitle {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: auto;
    }

    .hero-background {
        height: 45vh;
    }

    .hero-content {
        padding: 4rem 6% 2.5rem;
    }

    .hero-badge {
        font-size: 0.6rem;
        padding: 0.7rem 2rem;
        letter-spacing: 0.3em;
    }

    .hero-title {
        font-size: clamp(2.2rem, 7vw, 3.2rem);
        margin-bottom: 1.5rem;
        letter-spacing: 0.06em;
        line-height: 1.5;
        font-weight: 400;
        padding-bottom: 0.8rem;
    }
    
    .hero-title::after {
        left: 50%;
        transform: translateX(-50%) scaleX(0);
        transform-origin: center;
    }
    
    @keyframes lineGrow {
        to {
            transform: translateX(-50%) scaleX(1);
        }
    }

    .hero-subtitle {
        font-size: 0.85rem;
        margin-bottom: 2.5rem;
    }

    .hero-actions {
        flex-direction: column;
        gap: 1.2rem;
    }

    .btn {
        font-size: 0.72rem;
        padding: 1.2rem 2.5rem;
        width: 100%;
    }
}


