@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Playfair+Display:ital,wght@0,600;1,600&display=swap');

:root{
    --bg:#08050d;
    --panel:#120d18;
    --text:#f7f2fa;
    --muted:#a99dab;
    --line:rgba(255,255,255,.11);
    --gold:#f4b447;
    --pink:#ff2fb3;
    --container:1240px;
    --header-height:64px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
    margin:0;
    background:var(--bg);
    color:var(--text);
    font-family:"DM Sans",sans-serif;
    overflow-x:hidden;
}
body.menu-open{overflow:hidden}
a{color:inherit;text-decoration:none}
img{display:block;max-width:100%}
button{font:inherit}
.container{width:min(var(--container),calc(100% - 40px));margin:auto}

/* ===== STABLE HEADER ===== */

.site-header{
    position:fixed;
    inset:0 0 auto;
    z-index:5000;
    height:var(--header-height);
    background:#09060e;
    border-bottom:1px solid rgba(255,255,255,.10);
}

.header-bar{
    position:relative;
    width:min(1240px,calc(100% - 32px));
    height:var(--header-height);
    margin:0 auto;
}

.header-left{
    position:absolute;
    left:0;
    top:0;
    height:100%;
    display:flex;
    align-items:center;
    z-index:3;
}

.header-right{
    position:absolute;
    right:0;
    top:0;
    height:100%;
    display:flex;
    align-items:center;
    z-index:3;
}

.desktop-navigation{
    display:flex;
    align-items:center;
    gap:18px;
    white-space:nowrap;
}

.desktop-navigation a{
    position:relative;
    color:#c9bfce;
    font-size:12px;
    font-weight:600;
    line-height:1;
}

.desktop-navigation a::after{
    content:"";
    position:absolute;
    left:0;
    right:0;
    bottom:-9px;
    height:1px;
    background:linear-gradient(90deg,var(--gold),var(--pink));
    transform:scaleX(0);
    transform-origin:left;
    transition:transform .2s ease;
}

.desktop-navigation a:hover,
.desktop-navigation a.active{
    color:#fff;
}

.desktop-navigation a:hover::after,
.desktop-navigation a.active::after{
    transform:scaleX(1);
}

.mobile-menu-trigger{
    display:none;
    width:36px;
    height:36px;
    border:1px solid rgba(255,255,255,.16);
    border-radius:50%;
    background:#12101a;
    padding:0;
    position:relative;
    cursor:pointer;
}

.mobile-menu-trigger span{
    position:absolute;
    left:10px;
    width:14px;
    height:1px;
    background:#fff;
    transition:top .25s ease,transform .25s ease;
}

.mobile-menu-trigger span:first-child{top:13px}
.mobile-menu-trigger span:last-child{top:20px}

.center-logo{
    position:absolute;
    left:50%;
    top:3px;
    transform:translateX(-50%);
    width:171px;
    height:171px;
    z-index:4;
}

.center-logo-frame{
    width:100%;
    height:100%;
    display:grid;
    place-items:center;
    border-radius:50%;
    background:#09060e;
    box-shadow:0 14px 34px rgba(0,0,0,.58);
}

.center-logo img{
    width:162px;
    height:162px;
    object-fit:contain;
}

.social-links{
    display:flex;
    align-items:center;
    gap:16px;
}

.social{
    width:30px;
    height:30px;
    flex:0 0 30px;
    display:grid;
    place-items:center;
    border-radius:50%;
    overflow:hidden;
    transition:transform .2s ease;
}

.social:hover{
    transform:translateY(-2px) scale(1.04);
}

.social svg{
    width:100%;
    height:100%;
    display:block;
}

.mobile-menu-overlay{
    position:fixed;
    inset:var(--header-height) 0 0;
    z-index:4999;
    background:#08050d;
    opacity:0;
    visibility:hidden;
    pointer-events:none;
    transition:opacity .22s ease,visibility .22s ease;
}

.site-header.menu-open .mobile-menu-overlay{
    opacity:1;
    visibility:visible;
    pointer-events:auto;
}

.mobile-menu-content{
    min-height:calc(100vh - var(--header-height));
    padding:46px 26px 34px;
    display:flex;
    flex-direction:column;
    justify-content:space-between;
    background:#08050d;
}

