/* =========================================================
   EXPO.CSS — Styles spécifiques à projet-expo.html
   À inclure APRÈS style.css dans le <head>
   ========================================================= */


/* ---------- Variables additionnelles ---------- */
:root {
    --akira-red: #C0181A;
    --akira-bone: #F0EDE8;
    --akira-noir: #080808;
    --proj-yellow: #FFD700;
    --proj-cream: #F5F5DC;
    --proj-graphite: #2F2F2F;
}


/* =========================================================
   1. HERO INTRO + SWITCH (commun)
   ========================================================= */

.project-hero__intro {
    max-width: 56ch;
    font-size: clamp(15px, 1.05vw, 17px);
    line-height: 1.65;
    color: var(--ink-mute);
    margin: 18px 0 36px;
}
.project-hero__intro strong { color: var(--ink); font-weight: 500; }
.project-hero__intro em { font-style: italic; color: var(--accent); }


/* ---------- Switch tabs sticky ---------- */
.exp-switch {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(10, 10, 10, 0.78);
    backdrop-filter: blur(20px) saturate(1.2);
    -webkit-backdrop-filter: blur(20px) saturate(1.2);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding: 0;
    margin: 40px 0 0;
}
.exp-switch__inner {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 var(--pad-x);
}
.exp-switch__btn {
    background: none;
    border: none;
    color: var(--ink-mute);
    cursor: pointer;
    padding: 22px 18px;
    display: flex;
    align-items: center;
    gap: 18px;
    text-align: left;
    transition: color 0.4s var(--ease);
    font-family: inherit;
    position: relative;
}
.exp-switch__btn:hover { color: var(--ink); }
.exp-switch__btn.is-active { color: var(--ink); }
.exp-switch__num {
    font-family: var(--ff-display-2, 'Zunk'), serif;
    font-size: 28px;
    font-style: italic;
    opacity: 0.4;
    transition: all 0.4s var(--ease);
}
.exp-switch__btn.is-active .exp-switch__num {
    opacity: 1;
    color: var(--accent);
}
.exp-switch__label {
    display: flex;
    flex-direction: column;
    gap: 2px;
    line-height: 1.2;
}
.exp-switch__label strong {
    font-size: clamp(16px, 1.4vw, 20px);
    font-weight: 600;
    letter-spacing: 0.01em;
}
.exp-switch__label em {
    font-style: italic;
    font-size: 12px;
    opacity: 0.6;
    letter-spacing: 0.05em;
    font-weight: 400;
}
.exp-switch__indicator {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 50%;
    height: 2px;
    background: var(--accent);
    transition: transform 0.5s var(--ease);
}
[data-tab="agence"] .exp-switch__indicator { transform: translateX(100%); }

@media (max-width: 720px) {
    .exp-switch__btn { padding: 16px 8px; gap: 10px; }
    .exp-switch__num { font-size: 22px; }
    .exp-switch__label strong { font-size: 14px; }
    .exp-switch__label em { font-size: 10px; }
}


/* ---------- Tab panes ---------- */
.tab-pane { display: none; }
.tab-pane.is-active {
    display: block;
    animation: fadeInTab 0.55s cubic-bezier(0.25, 0.1, 0.25, 1);
}
@keyframes fadeInTab {
    from { opacity: 0; transform: translateY(14px); }
    to { opacity: 1; transform: translateY(0); }
}


/* =========================================================
   2. PARTIE EXPO — AKIRA / ALTER
   ========================================================= */

/* HERO AKIRA */
.akira-hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--akira-noir);
    margin: 0;
    padding: 80px var(--pad-x);
}
.akira-hero__bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}
.akira-hero__bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(1.2) contrast(1.05);
}
.akira-hero__overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: radial-gradient(ellipse at center, rgba(8,8,8,0.4) 0%, rgba(8,8,8,0.92) 100%);
}
.akira-hero__content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 900px;
    color: var(--akira-bone);
}
.akira-hero__crumb {
    display: block;
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--akira-red);
    margin-bottom: 28px;
    font-weight: 500;
}
.akira-hero__title {
    position: relative;
    display: inline-block;
    margin: 0;
}
.akira-hero__alter {
    display: block;
    font-family: var(--ff-display-1, 'Brivela'), 'Anton', sans-serif;
    font-size: clamp(80px, 14vw, 220px);
    line-height: 0.85;
    letter-spacing: -0.02em;
    color: var(--akira-bone);
    font-weight: 900;
}
.akira-hero__kata {
    display: block;
    width: clamp(320px, 55vw, 820px);
    height: auto;
    margin: 0 auto;
    filter: drop-shadow(0 0 60px rgba(192,24,26,0.45));
    pointer-events: none;
}
.akira-hero__lede {
    margin: 38px auto 0;
    max-width: 56ch;
    font-size: 17px;
    line-height: 1.6;
    color: rgba(240,237,232,0.75);
}
.akira-hero__lede em { color: var(--akira-red); font-style: italic; }
.akira-hero__meta {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 48px;
    flex-wrap: wrap;
}
.akira-hero__meta div {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.akira-hero__meta span {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--akira-red);
    font-weight: 500;
}
.akira-hero__meta strong {
    font-size: 16px;
    font-weight: 500;
    color: var(--akira-bone);
    letter-spacing: 0.01em;
}


/* =========================================================
   SITE LIVE PREVIEW — alter-exposition.fr
   ========================================================= */
.site-preview {
    max-width: var(--max);
    margin: 0 auto;
    padding: clamp(60px, 8vw, 100px) var(--pad-x);
}
.site-preview__head {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: clamp(20px, 3vw, 36px);
    align-items: end;
    margin-bottom: clamp(28px, 4vw, 44px);
}
.site-preview__num {
    font-family: var(--ff-display-1, 'Brivela'), serif;
    font-size: clamp(32px, 4vw, 48px);
    color: var(--akira-red);
    line-height: 1;
    font-weight: 400;
}
.site-preview__intro { display: flex; flex-direction: column; gap: 6px; }
.site-preview__tag {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: var(--akira-red);
    font-weight: 500;
}
.site-preview__title {
    font-family: var(--ff-display-1, 'Brivela'), serif;
    font-size: clamp(26px, 3.6vw, 48px);
    line-height: 0.98;
    margin: 4px 0 8px;
    font-weight: 400;
    letter-spacing: -0.01em;
}
.site-preview__lede {
    font-size: 14px;
    line-height: 1.55;
    color: var(--ink-mute);
    max-width: 520px;
    margin: 0;
}
.site-preview__lede a {
    color: var(--akira-red);
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-thickness: 1px;
}
.site-preview__cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 22px;
    border: 1px solid var(--akira-red);
    color: var(--akira-red);
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    text-decoration: none;
    font-weight: 500;
    transition: background 0.3s var(--ease), color 0.3s var(--ease);
    white-space: nowrap;
}
.site-preview__cta:hover {
    background: var(--akira-red);
    color: var(--akira-bone);
}

