/* ============================================================
   SIHEM SOUID — EDITORIAL SHOWCASE
   Main StyleSheet
   ============================================================ */

/* Base & Typography */
:root {
    /* Logo 50px + py-4 (32px) + border ≈ navbar layout height */
    --site-nav-height: 83px;
}

html {
    scroll-padding-top: var(--site-nav-height);
    overflow-x: hidden;
    max-width: 100%;
}

body {
    background-color: #fbf9f4;
    color: #1b1c19;
    font-family: 'Manrope', sans-serif;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    max-width: 100%;
    width: 100%;
    position: relative;
}

img,
video,
iframe {
    max-width: 100%;
}

/* Modals must never widen the mobile viewport (avoid 100vw) */
.bio-modal,
#book-modal-overlay,
#expertise-modal-overlay {
    width: 100% !important;
    max-width: 100% !important;
    left: 0 !important;
    right: 0 !important;
    overflow-x: hidden;
    box-sizing: border-box;
}

.bio-modal__card,
#book-modal-card,
#expertise-modal-card {
    min-width: 0 !important;
    width: min(100%, 48rem) !important;
    max-width: calc(100% - 2rem) !important;
    box-sizing: border-box;
}

@media (max-width: 1023px) {
    :root {
        /* Mobile nav scrolls away — no fixed overlay offset */
        --site-nav-height: 0px;
    }
}

.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

/* ============================================================
   INTRO — animation d'ouverture
   ============================================================ */
body.is-intro-locked {
    overflow: hidden;
}

html.sihem-intro-done .site-intro {
    display: none !important;
}

.site-intro {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        radial-gradient(ellipse 70% 50% at 50% 40%, rgba(150, 120, 46, 0.14), transparent 65%),
        #f7f4ee;
    transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), visibility 0.7s;
}

.site-intro.is-done {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.site-intro__panel {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 24px;
}

.site-intro__logo {
    width: clamp(72px, 14vw, 110px);
    height: auto;
    object-fit: contain;
    opacity: 0;
    transform: scale(0.88) translateY(12px);
}

.site-intro.is-active .site-intro__logo {
    animation: introLogoIn 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.1s forwards;
}

.site-intro__brand {
    margin: 22px 0 0;
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(28px, 5vw, 42px);
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #111111;
    opacity: 0;
    transform: translateY(16px);
}

.site-intro.is-active .site-intro__brand {
    animation: introFadeUp 0.75s cubic-bezier(0.22, 1, 0.36, 1) 0.35s forwards;
}

.site-intro__rule {
    display: block;
    width: 56px;
    height: 2px;
    margin-top: 18px;
    background: #96782e;
    transform: scaleX(0);
    transform-origin: center;
}

.site-intro.is-active .site-intro__rule {
    animation: introRule 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.7s forwards;
}

.js-ready .site-enter {
    opacity: 0;
    transform: translateY(18px);
}

html.is-ready .site-enter {
    animation: introPageIn 0.85s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

html.is-ready .site-nav.site-enter {
    animation-delay: 0.05s;
}

html.is-ready .hero-section.site-enter {
    animation-delay: 0.18s;
}

@keyframes introLogoIn {
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

@keyframes introFadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes introRule {
    to { transform: scaleX(1); }
}

@keyframes introPageIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .site-intro,
    .site-intro__logo,
    .site-intro__brand,
    .site-intro__rule,
    .site-enter {
        animation: none !important;
        transition: none !important;
        opacity: 1 !important;
        transform: none !important;
        visibility: visible !important;
    }

    .site-intro.is-done {
        display: none;
    }
}

/* Nav logo: larger visually, with breathing room top/bottom inside the navbar */
.nav-logo {
    display: block;
    height: 50px;
    width: auto;
    object-fit: contain;
    transform: scale(1.55);
    transform-origin: left center;
    margin-top: 4px;
    margin-bottom: 4px;
}

.no-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}
.no-scrollbar::-webkit-scrollbar {
    display: none;
}

/* Active nav link (scroll spy) */
.nav-links .nav-link {
    border-bottom: 2px solid transparent;
    padding-bottom: 2px;
}

.nav-links .nav-link.is-active {
    color: #96782e;
    border-bottom-color: #96782e;
}

.nav-socials {
    display: none;
    margin-left: auto;
    align-items: center;
    gap: 14px;
    position: relative;
    z-index: 2;
}

.nav-social {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    color: #1b1c19;
    transition: color 0.2s ease, transform 0.2s ease;
}

.nav-social svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
    display: block;
}

.nav-social:hover,
.nav-social:focus {
    color: #96782e;
    outline: none;
}

@media (min-width: 1024px) {
    .nav-socials {
        display: flex;
    }
}

@media (min-width: 1024px) and (max-width: 1279px) {
    .nav-socials {
        gap: 8px;
    }

    .nav-social {
        width: 24px;
        height: 24px;
    }
}

.mobile-menu__socials {
    margin-top: auto;
    display: flex;
    align-items: center;
    gap: 16px;
    padding-top: 32px;
}

.mobile-menu__socials .nav-social {
    width: 36px;
    height: 36px;
    color: #1b1c19;
}

.mobile-menu__socials .nav-social svg {
    width: 18px;
    height: 18px;
}

.mobile-menu__link.is-active {
    color: #96782e;
    border-bottom-color: #96782e;
}

/* ============================================================
   MOBILE MENU
   ============================================================ */
.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: rgba(17, 17, 17, 0.45);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-menu.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.mobile-menu__panel {
    position: absolute;
    top: 0;
    right: 0;
    width: min(86vw, 360px);
    height: 100%;
    height: 100dvh;
    background: #fbf9f4;
    padding: 96px 28px 40px;
    display: flex;
    flex-direction: column;
    gap: 0;
    box-shadow: -24px 0 48px rgba(0, 0, 0, 0.12);
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.mobile-menu.is-open .mobile-menu__panel {
    transform: translateX(0);
}

.mobile-menu__link {
    font-family: 'Manrope', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #1b1c19;
    padding: 18px 0;
    border-bottom: 1px solid #e4e2dd;
    text-decoration: none;
    transition: color 0.2s ease;
    position: relative;
    z-index: 1;
}

.mobile-menu__link:hover,
.mobile-menu__link:focus {
    color: #96782e;
}

.mobile-menu__cta {
    margin-top: 28px;
    display: block;
    text-align: center;
    background: #111111;
    color: #ffffff;
    font-family: 'Manrope', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding: 18px 20px;
    text-decoration: none;
    transition: background 0.25s ease, color 0.25s ease;
}

.mobile-menu__cta:hover,
.mobile-menu__cta:focus {
    background: #96782e;
    color: #111111;
}

body.mobile-menu-open {
    overflow: hidden;
}

@media (min-width: 1024px) {
    .mobile-menu {
        display: none !important;
    }
}

/* ============================================================
   HERO — MOBILE (inspiration layout)
   ============================================================ */
.hero-section {
    min-height: auto;
}

.hero-mobile-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: #111111;
}

.hero-mobile-bg__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
}

.hero-mobile-bg__gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(17, 17, 17, 0) 45%, rgba(17, 17, 17, 0.88) 100%);
}

@media (max-width: 1023px) {
    /* Scrolls with the page (not sticky); transparent over hero image */
    .site-nav {
        position: absolute !important;
        background: transparent !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        border-bottom-color: transparent !important;
        box-shadow: none !important;
        z-index: 10001 !important;
        transform: none !important;
    }

    .site-nav.menu-open {
        background: #fbf9f4 !important;
        border-bottom-color: transparent !important;
    }

    .site-nav.is-scrolled {
        background: transparent !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        border-bottom-color: transparent !important;
        box-shadow: none !important;
    }

    .site-nav #mobile-menu-toggle {
        color: #ffffff;
    }

    /* Pages intérieures (fond crème) : icône noire, lisible */
    .site-nav.page-nav #mobile-menu-toggle,
    .site-nav.menu-open #mobile-menu-toggle {
        color: #111111;
    }

    .nav-logo {
        height: 36px;
        transform: scale(1.35);
        margin-top: 2px;
        margin-bottom: 2px;
    }

    .hero-section {
        min-height: min(100dvh, 820px);
        height: min(100dvh, 820px);
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        padding-top: 0;
        padding-bottom: 0;
        background: #111111;
    }

    .nav-links {
        display: none !important;
    }

    .nav-socials {
        display: none !important;
    }

    #mobile-menu-toggle {
        display: block !important;
    }

    #mobile-menu {
        display: block !important;
    }

    .container {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box;
    }

    .hero-inner > div:not(.hero-copy) {
        display: none !important;
    }

    .hero-inner {
        width: 100% !important;
        max-width: 100% !important;
        padding-bottom: 28px;
        padding-top: 0;
        min-height: min(100dvh, 820px);
        justify-content: flex-end;
        align-items: stretch;
        box-sizing: border-box;
    }

    .hero-copy {
        position: relative;
        z-index: 2;
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0;
        flex: none;
        margin-top: auto;
        padding-top: 37vh;
        padding-bottom: 8px;
        box-sizing: border-box;
    }

    .hero-ctas {
        gap: 10px;
        width: 100%;
        align-items: flex-start;
    }

    .hero-ctas .hero-cta-primary {
        width: 50%;
        max-width: 50%;
        padding: 11px 16px;
        font-size: 10px;
        letter-spacing: 0.14em;
        line-height: 1.2;
        border-radius: 9999px;
        box-sizing: border-box;
        color: #ffffff;
        background: #96782e;
    }

    /* Key figures — single line, same black band */
    .key-figures {
        padding-top: 64px;
        padding-bottom: 64px;
        background: #111111;
        min-height: 180px;
        display: flex;
        align-items: center;
    }

    .key-figures__container {
        max-width: none;
        width: 100%;
        padding-left: 24px;
        padding-right: 24px;
    }

    .key-figures__line {
        font-size: 18px;
        line-height: 1.55;
    }

    /* Intro section mobile breathing room */
    .py-stack-lg {
        padding-top: 64px;
        padding-bottom: 64px;
    }

    /* Intro editorial — mobile composition */
    .intro-editorial {
        background: #f5f3ee;
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }

    .intro-editorial__grid {
        display: grid !important;
        grid-template-columns: minmax(0, 1fr) !important;
        width: 100% !important;
        max-width: 100% !important;
        gap: 28px;
        box-sizing: border-box;
    }

    .intro-editorial__copy {
        display: flex;
        flex-direction: column;
        gap: 22px;
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0;
        grid-column: 1 / -1 !important;
        box-sizing: border-box;
    }

    .intro-editorial__quote {
        padding-left: 18px;
    }

    .intro-editorial__quote blockquote {
        font-size: 22px;
        line-height: 34px;
        font-weight: 400;
    }

    .intro-editorial__bio {
        font-size: 15px;
        line-height: 26px;
        max-width: 36em;
    }

    .intro-editorial__cta .open-bio-btn {
        width: 50%;
        max-width: 50%;
        min-height: 0;
        padding: 10px 14px;
        font-size: 10px;
        letter-spacing: 0.12em;
        line-height: 1.25;
        border-radius: 9999px;
        justify-content: center;
        text-align: center;
        box-sizing: border-box;
    }

    .intro-editorial__cta .open-bio-btn .material-symbols-outlined {
        font-size: 16px;
    }

    .intro-editorial__media {
        display: none;
    }

    /* Biography modal — mobile card */
    .bio-modal {
        padding: 16px;
        align-items: center;
        justify-content: center;
    }

    .bio-modal__card {
        width: 100%;
        max-width: 100%;
        margin: 0;
        max-height: min(88dvh, 720px);
        padding: 28px 22px 24px;
        border-radius: 16px;
        border-color: rgba(150, 120, 46, 0.35);
        background: #fbf9f4;
        box-shadow: 0 24px 64px rgba(0, 0, 0, 0.28);
        -webkit-overflow-scrolling: touch;
    }

    .bio-modal__close {
        top: 14px;
        right: 14px;
        z-index: 2;
        width: 40px;
        height: 40px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border-radius: 9999px;
        color: #1b1c19;
    }

    .bio-modal__close .material-symbols-outlined {
        font-size: 22px;
    }

    .bio-modal__header {
        margin-bottom: 22px;
        padding-right: 36px;
    }

    .bio-modal__label {
        font-size: 11px;
        letter-spacing: 0.28em;
        color: #96782e;
        margin-bottom: 10px;
    }

    .bio-modal__title {
        font-size: 28px;
        line-height: 1.15;
        font-weight: 700;
    }

    .bio-modal__rule {
        width: 48px;
        height: 2px;
        background: #96782e;
        margin-top: 14px;
    }

    .bio-modal__body {
        gap: 18px;
        font-size: 15px;
        line-height: 26px;
        text-align: left;
    }

    .bio-modal__footer {
        margin-top: 28px;
        padding-top: 20px;
        justify-content: stretch;
    }

    .bio-modal__dismiss {
        width: 100%;
        padding: 12px 18px;
        font-size: 11px;
        letter-spacing: 0.14em;
        border-radius: 9999px;
        background: #111111;
    }

    /* Media overlays visible on touch devices */
    #medias .group .absolute.inset-0 {
        opacity: 1;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.75), transparent 55%);
    }

}