.mobile-navigation{
    display:flex;
    flex-direction:column;
    gap:20px;
}

.mobile-navigation a{
    color:#bdb2c2;
    font-size:clamp(28px,7.5vw,48px);
    font-weight:700;
    line-height:1.05;
    letter-spacing:-.04em;
}

.mobile-navigation a.active,
.mobile-navigation a:hover{
    color:#fff;
}

.mobile-language-link{
    width:46px;
    height:46px;
    display:grid;
    place-items:center;
    border:1px solid rgba(255,255,255,.16);
    border-radius:50%;
    font-size:12px;
    font-weight:700;
}

.site-header.menu-open .mobile-menu-trigger span:first-child{
    top:17px;
    transform:rotate(45deg);
}

.site-header.menu-open .mobile-menu-trigger span:last-child{
    top:17px;
    transform:rotate(-45deg);
}

@media(max-width:1180px){
    .desktop-navigation{display:none}
    .mobile-menu-trigger{display:block}
}

@media(max-width:680px){
    :root{--header-height:56px}

    .header-bar{
        width:calc(100% - 16px);
    }

    .center-logo{
        width:150px;
        height:150px;
        top:2px;
    }

    .center-logo img{
        width:144px;
        height:144px;
    }

    .mobile-menu-trigger{
        width:32px;
        height:32px;
    }

    .mobile-menu-trigger span{
        left:8px;
    }

    .mobile-menu-trigger span:first-child{top:11px}
    .mobile-menu-trigger span:last-child{top:18px}

    .site-header.menu-open .mobile-menu-trigger span:first-child,
    .site-header.menu-open .mobile-menu-trigger span:last-child{
        top:15px;
    }

    .social-links{
        gap:9px;
    }

    .social{
        width:24px;
        height:24px;
        flex-basis:24px;
    }

    .mobile-menu-content{
        padding:38px 22px 28px;
    }
}

@media(max-width:370px){
    .center-logo{
        width:138px;
        height:138px;
    }

    .center-logo img{
        width:132px;
        height:132px;
    }

    .social-links{
        gap:7px;
    }

    .social{
        width:22px;
        height:22px;
        flex-basis:22px;
    }
}