/* Browser frame */
.browser-frame {
    background: linear-gradient(165deg, #1f1f22 0%, #0f0f12 100%);
    border-radius: 12px;
    max-width: 1100px;
    margin: 0 auto;
    overflow: hidden;
    box-shadow:
        0 50px 100px -20px rgba(0, 0, 0, 0.85),
        0 30px 60px -30px rgba(0, 0, 0, 0.6),
        inset 0 0 0 1px rgba(255, 255, 255, 0.06);
    transition: transform 0.6s var(--ease);
    position: relative;
}
.browser-frame:hover { transform: translateY(-4px); }

.browser-frame__chrome {
    background: rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding: 12px 18px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.browser-frame__dot {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    display: inline-block;
    flex-shrink: 0;
}
.browser-frame__dot[data-dot="red"]    { background: #ff5f57; }
.browser-frame__dot[data-dot="yellow"] { background: #febc2e; }
.browser-frame__dot[data-dot="green"]  { background: #28c840; }

.browser-frame__url {
    margin: 0 auto;
    background: rgba(0, 0, 0, 0.35);
    padding: 5px 18px;
    border-radius: 6px;
    color: var(--ink);
    font-family: ui-monospace, "SF Mono", Menlo, monospace;
    font-size: 11px;
    letter-spacing: 0.02em;
    max-width: 260px;
    text-align: center;
    flex: 0 1 auto;
}
.browser-frame__open {
    color: var(--akira-red);
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    opacity: 0;
    transition: opacity 0.3s var(--ease);
    margin-left: auto;
    flex-shrink: 0;
}
.browser-frame:hover .browser-frame__open { opacity: 1; }

.browser-frame__viewport {
    position: relative;
    aspect-ratio: 16 / 9;
    background: #0a0a0a;
    overflow: hidden;
}
.browser-frame__viewport iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
    background: #0a0a0a;
    color-scheme: dark;
    position: relative;
    z-index: 1;
}
/* Link layer above iframe — captures clicks to open in new tab */
.browser-frame__link {
    position: absolute;
    inset: 0;
    z-index: 2;
    text-decoration: none;
    cursor: pointer;
    /* invisible but clickable */
    background: transparent;
}
/* Fallback shown when iframe is blocked (X-Frame-Options) — sits BEHIND iframe */
.browser-frame__fallback {
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        radial-gradient(ellipse at center, rgba(192, 24, 26, 0.12) 0%, transparent 60%),
        linear-gradient(165deg, #0a0a0a 0%, #1a0606 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-align: center;
    padding: 40px;
}
.browser-frame__fallback-label {
    font-family: ui-monospace, "SF Mono", Menlo, monospace;
    font-size: clamp(20px, 3vw, 32px);
    color: var(--akira-bone);
    letter-spacing: 0.04em;
}
.browser-frame__fallback-hint {
    font-size: 12px;
    color: var(--ink-mute);
    letter-spacing: 0.05em;
}

@media (max-width: 760px) {
    .site-preview__head {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .site-preview__num { display: none; }
    .site-preview__cta { align-self: start; }
    .browser-frame__url { font-size: 10px; max-width: 180px; }
    .browser-frame__open { display: none; }
    .browser-frame__viewport { aspect-ratio: 4 / 3; }
}


/* ---------- Section générique AKIRA ---------- */
.akira-section {
    max-width: var(--max);
    margin: 0 auto;
    padding: 100px var(--pad-x);
    position: relative;
}
.akira-section__head {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 28px;
}
.akira-section__num {
    font-family: var(--ff-display-2, 'Zunk'), serif;
    font-size: 22px;
    font-style: italic;
    color: var(--akira-red);
}
.akira-section__tag {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--ink-mute);
    font-weight: 500;
}
.akira-section__title {
    font-family: var(--ff-display-1, 'Brivela'), serif;
    font-size: clamp(44px, 6vw, 92px);
    line-height: 0.95;
    letter-spacing: -0.02em;
    margin: 0 0 32px;
    font-weight: 400;
}
.akira-section__title em {
    font-family: var(--ff-display-2, 'Zunk'), serif;
    font-style: italic;
    color: var(--akira-red);
}
.akira-section__lede,
.akira-section__body {
    max-width: 60ch;
    font-size: 17px;
    line-height: 1.65;
    color: var(--ink-mute);
}
.akira-section__body p { margin: 0 0 18px; }
.akira-section__body strong { color: var(--ink); font-weight: 500; }
.akira-section__body em { color: var(--akira-red); font-style: italic; }


.akira-pull {
    margin: 56px 0 0;
    padding: 32px 40px;
    border-left: 3px solid var(--akira-red);
    font-family: var(--ff-display-2, 'Zunk'), serif;
    font-style: italic;
    font-size: clamp(20px, 2vw, 26px);
    line-height: 1.4;
    color: var(--ink);
    max-width: 70ch;
    background: rgba(192,24,26,0.04);
}


/* ---------- Logos AKIRA ---------- */
.akira-logos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 28px;
    margin-bottom: 60px;
}
.akira-logo {
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.akira-logo--main { grid-column: span 2; }
.akira-logo__visual {
    background: var(--akira-noir);
    border: 1px solid var(--line);
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 32px;
    overflow: hidden;
    transition: transform 0.5s var(--ease);
    cursor: zoom-in;
    position: relative;
}
.akira-logo__visual--light { background: var(--akira-bone); }
.akira-logo:hover .akira-logo__visual { transform: scale(0.98); }
.akira-logo__visual img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.5s var(--ease);
}
.akira-logo:hover .akira-logo__visual img { transform: scale(1.04); }
.akira-logo figcaption {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.akira-logo figcaption strong {
    font-size: 15px;
    font-weight: 600;
    color: var(--ink);
}
.akira-logo figcaption span {
    font-size: 12px;
    color: var(--ink-mute);
    letter-spacing: 0.05em;
}
@media (max-width: 720px) {
    .akira-logo--main { grid-column: span 1; }
}


/* ---------- Palette + typos AKIRA ---------- */
.akira-palette {
    margin-top: 40px;
    padding: 40px;
    border: 1px solid var(--line);
    background: var(--bg-elev);
}
.akira-palette__label {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--akira-red);
    margin-bottom: 20px;
    font-weight: 500;
}
.akira-palette__row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 32px;
}
.akira-swatch {
    aspect-ratio: 1.4;
    background: var(--swatch);
    padding: 18px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: var(--akira-bone);
    border: 1px solid var(--line);
}
.akira-swatch[style*="#F0EDE8"] { color: var(--akira-noir); }
.akira-swatch span {
    font-family: 'Courier New', monospace;
    font-size: 13px;
    letter-spacing: 0.05em;
    margin-bottom: 4px;
}
.akira-swatch em {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    opacity: 0.7;
    font-style: normal;
}
.akira-typos ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 12px;
}
.akira-typos li {
    padding: 14px 16px;
    background: var(--bg);
    border: 1px solid var(--line);
    font-size: 13px;
    color: var(--ink-mute);
}
.akira-typos li strong {
    display: block;
    color: var(--ink);
    font-size: 17px;
    margin-bottom: 4px;
    font-weight: 500;
}


/* ---------- Affiches AKIRA — 3 print ---------- */
.poster-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 20px;
    margin-top: 60px;
}
.poster-card {
    position: relative;
    margin: 0;
    overflow: hidden;
    background: var(--akira-noir);
    border: 1px solid var(--line);
    aspect-ratio: 3/4;
    grid-column: span 4;
    transition: transform 0.5s var(--ease);
    cursor: zoom-in;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
}
.poster-card:hover { transform: scale(0.99); }
.poster-card img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
    transition: transform 0.5s var(--ease);
}
.poster-card:hover img { transform: scale(1.04); }
.poster-card__type {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 5px 10px;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(6px);
    color: var(--akira-bone);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    z-index: 2;
    font-weight: 500;
}
.poster-card figcaption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px 20px 18px;
    background: linear-gradient(to top, rgba(0,0,0,0.95), transparent);
    color: var(--akira-bone);
    z-index: 2;
    transform: translateY(100%);
    transition: transform 0.5s var(--ease);
    pointer-events: none;
}
.poster-card:hover figcaption { transform: translateY(0); }
.poster-card figcaption strong {
    display: block;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
}
.poster-card figcaption span {
    font-size: 12px;
    opacity: 0.7;
}


