/* =========================================================
   VARIABLES
   ========================================================= */

:root {
    --black: #090b0c;
    --black-soft: #111314;
    --navy: #071018;
    --ivory: #f2eadf;
    --white: #ffffff;
    --gold: #d3a85d;
    --gold-light: #e2bd78;
    --line-light: rgba(242, 234, 223, 0.35);
}

/* =========================================================
   BASE
   ========================================================= */

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    width: 100%;
    overflow-x: hidden;
}

body {
    margin: 0;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;

    background: var(--black);
    color: var(--ivory);

    font-family: Georgia, "Times New Roman", serif;
}

main,
section,
header,
footer,
div,
nav {
    min-width: 0;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

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

.site-header {
    min-height: 86px;
    padding: 0 5%;

    display: grid;

    grid-template-columns:
        minmax(250px, 1fr)
        auto
        minmax(120px, 1fr);

    align-items: center;
    gap: 40px;

    background: var(--navy);

    border-bottom:
        1px solid rgba(255, 255, 255, 0.08);
}

.logo {
    display: flex;
    flex-direction: column;

    width: max-content;

    text-align: center;
    text-decoration: none;

    color: var(--ivory);
}

.logo-name {
    font-size: 22px;
    letter-spacing: 5px;
    white-space: nowrap;
}

.logo-fiction {
    margin-top: 5px;

    color: var(--gold);

    font-size: 10px;
    letter-spacing: 7px;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 42px;
}

.main-nav a,
.languages a {
    position: relative;

    color: var(--ivory);

    text-decoration: none;
    font-size: 15px;

    white-space: nowrap;
}

.main-nav a::after,
.languages a.active::after {
    content: "";

    position: absolute;

    left: 0;
    right: 0;
    bottom: -10px;

    height: 2px;

    background: var(--gold);

    transform: scaleX(0);

    transition: transform 0.25s ease;
}

.main-nav a:hover::after,
.main-nav a.active::after,
.languages a.active::after {
    transform: scaleX(1);
}

.languages {
    justify-self: end;

    display: flex;
    align-items: center;

    gap: 12px;
}

.languages .active {
    color: var(--gold);
}

/* =========================================================
   HERO
   ========================================================= */

.hero {
    min-height: 610px;

    display: flex;
    align-items: center;

    padding: 70px 6%;

    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.48) 0%,
            rgba(0, 0, 0, 0.20) 48%,
            rgba(0, 0, 0, 0.05) 100%
        ),
        url("../assets/images/accueil/hero-reunion.png");

    background-size: cover;
    background-position: center;
}

.hero-content {
    width: 100%;
    max-width: 620px;
}

.hero h1 {
    margin: 0;

    color: var(--white);

    font-size: clamp(42px, 5vw, 70px);
    font-weight: 400;
    line-height: 0.98;
    letter-spacing: 2px;
}

.gold-line {
    width: 90px;
    height: 2px;

    margin: 30px 0;

    background: var(--gold);
}

.hero p {
    margin: 0 0 48px;

    color: var(--ivory);

    font-size: clamp(18px, 1.7vw, 24px);
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;

    gap: 22px;
}

/* =========================================================
   BOUTONS
   ========================================================= */

.button {
    display: inline-block;

    padding: 17px 24px;

    border: 1px solid var(--gold);

    color: var(--white);

    text-decoration: none;
    text-transform: uppercase;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;

    transition:
        background 0.2s ease,
        color 0.2s ease;
}

.button-gold {
    background: var(--gold);
    color: #111111;
}

.button-gold:hover {
    background: var(--gold-light);
}

.button-outline {
    background: transparent;
}

.button-outline:hover {
    background: var(--gold);
    color: #111111;
}

/* =========================================================
   ACCUEIL — TOME 1
   ========================================================= */

.home-book {
    position: relative;

    padding: 60px 4%;

    background:
        linear-gradient(
            rgba(5, 7, 7, 0.80),
            rgba(5, 7, 7, 0.88)
        ),
        url("../assets/images/accueil/texture-basalte.jpg");

    background-size: cover;
    background-position: center;

    border-top:
        1px solid rgba(211, 168, 93, 0.25);

    border-bottom:
        1px solid rgba(255, 255, 255, 0.15);
}

.home-book-inner {
    width: min(1320px, 100%);

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        295px
        minmax(0, 1fr)
        230px;

    gap: 40px;

    align-items: center;
}

.home-book-cover {
    display: flex;

    justify-content: center;
    align-items: center;

    min-width: 0;
}

.home-book-cover img {
    width: 100%;
    max-width: 295px;

    height: auto;

    object-fit: contain;
}

.home-book-info {
    min-width: 0;
}

.eyebrow {
    display: block;

    margin-bottom: 9px;

    color: var(--gold);

    font-size: 16px;
    letter-spacing: 1px;
}

.home-book-info h2 {
    margin: 0 0 18px;

    color: var(--ivory);

    font-size: clamp(31px, 3vw, 40px);
    font-weight: 400;
    line-height: 1.05;
}

.home-book-description {
    margin: 0 0 25px;

    max-width: 540px;

    color: var(--ivory);

    font-size: 17px;
    line-height: 1.5;
}

/* =========================================================
   ACHAT
   ========================================================= */

.home-buy {
    margin-top: 30px;

    padding-top: 20px;

    border-top:
        1px solid rgba(242, 234, 223, 0.25);

    display: grid;

    grid-template-columns:
        145px
        minmax(0, 1fr);

    gap: 20px;

    align-items: start;
}

.buy-format {
    min-width: 0;
}

.buy-format-title {
    display: block;

    margin-bottom: 10px;

    color: var(--gold);

    font-family: Arial, Helvetica, sans-serif;

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 1.5px;
}

.ebook-format {
    min-width: 0;

    padding-left: 20px;

    border-left:
        1px solid rgba(242, 234, 223, 0.35);
}

.ebook-shops {
    display: grid;

    grid-template-columns:
        120px
        100px
        125px
        105px;

    gap: 8px;

    align-items: stretch;
}

/* =========================================================
   PLATEFORMES D'ACHAT
   ========================================================= */

.platform-link {
    min-width: 0;
    height: 58px;

    padding: 6px 8px;

    display: flex;

    align-items: center;
    justify-content: center;

    gap: 7px;

    overflow: hidden;

    border:
        1px solid rgba(211, 168, 93, 0.72);

    background:
        rgba(0, 0, 0, 0.18);

    text-decoration: none;

    transition:
        border-color 0.2s ease,
        background 0.2s ease,
        transform 0.2s ease;
}

.platform-link:hover {
    border-color: var(--gold);

    background:
        rgba(211, 168, 93, 0.08);

    transform:
        translateY(-1px);
}

.platform-logo {
    display: block;

    width: auto;
    height: auto;

    max-width: 100%;

    object-fit: contain;
}

/* AMAZON BROCHÉ */

.amazon-link {
    width: 140px;

    padding: 7px;
}

.amazon-link .amazon-logo {
    width: 122px;
    max-height: 40px;

    padding: 5px 8px;

    background: #ffffff;

    border-radius: 2px;
}

/* AMAZON EBOOK / KINDLE */

.amazon-ebook-link {
    width: 120px;

    flex-direction: column;

    gap: 3px;

    padding-top: 5px;
    padding-bottom: 5px;
}

.amazon-ebook-link .amazon-logo {
    width: 100px;
    max-height: 29px;

    padding: 3px 6px;

    background: #ffffff;

    border-radius: 2px;
}

.platform-subtitle {
    color: var(--ivory);

    font-family: Arial, Helvetica, sans-serif;

    font-size: 9px;

    line-height: 1;

    letter-spacing: 0.6px;
}

/* KOBO */

.kobo-link {
    padding: 7px;
}

.platform-identity {
    display: flex;

    align-items: center;
    justify-content: center;
}

.platform-identity-light {
    width: 100%;
    height: 42px;

    padding: 6px 8px;

    background: #ffffff;

    border-radius: 2px;
}

.kobo-logo {
    width: 105px;

    max-width: 100%;
    max-height: 34px;

    padding: 0;

    background: transparent;

    object-fit: contain;
}

/* APPLE BOOKS */

.apple-link {
    min-width: 0;

    gap: 8px;
}

.apple-logo {
    flex: 0 0 30px;

    width: 30px;
    height: 30px;
}

.platform-name {
    color: var(--ivory);

    font-family: Arial, Helvetica, sans-serif;

    font-size: 10px;

    line-height: 1.15;

    white-space: nowrap;
}

/* GOOGLE PLAY BOOKS */

.google-link {
    padding: 7px 10px;

    gap: 9px;
}

.google-play-icon {
    flex: 0 0 29px;

    width: 29px;
    height: 29px;

    background-color: #ffffff;

    -webkit-mask-image:
        url("../assets/icons/plateformes/google-play.svg");

    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    -webkit-mask-size: contain;

    mask-image:
        url("../assets/icons/plateformes/google-play.svg");

    mask-repeat: no-repeat;
    mask-position: center;
    mask-size: contain;
}

.google-name {
    display: block;

    color: var(--ivory);

    font-family: Arial, Helvetica, sans-serif;

    font-size: 9px;
    font-weight: 600;

    line-height: 1.2;

    text-align: left;

    white-space: nowrap;
}

/* =========================================================
   CITATION
   ========================================================= */

.home-quote {
    margin: 0;

    padding:
        30px 0
        30px 30px;

    border-left:
        1px solid rgba(242, 234, 223, 0.70);

    color: var(--ivory);

    font-size: 22px;
    font-style: italic;

    line-height: 1.5;
}

.home-quote::after {
    content: "";

    display: block;

    width: 55px;
    height: 2px;

    margin-top: 25px;

    background: var(--gold);
}

/* =========================================================
   ACCUEIL — À VENIR
   ========================================================= */

.coming-soon {
    padding: 68px 6%;

    background: var(--black-soft);

    border-bottom:
        1px solid rgba(255, 255, 255, 0.12);
}

