/* =============================================================================
   SALOUA — Site officiel | Feuille de style principale
   Thème : noir profond + or champagne | Élégance & modernité
   ============================================================================= */

:root {
    --black: #0a0908;
    --night: #111110;
    --charcoal: #1a1917;
    --ink: #211f1c;
    --gold: #c9a96a;
    --gold-bright: #e4c789;
    --gold-deep: #a8884f;
    --cream: #f5f0e6;
    --muted: #a8a299;
    --line: rgba(201, 169, 106, 0.18);
    --white: #ffffff;

    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Poppins', system-ui, -apple-system, sans-serif;

    --maxw: 1200px;
    --radius: 4px;
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* --------------------------------- Reset --------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; scroll-padding-top: 90px; }

body {
    font-family: var(--font-body);
    background: var(--black);
    color: var(--cream);
    line-height: 1.7;
    font-weight: 300;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color .3s var(--ease); }
ul { list-style: none; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* ------------------------------ Typographie ------------------------------ */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 500; line-height: 1.15; }

.section-eyebrow {
    display: inline-block;
    font-family: var(--font-body);
    font-size: .72rem;
    letter-spacing: .35em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 14px;
}

.section-title {
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    color: var(--white);
    margin-bottom: 28px;
}

.section { padding: clamp(70px, 10vw, 130px) 0; position: relative; }
.section-head { text-align: center; margin-bottom: 60px; }
.lead { font-size: 1.18rem; color: var(--cream); margin-bottom: 20px; }

/* -------------------------------- Boutons -------------------------------- */
.btn {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 15px 34px;
    font-family: var(--font-body);
    font-size: .82rem; font-weight: 500;
    letter-spacing: .18em; text-transform: uppercase;
    cursor: pointer; border: 1px solid transparent;
    border-radius: var(--radius);
    transition: all .35s var(--ease);
}
.btn-sm { padding: 10px 22px; font-size: .72rem; }

.btn-gold {
    background: linear-gradient(135deg, var(--gold-bright), var(--gold-deep));
    color: var(--black); border-color: var(--gold);
}
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 12px 30px rgba(201,169,106,.3); color: var(--black); }

.btn-outline { background: transparent; border-color: var(--gold); color: var(--gold); }
.btn-outline:hover { background: var(--gold); color: var(--black); }

.btn-text { padding: 0; color: var(--gold); letter-spacing: .1em; background: none; }
.btn-text:hover { color: var(--gold-bright); letter-spacing: .16em; }

/* -------------------------------- Header --------------------------------- */
.site-header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    padding: 14px 0;
    transition: all .4s var(--ease);
}
.site-header.is-scrolled {
    padding: 12px 0;
    background: rgba(10,9,8,.85);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; }
.brand {
    font-family: var(--font-display);
    font-size: clamp(1.25rem, 2vw, 1.7rem); font-weight: 600;
    letter-spacing: .16em; color: var(--white);
    white-space: nowrap;
}
.brand:hover { color: var(--gold); }

/* Logo image dans l'en-tête (fond transparent) */
.brand-logo { display: inline-flex; align-items: center; }
.brand-logo img {
    height: 96px; width: auto; display: block;
    transition: height .4s var(--ease);
    filter: drop-shadow(0 2px 12px rgba(201,169,106,.2));
}
.site-header.is-scrolled .brand-logo img { height: 68px; }
@media (max-width: 768px) {
    .brand-logo img { height: 68px; }
    .site-header.is-scrolled .brand-logo img { height: 54px; }
}

.main-nav { display: flex; gap: 30px; align-items: center; }
.main-nav a {
    font-size: .78rem; font-weight: 400; letter-spacing: .14em; text-transform: uppercase;
    color: var(--cream); position: relative; padding: 4px 0;
}
.main-nav a.active-link { color: var(--gold); }
.main-nav a:not(.nav-cta)::after {
    content: ''; position: absolute; left: 0; bottom: 0; width: 0; height: 1px;
    background: var(--gold); transition: width .35s var(--ease);
}
.main-nav a:not(.nav-cta):hover { color: var(--gold); }
.main-nav a:not(.nav-cta):hover::after,
.main-nav a.active-link:not(.nav-cta)::after { width: 100%; }
.nav-cta {
    border: 1px solid var(--gold); color: var(--gold);
    padding: 8px 20px !important; border-radius: var(--radius);
}
.nav-cta:hover { background: var(--gold); color: var(--black); }
.nav-cta.active-link { background: var(--gold); color: var(--black); }

