:root {
    --bg:#fbf7f8;
    --paper:#ffffff;
    --ink:#2d2026;
    --muted:#78656d;
    --wine:#6c2341;
    --wine2:#8a3154;
    --gold:#b9924d;
    --gold2:#d7bd82;
    --line:#eadde2;
    --green:#26724a;
    --shadow:0 16px 50px rgba(75,35,51,.10);
}

* {
    box-sizing:border-box;
}

html {
    scroll-behavior:smooth;
}

body {
    margin:0;
    background:var(--bg);
    color:var(--ink);
    font-family:
        Inter,
        Arial,
        sans-serif;
}

a {
    color:inherit;
}

.site-header {
    position:sticky;
    top:0;
    z-index:50;
    background:rgba(255,255,255,.94);
    backdrop-filter:blur(12px);
    border-bottom:1px solid var(--line);
}

.header-inner {
    width:min(1240px,92vw);
    min-height:76px;
    margin:auto;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
}

.logo {
    text-decoration:none;
    font-family:Georgia,serif;
    font-size:24px;
    font-weight:700;
    white-space:nowrap;
}

.logo span {
    color:var(--gold);
}

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

.nav a {
    text-decoration:none;
    color:var(--muted);
    font-weight:700;
    font-size:14px;
}

.nav a:hover {
    color:var(--wine);
}

