@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}}

.venue-hero-detail{position:relative;min-height:520px;display:flex;align-items:flex-end;overflow:hidden;background:#09070d}
.venue-hero-image{position:absolute;inset:0;width:100%;height:100%;object-fit:cover}
.venue-hero-overlay{position:absolute;inset:0;background:linear-gradient(180deg,rgba(5,3,8,.15),rgba(5,3,8,.88) 75%,#08050d)}
.venue-hero-content{position:relative;z-index:2;padding-bottom:56px}
.venue-hero-content h1{font-size:clamp(3rem,8vw,7rem);line-height:.95;margin:.35em 0 .18em}
.venue-hero-content p{max-width:760px;font-size:1.15rem;opacity:.9}
.venue-badges,.venue-actions,.venue-social-links{display:flex;flex-wrap:wrap;gap:10px}
.venue-badges span{padding:7px 11px;border:1px solid rgba(255,255,255,.22);border-radius:999px;background:rgba(0,0,0,.28)}
.venue-actions{margin-top:24px}.btn-primary,.btn-secondary{display:inline-flex;padding:13px 18px;border-radius:8px;text-decoration:none}
.btn-primary{background:#fff;color:#09070d}.btn-secondary{border:1px solid rgba(255,255,255,.25);color:#fff}
.venue-detail-grid{display:grid;grid-template-columns:minmax(0,1fr) 360px;gap:28px}.venue-main-column,.venue-sidebar{min-width:0}
.detail-panel{background:rgba(255,255,255,.035);border:1px solid rgba(255,255,255,.1);border-radius:16px;padding:24px;margin-bottom:24px}
.sticky-card{position:sticky;top:18px}.section-head{display:flex;justify-content:space-between;align-items:center;gap:16px;margin-bottom:18px}
.venue-content-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:16px}
.venue-related-card{display:grid;grid-template-columns:120px 1fr;gap:14px;border:1px solid rgba(255,255,255,.09);border-radius:12px;overflow:hidden;text-decoration:none;color:inherit;background:rgba(255,255,255,.025)}
.venue-related-card img{width:120px;height:100%;min-height:120px;object-fit:cover}.venue-related-card>div{padding:14px 14px 14px 0}
.venue-related-card h3{margin:.25em 0}.venue-related-card p{opacity:.72}.venue-related-card.muted{opacity:.72}
.venue-info-list{margin:0}.venue-info-list>div{padding:12px 0;border-bottom:1px solid rgba(255,255,255,.08)}
.venue-info-list dt{font-size:.78rem;text-transform:uppercase;letter-spacing:.08em;opacity:.55}.venue-info-list dd{margin:5px 0 0}
.venue-social-links{margin-top:18px}.venue-social-links a,.map-open-link{color:inherit}
.map-card iframe{width:100%;height:280px;border:0;border-radius:12px;margin:8px 0 12px}
@media(max-width:980px){.venue-detail-grid{grid-template-columns:1fr}.sticky-card{position:static}}
@media(max-width:720px){.venue-content-grid{grid-template-columns:1fr}.venue-related-card{grid-template-columns:96px 1fr}.venue-related-card img{width:96px}}

.guide-venue-card[data-detail-url]{cursor:pointer}.guide-venue-card[data-detail-url]:focus{outline:2px solid currentColor;outline-offset:4px}

.events-filter-bar{display:grid;grid-template-columns:2fr repeat(4,1fr) auto;gap:10px;margin-bottom:18px}
.events-filter-bar input,.events-filter-bar select,.events-filter-bar button{min-width:0;padding:13px;border-radius:9px;border:1px solid rgba(255,255,255,.14);background:#100d14;color:inherit}
.events-results-head{margin:14px 0 20px}.events-catalog-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:20px}
.event-catalog-card{display:block;color:inherit;text-decoration:none;border:1px solid rgba(255,255,255,.1);border-radius:16px;overflow:hidden;background:rgba(255,255,255,.03);transition:transform .2s ease}
.event-catalog-card:hover{transform:translateY(-4px)}.event-catalog-media{position:relative;aspect-ratio:16/11;background:#15111a}.event-catalog-media img{width:100%;height:100%;object-fit:cover}
.event-date-badge{position:absolute;left:14px;top:14px;display:grid;text-align:center;background:#fff;color:#09070d;padding:8px 11px;border-radius:10px}.event-date-badge strong{font-size:1.4rem}.event-date-badge span{text-transform:uppercase;font-size:.7rem}
.event-catalog-body{padding:18px}.event-catalog-body h2{margin:.35em 0}.event-catalog-body p{opacity:.72}.event-meta-row{display:flex;flex-wrap:wrap;gap:10px;margin-top:15px;font-size:.85rem;opacity:.8}
.event-detail-hero{position:relative;min-height:580px;display:flex;align-items:flex-end;overflow:hidden;background:#09070d}.event-detail-hero>img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover}.event-detail-content{position:relative;z-index:2;padding-bottom:60px}.event-detail-content h1{font-size:clamp(3rem,8vw,7rem);line-height:.95;margin:.25em 0}.event-detail-content p{max-width:780px;font-size:1.15rem}
@media(max-width:1100px){.events-filter-bar{grid-template-columns:repeat(3,1fr)}.events-catalog-grid{grid-template-columns:repeat(2,1fr)}}
@media(max-width:700px){.events-filter-bar{grid-template-columns:1fr}.events-catalog-grid{grid-template-columns:1fr}}

/* ===== PUBLIC PHASE 1 / HOME PREMIUM ===== */
.hero-premium{min-height:920px;display:flex;align-items:flex-end;position:relative;overflow:hidden;padding-bottom:92px}
.hero-premium .hero-background{filter:saturate(.92) contrast(1.08);transform:scale(1.015)}
.hero-premium::after{content:"";position:absolute;inset:0;background:linear-gradient(90deg,rgba(5,3,10,.92) 0%,rgba(5,3,10,.52) 52%,rgba(5,3,10,.22) 100%),linear-gradient(0deg,#08050d 0%,transparent 34%);z-index:1;pointer-events:none}
.hero-noise{position:absolute;inset:0;z-index:2;opacity:.06;pointer-events:none;background-image:url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.45'/%3E%3C/svg%3E")}
.hero-content-premium{display:grid;grid-template-columns:minmax(0,1fr) 320px;gap:70px;align-items:end;max-width:1380px;padding-top:170px}
.hero-copy{max-width:900px}
.hero-content-premium .hero-copy>p{font-size:1.08rem;max-width:650px}
.hero-content-premium h1{font-size:clamp(4.7rem,9.5vw,10rem);max-width:1000px}
.hero-night-card{align-self:end;padding:28px;border:1px solid rgba(255,255,255,.14);background:linear-gradient(145deg,rgba(20,13,29,.8),rgba(10,7,16,.62));backdrop-filter:blur(18px);border-radius:26px;box-shadow:0 28px 70px rgba(0,0,0,.25)}
.hero-night-card>span{display:block;color:#e8c878;font-size:.68rem;text-transform:uppercase;letter-spacing:.16em;margin-bottom:12px}
.hero-night-card>strong{font-family:"Playfair Display",serif;font-size:1.85rem;line-height:1.02;display:block;margin-bottom:24px}
.hero-night-links{display:grid;gap:0;border-top:1px solid rgba(255,255,255,.12)}
.hero-night-links a{display:flex;justify-content:space-between;align-items:center;padding:15px 0;border-bottom:1px solid rgba(255,255,255,.1);font-size:.85rem;color:#eee7f3}
.hero-night-links a b{color:#e8c878;font-size:1rem}
.hero-scroll-cue{position:absolute;z-index:3;left:50%;bottom:25px;transform:translateX(-50%);display:flex;align-items:center;gap:12px;color:rgba(255,255,255,.55);font-size:.65rem;text-transform:uppercase;letter-spacing:.18em}
.hero-scroll-cue i{display:block;width:46px;height:1px;background:linear-gradient(90deg,#e8c878,transparent)}
.night-pulse{position:relative;z-index:5;background:#0d0912;border-top:1px solid rgba(255,255,255,.08);border-bottom:1px solid rgba(255,255,255,.08)}
.night-pulse-grid{display:grid;grid-template-columns:repeat(4,1fr)}
.night-pulse-grid>a{min-height:155px;padding:30px 28px;display:flex;flex-direction:column;justify-content:space-between;border-right:1px solid rgba(255,255,255,.08);transition:.25s ease;background:linear-gradient(180deg,transparent,rgba(255,255,255,.01))}
.night-pulse-grid>a:first-child{border-left:1px solid rgba(255,255,255,.08)}
.night-pulse-grid>a:hover{background:linear-gradient(180deg,rgba(236,197,110,.08),rgba(255,79,181,.04));transform:translateY(-3px)}
.night-pulse small{color:#e8c878;font-size:.65rem;letter-spacing:.16em}.night-pulse strong{font-size:1.18rem}.night-pulse span{color:#9f97a7;font-size:.78rem}
.premium-head{align-items:end}.premium-head-side{max-width:480px}.premium-head-side p{margin:0 0 16px}.text-link{font-size:.82rem;text-transform:uppercase;letter-spacing:.12em;color:#e8c878;font-weight:800}
.home-events-premium{padding-top:130px}.home-event-showcase{display:grid;grid-template-columns:1.4fr .8fr .8fr;grid-template-rows:310px 310px;gap:18px;margin-top:52px}
.home-event-card{position:relative;border:0;padding:0;overflow:hidden;border-radius:26px;background:#17111e;color:#fff;text-align:left;cursor:pointer;min-height:0}
.home-event-card.featured{grid-row:1/3}.home-event-card:nth-child(n+6){display:none}.home-event-card img{width:100%;height:100%;object-fit:cover;transition:transform .55s ease,filter .4s ease}.home-event-card::after{content:"";position:absolute;inset:0;background:linear-gradient(0deg,rgba(4,2,8,.95),rgba(4,2,8,.06) 68%)}
.home-event-card:hover img{transform:scale(1.055);filter:saturate(1.08)}.home-event-card-overlay{position:absolute;z-index:2;left:0;right:0;bottom:0;padding:28px;display:flex;flex-direction:column;align-items:flex-start}.home-event-card-overlay small{color:#f1cd7a;text-transform:uppercase;letter-spacing:.12em;font-size:.66rem}.home-event-card-overlay strong{font-family:"Playfair Display",serif;font-size:1.8rem;line-height:1.05;margin:8px 0}.home-event-card.featured strong{font-size:clamp(2.4rem,4vw,4.3rem)}.home-event-card-overlay em{font-style:normal;color:#cfc7d4;font-size:.82rem}.home-event-card-overlay i{margin-top:18px;font-style:normal;font-size:.72rem;text-transform:uppercase;letter-spacing:.12em;color:#fff}
.home-guide-premium{padding-top:130px}.editorial-place-grid{display:grid;grid-template-columns:1.2fr .8fr .8fr;grid-template-rows:330px 330px;gap:18px;margin-top:52px}.editorial-place-card{position:relative;overflow:hidden;border-radius:26px;min-height:0}.editorial-place-card:first-child{grid-row:1/3}.editorial-place-card:nth-child(n+6){display:none}.editorial-place-card img{width:100%;height:100%;object-fit:cover;transition:transform .55s ease}.editorial-place-card:hover img{transform:scale(1.06)}.editorial-place-shade{position:absolute;inset:0;background:linear-gradient(0deg,rgba(5,3,10,.95),rgba(5,3,10,.08) 70%)}.editorial-place-copy{position:absolute;z-index:2;inset:auto 0 0;padding:28px;display:flex;flex-direction:column;align-items:flex-start}.editorial-place-copy small{color:#e8c878;font-size:.66rem;text-transform:uppercase;letter-spacing:.12em}.editorial-place-copy strong{font-family:"Playfair Display",serif;font-size:2rem;margin:7px 0}.editorial-place-card:first-child strong{font-size:clamp(3rem,5vw,5.2rem)}.editorial-place-copy em{font-style:normal;color:#d8d1dd;font-size:.72rem;text-transform:uppercase;letter-spacing:.12em;margin-top:10px}
.home-editorial-section{padding:140px 0;background:linear-gradient(180deg,#08050d,#0d0912 55%,#08050d)}.home-editorial-grid{display:grid;grid-template-columns:1.2fr .8fr .8fr;grid-auto-rows:310px;gap:18px;margin-top:52px}.home-story-card{position:relative;overflow:hidden;border:1px solid rgba(255,255,255,.08);border-radius:26px;background:#15101b}.home-story-card.lead-story{grid-row:span 2}.home-story-card img{width:100%;height:100%;object-fit:cover;opacity:.75;transition:transform .55s ease,opacity .35s ease}.home-story-card:hover img{transform:scale(1.05);opacity:.9}.home-story-card::after{content:"";position:absolute;inset:0;background:linear-gradient(0deg,rgba(5,3,10,.98),rgba(5,3,10,.08) 75%)}.home-story-copy{position:absolute;z-index:2;left:0;right:0;bottom:0;padding:28px}.home-story-copy small{color:#e8c878;text-transform:uppercase;letter-spacing:.12em;font-size:.64rem}.home-story-copy strong{display:block;font-family:"Playfair Display",serif;font-size:1.8rem;line-height:1.08;margin:10px 0}.lead-story .home-story-copy strong{font-size:clamp(2.7rem,4vw,4.5rem)}.home-story-copy p{color:#c5bdca;line-height:1.65;max-width:600px}.home-story-copy em{display:inline-block;font-style:normal;margin-top:10px;font-size:.7rem;text-transform:uppercase;letter-spacing:.12em}.fallback-story{background:radial-gradient(circle at 25% 20%,rgba(231,190,94,.2),transparent 35%),linear-gradient(145deg,#1e1425,#0d0912)}
.home-visual-section{position:relative;overflow:hidden;padding:145px 0;background:#0a0710}.home-visual-backdrop{position:absolute;inset:0;background:radial-gradient(circle at 70% 45%,rgba(255,60,176,.12),transparent 34%),radial-gradient(circle at 24% 40%,rgba(229,191,101,.08),transparent 30%)}.home-visual-layout{position:relative;display:grid;grid-template-columns:.7fr 1.3fr;gap:70px;align-items:center}.home-visual-copy h2{font-size:clamp(3.8rem,7vw,7.2rem);line-height:.9;margin:22px 0}.home-visual-copy p{color:#afa7b5;line-height:1.8;max-width:520px}.home-visual-mosaic{display:grid;grid-template-columns:repeat(6,1fr);grid-template-rows:repeat(6,70px);gap:14px;transform:rotate(1.2deg)}.visual-tile{margin:0;overflow:hidden;border-radius:20px;border:1px solid rgba(255,255,255,.08);box-shadow:0 24px 60px rgba(0,0,0,.25)}.visual-tile img{width:100%;height:100%;object-fit:cover}.tile-1{grid-column:1/4;grid-row:1/4}.tile-2{grid-column:4/7;grid-row:1/3}.tile-3{grid-column:4/7;grid-row:3/7}.tile-4{grid-column:1/3;grid-row:4/7}.tile-5{grid-column:3/4;grid-row:4/7}
.habibi-section-premium{padding:110px 0 140px}.habibi-panel-premium{position:relative;overflow:hidden;display:grid;grid-template-columns:120px 1fr auto;align-items:center;gap:34px;padding:50px;border:1px solid rgba(232,200,120,.22);background:radial-gradient(circle at 0 50%,rgba(232,200,120,.12),transparent 28%),linear-gradient(135deg,rgba(255,255,255,.06),rgba(255,255,255,.025))}.habibi-orbit{width:100px;height:100px;border-radius:50%;border:1px solid rgba(232,200,120,.3);display:grid;place-items:center;position:relative}.habibi-orbit::before,.habibi-orbit::after{content:"";position:absolute;border-radius:50%;border:1px solid rgba(255,255,255,.08)}.habibi-orbit::before{inset:10px}.habibi-orbit::after{inset:22px}.habibi-orbit span{font-family:"Playfair Display",serif;font-size:2.4rem;color:#e8c878}.habibi-copy h2{font-size:clamp(2.4rem,4vw,4.4rem);margin:16px 0}.habibi-copy p{max-width:690px;color:#b9b0bf;line-height:1.75}
@media (max-width:1100px){.hero-content-premium{grid-template-columns:1fr}.hero-night-card{display:none}.night-pulse-grid{grid-template-columns:repeat(2,1fr)}.home-event-showcase,.editorial-place-grid{grid-template-columns:1fr 1fr;grid-template-rows:430px 290px}.home-event-card.featured,.editorial-place-card:first-child{grid-column:1/3;grid-row:auto}.home-editorial-grid{grid-template-columns:1fr 1fr}.home-story-card.lead-story{grid-column:1/3;grid-row:auto;min-height:520px}.home-visual-layout{grid-template-columns:1fr}.habibi-panel-premium{grid-template-columns:100px 1fr}.habibi-actions{grid-column:1/3}}
@media (max-width:760px){.hero-premium{min-height:820px;padding-bottom:70px}.hero-content-premium{padding-top:150px}.hero-content-premium h1{font-size:clamp(3.7rem,17vw,6.2rem)}.hero-actions-five{display:grid;grid-template-columns:1fr 1fr}.hero-actions-five .button{min-height:48px;padding:0 14px;font-size:.74rem}.hero-actions-five .stay-button{grid-column:1/3}.night-pulse-grid{grid-template-columns:1fr 1fr}.night-pulse-grid>a{min-height:130px;padding:22px 18px}.night-pulse strong{font-size:.96rem}.home-section-head.premium-head{display:block}.premium-head-side{margin-top:20px}.home-event-showcase,.editorial-place-grid,.home-editorial-grid{display:grid;grid-template-columns:1fr;grid-template-rows:none}.home-event-card,.home-event-card.featured,.editorial-place-card,.editorial-place-card:first-child,.home-story-card,.home-story-card.lead-story{grid-column:auto;grid-row:auto;min-height:390px}.home-event-card:nth-child(n+5),.editorial-place-card:nth-child(n+5){display:none}.home-event-card.featured strong,.editorial-place-card:first-child strong,.lead-story .home-story-copy strong{font-size:2.5rem}.home-visual-section{padding:100px 0}.home-visual-mosaic{grid-template-rows:repeat(6,48px);gap:8px}.habibi-panel-premium{display:block;padding:32px}.habibi-orbit{margin-bottom:28px}.habibi-actions{display:grid;grid-template-columns:1fr;margin-top:28px}.hero-scroll-cue{display:none}}

/* ===== PUBLIC PHASE / STEP 2 : PREMIUM GUIDE ===== */
.guide-hero-premium{position:relative;min-height:660px;padding:210px 0 90px;overflow:hidden;background:#07040b}.guide-hero-image{position:absolute;inset:0;background-size:cover;background-position:center;filter:saturate(.88);transform:scale(1.03)}.guide-hero-shade{position:absolute;inset:0;background:linear-gradient(90deg,rgba(5,2,9,.98) 0%,rgba(5,2,9,.83) 44%,rgba(5,2,9,.32) 72%,rgba(5,2,9,.65) 100%),linear-gradient(0deg,#08050d 0%,transparent 34%)}.guide-hero-layout{position:relative;z-index:2;display:grid;grid-template-columns:minmax(0,1.35fr) minmax(280px,.65fr);gap:70px;align-items:end}.guide-hero-copy h1{max-width:980px;margin:14px 0 24px;font-size:clamp(4rem,8vw,8.4rem);line-height:.86;letter-spacing:-.065em;text-transform:uppercase}.guide-hero-copy p{max-width:780px;margin:0;color:rgba(255,255,255,.75);font-size:1.12rem;line-height:1.8}.guide-hero-stats{display:flex;flex-wrap:wrap;gap:34px;margin-top:38px}.guide-hero-stats span{display:flex;align-items:baseline;gap:8px;color:rgba(255,255,255,.55);font-size:.78rem;letter-spacing:.08em;text-transform:uppercase}.guide-hero-stats strong{font-size:1.9rem;color:#fff;letter-spacing:-.04em}.guide-spotlight{display:flex;min-height:260px;padding:28px;border:1px solid rgba(255,255,255,.15);border-radius:26px;background:rgba(10,6,15,.56);backdrop-filter:blur(18px);flex-direction:column;justify-content:flex-end;box-shadow:0 28px 90px rgba(0,0,0,.32);transition:.3s ease}.guide-spotlight:hover{transform:translateY(-6px);border-color:rgba(232,200,120,.55)}.guide-spotlight>span{color:#e8c878;font-size:.67rem;font-weight:700;letter-spacing:.16em;text-transform:uppercase}.guide-spotlight strong{margin:12px 0 8px;font-family:"Playfair Display",serif;font-size:2.3rem;line-height:1}.guide-spotlight small{color:rgba(255,255,255,.6)}.guide-spotlight b{margin-top:26px;font-size:.76rem;letter-spacing:.12em;text-transform:uppercase}.guide-directory-premium{padding-top:42px}.guide-quick-nav{display:flex;align-items:center;justify-content:space-between;gap:30px;padding:0 0 28px}.guide-quick-pills{display:flex;gap:9px;overflow:auto;padding-bottom:4px;scrollbar-width:none}.guide-quick-pills::-webkit-scrollbar{display:none}.guide-quick-pills button{white-space:nowrap;padding:11px 16px;border:1px solid rgba(255,255,255,.12);border-radius:999px;background:transparent;color:rgba(255,255,255,.65);cursor:pointer;transition:.2s ease}.guide-quick-pills button:hover,.guide-quick-pills button.active{background:#fff;color:#0b0710;border-color:#fff}.guide-filter-panel-premium{position:sticky;top:84px;margin-bottom:38px;padding:18px;border-radius:24px}.guide-filter-panel-premium .guide-search-wrap{margin-bottom:12px;background:rgba(255,255,255,.035)}.guide-results-head-premium{align-items:flex-end;margin-bottom:24px}.guide-results-head-premium>div:first-child{display:flex;flex-direction:column;gap:7px}.guide-results-head-premium small{max-width:580px;color:rgba(255,255,255,.44);font-size:.82rem}.guide-view-switch{display:flex;padding:4px;border:1px solid rgba(255,255,255,.1);border-radius:12px;background:rgba(255,255,255,.035)}.guide-view-switch button{width:40px;height:36px;border:0;border-radius:9px;background:transparent;color:rgba(255,255,255,.5);cursor:pointer}.guide-view-switch button.active{background:#fff;color:#0b0710}.guide-grid-premium{gap:20px}.guide-venue-card-premium{border-radius:26px;background:#0e0a14}.guide-venue-card-premium .guide-venue-media{aspect-ratio:4/3}.guide-media-shade{position:absolute;inset:0;background:linear-gradient(0deg,rgba(6,3,10,.94) 0%,rgba(6,3,10,.1) 62%)}.guide-card-badges{position:absolute;z-index:2;left:14px;right:14px;top:14px;display:flex;justify-content:space-between;gap:10px}.guide-card-badges .guide-featured-badge,.guide-card-badges .guide-type-badge{position:static}.guide-card-overlay-copy{position:absolute;z-index:2;left:0;right:0;bottom:0;padding:22px}.guide-card-overlay-copy h2{margin:5px 0 0;font-size:2rem;line-height:1}.guide-card-overlay-copy .guide-venue-topline{margin:0}.guide-list-heading{display:none}.guide-venue-card-premium .guide-venue-body{padding:20px 22px 22px}.guide-venue-card-premium .guide-venue-body>p{display:-webkit-box;overflow:hidden;min-height:3.25em;-webkit-box-orient:vertical;-webkit-line-clamp:2}.guide-venue-card-premium .guide-venue-meta{margin:15px 0 18px}.guide-venue-actions{align-items:center;justify-content:space-between}.guide-venue-actions>div{display:flex;align-items:center;gap:8px}.guide-detail-link{font-size:.72rem;font-weight:700;letter-spacing:.11em;text-transform:uppercase}.guide-detail-link span{color:#e8c878}.guide-icon-action{display:grid;width:42px;height:42px;place-items:center;border:1px solid rgba(255,255,255,.13);border-radius:50%;color:#fff}.guide-venue-actions .button{min-width:0;flex:none;padding:12px 16px}.guide-list-featured{display:grid;width:34px;height:34px;place-items:center;border-radius:50%;background:rgba(232,200,120,.14);color:#e8c878}.guide-grid-premium[data-view="list"]{grid-template-columns:1fr}.guide-grid-premium[data-view="list"] .guide-venue-card-premium{display:grid;grid-template-columns:minmax(260px,34%) 1fr;min-height:280px}.guide-grid-premium[data-view="list"] .guide-venue-media{height:100%;aspect-ratio:auto}.guide-grid-premium[data-view="list"] .guide-card-overlay-copy{display:none}.guide-grid-premium[data-view="list"] .guide-list-heading{display:flex;justify-content:space-between;gap:20px;align-items:flex-start}.guide-grid-premium[data-view="list"] .guide-list-heading h2{margin:6px 0 0;font-size:2.2rem}.guide-grid-premium[data-view="list"] .guide-venue-body{display:flex;padding:30px;flex-direction:column;justify-content:center}.guide-grid-premium[data-view="list"] .guide-venue-body>p{max-width:760px;min-height:0;-webkit-line-clamp:3}.guide-empty .button{margin-top:18px}
@media(max-width:980px){.guide-hero-premium{min-height:560px;padding-top:170px}.guide-hero-layout{grid-template-columns:1fr;gap:38px}.guide-spotlight{min-height:180px;max-width:520px}.guide-quick-nav{align-items:flex-start;flex-direction:column;gap:16px}.guide-quick-pills{width:100%}.guide-grid-premium[data-view="list"] .guide-venue-card-premium{grid-template-columns:300px 1fr}}
@media(max-width:700px){.guide-hero-premium{min-height:auto;padding:145px 0 62px}.guide-hero-copy h1{font-size:clamp(3.4rem,17vw,5.4rem)}.guide-hero-stats{gap:18px}.guide-hero-stats span{width:calc(50% - 10px);flex-direction:column;gap:2px}.guide-spotlight{display:none}.guide-directory-premium{padding-top:24px}.guide-filter-panel-premium{top:auto}.guide-results-head-premium{align-items:flex-start}.guide-results-head-premium small{display:none}.guide-grid-premium[data-view="list"] .guide-venue-card-premium{display:block}.guide-grid-premium[data-view="list"] .guide-venue-media{aspect-ratio:4/3}.guide-grid-premium[data-view="list"] .guide-card-overlay-copy{display:block}.guide-grid-premium[data-view="list"] .guide-list-heading{display:none}.guide-grid-premium[data-view="list"] .guide-venue-body{display:block;padding:20px 22px 22px}.guide-card-overlay-copy h2{font-size:1.8rem}.guide-view-switch{display:none}}

/* Public phase / Step 3: premium events agenda */
.events-hero-premium{position:relative;min-height:650px;display:flex;align-items:flex-end;overflow:hidden;border-bottom:1px solid rgba(255,255,255,.08)}
.events-hero-image,.events-hero-shade{position:absolute;inset:0}.events-hero-image{background-size:cover;background-position:center;transform:scale(1.03)}
.events-hero-shade{background:linear-gradient(90deg,rgba(8,5,10,.96) 0%,rgba(8,5,10,.78) 46%,rgba(8,5,10,.34) 100%),linear-gradient(0deg,#0b0810 0%,transparent 50%)}
.events-hero-layout{position:relative;z-index:2;display:grid;grid-template-columns:minmax(0,1.25fr) minmax(340px,.75fr);gap:64px;align-items:end;padding-top:170px;padding-bottom:72px}
.events-hero-copy{max-width:760px}.events-hero-copy h1{font-size:clamp(3.4rem,7vw,7.3rem);line-height:.92;letter-spacing:-.055em;margin:18px 0 24px;max-width:900px}.events-hero-copy>p{font-size:1.14rem;line-height:1.75;color:rgba(255,255,255,.72);max-width:680px}
.events-hero-stats{display:flex;gap:12px;flex-wrap:wrap;margin-top:36px}.events-hero-stats div{min-width:145px;padding:16px 18px;border:1px solid rgba(255,255,255,.13);background:rgba(15,11,18,.58);backdrop-filter:blur(14px);border-radius:16px}.events-hero-stats strong{display:block;font-size:1.8rem}.events-hero-stats span{font-size:.78rem;color:rgba(255,255,255,.6);text-transform:uppercase;letter-spacing:.08em}
.events-featured-card{position:relative;display:block;min-height:360px;padding:28px;border:1px solid rgba(255,255,255,.18);border-radius:24px;background:linear-gradient(180deg,rgba(24,18,29,.6),rgba(12,8,15,.94));backdrop-filter:blur(18px);color:inherit;text-decoration:none;box-shadow:0 24px 80px rgba(0,0,0,.34);overflow:hidden}.events-featured-card:after{content:"";position:absolute;width:180px;height:180px;border-radius:50%;right:-55px;top:-55px;background:rgba(216,172,92,.12);filter:blur(4px)}
.events-featured-kicker{display:inline-flex;padding:8px 11px;border-radius:999px;background:#d8ac5c;color:#120d15;font-size:.7rem;font-weight:800;text-transform:uppercase;letter-spacing:.09em}.events-featured-date{display:flex;align-items:flex-end;gap:8px;margin:38px 0 54px}.events-featured-date strong{font-size:5rem;line-height:.75}.events-featured-date span{font-size:1rem;letter-spacing:.14em;color:#d8ac5c}.events-featured-copy small{color:#d8ac5c;text-transform:uppercase;letter-spacing:.1em}.events-featured-copy h2{font-size:2rem;line-height:1.02;margin:10px 0 12px}.events-featured-copy p{color:rgba(255,255,255,.64);display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden}.events-featured-copy>span{display:block;margin-top:18px;font-weight:700}
.events-directory{padding-top:44px}.events-date-shortcuts{display:flex;gap:9px;flex-wrap:wrap;margin-bottom:18px}.events-date-shortcuts button{border:1px solid rgba(255,255,255,.12);background:rgba(255,255,255,.035);color:rgba(255,255,255,.72);padding:11px 16px;border-radius:999px;cursor:pointer}.events-date-shortcuts button.active,.events-date-shortcuts button:hover{background:#d8ac5c;color:#100b13;border-color:#d8ac5c}
.events-filter-shell{position:sticky;top:78px;z-index:20;padding:10px;border:1px solid rgba(255,255,255,.1);background:rgba(11,8,16,.84);backdrop-filter:blur(18px);border-radius:18px;box-shadow:0 18px 48px rgba(0,0,0,.16)}
.events-filter-bar{display:grid;grid-template-columns:2fr repeat(4,1fr) auto;gap:9px;margin:0}.events-filter-bar input,.events-filter-bar select,.events-filter-bar button{min-width:0;padding:13px 14px;border-radius:12px;border:1px solid rgba(255,255,255,.11);background:#100d14;color:inherit}.events-filter-bar button{cursor:pointer}.events-search-field{display:flex;align-items:center;gap:8px;padding-left:13px;border:1px solid rgba(255,255,255,.11);background:#100d14;border-radius:12px}.events-search-field span{font-size:1.2rem;color:#d8ac5c}.events-search-field input{border:0!important;padding-left:0!important;background:transparent!important;width:100%;outline:0}
.events-results-head{display:grid;grid-template-columns:1fr minmax(280px,.7fr);gap:40px;align-items:end;margin:64px 0 32px}.events-results-head h2{font-size:clamp(2.2rem,4vw,4.5rem);margin:8px 0 0;letter-spacing:-.045em}.events-results-head p{color:rgba(255,255,255,.58);line-height:1.7;margin:0}
.events-agenda{display:grid;gap:58px}.events-day-group[hidden]{display:none}.events-day-group{display:grid;grid-template-columns:160px minmax(0,1fr);gap:32px}.events-day-heading{position:sticky;top:170px;align-self:start;display:flex;gap:13px;align-items:center;padding-top:3px}.events-day-date{width:76px;height:84px;border:1px solid rgba(216,172,92,.38);border-radius:18px;display:grid;place-items:center;background:rgba(216,172,92,.06)}.events-day-date strong{font-size:2rem;line-height:.8}.events-day-date span{font-size:.66rem;color:#d8ac5c;letter-spacing:.12em}.events-day-heading>div:last-child>span{font-size:.72rem;color:#d8ac5c;letter-spacing:.12em}.events-day-heading h3{margin:4px 0 0;font-size:.95rem;color:rgba(255,255,255,.55);font-weight:500}
.events-day-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:20px}.event-premium-card{display:grid;grid-template-columns:190px minmax(0,1fr);min-height:248px;border:1px solid rgba(255,255,255,.09);border-radius:20px;overflow:hidden;background:linear-gradient(145deg,rgba(255,255,255,.045),rgba(255,255,255,.018));transition:.25s ease}.event-premium-card:hover{transform:translateY(-3px);border-color:rgba(216,172,92,.35);box-shadow:0 22px 55px rgba(0,0,0,.2)}.event-premium-card[hidden]{display:none}.event-premium-media{position:relative;display:block;background:#15111a;min-height:100%}.event-premium-media img{width:100%;height:100%;object-fit:cover;position:absolute;inset:0}.event-time-pill,.event-featured-pill{position:absolute;z-index:2;padding:7px 9px;border-radius:999px;font-size:.68rem;font-weight:800}.event-time-pill{left:12px;bottom:12px;background:rgba(10,7,12,.88);color:white}.event-featured-pill{left:12px;top:12px;background:#d8ac5c;color:#130d16;text-transform:uppercase}.event-premium-body{padding:22px;display:flex;flex-direction:column}.event-premium-top{display:flex;justify-content:space-between;gap:12px;align-items:flex-start}.event-premium-top small{color:#d8ac5c;text-transform:uppercase;letter-spacing:.075em;font-size:.69rem}.event-premium-top h2{font-size:1.42rem;line-height:1.05;margin:8px 0 0}.event-premium-top h2 a{color:inherit;text-decoration:none}.event-price{white-space:nowrap;padding:6px 8px;border-radius:9px;background:rgba(255,255,255,.06);font-size:.7rem}.event-premium-body>p{font-size:.88rem;line-height:1.58;color:rgba(255,255,255,.58);display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden;margin:14px 0}.event-premium-meta{display:flex;gap:7px;flex-wrap:wrap;margin-top:auto}.event-premium-meta span{padding:6px 8px;border:1px solid rgba(255,255,255,.09);border-radius:999px;font-size:.68rem;color:rgba(255,255,255,.68)}.event-card-link{display:inline-block;margin-top:16px;color:#d8ac5c;text-decoration:none;font-weight:700;font-size:.82rem}.events-empty-premium{padding:70px 20px;text-align:center}.events-empty-premium button{margin-top:15px;padding:11px 16px;border:0;border-radius:999px;background:#d8ac5c;color:#120d15;font-weight:800;cursor:pointer}
@media(max-width:1200px){.events-filter-bar{grid-template-columns:repeat(3,1fr)}.events-day-grid{grid-template-columns:1fr}.events-hero-layout{grid-template-columns:1fr .62fr;gap:32px}.event-premium-card{grid-template-columns:220px 1fr}}
@media(max-width:900px){.events-hero-premium{min-height:auto}.events-hero-layout{grid-template-columns:1fr;padding-top:150px}.events-featured-card{min-height:300px}.events-day-group{grid-template-columns:1fr}.events-day-heading{position:static}.events-results-head{grid-template-columns:1fr}.events-filter-shell{position:static}.events-day-heading{border-bottom:1px solid rgba(255,255,255,.08);padding-bottom:16px}}
@media(max-width:700px){.events-hero-layout{padding-top:125px;padding-bottom:44px}.events-hero-copy h1{font-size:3.15rem}.events-hero-stats{display:grid;grid-template-columns:repeat(3,1fr);gap:7px}.events-hero-stats div{min-width:0;padding:12px}.events-hero-stats strong{font-size:1.35rem}.events-hero-stats span{font-size:.6rem}.events-featured-card{min-height:280px;padding:22px}.events-featured-date{margin:28px 0 36px}.events-featured-date strong{font-size:4rem}.events-filter-bar{grid-template-columns:1fr}.events-date-shortcuts{flex-wrap:nowrap;overflow:auto;padding-bottom:4px}.events-date-shortcuts button{white-space:nowrap}.event-premium-card{grid-template-columns:118px minmax(0,1fr);min-height:220px}.event-premium-body{padding:16px}.event-premium-top{display:block}.event-price{display:inline-block;margin-top:9px}.event-premium-top h2{font-size:1.16rem}.event-premium-body>p{display:none}.event-premium-meta span{font-size:.62rem}.events-day-date{width:64px;height:72px}.events-results-head{margin-top:44px}.events-day-grid{gap:14px}}


/* Public phase / Step 4: premium magazine */
.magazine-hero-premium{position:relative;min-height:690px;display:flex;align-items:flex-end;overflow:hidden;border-bottom:1px solid rgba(255,255,255,.08);background:#0b0810}
.magazine-hero-premium:before{content:"";position:absolute;inset:0;background-image:var(--magazine-hero-image,linear-gradient(135deg,#241827,#0b0810));background-size:cover;background-position:center;transform:scale(1.035);filter:saturate(.82)}
.magazine-hero-backdrop{position:absolute;inset:0;background:linear-gradient(90deg,rgba(7,5,9,.97) 0%,rgba(7,5,9,.82) 43%,rgba(7,5,9,.25) 100%),linear-gradient(0deg,#0b0810 0%,rgba(11,8,16,.1) 58%,rgba(11,8,16,.32) 100%)}
.magazine-hero-layout{position:relative;z-index:2;display:grid;grid-template-columns:minmax(0,1.15fr) minmax(360px,.85fr);gap:68px;align-items:end;padding-top:170px;padding-bottom:70px}
.magazine-hero-copy h1{font-size:clamp(3.5rem,7vw,7.5rem);line-height:.9;letter-spacing:-.06em;margin:18px 0 26px;max-width:950px}.magazine-hero-copy>p{max-width:700px;font-size:1.12rem;line-height:1.75;color:rgba(255,255,255,.7)}
.magazine-hero-stats{display:flex;gap:12px;flex-wrap:wrap;margin-top:35px}.magazine-hero-stats div{min-width:135px;padding:15px 17px;border:1px solid rgba(255,255,255,.12);border-radius:15px;background:rgba(18,13,21,.56);backdrop-filter:blur(14px)}.magazine-hero-stats strong{display:block;font-size:1.7rem}.magazine-hero-stats span{display:block;margin-top:3px;font-size:.68rem;text-transform:uppercase;letter-spacing:.1em;color:rgba(255,255,255,.56)}
.magazine-lead-card{position:relative;min-height:440px;display:flex;align-items:flex-end;border-radius:26px;overflow:hidden;border:1px solid rgba(255,255,255,.17);background:rgba(20,15,23,.72);color:inherit;text-decoration:none;box-shadow:0 30px 90px rgba(0,0,0,.38)}.magazine-lead-card:before{content:"";position:absolute;inset:0;background-image:var(--magazine-hero-image);background-size:cover;background-position:center;transition:transform .55s ease}.magazine-lead-card:hover:before{transform:scale(1.04)}.magazine-lead-shade{position:absolute;inset:0;background:linear-gradient(0deg,rgba(7,5,9,.98) 0%,rgba(7,5,9,.28) 78%)}.magazine-lead-content{position:relative;z-index:2;padding:30px}.magazine-lead-badge{display:inline-flex;padding:8px 11px;border-radius:999px;background:#d8ac5c;color:#130d15;font-size:.68rem;font-weight:900;text-transform:uppercase;letter-spacing:.1em}.magazine-lead-content small{display:block;margin-top:24px;color:#d8ac5c;text-transform:uppercase;letter-spacing:.11em}.magazine-lead-content h2{font-size:clamp(2rem,3vw,3.5rem);line-height:.98;letter-spacing:-.045em;margin:10px 0 14px}.magazine-lead-content p{color:rgba(255,255,255,.67);line-height:1.6;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden}.magazine-lead-content>strong{display:block;margin-top:19px}
.magazine-directory-premium{padding-top:34px}.magazine-toolbar-shell{position:sticky;top:78px;z-index:20;padding:11px;border:1px solid rgba(255,255,255,.1);border-radius:19px;background:rgba(11,8,16,.87);backdrop-filter:blur(20px);box-shadow:0 20px 55px rgba(0,0,0,.18)}.magazine-kind-tabs{display:flex;gap:7px;flex-wrap:wrap;margin-bottom:10px}.magazine-kind-tabs button{border:1px solid rgba(255,255,255,.1);background:rgba(255,255,255,.035);color:rgba(255,255,255,.72);padding:10px 15px;border-radius:999px;cursor:pointer}.magazine-kind-tabs button span{margin-left:6px;opacity:.55}.magazine-kind-tabs button.active,.magazine-kind-tabs button:hover{background:#d8ac5c;color:#130d15;border-color:#d8ac5c}.magazine-toolbar-row{display:grid;grid-template-columns:minmax(260px,1fr) minmax(190px,.35fr) auto;gap:9px}.magazine-search-field{display:flex;align-items:center;gap:9px;padding:0 14px;border:1px solid rgba(255,255,255,.11);border-radius:12px;background:#100d14}.magazine-search-field span{font-size:1.2rem;color:#d8ac5c}.magazine-search-field input,.magazine-toolbar-row select{width:100%;padding:13px 0;border:0;background:transparent;color:inherit;outline:0}.magazine-toolbar-row select{padding:13px 14px;border:1px solid rgba(255,255,255,.11);border-radius:12px;background:#100d14}.magazine-view-switch{display:flex;gap:5px;padding:5px;border:1px solid rgba(255,255,255,.1);border-radius:12px}.magazine-view-switch button{width:40px;border:0;border-radius:8px;background:transparent;color:rgba(255,255,255,.55);cursor:pointer}.magazine-view-switch button.active{background:#d8ac5c;color:#120d15}
.magazine-results-head{display:grid;grid-template-columns:1fr minmax(300px,.72fr);gap:50px;align-items:end;margin:68px 0 32px}.magazine-results-head h2{font-size:clamp(2.4rem,4.8vw,5rem);line-height:.95;letter-spacing:-.05em;margin:10px 0 0}.magazine-results-head p{margin:0 0 14px;color:rgba(255,255,255,.58);line-height:1.7}.magazine-results-head strong{font-size:.76rem;text-transform:uppercase;letter-spacing:.1em;color:#d8ac5c}
.magazine-grid-premium{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:22px}.magazine-story-card{min-width:0;border:1px solid rgba(255,255,255,.09);border-radius:21px;overflow:hidden;background:linear-gradient(145deg,rgba(255,255,255,.045),rgba(255,255,255,.018));transition:.25s ease}.magazine-story-card:hover{transform:translateY(-4px);border-color:rgba(216,172,92,.32);box-shadow:0 24px 65px rgba(0,0,0,.22)}.magazine-story-card[hidden]{display:none}.magazine-story-wide{grid-column:span 2}.magazine-story-media{position:relative;display:block;aspect-ratio:16/10;overflow:hidden;background:#171219;color:inherit}.magazine-story-wide .magazine-story-media{aspect-ratio:2.05/1}.magazine-story-media img{width:100%;height:100%;object-fit:cover;transition:transform .55s ease}.magazine-story-card:hover .magazine-story-media img{transform:scale(1.045)}.magazine-media-placeholder{position:absolute;inset:0;display:grid;place-items:center;font-size:3rem;color:#d8ac5c;background:radial-gradient(circle at 50% 50%,rgba(216,172,92,.14),transparent 55%)}.magazine-story-kind,.magazine-story-featured{position:absolute;z-index:2;top:14px;padding:7px 9px;border-radius:999px;font-size:.65rem;font-weight:800;text-transform:uppercase;letter-spacing:.075em}.magazine-story-kind{left:14px;background:rgba(10,7,12,.86);color:#fff;backdrop-filter:blur(10px)}.magazine-story-featured{right:14px;background:#d8ac5c;color:#130d15}.magazine-story-body{padding:22px;display:flex;flex-direction:column;min-height:270px}.magazine-story-meta{display:flex;justify-content:space-between;gap:14px;font-size:.68rem;text-transform:uppercase;letter-spacing:.08em;color:#d8ac5c}.magazine-story-meta time{color:rgba(255,255,255,.45)}.magazine-story-body h2{font-size:1.65rem;line-height:1.05;letter-spacing:-.025em;margin:13px 0 12px}.magazine-story-wide .magazine-story-body h2{font-size:2.25rem}.magazine-story-body h2 a{color:inherit;text-decoration:none}.magazine-story-body>p{color:rgba(255,255,255,.58);line-height:1.62;display:-webkit-box;-webkit-line-clamp:3;-webkit-box-orient:vertical;overflow:hidden}.magazine-story-footer{display:flex;justify-content:space-between;gap:16px;align-items:end;margin-top:auto;padding-top:22px;border-top:1px solid rgba(255,255,255,.07)}.magazine-story-footer>div{font-size:.72rem;color:rgba(255,255,255,.48)}.magazine-story-footer>a{white-space:nowrap;color:#d8ac5c;text-decoration:none;font-weight:750;font-size:.8rem}.magazine-story-footer>a span{margin-left:5px}
.magazine-grid-premium[data-view="list"]{grid-template-columns:1fr}.magazine-grid-premium[data-view="list"] .magazine-story-card{display:grid;grid-template-columns:330px minmax(0,1fr)}.magazine-grid-premium[data-view="list"] .magazine-story-wide{grid-column:auto}.magazine-grid-premium[data-view="list"] .magazine-story-media,.magazine-grid-premium[data-view="list"] .magazine-story-wide .magazine-story-media{aspect-ratio:auto;min-height:270px}.magazine-grid-premium[data-view="list"] .magazine-story-body{min-height:270px}.magazine-grid-premium[data-view="list"] .magazine-story-body h2,.magazine-grid-premium[data-view="list"] .magazine-story-wide .magazine-story-body h2{font-size:2rem}.magazine-empty-premium{padding:70px 20px;text-align:center}.magazine-empty-premium button{margin-top:15px;padding:11px 16px;border:0;border-radius:999px;background:#d8ac5c;color:#120d15;font-weight:800;cursor:pointer}
@media(max-width:1100px){.magazine-hero-layout{grid-template-columns:1fr .7fr;gap:38px}.magazine-grid-premium{grid-template-columns:repeat(2,minmax(0,1fr))}.magazine-story-wide{grid-column:span 2}}
@media(max-width:850px){.magazine-hero-premium{min-height:auto}.magazine-hero-layout{grid-template-columns:1fr;padding-top:150px}.magazine-lead-card{min-height:360px}.magazine-toolbar-shell{position:static}.magazine-results-head{grid-template-columns:1fr}.magazine-toolbar-row{grid-template-columns:1fr auto}.magazine-toolbar-row select{grid-column:1/-1;grid-row:2}.magazine-grid-premium[data-view="list"] .magazine-story-card{grid-template-columns:260px 1fr}}
@media(max-width:650px){.magazine-hero-layout{padding-top:125px;padding-bottom:46px}.magazine-hero-copy h1{font-size:3.35rem}.magazine-hero-stats{display:grid;grid-template-columns:repeat(3,1fr);gap:7px}.magazine-hero-stats div{min-width:0;padding:12px}.magazine-hero-stats strong{font-size:1.35rem}.magazine-hero-stats span{font-size:.58rem}.magazine-lead-card{min-height:330px}.magazine-lead-content{padding:22px}.magazine-lead-content h2{font-size:2rem}.magazine-kind-tabs{flex-wrap:nowrap;overflow:auto;padding-bottom:3px}.magazine-kind-tabs button{white-space:nowrap}.magazine-toolbar-row{grid-template-columns:1fr}.magazine-toolbar-row select{grid-column:auto;grid-row:auto}.magazine-view-switch{display:none}.magazine-grid-premium{grid-template-columns:1fr}.magazine-story-wide{grid-column:auto}.magazine-story-wide .magazine-story-media{aspect-ratio:16/10}.magazine-story-wide .magazine-story-body h2{font-size:1.65rem}.magazine-grid-premium[data-view="list"] .magazine-story-card{display:block}.magazine-grid-premium[data-view="list"] .magazine-story-media{min-height:0;aspect-ratio:16/10}.magazine-grid-premium[data-view="list"] .magazine-story-body{min-height:0}.magazine-results-head{margin-top:48px}.magazine-story-body{min-height:0}}

/* Public step 5 — Premium gallery */
.gallery-premium-hero{position:relative;min-height:72vh;display:flex;align-items:flex-end;background:#09070e var(--gallery-hero) center/cover no-repeat;overflow:hidden}
.gallery-premium-overlay{position:absolute;inset:0;background:linear-gradient(180deg,rgba(7,5,11,.22),rgba(7,5,11,.62) 48%,#08060d 100%),linear-gradient(90deg,rgba(8,6,13,.82),rgba(8,6,13,.08) 72%)}
.gallery-premium-hero-inner{position:relative;z-index:1;width:100%;display:grid;grid-template-columns:minmax(0,1.4fr) minmax(280px,.6fr);gap:48px;align-items:end;padding-top:190px;padding-bottom:70px}
.gallery-premium-copy{max-width:850px}.gallery-premium-copy h1{font-size:clamp(4rem,9vw,9rem);line-height:.82;letter-spacing:-.06em;margin:.18em 0 .22em}.gallery-premium-copy p{max-width:680px;font-size:1.12rem;color:rgba(255,255,255,.76)}
.gallery-premium-stats{display:grid;grid-template-columns:1fr;gap:10px}.gallery-premium-stats>div{padding:18px 20px;border:1px solid rgba(255,255,255,.15);background:rgba(9,7,14,.46);backdrop-filter:blur(14px);display:flex;align-items:baseline;justify-content:space-between;gap:20px}.gallery-premium-stats strong{font-size:2rem}.gallery-premium-stats span{font-size:.72rem;text-transform:uppercase;letter-spacing:.12em;color:rgba(255,255,255,.55);text-align:right}
.gallery-premium-section{padding:88px 0 120px;background:#08060d}.gallery-premium-heading{display:flex;justify-content:space-between;align-items:end;gap:32px;margin-bottom:34px}.gallery-premium-heading h2{font-size:clamp(2.2rem,5vw,5rem);line-height:.95;max-width:760px;margin:.18em 0 0}.gallery-premium-tools{display:flex;flex-direction:column;align-items:flex-end;gap:12px}
.gallery-premium-filters{display:flex;gap:8px;flex-wrap:wrap;justify-content:flex-end}.gallery-premium-filters button,.gallery-premium-empty button{border:1px solid rgba(255,255,255,.14);background:rgba(255,255,255,.04);color:#fff;padding:11px 15px;cursor:pointer;text-transform:uppercase;font-size:.72rem;letter-spacing:.08em}.gallery-premium-filters button.active{background:#fff;color:#0a0710;border-color:#fff}
.gallery-premium-search{min-width:310px;display:flex;align-items:center;gap:9px;border:1px solid rgba(255,255,255,.12);background:rgba(255,255,255,.035);padding:0 14px}.gallery-premium-search input{width:100%;padding:12px 0;border:0;outline:0;background:transparent;color:#fff}.gallery-premium-search input::placeholder{color:rgba(255,255,255,.38)}
.gallery-premium-grid{display:grid;grid-template-columns:repeat(12,1fr);gap:14px}.gallery-premium-card{grid-column:span 4;min-width:0}.gallery-premium-card--large{grid-column:span 8}.gallery-premium-card[hidden]{display:none!important}.gallery-premium-media{position:relative;width:100%;height:420px;border:0;padding:0;background:#15111c;overflow:hidden;cursor:pointer;text-align:left;color:#fff}.gallery-premium-card--large .gallery-premium-media{height:620px}.gallery-premium-media img{width:100%;height:100%;object-fit:cover;display:block;transition:transform .65s ease}.gallery-premium-media:hover img{transform:scale(1.035)}.gallery-premium-shade{position:absolute;inset:0;background:linear-gradient(180deg,transparent 42%,rgba(7,5,11,.78) 100%)}.gallery-premium-type{position:absolute;top:14px;left:14px;padding:7px 9px;background:rgba(8,6,13,.74);backdrop-filter:blur(10px);font-size:.65rem;letter-spacing:.12em}.gallery-premium-open{position:absolute;left:18px;bottom:16px;font-size:.72rem;text-transform:uppercase;letter-spacing:.1em;opacity:0;transform:translateY(8px);transition:.25s}.gallery-premium-media:hover .gallery-premium-open{opacity:1;transform:none}.gallery-premium-play{position:absolute;inset:50% auto auto 50%;transform:translate(-50%,-50%);width:68px;height:68px;border-radius:50%;display:grid;place-items:center;background:rgba(255,255,255,.92);color:#0a0710;font-size:1.3rem;padding-left:4px;box-shadow:0 15px 50px rgba(0,0,0,.28)}.gallery-premium-fallback{position:absolute;inset:0;display:grid;place-items:center;font-size:4rem;color:rgba(255,255,255,.18)}
.gallery-premium-meta{display:flex;justify-content:space-between;gap:18px;padding:15px 2px 28px}.gallery-premium-meta>div{display:flex;flex-direction:column;gap:5px}.gallery-premium-meta strong{font-size:1rem}.gallery-premium-meta span,.gallery-premium-meta time{font-size:.72rem;color:rgba(255,255,255,.48);text-transform:uppercase;letter-spacing:.07em}.gallery-premium-empty{text-align:center;padding:80px 20px;border:1px solid rgba(255,255,255,.08)}.gallery-premium-empty span{font-size:2rem}.gallery-premium-empty h2{margin:14px 0 22px}
.gallery-lightbox{position:fixed;inset:0;z-index:9999;display:grid;place-items:center;padding:34px}.gallery-lightbox[hidden]{display:none}.gallery-lightbox-backdrop{position:absolute;inset:0;background:rgba(3,2,5,.92);backdrop-filter:blur(18px)}.gallery-lightbox-dialog{position:relative;z-index:1;width:min(1240px,94vw);max-height:90vh;display:grid;grid-template-columns:minmax(0,1.6fr) minmax(280px,.55fr);background:#0c0911;border:1px solid rgba(255,255,255,.12);overflow:hidden}.gallery-lightbox-visual{min-height:68vh;background:#050407;display:grid;place-items:center}.gallery-lightbox-visual img,.gallery-lightbox-visual video{max-width:100%;max-height:82vh;width:100%;height:100%;object-fit:contain}.gallery-lightbox-visual iframe{width:100%;height:68vh;border:0}.gallery-lightbox-copy{padding:40px;align-self:end}.gallery-lightbox-copy h2{font-size:clamp(1.8rem,3vw,3.3rem);line-height:1;margin:.25em 0}.gallery-lightbox-copy p{color:rgba(255,255,255,.62);line-height:1.7}.gallery-lightbox-close{position:fixed;z-index:10001;right:22px;top:18px;width:48px;height:48px;border-radius:50%;border:1px solid rgba(255,255,255,.2);background:rgba(8,6,13,.72);color:#fff;font-size:2rem;cursor:pointer}
body.gallery-lightbox-open{overflow:hidden}
@media(max-width:980px){.gallery-premium-hero-inner{grid-template-columns:1fr;padding-top:160px}.gallery-premium-stats{grid-template-columns:repeat(3,1fr)}.gallery-premium-stats>div{display:block}.gallery-premium-stats span{display:block;text-align:left;margin-top:5px}.gallery-premium-heading{align-items:flex-start;flex-direction:column}.gallery-premium-tools{width:100%;align-items:stretch}.gallery-premium-filters{justify-content:flex-start}.gallery-premium-search{min-width:0}.gallery-premium-card,.gallery-premium-card--large{grid-column:span 6}.gallery-premium-card--large .gallery-premium-media,.gallery-premium-media{height:430px}.gallery-lightbox-dialog{grid-template-columns:1fr;overflow:auto}.gallery-lightbox-visual{min-height:52vh}.gallery-lightbox-copy{padding:24px}}
@media(max-width:640px){.gallery-premium-hero{min-height:78vh}.gallery-premium-hero-inner{padding-top:140px;padding-bottom:42px}.gallery-premium-copy h1{font-size:clamp(3.2rem,18vw,5.4rem)}.gallery-premium-stats{grid-template-columns:1fr}.gallery-premium-section{padding:64px 0 90px}.gallery-premium-card,.gallery-premium-card--large{grid-column:1/-1}.gallery-premium-media,.gallery-premium-card--large .gallery-premium-media{height:72vw;min-height:320px}.gallery-lightbox{padding:12px}.gallery-lightbox-dialog{width:100%;max-height:94vh}.gallery-lightbox-close{right:12px;top:10px}}

/* Public step 6 — Premium detail pages */
.premium-detail-header{position:absolute;z-index:50;top:0;left:0;right:0;background:linear-gradient(180deg,rgba(5,3,8,.7),transparent);border:0;padding:26px max(24px,4vw);display:flex;align-items:center;justify-content:space-between}.premium-detail-header nav{display:flex;gap:24px}.premium-detail-header a{color:#fff;font-size:.72rem;text-transform:uppercase;letter-spacing:.11em}.premium-detail-hero{position:relative;min-height:88vh;display:flex;align-items:flex-end;overflow:hidden;background:#09070e}.premium-detail-hero-image{position:absolute;inset:0;width:100%;height:100%;object-fit:cover}.premium-detail-hero-shade{position:absolute;inset:0;background:linear-gradient(180deg,rgba(7,5,11,.18),rgba(7,5,11,.56) 52%,#08060d 100%),linear-gradient(90deg,rgba(8,6,13,.74),rgba(8,6,13,.06) 70%)}.premium-detail-hero-inner{position:relative;z-index:2;padding-top:180px;padding-bottom:76px;max-width:1180px}.premium-detail-eyebrow{display:flex;align-items:center;gap:10px;margin-bottom:18px}.premium-detail-eyebrow span,.premium-detail-eyebrow b,.detail-kicker{font-size:.68rem;text-transform:uppercase;letter-spacing:.16em}.premium-detail-eyebrow span,.detail-kicker{color:#e8c878}.premium-detail-eyebrow b{padding:7px 10px;border:1px solid rgba(232,200,120,.32);color:#f2dc9e;font-weight:700}.premium-detail-hero h1{font-size:clamp(4.2rem,9vw,9.2rem);line-height:.84;letter-spacing:-.055em;max-width:1050px;margin:.08em 0 .2em}.premium-detail-lead{max-width:760px;font-size:1.16rem;line-height:1.75;color:rgba(255,255,255,.76)}.premium-detail-tags{display:flex;gap:8px;flex-wrap:wrap;margin:28px 0}.premium-detail-tags span{padding:9px 12px;border:1px solid rgba(255,255,255,.16);background:rgba(10,7,15,.36);backdrop-filter:blur(10px);font-size:.68rem;text-transform:uppercase;letter-spacing:.1em}.premium-detail-actions{display:flex;gap:10px;flex-wrap:wrap}.premium-detail-date-block{display:flex;align-items:baseline;gap:14px;margin-bottom:14px}.premium-detail-date-block strong{font-size:1.5rem}.premium-detail-date-block span{font-size:.9rem;color:#e8c878}.premium-detail-section{padding:90px 0 140px;background:linear-gradient(180deg,#08060d,#0d0912 50%,#08060d)}.premium-detail-layout{display:grid;grid-template-columns:minmax(0,1.55fr) minmax(290px,.55fr);gap:34px;align-items:start}.premium-detail-main{display:grid;gap:26px}.premium-content-panel,.premium-side-card,.premium-archive-panel{border:1px solid rgba(255,255,255,.09);background:linear-gradient(145deg,rgba(255,255,255,.055),rgba(255,255,255,.018));padding:38px}.premium-content-panel h2,.premium-side-card h3{font-size:clamp(2rem,4vw,4rem);line-height:.98;margin:.25em 0 .7em}.premium-side-card h3{font-size:2rem}.premium-article-body{font-size:1rem;line-height:1.95;color:#c9c2cd;white-space:normal}.premium-panel-heading{display:flex;justify-content:space-between;align-items:end;gap:20px;margin-bottom:28px}.premium-panel-heading h2{margin:.25em 0 0}.premium-panel-heading>strong{font-size:3rem;color:rgba(255,255,255,.14)}.premium-related-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:14px}.premium-related-card{display:grid;grid-template-columns:140px 1fr;min-height:160px;border:1px solid rgba(255,255,255,.08);background:rgba(255,255,255,.025);overflow:hidden;transition:.25s ease}.premium-related-card:hover{transform:translateY(-3px);border-color:rgba(232,200,120,.25)}.premium-related-card img{width:100%;height:100%;object-fit:cover}.premium-related-card>div{padding:20px}.premium-related-card small{color:#e8c878;font-size:.63rem;text-transform:uppercase;letter-spacing:.1em}.premium-related-card h3{font-size:1.3rem;line-height:1.08;margin:8px 0}.premium-related-card p{font-size:.78rem;line-height:1.6;color:#9f97a7;margin:0}.premium-related-card.muted{opacity:.7}.premium-detail-sidebar{display:grid;gap:20px}.premium-side-card.sticky-card{position:sticky;top:24px}.premium-info-list{margin:24px 0 0}.premium-info-list>div{padding:15px 0;border-top:1px solid rgba(255,255,255,.08)}.premium-info-list dt{font-size:.62rem;text-transform:uppercase;letter-spacing:.12em;color:#81798a}.premium-info-list dd{margin:6px 0 0;font-size:.96rem}.premium-map-card{padding:0;overflow:hidden}.premium-map-card h3{padding:26px 28px 0;margin-bottom:22px}.premium-map-card iframe{width:100%;height:310px;border:0;display:block;filter:saturate(.75) contrast(1.08)}.premium-map-card a{display:block;padding:16px 24px;border-top:1px solid rgba(255,255,255,.08);color:#e8c878;font-size:.72rem;text-transform:uppercase;letter-spacing:.1em}.premium-archive-panel summary{cursor:pointer;list-style:none;font-size:1rem;text-transform:uppercase;letter-spacing:.1em;display:flex;justify-content:space-between}.premium-archive-panel[open] summary{margin-bottom:28px}.premium-longform-hero{position:relative;min-height:82vh;display:flex;align-items:flex-end;background:#09070e var(--longform-cover) center/cover no-repeat}.premium-longform-shade{position:absolute;inset:0;background:linear-gradient(180deg,rgba(7,5,11,.2),rgba(7,5,11,.72) 58%,#08060d 100%),linear-gradient(90deg,rgba(8,6,13,.76),rgba(8,6,13,.08) 75%)}.premium-longform-head{position:relative;z-index:1;padding-top:180px;padding-bottom:72px;max-width:1100px}.premium-longform-head h1{font-size:clamp(4rem,8vw,8rem);line-height:.88;letter-spacing:-.05em;max-width:1050px;margin:.12em 0 .25em}.premium-longform-head>p{font-size:1.18rem;line-height:1.72;max-width:780px;color:rgba(255,255,255,.74)}.premium-longform-meta{display:flex;gap:8px;flex-wrap:wrap;margin-top:26px}.premium-longform-meta span,.premium-longform-meta time{padding:8px 10px;border:1px solid rgba(255,255,255,.14);font-size:.66rem;text-transform:uppercase;letter-spacing:.1em}.premium-longform-layout{display:grid;grid-template-columns:minmax(0,1.45fr) minmax(260px,.45fr);gap:56px;padding-top:90px;padding-bottom:140px}.premium-longform-body{max-width:820px}.premium-article-body--long{font-size:1.08rem;line-height:2.05;color:#d0c9d4}.premium-longform-aside .premium-side-card{padding:30px}.premium-longform-aside p{color:#a9a1af;line-height:1.75}.premium-404{min-height:100vh;display:grid;place-items:center;text-align:center;background:radial-gradient(circle at 50% 30%,rgba(232,200,120,.12),transparent 30%),#08060d}.premium-404 span{font-size:7rem;color:rgba(255,255,255,.08)}.premium-404 h1{font-size:clamp(2.5rem,6vw,6rem);max-width:900px;margin:0 auto 34px}.detail-search-hero{padding-top:160px}.detail-search-hero .site-search{max-width:760px}
@media(max-width:980px){.premium-detail-header nav{display:none}.premium-detail-hero{min-height:78vh}.premium-detail-layout,.premium-longform-layout{grid-template-columns:1fr}.premium-side-card.sticky-card{position:static}.premium-related-grid{grid-template-columns:1fr}.premium-longform-aside{display:none}}
@media(max-width:650px){.premium-detail-header{padding:20px}.premium-detail-hero-inner{padding-top:130px;padding-bottom:46px}.premium-detail-hero h1,.premium-longform-head h1{font-size:clamp(3.2rem,17vw,5.4rem)}.premium-detail-section{padding:58px 0 90px}.premium-content-panel,.premium-side-card,.premium-archive-panel{padding:24px}.premium-related-card{grid-template-columns:110px 1fr;min-height:140px}.premium-related-card>div{padding:15px}.premium-related-card h3{font-size:1.08rem}.premium-longform-head{padding-top:135px;padding-bottom:48px}.premium-longform-layout{padding-top:58px;padding-bottom:90px}.premium-article-body--long{font-size:1rem}.premium-detail-actions{display:grid}.premium-detail-actions a{text-align:center}}

/* ===== HOME RESPONSIVE POLISH — menu/header intentionally untouched ===== */
:root{--home-gap:clamp(56px,7vw,96px)}

/* Hero: balanced inside the visible viewport without modifying the header/logo */
body:has(.hero-premium) .hero-premium{
    min-height:clamp(690px,calc(100svh - 14px),920px);
    padding:clamp(150px,16vh,210px) 0 clamp(54px,7vh,84px);
    display:flex;
    align-items:center;
}
body:has(.hero-premium) .hero-content-premium{
    width:100%;
    max-width:1600px;
    padding-top:0;
    padding-bottom:0;
    align-items:center;
    gap:clamp(36px,5vw,84px);
}
body:has(.hero-premium) .hero-copy{max-width:min(760px,58vw)}
body:has(.hero-premium) .hero h1{
    font-size:clamp(4.15rem,7.1vw,7.25rem);
    line-height:.88;
    margin:clamp(14px,2vh,24px) 0 clamp(16px,2.2vh,26px);
}
body:has(.hero-premium) .hero p{font-size:clamp(.98rem,1.15vw,1.18rem);line-height:1.65;max-width:680px}
body:has(.hero-premium) .hero-actions-five{margin-top:clamp(22px,3vh,34px);gap:10px 12px}
body:has(.hero-premium) .hero-actions-five .button{min-height:50px;padding-inline:18px}
body:has(.hero-premium) .hero-night-card{max-width:390px;padding:clamp(28px,3vw,42px)}
body:has(.hero-premium) .hero-scroll-cue{bottom:22px}

/* Compact vertical rhythm */
body:has(.hero-premium) .night-pulse-grid>a{min-height:128px;padding:24px 26px}
body:has(.hero-premium) .home-section,
body:has(.hero-premium) .home-editorial-section,
body:has(.hero-premium) .home-visual-section{padding:var(--home-gap) 0}
body:has(.hero-premium) .home-events-premium,
body:has(.hero-premium) .home-guide-premium{padding-top:var(--home-gap)}
body:has(.hero-premium) .home-section-head{margin-bottom:clamp(24px,3vw,38px);gap:clamp(28px,5vw,68px)}
body:has(.hero-premium) .home-section-head h2,
body:has(.hero-premium) .home-feature h2,
body:has(.hero-premium) .habibi-panel h2{font-size:clamp(2.7rem,5vw,5.2rem);line-height:.94}
body:has(.hero-premium) .premium-head-side p{max-width:560px}

/* Consistent media ratios */
body:has(.hero-premium) .home-event-showcase{
    grid-template-columns:1.35fr .82fr .82fr;
    grid-template-rows:clamp(260px,24vw,350px) clamp(260px,24vw,350px);
    gap:clamp(12px,1.4vw,20px);
    margin-top:0;
}
body:has(.hero-premium) .home-event-card{min-height:0;aspect-ratio:auto}
body:has(.hero-premium) .home-event-card img{width:100%;height:100%;object-fit:cover;object-position:center}
body:has(.hero-premium) .editorial-place-grid{
    grid-template-columns:1.2fr .8fr .8fr;
    grid-template-rows:clamp(280px,25vw,360px) clamp(280px,25vw,360px);
    gap:clamp(12px,1.4vw,20px);
    margin-top:0;
}
body:has(.hero-premium) .editorial-place-card img{object-fit:cover;object-position:center}
body:has(.hero-premium) .home-editorial-grid{
    grid-template-columns:1.18fr .82fr .82fr;
    grid-auto-rows:clamp(280px,24vw,350px);
    gap:clamp(12px,1.4vw,20px);
    margin-top:0;
}
body:has(.hero-premium) .home-story-card img{object-fit:cover;object-position:center}
body:has(.hero-premium) .home-story-card:not(:has(img))::before{
    content:"";position:absolute;inset:0;background:radial-gradient(circle at 25% 20%,rgba(232,200,120,.14),transparent 34%),linear-gradient(145deg,#18101f,#0b0810)
}
body:has(.hero-premium) .home-visual-layout{gap:clamp(38px,6vw,72px)}
body:has(.hero-premium) .home-visual-mosaic{grid-template-rows:repeat(6,clamp(52px,5.4vw,76px));gap:clamp(8px,1vw,14px)}
body:has(.hero-premium) .visual-tile img{object-fit:cover;object-position:center}

/* Habibi: compact but premium */
body:has(.hero-premium) .habibi-section-premium{padding:clamp(54px,6vw,88px) 0}
body:has(.hero-premium) .habibi-panel-premium{padding:clamp(30px,4vw,48px);gap:clamp(24px,3vw,36px)}
body:has(.hero-premium) .habibi-copy h2{font-size:clamp(2.35rem,4vw,4.15rem)}

/* Footer */
.footer-premium{padding:0;border-top:1px solid rgba(255,255,255,.08);background:linear-gradient(180deg,#09060d,#050307)}
.footer-shell{display:grid;grid-template-columns:minmax(0,1.5fr) minmax(180px,.55fr) minmax(180px,.55fr);gap:clamp(34px,6vw,90px);padding-top:clamp(54px,7vw,88px);padding-bottom:clamp(42px,6vw,72px)}
.footer-brand{display:grid;grid-template-columns:110px minmax(0,1fr);gap:28px;align-items:start;max-width:720px}
.footer-brand img{width:110px;height:110px;object-fit:contain}
.footer-kicker,.footer-nav-group>span{display:block;color:#e7c677;font-size:.68rem;font-weight:800;letter-spacing:.16em;text-transform:uppercase;margin-bottom:16px}
.footer-brand p{margin:0;max-width:560px;color:#9f96a8;line-height:1.75;font-size:.95rem}
.footer-nav-group nav,.footer-actions-group{display:flex;flex-direction:column;align-items:flex-start;gap:11px}
.footer-nav-group a{color:#d9d2de;text-decoration:none;font-size:.92rem;transition:color .2s ease,transform .2s ease}
.footer-nav-group a:hover{color:#fff;transform:translateX(3px)}
.footer-actions-group .footer-habibi{color:#fff;font-weight:750}
.footer-actions-group .footer-whatsapp{color:#55e487}
.footer-bottom{display:flex;justify-content:space-between;align-items:center;gap:24px;padding-top:24px;padding-bottom:28px;border-top:1px solid rgba(255,255,255,.07);color:#786f80;font-size:.76rem}
.footer-social-text{display:flex;flex-wrap:wrap;gap:18px}
.footer-social-text a{color:#92899a;text-decoration:none}.footer-social-text a:hover{color:#fff}

@media (max-width:1180px){
    body:has(.hero-premium) .hero-premium{min-height:760px;padding-top:170px;padding-bottom:64px}
    body:has(.hero-premium) .hero-copy{max-width:720px}
    body:has(.hero-premium) .home-event-showcase,
    body:has(.hero-premium) .editorial-place-grid{grid-template-columns:1fr 1fr;grid-template-rows:clamp(320px,40vw,430px) clamp(240px,29vw,320px)}
    body:has(.hero-premium) .home-event-card.featured,
    body:has(.hero-premium) .editorial-place-card:first-child{grid-column:1/3}
    body:has(.hero-premium) .home-editorial-grid{grid-template-columns:1fr 1fr;grid-auto-rows:330px}
    body:has(.hero-premium) .home-story-card.lead-story{grid-column:1/3;min-height:500px}
}

@media (max-width:900px){
    :root{--home-gap:clamp(48px,8vw,72px)}
    body:has(.hero-premium) .hero-premium{min-height:auto;padding:clamp(155px,20vh,190px) 0 58px;align-items:flex-start}
    body:has(.hero-premium) .hero-content-premium{display:block}
    body:has(.hero-premium) .hero-copy{max-width:760px}
    body:has(.hero-premium) .hero h1{font-size:clamp(4rem,11vw,6.6rem);max-width:760px}
    body:has(.hero-premium) .night-pulse-grid>a{min-height:116px;padding:22px}
    body:has(.hero-premium) .home-section-head{grid-template-columns:1fr;gap:14px}
    body:has(.hero-premium) .home-visual-layout{grid-template-columns:1fr}
    .footer-shell{grid-template-columns:1fr 1fr;gap:44px}
    .footer-brand{grid-column:1/-1}
}

@media (max-width:680px){
    :root{--home-gap:54px}
    body:has(.hero-premium) .hero-premium{padding:150px 0 48px;background-position:center}
    body:has(.hero-premium) .hero-content-premium{padding-inline:0}
    body:has(.hero-premium) .hero .eyebrow{font-size:.58rem;letter-spacing:.16em;max-width:100%}
    body:has(.hero-premium) .hero h1{font-size:clamp(3.25rem,15vw,5rem);line-height:.9;margin:14px 0 18px}
    body:has(.hero-premium) .hero p{font-size:.93rem;line-height:1.62;max-width:100%}
    body:has(.hero-premium) .hero-actions-five{grid-template-columns:1fr;gap:9px;margin-top:24px}
    body:has(.hero-premium) .hero-actions-five .stay-button{grid-column:auto}
    body:has(.hero-premium) .hero-actions-five .button{min-height:48px;font-size:.76rem}
    body:has(.hero-premium) .night-pulse-grid{grid-template-columns:1fr 1fr}
    body:has(.hero-premium) .night-pulse-grid>a{min-height:108px;padding:18px 16px}
    body:has(.hero-premium) .night-pulse strong{font-size:.9rem;line-height:1.15}
    body:has(.hero-premium) .night-pulse span{font-size:.7rem}
    body:has(.hero-premium) .home-section-head h2,
    body:has(.hero-premium) .home-feature h2,
    body:has(.hero-premium) .habibi-panel h2{font-size:clamp(2.55rem,12vw,4.2rem)}
    body:has(.hero-premium) .home-event-showcase,
    body:has(.hero-premium) .editorial-place-grid,
    body:has(.hero-premium) .home-editorial-grid{display:grid;grid-template-columns:1fr;grid-template-rows:none;gap:14px}
    body:has(.hero-premium) .home-event-card,
    body:has(.hero-premium) .home-event-card.featured,
    body:has(.hero-premium) .editorial-place-card,
    body:has(.hero-premium) .editorial-place-card:first-child,
    body:has(.hero-premium) .home-story-card,
    body:has(.hero-premium) .home-story-card.lead-story{grid-column:auto;grid-row:auto;min-height:0;aspect-ratio:4/5}
    body:has(.hero-premium) .home-event-card:nth-child(n+5),
    body:has(.hero-premium) .editorial-place-card:nth-child(n+5){display:none}
    body:has(.hero-premium) .home-story-card{aspect-ratio:4/5}
    body:has(.hero-premium) .home-story-copy p{display:-webkit-box;-webkit-line-clamp:3;-webkit-box-orient:vertical;overflow:hidden}
    body:has(.hero-premium) .home-event-card.featured strong,
    body:has(.hero-premium) .editorial-place-card:first-child strong,
    body:has(.hero-premium) .lead-story .home-story-copy strong{font-size:clamp(2rem,9vw,2.8rem)}
    body:has(.hero-premium) .home-visual-section{padding:54px 0}
    body:has(.hero-premium) .home-visual-copy h2{font-size:clamp(3rem,14vw,4.8rem)}
    body:has(.hero-premium) .home-visual-mosaic{grid-template-rows:repeat(6,42px);gap:7px;transform:none}
    body:has(.hero-premium) .habibi-panel-premium{display:block;padding:28px 20px}
    body:has(.hero-premium) .habibi-orbit{width:82px;height:82px;margin-bottom:24px}
    body:has(.hero-premium) .habibi-actions{grid-template-columns:1fr;margin-top:24px}
    .footer-shell{grid-template-columns:1fr;gap:36px;padding-top:52px;padding-bottom:42px}
    .footer-brand{grid-template-columns:78px 1fr;gap:20px}
    .footer-brand img{width:78px;height:78px}
    .footer-bottom{align-items:flex-start;flex-direction:column;gap:16px}
}

@media (max-width:430px){
    body:has(.hero-premium) .hero-premium{padding-top:142px}
    body:has(.hero-premium) .hero h1{font-size:clamp(3rem,15.5vw,4.2rem)}
    body:has(.hero-premium) .night-pulse-grid{grid-template-columns:1fr}
    body:has(.hero-premium) .night-pulse-grid>a{min-height:92px}
    body:has(.hero-premium) .home-event-card,
    body:has(.hero-premium) .editorial-place-card,
    body:has(.hero-premium) .home-story-card{aspect-ratio:4/5.2}
    .footer-brand{grid-template-columns:1fr}
}

/* =========================================================
   HOME PERFECTION — PHASE 3 / STEP 1 OF 5
   Structure, grid, proportions, rhythm.
   Header and centered logo intentionally untouched.
   ========================================================= */

/* Global homepage frame */
body:has(.hero-premium) main{
    overflow:clip;
}
body:has(.hero-premium) .container{
    width:min(100% - clamp(32px,5vw,80px), 1580px);
    margin-inline:auto;
}
body:has(.hero-premium){
    --hp-section-y:clamp(64px,7vw,108px);
    --hp-section-y-compact:clamp(48px,5.5vw,82px);
    --hp-grid-gap:clamp(14px,1.45vw,22px);
    --hp-radius:clamp(18px,1.8vw,28px);
}

/* Hero: one strong screen, no dead void */
body:has(.hero-premium) .hero-premium{
    min-height:clamp(690px,calc(100svh - 88px),940px);
    padding-top:clamp(160px,18vh,215px);
    padding-bottom:clamp(54px,7vh,88px);
    display:flex;
    align-items:center;
}
body:has(.hero-premium) .hero-content-premium{
    min-height:0;
    display:grid;
    grid-template-columns:minmax(0,1.52fr) minmax(315px,.68fr);
    align-items:center;
    gap:clamp(44px,6vw,98px);
}
body:has(.hero-premium) .hero-copy{
    max-width:920px;
    padding-bottom:0;
}
body:has(.hero-premium) .hero h1{
    max-width:900px;
    text-wrap:balance;
}
body:has(.hero-premium) .hero-copy>p{
    max-width:760px;
    margin-bottom:0;
}
body:has(.hero-premium) .hero-actions-five{
    max-width:980px;
    display:flex;
    flex-wrap:wrap;
    align-items:center;
}
body:has(.hero-premium) .hero-night-card{
    justify-self:end;
    width:min(100%,420px);
    min-height:0;
}
body:has(.hero-premium) .hero-scroll-cue{
    bottom:clamp(16px,2.2vh,28px);
}

/* Quick navigation: visually connected to hero */
body:has(.hero-premium) .night-pulse{
    position:relative;
    z-index:2;
}
body:has(.hero-premium) .night-pulse-grid{
    width:min(100% - clamp(32px,5vw,80px),1580px);
    margin-inline:auto;
    border-inline:1px solid rgba(255,255,255,.075);
}
body:has(.hero-premium) .night-pulse-grid>a{
    min-height:clamp(116px,9vw,150px);
    padding:clamp(22px,2.5vw,38px);
}

/* Unified section rhythm */
body:has(.hero-premium) .home-events-premium,
body:has(.hero-premium) .home-guide-premium,
body:has(.hero-premium) .home-editorial-section,
body:has(.hero-premium) .home-visual-section{
    padding-block:var(--hp-section-y);
}
body:has(.hero-premium) .home-events-premium{
    padding-top:var(--hp-section-y-compact);
}
body:has(.hero-premium) .home-section-head.premium-head{
    display:grid;
    grid-template-columns:minmax(0,1.2fr) minmax(290px,.62fr);
    align-items:end;
    gap:clamp(30px,6vw,96px);
    margin:0 0 clamp(30px,3.6vw,56px);
}
body:has(.hero-premium) .home-section-head.premium-head>div:first-child{
    min-width:0;
}
body:has(.hero-premium) .home-section-head.premium-head h2{
    margin-bottom:0;
    max-width:980px;
    text-wrap:balance;
}
body:has(.hero-premium) .premium-head-side{
    align-self:end;
    padding-bottom:clamp(2px,.5vw,8px);
}
body:has(.hero-premium) .premium-head-side p{
    margin-top:0;
    margin-bottom:18px;
}

/* Events: editorial 5-card composition with stable geometry */
body:has(.hero-premium) .home-event-showcase{
    grid-template-columns:minmax(0,1.42fr) minmax(0,.82fr) minmax(0,.82fr);
    grid-template-rows:clamp(285px,24vw,385px) clamp(285px,24vw,385px);
    gap:var(--hp-grid-gap);
}
body:has(.hero-premium) .home-event-card{
    border-radius:var(--hp-radius);
}
body:has(.hero-premium) .home-event-card:nth-child(2),
body:has(.hero-premium) .home-event-card:nth-child(3),
body:has(.hero-premium) .home-event-card:nth-child(4),
body:has(.hero-premium) .home-event-card:nth-child(5){
    min-height:0;
}
body:has(.hero-premium) .home-event-card-overlay{
    padding:clamp(22px,2vw,34px);
}

/* Places: same visual rhythm as events, not a different page */
body:has(.hero-premium) .editorial-place-grid{
    grid-template-columns:minmax(0,1.42fr) minmax(0,.82fr) minmax(0,.82fr);
    grid-template-rows:clamp(285px,24vw,385px) clamp(285px,24vw,385px);
    gap:var(--hp-grid-gap);
}
body:has(.hero-premium) .editorial-place-card{
    border-radius:var(--hp-radius);
}
body:has(.hero-premium) .editorial-place-copy{
    padding:clamp(22px,2vw,34px);
}

/* Editorial: equal visual density, no giant blank cards */
body:has(.hero-premium) .home-editorial-section{
    background:
        radial-gradient(circle at 18% 0%,rgba(229,191,101,.055),transparent 30%),
        linear-gradient(180deg,#08050d,#0d0912 56%,#08050d);
}
body:has(.hero-premium) .home-editorial-grid{
    grid-template-columns:minmax(0,1.42fr) minmax(0,.82fr) minmax(0,.82fr);
    grid-auto-rows:clamp(285px,23vw,360px);
    gap:var(--hp-grid-gap);
}
body:has(.hero-premium) .home-story-card{
    border-radius:var(--hp-radius);
}
body:has(.hero-premium) .home-story-copy{
    padding:clamp(22px,2vw,34px);
}
body:has(.hero-premium) .home-story-copy p{
    max-width:680px;
    margin-bottom:0;
}

/* Gallery: balanced two-column composition */
body:has(.hero-premium) .home-visual-section{
    min-height:0;
}
body:has(.hero-premium) .home-visual-layout{
    grid-template-columns:minmax(300px,.72fr) minmax(0,1.28fr);
    gap:clamp(46px,7vw,110px);
    align-items:center;
}
body:has(.hero-premium) .home-visual-copy{
    max-width:620px;
}
body:has(.hero-premium) .home-visual-copy h2{
    max-width:650px;
    text-wrap:balance;
}
body:has(.hero-premium) .home-visual-mosaic{
    width:100%;
    min-height:clamp(430px,42vw,650px);
    grid-template-rows:repeat(6,minmax(0,1fr));
    gap:var(--hp-grid-gap);
}
body:has(.hero-premium) .visual-tile{
    border-radius:var(--hp-radius);
}

/* Habibi: clear close to the homepage, no oversized empty zone */
body:has(.hero-premium) .habibi-section-premium{
    padding-block:var(--hp-section-y-compact);
}
body:has(.hero-premium) .habibi-panel-premium{
    min-height:0;
    border-radius:var(--hp-radius);
}

/* Large tablets / small laptops */
@media (max-width:1180px){
    body:has(.hero-premium) .hero-premium{
        min-height:clamp(720px,100svh,900px);
        padding-top:clamp(160px,18vh,205px);
    }
    body:has(.hero-premium) .hero-content-premium{
        grid-template-columns:1fr;
        gap:34px;
    }
    body:has(.hero-premium) .hero-night-card{
        display:none;
    }
    body:has(.hero-premium) .hero-copy{
        max-width:900px;
    }
    body:has(.hero-premium) .home-section-head.premium-head{
        grid-template-columns:minmax(0,1fr) minmax(260px,.48fr);
        gap:38px;
    }
    body:has(.hero-premium) .home-event-showcase,
    body:has(.hero-premium) .editorial-place-grid{
        grid-template-columns:1fr 1fr;
        grid-template-rows:clamp(390px,47vw,520px) clamp(260px,31vw,350px);
    }
    body:has(.hero-premium) .home-event-card.featured,
    body:has(.hero-premium) .editorial-place-card:first-child{
        grid-column:1/3;
    }
    body:has(.hero-premium) .home-editorial-grid{
        grid-template-columns:1fr 1fr;
        grid-auto-rows:clamp(300px,34vw,390px);
    }
    body:has(.hero-premium) .home-story-card.lead-story{
        grid-column:1/3;
        min-height:clamp(440px,55vw,620px);
    }
}

/* Tablet portrait */
@media (max-width:900px){
    body:has(.hero-premium){
        --hp-section-y:clamp(58px,8vw,78px);
        --hp-section-y-compact:clamp(46px,6.5vw,64px);
    }
    body:has(.hero-premium) .hero-premium{
        min-height:auto;
        padding-top:clamp(160px,20vh,205px);
        padding-bottom:60px;
    }
    body:has(.hero-premium) .hero-content-premium{
        display:block;
    }
    body:has(.hero-premium) .hero-actions-five{
        max-width:760px;
    }
    body:has(.hero-premium) .night-pulse-grid{
        grid-template-columns:1fr 1fr;
    }
    body:has(.hero-premium) .home-section-head.premium-head{
        grid-template-columns:1fr;
        align-items:start;
        gap:18px;
    }
    body:has(.hero-premium) .premium-head-side{
        max-width:650px;
        padding-bottom:0;
    }
    body:has(.hero-premium) .home-visual-layout{
        grid-template-columns:1fr;
        gap:42px;
    }
    body:has(.hero-premium) .home-visual-copy{
        max-width:720px;
    }
    body:has(.hero-premium) .home-visual-mosaic{
        min-height:520px;
    }
}

/* Phones */
@media (max-width:680px){
    body:has(.hero-premium){
        --hp-section-y:54px;
        --hp-section-y-compact:44px;
        --hp-grid-gap:12px;
        --hp-radius:20px;
    }
    body:has(.hero-premium) .container{
        width:min(100% - 28px,1580px);
    }
    body:has(.hero-premium) .hero-premium{
        min-height:auto;
        padding-top:148px;
        padding-bottom:46px;
    }
    body:has(.hero-premium) .hero-copy{
        max-width:none;
    }
    body:has(.hero-premium) .hero-actions-five{
        display:grid;
        grid-template-columns:1fr;
        gap:9px;
    }
    body:has(.hero-premium) .hero-actions-five .button,
    body:has(.hero-premium) .hero-actions-five .stay-button{
        width:100%;
        grid-column:auto;
    }
    body:has(.hero-premium) .night-pulse-grid{
        width:min(100% - 28px,1580px);
        grid-template-columns:1fr 1fr;
    }
    body:has(.hero-premium) .night-pulse-grid>a{
        min-height:112px;
        padding:18px 16px;
    }
    body:has(.hero-premium) .home-event-showcase,
    body:has(.hero-premium) .editorial-place-grid,
    body:has(.hero-premium) .home-editorial-grid{
        grid-template-columns:1fr;
        grid-template-rows:none;
        grid-auto-rows:auto;
    }
    body:has(.hero-premium) .home-event-card,
    body:has(.hero-premium) .home-event-card.featured,
    body:has(.hero-premium) .editorial-place-card,
    body:has(.hero-premium) .editorial-place-card:first-child,
    body:has(.hero-premium) .home-story-card,
    body:has(.hero-premium) .home-story-card.lead-story{
        grid-column:auto;
        grid-row:auto;
        min-height:0;
        aspect-ratio:4/5;
    }
    body:has(.hero-premium) .home-event-card:nth-child(n+5),
    body:has(.hero-premium) .editorial-place-card:nth-child(n+5){
        display:none;
    }
    body:has(.hero-premium) .home-visual-mosaic{
        min-height:430px;
        transform:none;
    }
}

@media (max-width:430px){
    body:has(.hero-premium) .container,
    body:has(.hero-premium) .night-pulse-grid{
        width:calc(100% - 24px);
    }
    body:has(.hero-premium) .hero-premium{
        padding-top:142px;
    }
    body:has(.hero-premium) .night-pulse-grid{
        grid-template-columns:1fr;
    }
    body:has(.hero-premium) .night-pulse-grid>a{
        min-height:92px;
    }
    body:has(.hero-premium) .home-event-card,
    body:has(.hero-premium) .editorial-place-card,
    body:has(.hero-premium) .home-story-card{
        aspect-ratio:4/5.15;
    }
    body:has(.hero-premium) .home-visual-mosaic{
        min-height:360px;
    }
}

/* ==========================================================
   HOME PERFECTION — STEP 2/5
   Typography, scale, alignment & visual hierarchy
   Scope: homepage only. Header / menu / center logo untouched.
   ========================================================== */
body:has(.hero-premium){
    --hp-display-1:clamp(4.9rem,7.4vw,9.6rem);
    --hp-display-2:clamp(3rem,4.65vw,6.1rem);
    --hp-title-card:clamp(1.35rem,1.55vw,2.05rem);
    --hp-copy-lg:clamp(1.04rem,1.02vw,1.28rem);
    --hp-copy:clamp(.96rem,.88vw,1.08rem);
    --hp-label:.73rem;
    --hp-line-display:.88;
    --hp-line-title:.98;
    --hp-line-copy:1.62;
    -webkit-font-smoothing:antialiased;
    text-rendering:optimizeLegibility;
}

/* Hero copy: editorial, controlled, never oversized beyond its composition */
body:has(.hero-premium) .hero-copy .eyebrow{
    display:inline-flex;
    align-items:center;
    min-height:28px;
    margin-bottom:clamp(18px,1.8vw,28px);
    font-size:clamp(.68rem,.62vw,.78rem);
    line-height:1;
    letter-spacing:.19em;
    font-weight:700;
    text-transform:uppercase;
}
body:has(.hero-premium) .hero-copy h1{
    max-width:1100px;
    margin:0;
    font-size:var(--hp-display-1);
    line-height:var(--hp-line-display);
    letter-spacing:-.052em;
    text-wrap:balance;
}
body:has(.hero-premium) .hero-copy h1 span,
body:has(.hero-premium) .hero-copy h1 strong{
    display:block;
}
body:has(.hero-premium) .hero-copy h1 strong{
    font-weight:700;
}
body:has(.hero-premium) .hero-copy>p{
    max-width:710px;
    margin:clamp(24px,2.2vw,36px) 0 0;
    font-size:var(--hp-copy-lg);
    line-height:1.62;
    letter-spacing:-.012em;
    text-wrap:pretty;
}
body:has(.hero-premium) .hero-actions-five{
    margin-top:clamp(28px,2.7vw,44px);
}
body:has(.hero-premium) .hero-actions-five .button,
body:has(.hero-premium) .hero-actions-five .stay-button{
    min-height:50px;
    padding:0 20px;
    font-size:clamp(.73rem,.68vw,.84rem);
    line-height:1.15;
    letter-spacing:.055em;
    font-weight:750;
    text-align:center;
}

/* Side card: stronger hierarchy, not louder than hero */
body:has(.hero-premium) .hero-night-card>span{
    font-size:.7rem;
    line-height:1.3;
    letter-spacing:.16em;
    text-transform:uppercase;
}
body:has(.hero-premium) .hero-night-card>strong{
    max-width:15ch;
    font-size:clamp(1.8rem,2.3vw,3.05rem);
    line-height:.98;
    letter-spacing:-.035em;
    text-wrap:balance;
}
body:has(.hero-premium) .hero-night-links a{
    font-size:clamp(.82rem,.76vw,.94rem);
    line-height:1.3;
    letter-spacing:.005em;
}
body:has(.hero-premium) .hero-scroll-cue span{
    font-size:.66rem;
    letter-spacing:.18em;
    font-weight:700;
}

/* Night pulse: tighter type rhythm */
body:has(.hero-premium) .night-pulse-grid>a small{
    font-size:.66rem;
    line-height:1;
    letter-spacing:.13em;
    font-weight:700;
}
body:has(.hero-premium) .night-pulse-grid>a strong{
    max-width:16ch;
    font-size:clamp(1.03rem,1.05vw,1.34rem);
    line-height:1.08;
    letter-spacing:-.022em;
    text-wrap:balance;
}
body:has(.hero-premium) .night-pulse-grid>a span{
    font-size:clamp(.72rem,.68vw,.84rem);
    line-height:1.3;
    letter-spacing:.015em;
}

/* Every homepage section follows one title system */
body:has(.hero-premium) .home-section-head.premium-head{
    align-items:end;
}
body:has(.hero-premium) .home-section-head .eyebrow,
body:has(.hero-premium) .home-visual-copy .eyebrow,
body:has(.hero-premium) .habibi-panel-premium .eyebrow{
    display:inline-block;
    margin-bottom:clamp(13px,1.15vw,18px);
    font-size:clamp(.67rem,.61vw,.76rem);
    line-height:1;
    letter-spacing:.2em;
    font-weight:750;
    text-transform:uppercase;
}
body:has(.hero-premium) .home-section-head h2,
body:has(.hero-premium) .home-visual-copy h2,
body:has(.hero-premium) .habibi-panel-premium h2{
    margin:0;
    max-width:12ch;
    font-size:var(--hp-display-2);
    line-height:var(--hp-line-title);
    letter-spacing:-.046em;
    text-wrap:balance;
}
body:has(.hero-premium) .premium-head-side{
    max-width:520px;
}
body:has(.hero-premium) .premium-head-side p,
body:has(.hero-premium) .home-visual-copy>p,
body:has(.hero-premium) .habibi-panel-premium>p{
    margin:0;
    font-size:var(--hp-copy);
    line-height:var(--hp-line-copy);
    letter-spacing:-.008em;
    text-wrap:pretty;
}
body:has(.hero-premium) .premium-head-side .text-link,
body:has(.hero-premium) .home-visual-copy .text-link{
    display:inline-flex;
    align-items:center;
    margin-top:clamp(16px,1.4vw,22px);
    font-size:clamp(.78rem,.72vw,.9rem);
    line-height:1.25;
    letter-spacing:.035em;
    font-weight:750;
}

/* Event and venue cards: consistent overlay hierarchy */
body:has(.hero-premium) .home-event-card-overlay small,
body:has(.hero-premium) .editorial-place-copy small,
body:has(.hero-premium) .home-story-copy small{
    display:block;
    margin-bottom:9px;
    font-size:clamp(.66rem,.6vw,.76rem);
    line-height:1.2;
    letter-spacing:.145em;
    font-weight:750;
    text-transform:uppercase;
}
body:has(.hero-premium) .home-event-card-overlay strong,
body:has(.hero-premium) .editorial-place-copy strong,
body:has(.hero-premium) .home-story-copy strong{
    display:block;
    max-width:19ch;
    font-size:var(--hp-title-card);
    line-height:1.04;
    letter-spacing:-.032em;
    text-wrap:balance;
}
body:has(.hero-premium) .home-event-card.featured .home-event-card-overlay strong,
body:has(.hero-premium) .editorial-place-card:first-child .editorial-place-copy strong,
body:has(.hero-premium) .home-story-card.lead-story .home-story-copy strong{
    max-width:17ch;
    font-size:clamp(1.9rem,2.55vw,3.45rem);
    line-height:.98;
}
body:has(.hero-premium) .home-event-card-overlay em,
body:has(.hero-premium) .editorial-place-copy em,
body:has(.hero-premium) .home-story-copy em{
    display:block;
    margin-top:10px;
    font-size:clamp(.76rem,.68vw,.86rem);
    line-height:1.35;
    letter-spacing:.02em;
}
body:has(.hero-premium) .home-event-card-overlay i{
    margin-top:16px;
    font-size:clamp(.72rem,.66vw,.82rem);
    line-height:1.2;
    letter-spacing:.045em;
    font-weight:750;
}
body:has(.hero-premium) .home-story-copy p{
    max-width:58ch;
    margin-top:clamp(14px,1.2vw,19px);
    font-size:clamp(.91rem,.82vw,1.02rem);
    line-height:1.58;
    letter-spacing:-.005em;
    display:-webkit-box;
    -webkit-box-orient:vertical;
    -webkit-line-clamp:3;
    overflow:hidden;
}

/* Gallery copy */
body:has(.hero-premium) .home-visual-copy h2{
    max-width:10.5ch;
}
body:has(.hero-premium) .home-visual-copy>p{
    max-width:50ch;
    margin-top:clamp(20px,1.8vw,28px);
}

/* Habibi closing CTA */
body:has(.hero-premium) .habibi-panel-premium h2{
    max-width:14ch;
}
body:has(.hero-premium) .habibi-panel-premium>p{
    max-width:52ch;
    margin-top:clamp(18px,1.6vw,26px);
}
body:has(.hero-premium) .habibi-panel-premium .button,
body:has(.hero-premium) .habibi-panel-premium a[class*="button"]{
    min-height:50px;
    padding-inline:22px;
    font-size:clamp(.76rem,.7vw,.88rem);
    font-weight:750;
    letter-spacing:.04em;
}

/* Desktop optical alignment refinements */
@media (min-width:1181px){
    body:has(.hero-premium) .hero-copy{
        padding-top:clamp(8px,1vh,18px);
    }
    body:has(.hero-premium) .premium-head-side{
        padding-bottom:4px;
    }
}

/* Laptop */
@media (max-width:1180px){
    body:has(.hero-premium){
        --hp-display-1:clamp(4.55rem,8.5vw,7.3rem);
        --hp-display-2:clamp(2.8rem,5.7vw,4.9rem);
    }
    body:has(.hero-premium) .hero-copy>p{
        max-width:650px;
    }
    body:has(.hero-premium) .home-section-head h2{
        max-width:11ch;
    }
}

/* Tablet */
@media (max-width:900px){
    body:has(.hero-premium){
        --hp-display-1:clamp(4rem,11.4vw,6.5rem);
        --hp-display-2:clamp(2.55rem,7.7vw,4.5rem);
        --hp-title-card:clamp(1.42rem,2.8vw,2rem);
        --hp-copy-lg:clamp(1rem,1.9vw,1.18rem);
        --hp-copy:clamp(.94rem,1.55vw,1.05rem);
    }
    body:has(.hero-premium) .hero-copy h1{
        max-width:850px;
        letter-spacing:-.048em;
    }
    body:has(.hero-premium) .home-section-head h2,
    body:has(.hero-premium) .home-visual-copy h2{
        max-width:13ch;
    }
    body:has(.hero-premium) .premium-head-side{
        max-width:600px;
    }
}

/* Phone */
@media (max-width:680px){
    body:has(.hero-premium){
        --hp-display-1:clamp(3.15rem,15.2vw,5.15rem);
        --hp-display-2:clamp(2.35rem,11.6vw,3.75rem);
        --hp-title-card:clamp(1.45rem,6.5vw,2rem);
        --hp-copy-lg:clamp(.98rem,4vw,1.1rem);
        --hp-copy:clamp(.93rem,3.7vw,1.03rem);
    }
    body:has(.hero-premium) .hero-copy .eyebrow{
        margin-bottom:16px;
        font-size:.64rem;
        letter-spacing:.17em;
    }
    body:has(.hero-premium) .hero-copy h1{
        max-width:100%;
        line-height:.9;
        letter-spacing:-.045em;
    }
    body:has(.hero-premium) .hero-copy>p{
        max-width:36ch;
        margin-top:22px;
        line-height:1.55;
    }
    body:has(.hero-premium) .hero-actions-five .button,
    body:has(.hero-premium) .hero-actions-five .stay-button{
        min-height:48px;
        font-size:.74rem;
    }
    body:has(.hero-premium) .home-section-head h2,
    body:has(.hero-premium) .home-visual-copy h2,
    body:has(.hero-premium) .habibi-panel-premium h2{
        max-width:12ch;
        line-height:.98;
        letter-spacing:-.04em;
    }
    body:has(.hero-premium) .premium-head-side p,
    body:has(.hero-premium) .home-visual-copy>p,
    body:has(.hero-premium) .habibi-panel-premium>p{
        line-height:1.56;
    }
    body:has(.hero-premium) .home-event-card.featured .home-event-card-overlay strong,
    body:has(.hero-premium) .editorial-place-card:first-child .editorial-place-copy strong,
    body:has(.hero-premium) .home-story-card.lead-story .home-story-copy strong{
        font-size:clamp(1.65rem,7.4vw,2.35rem);
    }
}

/* Small phone */
@media (max-width:430px){
    body:has(.hero-premium){
        --hp-display-1:clamp(2.85rem,14.5vw,4rem);
        --hp-display-2:clamp(2.15rem,10.9vw,3.15rem);
    }
    body:has(.hero-premium) .hero-copy h1{
        letter-spacing:-.042em;
    }
    body:has(.hero-premium) .night-pulse-grid>a strong{
        max-width:none;
    }
    body:has(.hero-premium) .home-story-copy p{
        -webkit-line-clamp:2;
    }
}

/* ========================================================================== 
   HOME PERFECTION — STEP 3/5
   Cards, imagery, overlays, contrast and micro-interactions
   Header / navigation / logo intentionally untouched.
   ========================================================================== */
body:has(.hero-premium){
    --hp-card-radius:clamp(18px,1.65vw,28px);
    --hp-card-border:rgba(255,255,255,.105);
    --hp-card-border-hover:rgba(235,201,122,.34);
    --hp-card-shadow:0 18px 54px rgba(0,0,0,.28);
    --hp-card-shadow-hover:0 28px 80px rgba(0,0,0,.48);
    --hp-gold:#e8c878;
}
body:has(.hero-premium) .home-event-card,
body:has(.hero-premium) .editorial-place-card,
body:has(.hero-premium) .home-story-card,
body:has(.hero-premium) .visual-tile,
body:has(.hero-premium) .night-pulse-grid>a{
    border-radius:var(--hp-card-radius);
    border:1px solid var(--hp-card-border);
    box-shadow:var(--hp-card-shadow);
    isolation:isolate;
    transform:translateZ(0);
    backface-visibility:hidden;
}
body:has(.hero-premium) .home-event-card,
body:has(.hero-premium) .editorial-place-card,
body:has(.hero-premium) .home-story-card,
body:has(.hero-premium) .night-pulse-grid>a{
    transition:transform .42s cubic-bezier(.22,.61,.36,1),border-color .32s ease,box-shadow .42s ease,background-color .32s ease;
}
@media (hover:hover) and (pointer:fine){
    body:has(.hero-premium) .home-event-card:hover,
    body:has(.hero-premium) .editorial-place-card:hover,
    body:has(.hero-premium) .home-story-card:hover{transform:translateY(-5px);border-color:var(--hp-card-border-hover);box-shadow:var(--hp-card-shadow-hover)}
    body:has(.hero-premium) .night-pulse-grid>a:hover{transform:translateY(-3px);border-color:rgba(235,201,122,.28);box-shadow:0 20px 48px rgba(0,0,0,.34)}
}
body:has(.hero-premium) .home-event-card:focus-visible,
body:has(.hero-premium) .editorial-place-card:focus-visible,
body:has(.hero-premium) .home-story-card:focus-visible,
body:has(.hero-premium) .night-pulse-grid>a:focus-visible,
body:has(.hero-premium) .home-visual-section a:focus-visible,
body:has(.hero-premium) .habibi-panel-premium a:focus-visible{outline:2px solid rgba(232,200,120,.92);outline-offset:4px}
body:has(.hero-premium) .home-event-card img,
body:has(.hero-premium) .editorial-place-card img,
body:has(.hero-premium) .home-story-card img,
body:has(.hero-premium) .visual-tile img{display:block;width:100%;height:100%;object-fit:cover;image-rendering:auto;transform:scale(1.001);transition:transform .72s cubic-bezier(.2,.65,.2,1),filter .5s ease,opacity .4s ease}
@media (hover:hover) and (pointer:fine){
    body:has(.hero-premium) .home-event-card:hover img,
    body:has(.hero-premium) .editorial-place-card:hover img,
    body:has(.hero-premium) .home-story-card:hover img{transform:scale(1.045);filter:saturate(1.06) contrast(1.035) brightness(1.02)}
}
body:has(.hero-premium) .home-event-card::before{content:"";position:absolute;inset:0;z-index:1;pointer-events:none;background:linear-gradient(120deg,rgba(232,200,120,.09),transparent 36%,rgba(229,63,171,.05));opacity:.55}
body:has(.hero-premium) .home-event-card::after{z-index:1;background:linear-gradient(180deg,rgba(5,3,10,.02) 20%,rgba(5,3,10,.18) 48%,rgba(5,3,10,.94) 100%),linear-gradient(90deg,rgba(5,3,10,.28),transparent 58%)}
body:has(.hero-premium) .home-event-card-overlay{z-index:2;padding:clamp(22px,2.25vw,34px);text-shadow:0 2px 18px rgba(0,0,0,.58)}
body:has(.hero-premium) .home-event-card-overlay small,
body:has(.hero-premium) .editorial-place-copy small,
body:has(.hero-premium) .home-story-copy small{display:inline-flex;align-items:center;min-height:26px;padding:0 10px;border:1px solid rgba(232,200,120,.26);border-radius:999px;background:rgba(8,5,13,.5);backdrop-filter:blur(10px);-webkit-backdrop-filter:blur(10px)}
body:has(.hero-premium) .home-event-card-overlay i,
body:has(.hero-premium) .editorial-place-copy em,
body:has(.hero-premium) .home-story-copy em{transition:transform .28s ease,color .28s ease}
@media (hover:hover) and (pointer:fine){
    body:has(.hero-premium) .home-event-card:hover .home-event-card-overlay i,
    body:has(.hero-premium) .editorial-place-card:hover .editorial-place-copy em,
    body:has(.hero-premium) .home-story-card:hover .home-story-copy em{transform:translateX(4px);color:#f3d88d}
}
body:has(.hero-premium) .editorial-place-shade{background:linear-gradient(180deg,rgba(5,3,10,.02) 24%,rgba(5,3,10,.16) 54%,rgba(5,3,10,.96) 100%),linear-gradient(100deg,rgba(5,3,10,.3),transparent 60%)}
body:has(.hero-premium) .editorial-place-copy{padding:clamp(22px,2.25vw,34px);text-shadow:0 2px 18px rgba(0,0,0,.62)}
body:has(.hero-premium) .home-story-card{background:radial-gradient(circle at 82% 12%,rgba(232,200,120,.11),transparent 28%),radial-gradient(circle at 18% 82%,rgba(229,63,171,.09),transparent 34%),#120d17}
body:has(.hero-premium) .home-story-card::after{z-index:1;background:linear-gradient(180deg,rgba(5,3,10,.03) 18%,rgba(5,3,10,.18) 48%,rgba(5,3,10,.97) 100%)}
body:has(.hero-premium) .home-story-copy{z-index:2;padding:clamp(22px,2.25vw,34px);text-shadow:0 2px 18px rgba(0,0,0,.56)}
body:has(.hero-premium) .home-story-copy p{color:rgba(235,229,239,.78)}
body:has(.hero-premium) .night-pulse-grid>a{position:relative;overflow:hidden;background:linear-gradient(145deg,rgba(255,255,255,.055),rgba(255,255,255,.018));backdrop-filter:blur(14px);-webkit-backdrop-filter:blur(14px)}
body:has(.hero-premium) .night-pulse-grid>a::before{content:"";position:absolute;inset:0;background:linear-gradient(120deg,rgba(232,200,120,.09),transparent 46%,rgba(229,63,171,.045));opacity:.75;pointer-events:none}
body:has(.hero-premium) .night-pulse-grid>a>*{position:relative;z-index:1}
body:has(.hero-premium) .visual-tile{position:relative;overflow:hidden;box-shadow:0 22px 58px rgba(0,0,0,.32)}
body:has(.hero-premium) .visual-tile::after{content:"";position:absolute;inset:0;background:linear-gradient(180deg,rgba(255,255,255,.035),transparent 28%,rgba(5,3,10,.17));pointer-events:none}
@media (hover:hover) and (pointer:fine){body:has(.hero-premium) .visual-tile:hover img{transform:scale(1.035);filter:saturate(1.055) contrast(1.025)}}
body:has(.hero-premium) .habibi-panel-premium{position:relative;overflow:hidden;border:1px solid rgba(232,200,120,.16);box-shadow:0 28px 90px rgba(0,0,0,.34);background:radial-gradient(circle at 12% 20%,rgba(232,200,120,.085),transparent 28%),radial-gradient(circle at 88% 78%,rgba(229,63,171,.075),transparent 32%),linear-gradient(145deg,rgba(255,255,255,.045),rgba(255,255,255,.014))}
body:has(.hero-premium) .habibi-panel-premium::before{content:"";position:absolute;inset:0;pointer-events:none;background:linear-gradient(115deg,rgba(255,255,255,.025),transparent 42%)}
body:has(.hero-premium) .habibi-panel-premium>*{position:relative;z-index:1}
@media (hover:none), (pointer:coarse){body:has(.hero-premium) .home-event-card,body:has(.hero-premium) .editorial-place-card,body:has(.hero-premium) .home-story-card,body:has(.hero-premium) .night-pulse-grid>a{transform:none!important}}
@media (prefers-reduced-motion:reduce){body:has(.hero-premium) .home-event-card,body:has(.hero-premium) .editorial-place-card,body:has(.hero-premium) .home-story-card,body:has(.hero-premium) .visual-tile,body:has(.hero-premium) .night-pulse-grid>a,body:has(.hero-premium) .home-event-card img,body:has(.hero-premium) .editorial-place-card img,body:has(.hero-premium) .home-story-card img,body:has(.hero-premium) .visual-tile img{transition:none!important;transform:none!important}}
@media (max-width:900px){body:has(.hero-premium){--hp-card-radius:20px}body:has(.hero-premium) .home-event-card-overlay,body:has(.hero-premium) .editorial-place-copy,body:has(.hero-premium) .home-story-copy{padding:24px}}
@media (max-width:680px){body:has(.hero-premium){--hp-card-radius:18px}body:has(.hero-premium) .home-event-card,body:has(.hero-premium) .editorial-place-card,body:has(.hero-premium) .home-story-card,body:has(.hero-premium) .visual-tile,body:has(.hero-premium) .night-pulse-grid>a{box-shadow:0 14px 36px rgba(0,0,0,.25)}body:has(.hero-premium) .home-event-card-overlay,body:has(.hero-premium) .editorial-place-copy,body:has(.hero-premium) .home-story-copy{padding:21px}body:has(.hero-premium) .home-event-card-overlay small,body:has(.hero-premium) .editorial-place-copy small,body:has(.hero-premium) .home-story-copy small{min-height:24px;padding-inline:9px}}

/* =========================================================
   HOME PERFECTION — STEP 4/5
   Section transitions, scroll rhythm, responsive interaction
   Header / navigation / logo intentionally untouched.
   ========================================================= */
body:has(.hero-premium) main{
    overflow:clip;
}
body:has(.hero-premium) #next-events{
    scroll-margin-top:clamp(92px,10vh,128px);
}

/* A single visual rhythm between editorial chapters */
body:has(.hero-premium) .night-pulse,
body:has(.hero-premium) .home-events-premium,
body:has(.hero-premium) .home-guide-premium,
body:has(.hero-premium) .home-editorial-section,
body:has(.hero-premium) .home-visual-section,
body:has(.hero-premium) .habibi-section-premium{
    position:relative;
    isolation:isolate;
}
body:has(.hero-premium) .home-events-premium::before,
body:has(.hero-premium) .home-guide-premium::before,
body:has(.hero-premium) .home-editorial-section::before,
body:has(.hero-premium) .home-visual-section::before,
body:has(.hero-premium) .habibi-section-premium::before{
    content:"";
    position:absolute;
    top:0;
    left:50%;
    width:min(calc(100% - 40px),1240px);
    height:1px;
    transform:translateX(-50%);
    background:linear-gradient(90deg,transparent,rgba(232,200,120,.18) 22%,rgba(255,255,255,.09) 50%,rgba(229,63,171,.13) 78%,transparent);
    pointer-events:none;
    z-index:2;
}
body:has(.hero-premium) .home-events-premium::after,
body:has(.hero-premium) .home-guide-premium::after,
body:has(.hero-premium) .home-editorial-section::after{
    content:"";
    position:absolute;
    inset:0;
    z-index:-1;
    pointer-events:none;
    background:radial-gradient(circle at 50% 0,rgba(255,255,255,.025),transparent 34%);
}

/* Optical scroll rhythm: content breathes consistently without dead space */
body:has(.hero-premium) .home-events-premium,
body:has(.hero-premium) .home-guide-premium,
body:has(.hero-premium) .home-editorial-section{
    padding-block:clamp(62px,7.2vw,104px);
}
body:has(.hero-premium) .home-visual-section{
    padding-block:clamp(70px,8vw,112px);
}
body:has(.hero-premium) .habibi-section-premium{
    padding-block:clamp(62px,7vw,96px);
}
body:has(.hero-premium) .home-section-head{
    margin-bottom:clamp(28px,3.5vw,46px);
}

/* Scroll reveal — restrained and editorial, never theatrical */
body:has(.hero-premium) .home-reveal{
    --home-reveal-y:24px;
    opacity:0;
    transform:translate3d(0,var(--home-reveal-y),0);
    transition:
        opacity .72s cubic-bezier(.2,.7,.2,1),
        transform .82s cubic-bezier(.2,.7,.2,1);
    will-change:opacity,transform;
}
body:has(.hero-premium) .home-reveal.is-visible{
    opacity:1;
    transform:translate3d(0,0,0);
    will-change:auto;
}
body:has(.hero-premium) .home-reveal[data-home-reveal="soft"]{
    --home-reveal-y:16px;
}

/* Stagger cards only when a whole section enters the viewport */
body:has(.hero-premium) .home-reveal .home-event-card,
body:has(.hero-premium) .home-reveal .editorial-place-card,
body:has(.hero-premium) .home-reveal .home-story-card,
body:has(.hero-premium) .home-reveal .visual-tile,
body:has(.hero-premium) .home-reveal .night-pulse-grid>a{
    transition-delay:0s;
}
body:has(.hero-premium) .home-reveal.is-visible .home-event-card:nth-child(2),
body:has(.hero-premium) .home-reveal.is-visible .editorial-place-card:nth-child(2),
body:has(.hero-premium) .home-reveal.is-visible .home-story-card:nth-child(2),
body:has(.hero-premium) .home-reveal.is-visible .visual-tile:nth-child(2),
body:has(.hero-premium) .home-reveal.is-visible .night-pulse-grid>a:nth-child(2){transition-delay:.04s}
body:has(.hero-premium) .home-reveal.is-visible .home-event-card:nth-child(3),
body:has(.hero-premium) .home-reveal.is-visible .editorial-place-card:nth-child(3),
body:has(.hero-premium) .home-reveal.is-visible .home-story-card:nth-child(3),
body:has(.hero-premium) .home-reveal.is-visible .visual-tile:nth-child(3),
body:has(.hero-premium) .home-reveal.is-visible .night-pulse-grid>a:nth-child(3){transition-delay:.075s}
body:has(.hero-premium) .home-reveal.is-visible .home-event-card:nth-child(4),
body:has(.hero-premium) .home-reveal.is-visible .editorial-place-card:nth-child(4),
body:has(.hero-premium) .home-reveal.is-visible .home-story-card:nth-child(4),
body:has(.hero-premium) .home-reveal.is-visible .visual-tile:nth-child(4),
body:has(.hero-premium) .home-reveal.is-visible .night-pulse-grid>a:nth-child(4){transition-delay:.1s}

/* Better perceived continuity from the hero into the first content block */
body:has(.hero-premium) .night-pulse{
    z-index:4;
    margin-top:-1px;
    background:linear-gradient(180deg,rgba(8,5,13,.98),rgba(8,5,13,1));
}
body:has(.hero-premium) .night-pulse-grid{
    border-bottom:1px solid rgba(255,255,255,.055);
}

/* Precise interaction feedback without layout jumps */
body:has(.hero-premium) .text-link,
body:has(.hero-premium) .home-event-card,
body:has(.hero-premium) .editorial-place-card,
body:has(.hero-premium) .home-story-card,
body:has(.hero-premium) .night-pulse-grid>a,
body:has(.hero-premium) .habibi-panel-premium .button{
    -webkit-tap-highlight-color:transparent;
}
body:has(.hero-premium) .text-link{
    position:relative;
    display:inline-flex;
    align-items:center;
    gap:.35em;
}
body:has(.hero-premium) .text-link::after{
    content:"";
    position:absolute;
    left:0;
    right:0;
    bottom:-5px;
    height:1px;
    transform:scaleX(.28);
    transform-origin:left;
    background:currentColor;
    opacity:.45;
    transition:transform .28s ease,opacity .28s ease;
}
@media (hover:hover) and (pointer:fine){
    body:has(.hero-premium) .text-link:hover::after{
        transform:scaleX(1);
        opacity:.9;
    }
}

/* Tablet: preserve rhythm, remove unnecessary motion and oversized gaps */
@media (max-width:1024px){
    body:has(.hero-premium) .home-events-premium,
    body:has(.hero-premium) .home-guide-premium,
    body:has(.hero-premium) .home-editorial-section{
        padding-block:clamp(56px,7vw,78px);
    }
    body:has(.hero-premium) .home-visual-section,
    body:has(.hero-premium) .habibi-section-premium{
        padding-block:clamp(58px,7.5vw,84px);
    }
    body:has(.hero-premium) .home-section-head{margin-bottom:30px}
}

/* Phone: compact chapters and stable touch behavior */
@media (max-width:680px){
    body:has(.hero-premium) #next-events{scroll-margin-top:84px}
    body:has(.hero-premium) .home-events-premium,
    body:has(.hero-premium) .home-guide-premium,
    body:has(.hero-premium) .home-editorial-section,
    body:has(.hero-premium) .home-visual-section,
    body:has(.hero-premium) .habibi-section-premium{
        padding-block:52px;
    }
    body:has(.hero-premium) .home-events-premium::before,
    body:has(.hero-premium) .home-guide-premium::before,
    body:has(.hero-premium) .home-editorial-section::before,
    body:has(.hero-premium) .home-visual-section::before,
    body:has(.hero-premium) .habibi-section-premium::before{
        width:calc(100% - 32px);
    }
    body:has(.hero-premium) .home-section-head{margin-bottom:24px}
    body:has(.hero-premium) .home-reveal{
        --home-reveal-y:14px;
        transition-duration:.52s,.62s;
    }
    body:has(.hero-premium) .night-pulse-grid>a,
    body:has(.hero-premium) .home-event-card,
    body:has(.hero-premium) .editorial-place-card,
    body:has(.hero-premium) .home-story-card{
        touch-action:manipulation;
    }
}

/* Tiny screens: eliminate final horizontal-risk and preserve tap comfort */
@media (max-width:420px){
    body:has(.hero-premium) .home-events-premium,
    body:has(.hero-premium) .home-guide-premium,
    body:has(.hero-premium) .home-editorial-section,
    body:has(.hero-premium) .home-visual-section,
    body:has(.hero-premium) .habibi-section-premium{padding-block:46px}
    body:has(.hero-premium) .home-section-head{margin-bottom:21px}
    body:has(.hero-premium) .home-visual-mosaic{max-width:100%}
}

@media (prefers-reduced-motion:reduce){
    html{scroll-behavior:auto}
    body:has(.hero-premium) .home-reveal,
    body:has(.hero-premium) .home-reveal.is-visible{
        opacity:1!important;
        transform:none!important;
        transition:none!important;
    }
    body:has(.hero-premium) .text-link::after{transition:none!important}
}

/* =========================================================
   HOME PERFECTION — STEP 5/5 FINAL POLISH
   Final optical consistency, resilient media and extreme responsive tuning.
   Header / navigation / logo intentionally untouched.
   ========================================================= */
body:has(.hero-premium){
    --hp-shell:min(1240px,calc(100vw - 48px));
    --hp-line:rgba(255,255,255,.075);
    --hp-soft:rgba(255,255,255,.58);
    --hp-muted:rgba(255,255,255,.42);
}
body:has(.hero-premium) main{
    background:#08050d;
}
body:has(.hero-premium) main>.container,
body:has(.hero-premium) .home-section>.container,
body:has(.hero-premium) .home-editorial-section>.container,
body:has(.hero-premium) .home-visual-section>.container,
body:has(.hero-premium) .habibi-section-premium>.container{
    width:var(--hp-shell);
    max-width:none;
}

/* Gentle tonal chapters: enough separation without looking like stacked boxes */
body:has(.hero-premium) .home-events-premium{background:linear-gradient(180deg,#08050d 0%,#0a0710 52%,#08050d 100%)}
body:has(.hero-premium) .home-guide-premium{background:linear-gradient(180deg,#08050d 0%,#09060d 100%)}
body:has(.hero-premium) .home-editorial-section{background:radial-gradient(circle at 88% 18%,rgba(202,80,162,.045),transparent 32%),#08050d}
body:has(.hero-premium) .home-visual-section{background:radial-gradient(circle at 12% 20%,rgba(232,200,120,.05),transparent 34%),#09060e}
body:has(.hero-premium) .habibi-section-premium{background:linear-gradient(180deg,#09060e,#07040a)}

/* Optical heading baseline and predictable text measure */
body:has(.hero-premium) .home-section-head{
    align-items:end;
}
body:has(.hero-premium) .home-section-head>div:first-child{min-width:0}
body:has(.hero-premium) .home-section-head h2{
    max-width:12ch;
    text-wrap:balance;
}
body:has(.hero-premium) .premium-head-side{
    max-width:600px;
    justify-self:end;
}
body:has(.hero-premium) .premium-head-side p{
    color:var(--hp-soft);
    text-wrap:pretty;
}

/* Final card consistency */
body:has(.hero-premium) .home-event-card,
body:has(.hero-premium) .editorial-place-card,
body:has(.hero-premium) .home-story-card,
body:has(.hero-premium) .visual-tile{
    min-width:0;
    backface-visibility:hidden;
    contain:paint;
}
body:has(.hero-premium) .home-event-card img,
body:has(.hero-premium) .editorial-place-card img,
body:has(.hero-premium) .home-story-card img,
body:has(.hero-premium) .visual-tile img{
    display:block;
    max-width:none;
    image-rendering:auto;
}
body:has(.hero-premium) .home-event-card-overlay,
body:has(.hero-premium) .editorial-place-copy,
body:has(.hero-premium) .home-story-copy{
    gap:0;
}
body:has(.hero-premium) .home-event-card-overlay strong,
body:has(.hero-premium) .editorial-place-copy strong,
body:has(.hero-premium) .home-story-copy strong{
    text-wrap:balance;
    overflow-wrap:anywhere;
}
body:has(.hero-premium) .home-event-card-overlay p,
body:has(.hero-premium) .editorial-place-copy p,
body:has(.hero-premium) .home-story-copy p{
    color:rgba(255,255,255,.68);
    text-wrap:pretty;
}

/* Broken/missing image fallback: deliberate editorial surface instead of a broken icon */
body:has(.hero-premium) img.home-media-error{
    opacity:0!important;
}
body:has(.hero-premium) .home-event-card:has(img.home-media-error),
body:has(.hero-premium) .editorial-place-card:has(img.home-media-error),
body:has(.hero-premium) .home-story-card:has(img.home-media-error),
body:has(.hero-premium) .visual-tile:has(img.home-media-error){
    background:
        radial-gradient(circle at 78% 18%,rgba(229,63,171,.16),transparent 34%),
        radial-gradient(circle at 18% 82%,rgba(232,200,120,.13),transparent 36%),
        linear-gradient(145deg,#1a111d,#0c0810 68%);
}
body:has(.hero-premium) .home-event-card:has(img.home-media-error)::before,
body:has(.hero-premium) .editorial-place-card:has(img.home-media-error)::before,
body:has(.hero-premium) .home-story-card:has(img.home-media-error)::before,
body:has(.hero-premium) .visual-tile:has(img.home-media-error)::before{
    content:"MARRAKECH";
    position:absolute;
    inset:auto 18px 18px auto;
    z-index:0;
    color:rgba(255,255,255,.065);
    font-size:clamp(1rem,2.4vw,2.2rem);
    font-weight:900;
    letter-spacing:.18em;
    pointer-events:none;
}

/* Keep content from becoming excessively wide on cinema displays */
@media (min-width:1600px){
    body:has(.hero-premium){--hp-shell:1320px}
    body:has(.hero-premium) .hero-content-premium{max-width:1320px;margin-inline:auto}
    body:has(.hero-premium) .home-event-showcase{grid-template-rows:410px 330px}
    body:has(.hero-premium) .editorial-place-grid{grid-template-rows:430px 320px}
    body:has(.hero-premium) .home-editorial-grid{grid-auto-rows:390px}
}

/* Laptop polish: preserve density and avoid giant cards */
@media (min-width:1025px) and (max-width:1366px){
    body:has(.hero-premium){--hp-shell:min(1180px,calc(100vw - 40px))}
    body:has(.hero-premium) .home-event-showcase{grid-template-rows:360px 300px}
    body:has(.hero-premium) .editorial-place-grid{grid-template-rows:380px 290px}
    body:has(.hero-premium) .home-editorial-grid{grid-auto-rows:350px}
}

/* Tablet: one consistent safe gutter and no accidental overflow */
@media (max-width:1024px){
    body:has(.hero-premium){--hp-shell:calc(100vw - 40px)}
    body:has(.hero-premium) .home-section-head h2{max-width:14ch}
    body:has(.hero-premium) .premium-head-side{justify-self:start;max-width:680px}
}

/* Mobile: final optical density, balanced type and reliable horizontal fit */
@media (max-width:680px){
    body:has(.hero-premium){--hp-shell:calc(100vw - 32px)}
    body:has(.hero-premium) .home-section-head h2{max-width:11ch}
    body:has(.hero-premium) .premium-head-side p{font-size:.92rem;line-height:1.65}
    body:has(.hero-premium) .home-event-card-overlay strong,
    body:has(.hero-premium) .editorial-place-copy strong,
    body:has(.hero-premium) .home-story-copy strong{max-width:100%}
    body:has(.hero-premium) .home-event-card-overlay p,
    body:has(.hero-premium) .editorial-place-copy p,
    body:has(.hero-premium) .home-story-copy p{
        display:-webkit-box;
        -webkit-box-orient:vertical;
        -webkit-line-clamp:3;
        overflow:hidden;
    }
    body:has(.hero-premium) .footer-shell,
    body:has(.hero-premium) .footer-bottom{width:var(--hp-shell);max-width:none}
}

/* Small phones: protect every pixel from clipping and oversized copy */
@media (max-width:390px){
    body:has(.hero-premium){--hp-shell:calc(100vw - 24px)}
    body:has(.hero-premium) .hero h1{font-size:clamp(2.95rem,15.2vw,4.35rem)}
    body:has(.hero-premium) .hero-actions-five .button{padding-inline:12px}
    body:has(.hero-premium) .night-pulse-grid{grid-template-columns:1fr}
    body:has(.hero-premium) .night-pulse-grid>a{min-height:104px}
    body:has(.hero-premium) .home-section-head h2{font-size:clamp(2.35rem,12vw,3.25rem)}
    body:has(.hero-premium) .home-event-card,
    body:has(.hero-premium) .editorial-place-card,
    body:has(.hero-premium) .home-story-card{min-height:350px}
}

/* Very short landscape screens: keep hero usable without a full-screen trap */
@media (orientation:landscape) and (max-height:620px) and (min-width:700px){
    body:has(.hero-premium) .hero-premium{
        min-height:640px;
        padding-top:130px;
        padding-bottom:52px;
    }
    body:has(.hero-premium) .hero h1{font-size:clamp(4.2rem,9vw,6.6rem)}
    body:has(.hero-premium) .hero-scroll-cue{display:none}
}