.coming-soon-inner {
    width: min(1180px, 100%);

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        190px
        repeat(4, minmax(0, 1fr));

    align-items: stretch;
}

.coming-heading {
    padding:
        20px 35px
        20px 0;

    display: flex;

    flex-direction: column;
    justify-content: center;
}

.coming-heading h2 {
    margin: 0;

    color: var(--ivory);

    font-size: 29px;
    font-weight: 400;

    letter-spacing: 1px;
}

.section-gold-line {
    width: 50px;
    height: 2px;

    margin-top: 17px;

    background: var(--gold);
}

.coming-item {
    min-height: 165px;

    padding: 18px 24px;

    display: flex;

    flex-direction: column;

    justify-content: center;
    align-items: center;

    text-align: center;

    border-left:
        1px solid rgba(242, 234, 223, 0.20);
}

.coming-icon {
    width: 40px;
    height: 40px;

    margin-bottom: 19px;

    background-color: var(--gold);

    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    -webkit-mask-size: contain;

    mask-repeat: no-repeat;
    mask-position: center;
    mask-size: contain;
}

.icon-tome-2 {
    -webkit-mask-image:
        url("../assets/icons/avenir/tome-2.svg");

    mask-image:
        url("../assets/icons/avenir/tome-2.svg");
}

.icon-traductions {
    -webkit-mask-image:
        url("../assets/icons/avenir/traductions.svg");

    mask-image:
        url("../assets/icons/avenir/traductions.svg");
}

.icon-saga {
    -webkit-mask-image:
        url("../assets/icons/avenir/nouvelle-saga.svg");

    mask-image:
        url("../assets/icons/avenir/nouvelle-saga.svg");
}

.icon-adaptations {
    -webkit-mask-image:
        url("../assets/icons/avenir/adaptations.svg");

    mask-image:
        url("../assets/icons/avenir/adaptations.svg");
}

.coming-text h3 {
    min-height: 38px;

    margin: 0 0 8px;

    color: var(--ivory);

    font-family: Arial, Helvetica, sans-serif;

    font-size: 13px;
    font-weight: 700;

    line-height: 1.4;

    letter-spacing: 1px;
}

.coming-text p {
    margin: 0;

    color: var(--gold-light);

    font-size: 15px;
    font-style: italic;
}

/* =========================================================
   ACCUEIL — SUIVRE L'ACTUALITÉ
   ========================================================= */

.home-social {
    padding: 48px 6%;

    background:
        linear-gradient(
            rgba(5, 7, 7, 0.76),
            rgba(5, 7, 7, 0.84)
        ),
        url("../assets/images/accueil/texture-basalte.jpg");

    background-size: cover;
    background-position: center;

    border-bottom:
        1px solid rgba(211, 168, 93, 0.20);
}

.home-social-inner {
    width: min(1180px, 100%);

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        250px
        minmax(0, 1fr);

    gap: 34px;

    align-items: center;
}

.social-heading h2 {
    margin: 0;

    color: var(--ivory);

    font-size: 25px;
    font-weight: 400;

    line-height: 1.2;

    letter-spacing: 0.7px;
}

.social-links {
    display: flex;

    align-items: center;
    justify-content: flex-start;

    flex-wrap: wrap;

    gap: 48px;
}

.social-link {
    display: flex;

    flex-direction: column;

    align-items: center;
    justify-content: center;

    gap: 10px;

    min-width: 82px;

    color: var(--ivory);

    text-decoration: none;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 11px;

    text-transform: uppercase;

    letter-spacing: 0.8px;

    transition:
        color 0.2s ease,
        transform 0.2s ease;
}

.social-icon {
    width: 35px;
    height: 35px;

    object-fit: contain;

    filter:
        invert(76%)
        sepia(35%)
        saturate(720%)
        hue-rotate(358deg)
        brightness(88%)
        contrast(87%);

    transition:
        transform 0.2s ease,
        opacity 0.2s ease;
}

.social-link:hover {
    color: var(--gold);

    transform:
        translateY(-2px);
}

.social-link:hover .social-icon {
    transform:
        scale(1.07);

    opacity: 0.85;
}

/* =========================================================
   FOOTER
   ========================================================= */

.site-footer {
    padding: 32px 6%;

    background: var(--navy);

    border-top:
        1px solid rgba(255, 255, 255, 0.06);
}

.footer-inner {
    width: min(1180px, 100%);

    margin: 0 auto;

    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 30px;
}

.footer-brand {
    display: flex;

    flex-direction: column;

    width: max-content;
    max-width: 100%;

    text-align: center;
}

.footer-name {
    color: var(--ivory);

    font-size: 15px;

    letter-spacing: 3px;
}

.footer-fiction {
    margin-top: 5px;

    color: var(--gold);

    font-size: 9px;

    letter-spacing: 5px;
}

.footer-copyright {
    margin: 0;

    color:
        rgba(242, 234, 223, 0.68);

    font-family: Arial, Helvetica, sans-serif;

    font-size: 12px;
}

/* =========================================================
   PETITS DESKTOPS / GRANDES TABLETTES
   901 — 1400 px
   ========================================================= */

@media (max-width: 1400px) {

    .site-header {
        grid-template-columns:
            minmax(260px, 1fr)
            auto
            minmax(90px, 1fr);

        gap: 38px;
    }

    .main-nav {
        gap: 30px;
    }

    .home-book {
        padding-left: 5%;
        padding-right: 5%;
    }

    .home-book-inner {
        grid-template-columns:
            minmax(190px, 245px)
            minmax(0, 1fr)
            minmax(175px, 205px);

        gap: 30px;
    }

    .home-book-cover img {
        max-width: 245px;
    }

    .home-book-info h2 {
        font-size: clamp(29px, 2.8vw, 38px);
    }

    .home-buy {
        grid-template-columns:
            145px
            minmax(0, 1fr);
    }

    .ebook-shops {
        grid-template-columns:
            repeat(2, minmax(105px, 1fr));
    }

    .platform-link,
    .amazon-ebook-link,
    .apple-link {
        width: 100%;
    }
}

/* =========================================================
   TABLETTE
   601 — 900 px
   ========================================================= */