.lang-switch {
    display: inline-flex; align-items: center; justify-content: center;
    width: 34px; height: 34px; border-radius: 50%;
    border: 1px solid var(--line); overflow: hidden; padding: 0;
    transition: border-color .3s var(--ease), transform .3s var(--ease);
}
.lang-switch img { width: 100%; height: 100%; object-fit: cover; display: block; }
.lang-switch:hover { border-color: var(--gold); transform: scale(1.08); }

.burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; z-index: 110; }
.burger span { width: 26px; height: 2px; background: var(--cream); transition: all .35s var(--ease); }
.burger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.active span:nth-child(2) { opacity: 0; }
.burger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* --------------------------------- Hero ---------------------------------- */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; justify-content: center; text-align: center; overflow: hidden; padding: 100px 0 90px; box-sizing: border-box; }
.hero-bg {
    position: absolute; inset: 0;
    background:
        radial-gradient(circle at 30% 20%, rgba(201,169,106,.12), transparent 45%),
        radial-gradient(circle at 75% 80%, rgba(168,136,79,.1), transparent 50%),
        linear-gradient(160deg, var(--night), var(--black) 60%);
    animation: heroPan 22s ease-in-out infinite alternate;
}
@keyframes heroPan { from { transform: scale(1); } to { transform: scale(1.12); } }
.hero-overlay {
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at center, transparent 0%, rgba(10,9,8,.55) 100%);
}
.hero-content { position: relative; z-index: 2; }
.hero-eyebrow {
    font-size: .85rem; letter-spacing: .45em; text-transform: uppercase;
    color: var(--gold); margin-bottom: 14px;
}
.hero-title {
    font-size: clamp(4rem, 16vw, 11rem);
    color: var(--white); line-height: .95;
    letter-spacing: .04em; font-weight: 600;
    text-shadow: 0 0 60px rgba(201,169,106,.25);
}
/* Portrait circulaire dans le hero (remplace le titre texte) */
.hero-portrait {
    margin: 6px auto;
    text-shadow: none;
    font-size: 0; line-height: 0; letter-spacing: 0;
    display: flex; justify-content: center;
}
.hero-portrait img {
    width: clamp(190px, 28vw, 340px);
    height: auto; aspect-ratio: 1; object-fit: cover;
    border-radius: 50%; display: block;
    box-shadow: 0 20px 60px rgba(0,0,0,.55), 0 0 50px rgba(201,169,106,.18);
    animation: portraitFloat 6s ease-in-out infinite;
}
@keyframes portraitFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

.hero-subtitle { font-size: clamp(1.1rem, 2.5vw, 1.5rem); color: var(--muted); margin: 16px 0 30px; font-weight: 300; }
.hero-actions { display: flex; gap: 18px; justify-content: center; flex-wrap: wrap; }

.scroll-cue { position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%); width: 26px; height: 42px; border: 1px solid var(--gold); border-radius: 14px; z-index: 2; }
/* Sur les écrans peu hauts, le contenu remplit le hero : on masque la flèche pour éviter le chevauchement */
@media (max-height: 820px) {
    .scroll-cue { display: none; }
}
.scroll-cue span { position: absolute; top: 8px; left: 50%; transform: translateX(-50%); width: 3px; height: 8px; background: var(--gold); border-radius: 2px; animation: scrollDot 1.8s infinite; }
@keyframes scrollDot { 0% { opacity: 0; top: 8px; } 50% { opacity: 1; } 100% { opacity: 0; top: 24px; } }

/* ---------------------------------- Bio ---------------------------------- */
.bio-section { background: var(--night); }
.bio-grid { display: grid; grid-template-columns: 0.85fr 1fr; gap: 70px; align-items: center; }
.photo-frame { position: relative; aspect-ratio: 3/4; border-radius: var(--radius); overflow: hidden; padding: 14px; box-sizing: border-box; }
.photo-frame::after { content: ''; position: absolute; inset: 14px; border: 1px solid rgba(245,240,230,.35); pointer-events: none; z-index: 2; }
.photo-frame img { width: 100%; height: 100%; object-fit: cover; object-position: center center; transition: transform .8s var(--ease); }
.photo-frame:hover img { transform: scale(1.05); }
.bio-text p { color: var(--muted); margin-bottom: 16px; }

/* -------------------------------- Musique -------------------------------- */
.music-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 36px; }
.music-card { background: var(--charcoal); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: all .4s var(--ease); }
.music-card:hover { transform: translateY(-8px); border-color: var(--gold); box-shadow: 0 20px 50px rgba(0,0,0,.5); }
.music-cover { position: relative; aspect-ratio: 1; overflow: hidden; }
.music-cover img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.music-card:hover .music-cover img { transform: scale(1.08); }
.music-type { position: absolute; top: 14px; left: 14px; background: rgba(10,9,8,.7); color: var(--gold); font-size: .68rem; letter-spacing: .15em; text-transform: uppercase; padding: 5px 12px; border-radius: 2px; }