.hero {
    min-height:560px;
    display:grid;
    place-items:center;
    background:
        radial-gradient(circle at 75% 20%, rgba(185,146,77,.20), transparent 35%),
        radial-gradient(circle at 15% 80%, rgba(108,35,65,.14), transparent 38%),
        linear-gradient(135deg,#fff,#f5e9ed);
    border-bottom:1px solid var(--line);
}

.hero-inner {
    width:min(1240px,92vw);
    display:grid;
    grid-template-columns:1.15fr .85fr;
    gap:50px;
    align-items:center;
    padding:70px 0;
}

.eyebrow {
    color:var(--gold);
    text-transform:uppercase;
    letter-spacing:.16em;
    font-weight:800;
    font-size:12px;
}

.hero h1 {
    font-family:Georgia,serif;
    font-weight:500;
    font-size:clamp(48px,7vw,82px);
    line-height:.98;
    margin:15px 0 22px;
}

.hero h1 em {
    color:var(--wine);
    font-style:normal;
}

.hero p {
    max-width:680px;
    color:var(--muted);
    font-size:18px;
    line-height:1.7;
}

.hero-actions {
    display:flex;
    gap:12px;
    flex-wrap:wrap;
    margin-top:28px;
}

.btn {
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:48px;
    padding:0 20px;
    border-radius:999px;
    text-decoration:none;
    border:1px solid transparent;
    font-weight:800;
}

.btn-primary {
    background:var(--wine);
    color:#fff;
}

.btn-secondary {
    background:#fff;
    color:var(--wine);
    border-color:var(--line);
}

.hero-card {
    background:#fff;
    border:1px solid var(--line);
    border-radius:34px;
    padding:28px;
    box-shadow:var(--shadow);
}

.crown {
    font-size:70px;
    color:var(--gold);
    text-align:center;
    margin:10px 0;
}

.hero-card h2 {
    text-align:center;
    font-family:Georgia,serif;
    font-weight:500;
}

.hero-card p {
    text-align:center;
    font-size:14px;
}

.stats {
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:10px;
    margin-top:22px;
}

.stat {
    text-align:center;
    padding:14px 8px;
    background:var(--bg);
    border-radius:16px;
}

.stat strong {
    display:block;
    color:var(--wine);
    font-size:25px;
}

.section {
    width:min(1240px,92vw);
    margin:70px auto;
}

.section-head {
    display:flex;
    align-items:end;
    justify-content:space-between;
    gap:20px;
    margin-bottom:25px;
}

.section-head h2 {
    margin:0;
    font:500 38px Georgia,serif;
}

.section-head p {
    margin:7px 0 0;
    color:var(--muted);
}

.section-link {
    color:var(--wine);
    text-decoration:none;
    font-weight:800;
}

.categories {
    display:flex;
    flex-wrap:wrap;
    gap:10px;
}

.category-pill {
    text-decoration:none;
    background:#fff;
    border:1px solid var(--line);
    border-radius:999px;
    padding:10px 15px;
    font-size:13px;
    font-weight:700;
}

.category-pill:hover,
.category-pill.active {
    color:#fff;
    background:var(--wine);
    border-color:var(--wine);
}

.product-grid {
    display:grid;
    grid-template-columns:
        repeat(4,minmax(0,1fr));
    gap:20px;
}

.product-card {
    overflow:hidden;
    background:#fff;
    border:1px solid var(--line);
    border-radius:20px;
    box-shadow:0 8px 28px rgba(66,32,45,.06);
    transition:.2s ease;
}

.product-card:hover {
    transform:translateY(-4px);
    box-shadow:var(--shadow);
}

.product-image {
    position:relative;
    display:block;
    aspect-ratio:4/5;
    background:#efe5e9;
    overflow:hidden;
}

.product-image img {
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.3s ease;
}

.product-card:hover img {
    transform:scale(1.025);
}

.no-image {
    height:100%;
    display:grid;
    place-items:center;
    color:var(--gold);
    font-size:54px;
}

.badges {
    position:absolute;
    top:12px;
    left:12px;
    right:12px;
    display:flex;
    justify-content:space-between;
    gap:8px;
}

.badge {
    display:inline-flex;
    padding:6px 9px;
    border-radius:999px;
    background:rgba(255,255,255,.94);
    font-size:11px;
    font-weight:800;
}

.badge.demo {
    background:rgba(45,32,38,.88);
    color:#fff;
}

.product-body {
    padding:15px;
}

.product-ref {
    font-size:11px;
    color:var(--wine);
    font-weight:800;
    font-family:monospace;
}

.product-title {
    margin:6px 0;
    font-family:Georgia,serif;
    font-size:20px;
}

.product-meta {
    color:var(--muted);
    font-size:13px;
    min-height:20px;
}

.product-price {
    display:flex;
    justify-content:space-between;
    gap:10px;
    align-items:end;
    margin-top:13px;
}

.product-price strong {
    color:var(--wine);
    font-size:18px;
}

.status {
    font-size:11px;
    font-weight:800;
}

.status.disponible {
    color:var(--green);
}

.filters {
    display:grid;
    grid-template-columns:2fr 1fr 1fr auto;
    gap:10px;
    margin:24px 0;
}

.filters input,
.filters select {
    min-height:46px;
    border:1px solid var(--line);
    border-radius:12px;
    padding:0 13px;
    background:#fff;
    font:inherit;
}

.article-layout {
    width:min(1180px,92vw);
    margin:50px auto;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:50px;
}

.main-photo {
    width:100%;
    aspect-ratio:4/5;
    object-fit:cover;
    border-radius:24px;
    background:#eee;
}

.thumb-row {
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:9px;
    margin-top:10px;
}

.thumb {
    width:100%;
    aspect-ratio:1;
    object-fit:cover;
    border:2px solid transparent;
    border-radius:12px;
    cursor:pointer;
}

.thumb:hover {
    border-color:var(--gold);
}

.article-info h1 {
    font:500 clamp(36px,5vw,58px) Georgia,serif;
    margin:10px 0;
}

.article-info .lead {
    color:var(--muted);
    line-height:1.7;
}

.detail-grid {
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:12px;
    margin:25px 0;
}

.detail {
    padding:14px;
    background:#fff;
    border:1px solid var(--line);
    border-radius:14px;
}

.detail small {
    display:block;
    color:var(--muted);
    margin-bottom:4px;
}

.big-price {
    font-size:30px;
    color:var(--wine);
    font-weight:800;
}

.notice-demo {
    margin:18px 0;
    padding:12px 14px;
    border-radius:12px;
    background:#fff7e8;
    color:#7a571a;
    font-size:13px;
}

.public-footer {
    margin-top:80px;
    padding:45px 4vw;
    background:#2d2026;
    color:#e9dde2;
}

.footer-inner {
    width:min(1240px,92vw);
    margin:auto;
    display:flex;
    justify-content:space-between;
    gap:30px;
    flex-wrap:wrap;
}

.footer-logo {
    font:500 25px Georgia,serif;
}

.footer-logo span {
    color:var(--gold2);
}

.footer-small {
    color:#bdaeb4;
    font-size:13px;
}

@media(max-width:1000px) {
    .product-grid {
        grid-template-columns:repeat(3,1fr);
    }

    .hero-inner,
    .article-layout {
        grid-template-columns:1fr;
    }
}

@media(max-width:720px) {
    .nav a:not(:last-child) {
        display:none;
    }

    .hero {
        min-height:auto;
    }

    .hero-inner {
        padding:45px 0;
    }

    .hero-card {
        display:none;
    }

    .product-grid {
        grid-template-columns:repeat(2,1fr);
        gap:11px;
    }

    .product-body {
        padding:11px;
    }

    .product-title {
        font-size:17px;
    }

    .filters {
        grid-template-columns:1fr;
    }

    .section {
        margin:45px auto;
    }

    .section-head h2 {
        font-size:31px;
    }
}

@media(max-width:430px) {
    .product-grid {
        grid-template-columns:1fr 1fr;
    }
}

/* ==========================================================
   MEDIAS OFFICIELS REINE DE LA SOIREE
   ========================================================== */

.official-hero-media {
    overflow:hidden;
    border-radius:30px;
    background:#1e171a;
    border:1px solid var(--line);
    box-shadow:var(--shadow);
}

.official-hero-media img {
    display:block;
    width:100%;
    height:auto;
    aspect-ratio:1 / 1;
    object-fit:cover;
}

.official-media-section {
    margin-top:80px;
}

.official-media-grid {
    display:grid;
    grid-template-columns:.8fr 1.2fr;
    gap:22px;
    align-items:stretch;
}

.official-media-card {
    position:relative;
    overflow:hidden;
    background:#1f181b;
    border-radius:26px;
    min-height:500px;
    box-shadow:var(--shadow);
}

.official-media-card img,
.official-media-card video {
    width:100%;
    height:100%;
    display:block;
    object-fit:cover;
}

.official-media-card video {
    background:#000;
}

.official-media-label {
    position:absolute;
    left:18px;
    bottom:18px;
    right:18px;
    padding:14px 16px;
    border-radius:14px;
    color:#fff;
    background:rgba(24,15,19,.72);
    backdrop-filter:blur(8px);
}

.official-media-label strong {
    display:block;
    font:500 21px Georgia,serif;
}

.official-media-label span {
    display:block;
    margin-top:4px;
    font-size:13px;
    opacity:.88;
}

@media(max-width:800px) {

    .official-media-grid {
        grid-template-columns:1fr;
    }

    .official-media-card {
        min-height:430px;
    }
}


/* ==========================================================
   HOME PREMIUM
   ========================================================== */

.hero-premium {
    min-height:auto;
    display:block;
    background:
        radial-gradient(
            circle at 80% 0%,
            rgba(185,146,77,.18),
            transparent 30%
        ),
        linear-gradient(
            180deg,
            #fffaf8 0%,
            #f8edef 100%
        );
}

.hero-premium-inner {
    width:min(1320px,94vw);
    margin:auto;
    padding:76px 0 50px;
}

.hero-premium-copy {
    max-width:880px;
    margin:0 auto 42px;
    text-align:center;
}

.hero-premium-copy h1 {
    margin:15px 0 22px;
    font-family:Georgia,serif;
    font-size:clamp(52px,7vw,92px);
    font-weight:500;
    line-height:.98;
}

.hero-premium-copy h1 em {
    color:var(--wine);
    font-style:italic;
}

.hero-premium-copy p {
    max-width:820px;
    margin:0 auto;
    color:var(--muted);
    font-size:18px;
    line-height:1.75;
}

.hero-premium-copy .hero-actions {
    justify-content:center;
}

.hero-official-picture {
    position:relative;
    overflow:hidden;
    border-radius:32px;
    background:#eadcd9;
    box-shadow:
        0 30px 80px
        rgba(72,34,48,.17);
}

.hero-official-picture::after {
    content:"";
    position:absolute;
    inset:0;
    pointer-events:none;
    box-shadow:
        inset 0 -100px 100px
        rgba(30,15,20,.08);
}

.hero-official-picture img {
    display:block;
    width:100%;
    height:auto;
}


/* ==========================================================
   VIDEO CINEMATIQUE
   ========================================================== */

.cinema-section {
    padding:85px 0;
    background:#211719;
    color:#fff;
}

.cinema-wrap {
    width:min(1180px,92vw);
    margin:auto;
}

.cinema-heading {
    max-width:760px;
    margin:0 auto 34px;
    text-align:center;
}

.cinema-heading h2 {
    margin:10px 0 15px;
    font-family:Georgia,serif;
    font-size:clamp(38px,5vw,62px);
    font-weight:500;
}

.cinema-heading h2 em {
    color:var(--gold2);
    font-style:italic;
}

.cinema-heading p {
    color:#cdbec3;
    line-height:1.7;
    font-size:17px;
}

.cinema-video {
    position:relative;
    width:min(560px,100%);
    margin:auto;
    overflow:hidden;
    border-radius:30px;
    background:#000;
    box-shadow:
        0 30px 90px
        rgba(0,0,0,.42);
}

.cinema-video video {
    display:block;
    width:100%;
    height:auto;
    max-height:820px;
    object-fit:cover;
}

.cinema-overlay {
    position:absolute;
    left:20px;
    right:20px;
    bottom:20px;
    display:flex;
    flex-direction:column;
    align-items:center;
    padding:18px;
    text-align:center;
    border:1px solid rgba(255,255,255,.15);
    border-radius:18px;
    background:
        linear-gradient(
            180deg,
            rgba(25,16,19,.42),
            rgba(25,16,19,.82)
        );
    backdrop-filter:blur(10px);
    pointer-events:none;
}

.cinema-crown {
    color:var(--gold2);
    font-size:28px;
}

.cinema-overlay strong {
    margin-top:4px;
    font:500 25px Georgia,serif;
}

.cinema-overlay small {
    margin-top:5px;
    color:#d6c8cd;
}


/* ==========================================================
   SIGNATURE STRIP
   ========================================================== */

.signature-strip {
    display:grid;
    grid-template-columns:
        repeat(4,1fr);
    margin-top:36px;
    overflow:hidden;
    border:
        1px solid rgba(255,255,255,.10);
    border-radius:20px;
}

.signature-strip > div {
    padding:20px 15px;
    text-align:center;
    border-right:
        1px solid rgba(255,255,255,.10);
}

.signature-strip > div:last-child {
    border-right:0;
}

.signature-strip span {
    display:block;
    margin-bottom:8px;
    color:var(--gold2);
    font-size:25px;
}

.signature-strip strong {
    display:block;
    font-family:Georgia,serif;
    font-size:17px;
}

.signature-strip small {
    display:block;
    margin-top:5px;
    color:#bcaeb3;
    font-size:12px;
}


/* ==========================================================
   RESPONSIVE
   ========================================================== */

@media(max-width:760px) {

    .hero-premium-inner {
        padding:
            45px 0 35px;
    }

    .hero-premium-copy {
        margin-bottom:28px;
    }

    .hero-premium-copy h1 {
        font-size:49px;
    }

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

    .hero-official-picture {
        border-radius:20px;
    }

    .cinema-section {
        padding:55px 0;
    }

    .cinema-video {
        border-radius:20px;
    }

    .signature-strip {
        grid-template-columns:
            1fr 1fr;
    }

    .signature-strip > div:nth-child(2) {
        border-right:0;
    }

    .signature-strip > div:nth-child(-n+2) {
        border-bottom:
            1px solid
            rgba(255,255,255,.10);
    }
}



/* ==========================================================
   DUO PHOTO + VIDEO OFFICIEL
   Compact desktop / iOS / Android
   ========================================================== */

.cinema-media-grid {
    width:min(860px,100%);
    margin:0 auto;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:16px;
    align-items:stretch;
}

.cinema-media-card {
    position:relative;
    overflow:hidden;
    width:100%;
    aspect-ratio:9 / 16;
    border-radius:24px;
    background:#0d0a0b;
    box-shadow:
        0 24px 65px
        rgba(0,0,0,.34);
}

.cinema-official-photo,
.cinema-official-video {
    display:block;
    width:100%;
    height:100%;
    object-fit:cover;
}

.cinema-official-video {
    background:#000;
}

.cinema-media-card .cinema-overlay {
    left:14px;
    right:14px;
    bottom:14px;
    padding:13px 10px;
}

.cinema-media-card .cinema-overlay strong {
    font-size:20px;
}

.cinema-media-card .cinema-crown {
    font-size:23px;
}


/* TABLETTES */

@media(max-width:800px) {

    .cinema-media-grid {
        width:100%;
        gap:10px;
    }

    .cinema-media-card {
        border-radius:18px;
    }

    .cinema-media-card .cinema-overlay {
        left:9px;
        right:9px;
        bottom:9px;
        padding:9px 7px;
        border-radius:12px;
    }

    .cinema-media-card .cinema-overlay strong {
        font-size:16px;
    }

    .cinema-media-card .cinema-overlay small {
        font-size:10px;
    }

    .cinema-media-card .cinema-crown {
        font-size:19px;
    }
}


/* SMARTPHONES iOS / ANDROID */

@media(max-width:520px) {

    .cinema-section {
        padding:45px 0;
    }

    .cinema-heading {
        margin-bottom:22px;
    }

    .cinema-media-grid {
        grid-template-columns:1fr 1fr;
        gap:7px;
    }

    .cinema-media-card {
        border-radius:14px;
        box-shadow:
            0 14px 35px
            rgba(0,0,0,.28);
    }

    .cinema-media-card .cinema-overlay {
        left:6px;
        right:6px;
        bottom:6px;
        padding:7px 5px;
        border-radius:9px;
    }

    .cinema-media-card .cinema-overlay strong {
        font-size:13px;
        line-height:1.15;
    }

    .cinema-media-card .cinema-overlay small {
        font-size:9px;
    }

    .cinema-media-card .cinema-crown {
        font-size:15px;
        margin:0;
    }
}


/* PETITS SMARTPHONES */

@media(max-width:360px) {

    .cinema-media-grid {
        gap:5px;
    }

    .cinema-media-card .cinema-overlay small {
        display:none;
    }

    .cinema-media-card .cinema-overlay strong {
        font-size:12px;
    }
}



/* ==========================================================
   FIX DEFINITIF PHOTO + VIDEO COTE A COTE
   ========================================================== */

.cinema-duo {
    width:min(920px,100%);
    margin:0 auto 32px;

    display:grid !important;
    grid-template-columns:
        minmax(0,1fr)
        minmax(0,1fr) !important;

    gap:14px !important;
    align-items:stretch !important;
}

.cinema-duo-item {
    position:relative;
    overflow:hidden;

    width:100% !important;
    min-width:0 !important;

    height:620px !important;

    border-radius:22px;
    background:#0d090b;

    box-shadow:
        0 25px 65px
        rgba(0,0,0,.30);
}

.cinema-duo-media {
    display:block !important;

    width:100% !important;
    height:100% !important;

    max-width:none !important;
    max-height:none !important;

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

video.cinema-duo-media {
    background:#000;
}

.cinema-duo-caption {
    position:absolute;
    left:12px;
    right:12px;
    bottom:12px;

    display:flex;
    align-items:center;
    justify-content:center;
    gap:7px;

    padding:11px 10px;

    border-radius:12px;

    background:
        rgba(24,15,19,.75);

    backdrop-filter:
        blur(9px);

    color:#fff;
    text-align:center;
}

.cinema-duo-caption span {
    color:var(--gold2);
    font-size:18px;
}

.cinema-duo-caption strong {
    font:500 17px Georgia,serif;
}


/* TABLETTES */

@media (max-width:900px) {

    .cinema-duo {
        width:100%;
        gap:10px !important;
    }

    .cinema-duo-item {
        height:520px !important;
    }
}


/* IPHONE / ANDROID */

@media (max-width:600px) {

    .cinema-duo {
        display:grid !important;

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

        gap:6px !important;

        width:100% !important;
        margin-bottom:22px;
    }

    .cinema-duo-item {
        width:100% !important;
        height:315px !important;

        min-width:0 !important;

        border-radius:12px;
    }

    .cinema-duo-caption {
        left:5px;
        right:5px;
        bottom:5px;

        gap:4px;

        padding:7px 4px;

        border-radius:8px;
    }

    .cinema-duo-caption span {
        font-size:13px;
    }

    .cinema-duo-caption strong {
        font-size:11px;
        line-height:1.1;
    }
}


/* PETITS SMARTPHONES */

@media (max-width:380px) {

    .cinema-duo {
        gap:4px !important;
    }

    .cinema-duo-item {
        height:285px !important;
    }

    .cinema-duo-caption span {
        display:none;
    }

    .cinema-duo-caption strong {
        font-size:10px;
    }
}



/* ==========================================================
   REINE - PHOTO + VIDEO UNIQUE COTE A COTE
   ========================================================== */

.reine-media-table {
    width:min(920px,100%);
    margin:0 auto 32px;

    display:grid !important;
    grid-template-columns:1fr 1fr !important;

    gap:12px;
}

.reine-media-cell {
    position:relative;
    overflow:hidden;

    width:100%;
    min-width:0;

    aspect-ratio:9 / 16;

    border-radius:20px;
    background:#080607;

    box-shadow:
        0 20px 55px
        rgba(0,0,0,.32);
}

.reine-media-content {
    display:block !important;

    width:100% !important;
    height:100% !important;

    object-fit:cover !important;
    object-position:center !important;

    margin:0 !important;
    padding:0 !important;

    max-width:none !important;
    max-height:none !important;
}


/* iPhone + Android */

@media (max-width:600px) {

    .reine-media-table {
        grid-template-columns:1fr 1fr !important;
        gap:5px;

        width:100%;
        margin-bottom:22px;
    }

    .reine-media-cell {
        border-radius:11px;
    }

}


/* Très petits smartphones */

@media (max-width:360px) {

    .reine-media-table {
        gap:4px;
    }

}



/* ==========================================================
   MISE EN VALEUR SECTION UNIVERS
   ========================================================== */

.cinema-heading {
    max-width:900px !important;
    margin:0 auto 42px !important;
    text-align:center !important;
}

.cinema-heading .eyebrow {
    display:block;
    margin-bottom:14px;

    font-size:14px !important;
    font-weight:800 !important;

    letter-spacing:.20em !important;
    text-transform:uppercase;

    color:var(--gold2) !important;
}

.cinema-heading h2 {
    margin:0 0 18px !important;

    font-family:Georgia,serif !important;
    font-size:clamp(42px,6vw,72px) !important;
    line-height:1.05 !important;
    font-weight:500 !important;

    color:#fff !important;
}

.cinema-heading h2 em {
    display:inline-block;
    color:var(--gold2) !important;
    font-style:italic;
}

.cinema-heading p {
    max-width:760px;
    margin:0 auto !important;

    font-size:18px !important;
    line-height:1.8 !important;

    color:#d8c9ce !important;
}


/* ==========================================================
   4 UNIVERS EN CARTES
   ========================================================== */

.signature-strip {
    display:grid !important;
    grid-template-columns:repeat(4,1fr) !important;

    gap:12px !important;

    margin-top:38px !important;

    border:0 !important;
    overflow:visible !important;
}

.signature-strip > div {
    min-height:145px;

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

    padding:22px 16px !important;

    border:1px solid rgba(255,255,255,.12) !important;
    border-radius:18px !important;

    background:
        linear-gradient(
            180deg,
            rgba(255,255,255,.06),
            rgba(255,255,255,.025)
        );

    text-align:center;

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

.signature-strip > div:hover {
    transform:translateY(-3px);

    border-color:
        rgba(215,189,130,.45) !important;

    background:
        linear-gradient(
            180deg,
            rgba(215,189,130,.10),
            rgba(255,255,255,.03)
        );
}

.signature-strip span {
    display:block !important;

    margin-bottom:12px !important;

    color:var(--gold2) !important;

    font-size:32px !important;
    line-height:1 !important;
}

.signature-strip strong {
    display:block !important;

    margin-bottom:7px !important;

    font-family:Georgia,serif !important;
    font-size:20px !important;
    font-weight:500 !important;

    color:#fff !important;
}

.signature-strip small {
    display:block !important;

    font-size:13px !important;
    line-height:1.5 !important;

    color:#c8b9bf !important;
}


/* ==========================================================
   TABLETTE
   ========================================================== */

@media(max-width:900px) {

    .signature-strip {
        grid-template-columns:1fr 1fr !important;
    }

}


/* ==========================================================
   SMARTPHONE IOS / ANDROID
   ========================================================== */

@media(max-width:600px) {

    .cinema-heading {
        margin-bottom:28px !important;
    }

    .cinema-heading .eyebrow {
        font-size:11px !important;
        letter-spacing:.16em !important;
    }

    .cinema-heading h2 {
        font-size:38px !important;
        line-height:1.08 !important;
    }

    .cinema-heading p {
        font-size:15px !important;
        line-height:1.65 !important;
    }

    .signature-strip {
        grid-template-columns:1fr 1fr !important;
        gap:7px !important;
        margin-top:24px !important;
    }

    .signature-strip > div {
        min-height:122px;
        padding:15px 9px !important;
        border-radius:13px !important;
    }

    .signature-strip span {
        font-size:25px !important;
        margin-bottom:8px !important;
    }

    .signature-strip strong {
        font-size:16px !important;
        margin-bottom:5px !important;
    }

    .signature-strip small {
        font-size:11px !important;
        line-height:1.35 !important;
    }
}


/* Très petits écrans */

@media(max-width:360px) {

    .cinema-heading h2 {
        font-size:34px !important;
    }

    .signature-strip strong {
        font-size:15px !important;
    }

}