@media (max-width: 900px) {

    /* SÉCURITÉ ANTI-DÉBORDEMENT */

    html,
    body {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }

    /* HEADER */

    .site-header {
        min-height: 0;

        padding: 20px 5%;

        display: grid;

        grid-template-columns:
            minmax(0, 1fr)
            auto;

        gap:
            24px
            20px;
    }

    .logo {
        max-width: 100%;
    }

    .logo-name {
        font-size: 19px;
        letter-spacing: 4px;
    }

    .logo-fiction {
        font-size: 9px;
        letter-spacing: 6px;
    }

    .languages {
        justify-self: end;
    }

    .main-nav {
        grid-column: 1 / -1;
        grid-row: 2;

        width: 100%;

        justify-content: center;

        flex-wrap: wrap;

        gap:
            16px
            34px;
    }

    .main-nav a {
        font-size: 14px;
    }

    /* HERO */

    .hero {
        min-height: 540px;

        padding: 55px 6%;

        background-position: 54% center;
    }

    .hero-content {
        max-width: 570px;
    }

    .hero h1 {
        font-size: clamp(42px, 7.4vw, 58px);

        line-height: 1;

        overflow-wrap: normal;
        word-break: normal;
    }

    .hero p {
        margin-bottom: 36px;

        font-size: 19px;
    }

    /* TOME 1 */

    .home-book {
        padding: 52px 6%;
    }

    .home-book-inner {
        width: 100%;

        grid-template-columns:
            minmax(170px, 220px)
            minmax(0, 1fr);

        gap:
            38px
            34px;

        align-items: start;
    }

    .home-book-cover img {
        width: 100%;
        max-width: 220px;
    }

    .home-book-info {
        width: 100%;
    }

    .home-book-info h2 {
        font-size: clamp(28px, 4.5vw, 34px);

        overflow-wrap: break-word;
    }

    .home-book-description {
        font-size: 16px;
    }

    .home-buy {
        width: 100%;

        grid-template-columns: 1fr;

        gap: 18px;
    }

    .buy-paper .platform-link {
        width: 145px;
        max-width: 100%;
    }

    .ebook-format {
        padding:
            18px 0 0;

        border-left: 0;

        border-top:
            1px solid rgba(242, 234, 223, 0.25);
    }

    .ebook-shops {
        width: 100%;

        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 9px;
    }

    .platform-link,
    .amazon-link,
    .amazon-ebook-link,
    .apple-link,
    .kobo-link,
    .google-link {
        width: 100%;
        max-width: 100%;
        min-width: 0;
    }

    /* CITATION MASQUÉE SUR TABLETTE ET MOBILE */

    .home-quote {
        display: none;
    }

    /* À VENIR */

    .coming-soon {
        padding: 52px 6%;
    }

    .coming-soon-inner {
        width: 100%;

        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .coming-heading {
        grid-column: 1 / -1;

        padding:
            0 0 28px;
    }

    .coming-heading h2 {
        font-size: 27px;
    }

    .coming-item {
        min-width: 0;
        min-height: 165px;

        padding:
            24px 18px;

        border-left: 0;

        border-top:
            1px solid rgba(242, 234, 223, 0.18);
    }

    .coming-item:nth-of-type(odd) {
        border-left:
            1px solid rgba(242, 234, 223, 0.18);
    }

    /* RÉSEAUX */

    .home-social {
        padding: 44px 6%;
    }

    .home-social-inner {
        width: 100%;

        grid-template-columns:
            minmax(180px, 220px)
            minmax(0, 1fr);

        gap: 28px;
    }

    .social-links {
        gap: 32px;
    }

    /* FOOTER */

    .footer-inner {
        width: 100%;
    }
}

/* =========================================================
   MOBILE
   <= 600 px
   ========================================================= */

@media (max-width: 600px) {

    /* HEADER */

    .site-header {
        padding:
            18px 5%;

        display: grid;

        grid-template-columns:
            minmax(0, 1fr)
            auto;

        gap:
            22px
            12px;
    }

    .logo {
        justify-self: start;
    }

    .logo-name {
        font-size: 16px;

        letter-spacing: 2.8px;
    }

    .logo-fiction {
        margin-top: 4px;

        font-size: 8px;

        letter-spacing: 4.5px;
    }

    .languages {
        gap: 8px;
    }

    .languages a {
        font-size: 13px;
    }

    .main-nav {
        grid-column: 1 / -1;

        width: 100%;

        justify-content: space-between;

        flex-wrap: nowrap;

        gap: 8px;
    }

    .main-nav a {
        font-size: 12px;
    }

    /* HERO */

    .hero {
        min-height: 510px;

        align-items: flex-end;

        padding:
            45px 6%;

        background-position:
            58% center;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero h1 {
        font-size:
            clamp(32px, 10vw, 42px);

        line-height: 1.02;

        letter-spacing: 1px;
    }

    .gold-line {
        width: 65px;

        margin:
            23px 0;
    }

    .hero p {
        margin-bottom: 28px;

        font-size: 17px;

        line-height: 1.4;
    }

    .hero-buttons {
        width: 100%;

        flex-direction: column;

        align-items: stretch;

        gap: 12px;
    }

    .button {
        width: 100%;
        max-width: 290px;

        padding:
            15px 18px;

        text-align: center;

        font-size: 12px;
    }

    /* TOME 1 */

    .home-book {
        padding:
            38px 6%;
    }

    .home-book-inner {
        display: flex;

        flex-direction: column;

        align-items: stretch;

        gap: 24px;
    }

    .home-book-cover {
        width: 100%;
    }

    .home-book-cover img {
        width: 52%;

        max-width: 185px;

        margin: 0 auto;
    }

    .home-book-info {
        width: 100%;

        text-align: center;
    }

    .eyebrow {
        font-size: 14px;
    }

    .home-book-info h2 {
        margin-bottom: 14px;

        font-size:
            clamp(27px, 8vw, 32px);

        line-height: 1.08;
    }

    .home-book-description {
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 20px;

        font-size: 16px;
    }

    .home-book-info > .button {
        width: auto;
        max-width: 100%;

        padding:
            15px 20px;
    }

    /* ACHATS */

    .home-buy {
        width: 100%;

        margin-top: 26px;

        gap: 14px;

        text-align: left;
    }

    .buy-paper,
    .ebook-format {
        padding-top: 16px;
    }

    .buy-paper .platform-link {
        width: 145px;
        max-width: 100%;
    }

    .ebook-shops {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 8px;
    }

    .platform-link {
        width: 100%;
        min-width: 0;

        min-height: 58px;
        height: 58px;

        padding:
            6px;
    }

    .amazon-ebook-link .amazon-logo {
        width: 92px;
    }

    .platform-identity-light {
        padding:
            6px;
    }

    .kobo-logo {
        width: 90px;
    }

    .apple-logo {
        flex-basis: 27px;

        width: 27px;
        height: 27px;
    }

    .google-play-icon {
        flex-basis: 26px;

        width: 26px;
        height: 26px;
    }

    .platform-name {
        font-size: 9px;
    }

    .google-name {
        font-size: 8px;
    }

    /* CITATION */

    .home-quote {
        display: none;
    }

    /* À VENIR */

    .coming-soon {
        padding:
            42px 6%;
    }

    .coming-soon-inner {
        display: block;

        width: 100%;
    }

    .coming-heading {
        padding:
            0 0 20px;
    }

    .coming-heading h2 {
        font-size: 25px;
    }

    .coming-item {
        min-height: 0;

        padding:
            24px 4px;

        display: grid;

        grid-template-columns:
            48px
            minmax(0, 1fr);

        gap: 18px;

        align-items: center;

        text-align: left;

        border-left:
            0 !important;

        border-top:
            1px solid rgba(242, 234, 223, 0.18);
    }

    .coming-icon {
        width: 35px;
        height: 35px;

        margin: 0 auto;
    }

    .coming-text {
        min-width: 0;
    }

    .coming-text h3 {
        min-height: 0;

        margin-bottom: 5px;

        font-size: 12px;
    }

    .coming-text p {
        font-size: 14px;
    }

    /* RÉSEAUX */

    .home-social {
        padding:
            40px 6%;
    }

    .home-social-inner {
        display: block;

        width: 100%;
    }

    .social-heading {
        margin-bottom: 28px;
    }

    .social-heading h2 {
        font-size: 23px;
    }

    .social-links {
        justify-content: flex-start;

        flex-wrap: wrap;

        gap: 34px;
    }

    .social-link {
        min-width: 68px;

        font-size: 10px;
    }

    .social-icon {
        width: 31px;
        height: 31px;
    }

    /* FOOTER */

    .site-footer {
        padding:
            28px 6%;
    }

    .footer-inner {
        width: 100%;

        flex-direction: column;

        justify-content: center;

        gap: 18px;

        text-align: center;
    }

    .footer-brand {
        width: auto;
    }

    .footer-name {
        font-size: 14px;
    }

    .footer-copyright {
        font-size: 11px;
    }
}

/* =========================================================
   PETITS MOBILES
   <= 420 px
   ========================================================= */

@media (max-width: 420px) {

    .site-header {
        padding:
            16px 4.5%;
    }

    .logo-name {
        font-size: 14px;

        letter-spacing: 2px;
    }

    .logo-fiction {
        font-size: 7px;

        letter-spacing: 4px;
    }

    .main-nav {
        justify-content: center;

        flex-wrap: wrap;

        column-gap: 20px;
        row-gap: 14px;
    }

    .main-nav a {
        font-size: 12px;
    }

    .hero {
        min-height: 490px;
    }

    .hero h1 {
        font-size:
            clamp(30px, 9.5vw, 36px);
    }

    .hero p {
        font-size: 16px;
    }

    .home-book-cover img {
        width: 60%;

        max-width: 175px;
    }

    .ebook-shops {
        grid-template-columns: 1fr;
    }

    .platform-link {
        min-height: 60px;
    }

    .social-links {
        gap: 28px;
    }
}
/* =========================================================
   PAGE LIVRES — DESKTOP
   ========================================================= */


/* ---------------------------------------------------------
   STRUCTURE GÉNÉRALE
   --------------------------------------------------------- */

.books-page {
    background: var(--black);
}


/* ---------------------------------------------------------
   INTRODUCTION DE LA SÉRIE
   --------------------------------------------------------- */

.books-intro {
    padding: 70px 6% 62px;

    background:
        linear-gradient(
            rgba(5, 7, 7, 0.82),
            rgba(5, 7, 7, 0.90)
        ),
        url("../assets/images/accueil/texture-basalte.jpg");

    background-size: cover;
    background-position: center;

    border-bottom:
        1px solid rgba(211, 168, 93, 0.25);
}

.books-intro-inner {
    width: min(1180px, 100%);
    margin: 0 auto;
}

.books-kicker {
    margin: 0 0 14px;

    color: var(--gold);

    font-family: Arial, Helvetica, sans-serif;
    font-size: 13px;
    font-weight: 700;

    letter-spacing: 2px;
}

.books-intro h1 {
    margin: 0;

    max-width: 900px;

    color: var(--ivory);

    font-size: clamp(46px, 5vw, 68px);
    font-weight: 400;

    line-height: 1.02;
    letter-spacing: 1px;
}

.books-intro .gold-line {
    margin: 27px 0 22px;
}

.books-intro-text {
    margin: 0;

    color: var(--ivory);

    font-size: 22px;
    line-height: 1.5;
}


/* ---------------------------------------------------------
   BLOCS LIVRES
   --------------------------------------------------------- */

.book-detail {
    padding: 90px 6%;
}

.book-detail-tome1 {
    background: var(--black-soft);

    border-bottom:
        1px solid rgba(255, 255, 255, 0.12);
}

.book-detail-inner {
    width: min(1120px, 100%);
    margin: 0 auto;

    display: grid;

    grid-template-columns:
        400px
        minmax(0, 1fr);

    gap: 65px;

    align-items: center;
}


/* ---------------------------------------------------------
   MOCKUPS
   --------------------------------------------------------- */

.book-detail-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.book-detail-visual img {
    width: 100%;
    max-width: 380px;
    height: auto;

    object-fit: contain;
}


/* ---------------------------------------------------------
   TEXTE DU LIVRE
   --------------------------------------------------------- */

.book-detail-content {
    min-width: 0;
}

.book-number {
    display: block;

    margin-bottom: 11px;

    color: var(--gold);

    font-family: Arial, Helvetica, sans-serif;

    font-size: 20px;
    font-weight: 700;

    letter-spacing: 2px;
}

.book-detail-content h2 {
    margin: 0;

    color: var(--ivory);

    font-size: clamp(32px, 3vw, 42px);
    font-weight: 400;

    line-height: 1.05;
}

.book-title-line {
    width: 65px;
    height: 2px;

    margin: 24px 0 30px;

    background: var(--gold);
}


/* ---------------------------------------------------------
   QUATRIÈME DE COUVERTURE
   --------------------------------------------------------- */

.book-back-cover {
    max-width: 610px;

    color: var(--ivory);

    font-size: 16px;
    line-height: 1.65;
}

.book-back-cover p {
    margin: 0 0 17px;
}

.book-back-cover p:last-child {
    margin-bottom: 0;
}

.book-back-cover em {
    font-style: italic;
}


/* ---------------------------------------------------------
   TRAILER
   --------------------------------------------------------- */

.book-trailer {
    width: min(920px, 100%);

    margin: 55px auto 0;
}

.book-trailer-heading,
.books-buy-heading {
    margin-bottom: 25px;

    text-align: center;
}

.section-eyebrow {
    display: block;

    margin-bottom: 7px;

    color: var(--gold);

    font-family: Arial, Helvetica, sans-serif;

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 2px;
}

.book-trailer-heading h3,
.books-buy-heading h3 {
    margin: 0;

    color: var(--ivory);

    font-size: 30px;
    font-weight: 400;
    line-height: 1.15;
    letter-spacing: 1px;
}

.book-video-wrapper {
    width: 100%;

    border:
        1px solid rgba(211, 168, 93, 0.45);

    background: #000000;
}

.book-video-wrapper video {
    display: block;

    width: 100%;
    aspect-ratio: 16 / 9;

    background: #000000;

    object-fit: contain;
}


/* ---------------------------------------------------------
   ACHETER LE TOME 1
   --------------------------------------------------------- */

.books-buy-section {
    width: min(870px, 100%);

    margin: 65px auto 0;

    padding-top: 42px;

    border-top:
        1px solid rgba(242, 234, 223, 0.20);
}

.books-buy-formats {
    display: grid;

    grid-template-columns:
        190px
        minmax(0, 1fr);

    gap: 45px;

    align-items: start;
}

.books-buy-format {
    min-width: 0;
}

.format-title {
    display: block;

    margin-bottom: 12px;

    color: var(--gold);

    font-family: Arial, Helvetica, sans-serif;

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 1.5px;
}

.books-buy-format + .books-buy-format {
    padding-left: 45px;

    border-left:
        1px solid rgba(242, 234, 223, 0.25);
}

.books-ebook-shops {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 9px;
}


/* Les cartes utilisent les mêmes styles que sur l'accueil */

.books-buy-section .platform-link {
    width: 100%;
}

.books-buy-section .amazon-link {
    width: 145px;
}


/* ---------------------------------------------------------
   TOME 2
   --------------------------------------------------------- */

.book-detail-tome2 {
    background:
        linear-gradient(
            rgba(5, 7, 7, 0.82),
            rgba(5, 7, 7, 0.90)
        ),
        url("../assets/images/accueil/texture-basalte.jpg");

    background-size: cover;
    background-position: center;
}

.book-detail-inner-reverse {
    grid-template-columns:
        minmax(0, 1fr)
        360px;
}

.book-detail-visual-tome2 img {
    max-width: 320px;
}

.book-status {
    margin: 0 0 20px;

    color: var(--gold-light);

    font-size: 18px;
    font-style: italic;
}

.book-tome2-text {
    max-width: 520px;

    margin: 0;

    color: var(--ivory);

    font-size: 17px;
    line-height: 1.6;
}
/* =========================================================
   PAGE LIVRES — TABLETTE
   ========================================================= */

@media (max-width: 900px) {

    /* ---------- TOME 1 ---------- */

    .books-page .book-detail-tome1 .book-detail-inner {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .books-page .book-detail-tome1 .book-detail-visual {
        justify-content: center;
    }

    .books-page .book-detail-tome1 .book-detail-visual img {
        max-width: 340px;
    }

    .books-page .book-detail-tome1 .book-detail-content {
        width: min(650px, 100%);
        margin: 0 auto;
    }


    /* ---------- ACHAT ---------- */

    .books-page .books-buy-formats {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .books-page .books-buy-format + .books-buy-format {
        padding-left: 0;
        border-left: 0;
    }

    .books-page .books-ebook-shops {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    .books-page .books-buy-section .amazon-link {
        width: 180px;
    }


    /* ---------- TOME 2 ---------- */

    .books-page .book-detail-inner-reverse {
        grid-template-columns: minmax(0, 1fr) 320px;
        gap: 45px;
    }

    .books-page .book-detail-visual-tome2 img {
        max-width: 300px;
    }
}
/* =========================================================
   PAGE LIVRES — MOBILE
   ========================================================= */

@media (max-width: 600px) {

    /* ---------- INTRO ---------- */

    .books-page .books-intro h1 {
        font-size: 42px;
        line-height: 1.05;
    }

    .books-page .books-intro-text {
        font-size: 20px;
    }


    /* ---------- TOME 1 ---------- */

    .books-page .book-detail-tome1 .book-detail-visual img {
        max-width: 300px;
    }

    .books-page .book-detail-content h2 {
        font-size: 34px;
    }


    /* ---------- BANDE-ANNONCE ---------- */

    .books-page .book-trailer-heading h3,
    .books-page .books-buy-heading h3 {
        font-size: 25px;
    }


    /* ---------- ACHAT ---------- */

    .books-page .books-buy-section {
        margin-top: 50px;
        padding-top: 35px;
    }


    /* ---------- TOME 2 ---------- */

    .books-page .book-detail-inner-reverse {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .books-page .book-detail-tome2 .book-detail-content {
        width: 100%;
    }

    .books-page .book-detail-visual-tome2 {
        justify-content: center;
    }

    .books-page .book-detail-visual-tome2 img {
        max-width: 300px;
    }
}
/* =========================================================
   PAGE LIVRES — PETIT MOBILE
   ========================================================= */

@media (max-width: 420px) {

    .books-page .book-detail-content h2 {
        font-size: 30px;
        line-height: 1.08;
    }

    .books-page .book-trailer-heading h3,
    .books-page .books-buy-heading h3 {
        font-size: 22px;
        line-height: 1.15;
    }

    .books-page .book-detail-tome1 .book-detail-visual img,
    .books-page .book-detail-visual-tome2 img {
        max-width: 280px;
    }
}
/* =========================================================
   PAGE UNIVERS — DESKTOP
   INTRODUCTION + LIRE MAHAVEL
   ========================================================= */

.univers-page {
    background: var(--black);
}


/* ---------- INTRODUCTION ---------- */

.univers-intro {
    padding: 70px 6% 62px;

    background:
        linear-gradient(
            rgba(5, 7, 7, 0.82),
            rgba(5, 7, 7, 0.90)
        ),
        url("../assets/images/accueil/texture-basalte.jpg");

    background-size: cover;
    background-position: center;

    border-bottom: 1px solid rgba(211, 168, 93, 0.25);
}

.univers-intro-inner {
    width: min(1180px, 100%);
    margin: 0 auto;
}

.univers-intro h1 {
    margin: 0;

    color: var(--ivory);

    font-size: clamp(46px, 5vw, 68px);
    font-weight: 400;
    line-height: 1.02;
    letter-spacing: 1px;
}

.univers-intro .gold-line {
    margin: 27px 0 22px;
}

.univers-intro p {
    margin: 0;

    color: var(--ivory);

    font-size: 22px;
    line-height: 1.5;
}


/* ---------- SECTION ---------- */

.univers-section {
    padding: 85px 6% 100px;
}

.univers-read {
    background: var(--black-soft);
}

.univers-section-inner {
    width: min(1180px, 100%);
    margin: 0 auto;
}


/* ---------- TITRE DE SECTION ---------- */

.univers-section-heading {
    display: flex;
    align-items: flex-start;
    gap: 22px;

    margin-bottom: 48px;
}

.univers-section-number {
    padding-top: 7px;

    color: var(--gold);

    font-family: Arial, Helvetica, sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
}

.univers-section-heading h2 {
    margin: 0;

    color: var(--ivory);

    font-size: clamp(34px, 3.5vw, 46px);
    font-weight: 400;
    line-height: 1.05;
}

.univers-section-heading p {
    margin: 9px 0 0;

    color: var(--gold-light);

    font-size: 17px;
    font-style: italic;
}


/* ---------- GRILLE DES HISTOIRES ---------- */

.story-grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 28px;
}


/* ---------- CARTE ---------- */

.story-card {
    display: flex;
    flex-direction: column;

    min-width: 0;

    overflow: hidden;

    background: rgba(12, 15, 15, 0.88);

    border:
        1px solid rgba(211, 168, 93, 0.28);
}


/* ---------- IMAGE ---------- */

.story-image {
    position: relative;

    width: 100%;
    aspect-ratio: 16 / 10;

    overflow: hidden;

    background: #080a0a;
}

.story-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
}


/* ---------- CONTENU ---------- */

.story-content {
    display: flex;
    flex-direction: column;
    flex: 1;

    padding: 25px 25px 27px;
}

.story-status {
    display: block;

    margin-bottom: 10px;

    color: var(--gold);

    font-family: Arial, Helvetica, sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.story-content h3 {
    margin: 0 0 17px;

    color: var(--ivory);

    font-size: 24px;
    font-weight: 400;
    line-height: 1.12;
}

.story-content p {
    margin: 0 0 24px;

    color: var(--ivory);

    font-size: 15px;
    line-height: 1.62;
}


/* ---------- LIENS ---------- */

.story-link {
    align-self: flex-start;

    margin-top: auto;
    padding-bottom: 5px;

    color: var(--gold-light);

    font-family: Arial, Helvetica, sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-decoration: none;
    text-transform: uppercase;

    border-bottom:
        1px solid rgba(211, 168, 93, 0.65);
}

.story-link:hover {
    color: var(--ivory);

    border-bottom-color: var(--ivory);
}


/* ---------- HISTOIRES EN PRÉPARATION ---------- */

.story-card-upcoming .story-image img {
    opacity: 0.58;
}

.story-card-upcoming .story-content {
    opacity: 0.78;
}


/* ---------- SÉRIE AUDIO ---------- */

.story-card-audio {
    border-color:
        rgba(211, 168, 93, 0.55);
}
/* =========================================================
   AJUSTEMENTS — LIRE MAHAVEL
   ========================================================= */

.univers-page .story-content p {
    font-size: 14px;
    line-height: 1.55;
}

.univers-page .story-card-upcoming .story-content {
    min-height: 230px;
}

.univers-page .story-card-upcoming .story-content p {
    max-width: 280px;
}
/* =========================================================
   LIRE MAHAVEL — CARTES EN PRÉPARATION COMPACTES
   ========================================================= */

.univers-page .story-card-upcoming {
    align-self: start;
}

.univers-page .story-card-upcoming .story-content {
    min-height: 0;
    padding-bottom: 28px;
}

.univers-page .story-card-upcoming .story-content p {
    margin-bottom: 0;
}
/* =========================================================
   PAGE UNIVERS — 02 ÉCOUTER MAHAVEL — DESKTOP
   ========================================================= */

.univers-page .univers-listen {
    background: #090b0b;
    border-top: 1px solid rgba(211, 168, 93, 0.18);
}


/* =========================================================
   PLAYLISTS + SÉRIE AUDIO
   ========================================================= */

.univers-page .listen-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
    margin-bottom: 75px;
}

.univers-page .listen-feature-card {
    display: flex;
    flex-direction: column;
    min-width: 0;
    overflow: hidden;

    background: rgba(12, 15, 15, 0.88);
    border: 1px solid rgba(211, 168, 93, 0.28);
}


/* ---------- Images ---------- */

.univers-page .listen-feature-image {
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #080a0a;
}

.univers-page .listen-feature-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* ---------- Contenu ---------- */

.univers-page .listen-feature-content {
    display: flex;
    flex-direction: column;
    flex: 1;

    padding: 25px 25px 27px;
}

.univers-page .listen-label {
    display: block;

    margin-bottom: 10px;

    color: var(--gold);

    font-family: Arial, Helvetica, sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.univers-page .listen-feature-content h3 {
    margin: 0 0 15px;

    color: var(--ivory);

    font-size: 24px;
    font-weight: 400;
    line-height: 1.12;
}

.univers-page .listen-feature-content p {
    margin: 0 0 24px;

    color: var(--ivory);

    font-size: 14px;
    line-height: 1.55;
}


/* ---------- Lien Spotify ---------- */

.univers-page .listen-link {
    align-self: flex-start;

    margin-top: auto;
    padding-bottom: 5px;

    color: var(--gold-light);

    font-family: Arial, Helvetica, sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-decoration: none;
    text-transform: uppercase;

    border-bottom: 1px solid rgba(211, 168, 93, 0.65);
}

.univers-page .listen-link:hover {
    color: var(--ivory);
    border-bottom-color: var(--ivory);
}


/* =========================================================
   SONS DE MAHAVEL
   ========================================================= */

.univers-page .mahavel-sounds {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);

    min-height: 520px;

    overflow: hidden;

    background: #0c0f0f;
    border: 1px solid rgba(211, 168, 93, 0.32);
}


/* ---------- Grande image gauche ---------- */

.univers-page .mahavel-sounds-image {
    min-width: 0;
    min-height: 520px;
    overflow: hidden;
}

.univers-page .mahavel-sounds-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
}


/* ---------- Partie droite ---------- */

.univers-page .mahavel-sounds-content {
    display: flex;
    flex-direction: column;

    padding: 50px 55px;
}

.univers-page .mahavel-sounds-heading {
    padding-bottom: 25px;
    margin-bottom: 5px;

    border-bottom: 1px solid rgba(211, 168, 93, 0.22);
}

.univers-page .mahavel-sounds-heading h3 {
    margin: 0;

    color: var(--ivory);

    font-size: 35px;
    font-weight: 400;
    line-height: 1.1;
}


/* =========================================================
   LISTE AUDIO
   ========================================================= */

.univers-page .sound-list {
    display: flex;
    flex-direction: column;
}

.univers-page .sound-item {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr);
    align-items: center;
    gap: 18px;

    min-height: 61px;

    border-bottom: 1px solid rgba(211, 168, 93, 0.14);
}

.univers-page .sound-item:last-child {
    border-bottom: 0;
}

.univers-page .sound-item audio {
    display: none;
}

.univers-page .sound-item > span {
    color: var(--ivory);

    font-size: 16px;
    line-height: 1.3;
}


/* ---------- Bouton lecture ---------- */

.univers-page .sound-play {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 34px;
    height: 34px;
    padding: 0;

    color: var(--gold);

    background: transparent;

    border: 1px solid rgba(211, 168, 93, 0.75);
    border-radius: 50%;

    font-size: 11px;
    line-height: 1;

    cursor: pointer;

    transition:
        background-color 0.2s ease,
        color 0.2s ease,
        border-color 0.2s ease;
}

.univers-page .sound-play:hover {
    color: #090b0b;
    background: var(--gold);
    border-color: var(--gold);
}
/* =========================================================
   ICÔNE SPOTIFY — ÉCOUTER MAHAVEL
   ========================================================= */

.univers-page .listen-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
}

.univers-page .spotify-link-icon {
    display: block;
    width: 19px;
    height: 19px;
    flex: 0 0 19px;
}
/* =========================================================
   ICÔNE SPOTIFY — CORRECTION
   ========================================================= */

.univers-page .spotify-link-icon {
    display: block;

    width: 22px;
    height: 22px;
    flex: 0 0 22px;

    background-color: #1ED760;

    -webkit-mask-image: url("../assets/icons/plateformes/spotify.svg");
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    -webkit-mask-size: contain;

    mask-image: url("../assets/icons/plateformes/spotify.svg");
    mask-repeat: no-repeat;
    mask-position: center;
    mask-size: contain;
}
/* =========================================================
   SPOTIFY — ICÔNE VERTE
   ========================================================= */

.univers-page .spotify-link-icon {
    display: block;
    width: 23px;
    height: 23px;
    flex: 0 0 23px;

    /* SVG noir → vert Spotify */
    filter:
        invert(67%)
        sepia(92%)
        saturate(676%)
        hue-rotate(87deg)
        brightness(91%)
        contrast(92%);
}

.univers-page .listen-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
}
/* =========================================================
   PAGE UNIVERS — 03 REGARDER MAHAVEL — DESKTOP
   ========================================================= */