/* ---------- Affiches VIDÉOS — TEXTE EN DESSOUS ---------- */
.poster-videos {
    grid-column: span 12;
    display: flex;
    gap: 32px;
    justify-content: center;
    align-items: flex-start;
    margin-top: 8px;
    flex-wrap: wrap;
}
.poster-card--video {
    /* Devient un conteneur flex column : média en haut, légende en dessous */
    height: auto;
    max-height: none;
    aspect-ratio: auto;
    width: auto;
    flex: 0 0 auto;
    cursor: default;
    padding: 0;
    background: transparent;
    border: none;
    overflow: visible;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
    transition: none;
}
.poster-card--video:hover {
    transform: none;
}
.poster-card--video__media {
    /* La zone qui porte l'aspect ratio + l'overflow pour la vidéo */
    position: relative;
    height: 70vh;
    max-height: 700px;
    aspect-ratio: 3 / 4;
    width: auto;
    background: var(--akira-noir);
    border: 1px solid var(--line);
    overflow: hidden;
    transition: border-color 0.4s var(--ease);
}
.poster-card--video:hover .poster-card--video__media {
    border-color: var(--akira-red);
}
.poster-card--video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.poster-card--video figcaption {
    /* Annule le positionnement absolu hérité de .poster-card figcaption */
    position: static;
    transform: none;
    background: none;
    padding: 0;
    text-align: center;
    pointer-events: auto;
    color: var(--akira-bone);
}
.poster-card--video figcaption strong {
    display: block;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--akira-bone);
}
.poster-card--video figcaption span {
    display: block;
    font-size: 12px;
    opacity: 0.65;
    color: var(--akira-bone);
    letter-spacing: 0.02em;
}

/* Bouton play/pause (conservé pour usage futur — désactivé dans le JS) */
.video-control {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: var(--akira-bone);
    cursor: pointer;
    z-index: 4;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s var(--ease);
    pointer-events: auto;
    padding: 0;
}
.video-control:hover {
    background: var(--akira-red);
    border-color: var(--akira-red);
    transform: scale(1.08);
}
.video-control svg { display: block; }
.video-control__play { display: none; }
.video-control__pause { display: block; }
.video-control.is-paused .video-control__play { display: block; }
.video-control.is-paused .video-control__pause { display: none; }

@media (max-width: 800px) {
    .poster-videos { flex-direction: column; align-items: center; }
    .poster-card--video {
        width: 90%;
        max-width: 320px;
    }
    .poster-card--video__media {
        height: auto;
        width: 100%;
        max-height: none;
        aspect-ratio: 3/4;
    }
}

@media (max-width: 900px) {
    .poster-card { grid-column: span 6; }
}
@media (max-width: 600px) {
    .poster-card { grid-column: span 12; }
}


/* =========================================================
   PLAN DE L'EXPO — Floor plan (NEW)
   ========================================================= */

.floor-plan {
    margin: 60px 0 32px;
    padding: 60px 40px;
    background: var(--bg-elev);
    border: 1px solid var(--line);
    position: relative;
}
.floor-plan__header {
    text-align: center;
    margin-bottom: 50px;
}
.floor-plan__label {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: var(--akira-red);
    font-weight: 600;
    margin-bottom: 8px;
}
.floor-plan__heading {
    font-size: clamp(20px, 2vw, 26px);
    font-weight: 600;
    color: var(--ink);
    margin: 0;
    letter-spacing: -0.01em;
}

/* Entrée + Boutique markers */
.floor-plan__entry,
.floor-plan__exit {
    text-align: center;
    padding: 14px 20px;
    border: 2px dashed var(--akira-red);
    background: rgba(192, 24, 26, 0.05);
    color: var(--akira-red);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-weight: 700;
    margin: 0 auto;
    max-width: 280px;
    position: relative;
}
.floor-plan__entry { margin-bottom: 36px; }
.floor-plan__entry::after,
.floor-plan__exit::before {
    content: '';
    position: absolute;
    left: 50%;
    width: 1px;
    height: 24px;
    background: var(--akira-red);
    transform: translateX(-50%);
}
.floor-plan__entry::after { top: 100%; }
.floor-plan__exit { margin-top: 36px; }
.floor-plan__exit::before { bottom: 100%; }

/* Grille des 8 salles — snake pattern 4×2 */
.floor-rooms {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 28px;
    max-width: 1000px;
    margin: 0 auto;
}

.floor-room {
    aspect-ratio: 1;
    background: var(--akira-noir);
    border: 1px solid rgba(240, 237, 232, 0.18);
    color: var(--akira-bone);
    padding: 24px 18px 18px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transition: all 0.3s var(--ease);
    position: relative;
}
.floor-room:hover {
    border-color: var(--akira-red);
    background: rgba(192, 24, 26, 0.08);
    transform: translateY(-3px);
}
.floor-room__num {
    position: absolute;
    top: 12px;
    left: 12px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--akira-red);
    color: var(--akira-bone);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    font-family: 'Courier New', monospace;
    letter-spacing: 0.02em;
}
.floor-room strong {
    font-size: 13px;
    font-weight: 600;
    line-height: 1.25;
    margin-bottom: 4px;
    color: var(--akira-bone);
}
.floor-room em {
    font-style: italic;
    font-size: 10px;
    opacity: 0.55;
    line-height: 1.2;
    color: var(--akira-bone);
}

/* Snake placement — rooms 05-08 in row 2, reversed order */
.floor-room[data-num="05"] { grid-area: 2 / 4; }
.floor-room[data-num="06"] { grid-area: 2 / 3; }
.floor-room[data-num="07"] { grid-area: 2 / 2; }
.floor-room[data-num="08"] { grid-area: 2 / 1; }

/* Flèches via pseudo-elements */
.floor-room::after {
    color: var(--akira-red);
    font-size: 16px;
    line-height: 1;
    position: absolute;
    z-index: 2;
    font-weight: 700;
}
.floor-room[data-arrow="right"]::after {
    content: '→';
    right: -22px;
    top: 50%;
    transform: translateY(-50%);
}
.floor-room[data-arrow="left"]::after {
    content: '←';
    left: -22px;
    top: 50%;
    transform: translateY(-50%);
}
.floor-room[data-arrow="down"]::after {
    content: '↓';
    bottom: -22px;
    right: 50%;
    transform: translateX(50%);
}

/* Mobile : layout simplifié 2 cols, sans snake */
@media (max-width: 800px) {
    .floor-plan { padding: 40px 20px; }
    .floor-rooms {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
        gap: 14px;
    }
    .floor-room { aspect-ratio: 1.3; padding: 20px 14px 14px; }
    .floor-room__num { width: 26px; height: 26px; font-size: 10px; }
    .floor-room strong { font-size: 12px; }
    .floor-room em { font-size: 9px; }
    /* Reset snake placement — affiche en ordre 01-08 sur mobile */
    .floor-room[data-num="05"],
    .floor-room[data-num="06"],
    .floor-room[data-num="07"],
    .floor-room[data-num="08"] { grid-area: auto; }
    /* Cache les flèches sur mobile */
    .floor-room::after { display: none; }
}


/* ---------- 8 salles (rooms list — détails texte) ---------- */
.rooms-list {
    list-style: none;
    padding: 0;
    margin: 60px 0 0;
    display: flex;
    flex-direction: column;
    border-top: 1px solid var(--line);
}
.room {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 32px;
    align-items: start;
    padding: 28px 0;
    border-bottom: 1px solid var(--line);
    transition: background 0.4s var(--ease), padding 0.4s var(--ease);
}
.room:hover {
    background: rgba(192,24,26,0.04);
    padding-left: 16px;
}
.room__num {
    font-family: var(--ff-display-2, 'Zunk'), serif;
    font-size: clamp(36px, 5vw, 56px);
    line-height: 1;
    color: var(--akira-red);
    font-weight: 400;
    font-style: italic;
}
.room__body {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding-top: 8px;
}
.room__body strong {
    font-size: clamp(18px, 1.8vw, 24px);
    font-weight: 600;
    color: var(--ink);
    letter-spacing: -0.01em;
}
.room__body em {
    font-style: italic;
    color: var(--ink-mute);
    font-size: 15px;
}
.room__body span {
    font-size: 12px;
    color: var(--ink-mute);
    opacity: 0.6;
    letter-spacing: 0.05em;
    margin-top: 6px;
}


