/* ===================================================================
   The Amberz — Fan club  ·  Design system
   =================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
    --cream: #fbeeea;
    --pink: #f8d8d1;
    --pink-soft: #fce6e1;
    --ink: #1a1714;
    --ink-soft: #4a4540;
    --muted: #9b938d;
    --accent: #fc3314;
    --accent-2: #ff6b4a;
    --dark: #1c1a18;
    --dark-2: #232120;
    --card: #ffffff;
    --line: #ece3df;
    --radius: 22px;
    --radius-sm: 14px;
    --shadow: 0 24px 60px -28px rgba(40, 20, 15, .35);
    --shadow-sm: 0 10px 30px -16px rgba(40, 20, 15, .3);
    --maxw: 1180px;
    --ease: cubic-bezier(.22, 1, .36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
    background: var(--cream);
    color: var(--ink);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 24px; }

.section { padding: 92px 0; }
.section-sm { padding: 60px 0; }

/* ---------- Typo ---------- */
h1, h2, h3, h4 { font-weight: 800; line-height: 1.08; letter-spacing: -.02em; }
.eyebrow {
    display: inline-block;
    font-size: .72rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
    color: var(--accent); margin-bottom: 18px;
}
.eyebrow.muted { color: var(--muted); }
.section-head { text-align: center; max-width: 620px; margin: 0 auto 54px; }
.section-head h2 { font-size: clamp(1.9rem, 4vw, 2.8rem); }
.section-head p { color: var(--ink-soft); margin-top: 14px; }

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex; align-items: center; gap: 10px;
    font-family: inherit; font-weight: 600; font-size: .95rem;
    padding: 14px 26px; border-radius: 100px; border: none; cursor: pointer;
    transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .25s, color .25s;
    white-space: nowrap;
}
.btn svg { width: 16px; height: 16px; }
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { transform: translateY(-2px); box-shadow: 0 16px 30px -14px rgba(0,0,0,.5); }
.btn-accent { background: var(--accent); color: #fff; box-shadow: 0 14px 28px -12px rgba(252,51,20,.6); }
.btn-accent:hover { transform: translateY(-2px); box-shadow: 0 18px 34px -12px rgba(252,51,20,.75); }
.btn-light { background: #fff; color: var(--ink); box-shadow: var(--shadow-sm); }
.btn-light:hover { transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--ink); border: 1.5px solid rgba(26,23,20,.18); }
.btn-ghost:hover { background: var(--ink); color: #fff; border-color: var(--ink); }
.btn-block { width: 100%; justify-content: center; }
.btn-lg { padding: 16px 32px; font-size: 1rem; }

/* ---------- Navbar ---------- */
.nav {
    position: sticky; top: 0; z-index: 50;
    background: color-mix(in srgb, var(--cream) 82%, transparent);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid transparent;
    transition: border-color .3s, background .3s;
}
.nav.scrolled { border-color: var(--line); }
.nav .wrap { display: flex; align-items: center; justify-content: space-between; height: 78px; gap: 20px; }
.brand { font-weight: 800; font-size: 1.3rem; letter-spacing: -.02em; }
.brand span { color: var(--accent); }
.nav-links { display: flex; gap: 36px; align-items: center; }
.nav-links a { font-size: .95rem; font-weight: 700; color: var(--ink-soft); position: relative; transition: color .2s; }
.nav-links a:hover, .nav-links a.active { color: var(--ink); }
.nav-links a.active::after {
    content: ''; position: absolute; left: 0; bottom: -6px; width: 100%; height: 2px;
    background: var(--accent); border-radius: 2px;
}
.nav-right { display: flex; align-items: center; gap: 14px; }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--ink); margin: 5px 0; transition: .3s; border-radius: 2px; }