.univers-page .univers-watch {
    background: #0f1111;
    border-top: 1px solid rgba(211, 168, 93, 0.18);
}


/* =========================================================
   CARROUSEL
   ========================================================= */

.univers-page .mahavel-carousel {
    position: relative;
    width: 100%;
}

.univers-page .carousel-viewport {
    width: 100%;
    overflow: hidden;
}

.univers-page .carousel-track {
    display: flex;
    gap: 22px;

    transition: transform 0.45s ease;
}


/* ---------- Images ---------- */

.univers-page .carousel-slide {
    position: relative;

    flex: 0 0 calc((100% - 44px) / 3);

    height: 390px;
    padding: 0;

    overflow: hidden;

    background: #080a0a;

    border: 1px solid rgba(211, 168, 93, 0.32);

    cursor: pointer;
}

.univers-page .carousel-slide img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform 0.4s ease,
        opacity 0.4s ease;
}

.univers-page .carousel-slide:hover img {
    transform: scale(1.025);
    opacity: 0.92;
}


/* =========================================================
   FLÈCHES
   ========================================================= */

.univers-page .carousel-arrow {
    position: absolute;
    top: 50%;
    z-index: 5;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 46px;
    height: 46px;
    padding: 0;

    color: var(--ivory);

    background: rgba(7, 9, 9, 0.88);

    border: 1px solid rgba(211, 168, 93, 0.7);
    border-radius: 50%;

    font-size: 24px;
    line-height: 1;

    cursor: pointer;

    transform: translateY(-50%);

    transition:
        color 0.2s ease,
        background-color 0.2s ease,
        border-color 0.2s ease;
}