/* ---------- Tickets ---------- */
.tickets-block {
    margin-top: 60px;
}
.tickets-recto {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 32px;
}
.ticket-img {
    margin: 0;
    border: 1px solid var(--line);
    background: var(--akira-noir);
    overflow: hidden;
    cursor: zoom-in;
    transition: all 0.4s var(--ease);
}
.ticket-img:hover {
    border-color: var(--akira-red);
    transform: translateY(-3px);
}
.ticket-img img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s var(--ease);
}
.ticket-img:hover img { transform: scale(1.02); }
.ticket-img figcaption {
    padding: 14px 18px;
    background: var(--bg-elev);
    border-top: 1px solid var(--line);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
}
.ticket-img figcaption strong {
    color: var(--ink);
    font-weight: 600;
}
.ticket-img figcaption em {
    color: var(--akira-red);
    font-style: normal;
    font-family: 'Courier New', monospace;
    letter-spacing: 0.05em;
}
.ticket-verso { margin-top: 24px; }
.ticket-verso .ticket-img { max-width: 100%; }
@media (max-width: 720px) {
    .tickets-recto { grid-template-columns: 1fr; }
}


/* ---------- Doc pill ---------- */
.doc-pill {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 12px 18px;
    border: 1px solid var(--line);
    background: var(--bg-elev);
    color: var(--ink);
    text-decoration: none;
    font-size: 13px;
    transition: all 0.3s var(--ease);
    font-weight: 500;
}
.doc-pill:hover {
    background: var(--akira-red);
    border-color: var(--akira-red);
    color: var(--akira-bone);
}
.doc-pill em { font-style: italic; opacity: 0.6; font-size: 12px; font-weight: 400; }
.doc-pill:hover em { opacity: 1; }
.doc-pill--center { display: flex; width: fit-content; margin: 32px auto 0; }


/* ---------- Communication (Insta + Flyer image) ---------- */
.comms-grid {
    display: grid;
    grid-template-columns: 360px minmax(0, 560px);
    gap: 60px;
    margin: 60px auto 0;
    align-items: center;
    justify-content: center;
}
.comms-block { display: flex; flex-direction: column; gap: 20px; }
.comms-block__label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--akira-red);
    font-weight: 500;
}



/* ---------- Texte à droite du post Instagram ---------- */
.comms-block--insta-text {
    padding-top: 8px;
    gap: 18px;
}
.comms-text__title {
    font-family: var(--ff-display-1, 'Brivela'), serif;
    font-size: clamp(30px, 4vw, 56px);
    line-height: 0.98;
    letter-spacing: -0.01em;
    margin: 0;
    font-weight: 400;
    color: var(--akira-bone);
}
.comms-text__title em { color: var(--akira-red); font-style: italic; }
.comms-text__lede {
    font-size: 15px;
    line-height: 1.6;
    color: var(--ink-mute);
    margin: 0;
    max-width: 48ch;
}
.comms-text__lede strong { color: var(--ink); font-weight: 600; }
.comms-text__meta {
    list-style: none;
    margin: 8px 0 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 12px 40px;
}
.comms-text__meta li { display: flex; flex-direction: column; gap: 2px; }
.comms-text__meta strong {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--akira-red);
    font-weight: 500;
}
.comms-text__meta span { font-size: 14px; color: var(--ink); }

/* Flyer en pleine largeur sous la grille */
.comms-flyer-row { margin-top: clamp(48px, 6vw, 80px); }
.comms-flyer-row .flyer-image__img,
.comms-flyer-row .flyer-image--link img { max-height: 520px; object-fit: contain; }


/* Phone mockup */
.phone-mock {
    width: 100%;
    aspect-ratio: 9/19;
    max-width: 320px;
    background: #1a1a1a;
    border-radius: 36px;
    padding: 14px 10px;
    border: 2px solid #2a2a2a;
    box-shadow: 0 30px 60px rgba(0,0,0,0.4);
    position: relative;
}
.phone-mock__notch {
    width: 100px;
    height: 22px;
    background: #000;
    border-radius: 0 0 14px 14px;
    margin: 0 auto;
    position: absolute;
    top: 14px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}
.phone-mock__screen {
    background: var(--akira-bone);
    border-radius: 24px;
    overflow: hidden;
    height: 100%;
    color: var(--akira-noir);
    display: flex;
    flex-direction: column;
}
.phone-mock__topbar {
    padding: 36px 16px 12px;
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    border-bottom: 1px solid rgba(0,0,0,0.08);
}
.phone-mock__post { flex: 1; display: flex; flex-direction: column; }
.phone-mock__user {
    padding: 10px 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}
.phone-mock__avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--akira-red), var(--proj-yellow));
    display: block;
}
.phone-mock__media {
    flex: 1;
    overflow: hidden;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
}
.phone-mock__media img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}
.phone-mock__actions {
    padding: 8px 14px;
    display: flex;
    gap: 14px;
    font-size: 18px;
}
.phone-mock__caption {
    padding: 4px 14px 14px;
    font-size: 11px;
    line-height: 1.4;
}

/* Flyer IMAGE (remplace l'ancien mockup HTML) */
.flyer-image {
    margin: 0;
    overflow: hidden;
    border: 1px solid var(--line);
    background: var(--akira-noir);
    cursor: zoom-in;
    transition: all 0.4s var(--ease);
}
.flyer-image:hover { border-color: var(--akira-red); }
.flyer-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s var(--ease);
}
.flyer-image:hover img { transform: scale(1.02); }
.flyer-image figcaption {
    padding: 14px 18px;
    background: var(--bg-elev);
    border-top: 1px solid var(--line);
    font-size: 12px;
    color: var(--ink-mute);
    letter-spacing: 0.04em;
}
.flyer-image figcaption strong {
    color: var(--ink);
    font-weight: 600;
}



/* =========================================================
   3D TILT PHONE - pseudo-3D via perspective + mouse tracking
   ========================================================= */
.comms-block--insta {
    perspective: 1200px;
    perspective-origin: 50% 50%;
}
.phone-mock--3d {
    transform-style: preserve-3d;
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1),
                box-shadow 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    box-shadow:
        0 30px 60px rgba(0, 0, 0, 0.45),
        0 10px 20px rgba(0, 0, 0, 0.25);
    will-change: transform;
    cursor: grab;
    position: relative;
}
.phone-mock--3d:active { cursor: grabbing; }
.phone-mock--3d.is-tilting {
    transition: none;
    box-shadow:
        0 50px 100px rgba(0, 0, 0, 0.55),
        0 20px 40px rgba(192, 24, 26, 0.15);
}
/* Reflet qui suit la souris */
.phone-mock--3d::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: radial-gradient(
        circle at var(--mx, 50%) var(--my, 50%),
        rgba(255, 255, 255, 0.18) 0%,
        rgba(255, 255, 255, 0.08) 20%,
        transparent 50%
    );
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 3;
    mix-blend-mode: overlay;
    border-radius: 36px;
}
.phone-mock--3d.is-tilting::before { opacity: 1; }


/* =========================================================
   FLYER LINK - version cliquable vers PDF
   ========================================================= */
.flyer-image--link {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    position: relative;
}
.flyer-image__cta {
    padding: 16px 20px;
    background: var(--bg-elev);
    border-top: 1px solid var(--line);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    transition: background 0.3s var(--ease);
}
.flyer-image--link:hover .flyer-image__cta {
    background: var(--akira-red);
}
.flyer-image__cta > div {
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-size: 12px;
    letter-spacing: 0.04em;
    color: var(--ink-mute);
}
.flyer-image__cta > div strong {
    color: var(--ink);
    font-weight: 600;
    font-size: 13px;
}
.flyer-image--link:hover .flyer-image__cta > div,
.flyer-image--link:hover .flyer-image__cta > div strong {
    color: var(--akira-bone);
}
.flyer-image__open {
    color: var(--akira-red);
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    white-space: nowrap;
    font-weight: 500;
    transition: color 0.3s var(--ease);
}
.flyer-image--link:hover .flyer-image__open {
    color: var(--akira-bone);
}


@media (max-width: 900px) {
    .comms-grid { grid-template-columns: 1fr; gap: 40px; }
    .phone-mock { margin: 0 auto; }
}