@media (min-width: 1024px) {
    .hero-section {
        height: 100vh;
        min-height: 650px;
        display: flex;
        align-items: center;
        padding-top: 6rem;
        padding-bottom: 2rem;
    }

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

.editorial-shadow {
    box-shadow: 0 32px 64px -12px rgba(0, 0, 0, 0.04);
}

.hairline-gold { 
    border: 1px solid #96782e; 
}

.gold-gradient-text {
    background: linear-gradient(135deg, #96782e 0%, #96782e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ============================================================
   EXPERTISE SECTION — SAVOIR-FAIRE
   Layout 1-viewport desktop
   ============================================================ */
#expertise {
    background: #D3D3D3;
    min-height: 100dvh;
    height: 100dvh;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: clamp(72px, 10vh, 100px);
    padding-bottom: clamp(32px, 5vh, 64px);
    overflow: hidden;
}

#expertise .expertise-page {
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
    width: 100%;
}

@media (min-width: 1200px) {
    #expertise {
        min-height: 100dvh;
        height: 100dvh;
        padding-top: clamp(80px, 9vh, 110px);
        padding-bottom: clamp(28px, 4vh, 56px);
    }
}

@media (max-width: 767px) {
    #expertise {
        height: auto;
        min-height: 100dvh;
        overflow: visible;
        padding-top: 72px;
        padding-bottom: 56px;
    }
}

.expertise-container {
    max-width: 1480px;
    width: calc(100% - 80px);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}
@media (max-width: 1366px) {
    .expertise-container { width: calc(100% - 48px); }
}
@media (max-width: 1199px) {
    .expertise-container {
        width: calc(100% - 48px);
        padding-top: 56px;
        padding-bottom: 48px;
    }
}
@media (max-width: 767px) {
    .expertise-container { width: calc(100% - 40px); padding-top: 48px; padding-bottom: 40px; }
}

.expertise-header {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 36px;
    align-items: start;
}
@media (min-width: 1200px) {
    .expertise-header {
        grid-template-columns: minmax(0, 1.3fr) minmax(320px, 0.8fr);
        gap: 60px;
        align-items: end;
        margin-bottom: clamp(28px, 3.5vh, 44px);
    }
}
@media (min-width: 768px) and (max-width: 1199px) {
    .expertise-header {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        align-items: end;
        margin-bottom: 32px;
    }
}

.expertise-label {
    font-family: 'Manrope', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: #96782e;
    margin-bottom: 18px;
    display: block;
}

.expertise-main-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 600;
    line-height: 0.98;
    letter-spacing: -0.02em;
    color: #111111;
    margin: 0;
    max-width: 700px;
}
@media (min-width: 1200px) {
    .expertise-main-title {
        font-size: clamp(42px, 3.2vw, 58px);
        line-height: 1.0;
    }
}
@media (max-width: 767px) {
    .expertise-main-title {
        font-size: clamp(32px, 8vw, 44px);
        line-height: 1.08;
        letter-spacing: -0.01em;
    }
}

.expertise-intro-text {
    font-family: 'Manrope', sans-serif;
    font-size: clamp(15px, 1.05vw, 18px);
    line-height: 1.55;
    color: #4a4a48;
    margin: 0;
    max-width: 500px;
}
@media (min-width: 1200px) {
    .expertise-intro-text { padding-top: 4px; }
}

.expertise-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}
@media (min-width: 640px) and (max-width: 1099px) {
    .expertise-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
}
@media (min-width: 1100px) and (max-width: 1199px) {
    .expertise-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
}
@media (min-width: 1200px) {
    .expertise-grid {
        grid-template-columns: repeat(5, minmax(0, 1fr));
        gap: clamp(12px, 1.2vw, 20px);
    }
}

.expertise-card {
    background: #FBF9F5;
    border: 1px solid #D6D0C7;
    padding: clamp(22px, 2vw, 30px);
    display: flex;
    flex-direction: column;
    position: relative;
    min-height: 320px;
    height: clamp(320px, 40vh, 380px);
    box-sizing: border-box;
    opacity: 0;
    transform: translateY(18px);
    transition: background 0.32s ease, border-color 0.32s ease,
                transform 0.32s ease, box-shadow 0.32s ease, opacity 0.42s ease;
    word-break: normal;
    overflow-wrap: normal;
    hyphens: none;
}
.expertise-card.visible {
    opacity: 1;
    transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
    .expertise-card { opacity: 1; transform: none; transition: background 0.32s, border-color 0.32s; }
}

@media (max-width: 639px) {
    .expertise-card { min-height: 0; height: auto; padding: 26px 24px; }
}

.expertise-card:hover {
    background: #111111;
    border-color: #111111;
    transform: translateY(-4px);
    box-shadow: 0 12px 32px -8px rgba(0,0,0,0.18);
}
@media (prefers-reduced-motion: reduce) { .expertise-card:hover { transform: none; } }

.expertise-card-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
    flex-shrink: 0;
}

.expertise-number {
    font-family: 'Playfair Display', serif;
    font-size: clamp(36px, 2.8vw, 48px);
    font-weight: 700;
    color: #96782e;
    opacity: 0.17;
    line-height: 1;
    pointer-events: none;
    user-select: none;
    transition: opacity 0.32s;
    flex-shrink: 0;
}
.expertise-card:hover .expertise-number { opacity: 0.5; }

.expertise-icon {
    width: 36px;
    height: 36px;
    color: #96782e;
    flex-shrink: 0;
    transition: color 0.32s;
}
.expertise-card:hover .expertise-icon { color: #96782e; }

.expertise-card-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(20px, 1.55vw, 26px);
    font-weight: 600;
    line-height: 1.08;
    color: #111111;
    margin: 0 0 12px;
    transition: color 0.32s;
    word-break: normal;
    overflow-wrap: normal;
    hyphens: none;
}
.expertise-card:hover .expertise-card-title { color: #f5f2ec; }

.expertise-card-desc {
    font-family: 'Manrope', sans-serif;
    font-size: clamp(13px, 0.9vw, 15px);
    line-height: 1.5;
    color: #5a5a55;
    margin: 0;
    flex-grow: 1;
    transition: color 0.32s;
}
.expertise-card:hover .expertise-card-desc { color: rgba(245,242,236,0.75); }

.expertise-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: auto;
    padding-top: 18px;
    padding-bottom: 6px;
    padding-left: 0;
    padding-right: 0;
    background: transparent;
    border: none;
    border-bottom: 1px solid #111111;
    font-family: 'Manrope', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: #111111;
    text-transform: uppercase;
    cursor: pointer;
    white-space: nowrap;
    width: max-content;
    flex-shrink: 0;
    transition: color 0.25s, border-color 0.25s;
}
.expertise-btn .btn-arrow {
    display: inline-block;
    transition: transform 0.25s;
}
.expertise-btn:hover .btn-arrow,
.expertise-btn:focus .btn-arrow { transform: translateX(4px); }
.expertise-btn:hover,
.expertise-btn:focus { color: #96782e; border-bottom-color: #96782e; outline: none; }
.expertise-btn:focus-visible { outline: 2px solid #96782e; outline-offset: 4px; }
.expertise-card:hover .expertise-btn { color: #96782e; border-bottom-color: #96782e; }
.expertise-card:hover .expertise-btn:focus-visible { outline-color: #96782e; }

@media (min-width: 1200px) and (max-height: 820px) {
    #expertise {
        padding-top: 72px;
        padding-bottom: 20px;
    }
    .expertise-header { margin-bottom: clamp(20px, 2.5vh, 30px); }
    .expertise-main-title { font-size: clamp(38px, 2.8vw, 50px); }
    .expertise-card {
        height: clamp(300px, 42vh, 360px);
        min-height: 300px;
        padding: clamp(18px, 1.6vw, 24px);
    }
    .expertise-card-title { font-size: clamp(18px, 1.35vw, 23px); }
    .expertise-card-desc { font-size: 13px; }
    .expertise-btn { padding-top: 12px; font-size: 11px; }
}

@media (min-width: 1200px) and (max-width: 1399px) {
    .expertise-card { height: clamp(310px, 39vh, 360px); }
    .expertise-card-title { font-size: clamp(19px, 1.45vw, 24px); }
}

/* ============================================================
   EXPERTISE MODAL
   ============================================================ */
#expertise-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    z-index: 9000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.32s ease;
}
#expertise-modal-overlay.is-open { opacity: 1; pointer-events: all; }

#expertise-modal-card {
    position: relative;
    background: #FBF9F5;
    border: 1px solid #96782e;
    border-radius: 4px;
    width: min(820px, calc(100% - 40px));
    max-height: calc(100dvh - 40px);
    overflow: hidden;
    padding: 48px 52px 44px;
    transform: translateY(16px) scale(0.98);
    opacity: 0;
    transition: transform 0.35s ease, opacity 0.35s ease;
    overflow-y: auto;
}
#expertise-modal-overlay.is-open #expertise-modal-card { transform: translateY(0) scale(1); opacity: 1; }
@media (prefers-reduced-motion: reduce) { #expertise-modal-card { transition: none; transform: none; } }
@media (max-width: 767px) {
    #expertise-modal-card { width: calc(100% - 20px); padding: 24px 24px 22px; max-height: calc(100dvh - 24px); }
}

#expertise-modal-close-x {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 42px;
    height: 42px;
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #111111;
    transition: color 0.25s;
    padding: 0;
}
#expertise-modal-close-x:hover { color: #96782e; }
#expertise-modal-close-x:focus-visible { outline: 2px solid #96782e; outline-offset: 2px; border-radius: 2px; }
#expertise-modal-close-x svg { width: 22px; height: 22px; stroke-width: 1.5; }

.modal-label {
    font-family: 'Manrope', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: #96782e;
    margin-bottom: 14px;
    display: block;
}
.modal-title {
    font-family: 'Playfair Display', serif;
    font-size: 34px;
    font-weight: 600;
    line-height: 1.18;
    color: #111111;
    margin: 0 0 14px;
}
@media (max-width: 767px) { .modal-title { font-size: 28px; } }

.modal-subtitle {
    font-family: 'Playfair Display', serif;
    font-size: 17px;
    font-style: italic;
    color: #5a5550;
    margin: 0 0 18px;
    line-height: 1.5;
}
@media (max-width: 767px) { .modal-subtitle { font-size: 15px; margin-bottom: 14px; } }

.modal-divider { width: 48px; height: 1px; background: #96782e; margin: 0 0 18px; }

.modal-description {
    font-family: 'Manrope', sans-serif;
    font-size: 15px;
    line-height: 1.68;
    color: #3a3a37;
    margin: 0 0 22px;
}
@media (max-width: 767px) { .modal-description { font-size: 14px; margin-bottom: 18px; } }

.modal-services {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
    border-top: 1px solid #D6D0C7;
    padding-top: 18px;
}
@media (max-width: 767px) { .modal-services { gap: 10px; margin-bottom: 16px; padding-top: 14px; } }

.modal-service-item { display: grid; grid-template-columns: 20px 1fr; gap: 12px; align-items: baseline; }
.modal-service-num { font-family: 'Manrope', sans-serif; font-size: 10px; font-weight: 700; color: #96782e; letter-spacing: 0.08em; }
.modal-service-title { font-family: 'Manrope', sans-serif; font-size: 13px; font-weight: 700; color: #111111; display: block; margin-bottom: 1px; }
.modal-service-desc { font-family: 'Manrope', sans-serif; font-size: 13px; color: #5a5a55; line-height: 1.5; }

.modal-editorial {
    font-family: 'Playfair Display', serif;
    font-size: 15px;
    font-style: italic;
    color: #96782e;
    border-left: 2px solid #96782e;
    padding-left: 14px;
    margin-bottom: 24px;
    line-height: 1.5;
}
@media (max-width: 767px) { .modal-editorial { font-size: 14px; margin-bottom: 18px; } }
@media (max-width: 767px) and (max-height: 700px) { .modal-editorial { display: none; } }

.modal-close-btn {
    display: block;
    width: 100%;
    background: #111111;
    color: #FBF9F5;
    border: 1px solid #96782e;
    font-family: 'Manrope', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    min-height: 50px;
    padding: 0 32px;
    cursor: pointer;
    transition: background 0.28s, color 0.28s;
    border-radius: 0;
}
.modal-close-btn:hover, .modal-close-btn:focus { background: #96782e; color: #111111; outline: none; }
.modal-close-btn:focus-visible { outline: 2px solid #96782e; outline-offset: 2px; }

/* ============================================================
   PUBLICATIONS SECTION — L'écriture comme arme de vérité
   ============================================================ */
#publications {
    background-color: #F7F4EE;
    border-top: 1px solid #D8D2C8;
    border-bottom: 1px solid #D8D2C8;
}

.publications-container {
    max-width: 1320px;
    width: calc(100% - 80px);
    margin: 0 auto;
}
@media (max-width: 1024px) {
    .publications-container { width: calc(100% - 48px); }
}
@media (max-width: 640px) {
    .publications-container { width: calc(100% - 32px); }
}

.publications-header {
    text-align: center;
    margin-bottom: clamp(36px, 5vh, 60px);
}
.publications-label {
    font-family: 'Manrope', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: #96782e;
    margin-bottom: 14px;
    display: block;
}
.publications-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(32px, 3.5vw, 48px);
    font-weight: 600;
    line-height: 1.15;
    color: #111111;
    margin: 0 0 16px 0;
}
.publications-intro {
    font-family: 'Manrope', sans-serif;
    font-size: clamp(15px, 1.1vw, 17px);
    line-height: 1.55;
    color: #4a4a48;
    max-width: 840px;
    margin: 0 auto;
}

.publications-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(24px, 3.5vw, 64px);
}
@media (max-width: 1099px) and (min-width: 768px) {
    .publications-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .publications-card:nth-child(3) {
        grid-column: span 2;
        max-width: 500px;
        margin: 0 auto;
        width: 100%;
    }
}
@media (max-width: 767px) {
    .publications-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .publications-card:nth-child(3) {
        grid-column: span 1;
        max-width: 100%;
    }
}

.publications-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
}

.publications-year {
    font-family: 'Manrope', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #96782e;
    margin-bottom: 16px;
    display: block;
}

.publications-cover-wrap {
    height: clamp(340px, 38vh, 420px);
    width: 100%;
    background-color: #EFEAE0;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.publications-card:hover .publications-cover-wrap {
    transform: translateY(-4px);
    box-shadow: 0 16px 36px -12px rgba(166, 124, 61, 0.2);
}
.publications-cover-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    transition: transform 0.3s ease;
}
.publications-card:hover .publications-cover-img {
    transform: scale(1.02);
}

.publications-card-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(24px, 1.8vw, 32px);
    font-weight: 600;
    line-height: 1.1;
    color: #111111;
    margin: 20px 0 0 0;
    word-break: normal;
    overflow-wrap: normal;
    hyphens: none;
}

.publications-card-subtitle {
    font-family: 'Playfair Display', serif;
    font-size: clamp(16px, 1.1vw, 19px);
    font-style: italic;
    color: #96782e;
    margin-top: 10px;
    line-height: 1.35;
}

.publications-card-desc {
    font-family: 'Manrope', sans-serif;
    font-size: clamp(14px, 0.95vw, 16px);
    line-height: 1.55;
    color: #38342F;
    margin-top: 14px;
    margin-bottom: 24px;
}

.publications-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
    padding-bottom: 7px;
    background: transparent;
    border: none;
    border-bottom: 1px solid #111111;
    font-family: 'Manrope', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: #111111;
    text-transform: uppercase;
    cursor: pointer;
    white-space: nowrap;
    width: max-content;
    transition: color 0.28s ease, border-color 0.28s ease;
}
.publications-btn .btn-arrow {
    display: inline-block;
    transition: transform 0.28s ease;
}
.publications-btn:hover .btn-arrow,
.publications-btn:focus .btn-arrow {
    transform: translateX(5px);
}
.publications-btn:hover,
.publications-btn:focus {
    color: #96782e;
    border-bottom-color: #96782e;
    outline: none;
}
.publications-btn:focus-visible {
    outline: 2px solid #96782e;
    outline-offset: 4px;
}