.univers-page .carousel-arrow:hover {
    color: #090b0b;
    background: var(--gold);
    border-color: var(--gold);
}

.univers-page .carousel-arrow-left {
    left: -23px;
}

.univers-page .carousel-arrow-right {
    right: -23px;
}


/* =========================================================
   INDICATION SOUS LE CARROUSEL
   ========================================================= */

.univers-page .carousel-hint {
    margin: 18px 0 0;

    color: rgba(242, 236, 222, 0.62);

    font-family: Arial, Helvetica, sans-serif;
    font-size: 11px;
    letter-spacing: 0.8px;
    text-align: center;
}


/* =========================================================
   LIGHTBOX — IMAGE AGRANDIE
   ========================================================= */

.univers-page .mahavel-lightbox {
    position: fixed;
    inset: 0;
    z-index: 1000;

    display: none;
    align-items: center;
    justify-content: center;

    padding: 55px;

    background: rgba(2, 3, 3, 0.94);
}

.univers-page .mahavel-lightbox.is-open {
    display: flex;
}

.univers-page .lightbox-image {
    display: block;

    max-width: min(1200px, 92vw);
    max-height: 88vh;

    width: auto;
    height: auto;

    object-fit: contain;

    border: 1px solid rgba(211, 168, 93, 0.38);
}


/* ---------- Fermer ---------- */

.univers-page .lightbox-close {
    position: absolute;
    top: 25px;
    right: 35px;

    width: 45px;
    height: 45px;
    padding: 0;

    color: var(--ivory);

    background: transparent;

    border: 0;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 38px;
    font-weight: 300;
    line-height: 1;

    cursor: pointer;
}

.univers-page .lightbox-close:hover {
    color: var(--gold);
}
/* =========================================================
   PAGE UNIVERS — 04 LANK-SEKRÈ — DESKTOP
   ========================================================= */

.univers-page .univers-secret {
    background: #090b0b;
    border-top: 1px solid rgba(211, 168, 93, 0.18);
}


/* =========================================================
   BLOC LANK-SEKRÈ
   ========================================================= */

.univers-page .lank-sekre {
    width: min(1000px, 100%);
    margin: 0 auto;
}


/* =========================================================
   IMAGE AVANT / APRÈS
   ========================================================= */

.univers-page .lank-sekre-visual {
    position: relative;
    width: 100%;
    overflow: hidden;

    background: #050606;

    border: 1px solid rgba(211, 168, 93, 0.32);
}

.univers-page .lank-sekre-image {
    display: block;
    width: 100%;
    height: auto;
}

.univers-page .lank-sekre-base {
    position: relative;
    z-index: 1;
}

.univers-page .lank-sekre-revealed {
    position: absolute;
    inset: 0;
    z-index: 2;

    width: 100%;
    height: 100%;

    object-fit: cover;

    opacity: 0;

    transition: opacity 2.2s ease;
}


/* État révélé — activé ensuite par JavaScript */

.univers-page .lank-sekre.is-revealed .lank-sekre-revealed {
    opacity: 1;
}


/* =========================================================
   COMMANDE SOUS L'IMAGE
   ========================================================= */

.univers-page .lank-sekre-command {
    display: flex;
    flex-direction: column;
    align-items: center;

    padding-top: 30px;

    text-align: center;
}