/* ---------- Merch grid avec IMAGES ---------- */
.merch-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 60px;
}
.merch-piece {
    margin: 0;
    overflow: hidden;
    border: 1px solid var(--line);
    background: var(--bg-elev);
    cursor: zoom-in;
    transition: all 0.4s var(--ease);
    position: relative;
}
.merch-piece:hover {
    border-color: var(--akira-red);
    transform: translateY(-4px);
}
.merch-piece__visual {
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
    background: var(--akira-noir);
}
.merch-piece__visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s var(--ease);
}
.merch-piece:hover .merch-piece__visual img { transform: scale(1.04); }
.merch-piece figcaption {
    padding: 18px 22px;
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    border-top: 1px solid var(--line);
}
.merch-piece figcaption strong { font-size: 16px; font-weight: 600; color: var(--ink); }
.merch-piece figcaption span {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--akira-red);
    font-weight: 500;
}
.merch-piece--wide { grid-column: span 2; }
.merch-piece--wide .merch-piece__visual { aspect-ratio: 21/9; }

@media (max-width: 720px) {
    .merch-gallery { grid-template-columns: 1fr; }
    .merch-piece--wide { grid-column: span 1; }
    .merch-piece--wide .merch-piece__visual { aspect-ratio: 16/9; }
}


/* ---------- Booklet card ---------- */
.booklet-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-top: 60px;
    text-decoration: none;
    color: var(--ink);
    border: 1px solid var(--line);
    overflow: hidden;
    transition: all 0.4s var(--ease);
    background: var(--bg-elev);
}
.booklet-card:hover { transform: translateY(-3px); border-color: var(--akira-red); }
.booklet-card__cover {
    background: var(--akira-noir);
    color: var(--akira-bone);
    padding: 80px 50px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    aspect-ratio: 4/5;
    position: relative;
    border-right: 1px solid var(--line);
}
.booklet-card__cover::before {
    content: '';
    position: absolute;
    inset: 24px;
    border: 1px solid rgba(192,24,26,0.3);
    pointer-events: none;
}
.booklet-card__cover--proj { background: var(--proj-graphite); }
.booklet-card__cover--proj::before { border-color: rgba(255,215,0,0.3); }
.booklet-card__brand {
    font-size: 11px;
    letter-spacing: 0.25em;
    color: var(--akira-red);
    text-transform: uppercase;
    font-weight: 600;
}
.booklet-card__cover--proj .booklet-card__brand { color: var(--proj-yellow); }
.booklet-card__title {
    font-family: var(--ff-display-1, 'Brivela'), 'Anton', sans-serif;
    font-size: clamp(40px, 5vw, 64px);
    line-height: 0.95;
    font-weight: 700;
    margin: auto 0 16px;
    letter-spacing: -0.01em;
}
.booklet-card__sub { font-style: italic; font-size: 13px; opacity: 0.7; }
.booklet-card__pages {
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    opacity: 0.5;
    font-weight: 500;
}
.booklet-card__cta {
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 12px;
    background: var(--bg-elev);
    position: relative;
}
.booklet-card__cta strong {
    font-size: clamp(20px, 2vw, 28px);
    font-weight: 600;
    line-height: 1.2;
    color: var(--ink);
    letter-spacing: -0.01em;
}
.booklet-card__cta em { font-style: italic; font-size: 13px; color: var(--ink-mute); }
.booklet-card__cta span {
    font-family: var(--ff-display-2, 'Zunk'), serif;
    font-size: 32px;
    font-style: italic;
    color: var(--akira-red);
    margin-top: 12px;
    transition: transform 0.4s var(--ease);
}
.booklet-card:hover .booklet-card__cta span { transform: translateX(8px); }

@media (max-width: 720px) {
    .booklet-card { grid-template-columns: 1fr; }
    .booklet-card__cover { aspect-ratio: 3/4; padding: 50px 30px; }
    .booklet-card__cta { padding: 32px 30px; }
}


/* =========================================================
   3. PARTIE AGENCE — LE PROJECTEUR
   ========================================================= */

.proj-hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--proj-graphite);
    margin: 0;
    padding: 80px var(--pad-x);
    color: var(--proj-cream);
}
.proj-hero__bg { position: absolute; inset: 0; z-index: 1; opacity: 0.4; }
.proj-hero__bg video { width: 100%; height: 100%; object-fit: cover; }
.proj-hero__content { position: relative; z-index: 2; text-align: center; max-width: 900px; }
.proj-hero__crumb {
    display: block;
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--proj-yellow);
    margin-bottom: 30px;
    font-weight: 500;
}
.proj-hero__logo {
    max-width: 600px;
    width: 90%;
    height: auto;
    margin: 0 auto 32px;
    display: block;
    filter: drop-shadow(0 20px 60px rgba(0,0,0,0.4));
}
.proj-hero__slogan {
    font-family: var(--ff-display-2, 'Zunk'), serif;
    font-style: italic;
    font-size: clamp(20px, 2vw, 28px);
    color: var(--proj-cream);
    margin: 0 0 48px;
    opacity: 0.85;
}
.proj-hero__meta { display: flex; justify-content: center; gap: 50px; flex-wrap: wrap; }
.proj-hero__meta div { display: flex; flex-direction: column; gap: 4px; }
.proj-hero__meta span {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--proj-yellow);
    font-weight: 500;
}
.proj-hero__meta strong { font-size: 16px; font-weight: 500; color: var(--proj-cream); }


.proj-section { max-width: var(--max); margin: 0 auto; padding: 100px var(--pad-x); }
.proj-section__head { display: flex; align-items: center; gap: 16px; margin-bottom: 28px; }
.proj-section__num {
    font-family: var(--ff-display-2, 'Zunk'), serif;
    font-size: 22px;
    font-style: italic;
    color: var(--proj-yellow);
}
.proj-section__tag {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--ink-mute);
    font-weight: 500;
}
.proj-section__title {
    font-family: var(--ff-display-1, 'Brivela'), serif;
    font-size: clamp(44px, 6vw, 92px);
    line-height: 0.95;
    letter-spacing: -0.02em;
    margin: 0 0 32px;
    font-weight: 400;
}
.proj-section__title em {
    font-family: var(--ff-display-2, 'Zunk'), serif;
    font-style: italic;
    color: var(--proj-yellow);
}
.proj-section__lede {
    max-width: 60ch;
    font-size: 17px;
    line-height: 1.65;
    color: var(--ink-mute);
    margin: 0 0 32px;
}
.proj-section__lede strong { color: var(--ink); font-weight: 500; }
.proj-section__lede em { color: var(--proj-yellow); font-style: italic; }


.proj-palette {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
    margin-bottom: 40px;
}
.proj-swatch {
    aspect-ratio: 1.1;
    background: var(--swatch);
    padding: 18px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: var(--proj-cream);
    border: 1px solid var(--line);
}
.proj-swatch[style*="#FFD700"],
.proj-swatch[style*="#F5F5DC"],
.proj-swatch[style*="#E0E0E0"] { color: var(--akira-noir); }
.proj-swatch span {
    font-family: 'Courier New', monospace;
    font-size: 12px;
    margin-bottom: 4px;
}
.proj-swatch em {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    opacity: 0.75;
    font-style: normal;
}
.proj-typos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 14px;
}
.proj-typo {
    padding: 24px;
    border: 1px solid var(--line);
    background: var(--bg-elev);
    text-align: center;
}
.proj-typo strong {
    display: block;
    font-size: 22px;
    color: var(--ink);
    font-weight: 600;
    margin-bottom: 6px;
}
.proj-typo span {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--proj-yellow);
}
@media (max-width: 720px) { .proj-palette { grid-template-columns: repeat(3, 1fr); } }