/* Bouton lecture sur la pochette */
.music-cover::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(10,9,8,.55)); opacity: 0; transition: opacity .4s var(--ease); pointer-events: none; }
.music-card.has-audio:hover .music-cover::after { opacity: 1; }
.music-play {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%) scale(.9);
    width: 64px; height: 64px; border-radius: 50%; border: none; cursor: pointer;
    background: var(--gold); color: #0a0908; font-size: 1.15rem;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 8px 24px rgba(0,0,0,.45); opacity: .92;
    transition: transform .35s var(--ease), opacity .35s var(--ease), background .3s var(--ease); z-index: 3;
}
.music-play:hover { transform: translate(-50%, -50%) scale(1.06); background: var(--gold-bright); opacity: 1; }
.music-play .mp-icon { line-height: 1; padding-left: 2px; }
.music-play.playing { background: var(--gold-bright); opacity: 1; box-shadow: 0 0 0 6px rgba(201,169,106,.25), 0 8px 24px rgba(0,0,0,.45); }

/* Barre lecteur fixe */
.player-bar {
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 200;
    background: rgba(17,17,16,.97); backdrop-filter: blur(14px);
    border-top: 1px solid var(--line); box-shadow: 0 -8px 30px rgba(0,0,0,.4);
    transform: translateY(110%); transition: transform .45s var(--ease);
}
.player-bar.active { transform: translateY(0); }
.pb-inner { display: flex; align-items: center; gap: 18px; padding: 12px 24px; }
.pb-cover { width: 50px; height: 50px; border-radius: 8px; object-fit: cover; flex-shrink: 0; background: var(--charcoal); }
.pb-meta { display: flex; flex-direction: column; min-width: 130px; max-width: 200px; }
.pb-title { color: var(--cream); font-size: .95rem; font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.pb-artist { color: var(--gold); font-size: .74rem; letter-spacing: .08em; }
.pb-controls { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.pb-prev, .pb-next, .pb-close { background: none; border: none; color: var(--cream); cursor: pointer; font-size: 1.1rem; opacity: .8; transition: opacity .25s, color .25s; }
.pb-prev:hover, .pb-next:hover, .pb-close:hover { opacity: 1; color: var(--gold); }
.pb-play { width: 44px; height: 44px; border-radius: 50%; background: var(--gold); color: #0a0908; border: none; cursor: pointer; font-size: 1rem; display: flex; align-items: center; justify-content: center; transition: background .25s var(--ease); }
.pb-play:hover { background: var(--gold-bright); }
.pb-progress { display: flex; align-items: center; gap: 12px; flex: 1; }
.pb-time { color: var(--muted); font-size: .74rem; min-width: 38px; text-align: center; font-variant-numeric: tabular-nums; }
.pb-seek { -webkit-appearance: none; appearance: none; flex: 1; width: auto; height: 4px; padding: 0; margin: 0; background: var(--line); border: none; border-radius: 2px; cursor: pointer; }
.pb-seek::-webkit-slider-thumb { -webkit-appearance: none; appearance: none; width: 13px; height: 13px; border-radius: 50%; background: var(--gold); cursor: pointer; box-shadow: 0 0 0 4px rgba(201,169,106,.18); }
.pb-seek::-moz-range-thumb { width: 13px; height: 13px; border: none; border-radius: 50%; background: var(--gold); cursor: pointer; }
.pb-close { font-size: 1.5rem; line-height: 1; flex-shrink: 0; }
@media (max-width: 680px) {
    .pb-meta { display: none; }
    .pb-inner { gap: 10px; padding: 10px 14px; }
    .pb-time { min-width: 32px; }
}
.music-info { padding: 24px; }
.music-info h3 { font-size: 1.5rem; color: var(--white); }
.music-year { color: var(--gold); font-size: .82rem; letter-spacing: .1em; margin-bottom: 12px; }
.music-desc { color: var(--muted); font-size: .92rem; margin-bottom: 16px; }
.music-links { display: flex; flex-wrap: wrap; gap: 10px; }
.music-links a { font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; color: var(--cream); border: 1px solid var(--line); padding: 6px 14px; border-radius: 2px; }
.music-links a:hover { color: var(--gold); border-color: var(--gold); }

/* -------------------------------- Vidéos --------------------------------- */
.videos-section { background: var(--night); }
.videos-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); gap: 40px; }
.video-frame { position: relative; aspect-ratio: 16/9; border-radius: var(--radius); overflow: hidden; background: var(--charcoal); margin-bottom: 18px; }
.video-frame iframe { width: 100%; height: 100%; border: 0; }
.video-thumb { position: absolute; inset: 0; width: 100%; height: 100%; background-size: cover; background-position: center; border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; }
.video-thumb::before { content: ''; position: absolute; inset: 0; background: rgba(10,9,8,.35); transition: background .3s; }
.video-thumb:hover::before { background: rgba(10,9,8,.15); }
.play-btn { position: relative; z-index: 2; width: 72px; height: 72px; border-radius: 50%; background: rgba(201,169,106,.92); color: var(--black); display: flex; align-items: center; justify-content: center; font-size: 1.4rem; padding-left: 5px; transition: transform .3s var(--ease); }
.video-thumb:hover .play-btn { transform: scale(1.12); }
.video-card h3 { font-size: 1.3rem; color: var(--white); }
.video-card p { color: var(--muted); font-size: .9rem; }

/* -------------------------------- Concerts ------------------------------- */
.events-list { max-width: 860px; margin: 0 auto; }
.event-row { display: grid; grid-template-columns: 90px 1fr auto; gap: 28px; align-items: center; padding: 26px 0; border-bottom: 1px solid var(--line); transition: padding .3s var(--ease); }
.event-row:hover { padding-left: 12px; }
.event-date { text-align: center; line-height: 1; }
.ev-day { display: block; font-family: var(--font-display); font-size: 2.6rem; color: var(--white); }
.ev-month { display: block; font-size: .72rem; letter-spacing: .2em; color: var(--gold); margin: 4px 0; }
.ev-year { display: block; font-size: .72rem; color: var(--muted); }
.event-info h3 { font-size: 1.5rem; color: var(--white); }
.event-info p { color: var(--muted); font-size: .95rem; }
.event-soon { color: var(--muted); font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; }

/* -------------------------------- TikTok --------------------------------- */
.tiktok-section { background: var(--night); }
.tiktok-embed-wrap {
    display: flex; justify-content: center; min-height: 560px;
    max-width: 820px; margin: 0 auto; padding: 18px;
    background: linear-gradient(180deg, rgba(201,169,106,.06), rgba(10,9,8,.2));
    border: 1px solid var(--line); border-radius: var(--radius);
    box-shadow: 0 24px 60px rgba(0,0,0,.45);
}
.tiktok-embed-wrap .tiktok-embed {
    border-radius: 14px; overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,.35);
}
.tiktok-cta { text-align: center; margin-top: 36px; }

