/* ============================================
   LANDING PAGES SEO — B.EVENT
   Styles spécifiques aux pages d'atterrissage
   ============================================ */

/* --- Nav scrolled init (landing pages sans hero vidéo plein écran) --- */
.nav--scrolled-init .nav__logo-text {
    color: var(--text);
}

.nav--scrolled-init .nav__links a {
    color: var(--text);
}

.nav--scrolled-init .nav__toggle span {
    background-color: var(--text);
}

.nav--scrolled-init .nav__lang-btn {
    border-color: rgba(26, 26, 26, 0.15);
}

.nav--scrolled-init .nav__lang-btn--active {
    border-color: rgba(26, 26, 26, 0.4);
}

/* ============================================
   LANDING HERO — Image plein écran + titre
   ============================================ */
.landing-hero {
    position: relative;
    height: 70vh;
    min-height: 500px;
    max-height: 700px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
}

/* Landing hero variant — vidéo + logo (comme accueil) */
.landing-hero--video {
    height: 100vh;
    max-height: none;
    align-items: center;
}

.landing-hero__video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.landing-hero__content--full {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 0;
}

.landing-hero__logo {
    height: clamp(140px, 22vw, 260px);
    width: auto;
    margin-bottom: 16px;
}

.landing-hero__line {
    display: flex;
    align-items: center;
    justify-content: center;
    width: clamp(120px, 20vw, 240px);
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    margin-bottom: 28px;
    position: relative;
}

.landing-hero__line span {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.6);
    flex-shrink: 0;
}

.landing-hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.landing-hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.landing-hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    padding: 0 var(--container-pad) clamp(48px, 6vw, 80px);
    max-width: 800px;
}

.landing-hero__title {
    font-family: var(--font-title);
    font-size: clamp(28px, 4.5vw, 52px);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
}

.landing-hero__title em {
    font-style: italic;
    color: #C9A96E;
}

.landing-hero__subtitle {
    font-family: var(--font-body);
    font-size: clamp(14px, 1.6vw, 17px);
    font-weight: 300;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Breadcrumb */
.landing-breadcrumb {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 24px;
}

.landing-breadcrumb a {
    color: rgba(255, 255, 255, 0.5);
    transition: color var(--transition);
}

.landing-breadcrumb a:hover {
    color: #fff;
}

.landing-breadcrumb span {
    margin: 0 6px;
}

/* ============================================
   LANDING INTRO — Texte + Image
   ============================================ */
.landing-intro {
    background:
        linear-gradient(
            150deg,
            var(--bg) 0%,
            var(--bg) 15%,
            var(--beige) 15%,
            var(--beige) 40%,
            var(--bg) 40%,
            var(--bg) 55%,
            var(--beige) 55%,
            var(--beige) 80%,
            var(--bg) 80%,
            var(--bg) 95%
        );
}

.landing-intro__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 6vw, 100px);
    align-items: center;
}

.landing-intro .section__title em,
.landing-faq .section__title em {
    color: #C9A96E;
}

.landing-intro__text .section__label {
    text-align: left;
}

.landing-intro__text .section__title {
    text-align: left;
    margin-bottom: 28px;
    font-size: clamp(26px, 4vw, 44px);
}

.landing-intro__lead {
    font-family: var(--font-title);
    font-size: clamp(19px, 2.2vw, 23px);
    font-weight: 500;
    line-height: 1.55;
    color: var(--text);
    margin-bottom: 20px;
}

.landing-intro__text p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 16px;
}

.landing-intro__text strong {
    font-weight: 500;
    color: var(--text);
}

.landing-intro__media {
    overflow: hidden;
}

.landing-intro__media img,
.landing-intro__media video {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    display: block;
}

/* ============================================
   LANDING PRESTATIONS — Grid de cartes
   ============================================ */
.landing-prestations__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.landing-presta-card {
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: clamp(28px, 3vw, 40px);
    transition: border-color var(--transition), background-color var(--transition);
}

.landing-presta-card:hover {
    border-color: rgba(255, 255, 255, 0.25);
    background-color: rgba(255, 255, 255, 0.04);
}

.landing-presta-card__icon {
    width: 36px;
    height: 36px;
    color: #C9A96E;
    margin-bottom: 20px;
}

.landing-presta-card__icon svg {
    width: 100%;
    height: 100%;
}

.landing-presta-card h3 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(20px, 2vw, 26px);
    font-weight: 400;
    font-style: italic;
    color: #fff;
    margin-bottom: 12px;
}

.landing-presta-card p {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.55);
}

/* ============================================
   ZONES D'INTERVENTION — Tags géographiques
   ============================================ */
.landing-zones {
    text-align: center;
}

.landing-zones .section__title {
    margin-bottom: 20px;
}

.landing-zones__intro {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
    max-width: 680px;
    margin: 0 auto 40px;
}

.landing-zones__intro strong {
    font-weight: 500;
    color: var(--text);
}

.landing-zones__grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    max-width: 800px;
    margin: 0 auto;
}

.landing-zone-tag {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.06em;
    padding: 12px 24px;
    border: 1px solid rgba(26, 26, 26, 0.12);
    color: var(--text);
    transition: all var(--transition);
}

.landing-zone-tag:hover {
    background-color: var(--text);
    color: var(--white);
    border-color: var(--text);
}

/* ============================================
   FAQ — Accordéon
   ============================================ */
.landing-faq {
    background-color: var(--bg);
}

.landing-faq__list {
    max-width: 760px;
    margin: 0 auto;
}

.landing-faq__item {
    border-bottom: 1px solid rgba(26, 26, 26, 0.1);
}

.landing-faq__question {
    font-family: var(--font-body);
    font-size: clamp(15px, 1.6vw, 17px);
    font-weight: 400;
    color: var(--text);
    padding: 24px 0;
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    transition: color var(--transition);
}

.landing-faq__question::-webkit-details-marker {
    display: none;
}

.landing-faq__question::after {
    content: '+';
    font-size: 22px;
    font-weight: 300;
    color: var(--taupe);
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.landing-faq__item[open] .landing-faq__question::after {
    content: '-';
}

.landing-faq__question:hover {
    color: var(--text);
}

.landing-faq__answer {
    padding: 0 0 24px;
}

.landing-faq__answer p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-light);
}

.landing-faq__answer a {
    color: var(--text);
    border-bottom: 1px solid var(--taupe);
    transition: border-color var(--transition);
}

.landing-faq__answer a:hover {
    border-color: var(--text);
}

.landing-faq__answer strong {
    font-weight: 500;
    color: var(--text);
}

/* ============================================
   RESPONSIVE — Landing pages
   ============================================ */
@media (max-width: 1024px) {
    .landing-prestations__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .landing-hero {
        height: 60vh;
        min-height: 400px;
    }

    .landing-hero--video {
        height: 100vh;
        min-height: 500px;
    }

    .landing-hero__logo {
        height: clamp(140px, 28vw, 220px);
    }

    .landing-intro__grid {
        grid-template-columns: 1fr;
    }

    .landing-intro__media {
        order: -1;
    }

    .landing-intro__media img,
    .landing-intro__media video {
        aspect-ratio: 9 / 12;
    }

    .landing-intro__text .section__title,
    .landing-intro__text .section__label {
        text-align: center;
    }

    .landing-prestations__grid {
        grid-template-columns: 1fr;
    }
}