.proj-logos {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 32px;
    margin-top: 40px;
}
.proj-logo {
    margin: 0;
    background: var(--proj-graphite);
    border: 1px solid var(--line);
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    aspect-ratio: 16/9;
    cursor: zoom-in;
    transition: transform 0.4s var(--ease);
}
.proj-logo:hover { transform: translateY(-3px); }
.proj-logo--mono { aspect-ratio: 1; }
.proj-logo img {
    max-width: 100%;
    max-height: 75%;
    object-fit: contain;
    flex: 1;
}
.proj-logo figcaption {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--proj-yellow);
    font-weight: 500;
}
@media (max-width: 720px) { .proj-logos { grid-template-columns: 1fr; } }


.proj-mockups {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}
.proj-mockup {
    margin: 0;
    overflow: hidden;
    border: 1px solid var(--line);
    transition: transform 0.5s var(--ease);
    background: var(--bg-elev);
    cursor: zoom-in;
}
.proj-mockup:hover { transform: translateY(-4px); }
.proj-mockup__visual {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: var(--bg);
    overflow: hidden;
}
.proj-mockup img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.5s var(--ease);
}
.proj-mockup:hover img { transform: scale(1.04); }
.proj-mockup figcaption {
    padding: 16px 18px;
    background: var(--bg-elev);
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.proj-mockup figcaption strong { font-size: 15px; font-weight: 600; color: var(--ink); }
.proj-mockup figcaption span {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--proj-yellow);
}
@media (max-width: 720px) { .proj-mockups { grid-template-columns: 1fr; } }


.proj-website {
    display: block;
    margin-top: 40px;
    background: var(--akira-noir);
    color: var(--proj-cream);
    text-decoration: none;
    border: 1px solid var(--line);
    padding: 60px var(--pad-x);
    transition: all 0.4s var(--ease);
    position: relative;
    overflow: hidden;
}
.proj-website::before {
    content: '';
    position: absolute;
    top: 0; left: 50%;
    width: 1px;
    height: 100%;
    background: linear-gradient(180deg, transparent, var(--proj-yellow), transparent);
    opacity: 0.4;
    transform: translateX(-50%);
}
.proj-website:hover { background: var(--proj-graphite); border-color: var(--proj-yellow); }
.proj-website__inner { max-width: 800px; margin: 0 auto; text-align: center; }
.proj-website__url {
    display: block;
    font-family: 'Courier New', monospace;
    font-size: 13px;
    letter-spacing: 0.1em;
    color: var(--proj-yellow);
    margin-bottom: 24px;
}
.proj-website h4 {
    font-family: var(--ff-display-1, 'Brivela'), serif;
    font-size: clamp(36px, 5vw, 64px);
    line-height: 1;
    margin: 0 0 48px;
    font-weight: 400;
}
.proj-website__stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    border-top: 1px solid rgba(255,215,0,0.2);
    padding-top: 36px;
}
.proj-website__stats div { display: flex; flex-direction: column; gap: 6px; }
.proj-website__stats strong {
    font-size: clamp(28px, 3.5vw, 48px);
    font-weight: 700;
    color: var(--proj-yellow);
    letter-spacing: -0.02em;
}
.proj-website__stats span {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    opacity: 0.6;
    font-weight: 500;
}
.proj-website__cta {
    display: block;
    text-align: center;
    margin-top: 32px;
    font-style: italic;
    font-size: 13px;
    color: var(--proj-yellow);
}
@media (max-width: 720px) { .proj-website__stats { grid-template-columns: repeat(2, 1fr); } }


.proj-team {
    list-style: none;
    padding: 0;
    margin: 40px 0 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 12px;
}
.proj-team li {
    padding: 24px 20px;
    background: var(--bg-elev);
    border: 1px solid var(--line);
    transition: all 0.3s var(--ease);
}
.proj-team li:hover { background: var(--bg); border-color: var(--proj-yellow); }
.proj-team strong {
    font-size: 16px;
    font-weight: 600;
    color: var(--ink);
    display: block;
    letter-spacing: -0.01em;
}
.proj-team em {
    font-style: italic;
    font-size: 11px;
    color: var(--proj-yellow);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    display: block;
    margin-top: 4px;
}


/* =========================================================
   4. LIGHTBOX
   ========================================================= */

.expo-lightbox {
    position: fixed;
    inset: 0;
    z-index: 200;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.6s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.expo-lightbox.is-open { opacity: 1; pointer-events: auto; }
.expo-lightbox__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(8, 8, 8, 0.85);
    backdrop-filter: blur(20px) saturate(0.6);
    -webkit-backdrop-filter: blur(20px) saturate(0.6);
    cursor: zoom-out;
}
.expo-lightbox__frame {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 40px 80px;
    pointer-events: none;
}
.expo-lightbox__media {
    position: relative;
    z-index: 2;
    max-width: 92vw;
    max-height: 80vh;
    pointer-events: auto;
    transform: scale(0.96);
    transition: transform 0.6s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.expo-lightbox.is-open .expo-lightbox__media { transform: scale(1); }
.expo-lightbox__img {
    max-width: 100%;
    max-height: 80vh;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 30px 80px rgba(0, 0, 0, 0.6));
}
.expo-lightbox__caption {
    position: relative;
    z-index: 2;
    color: var(--akira-bone);
    font-size: 13px;
    letter-spacing: 0.05em;
    margin-top: 24px;
    pointer-events: auto;
    text-align: center;
    max-width: 60ch;
    opacity: 0;
    transition: opacity 0.6s ease 0.2s;
    font-weight: 500;
}
.expo-lightbox.is-open .expo-lightbox__caption { opacity: 0.85; }
.expo-lightbox__close {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: var(--akira-bone);
    cursor: pointer;
    z-index: 3;
    pointer-events: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.3s var(--ease);
    backdrop-filter: blur(10px);
}
.expo-lightbox__close:hover {
    background: var(--akira-red);
    border-color: var(--akira-red);
    transform: rotate(90deg);
}
.expo-lightbox__hint {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 11px;
    color: rgba(240, 237, 232, 0.4);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    pointer-events: none;
    z-index: 2;
    font-weight: 500;
}

body.lb-open { overflow: hidden; }

/* =========================================================
   AGENCE TAB — Enhanced sections (v2)
   Styles pour la présentation complète de l'agence Le Projecteur
   ========================================================= */


/* ---------- 2.1 HERO — overlay + scroll cue ---------- */
.proj-hero__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        radial-gradient(ellipse at 50% 50%, rgba(0,0,0,0) 0%, rgba(0,0,0,0.55) 70%),
        linear-gradient(180deg, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0) 30%, rgba(0,0,0,0) 70%, rgba(0,0,0,0.55) 100%);
    pointer-events: none;
}
.proj-hero__scroll {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    color: var(--proj-yellow);
    font-size: 10px;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    opacity: 0.85;
}
.proj-hero__scroll em {
    font-style: normal;
}
.proj-hero__scroll-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(180deg, var(--proj-yellow), transparent);
    animation: proj-scroll-pulse 2.4s ease-in-out infinite;
}
@keyframes proj-scroll-pulse {
    0%, 100% { transform: scaleY(1); transform-origin: top; opacity: 0.85; }
    50% { transform: scaleY(0.4); transform-origin: top; opacity: 0.3; }
}


/* ---------- 2.2 MANIFESTE ---------- */
.proj-section--manifesto {
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background:
        radial-gradient(ellipse at 80% 0%, rgba(255,215,0,0.04), transparent 50%),
        var(--bg);
}
.proj-manifesto {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    align-items: start;
    margin-bottom: 70px;
}
.proj-section__title--big {
    font-size: clamp(56px, 8vw, 128px);
    margin-bottom: 0;
}
.proj-manifesto__body {
    font-size: 17px;
    line-height: 1.7;
    color: var(--ink-mute);
    padding-top: 14px;
    border-left: 1px solid var(--line);
    padding-left: 36px;
}
.proj-manifesto__body p { margin: 0 0 18px; }
.proj-manifesto__body p:last-child { margin-bottom: 0; }
.proj-manifesto__body strong { color: var(--ink); font-weight: 500; }
.proj-manifesto__body em {
    font-style: italic;
    color: var(--proj-yellow);
}
.proj-manifesto__lead {
    font-size: 19px !important;
    color: var(--ink) !important;
    line-height: 1.55 !important;
}
.proj-manifesto__signature {
    font-family: var(--ff-display-2, 'Inter'), sans-serif;
    font-size: 15px !important;
    padding-top: 18px;
    margin-top: 6px !important;
    border-top: 1px solid var(--line);
    color: var(--proj-yellow) !important;
}
.proj-manifesto__signature em {
    color: var(--proj-yellow) !important;
    font-style: italic;
}