/* ============================================================
   BOOK MODAL — Reusable Modal for Publications
   ============================================================ */
#book-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.65);
    backdrop-filter: blur(4px);
    z-index: 9500;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.32s ease;
}
#book-modal-overlay.is-open {
    opacity: 1;
    pointer-events: all;
}

#book-modal-card {
    position: relative;
    background: #F7F4EE;
    border: 1px solid #96782e;
    border-radius: 4px;
    width: min(900px, calc(100% - 32px));
    max-height: calc(100dvh - 40px);
    overflow: hidden;
    display: flex;
    flex-direction: row;
    box-shadow: 0 24px 48px -12px rgba(0,0,0,0.25);
    transform: translateY(16px) scale(0.98);
    opacity: 0;
    transition: transform 0.35s ease, opacity 0.35s ease;
}
#book-modal-overlay.is-open #book-modal-card {
    transform: translateY(0) scale(1);
    opacity: 1;
}
@media (max-width: 767px) {
    #book-modal-card {
        flex-direction: column;
        width: calc(100% - 20px);
        max-height: calc(100dvh - 24px);
        overflow-y: auto;
    }
}

.book-modal-left {
    width: 40%;
    background: #111111;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 36px 28px;
    position: relative;
    flex-shrink: 0;
    box-sizing: border-box;
}
@media (max-width: 767px) {
    .book-modal-left {
        width: 100%;
        min-height: 240px;
        padding: 28px 20px;
    }
}
.book-modal-cover-img {
    max-height: 380px;
    max-width: 90%;
    object-fit: contain;
    border: 1px solid #96782e;
    box-shadow: 0 12px 28px rgba(0,0,0,0.4);
}
@media (max-width: 767px) {
    .book-modal-cover-img { max-height: 220px; }
}
.book-modal-left-year {
    margin-top: 16px;
    font-family: 'Manrope', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.22em;
    color: #96782e;
    text-transform: uppercase;
}

.book-modal-right {
    width: 60%;
    padding: 40px 44px 36px;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    box-sizing: border-box;
}
@media (max-width: 767px) {
    .book-modal-right {
        width: 100%;
        padding: 24px 24px 20px;
        overflow-y: visible;
    }
}

#book-modal-close-x {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 38px;
    height: 38px;
    background: rgba(255,255,255,0.9);
    border: 1px solid #D8D2C8;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #111111;
    z-index: 10;
    transition: color 0.25s, border-color 0.25s, transform 0.25s;
}
#book-modal-close-x:hover {
    color: #96782e;
    border-color: #96782e;
    transform: rotate(90deg);
}

.book-modal-label {
    font-family: 'Manrope', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: #96782e;
    margin-bottom: 10px;
    display: block;
}
.book-modal-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(26px, 2.2vw, 32px);
    font-weight: 700;
    line-height: 1.15;
    color: #111111;
    margin: 0 0 8px 0;
}
.book-modal-subtitle {
    font-family: 'Playfair Display', serif;
    font-size: 16px;
    font-style: italic;
    color: #96782e;
    margin: 0 0 14px 0;
    line-height: 1.4;
}
.book-modal-divider {
    width: 44px;
    height: 1px;
    background-color: #96782e;
    margin-bottom: 16px;
}
.book-modal-desc {
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    line-height: 1.62;
    color: #3A3733;
    margin-bottom: 16px;
}
.book-modal-editorial {
    font-family: 'Playfair Display', serif;
    font-size: 15px;
    font-style: italic;
    color: #111111;
    border-left: 2px solid #96782e;
    padding-left: 14px;
    margin-bottom: 20px;
    background: rgba(166, 124, 61, 0.05);
    padding-top: 8px;
    padding-bottom: 8px;
}
.book-modal-details {
    border-top: 1px solid #D8D2C8;
    padding-top: 14px;
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.book-modal-detail-row {
    display: flex;
    font-size: 13px;
    font-family: 'Manrope', sans-serif;
}
.book-modal-detail-label {
    width: 90px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #96782e;
    font-size: 11px;
}
.book-modal-detail-value {
    color: #111111;
    font-weight: 500;
}

.book-modal-close-btn {
    margin-top: auto;
    width: 100%;
    background: #111111;
    color: #FBF9F5;
    border: 1px solid #96782e;
    font-family: 'Manrope', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    min-height: 46px;
    cursor: pointer;
    transition: background 0.25s, color 0.25s;
}
.book-modal-close-btn:hover {
    background: #96782e;
    color: #111111;
}

/* ============================================================
   ENGAGEMENTS / CONVICTIONS SECTION
   ============================================================ */
.convictions-section {
    background-color: #fbf9f4;
    position: relative;
    box-sizing: border-box;
}

@media (min-width: 1101px) {
    .convictions-section {
        min-height: calc(100vh - 73px);
        display: flex;
        align-items: center;
        padding-top: clamp(24px, 3vh, 48px);
        padding-bottom: clamp(24px, 3vh, 48px);
        overflow: hidden;
    }
}

.convictions-container {
    max-width: 1500px;
    width: calc(100% - 80px);
    margin: 0 auto;
}
@media (max-width: 1366px) {
    .convictions-container {
        width: calc(100% - 48px);
    }
}

.convictions-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: clamp(40px, 5vw, 100px);
    align-items: center;
}

@media (min-width: 1101px) {
    .convictions-grid {
        grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    }
}

/* MOSAÏQUE 2x2 */
.convictions-mosaic {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px 32px;
    align-items: start;
    width: 100%;
    height: auto;
    min-height: clamp(560px, 70vh, 720px);
}

.convictions-col {
    display: flex;
    flex-direction: column;
    gap: 36px;
}

/* Colonne gauche : commence plus bas, gap plus large */
.convictions-col--left {
    padding-top: 56px;
    gap: 48px;
}

/* Colonne droite : commence plus haut, rythme différent */
.convictions-col--right {
    padding-top: 0;
    gap: 52px;
    padding-bottom: 24px;
}

.convictions-card {
    position: relative;
    overflow: hidden;
    width: 100%;
    background-color: #ece8e0;
    border: none;
    border-radius: 0;
    height: auto;
    min-height: 0;
}

.convictions-card--egalite {
    aspect-ratio: 3 / 4;
    width: 92%;
    margin-left: 0;
}

.convictions-card--diversite {
    aspect-ratio: 1 / 1.05;
    width: 88%;
    margin-left: auto;
}

.convictions-card--justice {
    aspect-ratio: 2 / 3.15;
    width: 100%;
}

.convictions-card--transmission {
    aspect-ratio: 3 / 3.8;
    width: 90%;
    margin-left: 8%;
    margin-top: 12px;
}

.convictions-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: grayscale(100%);
    display: block;
    transition: transform 0.45s ease, filter 0.45s ease;
}
.convictions-card:hover .convictions-card-img {
    transform: scale(1.03);
    filter: grayscale(0%);
}

/* CONTENU DROITE */
.convictions-content {
    max-width: 620px;
    display: flex;
    flex-direction: column;
}

.convictions-label {
    font-family: 'Manrope', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: #96782e;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    margin-bottom: 12px;
    display: block;
}

.convictions-headline {
    font-family: 'Playfair Display', serif;
    font-size: clamp(38px, 3.8vw, 64px);
    line-height: 1.02;
    font-weight: 600;
    color: #1b1c19;
    margin: 0 0 20px 0;
    max-width: 680px;
}
@media (max-height: 820px) and (min-width: 1101px) {
    .convictions-headline {
        font-size: clamp(34px, 3.2vw, 48px);
        margin-bottom: 14px;
    }
}

.convictions-quote {
    font-family: 'Playfair Display', serif;
    font-size: clamp(20px, 1.8vw, 24px);
    font-style: italic;
    color: #96782e;
    border-left: 2px solid #96782e;
    padding-left: 20px;
    margin: 10px 0 18px 0;
    line-height: 1.35;
}

.convictions-paragraph,
.convictions-paragraph-secondary {
    font-family: 'Manrope', sans-serif;
    font-size: clamp(15px, 1.1vw, 18px);
    line-height: 1.6;
    color: #444748;
    max-width: 600px;
    text-align: left;
    margin: 0 0 12px 0;
}

.convictions-values {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 8px 0;
    margin: 18px 0 0;
    max-width: 600px;
    width: 100%;
    text-align: center;
    font-family: Manrope, sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #96782e;
}

.convictions-values span {
    display: inline-flex;
    align-items: center;
}

.convictions-values span:not(:last-child)::after {
    content: "·";
    margin: 0 12px;
    color: #96782e;
}

.convictions-cta-wrap {
    margin-top: 24px;
}
@media (max-height: 820px) and (min-width: 1101px) {
    .convictions-cta-wrap {
        margin-top: 16px;
    }
}

.cabinet-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 8px;
    padding: 0 0 10px;
    background: transparent;
    border: none;
    border-bottom: 1px solid #96782e;
    color: #e8dcc4;
    font-family: Manrope, sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    text-decoration: none;
    transition: color 0.35s ease, gap 0.35s ease, border-color 0.35s ease;
}

.cabinet-cta__arrow {
    display: inline-block;
    transition: transform 0.35s ease;
}

.cabinet-cta:hover {
    color: #96782e;
    gap: 16px;
}

.cabinet-cta:hover .cabinet-cta__arrow {
    transform: translateX(4px);
}

.convictions-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    height: 54px;
    padding: 0 36px;
    border: 1px solid #96782e;
    background-color: transparent;
    color: #111111;
    font-family: 'Manrope', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.35s ease;
    cursor: pointer;
    box-sizing: border-box;
}
.convictions-cta-btn:hover {
    background-color: #111111;
    color: #ffffff;
    border-color: #96782e;
}

/* MEDIA QUERIES TABLET & MOBILE */
@media (max-width: 1100px) {
    .convictions-section {
        min-height: auto;
        padding-top: 60px;
        padding-bottom: 60px;
    }
    .convictions-grid {
        display: flex;
        flex-direction: column;
        gap: 40px;
    }
    .convictions-content {
        order: -1;
        max-width: 100%;
    }
    .convictions-mosaic {
        min-height: 0;
        height: auto;
        gap: 20px 18px;
    }
    .convictions-col--left {
        padding-top: 36px;
        gap: 28px;
    }
    .convictions-col--right {
        gap: 36px;
    }
}

@media (max-width: 767px) {
    .convictions-mosaic {
        display: none;
    }
    .convictions-cta-btn {
        width: 100%;
    }
}

