.page-hero{

    position:relative;

    height:65vh;

    min-height:500px;

    overflow:hidden;

    display:flex;

    align-items:center;
}

.hero-bg{

    position:absolute;

    inset:0;

    z-index:1;
}

.hero-bg img{

    width:100%;

    height:100%;

    object-fit:cover;

    animation:heroZoom 20s linear infinite;
}

.hero-overlay{

    position:absolute;

    inset:0;

    background:
    linear-gradient(
        rgba(0,0,0,.55),
        rgba(0,0,0,.55)
    );

    z-index:2;
}

.page-hero .container{

    position:relative;

    z-index:3;
}
.page-hero-content{

    max-width:800px;

    color:white;
}

.hero-label{

    display:inline-block;

    color:var(--gold);

    letter-spacing:5px;

    text-transform:uppercase;

    font-size:13px;

    font-weight:700;

    margin-bottom:20px;
}

.page-hero-content h1{

    color:white;

    font-size:clamp(2.5rem,7vw,4rem);

    line-height:1.1;

    margin-bottom:20px;
}

.hero-breadcrumb{

    display:flex;

    align-items:center;

    gap:12px;

    font-size:15px;
}

.hero-breadcrumb a{

    color:white;

    text-decoration:none;

    transition:.3s;
}

.hero-breadcrumb a:hover{

    color:var(--gold);
}

.hero-breadcrumb span{

    color:rgba(255,255,255,.8);
}
@keyframes heroZoom{

    from{
        transform:scale(1);
    }

    to{
        transform:scale(1.08);
    }
}

@media(max-width:992px){

    .page-hero{

        height:55vh;

        min-height:420px;
    }

    .page-hero-content{

        text-align:center;
    }

    .hero-breadcrumb{

        justify-content:center;
    }
}

@media(max-width:768px){

    .page-hero{

        height:50vh;

        min-height:350px;
    }

    .page-hero-content h1{

        font-size:42px;
    }

    .hero-label{

        letter-spacing:3px;
    }
}

/* ===== Section : Mot des promoteurs ===== */
/* Classes préfixées .promoter- pour rester isolées de tout autre style existant sur la page. */

.promoter-section{
    padding:110px 0;
    background:var(--ivory);
}

.promoter-wrapper{
    max-width:1240px;
    margin:0 auto;
    padding:0 60px;
    display:grid;
    grid-template-columns:1fr 0.9fr;
    gap:80px;
    align-items:center;
}

/* --- Colonne texte --- */
.promoter-left .stars{
    color:var(--gold);
    font-size:15px;
    letter-spacing:4px;
    margin-bottom:20px;
}

.promoter-subtitle{
    display:inline-flex;
    align-items:center;
    gap:14px;
    font-size:13px;
    letter-spacing:.28em;
    text-transform:uppercase;
    color:var(--gold-dark);
    margin-bottom:20px;
}
.promoter-subtitle::before{
    content:"";
    width:30px;
    height:1px;
    background:var(--gold);
}

.promoter-left h2{
    font-family:'Fraunces', serif;
    font-weight:500;
    font-size:clamp(30px, 3.4vw, 44px);
    line-height:1.16;
    color:var(--dark);
    text-transform:none;
    margin-bottom:26px;
}

.promoter-message{
    font-size:16px;
    line-height:1.95;
    color:var(--text);
    max-width:520px;
}

/* --- Colonne visuelle : slider --- */
.promoter-right{
    position:relative;
    height:520px;
}

.promoter-slider{
    position:relative;
    height:100%;
    overflow:hidden;
    box-shadow:var(--shadow);
}

.promoter-slider__track{
    display:flex;
    height:100%;
    transition:transform .8s cubic-bezier(.65,0,.35,1);
}

.promoter-slider__frame{
    position:relative;
    flex:0 0 100%;
    width:100%;
    height:100%;
    background:var(--dark-soft);
}
.promoter-slider__frame img{
    display:block;
    width:100%;
    height:100%;
    max-width:none;
    object-fit:cover;
}

.promoter-slider__arrow{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    width:44px;
    height:44px;
    border-radius:50%;
    border:1px solid rgba(255,255,255,.5);
    background:rgba(17,17,17,.25);
    color:var(--white);
    display:flex;
    align-items:center;
    justify-content:center;
    cursor:pointer;
    z-index:2;
    transition:background var(--transition), border-color var(--transition);
}
.promoter-slider__arrow:hover{
    background:var(--gold);
    border-color:var(--gold);
    color:var(--dark);
}
.promoter-slider__arrow--prev{ left:16px; }
.promoter-slider__arrow--next{ right:16px; }
.promoter-slider__arrow svg{
    width:16px;
    height:16px;
    stroke:currentColor;
    fill:none;
}