/* Stats counters */
.proj-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}
.proj-stats__item {
    padding: 36px 24px 32px;
    text-align: left;
    border-right: 1px solid var(--line);
    transition: background 0.4s var(--ease);
}
.proj-stats__item:last-child { border-right: none; }
.proj-stats__item:hover { background: rgba(255,215,0,0.03); }
.proj-stats__item strong {
    display: block;
    font-family: var(--ff-display-1, 'Brivela'), serif;
    font-size: clamp(48px, 6vw, 84px);
    font-weight: 400;
    line-height: 0.9;
    letter-spacing: -0.04em;
    color: var(--ink);
    margin-bottom: 14px;
}
.proj-stats__item strong sup,
.proj-stats__item strong small {
    font-family: var(--ff-display-2, 'Inter'), sans-serif;
    font-size: 0.4em;
    color: var(--proj-yellow);
    font-weight: 500;
    vertical-align: top;
    margin-left: 2px;
    letter-spacing: 0;
}
.proj-stats__item strong small {
    vertical-align: baseline;
    font-size: 0.55em;
    margin-left: 4px;
}
.proj-stats__item span {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--ink-mute);
    font-weight: 500;
}
@media (max-width: 900px) {
    .proj-manifesto { grid-template-columns: 1fr; gap: 32px; }
    .proj-manifesto__body { padding-left: 0; border-left: none; border-top: 1px solid var(--line); padding-top: 28px; }
    .proj-stats { grid-template-columns: repeat(2, 1fr); }
    .proj-stats__item:nth-child(2) { border-right: none; }
    .proj-stats__item:nth-child(1),
    .proj-stats__item:nth-child(2) { border-bottom: 1px solid var(--line); }
}


/* ---------- 2.3 EXPERTISES ---------- */
.proj-expertises {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 40px;
}
.proj-expertise {
    background: var(--bg-elev);
    border: 1px solid var(--line);
    padding: 36px 32px 32px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    position: relative;
    transition: all 0.4s var(--ease);
    overflow: hidden;
}
.proj-expertise::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 0;
    height: 2px;
    background: var(--proj-yellow);
    transition: width 0.5s var(--ease);
}
.proj-expertise:hover {
    background: var(--bg);
    border-color: rgba(255,215,0,0.4);
    transform: translateY(-3px);
}
.proj-expertise:hover::before { width: 100%; }
.proj-expertise__num {
    font-family: var(--ff-display-2, 'Inter'), sans-serif;
    font-style: italic;
    font-size: 13px;
    color: var(--proj-yellow);
    letter-spacing: 0.15em;
    font-weight: 500;
}
.proj-expertise__title {
    font-family: var(--ff-display-1, 'Brivela'), serif;
    font-size: 32px;
    font-weight: 400;
    line-height: 1;
    color: var(--ink);
    margin: 0;
    letter-spacing: -0.01em;
}
.proj-expertise__body {
    font-size: 14.5px;
    line-height: 1.65;
    color: var(--ink-mute);
    margin: 0;
    flex-grow: 1;
}
.proj-expertise__tags {
    list-style: none;
    padding: 0;
    margin: 8px 0 0;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    border-top: 1px solid var(--line);
    padding-top: 18px;
}
.proj-expertise__tags li {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    padding: 5px 10px;
    border: 1px solid var(--line);
    color: var(--ink-mute);
    font-weight: 500;
}
@media (max-width: 900px) {
    .proj-expertises { grid-template-columns: 1fr; }
}


/* ---------- 2.4 MOODBOARD ---------- */
.proj-mood {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: 180px 180px;
    gap: 14px;
    margin-top: 40px;
}
.proj-mood__cell {
    background: var(--bg-elev);
    border: 1px solid var(--line);
    padding: 24px 26px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 14px;
    transition: all 0.4s var(--ease);
}
.proj-mood__cell:hover {
    border-color: rgba(255,215,0,0.35);
    transform: translateY(-2px);
}
.proj-mood__cell--quote { grid-column: span 3; }
.proj-mood__cell--keyword { grid-column: span 2; }
.proj-mood__cell--accent {
    background: var(--proj-yellow);
    color: var(--akira-noir);
    border-color: var(--proj-yellow);
}
.proj-mood__cell--accent:hover {
    background: var(--proj-yellow);
    transform: translateY(-2px);
}
.proj-mood__label {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--ink-mute);
    font-weight: 500;
}
.proj-mood__cell--accent .proj-mood__label { color: rgba(0,0,0,0.6); }
.proj-mood__cell strong {
    font-family: var(--ff-display-1, 'Brivela'), serif;
    font-size: clamp(28px, 3vw, 44px);
    font-weight: 400;
    line-height: 1;
    color: var(--ink);
    letter-spacing: -0.02em;
}
.proj-mood__cell--accent strong { color: var(--akira-noir); }
.proj-mood__cell p {
    font-family: var(--ff-display-2, 'Inter'), sans-serif;
    font-style: italic;
    font-size: 18px;
    line-height: 1.45;
    color: var(--ink);
    margin: 0;
}
.proj-mood__cell--quote:first-child p {
    font-size: 22px;
    font-weight: 500;
}
@media (max-width: 900px) {
    .proj-mood {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }
    .proj-mood__cell--quote,
    .proj-mood__cell--keyword { grid-column: span 2; }
}


/* ---------- 2.5 COULEURS — Hero swatch + roles ---------- */
.proj-swatch--hero {
    grid-column: span 1;
    position: relative;
}
.proj-swatch--hero::after {
    content: '★';
    position: absolute;
    top: 14px;
    right: 14px;
    font-size: 16px;
    color: var(--akira-noir);
    opacity: 0.65;
}
.proj-palette-roles {
    list-style: none;
    margin: 14px 0 0;
    padding: 26px 0 0;
    border-top: 1px solid var(--line);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.proj-palette-roles li {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.proj-palette-roles strong {
    font-size: 14px;
    color: var(--ink);
    font-weight: 600;
    letter-spacing: -0.01em;
}
.proj-palette-roles span {
    font-size: 13px;
    color: var(--ink-mute);
    line-height: 1.55;
}
@media (max-width: 720px) {
    .proj-palette-roles { grid-template-columns: 1fr; gap: 18px; }
}


/* ---------- 2.8 ANIMATION DU LOGO ---------- */
.proj-section--anim {
    background:
        radial-gradient(ellipse at 50% 0%, rgba(255,215,0,0.06), transparent 60%),
        var(--bg);
}
.proj-anim {
    margin: 40px auto 0;
    max-width: 720px;
}
.proj-anim__frame {
    position: relative;
    aspect-ratio: 16 / 9;
    background: var(--akira-noir);
    border: 1px solid var(--line);
    overflow: hidden;
    transition: border-color 0.4s var(--ease);
}
.proj-anim__frame::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 50% 50%, transparent 40%, rgba(0,0,0,0.4) 100%),
        repeating-linear-gradient(0deg, rgba(255,215,0,0.02) 0px, rgba(255,215,0,0.02) 1px, transparent 1px, transparent 4px);
    z-index: 2;
    pointer-events: none;
    /* On masque le voile sur la zone des contrôles (bas) pour qu'ils restent lisibles */
    mask-image: linear-gradient(180deg, #000 0%, #000 78%, transparent 92%);
    -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 78%, transparent 92%);
}
.proj-anim__frame::after {
    content: '● REC';
    position: absolute;
    top: 18px;
    left: 18px;
    font-family: 'Courier New', monospace;
    font-size: 10px;
    letter-spacing: 0.2em;
    color: var(--proj-yellow);
    z-index: 3;
    opacity: 0.7;
    pointer-events: none;
    animation: proj-rec-blink 2s ease-in-out infinite;
}
@keyframes proj-rec-blink {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 0.25; }
}
.proj-anim:hover .proj-anim__frame { border-color: rgba(255,215,0,0.5); }
.proj-anim__frame video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: var(--akira-noir);
    display: block;
    position: relative;
    z-index: 1;
}
.proj-anim figcaption {
    margin-top: 14px;
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 0 4px;
}
.proj-anim figcaption strong {
    font-size: 14px;
    font-weight: 600;
    color: var(--ink);
}
.proj-anim figcaption span {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--proj-yellow);
}