@media (max-width: 540px) {
    .convictions-mosaic {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
    .convictions-col--left {
        padding-top: 20px;
        gap: 14px;
    }
    .convictions-col--right {
        gap: 18px;
    }
}

/* ============================================================
   CONTACT — light editorial (stitch showcase 4)
   Full viewport page, offset by navbar height
   ============================================================ */
/* ------------------------------------------------------------------ */
/* FAQ — Questions fréquentes                                         */
/* ------------------------------------------------------------------ */
.faq-section {
    scroll-margin-top: var(--site-nav-height);
    padding: clamp(72px, 10vw, 120px) 0;
    background:
        linear-gradient(180deg, rgba(248, 245, 239, 0.35) 0%, #ffffff 38%, #ffffff 100%);
    color: #111111;
}

.faq-header {
    max-width: 720px;
    margin: 0 auto 40px;
    text-align: center;
}

.faq-eyebrow {
    margin: 0 0 12px;
    font-family: Manrope, system-ui, sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: #96782e;
}

.faq-title {
    margin: 0 0 16px;
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 700;
    line-height: 1.15;
    color: #111111;
}

.faq-lead {
    margin: 0;
    font-family: Manrope, system-ui, sans-serif;
    font-size: clamp(16px, 1.7vw, 18px);
    line-height: 1.65;
    color: #5c5663;
}

.faq-search {
    position: relative;
    max-width: 640px;
    margin: 0 auto 28px;
}

.faq-search__icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #96782e;
    pointer-events: none;
    display: inline-flex;
}

.faq-search__input {
    width: 100%;
    height: 52px;
    padding: 0 18px 0 46px;
    border: 1px solid #e4ddd0;
    background: #F8F5EF;
    color: #111111;
    font-family: Manrope, system-ui, sans-serif;
    font-size: 15px;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.faq-search__input::placeholder {
    color: #8a8490;
}

.faq-search__input:focus {
    border-color: #96782e;
    box-shadow: 0 0 0 3px rgba(150, 120, 46, 0.15);
}

.faq-list {
    max-width: 760px;
    margin: 0 auto;
    border-top: 1px solid #e8e2d6;
}

.faq-item {
    border-bottom: 1px solid #e8e2d6;
}

.faq-item.is-hidden-by-search {
    display: none;
}

.faq-item__q {
    margin: 0;
    font-size: inherit;
    font-weight: inherit;
}

.faq-item__btn {
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    padding: 22px 4px;
    border: 0;
    background: transparent;
    text-align: left;
    cursor: pointer;
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(18px, 2.2vw, 22px);
    font-weight: 600;
    line-height: 1.35;
    color: #111111;
    transition: color 0.2s ease;
}

.faq-item__btn:hover,
.faq-item__btn:focus-visible {
    color: #96782e;
}

.faq-item__btn:focus-visible {
    outline: 2px solid #96782e;
    outline-offset: 4px;
}

.faq-item__btn::after {
    content: "+";
    flex: 0 0 auto;
    width: 28px;
    height: 28px;
    margin-top: 2px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: Manrope, system-ui, sans-serif;
    font-size: 22px;
    font-weight: 400;
    line-height: 1;
    color: #96782e;
}

.faq-item.is-open .faq-item__btn::after {
    content: "−";
}

.faq-item__a {
    padding: 0 4px 22px;
}

.faq-item__a[hidden] {
    display: none;
}

.faq-item__a p {
    margin: 0;
    font-family: Manrope, system-ui, sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: #3a3542;
}

.faq-item__a a {
    color: #96782e;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.faq-item__a a:hover {
    color: #111111;
}

.faq-empty {
    max-width: 760px;
    margin: 28px auto 0;
    text-align: center;
    font-family: Manrope, system-ui, sans-serif;
    font-size: 15px;
    color: #6b6575;
}

@media (prefers-reduced-motion: reduce) {
    .faq-search__input,
    .faq-item__btn {
        transition: none;
    }
}

@media (max-width: 640px) {
    .faq-section {
        padding: 64px 0;
    }

    .faq-item__btn {
        padding: 18px 0;
        gap: 14px;
    }

    .faq-item__a {
        padding-bottom: 18px;
    }
}

/* ------------------------------------------------------------------ */
/* Contact                                                            */
/* ------------------------------------------------------------------ */
.contact-section {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: calc(100dvh - var(--site-nav-height));
    scroll-margin-top: var(--site-nav-height);
    padding: clamp(32px, 5vh, 64px) 0;
    background: #F5F1EA;
    color: #000000;
}

.contact-section > .container {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
}

.contact-heading {
    margin-bottom: clamp(28px, 5vh, 64px);
}

.contact-title {
    margin: 0;
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(36px, 5.8vw, 72px);
    font-weight: 400;
    line-height: 1.05;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    color: #000000;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(36px, 5vh, 56px);
    align-items: start;
}

@media (min-width: 768px) {
    .contact-layout {
        grid-template-columns: minmax(240px, 0.95fr) minmax(0, 1.25fr);
        gap: clamp(48px, 8vw, 96px);
        align-items: stretch;
    }
}

.contact-aside {
    display: flex;
    flex-direction: column;
    gap: 28px;
    height: 100%;
}

.contact-meta__label {
    margin: 0 0 16px;
    font-family: Manrope, sans-serif;
    font-size: 12px;
    font-weight: 600;
    line-height: 16px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #A39484;
}

.contact-meta__value {
    display: inline-block;
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(24px, 2.5vw, 32px);
    font-weight: 400;
    line-height: 1.25;
    color: #000000;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-meta__value:hover {
    color: #541F2A;
}

.contact-aside__note {
    margin: 0;
    margin-top: auto;
    padding-top: 8px;
    max-width: 22rem;
    font-family: Manrope, sans-serif;
    font-size: 16px;
    font-style: italic;
    font-weight: 400;
    line-height: 1.625;
    color: #645d53;
}

.contact-form {
    display: grid;
    gap: clamp(28px, 4.2vh, 44px);
    align-content: start;
}

.contact-form__row {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(28px, 4.2vh, 44px);
}

@media (min-width: 768px) {
    .contact-form__row {
        grid-template-columns: 1fr 1fr;
        gap: clamp(28px, 4.2vh, 44px);
    }
}

.contact-field {
    position: relative;
}

.contact-control {
    position: relative;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    margin: 0;
    padding: clamp(10px, 1.6vh, 16px) 0;
    border: 0;
    border-bottom: 1px solid #D8CEC1;
    border-radius: 0;
    background: transparent;
    color: #000000;
    font-family: Manrope, sans-serif;
    font-size: clamp(16px, 1.4vw, 20px);
    line-height: 1.5;
    outline: none;
    box-shadow: none;
    appearance: none;
    transition: border-color 0.3s ease;
}

.contact-form textarea {
    resize: none;
    min-height: clamp(72px, 12vh, 120px);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #A39484;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-bottom-color: #000000;
}

.contact-field.is-invalid input,
.contact-field.is-invalid textarea {
    border-bottom-color: #ba1a1a;
}

.contact-error {
    margin: 10px 0 0;
    font-family: Manrope, sans-serif;
    font-size: 12px;
    line-height: 1.4;
    color: #ba1a1a;
    opacity: 0;
    transform: translateY(-4px);
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.contact-field.is-invalid .contact-error {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.contact-field.is-invalid .contact-error[hidden] {
    display: block;
}

.contact-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    gap: 16px 24px;
}

.contact-submit {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 220px;
    min-height: 56px;
    padding: 20px 48px;
    border: 0;
    background: #000000;
    color: #ffffff;
    font-family: Manrope, sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.3s ease;
}

.contact-submit:hover {
    background: #541F2A;
}

.contact-submit__spinner,
.contact-submit__check {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.contact-submit__spinner {
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255, 255, 255, 0.25);
    border-top-color: currentColor;
    border-radius: 50%;
}

.contact-submit__check {
    font-size: 22px;
    font-variation-settings: "FILL" 1;
}

.contact-submit.is-loading .contact-submit__label,
.contact-submit.is-success .contact-submit__label {
    opacity: 0;
}

.contact-submit.is-loading .contact-submit__spinner {
    opacity: 1;
    animation: contactSpin 0.7s linear infinite;
}

.contact-submit.is-success {
    background: #2a3524;
    color: #96782e;
    pointer-events: none;
}

.contact-submit.is-success .contact-submit__check {
    opacity: 1;
    animation: contactPop 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.contact-success {
    margin: 0;
    font-family: Manrope, sans-serif;
    font-size: 14px;
    color: #541F2A;
    letter-spacing: 0.02em;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.contact-success.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.contact-success[hidden] {
    display: none;
}

.contact-success.is-visible[hidden] {
    display: block;
}

.contact-fail {
    margin: 0;
    font-family: Manrope, sans-serif;
    font-size: 14px;
    color: #7a1f1f;
    letter-spacing: 0.02em;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.4s ease, transform 0.4s ease;
    max-width: 36ch;
}

.contact-fail.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.contact-fail[hidden] {
    display: none;
}

.contact-fail.is-visible[hidden] {
    display: block;
}

.contact-recaptcha-note {
    margin: 14px 0 0;
    font-size: 11px;
    line-height: 1.5;
    color: rgba(58, 53, 66, 0.62);
    max-width: 36rem;
}

.contact-recaptcha-note a {
    color: inherit;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.contact-recaptcha-note a:hover {
    color: var(--color-secondary, #96782e);
}

.contact-aside__mail {
    margin: 1.25rem 0 0;
    font-family: Manrope, sans-serif;
    font-size: 15px;
}

.contact-aside__mail a {
    color: #96782e;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.contact-aside__mail a:hover {
    color: #541F2A;
}

.contact-honeypot {
    position: absolute;
    left: -10000px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.contact-section .sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.contact-reveal {
    width: 100%;
    opacity: 1;
    transform: none;
}

.js-ready .contact-reveal {
    opacity: 0;
    transform: translateY(24px);
    transition:
        opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

@media (min-width: 1024px) and (max-height: 760px) {
    .contact-title {
        font-size: clamp(34px, 5.2vw, 52px);
    }

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

    .contact-form,
    .contact-form__row {
        gap: 24px;
    }

    .contact-aside {
        gap: 20px;
    }
}

.js-ready .contact-reveal.is-in,
.contact-reveal.is-in {
    opacity: 1;
    transform: translateY(0);
}

.js-ready .contact-reveal .contact-title,
.js-ready .contact-reveal .contact-meta__block,
.js-ready .contact-reveal .contact-aside__note,
.js-ready .contact-reveal .contact-form__row,
.js-ready .contact-reveal .contact-field,
.js-ready .contact-reveal .contact-actions {
    opacity: 0;
    transform: translateY(14px);
    transition:
        opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.js-ready .contact-reveal.is-in .contact-title { transition-delay: 0.06s; }
.js-ready .contact-reveal.is-in .contact-meta__block:nth-child(1) { transition-delay: 0.14s; }
.js-ready .contact-reveal.is-in .contact-meta__block:nth-child(2) { transition-delay: 0.22s; }
.js-ready .contact-reveal.is-in .contact-aside__note { transition-delay: 0.3s; }
.js-ready .contact-reveal.is-in .contact-form__row { transition-delay: 0.18s; }
.js-ready .contact-reveal.is-in .contact-field[data-field="subject"] { transition-delay: 0.28s; }
.js-ready .contact-reveal.is-in .contact-field[data-field="message"] { transition-delay: 0.36s; }
.js-ready .contact-reveal.is-in .contact-actions { transition-delay: 0.44s; }

.js-ready .contact-reveal.is-in .contact-title,
.js-ready .contact-reveal.is-in .contact-meta__block,
.js-ready .contact-reveal.is-in .contact-aside__note,
.js-ready .contact-reveal.is-in .contact-form__row,
.js-ready .contact-reveal.is-in .contact-field,
.js-ready .contact-reveal.is-in .contact-actions {
    opacity: 1;
    transform: translateY(0);
}

@keyframes contactSpin {
    to { transform: rotate(360deg); }
}

@keyframes contactPop {
    0% { transform: scale(0.4); opacity: 0; }
    70% { transform: scale(1.15); opacity: 1; }
    100% { transform: scale(1); opacity: 1; }
}

@keyframes contactShake {
    0%, 100% { transform: translateX(0); }
    20% { transform: translateX(-6px); }
    40% { transform: translateX(6px); }
    60% { transform: translateX(-4px); }
    80% { transform: translateX(4px); }
}

.contact-field.is-shake {
    animation: contactShake 0.42s ease;
}

@media (max-width: 767px) {
    .contact-section {
        min-height: 100dvh;
        scroll-margin-top: 0;
        justify-content: flex-start;
        padding-top: clamp(40px, 8vh, 72px);
        padding-bottom: clamp(48px, 8vh, 80px);
    }

    .contact-aside {
        gap: 32px;
        margin-bottom: 8px;
        height: auto;
    }

    .contact-aside__note {
        margin-top: 0;
    }

    .contact-actions {
        justify-content: stretch;
    }

    .contact-submit {
        width: 100%;
        min-width: 0;
        padding-left: 24px;
        padding-right: 24px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .contact-reveal,
    .contact-reveal .contact-title,
    .contact-reveal .contact-meta__block,
    .contact-reveal .contact-aside__note,
    .contact-reveal .contact-form__row,
    .contact-reveal .contact-field,
    .contact-reveal .contact-actions,
    .contact-submit {
        transition: none !important;
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
    }
}

/* ============================================================
   PRIX & DISTINCTIONS
   ============================================================ */
.prix-section {
    background: #f5f3ee;
    padding: 72px 24px 88px;
}

.prix-wrap {
    max-width: 1120px;
    margin: 0 auto;
}

.prix-intro {
    max-width: 720px;
    margin-bottom: 48px;
}

.prix-label {
    display: block;
    font-family: Manrope, sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: #96782e;
    margin-bottom: 18px;
}

.prix-title {
    font-family: "Playfair Display", serif;
    font-size: 34px;
    line-height: 1.12;
    font-weight: 700;
    color: #111111;
    letter-spacing: -0.02em;
    margin: 0 0 24px;
}

.prix-title__line {
    display: block;
}

.prix-lead {
    font-family: "Playfair Display", serif;
    font-style: italic;
    font-size: 20px;
    line-height: 1.5;
    color: #111111;
    margin: 0 0 18px;
}

.prix-text {
    font-family: Manrope, sans-serif;
    font-size: 16px;
    line-height: 1.75;
    color: #5b5e5c;
    margin: 0;
}

.prix-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
    margin-bottom: 64px;
}

.prix-card {
    background: #fbf9f4;
    display: flex;
    flex-direction: column;
    min-width: 0;
    transition:
        transform 0.55s cubic-bezier(0.16, 1, 0.3, 1),
        box-shadow 0.55s cubic-bezier(0.16, 1, 0.3, 1);
}

.prix-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 28px 56px -32px rgba(17, 17, 17, 0.28);
}

.prix-card:has(.prix-card__media--video):hover {
    transform: none;
}

.prix-card__media {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    background: #ece8e0;
}

.prix-card__media picture,
.prix-card__media img {
    width: 100%;
    height: 100%;
    display: block;
}

.prix-card__media img {
    object-fit: cover;
    object-position: center;
    filter: grayscale(100%);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), filter 0.55s ease;
}

.prix-card:hover .prix-card__media img {
    transform: scale(1.04);
    filter: grayscale(0%);
}

.prix-card__media--slider > picture,
.prix-card__media--slider > img {
    position: absolute;
    inset: 0;
    opacity: 0;
    z-index: 0;
    transition:
        opacity 0.8s ease,
        transform 0.6s cubic-bezier(0.16, 1, 0.3, 1),
        filter 0.55s ease;
}

.prix-card__media--slider > picture.is-active,
.prix-card__media--slider > img.is-active {
    opacity: 1;
    z-index: 1;
}

.prix-card__media--slider > picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.prix-card__dots {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 12px;
    z-index: 2;
    display: flex;
    justify-content: center;
    gap: 6px;
    pointer-events: none;
}

.prix-card__dot {
    width: 6px;
    height: 6px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.45);
    pointer-events: auto;
    cursor: pointer;
}

.prix-card__dot.is-active {
    background: #96782e;
}

.prix-card__media--video {
    background: #1b1c19;
}

.prix-card__video-slot {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 0;
    border: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
    background: #1b1c19;
    color: #e8dcc4;
}

.prix-card__video-poster {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(20%);
}

.prix-card__video-slot .video-placeholder__play {
    position: relative;
    z-index: 1;
    background: rgba(17, 17, 17, 0.55);
}

.prix-card__video-slot:hover .video-placeholder__play {
    background: #96782e;
    color: #111111;
}

.prix-card__media--video video,
.prix-card__media--video iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
    background: #111111;
}

.prix-card__media--video:has(video) .prix-card__video-slot,
.prix-card__media--video:has(iframe) .prix-card__video-slot {
    display: none;
}

.prix-card__placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: Manrope, sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: #96782e;
    border: 1px solid rgba(150, 120, 46, 0.28);
    margin: 14px;
}

.prix-card__media:has(img) .prix-card__placeholder {
    display: none;
}

.prix-card__body {
    padding: 28px 24px 32px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}

.prix-card__year {
    position: relative;
    display: inline-block;
    font-family: Manrope, sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: #96782e;
}

.prix-card__year::after {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    margin-top: 8px;
    background: #96782e;
    transform: scaleX(0);
    transform-origin: left center;
}

.prix-card__title {
    font-family: "Playfair Display", serif;
    font-size: 24px;
    line-height: 1.2;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: #111111;
    margin: 0;
}

.prix-card__place {
    font-family: Manrope, sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.04em;
    line-height: 1.45;
    color: #96782e;
    margin: 0;
}

.prix-card__desc {
    font-family: Manrope, sans-serif;
    font-size: 15px;
    line-height: 1.7;
    color: #5b5e5c;
    margin: 8px 0 0;
}

.prix-card__watch {
    display: inline-block;
    margin-top: 12px;
    font-family: Manrope, sans-serif;
    font-size: 13px;
    letter-spacing: 0.04em;
    color: #96782e;
    text-decoration: none;
    border-bottom: 1px solid rgba(150, 120, 46, 0.35);
}

.prix-card__watch:hover {
    color: #7a6124;
    border-bottom-color: #96782e;
}

.prix-closing {
    max-width: 720px;
}

.prix-closing__title {
    font-family: "Playfair Display", serif;
    font-size: 26px;
    line-height: 1.25;
    font-weight: 600;
    color: #111111;
    letter-spacing: -0.02em;
    margin: 0 0 22px;
}

.prix-closing__text {
    font-family: Manrope, sans-serif;
    font-size: 16px;
    line-height: 1.75;
    color: #5b5e5c;
    margin: 0 0 16px;
}

.prix-quote {
    position: relative;
    margin: 32px 0 0;
    padding: 0 0 0 22px;
    border-left: 0;
    font-family: "Playfair Display", serif;
    font-style: italic;
    font-size: 20px;
    line-height: 1.5;
    color: #111111;
}

.prix-quote::before {
    content: "";
    position: absolute;
    left: 0;
    top: 4px;
    bottom: 4px;
    width: 2px;
    background: #96782e;
    transform: scaleY(0);
    transform-origin: top center;
}

.js-ready .prix-label,
.js-ready .prix-title__line,
.js-ready .prix-lead,
.js-ready .prix-text,
.js-ready .prix-card,
.js-ready .prix-closing__title,
.js-ready .prix-closing__text,
.js-ready .prix-quote {
    opacity: 0;
    translate: 0 22px;
}

.prix-section.is-in .prix-label,
.prix-section.is-in .prix-title__line,
.prix-section.is-in .prix-lead,
.prix-section.is-in .prix-text,
.prix-section.is-in .prix-card,
.prix-section.is-in .prix-closing__title,
.prix-section.is-in .prix-closing__text,
.prix-section.is-in .prix-quote {
    animation: prixFadeUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.prix-section.is-in .prix-quote::before {
    animation: prixLineGrow 1.1s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
}

.prix-section.is-in .prix-card__year::after {
    animation: prixLineGrowX 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: calc(0.95s + (var(--i, 0) * 0.14s));
}

.prix-section.is-in .prix-label { animation-delay: 0.05s; }
.prix-section.is-in .prix-title__line:nth-child(1) { animation-delay: 0.16s; }
.prix-section.is-in .prix-title__line:nth-child(2) { animation-delay: 0.3s; }
.prix-section.is-in .prix-lead { animation-delay: 0.46s; }
.prix-section.is-in .prix-text { animation-delay: 0.6s; }
.prix-section.is-in .prix-card {
    animation-delay: calc(0.72s + (var(--i, 0) * 0.14s));
}
.prix-section.is-in .prix-closing__title { animation-delay: 1.15s; }
.prix-section.is-in .prix-closing__text:nth-of-type(1) { animation-delay: 1.28s; }
.prix-section.is-in .prix-closing__text:nth-of-type(2) { animation-delay: 1.4s; }
.prix-section.is-in .prix-quote { animation-delay: 1.55s; }

@keyframes prixFadeUp {
    to {
        opacity: 1;
        translate: 0 0;
    }
}

@keyframes prixLineGrow {
    from { transform: scaleY(0); }
    to { transform: scaleY(1); }
}

@keyframes prixLineGrowX {
    from { transform: scaleX(0); }
    to { transform: scaleX(1); }
}

@media (prefers-reduced-motion: reduce) {
    .js-ready .prix-label,
    .js-ready .prix-title__line,
    .js-ready .prix-lead,
    .js-ready .prix-text,
    .js-ready .prix-card,
    .js-ready .prix-closing__title,
    .js-ready .prix-closing__text,
    .js-ready .prix-quote,
    .prix-section.is-in .prix-label,
    .prix-section.is-in .prix-title__line,
    .prix-section.is-in .prix-lead,
    .prix-section.is-in .prix-text,
    .prix-section.is-in .prix-card,
    .prix-section.is-in .prix-closing__title,
    .prix-section.is-in .prix-closing__text,
    .prix-section.is-in .prix-quote {
        animation: none !important;
        opacity: 1 !important;
        translate: 0 0 !important;
        transform: none !important;
    }

    .prix-card:hover {
        transform: none;
    }

    .prix-quote::before,
    .prix-card__year::after {
        transform: none;
        animation: none !important;
    }
}

@media (min-width: 900px) {
    .prix-section {
        padding: 110px 64px 120px;
    }

    .prix-title {
        font-size: 48px;
    }

    .prix-intro {
        margin-bottom: 56px;
    }

    .prix-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 24px;
        margin-bottom: 80px;
    }

    .prix-card__title {
        font-size: 26px;
    }

    .prix-closing__title {
        font-size: 32px;
    }

    .prix-quote {
        font-size: 22px;
    }
}

/* ============================================================
   RÉSEAUX — intro + galerie
   ============================================================ */
.medias-intro {
    display: grid;
    gap: 28px;
    margin-bottom: 0;
}

.medias-label {
    display: block;
    font-family: Manrope, sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: #96782e;
    margin-bottom: 18px;
}

.medias-title {
    font-family: "Playfair Display", serif;
    font-size: 34px;
    line-height: 1.12;
    font-weight: 700;
    color: #111111;
    letter-spacing: -0.02em;
    margin: 0;
    max-width: 11ch;
}

.medias-intro__copy {
    position: relative;
    padding-left: 22px;
}

.medias-intro__copy::before {
    content: "";
    position: absolute;
    left: 0;
    top: 4px;
    bottom: 4px;
    width: 2px;
    background: #96782e;
}

.medias-lead {
    font-family: "Playfair Display", serif;
    font-style: italic;
    font-size: 20px;
    line-height: 1.5;
    color: #111111;
    margin: 0 0 18px;
}

.medias-text {
    font-family: Manrope, sans-serif;
    font-size: 16px;
    line-height: 1.75;
    color: #5b5e5c;
    margin: 0;
}

.medias-outlets {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 10px 0;
    margin: 40px 0 56px;
    padding: 0;
    border: none;
    font-family: Manrope, sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #96782e;
}

.medias-outlets span {
    display: inline-flex;
    align-items: center;
}

.medias-outlets span:not(:last-child)::after {
    content: "·";
    margin: 0 14px;
    color: #96782e;
    opacity: 0.7;
}

.medias-gallery-head {
    display: flex;
    align-items: center;
    gap: 18px;
    margin: 0 0 28px;
}

.medias-gallery-head::before {
    content: "";
    width: 36px;
    height: 1px;
    background: #96782e;
    flex: none;
}

.medias-gallery-title {
    font-family: "Playfair Display", serif;
    font-size: 22px;
    font-weight: 600;
    color: #111111;
    margin: 0;
    letter-spacing: -0.02em;
}

.medias-gallery-slider {
    position: relative;
}

.medias-gallery-viewport {
    overflow: hidden;
}

.medias-gallery-track {
    display: flex;
    transition: transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
}

.medias-gallery-page {
    flex: 0 0 100%;
    min-width: 0;
    width: 100%;
}

.medias-gallery-page[hidden] {
    display: grid;
}

.medias-gallery-btn {
    position: absolute;
    top: 50%;
    z-index: 4;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 1px solid #96782e;
    background: #fbf9f4;
    color: #111111;
    cursor: pointer;
    transform: translateY(-50%);
    transition: background 0.25s ease, color 0.25s ease;
}

.medias-gallery-btn[hidden] {
    display: none;
}

.medias-gallery-btn .material-symbols-outlined {
    font-size: 26px;
    line-height: 1;
}

.medias-gallery-btn:hover,
.medias-gallery-btn:focus {
    background: #96782e;
    color: #111111;
    outline: none;
}

.medias-gallery-btn--prev {
    left: 0;
}

.medias-gallery-btn--next {
    right: 0;
}

@media (min-width: 768px) {
    .medias-gallery-btn--prev {
        left: -8px;
    }

    .medias-gallery-btn--next {
        right: -8px;
    }
}

.medias-gallery {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

@media (min-width: 768px) {
    .medias-intro {
        grid-template-columns: 1.05fr 0.95fr;
        gap: 64px;
        align-items: end;
        margin-bottom: 8px;
    }

    .medias-title {
        font-size: 52px;
        line-height: 1.06;
    }

    .medias-lead {
        font-size: 22px;
        line-height: 1.45;
    }

    .medias-intro__copy {
        padding-left: 28px;
        padding-bottom: 6px;
    }

    .medias-outlets {
        margin: 48px 0 64px;
        padding: 0;
        font-size: 12px;
        letter-spacing: 0.2em;
        justify-content: center;
    }

    .medias-gallery-title {
        font-size: 28px;
    }

    .medias-gallery-head {
        margin-bottom: 36px;
    }

    .medias-gallery {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        grid-auto-rows: 240px;
        grid-auto-flow: dense;
        gap: 18px;
    }
}

@media (min-width: 1100px) {
    .medias-gallery {
        grid-auto-rows: 280px;
        gap: 20px;
    }
}

.medias-gallery__item {
    position: relative;
    margin: 0;
    overflow: hidden;
    background: #111111;
    aspect-ratio: 3 / 4;
    cursor: pointer;
}

.medias-gallery__item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 45%, rgba(17, 17, 17, 0.28) 100%);
    pointer-events: none;
    opacity: 0.55;
    transition: opacity 0.5s ease;
}

@media (min-width: 768px) {
    .medias-gallery__item {
        aspect-ratio: auto;
        height: 100%;
    }

    .medias-gallery__item--tall {
        grid-row: span 2;
    }

    .medias-gallery__item--wide {
        grid-column: span 2;
    }
}

.medias-gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    filter: grayscale(100%);
    transition:
        transform 0.6s cubic-bezier(0.16, 1, 0.3, 1),
        filter 0.55s ease;
}

.medias-gallery__item picture {
    display: block;
    width: 100%;
    height: 100%;
}

.medias-gallery__img-mobile {
    display: none !important;
}

@media (max-width: 767px) {
    .medias-gallery__item .medias-gallery__img-desktop {
        display: none !important;
    }
    .medias-gallery__item .medias-gallery__img-mobile {
        display: block !important;
        width: 100%;
        height: 100%;
    }
}

.medias-gallery__item:hover img {
    transform: scale(1.05);
    filter: grayscale(0%);
}

.medias-gallery__item:hover::after {
    opacity: 0.12;
}

.medias-gallery__caption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
    margin: 0;
    padding: 32px 14px 14px;
    font-family: Manrope, sans-serif;
    color: #ffffff;
    text-align: left;
    text-transform: uppercase;
    background: linear-gradient(180deg, transparent, rgba(17, 17, 17, 0.72));
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.45);
    pointer-events: none;
}

.medias-gallery__name {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.medias-gallery__place {
    display: inline-flex;
    align-items: flex-start;
    gap: 7px;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.02em;
    line-height: 1.35;
    text-transform: none;
    color: rgba(255, 255, 255, 0.92);
    max-width: 100%;
}

.medias-gallery__flag {
    flex: none;
    width: 16px;
    height: 11px;
    display: block;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.28);
}

.medias-gallery__item--mobile-only {
    display: none;
}

@media (max-width: 767px) {
    #medias .medias-gallery__item--tall,
    #medias .medias-gallery__item--wide {
        grid-column: auto;
        grid-row: auto;
    }

    .medias-gallery__item--mobile-only {
        display: block;
    }
}