.promoter-slider__dots{
    position:absolute;
    left:0;
    right:0;
    bottom:20px;
    z-index:2;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:9px;
}

.promoter-slider__dot{
    width:7px;
    height:7px;
    border-radius:50%;
    background:rgba(255,255,255,.5);
    border:none;
    padding:0;
    cursor:pointer;
    transition:background var(--transition), transform var(--transition);
}
.promoter-slider__dot.is-active{
    background:var(--gold);
    transform:scale(1.35);
}

@media (max-width: 900px){
    .promoter-wrapper{
        grid-template-columns:1fr;
        padding:0 26px;
        gap:50px;
    }
    .promoter-right{
        height:380px;
        order:-1;
    }
}

@media (prefers-reduced-motion: reduce){
    .promoter-slider__track{ transition:none; }
}


.engagement-section{

    padding:80px 0;

    background:white;
}
.section-header{

    text-align:center;

    max-width:800px;

    margin:auto auto 80px;
}

.section-header h2{

    font-size:56px;

    margin:15px 0 20px;
}

.section-header p{

    color:#777;

    line-height:1.8;
}


.engagement-wrapper{

    display:grid;

    grid-template-columns:
    1fr 1fr;

    gap:80px;

    align-items:center;
}

.engagement-image{

    position:relative;
}

.engagement-image img{

    width:100%;

    height:700px;

    object-fit:cover;

    border-radius:25px;
}
.engagement-content{

    display:flex;

    flex-direction:column;

    gap:30px;
}
.engagement-card{

    display:flex;

    gap:25px;

    padding:30px;

    border-radius:20px;

    background:white;

    transition:.4s;

    border:1px solid #eee;
}
.engagement-card:hover{

    transform:translateY(-8px);

    box-shadow:
    0 20px 40px rgba(0,0,0,.08);

    border-color:var(--gold);
}
.engagement-card .icon{

    min-width:70px;

    width:70px;

    height:70px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    background:
    rgba(199,162,71,.1);

    color:var(--gold);

    font-size:26px;
}
.engagement-card h3{

    margin-bottom:10px;

    font-size:24px;
}

.engagement-card p{

    color:#666;

    line-height:1.8;
}
@media(max-width:992px){

    .engagement-wrapper{

        grid-template-columns:1fr;
    }

    .engagement-image img{

        height:500px;
    }

    .section-header h2{

        font-size:42px;
    }
}

@media(max-width:768px){

    .engagement-card{

        flex-direction:column;

        text-align:center;
    }

    .engagement-card .icon{

        margin:auto;
    }

    .section-header h2{

        font-size:34px;
    }
}



.reservation-cta{

    position:relative;

    padding:40px 0;

    background-image:url('/site/img/taz/5.jpg');

    background-size:cover;

    background-position:center;

    background-attachment:fixed;

    overflow:hidden;
}

.cta-overlay{

    position:absolute;

    inset:0;

    background:
    linear-gradient(
        rgba(0,0,0,.72),
        rgba(0,0,0,.72)
    );

    z-index:1;
}
.cta-content{

    position:relative;

    z-index:2;

    text-align:center;

    max-width:850px;

    margin:auto;
}
.cta-subtitle{

    display:block;

    color:var(--gold);

    text-transform:uppercase;

    letter-spacing:4px;

    font-size:14px;

    font-weight:600;

    margin-bottom:20px;
}
.cta-content h2{

    color:white;

    font-size:clamp(40px,5vw,70px);

    margin-bottom:25px;

    line-height:1.2;
}
.cta-content p{

    color:rgba(255,255,255,.85);

    font-size:18px;

    line-height:1.9;

    max-width:700px;

    margin:auto auto 45px;
}
.cta-buttons{

    display:flex;

    justify-content:center;

    gap:20px;

    flex-wrap:wrap;
}
.btn-cta-primary{

    padding:18px 40px;

    background:var(--gold);

    color:white;

    text-decoration:none;

    text-transform:uppercase;

    letter-spacing:2px;

    font-weight:600;

    transition:.4s;
}

.btn-cta-primary:hover{

    background:var(--gold-dark);

    color:white;

    transform:translateY(-3px);
}
.btn-cta-secondary{

    padding:18px 40px;

    border:1px solid rgba(255,255,255,.4);

    color:white;

    text-decoration:none;

    text-transform:uppercase;

    letter-spacing:2px;

    transition:.4s;
}

.btn-cta-secondary:hover{

    background:white;

    color:#111;
}
@media(max-width:768px){

    .reservation-cta{

        padding:90px 0;
    }

    .cta-buttons{

        flex-direction:column;
    }

    .btn-cta-primary,
    .btn-cta-secondary{

        width:100%;
    }
}

/* ===== Section : Notre Équipe ===== */