.univers-page .lank-sekre-command h3 {
    margin: 0 0 20px;

    color: var(--ivory);

    font-size: 21px;
    font-weight: 400;
    letter-spacing: 1.4px;
}


/* =========================================================
   BOUTON
   ========================================================= */

.univers-page .lank-sekre-button {
    padding: 13px 22px;

    color: var(--gold-light);

    background: transparent;

    border: 1px solid rgba(211, 168, 93, 0.7);

    font-family: Arial, Helvetica, sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.4px;
    text-transform: uppercase;

    cursor: pointer;

    transition:
        color 0.25s ease,
        background-color 0.25s ease,
        border-color 0.25s ease;
}

.univers-page .lank-sekre-button:hover {
    color: #090b0b;

    background: var(--gold);
    border-color: var(--gold);
}
/* LANK-SEKRÈ — RÉVÉLATION AU SURVOL */

.univers-page .lank-sekre-visual {
    cursor: default;
}

.univers-page .lank-sekre-visual:hover .lank-sekre-revealed {
    opacity: 1;
}
/* =========================================================
   PAGE UNIVERS — RESPONSIVE
   TABLETTE
   ========================================================= */

@media (max-width: 900px) {

    /* INTRO */

    .univers-page .univers-intro {
        padding: 58px 5% 52px;
    }

    .univers-page .univers-intro p {
        font-size: 19px;
    }


    /* SECTIONS */

    .univers-page .univers-section {
        padding: 70px 5% 80px;
    }

    .univers-page .univers-section-heading {
        margin-bottom: 38px;
    }


    /* 01 — LIRE */

    .univers-page .story-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 24px;
    }


    /* 02 — ÉCOUTER */

    .univers-page .listen-feature-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 24px;
        margin-bottom: 55px;
    }

    .univers-page .mahavel-sounds {
        grid-template-columns: 1fr;
        min-height: 0;
    }

    .univers-page .mahavel-sounds-image {
        min-height: 0;
        aspect-ratio: 16 / 9;
    }

    .univers-page .mahavel-sounds-content {
        padding: 40px;
    }


    /* 03 — REGARDER */

    .univers-page .carousel-slide {
        flex: 0 0 calc((100% - 22px) / 2);
        height: 360px;
    }

    .univers-page .carousel-arrow-left {
        left: 12px;
    }

    .univers-page .carousel-arrow-right {
        right: 12px;
    }


    /* 04 — LANK-SEKRÈ */

    .univers-page .lank-sekre {
        width: 100%;
    }

}


/* =========================================================
   PAGE UNIVERS — RESPONSIVE
   MOBILE
   ========================================================= */

@media (max-width: 600px) {

    /* INTRO */

    .univers-page .univers-intro {
        padding: 46px 6% 42px;
    }

    .univers-page .univers-intro h1 {
        font-size: 40px;
    }

    .univers-page .univers-intro .gold-line {
        margin: 20px 0 17px;
    }

    .univers-page .univers-intro p {
        font-size: 17px;
        line-height: 1.45;
    }


    /* SECTIONS */

    .univers-page .univers-section {
        padding: 58px 6% 65px;
    }

    .univers-page .univers-section-heading {
        gap: 14px;
        margin-bottom: 32px;
    }

    .univers-page .univers-section-number {
        padding-top: 5px;
        font-size: 11px;
    }

    .univers-page .univers-section-heading h2 {
        font-size: 32px;
    }

    .univers-page .univers-section-heading p {
        margin-top: 7px;
        font-size: 15px;
        line-height: 1.4;
    }


    /* 01 — LIRE */

    .univers-page .story-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .univers-page .story-content {
        padding: 23px 22px 25px;
    }

    .univers-page .story-content h3 {
        font-size: 22px;
    }


    /* 02 — ÉCOUTER */

    .univers-page .listen-feature-grid {
        grid-template-columns: 1fr;
        gap: 22px;
        margin-bottom: 45px;
    }

    .univers-page .listen-feature-content {
        padding: 23px 22px 25px;
    }

    .univers-page .listen-feature-content h3 {
        font-size: 22px;
    }

    .univers-page .mahavel-sounds-image {
        aspect-ratio: 4 / 3;
    }

    .univers-page .mahavel-sounds-content {
        padding: 30px 22px;
    }

    .univers-page .mahavel-sounds-heading h3 {
        font-size: 29px;
    }

    .univers-page .sound-item {
        grid-template-columns: 40px minmax(0, 1fr);
        gap: 13px;
        min-height: 59px;
    }

    .univers-page .sound-item > span {
        font-size: 15px;
    }


    /* 03 — REGARDER */

    .univers-page .carousel-slide {
        flex: 0 0 100%;
        height: 430px;
    }

    .univers-page .carousel-arrow {
        width: 42px;
        height: 42px;
        font-size: 21px;
    }

    .univers-page .carousel-arrow-left {
        left: 10px;
    }

    .univers-page .carousel-arrow-right {
        right: 10px;
    }

    .univers-page .carousel-hint {
        margin-top: 15px;
        line-height: 1.4;
    }


    /* LIGHTBOX */

    .univers-page .mahavel-lightbox {
        padding: 20px;
    }

    .univers-page .lightbox-image {
        max-width: 94vw;
        max-height: 82vh;
    }

    .univers-page .lightbox-close {
        top: 14px;
        right: 16px;
    }


    /* 04 — LANK-SEKRÈ */

    .univers-page .lank-sekre-visual {
        width: 100%;
    }

}


/* =========================================================
   PAGE UNIVERS — PETITS MOBILES
   ========================================================= */

@media (max-width: 420px) {

    /* INTRO */

    .univers-page .univers-intro {
        padding: 38px 5% 36px;
    }

    .univers-page .univers-intro h1 {
        font-size: 34px;
    }

    .univers-page .univers-intro p {
        font-size: 16px;
    }


    /* SECTIONS */

    .univers-page .univers-section {
        padding: 50px 5% 56px;
    }

    .univers-page .univers-section-heading {
        gap: 11px;
        margin-bottom: 27px;
    }

    .univers-page .univers-section-heading h2 {
        font-size: 27px;
    }

    .univers-page .univers-section-heading p {
        font-size: 14px;
    }


    /* CARTES */

    .univers-page .story-content,
    .univers-page .listen-feature-content {
        padding: 20px 18px 22px;
    }

    .univers-page .story-content h3,
    .univers-page .listen-feature-content h3 {
        font-size: 20px;
    }

    .univers-page .story-content p,
    .univers-page .listen-feature-content p {
        font-size: 13.5px;
    }


    /* SONS */

    .univers-page .mahavel-sounds-content {
        padding: 26px 18px;
    }

    .univers-page .mahavel-sounds-heading h3 {
        font-size: 25px;
    }

    .univers-page .sound-item {
        grid-template-columns: 36px minmax(0, 1fr);
        gap: 11px;
    }

    .univers-page .sound-play {
        width: 32px;
        height: 32px;
    }

    .univers-page .sound-item > span {
        font-size: 14px;
    }


    /* CARROUSEL */

    .univers-page .carousel-slide {
        height: 360px;
    }

    .univers-page .carousel-arrow {
        width: 38px;
        height: 38px;
        font-size: 19px;
    }


    /* LANK-SEKRÈ */

    .univers-page .lank-sekre-visual {
        border-color: rgba(211, 168, 93, 0.25);
    }

}
/* LANK-SEKRÈ — RÉVÉLATION AU TOUCHER */

.univers-page .lank-sekre-visual.touch-revealed .lank-sekre-revealed {
    opacity: 1;
}
/* PETITS MOBILES — CARTES PLUS COMPACTES */

@media (max-width: 420px) {

    .univers-page .story-image,
    .univers-page .listen-feature-image {
        aspect-ratio: 16 / 9;
    }

}
/* LIEN SPOTIFY — CONTENU PAS ENCORE PUBLIÉ */

.univers-page .listen-link-disabled {
    cursor: default;
}
/* =========================================================
   PAGES NOUVELLES — LECTURE
   ========================================================= */

.nouvelle-page {
    background: #090b0b;
    color: var(--ivory);
}


/* =========================================================
   EN-TÊTE DE LA NOUVELLE
   ========================================================= */

.nouvelle-page .nouvelle-hero {
    padding: 68px 6% 64px;

    background:
        linear-gradient(
            rgba(5, 7, 7, 0.82),
            rgba(5, 7, 7, 0.94)
        ),
        url("../assets/images/accueil/texture-basalte.jpg");

    background-size: cover;
    background-position: center;

    border-bottom: 1px solid rgba(211, 168, 93, 0.22);
}

.nouvelle-page .nouvelle-hero-inner {
    width: min(820px, 100%);
    margin: 0 auto;
}


/* Retour vers Univers */

.nouvelle-page .nouvelle-back {
    display: inline-block;

    margin-bottom: 45px;
    padding-bottom: 4px;

    color: var(--gold-light);

    font-family: Arial, Helvetica, sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-decoration: none;
    text-transform: uppercase;

    border-bottom: 1px solid rgba(211, 168, 93, 0.5);
}

.nouvelle-page .nouvelle-back:hover {
    color: var(--ivory);
    border-bottom-color: var(--ivory);
}


/* Mention NOUVELLE */

.nouvelle-page .nouvelle-label {
    display: block;

    margin-bottom: 13px;

    color: var(--gold);

    font-family: Arial, Helvetica, sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}


/* Titre */

.nouvelle-page .nouvelle-hero h1 {
    max-width: 760px;

    margin: 0;

    color: var(--ivory);

    font-size: clamp(42px, 5vw, 64px);
    font-weight: 400;
    line-height: 1.04;
    letter-spacing: 0.5px;
}

.nouvelle-page .nouvelle-hero .gold-line {
    margin: 27px 0 19px;
}

.nouvelle-page .nouvelle-author {
    margin: 0;

    color: rgba(242, 236, 222, 0.72);

    font-family: Arial, Helvetica, sans-serif;
    font-size: 13px;
    letter-spacing: 1px;
}