/* ---------- 2.9 SYSTÈME — PROTECTION + INTERDITS ---------- */
.proj-protection {
    margin: 40px 0 70px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}
.proj-protection__frame {
    position: relative;
    width: 100%;
    max-width: 780px;
    aspect-ratio: 5 / 2;
    background: var(--proj-cream);
    border: 1px dashed rgba(255,215,0,0.5);
    padding: 60px 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.proj-protection__frame::before,
.proj-protection__frame::after {
    content: '';
    position: absolute;
    border: 1px dashed rgba(0,0,0,0.25);
    pointer-events: none;
}
.proj-protection__frame::before {
    inset: 30px;
    /* Cadre intérieur de zone de protection */
}
.proj-protection__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 2;
}
.proj-protection__inner img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    display: block;
}
.proj-protection__corner {
    position: absolute;
    font-family: 'Courier New', monospace;
    font-size: 10px;
    letter-spacing: 0.05em;
    color: var(--proj-graphite);
    opacity: 0.7;
    background: var(--proj-cream);
    padding: 0 6px;
    z-index: 3;
}
.proj-protection__corner--tl { top: 24px; left: 24px; }
.proj-protection__corner--tr { top: 24px; right: 24px; }
.proj-protection__corner--bl { bottom: 24px; left: 24px; }
.proj-protection__corner--br { bottom: 24px; right: 24px; }
.proj-protection figcaption {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--proj-yellow);
    font-weight: 500;
}

.proj-dont__title {
    font-family: var(--ff-display-1, 'Brivela'), serif;
    font-size: clamp(24px, 2.4vw, 32px);
    font-weight: 400;
    color: var(--ink);
    margin: 30px 0 24px;
    letter-spacing: -0.01em;
}
.proj-dont__title em {
    font-family: var(--ff-display-2, 'Inter'), sans-serif;
    font-style: italic;
    color: var(--proj-yellow);
}
.proj-donts {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}
.proj-dont {
    background: var(--bg-elev);
    border: 1px solid var(--line);
    padding: 24px 26px;
    display: grid;
    grid-template-columns: 36px 1fr;
    gap: 16px 18px;
    align-items: center;
    transition: all 0.3s var(--ease);
}
.proj-dont:hover {
    background: var(--bg);
    border-color: rgba(192, 24, 26, 0.4);
}
.proj-dont__cross {
    grid-row: span 2;
    width: 32px;
    height: 32px;
    border: 2px solid var(--akira-red);
    border-radius: 50%;
    position: relative;
    flex-shrink: 0;
}
.proj-dont__cross::before,
.proj-dont__cross::after {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    width: 18px;
    height: 2px;
    background: var(--akira-red);
    transform-origin: center;
}
.proj-dont__cross::before { transform: translate(-50%, -50%) rotate(45deg); }
.proj-dont__cross::after  { transform: translate(-50%, -50%) rotate(-45deg); }
.proj-dont strong {
    font-size: 15px;
    color: var(--ink);
    font-weight: 600;
    letter-spacing: -0.01em;
    align-self: end;
    grid-column: 2;
}
.proj-dont span {
    font-size: 13px;
    line-height: 1.5;
    color: var(--ink-mute);
    align-self: start;
    grid-column: 2;
}
.proj-dont code {
    font-family: 'Courier New', monospace;
    font-size: 12px;
    color: var(--proj-yellow);
    background: rgba(255,215,0,0.08);
    padding: 1px 6px;
    border-radius: 2px;
}
@media (max-width: 720px) {
    .proj-donts { grid-template-columns: 1fr; }
    .proj-protection__frame { padding: 30px 24px; aspect-ratio: 3/2; }
    .proj-protection__corner { font-size: 9px; }
    .proj-protection__corner--tl,
    .proj-protection__corner--tr { top: 8px; }
    .proj-protection__corner--bl,
    .proj-protection__corner--br { bottom: 8px; }
    .proj-protection__corner--tl, .proj-protection__corner--bl { left: 8px; }
    .proj-protection__corner--tr, .proj-protection__corner--br { right: 8px; }
}


/* =========================================================
   AGENCE TAB — Cocon noir/jaune (Le Projecteur)
   Le portfolio principal est en beige sable / vert forêt
   "Tropical Chic", mais l'agence Le Projecteur garde son
   identité de marque noire/jaune via override local des
   variables.
   ========================================================= */

[data-tab-content="agence"] {
    --bg:        #0E0E0E;
    --bg-elev:   #181818;
    --bg-deep:   #050505;
    --bg-deep-elev: #181818;
    --ink:       #F5F5DC;
    --ink-mute:  #8A8A82;
    --ink-on-deep: #F5F5DC;
    --ink-mute-deep: #8A8A82;
    --line:      rgba(245, 245, 220, 0.10);
    --line-on-deep: rgba(245, 245, 220, 0.10);
    --accent:    #FFD700;
    --accent-hi: #FFE872;

    background: var(--bg);
    color: var(--ink);
    position: relative;
    z-index: 1;
}

/* Le tab agence override aussi les styles de section qu'on a
   passé en vert forêt dans style.css : on les ramène en noir
   uniquement sous le tab agence. */
[data-tab-content="agence"] .project-section,
[data-tab-content="agence"] .project-cover,
[data-tab-content="agence"] .feature-showcase,
[data-tab-content="agence"] .proj-section {
    background: var(--bg);
    color: var(--ink);
}

/* Override Brivela → Bebas Neue dans le tab agence
   (Bebas Neue est la typo de la charte Le Projecteur) */
[data-tab-content="agence"] .proj-section__title,
[data-tab-content="agence"] .proj-section__title--big,
[data-tab-content="agence"] .proj-website h4,
[data-tab-content="agence"] .booklet-card__title {
    font-family: 'Bebas Neue', 'Inter', 'Helvetica Neue', sans-serif;
    font-weight: 400;
    letter-spacing: 0.005em;
    line-height: 0.92;
}

[data-tab-content="agence"] .proj-section__title em,
[data-tab-content="agence"] .proj-website h4 em {
    font-family: 'Archivo', 'Inter', 'Helvetica Neue', sans-serif;
    font-style: italic;
    font-weight: 400;
}

[data-tab-content="agence"] .proj-section__title {
    font-size: clamp(48px, 6.5vw, 100px);
}
[data-tab-content="agence"] .proj-section__title--big {
    font-size: clamp(64px, 9vw, 140px);
    line-height: 0.88;
}
[data-tab-content="agence"] .proj-website h4 {
    font-size: clamp(40px, 5.5vw, 72px);
    line-height: 0.95;
}
[data-tab-content="agence"] .proj-hero__slogan {
    font-family: 'Archivo', 'Inter', sans-serif;
    font-style: italic;
}

/* Specific font overrides for the new agence sections */
[data-tab-content="agence"] .proj-stats__item strong,
[data-tab-content="agence"] .proj-expertise__title,
[data-tab-content="agence"] .proj-mood__cell strong,
[data-tab-content="agence"] .proj-dont__title {
    font-family: 'Bebas Neue', 'Inter', 'Helvetica Neue', sans-serif;
    font-weight: 400;
    letter-spacing: 0.02em;
}