.key-figures {
    min-height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #111111;
}

.key-figures__container {
    width: 100%;
}

.key-figures__line {
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.55em 0.7em;
    text-align: center;
    font-family: "Playfair Display", serif;
    font-size: 22px;
    line-height: 1.4;
    font-weight: 500;
    letter-spacing: 0.01em;
    color: #e8dcc4;
}

.key-figures__sep {
    color: #96782e;
    font-weight: 700;
}

.js-ready .key-figures__part,
.js-ready .key-figures__sep {
    opacity: 0;
    translate: 0 14px;
}

.key-figures.is-in .key-figures__part,
.key-figures.is-in .key-figures__sep {
    animation: keyFiguresIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: calc(var(--i, 0) * 0.12s);
}

@keyframes keyFiguresIn {
    to {
        opacity: 1;
        translate: 0 0;
    }
}

@media (min-width: 1024px) {
    .key-figures__line {
        font-size: 32px;
        gap: 0.65em 0.9em;
        letter-spacing: 0.02em;
    }
}

@media (prefers-reduced-motion: reduce) {
    .js-ready .key-figures__part,
    .js-ready .key-figures__sep,
    .key-figures.is-in .key-figures__part,
    .key-figures.is-in .key-figures__sep {
        animation: none !important;
        opacity: 1 !important;
        translate: 0 0 !important;
    }
}