/* -------------------------------- Galerie -------------------------------- */
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 6px; }
.gallery-item { position: relative; aspect-ratio: 1; overflow: hidden; cursor: pointer; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease), filter .6s; filter: grayscale(20%); }
.gallery-item:hover img { transform: scale(1.1); filter: grayscale(0%); }
.lightbox { position: fixed; inset: 0; z-index: 200; background: rgba(10,9,8,.95); display: flex; align-items: center; justify-content: center; padding: 30px; }
.lightbox img { max-width: 90%; max-height: 90vh; object-fit: contain; border-radius: var(--radius); }
.lightbox-close { position: absolute; top: 24px; right: 32px; font-size: 2.5rem; color: var(--cream); background: none; border: none; cursor: pointer; line-height: 1; }

/* ------------------------------ Actualités ------------------------------- */
.news-section { background: var(--night); }
.news-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 34px; }
.news-card { background: var(--charcoal); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: all .4s var(--ease); }
.news-card:hover { transform: translateY(-6px); border-color: var(--gold); }
.news-cover { aspect-ratio: 16/10; overflow: hidden; }
.news-cover img { width: 100%; height: 100%; object-fit: cover; }
.news-body { padding: 26px; }
.news-body time { color: var(--gold); font-size: .75rem; letter-spacing: .12em; text-transform: uppercase; }
.news-body h3 { font-size: 1.4rem; color: var(--white); margin: 12px 0; }
.news-body p { color: var(--muted); font-size: .92rem; }

/* ------------------------------ Newsletter ------------------------------- */
.newsletter-section { background: linear-gradient(135deg, var(--ink), var(--charcoal)); text-align: center; }
.newsletter-inner { max-width: 620px; }
.newsletter-inner h2 { font-size: clamp(1.8rem,4vw,2.8rem); color: var(--white); margin-bottom: 14px; }
.newsletter-inner > p { color: var(--muted); margin-bottom: 30px; }
.newsletter-form { display: flex; gap: 12px; max-width: 480px; margin: 0 auto; }
.newsletter-form input { flex: 1; }
.form-flash { margin-top: 18px; color: var(--gold); }