/* CONTENT */
.hero{
    min-height:100svh;
    position:relative;
    display:flex;
    align-items:center;
    overflow:hidden;
}
.hero-background{
    position:absolute;
    inset:0;
    background:
        linear-gradient(90deg,rgba(8,5,13,.98),rgba(8,5,13,.76) 42%,rgba(8,5,13,.35)),
        linear-gradient(0deg,var(--bg),transparent 35%),
        url('https://images.unsplash.com/photo-1492684223066-81342ee5ff30?auto=format&fit=crop&w=2200&q=88') center/cover;
}
.hero-content{
    position:relative;
    z-index:2;
    padding-top:80px;
    max-width:850px;
}
.eyebrow{
    display:inline-flex;
    align-items:center;
    gap:12px;
    color:#ffd978;
    text-transform:uppercase;
    letter-spacing:.2em;
    font-size:.7rem;
    font-weight:700;
}
.eyebrow::before{
    content:"";
    width:40px;
    height:1px;
    background:linear-gradient(90deg,var(--gold),var(--pink));
}
.hero h1,.page-hero h1{
    margin:24px 0;
    font-size:clamp(4rem,9vw,9rem);
    line-height:.84;
    letter-spacing:-.06em;
    text-transform:uppercase;
}
.hero h1 span,.hero h1 strong{display:block}
.hero h1 strong{
    font-family:"Playfair Display",serif;
    font-style:italic;
    text-transform:none;
    background:linear-gradient(90deg,#fff,#f1c067 50%,#ff63c9);
    -webkit-background-clip:text;
    background-clip:text;
    color:transparent;
}
.hero p,.page-hero p,.section-intro{
    max-width:680px;
    color:var(--muted);
    line-height:1.8;
}
.hero-actions{
    display:flex;
    gap:14px;
    flex-wrap:wrap;
    margin-top:34px;
}
.button{
    min-height:54px;
    padding:0 22px;
    border-radius:999px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    font-weight:700;
    font-size:.88rem;
}
.button.primary{
    color:#09060d;
    background:linear-gradient(90deg,var(--gold),#ff7b2f,var(--pink));
}
.button.secondary{
    border:1px solid var(--line);
    background:rgba(255,255,255,.04);
}
.section{padding:110px 0}
.section h2{
    font-size:clamp(3rem,6vw,6rem);
    line-height:.95;
    letter-spacing:-.05em;
    margin:20px 0;
}
.cards{
    margin-top:46px;
    display:grid;
    grid-template-columns:1.35fr .8fr;
    grid-template-rows:310px 310px;
    gap:18px;
}
.card{
    position:relative;
    overflow:hidden;
    border:1px solid var(--line);
}
.card-large{grid-row:1/3}
.card-image{
    position:absolute;
    inset:0;
    background-size:cover;
    background-position:center;
    transition:transform .6s ease;
}
.card:hover .card-image{transform:scale(1.035)}
.image-one{background-image:linear-gradient(0deg,rgba(8,5,13,.85),transparent 60%),url('https://images.unsplash.com/photo-1514525253161-7a46d19cd819?auto=format&fit=crop&w=1500&q=85')}
.image-two{background-image:linear-gradient(0deg,rgba(8,5,13,.85),transparent 60%),url('https://images.unsplash.com/photo-1506157786151-b8491531f063?auto=format&fit=crop&w=1000&q=85')}
.image-three{background-image:linear-gradient(0deg,rgba(8,5,13,.85),transparent 60%),url('https://images.unsplash.com/photo-1519671482749-fd09be7ccebf?auto=format&fit=crop&w=1000&q=85')}
.card-content{
    position:absolute;
    inset:auto 0 0;
    padding:24px;
}
.card-content small{color:#8f8294}
.card-content h3{
    font-size:clamp(1.8rem,4vw,4rem);
    margin:10px 0 0;
    letter-spacing:-.04em;
}
.page-hero{
    padding:190px 0 90px;
    border-bottom:1px solid var(--line);
}
.placeholder{
    min-height:420px;
    border:1px solid var(--line);
    display:grid;
    place-items:center;
    align-content:center;
    text-align:center;
}
.placeholder span{color:var(--gold);font-size:2rem}
.placeholder h2{font-size:clamp(2rem,5vw,4rem)}
.footer{
    border-top:1px solid var(--line);
    padding:46px 0;
}
.footer-inner{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:24px;
    color:#7f7484;
    font-size:.8rem;
}
.footer img{width:90px}

@media(max-width:680px){
    .container{width:min(var(--container),calc(100% - 16px))}
    .topbar{height:56px}
    .topbar-inner{
        height:56px;
        grid-template-columns:minmax(0,1fr) 72px minmax(0,1fr);
    }
    .topbar-logo{width:70px;height:70px;top:2px}
    .topbar-logo img{width:66px;height:66px}
    .social-icons{gap:2px}
    .social-icons a{
        width:23px;
        height:23px;
        border:0;
        background:transparent;
    }
    .social-icons svg{width:12px;height:12px}
    .mobile-menu-button{width:32px;height:32px}
    .mobile-menu-button span{left:8px}
    .mobile-menu-button span:first-child{top:11px}
    .mobile-menu-button span:last-child{top:18px}
    .topbar.menu-open .mobile-menu-button span:first-child,
    .topbar.menu-open .mobile-menu-button span:last-child{top:15px}
    .mobile-drawer{inset:56px 0 0}
    .hero h1{font-size:clamp(3.6rem,18vw,6.5rem)}
    .cards{grid-template-columns:1fr;grid-template-rows:460px 300px 300px}
    .card-large{grid-row:auto}
    .footer-inner{display:block}
    .footer-inner span{display:block;margin-top:18px}
}
@media(max-width:370px){
    .topbar-inner{grid-template-columns:minmax(0,1fr) 64px minmax(0,1fr)}
    .topbar-logo{width:64px;height:64px}
    .topbar-logo img{width:60px;height:60px}
    .social-icons{gap:0}
    .social-icons a{width:20px;height:20px}
    .social-icons svg{width:10px;height:10px}
}


/* ===== HOMEPAGE MAGAZINE V1 ===== */
.home-section{padding:110px 0;overflow:hidden}
.home-section:nth-of-type(even){background:#0b0710}
.home-section-head{display:grid;grid-template-columns:1fr minmax(300px,520px);align-items:end;gap:50px;margin-bottom:42px}
.home-section-head h2,.home-feature h2,.habibi-panel h2{
    margin:18px 0 0;
    font-size:clamp(2.8rem,6vw,6rem);
    line-height:.95;
    letter-spacing:-.055em;
}
.home-section-head p,.home-feature p,.habibi-panel p{color:var(--muted);line-height:1.8;margin:0}

.carousel-shell{position:relative}
.horizontal-carousel{
    display:flex;
    gap:18px;
    overflow-x:auto;
    scroll-snap-type:x mandatory;
    scrollbar-width:none;
    scroll-behavior:smooth;
    padding:4px 2px 20px;
}
.horizontal-carousel::-webkit-scrollbar{display:none}
.carousel-arrow{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    width:48px;
    height:48px;
    border:1px solid rgba(255,255,255,.15);
    border-radius:50%;
    background:rgba(8,5,13,.88);
    color:#fff;
    font-size:2rem;
    display:grid;
    place-items:center;
    cursor:pointer;
    z-index:5;
}
.carousel-arrow.previous{left:-22px}
.carousel-arrow.next{right:-22px}

.event-poster{
    flex:0 0 min(310px,78vw);
    aspect-ratio:3/4;
    padding:0;
    border:1px solid var(--line);
    background:#120d18;
    position:relative;
    overflow:hidden;
    scroll-snap-align:start;
    cursor:pointer;
    color:#fff;
    text-align:left;
}
.event-poster img{width:100%;height:100%;object-fit:cover;transition:transform .5s ease}
.event-poster:hover img{transform:scale(1.035)}
.event-poster-overlay{
    position:absolute;
    inset:auto 0 0;
    padding:24px 20px;
    display:flex;
    flex-direction:column;
    gap:7px;
    background:linear-gradient(0deg,rgba(6,3,9,.96),rgba(6,3,9,.08));
}
.event-poster-overlay small{color:#ffd978;text-transform:uppercase;letter-spacing:.1em;font-size:.68rem}
.event-poster-overlay strong{font-size:1.55rem;line-height:1.05}
.event-poster-overlay em{font-style:normal;color:#c2b7c6;font-size:.85rem}

.place-card{
    flex:0 0 min(390px,84vw);
    height:480px;
    position:relative;
    overflow:hidden;
    border:1px solid var(--line);
    scroll-snap-align:start;
}
.place-card img{width:100%;height:100%;object-fit:cover;transition:transform .5s ease}
.place-card:hover img{transform:scale(1.035)}
.place-card:after{content:"";position:absolute;inset:0;background:linear-gradient(0deg,rgba(7,4,11,.92),transparent 60%)}
.place-card span{position:absolute;z-index:2;left:24px;right:24px;bottom:24px}
.place-card small{display:block;color:#ffd978;text-transform:uppercase;letter-spacing:.12em;font-size:.68rem;margin-bottom:8px}
.place-card strong{font-size:2rem;letter-spacing:-.035em}

.home-feature{
    min-height:720px;
    position:relative;
    display:flex;
    align-items:center;
    overflow:hidden;
    border-top:1px solid var(--line);
}
.home-feature-image{position:absolute;inset:0;background-size:cover;background-position:center}
.home-feature:after{content:"";position:absolute;inset:0;background:linear-gradient(90deg,rgba(8,5,13,.96),rgba(8,5,13,.7) 48%,rgba(8,5,13,.25))}
.home-feature-guide:after{background:linear-gradient(270deg,rgba(8,5,13,.96),rgba(8,5,13,.7) 48%,rgba(8,5,13,.25))}
.home-feature-gallery .home-feature-image{background-image:url('https://images.unsplash.com/photo-1501386761578-eac5c94b800a?auto=format&fit=crop&w=2000&q=88')}
.home-feature-guide .home-feature-image{background-image:url('https://images.unsplash.com/photo-1519671282429-b44660ead0a7?auto=format&fit=crop&w=2000&q=88')}
.home-feature-articles .home-feature-image{background-image:url('https://images.unsplash.com/photo-1529139574466-a303027c1d8b?auto=format&fit=crop&w=2000&q=88')}
.home-feature-content{position:relative;z-index:2;max-width:1240px}
.home-feature-content>*{max-width:660px}
.home-feature-content.align-right{display:flex;flex-direction:column;align-items:flex-end;text-align:left}
.home-feature-content.align-right>*{width:min(660px,100%)}
.home-feature-content .button{margin-top:26px;width:max-content}

.habibi-section{padding:110px 0}
.habibi-panel{
    padding:60px;
    border:1px solid var(--line);
    background:
      radial-gradient(circle at 90% 10%,rgba(37,211,102,.15),transparent 30%),
      linear-gradient(135deg,#120d18,#0b0710);
    display:grid;
    grid-template-columns:1fr auto;
    gap:50px;
    align-items:center;
}
.habibi-panel>div:first-child{max-width:760px}
.habibi-actions{display:flex;gap:12px;flex-wrap:wrap;justify-content:flex-end}
.whatsapp-button{background:#25D366;color:#06140b}

.event-modal{
    position:fixed;
    inset:0;
    z-index:9000;
    display:none;
    align-items:center;
    justify-content:center;
    padding:20px;
}
.event-modal.open{display:flex}
.event-modal-backdrop{position:absolute;inset:0;background:rgba(0,0,0,.88);backdrop-filter:blur(10px)}
.event-modal-dialog{
    position:relative;
    z-index:2;
    width:min(980px,100%);
    max-height:calc(100vh - 40px);
    display:grid;
    grid-template-columns:minmax(280px,440px) 1fr;
    background:#0e0914;
    border:1px solid rgba(255,255,255,.15);
    overflow:hidden;
    box-shadow:0 30px 90px rgba(0,0,0,.65);
}
.event-modal-media{min-height:620px;background:#08050d}
.event-modal-media img{width:100%;height:100%;object-fit:cover}
.event-modal-content{padding:48px;align-self:center}
.event-modal-content small{color:#ffd978;text-transform:uppercase;letter-spacing:.12em}
.event-modal-content h2{font-size:clamp(2.4rem,5vw,4.8rem);line-height:.94;letter-spacing:-.05em;margin:18px 0}
.event-modal-content p{color:var(--muted);font-size:1.05rem}
.event-modal-actions{display:flex;gap:12px;flex-wrap:wrap;margin-top:30px}
.event-modal-close{
    position:absolute;right:16px;top:16px;z-index:5;
    width:42px;height:42px;border:1px solid var(--line);border-radius:50%;
    background:rgba(8,5,13,.9);color:#fff;font-size:1.7rem;cursor:pointer;
}
.event-modal-nav{
    position:absolute;top:50%;transform:translateY(-50%);z-index:5;
    width:44px;height:44px;border:1px solid var(--line);border-radius:50%;
    background:rgba(8,5,13,.9);color:#fff;font-size:2rem;cursor:pointer;
}
.event-modal-nav.previous{left:12px}
.event-modal-nav.next{right:12px}

@media(max-width:900px){
    .home-section-head{grid-template-columns:1fr;gap:18px}
    .habibi-panel{grid-template-columns:1fr;padding:44px 30px}
    .habibi-actions{justify-content:flex-start}
    .event-modal-dialog{grid-template-columns:1fr;overflow-y:auto}
    .event-modal-media{min-height:auto;height:min(54vh,520px)}
    .event-modal-content{padding:30px}
}

@media(max-width:680px){
    .home-section{padding:78px 0}
    .carousel-arrow{display:none}
    .event-poster{flex-basis:78vw}
    .place-card{flex-basis:84vw;height:430px}
    .home-feature{min-height:620px}
    .home-feature:after,.home-feature-guide:after{background:linear-gradient(0deg,rgba(8,5,13,.98),rgba(8,5,13,.38) 72%)}
    .home-feature-content,.home-feature-content.align-right{align-self:flex-end;padding-bottom:54px;align-items:flex-start;text-align:left}
    .habibi-section{padding:78px 0}
    .habibi-panel{padding:34px 22px}
    .habibi-actions{display:grid}
    .habibi-actions .button{width:100%}
    .event-modal{padding:0}
    .event-modal-dialog{width:100%;height:100%;max-height:none;border:0}
    .event-modal-media{height:52vh}
    .event-modal-content{padding:24px 20px 34px}
    .event-modal-nav{top:26vh}
}

body.modal-open{overflow:hidden}


/* ===== HOMEPAGE V2 — PREMIUM REFINEMENT ===== */

.hero{
    min-height:100svh;
    padding-top:120px;
    align-items:flex-start;
}

.hero-content{
    padding-top:90px;
    padding-bottom:90px;
    max-width:980px;
}

.hero .eyebrow{
    font-size:.66rem;
    letter-spacing:.19em;
}

.hero h1{
    margin:18px 0 20px;
    font-size:clamp(3.6rem,7.8vw,7.8rem);
    line-height:.86;
    max-width:900px;
}

.hero p{
    max-width:720px;
    font-size:1rem;
    line-height:1.75;
    margin:0;
}

.hero-actions-five{
    display:flex;
    flex-wrap:wrap;
    gap:12px;
    margin-top:30px;
    max-width:940px;
}

.hero-actions-five .button{
    min-height:50px;
    padding:0 19px;
    font-size:.82rem;
}

.hero-actions-five .stay-button{
    background:#25D366;
    color:#06140b;
}

.home-section{
    padding:96px 0;
}

.home-section-head{
    grid-template-columns:minmax(0,1.15fr) minmax(320px,.85fr);
    gap:70px;
    margin-bottom:38px;
}

.home-section-head h2,
.home-feature h2,
.habibi-panel h2{
    font-size:clamp(2.8rem,5.2vw,5.4rem);
}

.event-poster{
    flex-basis:min(290px,76vw);
}

.place-card{
    flex-basis:min(360px,82vw);
    height:450px;
}

.home-feature{
    min-height:680px;
}

.home-feature-content{
    padding-top:80px;
    padding-bottom:80px;
}

.home-feature-content p{
    max-width:600px;
}

.habibi-panel{
    padding:54px;
    grid-template-columns:minmax(0,1fr) auto;
}

.desktop-navigation{
    gap:16px;
}

.desktop-navigation a{
    font-size:11px;
}

@media(max-width:1180px){
    .hero{
        padding-top:100px;
    }
    .hero-content{
        padding-top:80px;
    }
}

@media(max-width:900px){
    .hero{
        min-height:auto;
        padding-top:110px;
    }

    .hero-content{
        padding-top:70px;
        padding-bottom:80px;
    }

    .home-section-head{
        grid-template-columns:1fr;
        gap:16px;
    }

    .home-feature{
        min-height:620px;
    }
}

@media(max-width:680px){
    .hero{
        padding-top:98px;
        min-height:auto;
    }

    .hero-content{
        padding-top:64px;
        padding-bottom:64px;
    }

    .hero .eyebrow{
        font-size:.6rem;
        max-width:88%;
    }

    .hero h1{
        font-size:clamp(3.2rem,16vw,5.5rem);
        margin:16px 0 18px;
        max-width:100%;
    }

    .hero p{
        font-size:.95rem;
        line-height:1.7;
        max-width:94%;
    }

    .hero-actions-five{
        display:grid;
        grid-template-columns:1fr 1fr;
        gap:10px;
        margin-top:26px;
    }

    .hero-actions-five .button{
        width:100%;
        min-height:48px;
        padding:0 12px;
        text-align:center;
        font-size:.76rem;
    }

    .hero-actions-five .stay-button{
        grid-column:1 / -1;
    }

    .home-section{
        padding:72px 0;
    }

    .home-section-head h2,
    .home-feature h2,
    .habibi-panel h2{
        font-size:clamp(2.5rem,12vw,4.2rem);
    }

    .event-poster{
        flex-basis:76vw;
    }

    .place-card{
        flex-basis:82vw;
        height:410px;
    }

    .home-feature{
        min-height:590px;
    }

    .home-feature-content{
        padding-top:60px;
        padding-bottom:48px;
    }

    .habibi-panel{
        padding:30px 20px;
    }
}

@media(max-width:390px){
    .hero-actions-five{
        grid-template-columns:1fr;
    }

    .hero-actions-five .stay-button{
        grid-column:auto;
    }

    .hero h1{
        font-size:3rem;
    }
}

/* Étape 3 — Magazine, reportages et médiathèque */
.editorial-list{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:28px}.editorial-card{display:grid;grid-template-columns:minmax(180px,42%) 1fr;min-height:260px;background:rgba(17,13,22,.94);border:1px solid rgba(224,181,105,.2);border-radius:18px;overflow:hidden}.editorial-card>img{width:100%;height:100%;min-height:260px;object-fit:cover}.editorial-card>div{padding:26px;display:flex;flex-direction:column;justify-content:center}.editorial-card small{color:#dfb46b;text-transform:uppercase;letter-spacing:.14em}.editorial-card h2{margin:.65rem 0;font-size:clamp(1.35rem,2vw,2rem)}.editorial-card p{color:#c7becd;line-height:1.7}.editorial-card time{margin-top:auto;color:#948a9c;font-size:.85rem}.media-gallery-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:22px}.media-gallery-card{position:relative;margin:0;background:#17131d;border:1px solid rgba(224,181,105,.18);border-radius:16px;overflow:hidden}.media-gallery-card img{display:block;width:100%;aspect-ratio:4/3;object-fit:cover}.media-gallery-card>a{display:block;position:relative}.media-gallery-card figcaption{padding:16px}.media-gallery-card figcaption p{margin:.45rem 0 0;color:#b9afc0}.play-badge{position:absolute;inset:50% auto auto 50%;transform:translate(-50%,-50%);display:grid;place-items:center;width:58px;height:58px;border-radius:50%;background:rgba(0,0,0,.7);color:#fff;font-size:22px}@media(max-width:900px){.editorial-list{grid-template-columns:1fr}.media-gallery-grid{grid-template-columns:repeat(2,minmax(0,1fr))}}@media(max-width:620px){.editorial-card{grid-template-columns:1fr}.editorial-card>img{height:220px;min-height:0}.media-gallery-grid{grid-template-columns:1fr}}

.simple-public-header{display:flex;gap:24px;padding:18px 5%;background:#08050d}.simple-public-header a{color:#fff}.narrow{max-width:900px}.longform-article{padding:80px 0}.longform-article h1{font-size:clamp(2.2rem,6vw,5rem)}.lead{font-size:1.25rem}.detail-cover{width:100%;margin:30px 0}.article-body{font-size:1.08rem;line-height:1.9}.site-search{display:flex;gap:10px}.site-search input{flex:1;padding:15px}.site-search button{padding:15px 22px}


/* Dynamic Guide directory */
.guide-hero{padding:170px 0 70px;background:radial-gradient(circle at 50% 0,rgba(152,65,255,.22),transparent 42%),linear-gradient(180deg,#0d0815,#08050d)}
.guide-hero h1{max-width:900px;margin:12px 0 18px;font-size:clamp(2.8rem,7vw,6.8rem);line-height:.94;letter-spacing:-.055em;text-transform:uppercase}
.guide-hero p{max-width:760px;font-size:1.08rem;line-height:1.75;color:rgba(255,255,255,.72)}
.guide-directory{padding:0 0 100px;background:#08050d}
.guide-filter-panel{position:sticky;top:82px;z-index:20;padding:22px;margin-bottom:34px;background:rgba(15,10,24,.93);border:1px solid rgba(255,255,255,.1);border-radius:22px;box-shadow:0 20px 60px rgba(0,0,0,.35);backdrop-filter:blur(18px)}
.guide-search-wrap{display:flex;align-items:center;gap:12px;margin-bottom:16px;padding:0 16px;border:1px solid rgba(255,255,255,.14);border-radius:14px;background:rgba(255,255,255,.04)}
.guide-search-wrap span{font-size:1.5rem;opacity:.6}.guide-search-wrap input{width:100%;padding:16px 0;border:0;outline:0;background:transparent;color:#fff;font:inherit}.guide-search-wrap input::placeholder{color:rgba(255,255,255,.45)}
.guide-filter-row{display:flex;flex-wrap:wrap;gap:10px;align-items:end}.guide-filter-control{min-width:150px;flex:1;display:flex;flex-direction:column;gap:6px}.guide-filter-control>span{padding-left:4px;font-size:.67rem;letter-spacing:.15em;text-transform:uppercase;color:rgba(255,255,255,.5)}.guide-filter-control select{width:100%;min-height:46px;padding:0 38px 0 14px;border:1px solid rgba(255,255,255,.14);border-radius:999px;background:#15101f;color:#fff;outline:0;cursor:pointer}.guide-sort{max-width:210px}.guide-reset{min-height:46px;padding:0 18px;border:1px solid rgba(255,255,255,.14);border-radius:999px;background:transparent;color:#fff;cursor:pointer}.guide-reset:hover{background:rgba(255,255,255,.08)}
.guide-results-head{display:flex;justify-content:space-between;align-items:center;margin:0 0 18px;color:rgba(255,255,255,.7)}.guide-results-head strong{font-size:.82rem;letter-spacing:.12em;text-transform:uppercase}
.guide-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:24px}.guide-venue-card{overflow:hidden;border:1px solid rgba(255,255,255,.1);border-radius:24px;background:linear-gradient(180deg,rgba(255,255,255,.055),rgba(255,255,255,.025));box-shadow:0 18px 50px rgba(0,0,0,.25);transition:transform .25s ease,border-color .25s ease,box-shadow .25s ease}.guide-venue-card:hover{transform:translateY(-5px);border-color:rgba(196,132,255,.38);box-shadow:0 26px 70px rgba(0,0,0,.38)}.guide-venue-card[hidden]{display:none!important}
.guide-venue-media{position:relative;aspect-ratio:4/3;overflow:hidden;background:#15101f}.guide-venue-media img{width:100%;height:100%;object-fit:cover;transition:transform .5s ease}.guide-venue-card:hover .guide-venue-media img{transform:scale(1.035)}.guide-image-placeholder{display:grid;place-items:center;width:100%;height:100%;font-size:3rem;color:rgba(255,255,255,.25)}.guide-featured-badge,.guide-type-badge{position:absolute;top:14px;padding:8px 11px;border-radius:999px;font-size:.68rem;font-weight:700;letter-spacing:.08em;text-transform:uppercase;backdrop-filter:blur(12px)}.guide-featured-badge{left:14px;background:rgba(107,37,171,.88);color:#fff}.guide-type-badge{right:14px;background:rgba(5,3,8,.75);color:#fff;border:1px solid rgba(255,255,255,.12)}
.guide-venue-body{padding:22px}.guide-venue-topline{display:flex;flex-wrap:wrap;gap:7px;margin-bottom:10px;font-size:.78rem;color:#cda9ef}.guide-venue-body h2{margin:0 0 10px;font-size:1.65rem;line-height:1.05}.guide-venue-body p{min-height:3.3em;margin:0;color:rgba(255,255,255,.65);line-height:1.65}.guide-venue-meta{display:flex;flex-wrap:wrap;gap:8px;margin:18px 0}.guide-venue-meta span{padding:7px 10px;border-radius:999px;background:rgba(255,255,255,.06);font-size:.72rem;color:rgba(255,255,255,.78)}.guide-venue-actions{display:flex;gap:9px;flex-wrap:wrap}.guide-venue-actions .button{flex:1;min-width:120px;text-align:center}.guide-empty{padding:90px 20px;text-align:center;color:rgba(255,255,255,.62)}.guide-empty span{display:block;font-size:2rem;margin-bottom:12px}
@media(max-width:1050px){.guide-grid{grid-template-columns:repeat(2,minmax(0,1fr))}.guide-filter-panel{top:72px}}
@media(max-width:700px){.guide-hero{padding:135px 0 50px}.guide-filter-panel{position:relative;top:auto;padding:15px;border-radius:18px}.guide-filter-row{display:grid;grid-template-columns:1fr 1fr}.guide-filter-control,.guide-sort{min-width:0;max-width:none}.guide-reset{grid-column:1/-1}.guide-grid{grid-template-columns:1fr;gap:18px}.guide-venue-body p{min-height:0}.guide-venue-actions .button{width:100%}}
@media(max-width:430px){.guide-filter-row{grid-template-columns:1fr}}