/* ================================================================
   Ma manière de travailler
   ================================================================ */
.maniere-section {
    position: relative;
    overflow: hidden;
    padding: 72px 24px 80px;
    background: #fbf9f4;
}

.maniere-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 55% 45% at 8% 20%, rgba(150, 120, 46, 0.08), transparent 70%),
        radial-gradient(ellipse 40% 50% at 92% 80%, rgba(150, 120, 46, 0.05), transparent 65%);
    pointer-events: none;
}

.maniere-wrap {
    position: relative;
    z-index: 1;
    max-width: 1120px;
    margin: 0 auto;
}

.maniere-inner {
    display: grid;
    gap: 40px;
}

.maniere-label {
    display: inline-block;
    font-family: Manrope, sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: #96782e;
    margin-bottom: 20px;
}

.maniere-title {
    font-family: "Playfair Display", serif;
    font-size: 34px;
    line-height: 1.12;
    font-weight: 700;
    color: #111111;
    letter-spacing: -0.02em;
}

.maniere-title__line {
    display: block;
}

.maniere-body {
    position: relative;
    padding-left: 22px;
}

.maniere-rule {
    position: absolute;
    left: 0;
    top: 4px;
    width: 2px;
    height: calc(100% - 8px);
    background: #96782e;
    transform-origin: top center;
}

.maniere-lead {
    font-family: "Playfair Display", serif;
    font-style: italic;
    font-size: 20px;
    line-height: 1.5;
    color: #111111;
    margin: 0 0 20px;
}

.maniere-text {
    font-family: Manrope, sans-serif;
    font-size: 17px;
    line-height: 1.7;
    color: #444748;
    margin: 0;
}

.js-ready .maniere-label,
.js-ready .maniere-title__line,
.js-ready .maniere-lead,
.js-ready .maniere-text,
.js-ready .maniere-card {
    opacity: 0;
    translate: 0 22px;
}

.js-ready .maniere-rule {
    transform: scaleY(0);
}