/* -------------------------------- Contact -------------------------------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 70px; align-items: start; }
.contact-intro p { color: var(--muted); }
.contact-details { margin-top: 30px; display: grid; gap: 20px; }
.contact-details p { color: var(--cream); font-size: .95rem; }
.contact-details strong { color: var(--gold); font-weight: 500; letter-spacing: .08em; }
.contact-details a:hover { color: var(--gold); }

/* -------------------------------- Forms ---------------------------------- */
input, textarea, select {
    width: 100%; padding: 14px 18px;
    background: var(--charcoal); border: 1px solid var(--line);
    color: var(--cream); font-family: var(--font-body); font-size: .95rem;
    border-radius: var(--radius); transition: border-color .3s, background .3s;
}
input::placeholder, textarea::placeholder { color: #6b6660; }
input:focus, textarea:focus, select:focus { outline: none; border-color: var(--gold); background: var(--ink); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-form { display: grid; gap: 16px; }
.hp-field { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; }

.alert { padding: 14px 20px; border-radius: var(--radius); margin-bottom: 18px; font-size: .92rem; }
.alert-success { background: rgba(95,150,90,.15); border: 1px solid rgba(120,180,110,.4); color: #b6e0a8; }
.alert-error { background: rgba(180,70,70,.15); border: 1px solid rgba(200,90,90,.4); color: #f0b3b3; }
.empty-state { text-align: center; color: var(--muted); font-style: italic; }

/* -------------------------------- Footer --------------------------------- */
.site-footer { background: var(--black); border-top: 1px solid var(--line); padding-top: 70px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 50px; padding-bottom: 50px; }
.footer-brand h3 { font-size: 1.8rem; letter-spacing: .2em; color: var(--white); margin-bottom: 10px; }
.footer-logo { display: inline-block; margin-bottom: 14px; }
.footer-logo img { height: 130px; width: auto; display: block; }
.footer-brand p { color: var(--muted); margin-bottom: 22px; }
.social-row { display: flex; flex-wrap: wrap; gap: 16px; }
.social-row a { font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
.social-row a:hover { color: var(--gold); }
.footer-links h4, .footer-contact h4 { color: var(--gold); font-size: .85rem; letter-spacing: .15em; text-transform: uppercase; margin-bottom: 18px; font-family: var(--font-body); }
.footer-links a { display: block; color: var(--muted); margin-bottom: 10px; font-size: .92rem; }
.footer-links a:hover { color: var(--cream); }
.footer-contact p { color: var(--muted); font-size: .92rem; margin-bottom: 10px; }
.footer-contact a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid var(--line); padding: 24px 0; }
.footer-bottom .container { display: flex; justify-content: space-between; align-items: center; }
.footer-bottom p { color: #6b6660; font-size: .82rem; }
.designer-credit { color: #6b6660; font-size: .78rem; letter-spacing: .04em; }
.designer-credit:hover { color: var(--gold); }

/* ------------------------------ Back to top ------------------------------ */
.back-to-top { position: fixed; bottom: 28px; right: 28px; z-index: 90; width: 48px; height: 48px; border-radius: 50%; background: var(--gold); color: var(--black); border: none; font-size: 1.3rem; cursor: pointer; box-shadow: 0 8px 24px rgba(0,0,0,.4); transition: transform .3s var(--ease); }
.back-to-top:hover { transform: translateY(-4px); }

/* ------------------------- Animations au scroll -------------------------- */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* -------------------------------- Responsive ----------------------------- */
@media (max-width: 920px) {
    .bio-grid, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
    .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
    .burger { display: flex; }
    .main-nav {
        position: fixed; inset: 0; flex-direction: column; justify-content: center;
        background: rgba(10,9,8,.98); backdrop-filter: blur(10px);
        transform: translateX(100%); transition: transform .45s var(--ease); gap: 28px;
    }
    .main-nav.open { transform: translateX(0); }
    .main-nav a { font-size: 1.1rem; }
    .event-row { grid-template-columns: 70px 1fr; }
    .event-action { grid-column: 1 / -1; }
    .newsletter-form { flex-direction: column; }
    .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 36px; }
    .footer-bottom .container { flex-direction: column; gap: 10px; }
}
@media (max-width: 520px) {
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ------------------------------ Accessibilité ---------------------------- */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation: none !important; transition: none !important; }
    .reveal { opacity: 1; transform: none; }
}