.team{
    max-width:1240px;
    margin:0 auto;
    padding:80px 60px 60px;
}

.team__head{
    max-width:620px;
    margin:0 auto 46px;
    text-align:center;
}

.team__eyebrow{
    display:inline-flex;
    align-items:center;
    gap:14px;
    font-size:13px;
    letter-spacing:.28em;
    text-transform:uppercase;
    color:var(--gold-dark);
    margin-bottom:22px;
}
.team__eyebrow::before,
.team__eyebrow::after{
    content:"";
    width:30px;
    height:1px;
    background:var(--gold);
}

.team__title{
    font-family:'Fraunces', serif;
    font-weight:500;
    font-size:clamp(30px, 3.2vw, 42px);
    line-height:1.16;
    color:var(--dark);
}
.team__title em{
    font-style:italic;
    font-weight:400;
    color:var(--gold-dark);
}

/* --- Bascule TAZ / TAZ Plus (CSS only, radios cachés) --- */
.team__switch{
    display:flex;
    justify-content:center;
    margin:0 0 56px;
}
.team input[type="radio"]{
    position:absolute;
    opacity:0;
    pointer-events:none;
}

.team__tabs{
    display:inline-flex;
    border:1px solid var(--border);
    border-radius:100px;
    padding:6px;
    gap:4px;
    background:var(--white);
}

.team__tab{
    display:inline-flex;
    flex-direction:column;
    align-items:center;
    line-height:1.1;
    padding:12px 34px;
    border-radius:100px;
    cursor:pointer;
    color:var(--text);
    transition:background var(--transition), color var(--transition);
    user-select:none;
}
.team__tab-name{
    font-family:'Fraunces', serif;
    font-weight:600;
    font-size:15px;
    letter-spacing:.03em;
}
.team__tab-sub{
    font-size:10px;
    letter-spacing:.14em;
    text-transform:uppercase;
    margin-top:2px;
    opacity:.7;
}

#team-tab-taz:checked ~ .team__switch .team__tab--taz,
#team-tab-plus:checked ~ .team__switch .team__tab--plus{
    background:var(--dark);
    color:var(--white);
}

/* --- Panneaux --- */
.team__panel{
    display:none;
}
#team-tab-taz:checked ~ .team__panels .team__panel--taz,
#team-tab-plus:checked ~ .team__panels .team__panel--plus{
    display:block;
}

.team__grid{
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:34px;
}

/* --- Carte membre --- */
.member{
    border: 1px solid rgba(0, 0, 0, 0.201);
    border-radius: 5px;
    text-align:center;
    padding-bottom: 10px;
}

.member__photo{
    position:relative;
    height:340px;
    overflow:hidden;
    background:var(--ivory);
}
.member__photo img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    filter:grayscale(45%);
    transition:filter .5s ease, transform .5s ease;
}
.member:hover .member__photo img{
    filter:grayscale(0%);
    transform:scale(1.05);
}

.member__overlay{
    position:absolute;
    inset:0;
    display:flex;
    align-items:flex-end;
    justify-content:center;
    padding-bottom:24px;
    background:linear-gradient(180deg, transparent 55%, rgba(17,17,17,.72) 100%);
    opacity:0;
    transition:opacity var(--transition);
}
.member:hover .member__overlay{
    opacity:1;
}

.member__social{
    display:flex;
    gap:12px;
}
.member__social a{
    width:36px;
    height:36px;
    border-radius:50%;
    border:1px solid rgba(255,255,255,.5);
    display:flex;
    align-items:center;
    justify-content:center;
    color:var(--white);
    transition:background var(--transition), border-color var(--transition), color var(--transition);
}
.member__social a:hover{
    background:var(--gold);
    border-color:var(--gold);
    color:var(--dark);
}
.member__social svg{
    width:15px;
    height:15px;
    stroke:currentColor;
    fill:none;
}

.member__name{
    margin-top:24px;
    font-family:'Fraunces', serif;
    font-weight:500;
    font-size:19px;
    color:var(--dark);
}

.member__role{
    margin-top:6px;
    font-size:12.5px;
    letter-spacing:.1em;
    text-transform:uppercase;
    color:var(--gold-dark);
}

.team__empty{
    text-align:center;
    padding:60px 0;
    color:var(--text);
    font-size:15px;
}

@media (max-width: 980px){
    .team__grid{
        grid-template-columns:repeat(2, 1fr);
    }
}

@media (max-width: 640px){
    .team{
        padding:90px 26px 100px;
    }
    .team__grid{
        grid-template-columns:1fr;
    }
    .team__tabs{
        width:100%;
    }
    .team__tab{
        flex:1;
        padding:12px 10px;
    }
    .member__photo{
        height:300px;
    }
}