.maniere-section.is-in .maniere-label,
.maniere-section.is-in .maniere-title__line,
.maniere-section.is-in .maniere-lead,
.maniere-section.is-in .maniere-text,
.maniere-section.is-in .maniere-card {
    animation: maniereFadeUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.maniere-section.is-in .maniere-rule {
    animation: maniereLineGrow 1.1s cubic-bezier(0.16, 1, 0.3, 1) 0.35s forwards;
}

.maniere-section.is-in .maniere-label { animation-delay: 0.05s; }
.maniere-section.is-in .maniere-title__line:nth-child(1) { animation-delay: 0.16s; }
.maniere-section.is-in .maniere-title__line:nth-child(2) { animation-delay: 0.3s; }
.maniere-section.is-in .maniere-lead { animation-delay: 0.48s; }
.maniere-section.is-in .maniere-text { animation-delay: 0.62s; }
.maniere-section.is-in .maniere-card {
    animation-delay: calc(0.78s + (var(--i, 0) * 0.09s));
}

.maniere-principles {
    display: grid;
    grid-template-columns: 1fr;
    gap: 36px;
    margin-top: 56px;
    border: none;
}

.maniere-card {
    position: relative;
    padding: 0;
    background: transparent;
    border: none;
    box-shadow: none;
}

.maniere-card::before {
    display: none;
}

.maniere-card__top {
    display: flex;
    align-items: baseline;
    gap: 14px;
    margin-bottom: 10px;
}

.maniere-card__num {
    flex: none;
    font-family: Manrope, sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;
    color: #96782e;
}

.maniere-card__title {
    font-family: "Playfair Display", serif;
    font-size: 22px;
    font-weight: 600;
    letter-spacing: -0.02em;
    text-transform: none;
    color: #111111;
    margin: 0;
    transition: color 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.maniere-card.is-active .maniere-card__title,
.maniere-card:hover .maniere-card__title {
    color: #96782e;
}

.maniere-card__title::after {
    display: none;
}

.maniere-card__text {
    font-family: Manrope, sans-serif;
    font-size: 15px;
    line-height: 1.65;
    color: #5b5e5c;
    margin: 0;
    max-width: 32ch;
    padding-left: 38px;
}

.maniere-card:hover {
    transform: none;
    border: none;
    box-shadow: none;
}

@keyframes maniereFadeUp {
    to {
        opacity: 1;
        translate: 0 0;
    }
}

@keyframes maniereLineGrow {
    from { transform: scaleY(0); }
    to { transform: scaleY(1); }
}

@media (min-width: 640px) {
    .maniere-principles {
        grid-template-columns: 1fr 1fr;
        gap: 40px 48px;
    }
}

@media (min-width: 900px) {
    .maniere-section {
        padding: 110px 64px 120px;
    }

    .maniere-inner {
        grid-template-columns: 1.05fr 0.95fr;
        gap: 80px;
        align-items: end;
    }

    .maniere-title {
        font-size: 48px;
        line-height: 1.08;
        max-width: 11ch;
    }

    .maniere-body {
        padding-left: 28px;
        padding-bottom: 8px;
    }

    .maniere-lead {
        font-size: 22px;
        line-height: 1.45;
    }

    .maniere-principles {
        grid-template-columns: repeat(3, 1fr);
        gap: 48px 56px;
        margin-top: 72px;
    }

    .maniere-card {
        padding: 0;
        min-height: 0;
        border: none;
    }

    .maniere-card:nth-child(3n+2) {
        border: none;
    }

    .maniere-card__num {
        font-size: 11px;
    }

    .maniere-card__title {
        font-size: 26px;
    }

    .maniere-card__text {
        font-size: 16px;
        padding-left: 40px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .js-ready .maniere-label,
    .js-ready .maniere-title__line,
    .js-ready .maniere-lead,
    .js-ready .maniere-text,
    .js-ready .maniere-card,
    .js-ready .maniere-rule,
    .maniere-section.is-in .maniere-label,
    .maniere-section.is-in .maniere-title__line,
    .maniere-section.is-in .maniere-lead,
    .maniere-section.is-in .maniere-text,
    .maniere-section.is-in .maniere-card,
    .maniere-section.is-in .maniere-rule {
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
        translate: 0 0 !important;
    }
}

/* ============================================================
   TÉMOIGNAGES
   ============================================================ */
.temoignages-section {
    background: #fbf9f4;
    padding: 72px 24px 88px;
}

.temoignages-wrap {
    max-width: 1120px;
    margin: 0 auto;
}

.temoignages-intro {
    max-width: 720px;
    margin-bottom: 48px;
}

.temoignages-label {
    display: block;
    font-family: Manrope, sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: #96782e;
    margin-bottom: 16px;
}

.temoignages-title {
    font-family: "Playfair Display", serif;
    font-size: 34px;
    line-height: 1.12;
    font-weight: 700;
    color: #111111;
    letter-spacing: -0.02em;
    margin: 0 0 18px;
}

.temoignages-lead {
    font-family: "Playfair Display", serif;
    font-style: italic;
    font-size: 20px;
    line-height: 1.5;
    color: #111111;
    margin: 0;
}

.temoignages-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 22px;
    align-items: start;
}

.temoignage-card {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    padding: 36px 28px 32px;
    background: #ffffff;
    border: 1px solid rgba(150, 120, 46, 0.18);
    transition:
        box-shadow 0.45s ease,
        border-color 0.45s ease;
}

.temoignage-mark {
    display: block;
    font-family: "Playfair Display", serif;
    font-size: 64px;
    line-height: 0.6;
    color: #96782e;
    margin-bottom: 22px;
}

.temoignage-quote {
    position: relative;
    font-family: "Playfair Display", serif;
    font-style: italic;
    font-size: 17px;
    line-height: 1.55;
    color: #1b1c19;
    margin: 0 0 16px;
    max-height: calc(1.55em * 4);
    overflow: hidden;
    transition: max-height 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Dégradé collé au bas du texte (plus de bande blanche au milieu) */
.temoignage-quote::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1.7em;
    background: linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.85) 55%,
        #ffffff 100%
    );
    pointer-events: none;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.temoignage-more {
    position: relative;
    z-index: 2;
    align-self: flex-start;
    margin: 0 0 20px;
    padding: 0;
    border: 0;
    background: none;
    cursor: pointer;
    font-family: Manrope, sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #96782e;
    transition: color 0.25s ease;
}

.temoignage-more:hover {
    color: #111111;
}

.temoignage-more:focus-visible {
    outline: 2px solid #96782e;
    outline-offset: 4px;
}

.temoignage-author {
    margin-top: auto;
    position: relative;
    z-index: 1;
}

.temoignage-author strong {
    display: block;
    font-family: Manrope, sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #111111;
}

.temoignage-author span {
    display: block;
    margin-top: 0;
    font-family: Manrope, sans-serif;
    font-size: 13px;
    color: #5b5e5c;
}

.temoignage-card.is-open {
    z-index: 4;
    border-color: #96782e;
    box-shadow: 0 20px 48px -28px rgba(17, 17, 17, 0.18);
}

.temoignage-card.is-open .temoignage-quote {
    max-height: 90em;
}

.temoignage-card.is-open .temoignage-quote::after {
    opacity: 0;
}

.temoignage-card.is-open .temoignage-more [data-label-more] {
    display: none;
}

.temoignage-card.is-open .temoignage-more [data-label-less] {
    display: inline !important;
}

.js-ready .temoignage-card {
    opacity: 0;
    translate: 0 24px;
}

.temoignages-section.is-in .temoignage-card {
    animation: temoignageIn 0.85s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.temoignages-section.is-in .temoignage-card:nth-child(1) { animation-delay: 0.08s; }
.temoignages-section.is-in .temoignage-card:nth-child(2) { animation-delay: 0.2s; }

@keyframes temoignageIn {
    to {
        opacity: 1;
        translate: 0 0;
    }
}

@media (min-width: 900px) {
    .temoignages-section {
        padding: 110px 64px 120px;
    }

    .temoignages-title {
        font-size: 52px;
    }

    .temoignages-lead {
        font-size: 22px;
        max-width: 36ch;
    }

    .temoignages-intro {
        margin-bottom: 56px;
    }

    .temoignages-grid {
        grid-template-columns: 1fr 1fr;
        gap: 28px;
        align-items: start;
    }

    .temoignage-card {
        padding: 44px 36px 36px;
    }

    .temoignage-quote {
        font-size: 18px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .js-ready .temoignage-card,
    .temoignages-section.is-in .temoignage-card {
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
        translate: 0 0 !important;
        transition: none !important;
    }

    .temoignage-quote {
        max-height: none !important;
    }

    .temoignage-quote::after {
        display: none;
    }
}

/* ============================================================
   VIDÉOS — carrousel téléphones 3D
   ============================================================ */
.videos-section {
    position: relative;
    background:
        radial-gradient(ellipse 70% 55% at 50% 35%, rgba(150, 120, 46, 0.1), transparent 60%),
        linear-gradient(180deg, #f7f4ee 0%, #ebe6dc 100%);
    padding: 72px 16px 100px;
    overflow: hidden;
}

.videos-wrap {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
}

.videos-intro {
    margin-bottom: 28px;
    text-align: center;
}

.videos-label {
    display: block;
    font-family: Manrope, sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: #96782e;
    margin-bottom: 14px;
}

.videos-title {
    font-family: "Playfair Display", serif;
    font-size: 34px;
    line-height: 1.12;
    font-weight: 700;
    color: #111111;
    letter-spacing: -0.02em;
    margin: 0;
}

.phone-carousel {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.phone-carousel__stage {
    position: relative;
    width: min(980px, 100%);
    height: clamp(540px, 78vw, 720px);
    perspective: 1600px;
    perspective-origin: 50% 45%;
    transform-style: preserve-3d;
}

.phone-slide {
    position: absolute;
    top: 50%;
    left: 50%;
    margin: 0;
    width: var(--phone-w, 250px);
    transform-style: preserve-3d;
    transition:
        transform 0.75s cubic-bezier(0.22, 1, 0.36, 1),
        opacity 0.55s ease,
        filter 0.55s ease;
    will-change: transform, opacity, filter;
}

.phone-slide.is-active {
    --phone-w: 318px;
    z-index: 30;
    opacity: 1;
    filter: none;
    pointer-events: auto;
    transform: translate3d(-50%, -50%, 100px) scale(1);
}

.phone-slide.is-prev {
    --phone-w: 248px;
    z-index: 10;
    opacity: 0.78;
    filter: brightness(0.42) saturate(0.65);
    pointer-events: none;
    transform: translate3d(calc(-50% - 168px), -50%, -180px) rotateY(30deg) scale(0.84);
}

.phone-slide.is-next {
    --phone-w: 248px;
    z-index: 10;
    opacity: 0.78;
    filter: brightness(0.42) saturate(0.65);
    pointer-events: none;
    transform: translate3d(calc(-50% + 168px), -50%, -180px) rotateY(-30deg) scale(0.84);
}

.phone-slide.is-hidden {
    z-index: 1;
    opacity: 0;
    pointer-events: none;
    filter: brightness(0.3);
}

.phone-slide.is-hidden.is-far-prev {
    transform: translate3d(calc(-50% - 280px), -50%, -300px) rotateY(40deg) scale(0.7);
}

.phone-slide.is-hidden.is-far-next {
    transform: translate3d(calc(-50% + 280px), -50%, -300px) rotateY(-40deg) scale(0.7);
}

.phone-mockup {
    position: relative;
    width: 100%;
    padding: 0 4px;
    filter: drop-shadow(0 28px 40px rgba(17, 17, 17, 0.28));
}

.phone-slide.is-active .phone-mockup {
    filter: drop-shadow(0 36px 56px rgba(17, 17, 17, 0.34));
}

/* Cadre aluminium / titanium plus réaliste */
.phone-mockup__bezel {
    position: relative;
    border-radius: 44px;
    padding: 9px;
    background:
        linear-gradient(
            145deg,
            #ececef 0%,
            #b8b8be 18%,
            #f7f7f8 34%,
            #9a9aa2 52%,
            #d8d8de 72%,
            #8e8e96 88%,
            #e4e4e8 100%
        );
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.55),
        inset 0 0 0 2px rgba(40, 40, 45, 0.35),
        inset 1px 0 0 rgba(255, 255, 255, 0.35),
        inset -1px 0 0 rgba(0, 0, 0, 0.2),
        0 1px 2px rgba(0, 0, 0, 0.2);
}

.phone-mockup__bezel::before {
    content: "";
    position: absolute;
    inset: 5px;
    z-index: 1;
    border-radius: 38px;
    background: #0b0b0c;
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.08),
        0 0 0 1px rgba(0, 0, 0, 0.55);
    pointer-events: none;
}

.phone-mockup__bezel::after {
    content: "";
    position: absolute;
    inset: 9px;
    z-index: 2;
    border-radius: 34px;
    box-shadow:
        inset 0 0 24px rgba(255, 255, 255, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.12);
    background: linear-gradient(
        120deg,
        rgba(255, 255, 255, 0.14) 0%,
        rgba(255, 255, 255, 0) 28%,
        rgba(255, 255, 255, 0) 62%,
        rgba(255, 255, 255, 0.05) 100%
    );
    mix-blend-mode: soft-light;
    pointer-events: none;
}

.phone-slide:not(.is-active) .phone-mockup__bezel {
    background:
        linear-gradient(
            145deg,
            #5a5a60 0%,
            #2e2e34 30%,
            #4a4a50 55%,
            #1a1a1e 100%
        );
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.12),
        inset 0 0 0 2px rgba(0, 0, 0, 0.45),
        0 1px 2px rgba(0, 0, 0, 0.35);
}

.phone-mockup__screen {
    position: relative;
    z-index: 3;
    border-radius: 34px;
    overflow: hidden;
    background: #000;
    isolation: isolate;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.phone-mockup__island {
    position: absolute;
    top: 12px;
    left: 50%;
    z-index: 6;
    width: 98px;
    height: 28px;
    transform: translateX(-50%);
    border-radius: 999px;
    background: #050505;
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.08),
        0 1px 2px rgba(0, 0, 0, 0.45);
    pointer-events: none;
}

.phone-mockup__island::before,
.phone-mockup__island::after {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 50%;
}

.phone-mockup__island::before {
    right: 10px;
    width: 10px;
    height: 10px;
    background:
        radial-gradient(circle at 35% 35%, #4a6a8a 0%, #1a2a3a 45%, #0a0a0a 100%);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.15);
}

.phone-mockup__island::after {
    right: 26px;
    width: 7px;
    height: 7px;
    background: #141416;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.phone-mockup__btn {
    position: absolute;
    z-index: 4;
    border-radius: 2px;
    pointer-events: none;
    background: linear-gradient(180deg, #d8d8de 0%, #9c9ca4 45%, #b8b8c0 100%);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.55),
        inset 0 -1px 0 rgba(0, 0, 0, 0.25),
        0 1px 1px rgba(0, 0, 0, 0.2);
}

.phone-slide:not(.is-active) .phone-mockup__btn {
    background: linear-gradient(180deg, #66666e 0%, #2e2e34 100%);
}

.phone-mockup__btn--silent {
    left: -3px;
    top: 98px;
    width: 4px;
    height: 28px;
}

.phone-mockup__btn--vol-up {
    left: -3px;
    top: 146px;
    width: 4px;
    height: 46px;
}

.phone-mockup__btn--vol-down {
    left: -3px;
    top: 200px;
    width: 4px;
    height: 46px;
}

.phone-mockup__btn--power {
    right: -3px;
    top: 168px;
    width: 4px;
    height: 64px;
}

.video-frame {
    position: relative;
    width: 100%;
    aspect-ratio: 9 / 16;
    overflow: hidden;
    background: #111111;
}

.video-frame iframe,
.video-frame video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

.video-facade {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    padding: 0;
    border: 0;
    cursor: pointer;
    background: #111111;
    color: #e8dcc4;
}

.phone-slide:not(.is-active) .video-facade {
    cursor: default;
}

.video-facade__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.video-facade__veil {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(17, 17, 17, 0.05) 20%, rgba(17, 17, 17, 0.4) 100%);
    pointer-events: none;
}

.video-badge {
    position: absolute;
    top: 52px;
    left: 14px;
    z-index: 2;
    padding: 6px 12px;
    font-family: Manrope, sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #111111;
    background: #96782e;
    pointer-events: none;
    border-radius: 2px;
}

.video-facade .video-placeholder__play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.video-placeholder__play {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border: 1px solid rgba(232, 220, 196, 0.55);
    border-radius: 50%;
    color: #f5f1ea;
    background: rgba(17, 17, 17, 0.45);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    padding-left: 3px;
    transition: background 0.35s ease, color 0.35s ease, border-color 0.35s ease, transform 0.35s ease;
}

.phone-slide.is-active .video-facade:hover .video-placeholder__play {
    background: #96782e;
    border-color: #96782e;
    color: #111111;
    transform: translate(-50%, -50%) scale(1.06);
}

.phone-slide:not(.is-active) .video-placeholder__play,
.phone-slide:not(.is-active) .video-badge {
    opacity: 0;
}

.phone-carousel__controls {
    position: relative;
    z-index: 40;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: -28px;
    padding: 8px 10px;
    border-radius: 999px;
    background: rgba(28, 28, 30, 0.88);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
}

.phone-carousel__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: #f5f1ea;
    cursor: pointer;
    transition: background 0.25s ease, color 0.25s ease, transform 0.2s ease;
}

.phone-carousel__btn:hover {
    background: #96782e;
    color: #111111;
}

.phone-carousel__btn:active {
    transform: scale(0.94);
}

.phone-carousel__btn--toggle[aria-pressed="true"] .icon-pause {
    display: none;
}

.phone-carousel__btn--toggle[aria-pressed="true"] .icon-play {
    display: block !important;
}

@media (min-width: 768px) {
    .videos-title {
        font-size: 48px;
    }

    .videos-intro {
        margin-bottom: 40px;
    }

    .phone-carousel__stage {
        height: 740px;
    }

    .phone-slide.is-active {
        --phone-w: 350px;
    }

    .phone-slide.is-prev,
    .phone-slide.is-next {
        --phone-w: 270px;
    }

    .phone-slide.is-prev {
        transform: translate3d(calc(-50% - 210px), -50%, -200px) rotateY(30deg) scale(0.86);
    }

    .phone-slide.is-next {
        transform: translate3d(calc(-50% + 210px), -50%, -200px) rotateY(-30deg) scale(0.86);
    }

    .phone-slide.is-hidden.is-far-prev {
        transform: translate3d(calc(-50% - 340px), -50%, -320px) rotateY(42deg) scale(0.72);
    }

    .phone-slide.is-hidden.is-far-next {
        transform: translate3d(calc(-50% + 340px), -50%, -320px) rotateY(-42deg) scale(0.72);
    }

    .phone-carousel__controls {
        margin-top: -40px;
    }
}

@media (max-width: 640px) {
    .phone-carousel__stage {
        height: 560px;
    }

    .phone-slide.is-active {
        --phone-w: min(290px, 74vw);
    }

    .phone-slide.is-prev {
        transform: translate3d(calc(-50% - 112px), -50%, -150px) rotateY(24deg) scale(0.76);
    }

    .phone-slide.is-next {
        transform: translate3d(calc(-50% + 112px), -50%, -150px) rotateY(-24deg) scale(0.76);
    }

    .phone-slide.is-hidden.is-far-prev,
    .phone-slide.is-hidden.is-far-next {
        opacity: 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    .phone-slide {
        transition: none;
    }
}

/* ============================================================
   LEGAL PAGES + COOKIE BANNER (RGPD)
   ============================================================ */
.legal-page {
    background: #F5F1EA;
    padding: clamp(64px, 10vw, 120px) 24px;
}

.legal-page__inner {
    max-width: 760px;
    margin: 0 auto;
}

.legal-page__eyebrow {
    margin: 0 0 12px;
    font-family: Manrope, sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: #C9A84E;
}

.legal-page__title {
    margin: 0 0 16px;
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(34px, 5vw, 52px);
    font-weight: 600;
    line-height: 1.1;
    color: #111111;
}

.legal-page__lead {
    margin: 0 0 40px;
    font-family: Manrope, sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: #5f635e;
}

.legal-block {
    margin-bottom: 36px;
}

.legal-block h2 {
    margin: 0 0 12px;
    font-family: "Playfair Display", Georgia, serif;
    font-size: 22px;
    font-weight: 600;
    color: #111111;
}

.legal-block p,
.legal-block li {
    font-family: Manrope, sans-serif;
    font-size: 15px;
    line-height: 1.7;
    color: #3d3f3c;
}

.legal-block p {
    margin: 0 0 12px;
}

.legal-block ul {
    margin: 0 0 12px;
    padding-left: 1.2rem;
}

.legal-block a {
    color: #7a5c2b;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.legal-block a:hover {
    color: #541F2A;
}

.legal-note {
    padding: 12px 14px;
    background: rgba(232, 197, 111, 0.12);
    border-left: 2px solid #E8C56F;
    color: #5f635e !important;
    font-size: 13px !important;
}

.legal-updated {
    margin-top: 48px;
    font-family: Manrope, sans-serif;
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #8a8e88;
}

.contact-consent {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-family: Manrope, sans-serif;
    font-size: 13px;
    line-height: 1.55;
    color: #5f635e;
    cursor: pointer;
}

.contact-consent input {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    border: 0;
    clip: rect(0, 0, 0, 0);
    overflow: hidden;
    white-space: nowrap;
}

.contact-consent__box {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    margin-top: 1px;
    flex-shrink: 0;
    border: 2px solid #111111;
    background: #ffffff;
    color: transparent;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.contact-consent__check {
    display: block;
    pointer-events: none;
}

.contact-consent:hover .contact-consent__box {
    border-color: #96782e;
    box-shadow: 0 0 0 3px rgba(150, 120, 46, 0.18);
}

.contact-consent input:focus-visible + .contact-consent__box {
    outline: 2px solid #96782e;
    outline-offset: 3px;
}

.contact-consent input:checked + .contact-consent__box {
    background: #111111;
    border-color: #111111;
    color: #f5f1ea;
}

.contact-consent input:checked:hover + .contact-consent__box {
    background: #96782e;
    border-color: #96782e;
    color: #111111;
}

.contact-consent__text {
    flex: 1;
    min-width: 0;
}

.contact-consent a {
    color: #7a5c2b;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.contact-field--consent.is-invalid .contact-consent__box {
    border-color: #b42318;
    box-shadow: 0 0 0 3px rgba(180, 35, 24, 0.12);
}

.contact-field--consent .contact-error {
    margin-left: 34px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.footer-baseline {
    margin: 0;
    max-width: 28em;
    font-family: "Playfair Display", Georgia, serif;
    font-style: italic;
    font-size: 15px;
    line-height: 1.5;
    font-weight: 400;
    color: rgba(247, 244, 238, 0.72);
}

/* Lien footer « Gérer les cookies » : mêmes classes Tailwind que Mentions Légales */
.cookie-banner {
    position: fixed;
    left: 16px;
    right: 16px;
    bottom: 16px;
    z-index: 10000;
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.35s ease, transform 0.35s ease;
    pointer-events: none;
}

.cookie-banner.is-visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.cookie-banner__inner {
    max-width: 920px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 16px 24px;
    padding: 20px 22px;
    background: #111111;
    color: #f7f4ee;
    border: 1px solid rgba(232, 197, 111, 0.35);
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.28);
}

.cookie-banner__title {
    margin: 0 0 6px;
    font-family: Manrope, sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #E8C56F;
}

.cookie-banner__text {
    margin: 0;
    max-width: 54ch;
    font-family: Manrope, sans-serif;
    font-size: 13px;
    line-height: 1.55;
    color: rgba(247, 244, 238, 0.82);
}

.cookie-banner__text a {
    color: #E8C56F;
    text-decoration: underline;
    text-underline-offset: 2px;
}

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

.cookie-btn {
    min-height: 42px;
    padding: 10px 18px;
    border: 1px solid transparent;
    font-family: Manrope, sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.cookie-btn--primary {
    background: #E8C56F;
    color: #111111;
}

.cookie-btn--primary:hover {
    background: #f0d896;
}

.cookie-btn--ghost {
    background: transparent;
    color: #f7f4ee;
    border-color: rgba(247, 244, 238, 0.35);
}

.cookie-btn--ghost:hover {
    border-color: #E8C56F;
    color: #E8C56F;
}

@media (max-width: 640px) {
    .cookie-banner {
        left: 10px;
        right: 10px;
        bottom: 10px;
    }

    .cookie-banner__actions {
        width: 100%;
    }

    .cookie-btn {
        flex: 1 1 auto;
    }
}
/* ============================================================
   ARTICLE PAGES (Blog)
   ============================================================ */
.article-story {
    background:
        radial-gradient(ellipse 70% 40% at 50% 0%, rgba(150, 120, 46, 0.08), transparent 55%),
        linear-gradient(180deg, #fbf9f4 0%, #f3efe6 100%);
}

.article-story__back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 28px;
    font-family: Manrope, sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #96782e;
    text-decoration: none;
    transition: color 0.25s ease, transform 0.25s ease;
}

.article-story__back:hover {
    color: #111111;
    transform: translateX(-3px);
}

.article-story__hero {
    position: relative;
    width: 100%;
    min-height: clamp(420px, 68vh, 640px);
    overflow: hidden;
    background: #111111;
}

.article-story__hero-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 28%;
    transform: scale(1.04);
    animation: articleHeroZoom 1.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@media (max-width: 767px) {
    .article-story__hero {
        min-height: clamp(360px, 58vh, 520px);
    }

    .article-story__hero-content {
        min-height: clamp(360px, 58vh, 520px);
        padding: 40px 20px 44px;
    }

    .article-story__hero-img {
        object-position: center 22%;
        transform: scale(1.02);
    }
}

.article-story__hero-veil {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(17, 17, 17, 0.25) 0%, rgba(17, 17, 17, 0.15) 35%, rgba(17, 17, 17, 0.72) 100%);
    pointer-events: none;
}

.article-story__hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: clamp(420px, 68vh, 640px);
    max-width: 920px;
    margin: 0 auto;
    padding: 48px 24px 52px;
    color: #fbf9f4;
}

.article-story__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
    font-family: Manrope, sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: #E8C56F;
}

.article-story__eyebrow::before {
    content: "";
    width: 28px;
    height: 1px;
    background: #E8C56F;
}

.article-story__title {
    margin: 0 0 18px;
    font-family: "Playfair Display", serif;
    font-size: clamp(2rem, 5vw, 3.6rem);
    line-height: 1.08;
    font-weight: 700;
    letter-spacing: -0.02em;
    max-width: 16ch;
}

.article-story__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 22px;
    font-family: Manrope, sans-serif;
    font-size: 12px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(251, 249, 244, 0.78);
}

.article-story__shell {
    max-width: 780px;
    margin: -48px auto 0;
    position: relative;
    z-index: 3;
    padding: 0 20px 96px;
}

.article-story__panel {
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(150, 120, 46, 0.16);
    box-shadow: 0 28px 60px -36px rgba(17, 17, 17, 0.35);
    padding: clamp(28px, 5vw, 56px);
}

.article-story__lead {
    margin: 0 0 28px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(150, 120, 46, 0.22);
    font-family: "Playfair Display", serif;
    font-style: italic;
    font-size: clamp(1.15rem, 2.2vw, 1.45rem);
    line-height: 1.55;
    color: #3a3c38;
}

.article-story__body p {
    margin: 0 0 1.4rem;
    font-family: "Playfair Display", serif;
    font-size: clamp(1.05rem, 1.6vw, 1.2rem);
    line-height: 1.8;
    color: #1b1c19;
}

.article-story__body p:first-of-type::first-letter {
    float: left;
    margin: 0.08em 0.12em 0 0;
    font-size: 3.4em;
    line-height: 0.85;
    font-weight: 700;
    color: #96782e;
}

.article-story__figure {
    margin: 2.2rem -8px;
    overflow: hidden;
    background: #111;
}

.article-story__figure img {
    display: block;
    width: 100%;
    max-height: 460px;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.article-story__figure:hover img {
    transform: scale(1.03);
}

.article-story__figure figcaption {
    margin: 0;
    padding: 12px 16px;
    font-family: Manrope, sans-serif;
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #8a8e88;
    background: #fbf9f4;
}

.article-story__footer {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-top: 40px;
    padding-top: 28px;
    border-top: 1px solid rgba(150, 120, 46, 0.2);
}

.article-story__cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 22px;
    background: #111111;
    color: #fbf9f4;
    text-decoration: none;
    font-family: Manrope, sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.article-story__cta:hover {
    background: #96782e;
    color: #111111;
    transform: translateY(-2px);
}

.article-story__related {
    font-family: Manrope, sans-serif;
    font-size: 13px;
    color: #5b5e5c;
}

.article-story__related a {
    color: #96782e;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.25s ease;
}

.article-story__related a:hover {
    border-bottom-color: #96782e;
}

.article-reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.article-reveal.is-in {
    opacity: 1;
    transform: translateY(0);
}

.article-reveal-delay-1 { transition-delay: 0.08s; }
.article-reveal-delay-2 { transition-delay: 0.18s; }
.article-reveal-delay-3 { transition-delay: 0.28s; }
.article-reveal-delay-4 { transition-delay: 0.38s; }

@keyframes articleHeroZoom {
    to { transform: scale(1); }
}

@media (min-width: 900px) {
    .article-story__hero-content {
        padding: 64px 32px 72px;
    }

    .article-story__shell {
        margin-top: -72px;
        padding-bottom: 120px;
    }

    .article-story__figure {
        margin-left: -24px;
        margin-right: -24px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .article-story__hero-img,
    .article-reveal,
    .article-story__figure img {
        animation: none !important;
        transition: none !important;
        opacity: 1 !important;
        transform: none !important;
    }
}

.article-card-play {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: rgba(17, 17, 17, 0.55);
    color: #fbf9f4;
    border: 1px solid rgba(232, 197, 111, 0.65);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    pointer-events: none;
    transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.article-card:hover .article-card-play {
    background: #96782e;
    color: #111111;
    transform: translate(-50%, -50%) scale(1.06);
}

.article-story__video {
    margin: 0 0 2rem;
}

.article-story__video-frame {
    position: relative;
    overflow: hidden;
    background: #0b0b0c;
    border: 1px solid rgba(150, 120, 46, 0.28);
    box-shadow:
        0 24px 48px rgba(17, 17, 17, 0.18),
        inset 0 0 0 1px rgba(255, 255, 255, 0.04);
    aspect-ratio: 16 / 9;
}

.article-story__video--vertical {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.article-story__video--vertical .article-story__video-frame {
    width: min(360px, 88%);
    aspect-ratio: 9 / 16;
    max-height: min(720px, 78vh);
    border-radius: 18px;
    box-shadow:
        0 28px 56px rgba(17, 17, 17, 0.22),
        0 0 0 1px rgba(150, 120, 46, 0.35),
        inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.article-story__video-el {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #0b0b0c;
}

.article-story__yt-facade {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    padding: 0;
    cursor: pointer;
    background: #111;
}

.article-story__yt-facade .video-facade__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-story__yt-facade .video-placeholder__play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    width: 72px;
    height: 72px;
}

.article-story__yt-facade:hover .video-placeholder__play {
    background: #96782e;
    border-color: #96782e;
    color: #111111;
    transform: translate(-50%, -50%) scale(1.06);
}

.article-story__video-frame iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.article-story__video--vertical .article-story__video-el {
    object-fit: cover;
}

.article-story__video-caption {
    margin: 14px 0 0;
    text-align: center;
    font-family: Manrope, sans-serif;
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #8a8e88;
}

@media (min-width: 900px) {
    .article-story__video:not(.article-story__video--vertical) {
        margin-left: -24px;
        margin-right: -24px;
    }

    .article-story__video--vertical .article-story__video-frame {
        width: 380px;
    }
}

.article-story__link-box {
    margin: 0 0 1.6rem !important;
    padding: 16px 18px;
    border-left: 2px solid #96782e;
    background: rgba(150, 120, 46, 0.06);
}

.article-story__link-box a {
    font-family: Manrope, sans-serif !important;
    font-size: 12px !important;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #96782e;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.25s ease, color 0.25s ease;
}

.article-story__link-box a:hover {
    color: #111111;
    border-bottom-color: #111111;
}

.article-story__signoff {
    margin-top: 2rem !important;
    font-family: "Playfair Display", serif !important;
    font-style: italic;
    font-size: 1.25rem !important;
    color: #96782e !important;
}

/* --- Language switcher FR / EN --- */
.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
  margin-right: 8px;
  flex-shrink: 0;
  font-family: 'Manrope', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #3a3542;
  position: relative;
  z-index: 2;
}
.lang-sep { opacity: 0.35; user-select: none; }
.lang-btn {
  background: none;
  border: 0;
  padding: 4px 2px;
  color: inherit;
  cursor: pointer;
  opacity: 0.45;
  font: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
  transition: opacity 0.25s ease, color 0.25s ease;
}
.lang-btn.is-active,
.lang-btn:hover {
  opacity: 1;
  color: #96782e;
}
.mobile-menu__lang {
  display: flex;
  justify-content: center;
  margin: 1.25rem 0 0.5rem;
}
.mobile-menu__lang .lang-switch { margin: 0; }
@media (min-width: 768px) {
  .lang-switch { margin-right: 12px; }
}
/* Desktop: socials + FR/EN stay grouped on the right */
@media (min-width: 1024px) {
  .nav-socials + .lang-switch {
    margin-left: 16px;
  }
}