/* =========================================================
   COLONNE DE LECTURE
   ========================================================= */

.nouvelle-page .nouvelle-reading {
    width: min(720px, calc(100% - 48px));

    margin: 0 auto;

    padding: 85px 0 110px;
}


/* =========================================================
   TEXTE COURANT
   ========================================================= */

.nouvelle-page .transmission p {
    margin: 0 0 1.05em;

    color: #eee9de;

    font-size: 18px;
    line-height: 1.78;
}


/* =========================================================
   TRANSMISSIONS
   ========================================================= */

.nouvelle-page .transmission {
    margin-bottom: 105px;
}

.nouvelle-page .transmission:last-of-type {
    margin-bottom: 85px;
}


/* Titre TRANSMISSION */

.nouvelle-page .transmission h2 {
    margin: 0 0 48px;
    padding-bottom: 17px;

    color: var(--gold);

    font-family: Arial, Helvetica, sans-serif;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: 2.2px;

    border-bottom: 1px solid rgba(211, 168, 93, 0.35);
}


/* =========================================================
   PERSONNAGES
   ========================================================= */

.nouvelle-page .transmission .speaker {
    margin-top: 2em;
    margin-bottom: 0.45em;

    color: var(--gold-light);

    font-family: Arial, Helvetica, sans-serif;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 1.7px;
}

.nouvelle-page .transmission h2 + .speaker {
    margin-top: 0;
}

.nouvelle-page .speaker-note {
    font-weight: 400;
    letter-spacing: 0.7px;
}


/* =========================================================
   DIDASCALIES
   ========================================================= */

.nouvelle-page .transmission .stage-direction {
    margin-top: 1.55em;
    margin-bottom: 1.55em;
    padding-left: 22px;

    color: rgba(238, 233, 222, 0.64);

    font-size: 16px;
    line-height: 1.65;
    font-style: italic;

    border-left: 1px solid rgba(211, 168, 93, 0.35);
}


/* =========================================================
   TRADUCTIONS DU CRÉOLE
   ========================================================= */

.nouvelle-page .translation {
    color: rgba(238, 233, 222, 0.68);
    font-size: 0.92em;
    font-style: italic;
}


/* =========================================================
   SILENCES
   ========================================================= */

.nouvelle-page .transmission .silence {
    margin-top: 1.5em;
    margin-bottom: 1.5em;

    color: var(--gold-light);

    letter-spacing: 4px;
}


/* =========================================================
   FIN DE TRANSMISSION
   ========================================================= */

.nouvelle-page .transmission .transmission-end {
    margin-top: 3em;

    color: rgba(238, 233, 222, 0.52);

    font-family: Arial, Helvetica, sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.4px;
    text-transform: uppercase;
}


/* =========================================================
   PASSAGE EN VERS
   ========================================================= */

.nouvelle-page .verse {
    margin: 42px 0;
    padding: 27px 0 27px 30px;

    border-left: 1px solid rgba(211, 168, 93, 0.55);
}

.nouvelle-page .verse p {
    margin-bottom: 1.15em;

    font-size: 18px;
    line-height: 1.8;
}

.nouvelle-page .verse p:last-child {
    margin-bottom: 0;
}


/* =========================================================
   FIN DE LA NOUVELLE
   ========================================================= */

.nouvelle-page .nouvelle-end {
    padding-top: 15px;

    text-align: center;
}

.nouvelle-page .nouvelle-end .gold-line {
    margin: 0 auto 30px;
}

.nouvelle-page .nouvelle-end > p {
    margin: 0 0 42px;

    color: var(--gold);

    font-family: Arial, Helvetica, sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
}

.nouvelle-page .nouvelle-back-bottom {
    margin-bottom: 0;
}


/* =========================================================
   PAGES NOUVELLES — TABLETTE
   ========================================================= */

@media (max-width: 900px) {

    .nouvelle-page .nouvelle-hero {
        padding: 58px 6% 55px;
    }

    .nouvelle-page .nouvelle-reading {
        width: min(680px, calc(100% - 60px));

        padding-top: 70px;
        padding-bottom: 90px;
    }

}


/* =========================================================
   PAGES NOUVELLES — MOBILE
   ========================================================= */

@media (max-width: 600px) {

    .nouvelle-page .nouvelle-hero {
        padding: 45px 6% 44px;
    }

    .nouvelle-page .nouvelle-back {
        margin-bottom: 35px;
    }

    .nouvelle-page .nouvelle-hero h1 {
        font-size: 38px;
        line-height: 1.07;
    }

    .nouvelle-page .nouvelle-hero .gold-line {
        margin: 22px 0 17px;
    }


    /* Lecture */

    .nouvelle-page .nouvelle-reading {
        width: calc(100% - 44px);

        padding-top: 58px;
        padding-bottom: 75px;
    }

    .nouvelle-page .transmission {
        margin-bottom: 78px;
    }

    .nouvelle-page .transmission h2 {
        margin-bottom: 36px;
    }

    .nouvelle-page .transmission p {
        font-size: 17px;
        line-height: 1.72;
    }


    /* Didascalies */

    .nouvelle-page .transmission .stage-direction {
        padding-left: 17px;

        font-size: 15px;
        line-height: 1.62;
    }


    /* Vers */

    .nouvelle-page .verse {
        margin: 35px 0;
        padding: 22px 0 22px 20px;
    }

    .nouvelle-page .verse p {
        font-size: 17px;
        line-height: 1.72;
    }

}


/* =========================================================
   PAGES NOUVELLES — PETITS MOBILES
   ========================================================= */

@media (max-width: 420px) {

    .nouvelle-page .nouvelle-hero {
        padding: 38px 5% 38px;
    }

    .nouvelle-page .nouvelle-hero h1 {
        font-size: 33px;
    }

    .nouvelle-page .nouvelle-label {
        font-size: 10px;
    }


    /* Lecture */

    .nouvelle-page .nouvelle-reading {
        width: calc(100% - 34px);

        padding-top: 50px;
        padding-bottom: 65px;
    }

    .nouvelle-page .transmission {
        margin-bottom: 68px;
    }

    .nouvelle-page .transmission h2 {
        margin-bottom: 31px;

        font-size: 11px;
        letter-spacing: 1.8px;
    }

    .nouvelle-page .transmission p {
        font-size: 16.5px;
        line-height: 1.68;
    }

    .nouvelle-page .transmission .speaker {
        font-size: 11px;
    }

    .nouvelle-page .transmission .stage-direction {
        font-size: 14.5px;
    }

    .nouvelle-page .verse p {
        font-size: 16.5px;
    }

}
/* =========================================================
   NOUVELLES — AJUSTEMENT CONFORT DE LECTURE DESKTOP
   ========================================================= */

@media (min-width: 901px) {

    .nouvelle-page .nouvelle-reading {
        width: min(680px, calc(100% - 48px));
    }

    .nouvelle-page .transmission p {
        margin-bottom: 0.78em;

        font-size: 17px;
        line-height: 1.68;
    }

    .nouvelle-page .transmission .stage-direction {
        margin-top: 1.3em;
        margin-bottom: 1.3em;

        font-size: 15.5px;
        line-height: 1.6;
    }

    .nouvelle-page .transmission .speaker {
        margin-top: 1.7em;
        margin-bottom: 0.35em;
    }

    .nouvelle-page .transmission h2 {
        margin-bottom: 40px;
    }

}
/* NOUVELLES — RYTHME DES PARAGRAPHES */

.nouvelle-page .transmission p {
    margin-bottom: 0.55em;
}

.nouvelle-page .transmission .speaker {
    margin-bottom: 0.3em;
}

.nouvelle-page .transmission .silence {
    margin-top: 0.9em;
    margin-bottom: 0.9em;
}

.nouvelle-page .transmission .stage-direction {
    margin-top: 1.15em;
    margin-bottom: 1.15em;
}
/* =========================================================
   NOUVELLES — PROSE NARRATIVE
   ========================================================= */

.nouvelle-page .nouvelle-prose > p {
    margin: 0 0 0.55em;

    color: #eee9de;

    font-size: 17px;
    line-height: 1.68;
}


/* Respiration supplémentaire autour de la fin */

.nouvelle-page .nouvelle-prose .nouvelle-end {
    margin-top: 90px;
}


/* MOBILE */

@media (max-width: 600px) {

    .nouvelle-page .nouvelle-prose > p {
        font-size: 17px;
        line-height: 1.72;
    }

    .nouvelle-page .nouvelle-prose .nouvelle-end {
        margin-top: 70px;
    }

}


/* PETITS MOBILES */

@media (max-width: 420px) {

    .nouvelle-page .nouvelle-prose > p {
        font-size: 16.5px;
        line-height: 1.68;
    }

}
/* MON AUTRE MOI — NARRATION / DIDASCALIES */

.nouvelle-page .nouvelle-prose > .stage-direction {
    margin-top: 1.15em;
    margin-bottom: 1.15em;
    padding-left: 22px;

    color: rgba(238, 233, 222, 0.64);

    font-size: 15.5px;
    line-height: 1.6;
    font-style: italic;

    border-left: 1px solid rgba(211, 168, 93, 0.35);
}

@media (max-width: 600px) {

    .nouvelle-page .nouvelle-prose > .stage-direction {
        padding-left: 17px;

        font-size: 15px;
        line-height: 1.62;
    }

}

@media (max-width: 420px) {

    .nouvelle-page .nouvelle-prose > .stage-direction {
        font-size: 14.5px;
    }

}
/* =========================================================
   PAGE À PROPOS
   ========================================================= */

.about-page {
    background: #090b0b;
    color: var(--ivory);
}


/* HERO */

.about-page .about-hero {
    padding: 75px 6% 85px;
    background:
        linear-gradient(rgba(5, 7, 7, .76), rgba(5, 7, 7, .92)),
        url("../assets/images/accueil/texture-basalte.jpg");
    background-size: cover;
    background-position: center;
    border-bottom: 1px solid rgba(211, 168, 93, .25);
}