/* ---------- Hero ---------- */
.hero { background: var(--pink); position: relative; overflow: hidden; }
.hero .wrap { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1fr; gap: 30px; align-items: center; padding-block: 56px 70px; }
.hero-copy .eyebrow { color: var(--ink-soft); }
.hero h1 { font-size: clamp(2.6rem, 6vw, 4.6rem); margin-bottom: 22px; color: var(--ink); }
.hero-copy p { font-size: 1.05rem; color: var(--ink-soft); max-width: 440px; margin-bottom: 32px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-visual { position: relative; align-self: end; }
.hero-visual .photo {
    width: 100%; max-width: 560px; margin-left: auto; display: block;
    object-fit: contain; filter: drop-shadow(0 30px 50px rgba(60,20,10,.28));
}

/* ---------- Article cards ---------- */
.cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 380px)); gap: 28px; justify-content: center; }
.card {
    background: var(--card); border-radius: var(--radius); overflow: hidden;
    box-shadow: var(--shadow-sm); display: flex; flex-direction: column;
    transition: transform .4s var(--ease), box-shadow .4s var(--ease);
    border: 1px solid var(--line);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.card-media { position: relative; aspect-ratio: 16/10; overflow: hidden; }
.card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.card:hover .card-media img { transform: scale(1.06); }
.badge {
    position: absolute; top: 14px; left: 14px; z-index: 2;
    background: var(--accent); color: #fff; font-size: .68rem; font-weight: 700;
    letter-spacing: .08em; text-transform: uppercase; padding: 6px 12px; border-radius: 100px;
}
.card-body { padding: 24px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.card-body h3 { font-size: 1.2rem; }
.card-body p { color: var(--ink-soft); font-size: .92rem; flex: 1; }
.card-meta { font-size: .78rem; color: var(--muted); }
.card-tagline { display: flex; align-items: center; gap: 12px; }
.card-tagline .cat { background: var(--pink-soft); color: var(--accent); font-size: .68rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; padding: 5px 11px; border-radius: 100px; }
.card-tagline .date { font-size: .8rem; color: var(--muted); font-weight: 500; }
.card .btn { align-self: flex-start; margin-top: 4px; }
.card .btn-block { margin-top: 8px; }

/* ---------- Actualités (section sombre) ---------- */
.actus-dark { position: relative; }
.actus-dark .card { border: none; }
.actus-dark::after { content: ''; position: absolute; left: 50%; bottom: -52px; transform: translateX(-50%); width: 104px; height: 104px; border-radius: 50%; background: var(--accent); z-index: 3; }
.circle-divider { display: none; }

/* ---------- Split feature ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split.reverse .split-media { order: 2; }
.split-media img { border-radius: var(--radius); width: 100%; aspect-ratio: 4/4.6; object-fit: cover; box-shadow: var(--shadow); }
.split-copy h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); margin-bottom: 18px; }
.split-copy p { color: var(--ink-soft); margin-bottom: 16px; }
.pill {
    display: inline-block; background: var(--pink-soft); color: var(--accent);
    font-size: .74rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
    padding: 7px 15px; border-radius: 100px; margin-bottom: 20px;
}

/* ---------- Dark section ---------- */
.dark { background: var(--dark); color: #fff; }
.dark .eyebrow { color: var(--accent-2); }
.community { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.community-media img { border-radius: var(--radius); aspect-ratio: 5/4; object-fit: cover; width: 100%; }
.community h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); margin-bottom: 16px; }
.community p { color: #c9c2bd; margin-bottom: 28px; max-width: 420px; }
.stats { display: flex; gap: 14px; margin-top: 34px; flex-wrap: wrap; }
.stat { background: var(--dark-2); border: 1px solid rgba(255,255,255,.07); border-radius: var(--radius-sm); padding: 20px 24px; flex: 1; min-width: 110px; }
.stat b { display: block; font-size: 1.9rem; color: #fff; }
.stat span { font-size: .82rem; color: #a39c97; }

/* ---------- Newsletter band ---------- */
.newsletter { background: var(--dark); color: #fff; position: relative; overflow: hidden; }
.newsletter .wrap { display: grid; grid-template-columns: 1.3fr 1fr; gap: 40px; align-items: center; position: relative; z-index: 2; }
.newsletter h2 { font-size: clamp(1.7rem, 3.4vw, 2.5rem); }
.newsletter h2 .grad { color: var(--accent-2); }
.newsletter p { color: #b9b2ad; margin: 16px 0 26px; max-width: 460px; }
.subscribe { display: flex; gap: 10px; max-width: 480px; flex-wrap: wrap; }
.subscribe input {
    flex: 1; min-width: 200px; background: #2c2926; border: 1px solid #3a3633; color: #fff;
    padding: 15px 20px; border-radius: 100px; font-family: inherit; font-size: .95rem;
}
.subscribe input::placeholder { color: #8a837e; }
.subscribe input:focus { outline: none; border-color: var(--accent); }
.diamond {
    aspect-ratio: 1; width: 230px; margin-left: auto; border-radius: 38px; transform: rotate(45deg);
    background: linear-gradient(150deg, #ff7a52, var(--accent) 55%, #c41f05);
    box-shadow: 0 30px 70px -20px rgba(252,51,20,.6); animation: float 6s ease-in-out infinite;
}
@keyframes float { 0%,100% { transform: rotate(45deg) translateY(0); } 50% { transform: rotate(45deg) translateY(-16px); } }

/* ---------- Join / forms ---------- */
.join { background: var(--pink); }
.join .wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.join h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); margin-bottom: 16px; }
.join p { color: var(--ink-soft); margin-bottom: 26px; }
.socials { display: flex; gap: 14px; }
.soc {
    width: 46px; height: 46px; border-radius: 50%; background: var(--accent); color: #fff;
    display: grid; place-items: center; transition: transform .3s var(--ease), background .3s;
}
.soc:hover { transform: translateY(-4px) scale(1.05); background: var(--ink); }
.soc svg { width: 20px; height: 20px; }

.form-card { background: var(--dark); color: #fff; border-radius: var(--radius); padding: 34px; box-shadow: var(--shadow); }
.form-card.light { background: #fff; color: var(--ink); }
.form-card h3 { font-size: 1.4rem; text-align: center; margin-bottom: 24px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: .8rem; font-weight: 600; margin-bottom: 7px; color: inherit; opacity: .8; }
.field input, .field textarea, .field select {
    width: 100%; background: #2c2926; border: 1px solid #3a3633; color: #fff;
    padding: 13px 16px; border-radius: 12px; font-family: inherit; font-size: .95rem; transition: border-color .2s;
}
.form-card.light .field input, .form-card.light .field textarea {
    background: var(--cream); border-color: var(--line); color: var(--ink);
}
.field textarea { resize: vertical; min-height: 110px; }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--accent); }

/* ---------- FAQ ---------- */
.faq { display: grid; grid-template-columns: .9fr 1.1fr; gap: 56px; align-items: start; }
.faq h2 { font-size: clamp(1.9rem, 4vw, 2.8rem); }
.faq-left p { color: var(--ink-soft); margin-top: 16px; }
.faq-list { display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
    width: 100%; background: none; border: none; cursor: pointer; text-align: left;
    font-family: inherit; font-size: 1.02rem; font-weight: 600; color: var(--ink);
    padding: 22px 0; display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq-q .ico { color: var(--accent); font-size: 1.4rem; transition: transform .3s; line-height: 1; }
.faq-item.open .faq-q .ico { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease); }
.faq-a p { color: var(--ink-soft); padding-bottom: 22px; font-size: .94rem; }

/* ---------- Biographie (timeline) ---------- */
.bio { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: start; }
.bio-media img { border-radius: var(--radius); width: 100%; object-fit: cover; object-position: top center; aspect-ratio: 3/4; box-shadow: var(--shadow); }
.bio-media.sticky { position: sticky; top: 100px; }
.bio h2 { font-size: clamp(2rem, 4vw, 2.9rem); margin-bottom: 30px; }
.bio-step { display: flex; gap: 18px; padding: 18px 0; border-top: 1px solid var(--line); }
.bio-step:first-of-type { border-top: none; }
.bio-num {
    flex: none; width: 38px; height: 38px; border-radius: 11px; background: var(--pink-soft); color: var(--accent);
    display: grid; place-items: center; font-weight: 800; font-size: .95rem;
}
.bio-step h4 { font-size: 1.05rem; margin-bottom: 5px; }
.bio-step p { color: var(--ink-soft); font-size: .92rem; }

/* ---------- Parcours cards (dark grid) ---------- */
.journey { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.journey-card {
    background: var(--dark-2); border: 1px solid rgba(255,255,255,.07); border-radius: var(--radius-sm);
    padding: 26px; transition: transform .35s var(--ease), border-color .3s;
}
.journey-card:hover { transform: translateY(-4px); border-color: rgba(252,51,20,.5); }
.journey-card .tag { color: var(--accent-2); font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.journey-card h4 { color: #fff; font-size: 1.15rem; margin: 10px 0 8px; }
.journey-card p { color: #a39c97; font-size: .9rem; }
.journey-card.tall { grid-row: span 2; }

/* ---------- Player (Spotify-like) ---------- */
.player { background: #181818; border-radius: 20px; padding: 24px; color: #fff; max-width: 640px; margin: 0 auto; }
.player-top { display: flex; gap: 20px; align-items: center; }
.player-cover { width: 96px; height: 96px; border-radius: 12px; object-fit: cover; flex: none; }
.player-info { flex: 1; }
.player-info h3 { font-size: 1.4rem; }
.player-info .preview { display: inline-block; background: #333; color: #ccc; font-size: .68rem; padding: 3px 8px; border-radius: 5px; margin: 8px 8px 0 0; font-weight: 600; }
.player-info .save { display: inline-flex; align-items: center; gap: 8px; margin-top: 12px; color: #ddd; font-size: .9rem; white-space: nowrap; }
.player-info .save svg { width: 18px; height: 18px; flex: none; }
.player-play { margin-left: auto; width: 56px; height: 56px; border-radius: 50%; background: #fff; color: #181818; display: grid; place-items: center; flex: none; }
.player-play svg { width: 22px; height: 22px; }
.tracklist { margin-top: 20px; border-top: 1px solid #2a2a2a; }
.track { display: flex; align-items: center; gap: 16px; padding: 13px 4px; border-bottom: 1px solid #242424; font-size: .92rem; }
.track .n { color: #888; width: 16px; }
.track .t { flex: 1; }
.track .t span { display: block; color: #888; font-size: .8rem; }
.track .d { color: #888; }

/* ---------- Spotify embed ---------- */
.spotify-embed { max-width: 680px; margin: 0 auto; border-radius: 16px; box-shadow: var(--shadow); }
.spotify-embed iframe { display: block; border: 0; border-radius: 16px; }

/* ---------- Chat (member space) ---------- */
.chat-shell { display: grid; grid-template-columns: 300px 1fr; gap: 24px; }
.chat-side { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; height: fit-content; }
.chat-side h3 { font-size: 1.1rem; margin-bottom: 6px; }
.chat-side .sub { color: var(--muted); font-size: .85rem; margin-bottom: 20px; }
.link-row { display: flex; align-items: center; gap: 12px; padding: 11px 0; border-top: 1px solid var(--line); font-size: .92rem; font-weight: 500; transition: color .2s; }
.link-row:hover { color: var(--accent); }
.link-row .li { width: 34px; height: 34px; border-radius: 9px; background: var(--pink-soft); color: var(--accent); display: grid; place-items: center; flex: none; }
.link-row .li svg { width: 17px; height: 17px; }

.chat-main { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); display: flex; flex-direction: column; height: 600px; overflow: hidden; }
.chat-head { padding: 18px 24px; border-bottom: 1px solid var(--line); display: flex; align-items: center; gap: 12px; }
.chat-head .dot { width: 9px; height: 9px; border-radius: 50%; background: #29c46b; box-shadow: 0 0 0 4px rgba(41,196,107,.18); }
.chat-head h3 { font-size: 1.05rem; }
.chat-head small { color: var(--muted); display: block; font-weight: 500; }
.chat-log { flex: 1; overflow-y: auto; padding: 22px 24px; display: flex; flex-direction: column; gap: 16px; }
.msg { display: flex; gap: 12px; max-width: 78%; }
.msg .av { width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center; color: #fff; font-weight: 700; font-size: .85rem; flex: none; }
.msg .bubble { background: var(--cream); border-radius: 4px 16px 16px 16px; padding: 11px 15px; }
.msg .who { font-size: .78rem; font-weight: 700; margin-bottom: 3px; }
.msg .who .ago { color: var(--muted); font-weight: 500; margin-left: 8px; }
.msg .bubble p { font-size: .93rem; line-height: 1.45; }
.msg.me { margin-left: auto; flex-direction: row-reverse; }
.msg.me .bubble { background: var(--accent); color: #fff; border-radius: 16px 4px 16px 16px; }
.msg.me .who { text-align: right; }
.chat-form { display: flex; gap: 10px; padding: 16px 20px; border-top: 1px solid var(--line); }
.chat-form input { flex: 1; background: var(--cream); border: 1px solid var(--line); border-radius: 100px; padding: 13px 20px; font-family: inherit; font-size: .95rem; }
.chat-form input:focus { outline: none; border-color: var(--accent); }
.chat-form button { width: 48px; height: 48px; border-radius: 50%; border: none; background: var(--accent); color: #fff; cursor: pointer; display: grid; place-items: center; flex: none; transition: transform .2s; }
.chat-form button:hover { transform: scale(1.06); }

/* ---------- Auth tabs ---------- */
.auth-wrap { max-width: 460px; margin: 0 auto; }
.tabs { display: flex; gap: 8px; background: var(--pink-soft); padding: 6px; border-radius: 100px; margin-bottom: 26px; }
.tabs button { flex: 1; border: none; background: none; padding: 11px; border-radius: 100px; font-family: inherit; font-weight: 600; cursor: pointer; color: var(--ink-soft); transition: .25s; }
.tabs button.active { background: #fff; color: var(--ink); box-shadow: var(--shadow-sm); }

/* ---------- Footer ---------- */
.footer { background: var(--dark); color: #fff; padding: 60px 0 30px; text-align: center; }
.footer .brand { font-size: 1.7rem; margin-bottom: 22px; }
.footer-logo { display: inline-block; margin-bottom: 22px; }
.footer-logo img { width: 96px; height: auto; margin: 0 auto; }
.footer-links { display: flex; gap: 30px; justify-content: center; flex-wrap: wrap; margin-bottom: 26px; }
.footer-links a { color: #b9b2ad; font-size: .92rem; transition: color .2s; }
.footer-links a:hover { color: #fff; }
.footer-socials { display: flex; gap: 12px; justify-content: center; margin-bottom: 30px; }
.footer-socials a { width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,.08); display: grid; place-items: center; transition: .3s; }
.footer-socials a:hover { background: var(--accent); transform: translateY(-3px); }
.footer-socials svg { width: 18px; height: 18px; }
.footer-copy { border-top: 1px solid rgba(255,255,255,.1); padding-top: 24px; color: #8a837e; font-size: .82rem; }

/* ---------- Flash / alerts ---------- */
.flash-stack { position: fixed; top: 90px; right: 24px; z-index: 200; display: flex; flex-direction: column; gap: 10px; max-width: 340px; }
.flash {
    background: #fff; border-left: 4px solid var(--accent); border-radius: 12px; padding: 14px 18px;
    box-shadow: var(--shadow); font-size: .9rem; animation: slidein .4s var(--ease);
}
.flash.success { border-color: #29c46b; }
.flash.error { border-color: #e0453a; }
@keyframes slidein { from { opacity: 0; transform: translateX(30px); } }

/* ---------- Page header (sous-pages) ---------- */
.page-hero { background: var(--pink); padding: 70px 0 60px; }
.page-hero .eyebrow { color: var(--ink-soft); }
.page-hero h1 { font-size: clamp(2.4rem, 5vw, 3.6rem); }
.page-hero p { color: var(--ink-soft); max-width: 540px; margin-top: 16px; }

/* ---------- Fan club : accordéon "Pourquoi Amber Jadah Fan Club" ---------- */
.heart-badge { width: 62px; height: 62px; border-radius: 50%; background: var(--ink); color: var(--accent); display: grid; place-items: center; }
.heart-badge svg { width: 28px; height: 28px; }
.acc { display: flex; flex-direction: column; }
.acc-item { border-bottom: 1px solid var(--line); }
.acc-q { width: 100%; background: none; border: none; cursor: pointer; font-family: inherit; display: flex; align-items: center; gap: 16px; padding: 20px 0; text-align: left; }
.acc-num { color: var(--accent); font-weight: 800; font-size: .82rem; flex: none; }
.acc-t { flex: 1; font-weight: 700; font-size: 1.02rem; color: var(--ink); }
.acc-ico { color: var(--muted); transition: transform .3s; line-height: 0; }
.acc-ico svg { width: 18px; height: 18px; }
.acc-item.open .acc-ico { transform: rotate(180deg); color: var(--accent); }
.acc-a { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease); }
.acc-a p { color: var(--ink-soft); font-size: .93rem; padding: 0 0 22px 38px; }

/* ---------- Fan club : "Pourquoi soutenir Ambre" ---------- */
.reasons { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.reason-card { position: relative; background: #fff; border-radius: 20px; padding: 30px; overflow: hidden; box-shadow: 0 18px 40px -26px rgba(60,20,15,.35); transition: transform .4s var(--ease), box-shadow .4s var(--ease); }
.reason-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.reason-ico { width: 50px; height: 50px; border-radius: 14px; background: var(--accent); color: #fff; display: grid; place-items: center; margin-bottom: 22px; }
.reason-ico svg { width: 24px; height: 24px; }
.reason-num { position: absolute; top: 22px; right: 28px; font-size: 3rem; font-weight: 800; color: var(--pink-soft); line-height: 1; letter-spacing: -.04em; }
.reason-card h4 { font-size: 1.2rem; margin-bottom: 10px; }
.reason-card p { color: var(--ink-soft); font-size: .92rem; }

/* ---------- Timeline "Parcours Star Academy" ---------- */
.journey-icon { width: 52px; height: 52px; border-radius: 50%; background: var(--accent); color: #fff; display: inline-grid; place-items: center; margin-bottom: 18px; }
.journey-icon svg { width: 24px; height: 24px; }
.timeline { position: relative; max-width: 980px; margin: 0 auto; padding: 10px 0; }
.timeline::before { content: ''; position: absolute; left: 50%; top: 0; bottom: 0; width: 2px; background: linear-gradient(var(--accent), rgba(252,51,20,.2)); transform: translateX(-50%); }
.tl-item { position: relative; display: flex; margin-bottom: 34px; }
.tl-item.left { justify-content: flex-start; }
.tl-item.right { justify-content: flex-end; }
.tl-card { width: 45%; background: var(--dark-2); border: 1px solid rgba(255,255,255,.08); border-radius: 16px; padding: 26px; transition: border-color .3s, transform .35s var(--ease); }
.tl-card:hover { border-color: rgba(252,51,20,.5); transform: translateY(-3px); }
.tl-item.left .tl-card { text-align: right; }
.tl-card h4 { color: #fff; font-size: 1.18rem; margin-bottom: 8px; }
.tl-date { color: var(--accent-2); font-size: .82rem; font-weight: 700; display: block; margin-bottom: 12px; }
.tl-card p { color: #a9a29d; font-size: .9rem; }
.tl-dot { position: absolute; left: 50%; top: 30px; width: 13px; height: 13px; border-radius: 50%; background: var(--accent); transform: translateX(-50%); box-shadow: 0 0 0 5px var(--dark); }

/* ---------- Discographie intro ---------- */
.disco-intro { max-width: 620px; margin: 0 auto 36px; text-align: center; }
.disco-star { color: var(--accent); display: inline-block; margin-bottom: 18px; }
.disco-star svg { width: 38px; height: 38px; }
.disco-intro p { color: var(--ink-soft); margin-bottom: 16px; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
    .nav-links, .nav-right .btn { display: none; }
    .nav-toggle { display: block; }
    .nav.open .nav-links {
        display: flex; flex-direction: column; position: absolute; top: 78px; left: 0; right: 0;
        background: var(--cream); padding: 24px; gap: 20px; border-bottom: 1px solid var(--line); box-shadow: var(--shadow);
    }
    .hero .wrap, .split, .community, .newsletter .wrap, .join .wrap, .faq, .bio, .chat-shell { grid-template-columns: 1fr; }
    .split.reverse .split-media { order: 0; }
    .hero-visual { max-width: 380px; }
    .journey { grid-template-columns: 1fr; }
    .journey-card.tall { grid-row: auto; }
    .diamond { margin: 10px auto 0; }
    .chat-side { order: 2; }
    .section { padding: 64px 0; }
    .reasons { grid-template-columns: 1fr; }
    .timeline::before { left: 18px; }
    .tl-item, .tl-item.left, .tl-item.right { justify-content: flex-start; }
    .tl-card { width: 100%; margin-left: 44px; }
    .tl-item.left .tl-card { text-align: left; }
    .tl-dot { left: 18px; }
}
@media (max-width: 540px) {
    .wrap { padding-inline: 18px; }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { width: 100%; justify-content: center; }
    .stats { flex-direction: column; }
    .flash-stack { left: 18px; right: 18px; max-width: none; }
}

/* ---------- Merci Ambre (mur de messages) ---------- */
.merci {
    background:
        radial-gradient(900px 420px at 12% -8%, #ffe0d5 0%, rgba(255, 224, 213, 0) 60%),
        linear-gradient(180deg, #fff 0%, var(--pink-soft) 100%);
}
.merci .inline-heart { width: 28px; height: 28px; color: var(--accent); vertical-align: -5px; }

.merci-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 350px;
    gap: 40px;
    align-items: start;
}

/* Mur en maçonnerie */
.tributes-grid { columns: 2 240px; column-gap: 22px; }
.tribute-card {
    break-inside: avoid;
    background: #fff;
    border-radius: 20px;
    padding: 26px 26px 20px;
    margin: 0 0 22px;
    box-shadow: 0 12px 34px -24px rgba(40, 20, 15, .55);
    position: relative;
    transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.tribute-card:hover { transform: translateY(-5px); box-shadow: 0 26px 50px -28px rgba(40, 20, 15, .5); }
.tribute-quote {
    position: absolute; top: 4px; left: 20px;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 66px; line-height: 1; color: var(--accent); opacity: .16;
    pointer-events: none;
}
.tribute-card blockquote {
    margin: 16px 0 18px; font-size: 1.02rem; line-height: 1.62; color: var(--ink);
}
.tribute-card figcaption {
    display: flex; align-items: center; gap: 12px;
    border-top: 1px solid var(--line); padding-top: 15px;
}
.tribute-who { flex: 1; min-width: 0; }
.tribute-who b { display: block; font-size: .9rem; }
.tribute-who small { color: var(--muted); font-size: .78rem; }
.tribute-heart { width: 17px; height: 17px; color: var(--accent); opacity: .55; flex-shrink: 0; }
.tribute-avatar {
    width: 42px; height: 42px; border-radius: 50%; flex-shrink: 0;
    display: grid; place-items: center; color: #fff; font-weight: 700; font-size: .82rem;
    box-shadow: 0 6px 14px -6px rgba(0, 0, 0, .35);
}

/* État vide */
.tributes-empty {
    text-align: center; padding: 48px 20px; color: var(--muted);
    background: rgba(255, 255, 255, .55); border: 1px dashed #eab8a9; border-radius: 20px;
}
.tributes-empty-heart { width: 40px; height: 40px; color: var(--accent); opacity: .4; margin-bottom: 12px; }
.tributes-empty p { line-height: 1.5; }

/* Carte formulaire (sombre, mise en avant, collante) */
.merci-cta { position: sticky; top: 96px; }
.merci-card {
    background: linear-gradient(165deg, #24211f 0%, var(--dark) 100%);
    color: #fff;
    border-radius: var(--radius);
    padding: 30px 28px;
    box-shadow: 0 30px 60px -30px rgba(40, 20, 15, .7);
    position: relative;
    overflow: hidden;
}
.merci-card::before {
    content: ''; position: absolute; top: -60px; right: -60px;
    width: 180px; height: 180px; border-radius: 50%;
    background: radial-gradient(circle, rgba(252, 51, 20, .45), transparent 70%);
}
.merci-card-badge {
    position: relative;
    display: inline-grid; place-items: center;
    width: 48px; height: 48px; border-radius: 14px;
    background: var(--accent); margin-bottom: 16px;
}
.merci-card-badge svg { width: 24px; height: 24px; color: #fff; }
.merci-card h3 { position: relative; font-size: 1.4rem; margin-bottom: 6px; }
.merci-card > p { position: relative; color: #c9c2bd; font-size: .92rem; margin-bottom: 20px; }
.merci-card form { position: relative; }
.merci-card .field { margin-bottom: 14px; }
.merci-card .field input,
.merci-card .field textarea {
    width: 100%; padding: 13px 15px;
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 12px; color: #fff; font: inherit;
    transition: border-color .2s, background .2s;
}
.merci-card .field input::placeholder,
.merci-card .field textarea::placeholder { color: #9c948f; }
.merci-card .field input:focus,
.merci-card .field textarea:focus {
    outline: none; border-color: var(--accent); background: rgba(255, 255, 255, .1);
}
.merci-card .field textarea { resize: vertical; min-height: 96px; }
.merci-card .btn-block { margin-top: 4px; }
.merci-note { display: block; text-align: center; margin-top: 12px; font-size: .76rem; color: #948c87; }

@media (max-width: 900px) {
    .merci-layout { grid-template-columns: 1fr; gap: 30px; }
    .merci-cta { position: static; order: -1; max-width: 480px; margin: 0 auto; width: 100%; }
    .tributes-grid { columns: 2 220px; }
}
@media (max-width: 560px) { .tributes-grid { columns: 1; } }