.about-page .about-hero-inner {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
    align-items: center;
    gap: 75px;

    width: min(1180px, 100%);
    margin: 0 auto;
}

.about-page .about-portrait {
    position: relative;
    overflow: hidden;

    width: 100%;
    aspect-ratio: 4 / 5;

    background: #080a0a;
    border: 1px solid rgba(211, 168, 93, .32);
}

.about-page .about-portrait img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;
}

.about-page .about-kicker {
    display: block;

    margin-bottom: 17px;

    color: var(--gold);

    font-family: Arial, Helvetica, sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.2px;
}

.about-page .about-hero h1 {
    margin: 0;

    color: var(--ivory);

    font-size: clamp(50px, 6vw, 76px);
    font-weight: 400;
    line-height: .96;
    letter-spacing: 1px;
}

.about-page .about-hero .gold-line {
    margin: 31px 0 28px;
}

.about-page .about-statement {
    max-width: 610px;
    margin: 0;

    color: var(--ivory);

    font-size: 21px;
    line-height: 1.55;
}


/* SECTIONS */

.about-page .about-section {
    padding: 85px 6% 95px;
}

.about-page .about-biography {
    background: var(--black-soft);
}

.about-page .about-reunion {
    background: #090b0b;
    border-top: 1px solid rgba(211, 168, 93, .16);
}

.about-page .about-contact {
    background: var(--black-soft);
    border-top: 1px solid rgba(211, 168, 93, .18);
}

.about-page .about-section-inner {
    display: grid;
    grid-template-columns: minmax(220px, .55fr) minmax(0, 1.45fr);
    gap: 80px;

    width: min(1050px, 100%);
    margin: 0 auto;
}

.about-page .about-section-heading {
    display: flex;
    align-items: flex-start;
    gap: 18px;
}

.about-page .about-section-number {
    padding-top: 6px;

    color: var(--gold);

    font-family: Arial, Helvetica, sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
}

.about-page .about-section-heading h2 {
    margin: 0;

    color: var(--ivory);

    font-size: 31px;
    font-weight: 400;
    line-height: 1.08;
}

.about-page .about-text {
    max-width: 700px;
}

.about-page .about-text p {
    margin: 0 0 1.25em;

    color: rgba(242, 236, 222, .88);

    font-size: 17px;
    line-height: 1.72;
}

.about-page .about-text p:last-child {
    margin-bottom: 0;
}

.about-page .about-text strong {
    color: var(--ivory);
    font-weight: 600;
}

.about-page .about-text em {
    color: var(--ivory);
}

.about-page .about-text .about-lead {
    margin-bottom: 1.35em;

    color: var(--gold-light);

    font-size: 21px;
    line-height: 1.5;
    font-style: italic;
}


/* SOCIAL / CONTACT */

.about-page .about-links {
    display: flex;
    flex-direction: column;

    max-width: 700px;

    border-top: 1px solid rgba(211, 168, 93, .28);
}

.about-page .about-social-link {
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 20px 3px;

    color: var(--ivory);

    font-family: Arial, Helvetica, sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.7px;
    text-decoration: none;

    border-bottom: 1px solid rgba(211, 168, 93, .28);

    transition:
        color .2s ease,
        padding-left .2s ease;
}

.about-page .about-social-link span {
    color: var(--gold);
    font-size: 18px;
}

.about-page .about-social-link:hover {
    padding-left: 8px;
    color: var(--gold-light);
}


/* TABLETTE */

@media (max-width: 900px) {

    .about-page .about-hero {
        padding: 60px 5% 70px;
    }

    .about-page .about-hero-inner {
        gap: 45px;
    }

    .about-page .about-hero h1 {
        font-size: 54px;
    }

    .about-page .about-statement {
        font-size: 18px;
    }

    .about-page .about-section {
        padding: 70px 5% 78px;
    }

    .about-page .about-section-inner {
        grid-template-columns: 190px minmax(0, 1fr);
        gap: 45px;
    }

}


/* MOBILE */

@media (max-width: 600px) {

    .about-page .about-hero {
        padding: 45px 6% 55px;
    }

    .about-page .about-hero-inner {
        grid-template-columns: 1fr;
        gap: 38px;
    }

    .about-page .about-portrait {
        width: min(100%, 430px);
        aspect-ratio: 4 / 5;
    }

    .about-page .about-hero h1 {
        font-size: 44px;
    }

    .about-page .about-hero .gold-line {
        margin: 24px 0 21px;
    }

    .about-page .about-statement {
        font-size: 17px;
        line-height: 1.55;
    }

    .about-page .about-section {
        padding: 58px 6% 65px;
    }

    .about-page .about-section-inner {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-page .about-section-heading {
        gap: 14px;
    }

    .about-page .about-section-heading h2 {
        font-size: 28px;
    }

    .about-page .about-text p {
        font-size: 16px;
        line-height: 1.68;
    }

    .about-page .about-text .about-lead {
        font-size: 19px;
    }

}


/* PETIT MOBILE */

@media (max-width: 420px) {

    .about-page .about-hero {
        padding: 38px 5% 48px;
    }

    .about-page .about-hero-inner {
        gap: 32px;
    }

    .about-page .about-hero h1 {
        font-size: 38px;
    }

    .about-page .about-statement {
        font-size: 16px;
    }

    .about-page .about-section {
        padding: 50px 5% 56px;
    }

    .about-page .about-section-heading h2 {
        font-size: 25px;
    }

    .about-page .about-section-number {
        font-size: 11px;
    }

    .about-page .about-text p {
        font-size: 15.5px;
    }

    .about-page .about-text .about-lead {
        font-size: 18px;
    }

}
/* =========================================================
   À PROPOS — AJUSTEMENTS DESKTOP
   ========================================================= */

@media (min-width: 901px) {

    /* Sections plus compactes */
    .about-page .about-section {
        padding-top: 68px;
        padding-bottom: 72px;
    }

    /* Paragraphes légèrement rapprochés */
    .about-page .about-text p {
        margin-bottom: 1em;
    }

    /* Accroche La Réunion un peu moins dominante */
    .about-page .about-text .about-lead {
        margin-bottom: 1.15em;
        font-size: 19px;
    }

    /* Conclusion plus compacte */
    .about-page .about-contact {
        padding-top: 62px;
        padding-bottom: 65px;
    }

    .about-page .about-social-link {
        padding-top: 17px;
        padding-bottom: 17px;
    }

}
/* =========================================================
   À PROPOS — FINITIONS MOBILE
   ========================================================= */

@media (max-width: 600px) {

    /* Hero plus compact */
    .about-page .about-hero-inner {
        gap: 30px;
    }

    /* Portrait moins monumental sur téléphone */
    .about-page .about-portrait {
        width: 100%;
        aspect-ratio: 4 / 4.35;
    }

    .about-page .about-portrait img {
        object-position: center 42%;
    }

    /* Sections un peu plus resserrées */
    .about-page .about-section {
        padding-top: 52px;
        padding-bottom: 56px;
    }

    .about-page .about-section-inner {
        gap: 25px;
    }

    .about-page .about-text p {
        margin-bottom: 1.05em;
    }

    /* Accroche La Réunion */
    .about-page .about-text .about-lead {
        margin-bottom: 1.1em;
    }

    /* Dernière section plus courte */
    .about-page .about-contact {
        padding-top: 48px;
        padding-bottom: 50px;
    }

    .about-page .about-social-link {
        padding-top: 17px;
        padding-bottom: 17px;
    }

}
/* =========================================================
   INTERACTIVE READING NOTES
   English short stories
   ========================================================= */

.nouvelle-page .note-word {
    display: inline;
    padding: 0;
    margin: 0;
    border: 0;
    border-bottom: 1px dotted rgba(211, 168, 93, 0.8);
    background: transparent;
    color: inherit;
    font: inherit;
    line-height: inherit;
    text-align: inherit;
    cursor: pointer;
}

.nouvelle-page .note-word:hover,
.nouvelle-page .note-word:focus-visible {
    color: #D3A85D;
    border-bottom-color: #D3A85D;
}

.nouvelle-page .note-word:focus-visible {
    outline: none;
}

.nouvelle-page .note-phrase {
    text-decoration: none;
}

.reading-note-popup {
    position: fixed;
    z-index: 1000;

    width: min(330px, calc(100vw - 32px));

    padding: 22px 24px 20px;

    background: #111820;
    border: 1px solid rgba(211, 168, 93, 0.55);

    box-shadow:
        0 12px 35px rgba(0, 0, 0, 0.45);

    opacity: 0;
    visibility: hidden;
    transform: translateY(6px);

    transition:
        opacity 0.18s ease,
        transform 0.18s ease,
        visibility 0.18s ease;
}

.reading-note-popup.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.reading-note-title {
    display: block;

    padding-right: 25px;
    margin-bottom: 8px;

    color: #D3A85D;

    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.reading-note-text {
    margin: 0;

    color: rgba(238, 233, 222, 0.88);

    font-size: 14px;
    line-height: 1.55;
}

.reading-note-close {
    position: absolute;
    top: 8px;
    right: 11px;

    padding: 2px 5px;

    border: 0;
    background: transparent;

    color: rgba(238, 233, 222, 0.55);

    font-family: inherit;
    font-size: 20px;
    line-height: 1;

    cursor: pointer;
}

.reading-note-close:hover,
.reading-note-close:focus-visible {
    color: #D3A85D;
}

@media (max-width: 600px) {

    .reading-note-popup {
        width: calc(100vw - 32px);
        padding: 20px 22px 18px;
    }

    .reading-note-text {
        font-size: 13.5px;
    }
}
/* =========================================================
   LOGO — FOOTER
   ========================================================= */

.site-footer {
    text-align: center;
}

.site-footer .footer-logo {
    display: block;
    width: 125px;
    height: auto;
    margin: 0 auto 28px;
    opacity: 0.88;
}

@media (max-width: 600px) {
    .site-footer .footer-logo {
        width: 105px;
        margin-bottom: 22px;
    }
}