/* GEREJE V2 — styles accueil (inspirés maquette, code original) */

:root {
    --gj-brand: #860021;
    --gj-brand-dark: #5c0016;
    --gj-ink: #191919;
    --gj-muted: #a2a1a0;
    --gj-surface: #f2f1f0;
    --gj-border: #e2e1e0;
    --gj-font-logo: 'Trajan Pro', serif;
    --gj-font-serif: 'Trajan Pro', serif;
    --gj-header-height: 72px;
}

::selection {
    color: #fff;
    background: var(--gj-brand);
}

/* ─── Base ─── */
*, *::before, *::after { box-sizing: border-box; }

html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    font-family: 'Trajan Pro', serif;
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    color: var(--gj-ink);
    -webkit-font-smoothing: antialiased;
}

a { color: var(--gj-brand); text-decoration: none; }
a:hover { color: var(--gj-brand-dark); }

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

h1, h2, h3, h4, h5, h6 {
    font-family: 'Crimson Text', Georgia, serif;
    font-weight: 600;
    color: var(--gj-ink);
}

/* ─── Header (gerejecorpfinance.com — prod) ─── */
#header ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.header {
    position: absolute;
    top: 25px;
    width: 100%;
    min-height: var(--gj-header-height);
    line-height: calc(var(--gj-header-height) - 4px);
    z-index: 99;
    background-color: transparent;
}

.header .container {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

.header .container::after {
    content: '';
    display: table;
    clear: both;
}

#header .navbar-toggle {
    height: 100%;
    width: 60px;
    background: none;
    position: absolute;
    top: 0;
    right: 0;
    padding: 0;
    margin: 0;
    border: none;
    border-radius: 0;
    cursor: pointer;
    display: block;
    z-index: 100;
}

.header .navbar-toggle i {
    position: relative;
    top: 2px;
    font-size: 16px;
    color: #fff !important;
}

.header.header-bg .navbar-toggle i {
    color: #000 !important;
}

.header #logo {
    float: left;
    margin-top: 5px;
}

.header #logo a {
    display: block;
    height: 52px;
    line-height: 0;
}

.header #logo a img {
    position: relative;
    max-height: 62px;
    height: 52px;
    width: auto;
}

.header #logo .dark-logo {
    display: none;
}

.header.header-bg #logo .light-logo {
    display: none;
}

.header.header-bg #logo .dark-logo {
    display: block;
}

.header .nav-menu {
    line-height: normal;
    float: right;
}

.header .nav-menu li {
    line-height: normal;
    padding: 0;
}

.header .nav-menu > ul > li {
    display: inline-block;
    position: relative;
}

.header.header-bg {
    position: fixed;
    top: 0;
    background-color: #fff;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
    animation: headerFadeIn 0.4s ease both;
}

.header .nav-menu ul > li > a {
    outline: 0;
    text-transform: uppercase;
    position: relative;
    display: block;
    font-size: 13px;
    font-weight: 600;
    padding: 15px 12px;
    letter-spacing: 0;
    color: rgba(255, 255, 255, 0.66);
    white-space: nowrap;
}

.header .nav-menu > ul > li > a::before {
    position: absolute;
    top: 100%;
    left: 12px;
    width: 0;
    margin-top: -10px;
    border-bottom: 1px solid transparent;
    content: '';
    transition: width 0.2s, border-color 0.2s;
}

.header .nav-menu ul > li:hover > a::before,
.header .nav-menu ul > li.active > a::before {
    width: 20px;
    margin-left: 0;
}

.header .nav-menu ul > li.active > a,
.header .nav-menu ul > li:hover > a {
    color: #fff;
}

.header .nav-menu ul > li.active > a::before,
.header .nav-menu ul > li:hover > a::before {
    border-bottom-color: #fff !important;
}

.header.header-bg .nav-menu ul > li > a {
    color: #191919 !important;
}

.header.header-bg .nav-menu ul > li.active > a::before,
.header.header-bg .nav-menu ul > li:hover > a::before {
    border-bottom-color: #860021 !important;
}

.header.header-bg .nav-menu ul > li.active > a,
.header.header-bg .nav-menu ul > li:hover > a {
    color: #860021 !important;
}

.header .nav-menu ul > li.lang-switch > a {
    margin-left: 8px;
    padding: 6px 12px !important;
    border: 1px solid rgba(255, 255, 255, 0.55);
    border-radius: 2px;
    font-size: 10px !important;
    background: rgba(0, 0, 0, 0.15);
}

.header .nav-menu ul > li.lang-switch > a::before {
    display: none !important;
}

.header.header-bg .nav-menu ul > li.lang-switch > a {
    border-color: rgba(25, 25, 25, 0.35);
    background: transparent;
    color: #191919 !important;
}

.header.header-bg .nav-menu ul > li.lang-switch:hover > a {
    color: #860021 !important;
    border-color: #860021;
}

@keyframes headerFadeIn {
    0% {
        top: -60px;
        opacity: 0;
    }

    100% {
        top: 0;
        opacity: 1;
    }
}

.nav-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 97;
    background: rgba(0, 0, 0, 0.45);
    opacity: 0;
    transition: opacity 0.3s ease;
}

body.nav-open .nav-backdrop {
    display: block;
    opacity: 1;
}

@media (min-width: 992px) {
    #nav-menu {
        display: block !important;
    }

    #header .navbar-toggle {
        display: none !important;
    }

    .header .container {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
    }

    .header #logo {
        float: none;
        flex-shrink: 0;
    }

    .header .nav-menu {
        float: none !important;
        width: auto !important;
        flex: 1 1 auto;
        min-width: 0;
        text-align: right;
    }

    .header .nav-menu > ul {
        display: flex;
        flex-wrap: wrap;
        justify-content: flex-end;
        align-items: center;
    }

    .header .nav-menu > ul > li {
        display: block;
    }

    .header .nav-menu ul > li > a {
        padding: 15px 10px;
        font-size: 12px;
    }
}

@media (max-width: 1200px) {
    .header .container {
        width: 100% !important;
    }
}

@media (max-width: 991px) {
    :root {
        --gj-header-height: 60px;
    }

    .header {
        top: 0;
    }

    #nav-menu:not(.in) {
        display: none !important;
    }

    #nav-menu.in {
        display: block !important;
    }

    .header .nav-menu {
        float: none;
        line-height: normal;
        padding: 0;
        margin: 0;
        position: absolute;
        left: 0;
        top: 100%;
        width: 100%;
        z-index: 98;
        box-shadow: 0 1px 1px rgba(0, 0, 0, 0.12);
        background: #191919;
    }

    .header .nav-menu > ul > li {
        display: block;
        width: 99%;
    }

    .header .nav-menu ul > li > a::before {
        display: none;
    }

    .header .nav-menu ul > li:hover > a::before,
    .header .nav-menu ul > li.active > a::before {
        display: none;
    }

    .header .nav-menu ul li a {
        padding: 10px 15px;
        color: #fff !important;
    }

    .header .nav-menu ul li:hover a,
    .header .nav-menu ul li.active a,
    .header.header-bg .nav-menu ul li:hover a,
    .header.header-bg .nav-menu ul li.active a {
        color: #fff !important;
        background: #860021;
    }

    .header .nav-menu ul > li.lang-switch > a {
        display: inline-block;
        margin: 10px 0 15px 10px;
    }

    .header #logo a img {
        max-height: 46px;
    }

    body.nav-open {
        overflow: hidden;
    }
}

.gj-container {
    width: min(1170px, 90%);
    margin-left: auto;
    margin-right: auto;
    padding-left: 15px;
    padding-right: 15px;
}

.gj-container--wide {
    width: min(1240px, 92%);
}

.gj-section {
    position: relative;
    padding: 100px 0;
    background: #fff;
}

.gj-section.gj-section--surface {
    background: var(--gj-surface);
}

.gj-section.gj-section--pb0 {
    padding-bottom: 0;
}

.gj-section-overlay-white {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.88);
    z-index: 1;
    pointer-events: none;
}

.gj-section-overlay-white2 {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.92);
    z-index: 1;
    pointer-events: none;
}

.gj-bg-wrap {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.gj-bg-parallax {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

/* Sign mark — lignes dégradé + badge .sign2 */
.gj-section:has(> .gj-section-divider),
.gj-track-section:has(> .gj-section-divider),
.gj-expertise-section:has(> .gj-section-divider) {
    overflow: visible;
}

.gj-section-divider {
    position: relative;
    height: 0;
    z-index: 49;
    pointer-events: none;
}

.gj-section-divider::before,
.gj-section-divider::after {
    content: '';
    position: absolute;
    top: 0;
    width: calc(50% - 58px);
    height: 1px;
    pointer-events: none;
}

.gj-section-divider::before {
    left: 5%;
    background: linear-gradient(to right, transparent 0%, rgba(0, 0, 0, 0.1) 100%);
}

.gj-section-divider::after {
    right: 5%;
    background: linear-gradient(to left, transparent 0%, rgba(0, 0, 0, 0.1) 100%);
}

.gj-section-divider .gj-sign {
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    top: -46px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 92px;
    height: 92px;
    z-index: 50;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 -5px 5px 0 rgba(0, 0, 0, 0.1);
    line-height: 1;
    pointer-events: none;
}

.gj-section-divider .gj-sign img {
    display: block;
    width: auto;
    height: 48px;
    max-width: 120px;
    object-fit: contain;
}

/* Espace sous le badge pour ne pas chevaucher le titre */
.gj-section > .gj-section-divider + .gj-container,
.gj-track-section > .gj-section-divider + .gj-container,
.gj-expertise-section > .gj-section-divider + .gj-expertise-section__inner {
    padding-top: 60px;
}

/* Section header */
.gj-header-title {
    margin-bottom: 50px;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.gj-header-tag {
    color: var(--gj-brand);
    font-size: 13px;
    letter-spacing: 5px;
    line-height: 13px;
    text-transform: uppercase;
    margin-bottom: 10px;
    font-weight: 400;
}

/* Tag section centré — traits bordeaux en dégradé (comme .sub page About) */
.gj-sub {
    margin: 0 0 14px;
    font-family: 'Trajan Pro', serif;
    font-size: 11px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--gj-brand);
    text-align: center;
}

.gj-sub::before,
.gj-sub::after {
    position: relative;
    top: -4px;
    width: 28px;
    height: 1px;
    display: inline-block;
    content: '';
}

.gj-sub::before {
    margin-right: 12px;
    background: linear-gradient(90deg, transparent, rgba(134, 0, 33, 0.35));
}

.gj-sub::after {
    margin-left: 12px;
    background: linear-gradient(90deg, rgba(134, 0, 33, 0.35), transparent);
}

.gj-sub--left {
    text-align: left;
}

.gj-header-title h2,
.gj-expertise-header__title {
    margin: 0 0 16px;
    font-family: var(--gj-font-serif);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gj-ink);
    text-wrap: balance;
}

.gj-header-title p {
    color: var(--gj-ink);
    font-size: 16px;
    line-height: 24px;
    margin: 0;
}

/* Subtitle banner (partnerships) */
.gj-subtitle-banner {
    position: absolute;
    top: -12px;
    left: 0;
    right: 0;
    text-align: center;
    z-index: 100;
    font-size: 13px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 5px;
    color: var(--gj-brand);
}

.gj-subtitle-banner span {
    background: #fff;
    padding: 0 30px;
}

/* Buttons — effet shine diagonal comme prod (.btn-color:after) */
.gj-btn {
    display: inline-block;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 25px;
    transition: background 0.3s ease-in-out, color 0.3s ease-in-out, border-color 0.3s ease-in-out;
    text-decoration: none !important;
    position: relative;
    overflow: hidden;
}

.gj-btn-medium {
    font-size: 13px;
    padding: 8px 22px;
}

.gj-btn-large {
    font-size: 13px;
    padding: 10px 26px;
}

.gj-btn-small {
    font-size: 11px;
    padding: 5px 15px;
}

.gj-btn-color {
    color: #fff !important;
    background: var(--gj-brand);
    transition: background 0.4s cubic-bezier(0.4, 0, 0.2, 1), color 0.3s ease, transform 0.2s ease, box-shadow 0.4s ease;
    box-shadow: 0 2px 8px rgba(134, 0, 33, 0.2);
}

.gj-btn-color::after {
    content: '';
    height: 220%;
    width: 35%;
    position: absolute;
    z-index: 1;
    right: 0;
    top: 10%;
    margin: -5px 0 0 -5px;
    transform-origin: 0 0;
    transform: rotate(-20deg) translateX(0);
    background: rgba(255, 255, 255, 0.15);
    transition:
        width 0.45s cubic-bezier(0.4, 0, 0.2, 1),
        background 0.45s cubic-bezier(0.4, 0, 0.2, 1),
        transform 0.45s cubic-bezier(0.4, 0, 0.2, 1),
        right 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.gj-btn-color:hover,
.gj-btn-color:focus-visible {
    color: #fff !important;
    background: var(--gj-brand-dark);
    box-shadow: 0 6px 18px rgba(134, 0, 33, 0.32);
}

.gj-btn-color:hover::after,
.gj-btn-color:focus-visible::after {
    width: 52%;
    right: 6%;
    background: rgba(255, 255, 255, 0.24);
    transform: rotate(-20deg) translateX(-4px);
}

.gj-btn-color:active {
    transform: scale(0.98);
    box-shadow: 0 2px 6px rgba(134, 0, 33, 0.24);
}

.gj-btn-color:active::after {
    width: 48%;
    background: rgba(255, 255, 255, 0.18);
}

@media (prefers-reduced-motion: no-preference) {
    .gj-about-grid__panel .gj-btn-color::after {
        animation: gj-btn-shine-breathe 3.5s ease-in-out infinite;
    }

    .gj-about-grid__panel .gj-btn-color:hover::after,
    .gj-about-grid__panel .gj-btn-color:focus-visible::after,
    .gj-about-grid__panel .gj-btn-color:active::after {
        animation: none;
    }
}

@keyframes gj-btn-shine-breathe {
    0%, 100% {
        background: rgba(255, 255, 255, 0.13);
        width: 34%;
    }

    50% {
        background: rgba(255, 255, 255, 0.2);
        width: 38%;
    }
}

.gj-btn-dark-border {
    color: var(--gj-ink) !important;
    background: transparent;
    border: 1px solid var(--gj-ink);
}

.gj-btn-dark-border:hover,
.gj-btn-dark-border:focus-visible {
    background: var(--gj-ink);
    color: #fff !important;
}

.gj-btn-light-border {
    color: #fff !important;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.45);
}

.gj-btn-light-border:hover,
.gj-btn-light-border:focus-visible {
    background: #fff;
    color: var(--gj-ink) !important;
    border-color: #fff;
}

@media (prefers-reduced-motion: reduce) {
    .gj-btn-color::after {
        display: none;
    }

    .gj-btn-color:active {
        transform: none;
    }
}

.gj-cta-row {
    text-align: center;
    margin-top: 30px;
}

/* Prose */
.prose-gereje p {
    margin-bottom: 10px;
    font-size: 16px;
    line-height: 24px;
    color: var(--gj-ink);
}

.prose-gereje p:last-child {
    margin-bottom: 0;
}

.prose-gereje strong {
    color: var(--gj-brand);
    font-weight: 600;
}

/* ─── Hero ─── */
.gj-hero {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    background: var(--gj-ink);
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 72px;
}

.gj-hero-video-wrap {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.gj-hero-video-wrap video,
.gj-hero-video-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gj-hero-video-wrap video.gj-hero-video {
    opacity: 0;
    transition: opacity 0.8s ease;
}

.gj-hero-video-wrap video.gj-hero-video.is-ready {
    opacity: 1;
}

.gj-hero-mask {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.1) 100%);
}

.gj-hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 68rem;
    margin: 48px auto 0;
    padding: 0 32px;
    text-align: center;
}

.gj-hero .text-slider {
    width: 100%;
    min-height: 7rem;
}

.gj-hero .text-slider > .item {
    width: 100%;
    padding: 0 0.5rem;
}

.gj-hero .text-slider > .item h1,
.gj-hero .text-slider > .item h2 {
    font-family: var(--gj-font-logo);
    font-size: clamp(1.375rem, 2.8vw, 2rem);
    line-height: 1.5;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-weight: 500;
    font-style: normal;
    margin: 0 auto;
    max-width: 62rem;
    text-wrap: balance;
    text-shadow: 0 2px 28px rgba(0, 0, 0, 0.45);
}

.gj-hero .text-slider.gj-fade-slider > .item {
    display: none;
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.85s ease, transform 0.85s ease;
}

.gj-hero .text-slider.gj-fade-slider > .item.is-active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.gj-hero .text-slider:not(.gj-fade-slider) > .item:not(:first-child) {
    display: none;
}

.gj-hero-progress {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.625rem;
    margin-top: 2.5rem;
}

.gj-hero-progress__dot {
    display: block;
    width: 1.5rem;
    height: 2px;
    background: rgba(255, 255, 255, 0.28);
    border-radius: 1px;
    transition: width 0.35s ease, background 0.35s ease;
}

.gj-hero-progress__dot.is-active {
    width: 2.5rem;
    background: var(--gj-brand);
}

@media (max-width: 767px) {
    .gj-hero-content {
        padding: 0 20px;
    }

    .gj-hero .text-slider {
        min-height: 6rem;
    }

    .gj-hero .text-slider > .item h1,
.gj-hero .text-slider > .item h2 {
        font-size: 1.25rem;
        line-height: 1.48;
        letter-spacing: 0.1em;
    }

    .gj-hero-progress {
        margin-top: 2rem;
    }
}

.gj-video-button {
    position: absolute;
    bottom: 80px;
    left: 0;
    right: 0;
    z-index: 3;
    text-align: center;
}

.gj-video-button a {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: #fff;
    text-decoration: none !important;
}

.gj-video-icon {
    position: relative;
    width: 75px;
    height: 75px;
    border-radius: 50%;
    background: #fff;
    color: var(--gj-brand);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s, color 0.3s;
}

.gj-video-icon:hover {
    background: var(--gj-brand);
    color: #fff;
}

.gj-video-icon svg {
    width: 28px;
    height: 28px;
    margin-left: 4px;
}

.gj-video-sonar {
    position: absolute;
    top: -10px;
    left: -10px;
    width: 95px;
    height: 95px;
    border-radius: 50%;
    background: #fff;
    animation: gj-sonar 2s linear infinite;
    z-index: -1;
}

@keyframes gj-sonar {
    0% { opacity: 1; transform: scale(0.1); }
    100% { opacity: 0; transform: scale(1.2); }
}

.gj-video-label {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: none;
}

/* ─── Story (about, values, history) ─── */
.gj-story {
    position: relative;
}

.gj-story-bg {
    position: relative;
    margin-right: 15%;
    overflow: hidden;
}

.gj-story-bg img {
    width: 85%;
    max-width: 85%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.gj-story:hover .gj-story-bg img {
    transform: scale(1.05);
}

.gj-story-panel {
    position: absolute;
    right: 0;
    bottom: 5%;
    width: min(380px, 42%);
    border-right: 3px solid var(--gj-brand);
    padding: 50px;
    background: linear-gradient(to right, #fff 0%, var(--gj-surface) 100%);
}

.gj-story-panel h2 {
    font-family: 'Crimson Text', Georgia, serif;
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    line-height: 1.15;
    text-transform: uppercase;
    margin: 0 0 15px;
    color: var(--gj-ink);
}

.gj-story-panel .gj-btn {
    margin-top: 10px;
}

.gj-story--right .gj-story-bg {
    margin-left: 15%;
    margin-right: 0;
}

.gj-story--right .gj-story-panel {
    right: auto;
    left: 0;
    border-right: none;
    border-left: 3px solid var(--gj-brand);
    background: linear-gradient(to left, #fff 0%, var(--gj-surface) 100%);
}

.gj-story-panel--top {
    bottom: auto;
    top: 100px;
}

/* ─── Cartes éditoriales accueil (Histoire, Growth 360°) ─── */
.gj-history-section__inner,
.gj-growth-section__inner {
    position: relative;
    z-index: 2;
}

.gj-history,
.gj-growth {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
    align-items: stretch;
    max-width: 1120px;
    margin: 0 auto;
    background: #fff;
    box-shadow:
        0 24px 64px rgba(0, 0, 0, 0.07),
        0 2px 8px rgba(0, 0, 0, 0.04);
    overflow: hidden;
}

.gj-history__figure,
.gj-growth__figure {
    margin: 0;
    padding: clamp(32px, 5vw, 56px) clamp(24px, 4vw, 48px);
    background: linear-gradient(145deg, #fafaf9 0%, var(--gj-surface) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 1px solid var(--gj-border);
}

.gj-history__figure picture,
.gj-growth__figure picture {
    display: block;
    width: 100%;
    max-width: 500px;
}

.gj-history__figure img,
.gj-growth__figure img {
    width: 100%;
    max-width: 500px;
    height: auto;
    object-fit: contain;
}

.gj-growth__figure picture {
    max-width: 420px;
}

.gj-growth__figure img {
    max-width: 420px;
}

.gj-history__body,
.gj-growth__body {
    padding: clamp(40px, 5vw, 64px) clamp(32px, 4vw, 56px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-left: 3px solid var(--gj-brand);
}

.gj-history__tag,
.gj-growth__tag {
    margin-bottom: 18px;
}

.gj-history__tag::before,
.gj-history__tag::after,
.gj-growth__tag::before,
.gj-growth__tag::after {
    display: none;
}

.gj-history__title,
.gj-growth__title {
    font-family: 'Crimson Text', Georgia, serif;
    font-size: clamp(1.75rem, 2.8vw, 2.35rem);
    font-weight: 600;
    line-height: 1.15;
    text-transform: none;
    letter-spacing: -0.01em;
    margin: 0 0 24px;
    color: var(--gj-ink);
}

.gj-history__prose p,
.gj-growth__prose p {
    font-family: 'Crimson Text', Georgia, serif;
    font-size: 17px;
    line-height: 1.75;
    color: #404040;
    text-transform: none;
    letter-spacing: normal;
    max-width: 44ch;
}

.gj-growth__actions {
    margin-top: 28px;
}

@media (max-width: 991px) {
    .gj-history,
    .gj-growth {
        grid-template-columns: 1fr;
    }

    .gj-history__figure,
    .gj-growth__figure {
        padding: 32px 24px 28px;
        border-right: none;
        border-bottom: 1px solid var(--gj-border);
    }

    .gj-history__body,
    .gj-growth__body {
        padding: 36px 28px 40px;
        border-left: none;
        border-top: 3px solid var(--gj-brand);
    }

    .gj-history__prose p,
    .gj-growth__prose p {
        max-width: none;
    }
}

/* ─── CTA Contact (accueil) ─── */
.gj-contact-cta-section {
    padding: 80px 0 100px;
    background: var(--gj-surface);
}

.gj-contact-cta-section__inner {
    position: relative;
    z-index: 2;
}

.gj-contact-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: clamp(32px, 5vw, 64px);
    max-width: 1120px;
    margin: 0 auto;
    padding: clamp(40px, 5vw, 56px) clamp(32px, 5vw, 56px);
    background: linear-gradient(135deg, var(--gj-brand) 0%, var(--gj-brand-dark) 100%);
    box-shadow: 0 24px 64px rgba(134, 0, 33, 0.18);
}

.gj-contact-cta__content {
    flex: 1 1 auto;
    min-width: 0;
}

.gj-contact-cta__tag {
    margin: 0 0 14px;
    font-family: 'Trajan Pro', serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.78);
}

.gj-contact-cta__title {
    font-family: 'Crimson Text', Georgia, serif;
    font-size: clamp(1.75rem, 3vw, 2.35rem);
    font-weight: 600;
    line-height: 1.15;
    text-transform: none;
    letter-spacing: -0.01em;
    margin: 0 0 16px;
    color: #fff;
}

.gj-contact-cta__prose p {
    font-family: 'Crimson Text', Georgia, serif;
    font-size: 17px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    text-transform: none;
    letter-spacing: normal;
    max-width: 52ch;
    margin: 0;
}

.gj-contact-cta__actions {
    flex: 0 0 auto;
}

.gj-contact-cta .gj-btn-color {
    background: #fff;
    color: var(--gj-brand) !important;
    box-shadow: none;
    white-space: nowrap;
}

.gj-contact-cta .gj-btn-color:hover,
.gj-contact-cta .gj-btn-color:focus-visible {
    background: var(--gj-surface);
    color: var(--gj-brand-dark) !important;
}

@media (max-width: 767px) {
    .gj-contact-cta-section {
        padding: 60px 0 72px;
    }

    .gj-contact-cta {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }

    .gj-contact-cta__actions {
        width: 100%;
    }

    .gj-contact-cta .gj-btn {
        width: 100%;
        justify-content: center;
    }

    .gj-contact-cta__prose p {
        max-width: none;
    }
}

/* About — grille 12 cols : photo 8/12 + carte 3/12 */
.gj-section--about {
    padding: 100px 0;
    background: #fff;
}

.gj-container--about {
    width: min(1440px, 94%);
    margin-left: auto;
    margin-right: auto;
}

.gj-about-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.5fr) repeat(8, minmax(0, 1fr)) repeat(3, minmax(0, 1fr)) minmax(0, 0.5fr);
    align-items: center;
    gap: 0;
}

.gj-about-grid__photo {
    grid-column: 2 / 10;
    overflow: hidden;
}

.gj-about-grid__photo img {
    display: block;
    width: 100%;
    height: auto;
    transition: transform 0.45s ease;
}

.gj-about-grid:hover .gj-about-grid__photo img {
    transform: scale(1.03);
}

.gj-about-grid__panel {
    grid-column: 10 / 13;
    align-self: center;
    position: relative;
    z-index: 2;
    margin-left: -2.5rem;
    padding: 48px 44px;
    background: linear-gradient(to right, #fff 0%, var(--gj-surface) 100%);
    border-right: 3px solid var(--gj-brand);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.1);
}

.gj-about-grid__title,
.gj-about-grid__panel h2 {
    font-family: 'Crimson Text', Georgia, serif;
    font-size: clamp(1.75rem, 2.5vw, 2.25rem);
    line-height: 1.2;
    font-weight: 400;
    letter-spacing: normal;
    text-transform: none;
    margin: 0 0 24px;
    color: var(--gj-ink);
}

.gj-about-grid__title-line {
    display: block;
}

.gj-about-grid__panel .prose-gereje p {
    margin-bottom: 1em;
    line-height: 1.75;
}

.gj-about-grid__panel .prose-gereje p:last-of-type {
    margin-bottom: 0;
}

.gj-about-grid__panel .prose-gereje strong,
.gj-about-grid__panel .prose-gereje .text-accent {
    color: var(--gj-brand);
    font-weight: 600;
}

.gj-about-pillars {
    list-style: none;
    margin: 1.35rem 0 0;
    padding: 0;
    display: grid;
    gap: 0.625rem;
}

.gj-about-pillars li {
    padding: 0.7rem 0.85rem 0.7rem 1rem;
    border-left: 3px solid var(--gj-brand);
    background: rgba(134, 0, 33, 0.05);
    line-height: 1.5;
    font-size: 15px;
    color: var(--gj-ink);
}

.gj-about-pillars__label {
    color: var(--gj-brand);
    font-weight: 700;
    letter-spacing: 0.02em;
}

.gj-about-grid__panel .gj-btn {
    margin-top: 28px;
}

@media (max-width: 991px) {
    .gj-about-grid {
        grid-template-columns: 1fr;
    }

    .gj-about-grid__photo,
    .gj-about-grid__panel {
        grid-column: 1 / -1;
    }

    .gj-about-grid__panel {
        margin-left: 0;
        margin-top: 24px;
        box-shadow: none;
        border-right: none;
        border-left: 3px solid var(--gj-brand);
    }
}

/* ─── Investment opportunities ─── */
.gj-opp-section {
    position: relative;
    padding: 100px 0 120px;
    background: linear-gradient(180deg, #faf9f8 0%, #ffffff 42%, #f7f6f5 100%);
    overflow: hidden;
}

.gj-opp-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 1px 1px, rgba(25, 25, 25, 0.035) 1px, transparent 0);
    background-size: 32px 32px;
    pointer-events: none;
    opacity: 0.5;
}

.gj-opp-section .gj-container {
    position: relative;
    z-index: 1;
}

.gj-opp-section .gj-container.gj-container--wide {
    width: min(1780px, calc(100vw - 40px));
    max-width: none;
    padding-left: clamp(8px, 1vw, 16px);
    padding-right: clamp(8px, 1vw, 16px);
}

.gj-opp-header {
    max-width: 720px;
    margin: 0 auto 64px;
    text-align: center;
}

.gj-opp-header__eyebrow {
    margin: 0 0 14px;
    font-family: 'Trajan Pro', serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--gj-brand);
}

.gj-opp-header__title {
    margin: 0 0 16px;
    font-family: 'Crimson Text', Georgia, serif;
    font-size: clamp(1.5rem, 2.8vw, 2.125rem);
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--gj-ink);
    text-wrap: balance;
}

.gj-opp-header__title::after {
    content: "";
    display: block;
    width: 40px;
    height: 2px;
    margin: 22px auto 0;
    background: linear-gradient(90deg, transparent, var(--gj-brand), transparent);
}

.gj-opp-header__subtitle {
    margin: 0 auto;
    max-width: 640px;
    font-family: 'Trajan Pro', serif;
    font-size: 15px;
    line-height: 1.75;
    color: #6b6560;
}

/* Grille opportunités (home: 4 cols / invest: 3 cols) */
.gj-opp-section .row {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    margin-left: -12px;
    margin-right: -12px;
}

.gj-opp-section .row > [class*="col-"] {
    box-sizing: border-box;
    width: 100%;
    padding-left: 12px;
    padding-right: 12px;
    margin-bottom: 24px;
}

.gj-opp-col {
    display: flex;
    flex-direction: column;
}

@media (min-width: 768px) {
    .gj-opp-section .col-md-6 {
        width: 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }

    .gj-opp-section .col-md-4 {
        width: 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media (min-width: 992px) {
    .gj-opp-section .col-md-4 {
        width: 33.333333%;
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
        margin-bottom: 0;
    }
}

@media (min-width: 1200px) {
    .gj-opp-section .col-lg-3 {
        width: 25%;
        flex: 0 0 25%;
        max-width: 25%;
        margin-bottom: 0;
    }
}

/* ─── Cartes opportunités ─── */
.gj-opp-card {
    display: flex;
    flex-direction: column;
    flex: 1;
    width: 100%;
    height: 100%;
}

.gj-opp-card__link {
    display: flex;
    flex-direction: column;
    height: 100%;
    color: inherit;
    text-decoration: none !important;
    background: #fff;
    border: 1px solid rgba(25, 25, 25, 0.08);
    border-radius: 4px;
    overflow: hidden;
    transition:
        border-color 0.35s ease,
        box-shadow 0.35s ease,
        transform 0.35s ease;
}

.gj-opp-card__link:hover,
.gj-opp-card__link:focus-visible {
    border-color: rgba(134, 0, 33, 0.35);
    box-shadow: 0 18px 40px rgba(25, 25, 25, 0.08);
    transform: translateY(-4px);
}

.gj-opp-card__link:focus-visible {
    outline: 2px solid var(--gj-brand);
    outline-offset: 3px;
}

.gj-opp-card__media {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 10;
    background: #1a1a1a;
    flex-shrink: 0;
}

.gj-opp-card__media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        transparent 55%,
        rgba(25, 25, 25, 0.28) 100%
    );
    pointer-events: none;
}

.gj-opp-card__media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}

.gj-opp-card__link:hover .gj-opp-card__media img,
.gj-opp-card__link:focus-visible .gj-opp-card__media img {
    transform: scale(1.04);
}

.gj-opp-card__body {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding: 22px 22px 20px;
    background: #fff;
}

.gj-opp-card__head {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.gj-opp-card__badge {
    align-self: flex-start;
    margin: 0;
    padding: 4px 10px;
    font-family: 'Trajan Pro', serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--gj-brand);
    background: rgba(134, 0, 33, 0.07);
    border: 1px solid rgba(134, 0, 33, 0.14);
}

.gj-opp-card__title {
    margin: 0;
    font-family: 'Crimson Text', Georgia, serif;
    font-size: clamp(1.05rem, 1.15vw, 1.2rem);
    line-height: 1.3;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--gj-ink);
    text-wrap: balance;
    transition: color 0.3s ease;
}

.gj-opp-card__link:hover .gj-opp-card__title,
.gj-opp-card__link:focus-visible .gj-opp-card__title {
    color: var(--gj-brand);
}

.gj-opp-card__code {
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 6px 8px;
    font-family: 'Trajan Pro', serif;
    font-size: 11px;
    line-height: 1.4;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #7a746e;
}

.gj-opp-card__code-value {
    font-weight: 700;
    letter-spacing: 0.14em;
    color: var(--gj-ink);
}

.gj-opp-card__metrics {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 0;
    padding: 14px 0 0;
    border-top: 1px solid rgba(25, 25, 25, 0.08);
}

.gj-opp-card__metric {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 8px 12px;
    align-items: baseline;
    margin: 0;
}

.gj-opp-card__metric dt {
    margin: 0;
    font-family: 'Trajan Pro', serif;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #8a8580;
}

.gj-opp-card__metric dd {
    margin: 0;
    font-family: 'Crimson Text', Georgia, serif;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.35;
    color: var(--gj-ink);
    text-align: right;
}

.gj-opp-card__metric--solo {
    grid-column: 1 / -1;
    text-align: left;
    font-size: 14px;
}

.gj-opp-card__metric--fin {
    margin-top: 4px;
    padding-top: 10px;
    border-top: 1px dashed rgba(25, 25, 25, 0.1);
}

.gj-opp-card__metric--fin .gj-opp-card__metric--solo,
.gj-opp-card__metric--fin dd {
    color: var(--gj-brand);
}

.gj-opp-card__cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
    padding-top: 4px;
    color: var(--gj-brand);
}

.gj-opp-card__cta-text {
    font-family: 'Trajan Pro', serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.gj-opp-card__cta svg {
    flex-shrink: 0;
    transition: transform 0.35s ease;
}

.gj-opp-card__link:hover .gj-opp-card__cta svg,
.gj-opp-card__link:focus-visible .gj-opp-card__cta svg {
    transform: translateX(4px);
}

.gj-opp-gate {
    max-width: 560px;
    margin: 0 auto;
    padding: 48px 32px;
    text-align: center;
    background: #fff;
    border: 1px solid rgba(134, 0, 33, 0.12);
    border-radius: 12px;
    box-shadow: 0 12px 40px rgba(25, 25, 25, 0.06);
}

.gj-opp-gate__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    margin-bottom: 20px;
    border-radius: 50%;
    background: rgba(134, 0, 33, 0.08);
    color: var(--gj-brand);
    font-size: 22px;
}

.gj-opp-gate__title {
    margin: 0 0 12px;
    font-family: 'Crimson Text', Georgia, serif;
    font-size: 22px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--gj-ink);
}

.gj-opp-gate__text {
    margin: 0 0 20px;
    font-size: 14px;
    line-height: 1.65;
    color: #6b6560;
}

.gj-opp-gate__steps {
    counter-reset: gj-opp-step;
    margin: 0 auto 28px;
    padding: 0;
    list-style: none;
    text-align: left;
    max-width: 420px;
}

.gj-opp-gate__steps li {
    position: relative;
    padding: 0 0 12px 28px;
    font-size: 13px;
    line-height: 1.5;
    color: var(--gj-ink);
}

.gj-opp-gate__steps li::before {
    content: counter(gj-opp-step);
    counter-increment: gj-opp-step;
    position: absolute;
    left: 0;
    top: 0;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(134, 0, 33, 0.1);
    color: var(--gj-brand);
    font-size: 11px;
    font-weight: 700;
    line-height: 20px;
    text-align: center;
}

.gj-opp-gate__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.gj-opp-footer {
    margin-top: 52px;
    text-align: center;
}

.gj-opp-legal {
    display: block;
    margin: 48px auto 0;
    max-width: 640px;
    padding: 14px 20px;
    text-align: center;
    font-family: 'Trajan Pro', serif;
    font-size: 12px;
    line-height: 1.65;
    color: #8a8580;
    background: rgba(255, 255, 255, 0.75);
    border: 1px solid #ecebea;
    border-radius: 8px;
    backdrop-filter: blur(4px);
}

@media (max-width: 991px) {
    .gj-opp-section {
        padding: 80px 0 96px;
    }

    .gj-opp-card__body {
        padding: 18px 18px 16px;
        gap: 14px;
    }

    .gj-opp-card__link:hover,
    .gj-opp-card__link:focus-visible {
        transform: none;
    }

    .gj-opp-card__link:hover .gj-opp-card__media img,
    .gj-opp-card__link:focus-visible .gj-opp-card__media img {
        transform: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    .gj-opp-card__media img,
    .gj-opp-card__cta svg,
    .gj-opp-card__title,
    .gj-opp-card__link {
        transition: none;
    }

    .gj-opp-card__link:hover,
    .gj-opp-card__link:focus-visible {
        transform: none;
    }

    .gj-opp-card__link:hover .gj-opp-card__media img,
    .gj-opp-card__link:focus-visible .gj-opp-card__media img {
        transform: none;
    }

    .gj-opp-card__link:hover .gj-opp-card__cta svg,
    .gj-opp-card__link:focus-visible .gj-opp-card__cta svg {
        transform: none;
    }

    .gj-opp-card {
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
    }
}

@media (prefers-reduced-motion: no-preference) {
    .gj-opp-section .gj-opp-card {
        opacity: 0;
        transform: translateY(14px);
        animation: gj-opp-enter 0.55s cubic-bezier(0.4, 0, 0.2, 1) forwards;
        animation-delay: calc(var(--opp-index, 0) * 0.08s + 0.04s);
    }
}

@keyframes gj-opp-enter {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ─── Track record (prod) ─── */
.gj-track-section {
    position: relative;
    padding: clamp(80px, 10vw, 120px) 0 clamp(96px, 11vw, 140px);
    background: #fff;
}

.gj-track-section--page {
    padding-top: 0;
}

.gj-track-section .gj-header-title {
    margin-bottom: clamp(56px, 7vw, 80px);
}

.gj-track-cta {
    margin-top: 48px;
}

.gj-track-section .row,
.gj-track-row {
    display: flex;
    flex-wrap: wrap;
    margin-left: -10px;
    margin-right: -10px;
}

.gj-track-section .row > [class*="col-"],
.gj-track-row > [class*="col-"] {
    box-sizing: border-box;
    width: 100%;
    padding-left: 10px;
    padding-right: 10px;
    margin-bottom: 28px;
}

.gj-track-col {
    display: flex;
}

.gj-track-col .track {
    width: 100%;
    height: 100%;
}

@media (min-width: 992px) {
    .gj-track-section .col-md-4,
    .gj-track-row .col-md-4,
    .gj-participations-row .col-md-4 {
        width: 33.333333%;
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }
}

.gj-participations-section {
    position: relative;
}

.gj-participations-row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -12px;
}

.gj-participations-col {
    padding: 0 12px 24px;
    display: flex;
}

.gj-participation-card {
    background: #fff;
    border: 1px solid #e6e5e4;
    border-radius: 4px;
    overflow: hidden;
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
}

.gj-participation-card__img {
    height: clamp(220px, 24vw, 280px);
    overflow: hidden;
}

.gj-participation-card__img--logo {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f7f7f6;
    padding: 1.5rem;
}

.gj-participation-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gj-participation-card__img--logo img {
    width: auto;
    max-width: min(280px, 85%);
    height: auto;
    max-height: 100%;
    object-fit: contain;
}

.gj-participation-card__body {
    padding: 1.25rem 1.5rem 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.gj-participation-card__body .prose-gereje {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

.gj-participation-card__body .text-accent {
    color: var(--gj-brand);
}

.gj-participation-card__cta {
    margin-top: auto;
    padding-top: 1rem;
}

#track-home .gj-container--wide {
    width: min(1680px, calc(100vw - 24px));
}

.pro-carousel {
    position: relative;
    padding: 0;
}

.pro-carousel .item {
    margin: 0;
    padding: 0;
}

.track {
    margin: 0;
    background: #fff;
    border: 1px solid #e6e5e4;
    border-radius: 4px;
    transition: box-shadow 0.3s ease;
}

.track:hover {
    background: #fff;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.15);
}

.track .track-img {
    position: relative;
    overflow: hidden;
    height: clamp(260px, 28vw, 320px);
    background: var(--gj-brand);
    text-align: center;
}

.track .track-img .cat {
    position: absolute;
    top: clamp(16px, 2vw, 25px);
    left: clamp(16px, 2vw, 25px);
    z-index: 2;
    background: var(--gj-brand);
    color: #fff;
    padding: 2px 15px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    transition: background 0.3s ease, color 0.3s ease;
}

.track:hover .track-img .cat {
    background: #fff;
    color: var(--gj-brand);
}

.track .track-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1;
    transition: opacity 0.4s ease, transform 0.4s ease, filter 0.4s ease;
}

.track:hover .track-img img {
    opacity: 0.33;
    transform: scale(1.1);
    filter: grayscale(100%);
}

.track .track-info {
    position: relative;
    padding: clamp(18px, 2.5vw, 24px) clamp(20px, 2.5vw, 28px) clamp(22px, 3vw, 28px);
    text-align: center;
}

.track .track-info h3 {
    margin: 0;
    font-family: 'Crimson Text', Georgia, serif;
    font-size: clamp(1.1rem, 1.6vw, 22px);
    line-height: 1.35;
    font-weight: 700;
    text-transform: none;
    transition: color 0.3s ease;
}

.track:hover .track-info h3 {
    color: var(--gj-brand);
}

.track .track-info hr {
    width: 32px;
    margin: 8px auto;
    border: 0;
    border-top: 1px solid #e6e5e4;
}

.track .track-info p {
    margin: 0 0 8px;
    font-size: 12px;
    line-height: 20px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--gj-muted);
}

.track .track-info .gallery-slider,
.track .track-info .single-img {
    display: block;
    height: 60px;
    line-height: 60px;
    margin: 8px 0 4px;
    padding: 0 10px;
    text-align: center;
    background: none;
}

.track .track-info .gallery-slider {
    position: relative;
}

.track .track-info .gallery-slider.gj-fade-slider > .item {
    display: none;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.track .track-info .gallery-slider.gj-fade-slider > .item.is-active {
    display: block;
    opacity: 1;
}

.track .track-info img {
    display: inline-block;
    max-height: 50px;
    max-width: 140px;
    width: auto;
    vertical-align: middle;
    opacity: 0.66;
    filter: grayscale(100%);
    transition: opacity 0.3s ease, filter 0.3s ease;
}

.track:hover .track-info img {
    opacity: 1;
    filter: grayscale(0%);
}

.track .track-info .gj-btn {
    margin-top: 8px;
}

.track:hover .track-info .gj-btn-dark-border {
    background: var(--gj-brand);
    border-color: transparent;
    color: #fff !important;
}

#track-home .gj-container--wide {
    width: min(1680px, calc(100vw - 24px));
}

.pro-carousel.gj-track-carousel .gj-carousel-nav {
    position: absolute;
    top: 50%;
    z-index: 2;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
    color: var(--gj-brand);
    cursor: pointer;
    line-height: 40px;
    text-align: center;
    padding: 0;
}

.pro-carousel.gj-track-carousel .gj-carousel-nav:disabled {
    opacity: 0.35;
    cursor: default;
}

.pro-carousel.gj-track-carousel .gj-carousel-prev {
    left: 0;
}

.pro-carousel.gj-track-carousel .gj-carousel-next {
    right: 0;
}

.pro-carousel.gj-track-carousel .gj-carousel-nav i {
    font-size: 16px;
    position: relative;
    top: 1px;
}

#macy-container.gj-track-row .gj-masonry-item.is-hidden {
    display: none;
}

@media (prefers-reduced-motion: reduce) {
    .track,
    .track .track-img img,
    .track .track-img .cat,
    .track .track-info h3,
    .track .track-info img,
    .track .track-info .gallery-slider.gj-fade-slider > .item {
        transition: none;
    }

    .track:hover .track-img img {
        opacity: 1;
        transform: none;
        filter: none;
    }
}

/* ─── Expertises (sector mosaic) ─── */
.gj-expertise-section {
    position: relative;
    margin-top: 48px;
    padding: 0 0 110px;
    background: #fff;
}

.gj-expertise-section:has(> .gj-section-divider) {
    margin-top: 0;
}

.gj-expertise-section__inner {
    position: relative;
    z-index: 2;
    padding-top: clamp(56px, 7vw, 80px);
}

.gj-expertise-header {
    max-width: 780px;
    margin: 0 auto clamp(40px, 5vw, 56px);
    text-align: center;
}

.gj-expertise-header__subtitle {
    margin: 0 auto;
    max-width: 680px;
    font-family: 'Trajan Pro', serif;
    font-size: 15px;
    line-height: 1.75;
    color: #6b6560;
}

.gj-expertise-mosaic {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 8px;
}

.gj-expertise-tile {
    position: relative;
    display: block;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background: var(--gj-ink);
    text-decoration: none !important;
    color: #fff;
}

a.gj-expertise-tile {
    cursor: pointer;
}

article.gj-expertise-tile {
    cursor: default;
}

.gj-expertise-tile__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(30%) brightness(0.92);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), filter 0.45s ease;
}

.gj-expertise-tile__scrim {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        180deg,
        rgba(25, 25, 25, 0.18) 0%,
        rgba(25, 25, 25, 0.12) 40%,
        rgba(25, 25, 25, 0.82) 100%
    );
    transition: background 0.45s ease;
}

.gj-expertise-tile::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: rgba(134, 0, 33, 0.4);
    opacity: 0;
    transition: opacity 0.45s ease;
}

.gj-expertise-tile__index {
    position: absolute;
    top: 16px;
    left: 18px;
    z-index: 2;
    font-family: 'Trajan Pro', serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: rgba(255, 255, 255, 0.65);
    transition: color 0.35s ease;
}

.gj-expertise-tile__content {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 0 16px 22px;
    text-align: center;
}

.gj-expertise-tile__title {
    margin: 0;
    font-family: 'Crimson Text', Georgia, serif;
    font-size: clamp(0.8rem, 0.95vw, 0.9375rem);
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: #fff;
    text-wrap: balance;
}

.gj-expertise-tile__rule {
    display: block;
    width: 26px;
    height: 1px;
    background: rgba(255, 255, 255, 0.55);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1), background 0.4s ease;
}

.gj-expertise-tile:hover .gj-expertise-tile__img,
.gj-expertise-tile:focus-visible .gj-expertise-tile__img {
    transform: scale(1.06);
    filter: grayscale(0%) brightness(1);
}

.gj-expertise-tile:hover::after,
.gj-expertise-tile:focus-visible::after {
    opacity: 1;
}

.gj-expertise-tile:hover .gj-expertise-tile__index,
.gj-expertise-tile:focus-visible .gj-expertise-tile__index {
    color: #fff;
}

.gj-expertise-tile:hover .gj-expertise-tile__rule,
.gj-expertise-tile:focus-visible .gj-expertise-tile__rule {
    width: 52px;
    background: #fff;
}

.gj-expertise-tile:focus-visible {
    outline: 2px solid var(--gj-brand);
    outline-offset: 2px;
}

.gj-expertise-footer {
    margin-top: clamp(44px, 5vw, 60px);
}

@media (max-width: 991px) {
    .gj-expertise-mosaic {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .gj-expertise-tile {
        aspect-ratio: 16 / 10;
    }

    .gj-expertise-section {
        padding-bottom: 90px;
    }
}

@media (max-width: 560px) {
    .gj-expertise-mosaic {
        gap: 6px;
    }

    .gj-expertise-tile {
        aspect-ratio: 4 / 3;
    }

    .gj-expertise-tile__title {
        font-size: 0.75rem;
    }
}

@media (prefers-reduced-motion: no-preference) {
    .gj-expertise-tile {
        opacity: 0;
        transform: translateY(14px);
        animation: gj-expertise-enter 0.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    }

    .gj-expertise-tile:nth-child(1) { animation-delay: 0.03s; }
    .gj-expertise-tile:nth-child(2) { animation-delay: 0.06s; }
    .gj-expertise-tile:nth-child(3) { animation-delay: 0.09s; }
    .gj-expertise-tile:nth-child(4) { animation-delay: 0.12s; }
    .gj-expertise-tile:nth-child(5) { animation-delay: 0.15s; }
    .gj-expertise-tile:nth-child(6) { animation-delay: 0.18s; }
    .gj-expertise-tile:nth-child(7) { animation-delay: 0.21s; }
    .gj-expertise-tile:nth-child(8) { animation-delay: 0.24s; }
    .gj-expertise-tile:nth-child(9) { animation-delay: 0.27s; }
    .gj-expertise-tile:nth-child(10) { animation-delay: 0.3s; }
}

@keyframes gj-expertise-enter {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .gj-expertise-tile,
    .gj-expertise-tile__img,
    .gj-expertise-tile__scrim,
    .gj-expertise-tile::after,
    .gj-expertise-tile__index,
    .gj-expertise-tile__rule {
        transition: none;
        animation: none;
    }

    .gj-expertise-tile {
        opacity: 1;
        transform: none;
    }

    .gj-expertise-tile:hover .gj-expertise-tile__img,
    .gj-expertise-tile:focus-visible .gj-expertise-tile__img {
        transform: none;
        filter: grayscale(30%) brightness(0.92);
    }
}

/* ─── Sector expertise page — showcase rows (12-col) ─── */
.page-sector-expertise .gj-page-hero__lead {
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
    font-size: clamp(1rem, 1.6vw, 1.125rem);
    line-height: 1.75;
}

.gj-expertise-section--showcase {
    margin-top: 0;
    padding: clamp(72px, 8vw, 110px) 0 clamp(88px, 9vw, 120px);
    background: linear-gradient(180deg, #faf9f8 0%, #fff 28%, #fff 100%);
}

.page-sector-expertise .gj-expertise-section--showcase .gj-expertise-header {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px 32px;
    max-width: none;
    margin-bottom: clamp(48px, 6vw, 72px);
    text-align: left;
}

.page-sector-expertise .gj-expertise-section--showcase .gj-expertise-header__intro {
    flex: 1 1 420px;
    max-width: 760px;
}

.page-sector-expertise .gj-expertise-section--showcase .gj-expertise-header__title::after {
    content: "";
    display: block;
    width: 40px;
    height: 2px;
    margin: 22px 0 0;
    background: linear-gradient(90deg, var(--gj-brand), transparent);
}

.page-sector-expertise .gj-expertise-section--showcase .gj-expertise-header__count {
    flex: 0 0 auto;
    margin: 0;
    padding-top: 6px;
}

.gj-expertise-section--showcase .gj-expertise-header__title::after {
    content: "";
    display: block;
    width: 40px;
    height: 2px;
    margin: 22px auto 0;
    background: linear-gradient(90deg, transparent, var(--gj-brand), transparent);
}

.gj-expertise-header__count {
    margin: 18px 0 0;
    font-family: 'Trajan Pro', serif;
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gj-brand);
}

.gj-expertise-showcase {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.gj-expertise-row {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    min-height: 220px;
    overflow: hidden;
    border: 1px solid rgba(25, 25, 25, 0.08);
    background: #fff;
    text-decoration: none !important;
    color: inherit;
    box-shadow: 0 8px 28px rgba(25, 25, 25, 0.04);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.35s ease, border-color 0.35s ease;
}

a.gj-expertise-row {
    cursor: pointer;
}

a.gj-expertise-row:hover,
a.gj-expertise-row:focus-visible {
    transform: translateY(-2px);
    border-color: rgba(134, 0, 33, 0.22);
    box-shadow: 0 16px 40px rgba(134, 0, 33, 0.08);
}

.gj-expertise-row--reverse .gj-expertise-row__media {
    order: 2;
}

.gj-expertise-row--reverse .gj-expertise-row__body {
    order: 1;
}

.gj-expertise-row__media {
    position: relative;
    grid-column: span 5;
    min-height: 220px;
    background: var(--gj-ink);
    overflow: hidden;
}

.gj-expertise-row__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(25%) brightness(0.94);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), filter 0.45s ease;
}

.gj-expertise-row__index {
    position: absolute;
    top: 18px;
    left: 20px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    padding: 6px 10px;
    border: 1px solid rgba(255, 255, 255, 0.45);
    background: rgba(25, 25, 25, 0.35);
    font-family: 'Trajan Pro', serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;
    color: #fff;
}

.gj-expertise-row__body {
    grid-column: span 7;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 14px;
    padding: clamp(28px, 4vw, 42px) clamp(28px, 4vw, 48px);
}

.gj-expertise-row__title {
    margin: 0;
    font-family: 'Crimson Text', Georgia, serif;
    font-size: clamp(1.35rem, 2.2vw, 1.75rem);
    font-weight: 600;
    line-height: 1.25;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--gj-ink);
}

.gj-expertise-row__text {
    margin: 0;
    max-width: 58ch;
    font-family: 'Trajan Pro', serif;
    font-size: 15px;
    line-height: 1.75;
    color: #6b6560;
}

.gj-expertise-row__cta {
    margin-top: 4px;
    font-family: 'Trajan Pro', serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--gj-brand);
    transition: letter-spacing 0.3s ease;
}

a.gj-expertise-row:hover .gj-expertise-row__img,
a.gj-expertise-row:focus-visible .gj-expertise-row__img {
    transform: scale(1.04);
    filter: grayscale(0%) brightness(1);
}

a.gj-expertise-row:hover .gj-expertise-row__cta,
a.gj-expertise-row:focus-visible .gj-expertise-row__cta {
    letter-spacing: 0.22em;
}

a.gj-expertise-row:focus-visible {
    outline: 2px solid var(--gj-brand);
    outline-offset: 3px;
}

@media (max-width: 991px) {
    .gj-expertise-row {
        grid-template-columns: 1fr;
        min-height: 0;
    }

    .gj-expertise-row__media,
    .gj-expertise-row__body {
        grid-column: auto;
    }

    .gj-expertise-row--reverse .gj-expertise-row__media,
    .gj-expertise-row--reverse .gj-expertise-row__body {
        order: unset;
    }

    .gj-expertise-row__media {
        aspect-ratio: 16 / 9;
        min-height: 0;
    }

    .page-sector-expertise .gj-expertise-section--showcase .gj-expertise-header {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (prefers-reduced-motion: no-preference) {
    .gj-expertise-row {
        opacity: 0;
        transform: translateY(16px);
        animation: gj-expertise-enter 0.55s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    }

    .gj-expertise-row:nth-child(1) { animation-delay: 0.04s; }
    .gj-expertise-row:nth-child(2) { animation-delay: 0.08s; }
    .gj-expertise-row:nth-child(3) { animation-delay: 0.12s; }
    .gj-expertise-row:nth-child(4) { animation-delay: 0.16s; }
    .gj-expertise-row:nth-child(5) { animation-delay: 0.2s; }
    .gj-expertise-row:nth-child(6) { animation-delay: 0.24s; }
    .gj-expertise-row:nth-child(7) { animation-delay: 0.28s; }
    .gj-expertise-row:nth-child(8) { animation-delay: 0.32s; }
    .gj-expertise-row:nth-child(9) { animation-delay: 0.36s; }
    .gj-expertise-row:nth-child(10) { animation-delay: 0.4s; }
}

/* ─── Sector detail page ─── */
.gj-sector-hero__overlay {
    background: linear-gradient(180deg, rgba(25, 25, 25, 0.55) 0%, rgba(25, 25, 25, 0.78) 100%);
}

.gj-sector-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin: 0 0 18px;
    font-family: 'Trajan Pro', serif;
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.gj-sector-breadcrumb a {
    color: rgba(255, 255, 255, 0.72);
    text-decoration: none;
}

.gj-sector-breadcrumb a:hover,
.gj-sector-breadcrumb a:focus-visible {
    color: #fff;
}

.gj-sector-breadcrumb span:last-child {
    color: #fff;
}

.gj-sector-detail {
    padding: clamp(72px, 8vw, 100px) 0;
    background: #fff;
}

.gj-sector-detail__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
    gap: clamp(32px, 5vw, 64px);
    align-items: start;
}

.gj-sector-detail__body {
    font-family: 'Trajan Pro', serif;
    font-size: 16px;
    line-height: 1.8;
    color: #4a4541;
}

.gj-sector-detail__body p {
    margin: 0 0 1em;
}

.gj-sector-detail__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
}

.gj-sector-detail__aside img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    box-shadow: 0 18px 48px rgba(25, 25, 25, 0.12);
}

.gj-sector-detail__back {
    margin: 48px 0 0;
    font-family: 'Trajan Pro', serif;
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.gj-sector-detail__back a {
    color: var(--gj-brand);
    text-decoration: none;
}

@media (max-width: 900px) {
    .gj-sector-detail__grid {
        grid-template-columns: 1fr;
    }

    .gj-sector-detail__aside {
        order: -1;
        max-width: 420px;
    }
}

.gj-carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border: 1px solid var(--gj-border);
    background: #fff;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gj-ink);
    transition: border-color 0.2s, color 0.2s;
    z-index: 5;
    /* Le glyphe ‹ › (rendu en Arial) est masqué : chevron dessiné en CSS,
       cohérent avec l'iconographie du site quel que soit la police système. */
    font-size: 0;
}

.gj-carousel-nav--prev::before,
.gj-carousel-nav--next::before {
    content: '';
    width: 9px;
    height: 9px;
    border-left: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transition: border-color 0.2s;
}

.gj-carousel-nav--prev::before {
    transform: translateX(2px) rotate(45deg);
}

.gj-carousel-nav--next::before {
    transform: translateX(-2px) rotate(-135deg);
}

.gj-carousel-nav:hover {
    border-color: var(--gj-brand);
    color: var(--gj-brand);
}

.gj-carousel-nav--prev { left: 0; }
.gj-carousel-nav--next { right: 0; }

/* ─── Blog / News ─── */
.gj-news-carousel {
    position: relative;
    padding: 0 30px;
}

.gj-news-track {
    display: flex;
    gap: 0;
    overflow: hidden;
}

.gj-blog-card {
    flex: 0 0 100%;
    margin: 15px;
    background: #fff;
    display: block;
    text-decoration: none !important;
    color: inherit;
}

@media (min-width: 768px) {
    .gj-blog-card { flex: 0 0 calc(50% - 30px); }
}

@media (min-width: 1024px) {
    .gj-blog-card { flex: 0 0 calc(33.333% - 30px); }
}

.gj-blog-img {
    background: var(--gj-ink);
    overflow: hidden;
    position: relative;
    min-height: 220px;
    max-height: 220px;
}

.gj-blog-img img {
    width: 100%;
    min-height: 220px;
    object-fit: cover;
    transition: opacity 0.4s, transform 0.4s, filter 0.4s;
}

.gj-blog-card:hover .gj-blog-img {
    background: var(--gj-brand);
}

.gj-blog-card:hover .gj-blog-img img {
    opacity: 0.2;
    transform: scale(1.1);
    filter: grayscale(100%);
}

.gj-blog-cat {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: var(--gj-brand);
    color: #fff;
    font-size: 11px;
    padding: 4px 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.gj-blog-plus {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 52px;
    height: 52px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s, top 0.4s;
    font-size: 20px;
    color: var(--gj-brand);
}

.gj-blog-card:hover .gj-blog-plus {
    opacity: 1;
}

.gj-blog-info {
    padding: 20px 25px 45px;
    position: relative;
}

.gj-blog-meta {
    list-style: none;
    margin: 0 0 8px;
    padding: 0;
    font-size: 13px;
    color: var(--gj-muted);
}

.gj-blog-info h3 {
    font-family: 'Crimson Text', Georgia, serif;
    font-size: 22px;
    line-height: 30px;
    min-height: 90px;
    margin: 0;
    transition: color 0.3s;
}

.gj-blog-card:hover .gj-blog-info h3 {
    color: var(--gj-brand);
}

.gj-blog-footer {
    position: absolute;
    bottom: 20px;
    left: 20px;
    font-size: 14px;
    color: #ccc;
}

.gj-blog-card:hover .gj-blog-footer {
    color: var(--gj-brand);
}

/* ─── Partners logos ─── */
.gj-brands-track {
    display: flex;
    align-items: center;
    gap: 40px;
    overflow: hidden;
    padding: 30px 40px;
}

.gj-brands-track img {
    flex: 0 0 auto;
    max-height: 60px;
    max-width: 160px;
    object-fit: contain;
    opacity: 0.7;
    transition: opacity 0.3s;
    filter: grayscale(20%);
}

.gj-brands-track a:hover img {
    opacity: 1;
    filter: none;
}

/* ─── Testimonials ─── */
.gj-testimonials-track {
    display: flex;
    gap: 0;
    overflow: hidden;
    padding: 0 30px;
}

.gj-testimonial {
    flex: 0 0 100%;
    text-align: center;
    padding: 60px 45px;
    margin: 15px;
    background: #fff;
    border-radius: 5px;
    transition: box-shadow 0.3s;
}

@media (min-width: 768px) {
    .gj-testimonial { flex: 0 0 calc(50% - 30px); }
}

@media (min-width: 1024px) {
    .gj-testimonial { flex: 0 0 calc(33.333% - 30px); }
}

.gj-testimonial:hover {
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.15);
}

.gj-testimonial-avatar {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    margin: 0 auto 20px;
    padding: 5px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.15);
    background: #fff;
    transition: background 0.3s, box-shadow 0.3s;
}

.gj-testimonial:hover .gj-testimonial-avatar {
    background: var(--gj-brand);
    box-shadow: none;
}

.gj-testimonial-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: filter 0.3s;
}

.gj-testimonial:hover .gj-testimonial-avatar img {
    filter: grayscale(0);
}

.gj-testimonial q {
    display: block;
    font-size: 18px;
    line-height: 26px;
    font-weight: 500;
    min-height: 130px;
    quotes: none;
    margin-bottom: 15px;
}

.gj-testimonial h4 {
    font-family: 'Crimson Text', Georgia, serif;
    font-size: 20px;
    margin: 0 0 4px;
}

.gj-testimonial span {
    font-size: 14px;
    text-transform: uppercase;
    color: rgba(0, 0, 0, 0.66);
}

/* ─── Footer ─── */
.gj-footer {
    position: relative;
    background: var(--gj-ink);
    color: #fff;
    padding: clamp(64px, 8vw, 96px) 0 0;
    overflow: hidden;
    border-top: 3px solid var(--gj-brand);
}

.gj-footer-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(25, 25, 25, 0.92) 0%, rgba(25, 25, 25, 0.97) 55%, rgba(25, 25, 25, 0.99) 100%);
    z-index: 1;
}

.gj-footer .gj-bg-parallax {
    opacity: 0.22;
    filter: grayscale(1);
}

.gj-footer-inner {
    position: relative;
    z-index: 2;
}

.gj-footer .gj-footer-go-top {
    position: absolute;
    top: -24px;
    left: 50%;
    transform: translateX(-50%);
    width: auto;
    height: 48px;
    padding: 0 22px;
    background: var(--gj-brand);
    color: #fff;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    z-index: 10;
    text-decoration: none !important;
    border: 3px solid var(--gj-ink);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
    transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.gj-footer .gj-footer-go-top i {
    font-size: 16px;
    line-height: 1;
}

.gj-footer .gj-footer-go-top-label {
    line-height: 1;
}

.gj-footer .gj-footer-go-top:hover {
    background: var(--gj-brand-dark);
    transform: translateX(-50%) translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.45);
    color: #fff;
}

.gj-footer-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.6fr) minmax(0, 1.1fr);
    gap: clamp(32px, 5vw, 72px);
    align-items: start;
    padding-bottom: clamp(40px, 5vw, 56px);
}

.gj-footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    max-width: 340px;
}

.gj-footer-logo {
    display: inline-block;
}

.gj-footer-logo img {
    height: clamp(48px, 5vw, 64px);
    width: auto;
    opacity: 0.95;
    transition: opacity 0.25s ease;
}

.gj-footer-logo:hover img {
    opacity: 1;
}

.gj-footer-tagline {
    margin: 0;
    font-family: 'Crimson Text', Georgia, serif;
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.6);
}

.gj-footer-col-title {
    margin: 0 0 18px;
    font-family: var(--gj-font-serif);
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
}

.gj-footer-menu,
.gj-footer-address {
    list-style: none;
    margin: 0;
    padding: 0;
}

.gj-footer-menu {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px 32px;
}

.gj-footer-menu a,
.gj-footer-address a {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    font-family: 'Crimson Text', Georgia, serif;
    font-size: 15px;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.82);
    text-decoration: none;
    transition: color 0.2s ease;
}

.gj-footer-menu a {
    position: relative;
    padding-left: 16px;
}

.gj-footer-menu a::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 6px;
    height: 1px;
    background: var(--gj-brand);
    transform: translateY(-50%) scaleX(1);
    transform-origin: left center;
    transition: width 0.2s ease, background 0.2s ease;
}

.gj-footer-menu a:hover::before {
    width: 12px;
    background: #fff;
}

.gj-footer-menu a:hover,
.gj-footer-address a:hover {
    color: #fff;
}

.gj-footer-address {
    display: flex;
    flex-direction: column;
    gap: 18px;
    font-style: normal;
}

.gj-footer-contact-item {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.gj-footer-contact-item a {
    min-height: 0;
}

.gj-footer-contact-label {
    font-family: var(--gj-font-serif);
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
}

.gj-footer-contact-cta {
    align-self: flex-start;
    margin-top: 4px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 22px;
    min-height: 0 !important;
    font-family: var(--gj-font-serif) !important;
    font-size: 11px !important;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #fff !important;
    background: var(--gj-brand);
    border-radius: 999px;
    transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.gj-footer-contact-cta i {
    font-size: 12px;
    transition: transform 0.25s ease;
}

.gj-footer-contact-cta:hover {
    color: #fff !important;
    background: var(--gj-brand-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(134, 0, 33, 0.4);
}

.gj-footer-contact-cta:hover i {
    transform: translateX(3px);
}

.gj-social-icons {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 10px;
}

.gj-social-icons li {
    display: inline-block;
}

.gj-social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.25s ease, background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.gj-social-icons a i {
    font-size: 15px;
    line-height: 1;
}

.gj-social-icons a:hover {
    color: #fff;
    background: var(--gj-brand);
    border-color: var(--gj-brand);
    transform: translateY(-2px);
}

.gj-footer-bottom {
    padding: clamp(24px, 3vw, 32px) 0 clamp(28px, 4vw, 40px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.gj-footer-bottom-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 16px 32px;
    margin-bottom: 16px;
}

.gj-footer-copy {
    margin: 0;
    font-family: var(--gj-font-serif);
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
    white-space: nowrap;
}

.gj-footer-legal {
    margin: 0;
    max-width: 52rem;
    font-family: 'Crimson Text', Georgia, serif;
    font-size: 12px;
    line-height: 1.65;
    letter-spacing: 0.01em;
    text-transform: none;
    color: rgba(255, 255, 255, 0.42);
}

@media (max-width: 991px) {
    .gj-footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .gj-footer-brand {
        grid-column: 1 / -1;
        max-width: none;
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
        gap: 24px;
    }

    .gj-footer-tagline {
        flex: 1 1 320px;
        max-width: 420px;
    }
}

@media (max-width: 575px) {
    .gj-footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .gj-footer-brand {
        flex-direction: column;
        align-items: flex-start;
    }

    .gj-footer-tagline {
        flex-basis: auto;
    }

    .gj-footer-menu {
        grid-template-columns: 1fr;
        gap: 4px;
    }

    .gj-footer-bottom-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .gj-footer-copy {
        white-space: normal;
    }

    .gj-footer-legal {
        font-size: 11px;
    }
}

/* Responsive story */
@media (max-width: 991px) {
    .gj-story-bg {
        margin-right: 0;
    }

    .gj-story-bg img {
        width: 100%;
        max-width: 100%;
    }

    .gj-story-panel,
    .gj-story--right .gj-story-panel,
    .gj-story-panel--top {
        position: relative;
        width: 100%;
        left: auto;
        right: auto;
        top: auto;
        bottom: auto;
        margin-top: -40px;
        border-left: 3px solid var(--gj-brand);
        border-right: none;
    }

    .gj-story--right .gj-story-bg {
        margin-left: 0;
    }

    .gj-section {
        padding: 60px 0;
    }

    .gj-section--about {
        padding: 60px 0;
    }
}

.gj-news-carousel,
.gj-brands-carousel,
.gj-testimonials-wrap {
    position: relative;
}

.gj-news-track,
.gj-brands-track,
.gj-testimonials-track {
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.gj-news-track::-webkit-scrollbar,
.gj-brands-track::-webkit-scrollbar,
.gj-testimonials-track::-webkit-scrollbar {
    display: none;
}

.gj-hero-cities .gj-city-current {
    transition: opacity 0.3s ease;
}


@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
}

/* === site-extensions.css (fusionné) === */

/* Extensions site GEREJE — pages, accessibilité, composants non couverts par site.css */

.skip-link {
    position: absolute;
    top: -100%;
    left: 16px;
    z-index: 10001;
    padding: 10px 18px;
    background: var(--gj-brand);
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    text-decoration: none;
    border-radius: 0 0 4px 4px;
}

.skip-link:focus {
    top: 0;
    outline: 2px solid #fff;
    outline-offset: 2px;
}

.header .nav-menu ul > li.active > a {
    color: #fff !important;
}

.header.header-bg .nav-menu ul > li.active > a {
    color: var(--gj-brand) !important;
}

.prose-gereje .text-accent,
.prose-gereje strong {
    color: var(--gj-brand);
    font-weight: 600;
}

/* Hero scroll hint */
.gj-hero-scroll {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    color: #fff;
    text-decoration: none !important;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 50%;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.gj-hero-scroll:hover {
    background: var(--gj-brand);
    border-color: var(--gj-brand);
}

/* En-tête de page intérieure */
.gj-page-hero {
    position: relative;
    min-height: 52vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    padding: 140px 0 80px;
    background: var(--gj-ink);
    overflow: hidden;
}

.gj-page-hero__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}

.gj-page-hero__bg picture,
.gj-page-hero__bg .gj-page-hero__img,
.gj-page-hero__bg picture img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gj-page-hero__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
}

.gj-page-hero__inner {
    position: relative;
    z-index: 1;
    max-width: 720px;
}

.gj-page-hero h1 {
    color: #fff;
    font-size: clamp(2rem, 5vw, 3rem);
    margin: 0 0 12px;
    text-transform: uppercase;
}

.gj-page-hero__lead {
    color: rgba(255, 255, 255, 0.85);
    font-size: 18px;
    line-height: 1.5;
}

.gj-page-hero__lead p {
    color: rgba(255, 255, 255, 0.85);
    margin: 0 0 10px;
}

.gj-page-hero__lead p:last-child {
    margin-bottom: 0;
}

/* Bloc contenu */
.gj-content-section {
    padding: 80px 0;
    background: #fff;
}

/* Vidéo présentation — section autonome */
.gj-video-section {
    padding: 72px 0 88px;
    background: #f7f7f7;
}

.gj-video-section__header {
    text-align: center;
    max-width: 680px;
    margin: 20px auto 44px;
}

.gj-video-section__header h2 {
    font-family: var(--gj-font-logo);
    font-weight: 500;
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin: 0 0 16px;
    color: var(--gj-ink);
}

.gj-video-section__intro {
    color: #5a5a5a;
    line-height: 1.8;
    margin: 0;
}

.gj-video-section__player {
    position: relative;
    max-width: 1040px;
    margin: 0 auto;
    aspect-ratio: 16 / 9;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
}

.gj-video-section__poster,
.gj-video-section__preview {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gj-video-section__play {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0;
    border: 0;
    background: rgba(0, 0, 0, 0.35);
    cursor: pointer;
    color: #fff;
    transition: background 0.3s ease;
}

.gj-video-section__play:hover,
.gj-video-section__play:focus-visible {
    background: rgba(0, 0, 0, 0.48);
}

.gj-video-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.gj-video-modal.is-open {
    display: flex;
}

.gj-video-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.88);
}

.gj-video-modal__dialog {
    position: relative;
    z-index: 1;
    width: min(960px, 100%);
}

.gj-video-modal__close {
    position: absolute;
    top: -44px;
    right: 0;
    border: none;
    background: none;
    color: #fff;
    font-size: 28px;
    cursor: pointer;
}

.gj-video-modal__frame video,
.gj-video-modal__frame iframe {
    width: 100%;
    aspect-ratio: 16 / 9;
    border: 0;
    background: #000;
}

/* ─── Présentation GEREJE (Corporate Deck) ─── */
.page-legacy-presentation #logo img {
    max-height: 58px;
    width: auto;
}

.page-legacy-presentation .gj-footer {
    opacity: 0.55;
    padding-top: 36px;
    padding-bottom: 22px;
}

.page-legacy-presentation .gj-footer-tagline,
.page-legacy-presentation .gj-footer-col-title {
    font-size: 0.8em;
}

.page-legacy-presentation .gj-footer-nav a,
.page-legacy-presentation .gj-footer a {
    opacity: 0.85;
}

.page-legacy-presentation .gj-video-section {
    padding-top: 96px;
    padding-bottom: 80px;
    background:
        radial-gradient(ellipse at 50% 0%, rgba(184, 148, 72, 0.07), transparent 55%),
        #fff;
}

.page-legacy-presentation .gj-video-section__header {
    margin-bottom: 40px;
}

.page-legacy-presentation .gj-video-section__header h2 {
    font-size: clamp(2rem, 4.2vw, 3rem);
}

.page-legacy-presentation .gj-video-section__player {
    box-shadow: 0 32px 80px rgba(15, 18, 24, 0.14);
    border-radius: 2px;
    overflow: hidden;
}

.gj-pres-protected,
.gj-pres-protected .gj-pres {
    -webkit-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
}

.gj-pres-shield {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0f1218;
    color: #fff;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.12s ease, visibility 0.12s ease;
}

.gj-pres-shield-on .gj-pres-shield {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

/* Masquage total : le blur seul reste lisible sur capture OS */
.gj-pres-shield-on main,
.gj-pres-shield-on .header,
.gj-pres-shield-on .gj-footer {
    visibility: hidden !important;
    opacity: 0 !important;
    filter: none !important;
}

.gj-pres-shield__inner {
    text-align: center;
    padding: 40px;
    max-width: 420px;
}

.gj-pres-shield__inner img {
    display: block;
    margin: 0 auto 24px;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

.gj-pres-shield__inner p {
    margin: 0 0 24px;
    font-family: var(--gj-font-logo);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.gj-pres-shield__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border: 0;
    border-radius: 2px;
    background: var(--gj-brand, #b89448);
    color: #fff;
    font-family: var(--gj-font-logo);
    font-size: 12px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    cursor: pointer;
}

.gj-pres-shield__btn:hover {
    background: var(--gj-brand-dark, #8a6d35);
}

.gj-pres-shield__hint {
    margin: 18px 0 0;
    font-size: 0.75rem;
    letter-spacing: 0.04em;
    text-transform: none;
    color: rgba(255, 255, 255, 0.45);
}

@media print {
    .gj-pres-protected main,
    .gj-pres-protected .header,
    .gj-pres-protected .gj-footer {
        display: none !important;
    }

    .gj-pres-shield {
        opacity: 1 !important;
        visibility: visible !important;
        position: static;
        min-height: 100vh;
        pointer-events: auto !important;
    }

    .gj-pres-shield__btn {
        display: none !important;
    }
}

.gj-pres-section {
    padding: 132px 0;
}

.gj-pres-head {
    max-width: 760px;
    margin: 0 auto 72px;
    text-align: center;
}

.gj-pres-head--light h2 {
    color: #fff;
}

.gj-pres-eyebrow {
    margin: 0 0 20px;
    font-size: 11px;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--gj-brand);
}

.gj-pres-eyebrow--light {
    color: #d9a441;
}

.gj-pres-head h2 {
    font-family: var(--gj-font-logo);
    font-weight: 500;
    font-size: clamp(2rem, 4vw, 3rem);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    line-height: 1.22;
    margin: 0 0 24px;
    color: var(--gj-ink);
}

.gj-pres-lead {
    margin: 0 auto;
    max-width: 640px;
    color: #5a5a5a;
    line-height: 1.8;
    font-size: 1.05rem;
}

.gj-pres-lead--light {
    color: rgba(255, 255, 255, 0.8);
    max-width: 680px;
}

/* Cover */
.gj-pres-cover {
    background: #fff;
    text-align: center;
    padding-top: 88px;
    padding-bottom: 96px;
}

.gj-pres-cover__logo {
    width: min(220px, 55vw);
    height: auto;
    margin: 0 auto 36px;
    display: block;
}

.gj-pres-cover__line {
    margin: 0 0 18px;
    font-family: var(--gj-font-logo);
    font-size: 13px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gj-brand);
}

.gj-pres-cover__title {
    margin: 0 0 20px;
    font-family: var(--gj-font-logo);
    font-weight: 500;
    font-size: clamp(1.5rem, 3vw, 2.1rem);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--gj-ink);
}

.gj-pres-cover__since {
    margin: 0;
    color: var(--gj-muted);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-size: 12px;
}

.gj-pres-head--left {
    margin: 0 0 36px;
    text-align: left;
    max-width: none;
}

/* Le modèle — cartes image + texte */
.gj-pres-model {
    background: #fff;
}

.gj-pres-model__grid {
    display: grid;
    gap: 32px;
    grid-template-columns: repeat(3, 1fr);
}

.gj-pres-model__card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid rgba(15, 18, 24, 0.06);
    padding: 0;
    overflow: hidden;
}

.gj-pres-model__media {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #1a202c;
}

.gj-pres-model__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.7s ease;
}

.gj-pres-model__card:hover .gj-pres-model__media img {
    transform: scale(1.04);
}

.gj-pres-model__num {
    position: absolute;
    left: 20px;
    bottom: 18px;
    font-family: var(--gj-font-logo);
    font-size: 14px;
    letter-spacing: 0.22em;
    color: #fff;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.45);
}

.gj-pres-model__copy {
    padding: 32px 28px 36px;
    border-top: 3px solid var(--gj-brand);
    flex: 1;
}

.gj-pres-model__card h3 {
    font-family: var(--gj-font-logo);
    font-weight: 500;
    letter-spacing: 0.1em;
    font-size: 1.35rem;
    margin: 0 0 12px;
}

.gj-pres-model__tag {
    margin: 0 0 16px;
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gj-muted);
    line-height: 1.65;
}

.gj-pres-model__body {
    margin: 0;
    color: #4f4f4f;
    line-height: 1.7;
    font-size: 0.92rem;
}

@media (max-width: 900px) {
    .gj-pres-model__grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
    }
}

/* Écosystème */
.gj-pres-ecosystem {
    background: var(--gj-surface);
}

.gj-pres-eco__hub {
    max-width: 560px;
    margin: 0 auto 0;
    padding: 40px 32px;
    text-align: center;
    background: #fff;
    border: 1px solid rgba(15, 18, 24, 0.06);
}

.gj-pres-eco__hub-logo {
    display: block;
    margin: 0 auto 20px;
    height: 42px;
    width: auto;
}

.gj-pres-eco__hub-name {
    margin: 0 0 10px;
    font-family: var(--gj-font-logo);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-size: 1.2rem;
    color: var(--gj-ink);
}

.gj-pres-eco__hub-role {
    margin: 0;
    color: var(--gj-muted);
    font-size: 0.95rem;
}

.gj-pres-eco__rule {
    width: min(720px, 100%);
    height: 1px;
    margin: 36px auto 40px;
    background: linear-gradient(90deg, transparent, var(--gj-brand), transparent);
    opacity: 0.55;
}

.gj-pres-eco__platforms {
    display: grid;
    gap: 28px;
    grid-template-columns: repeat(3, 1fr);
}

.gj-pres-eco__col {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0;
    background: #fff;
    border: 1px solid rgba(15, 18, 24, 0.06);
    overflow: hidden;
}

.gj-pres-eco__shot {
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.gj-pres-eco__shot img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gj-pres-eco__platform,
.gj-pres-eco__ops {
    width: 100%;
    padding: 24px 18px;
    background: #fff;
}

.gj-pres-eco__platform {
    border-top: 3px solid var(--gj-brand);
}

.gj-pres-eco__platform img,
.gj-pres-eco__ops img {
    max-height: 34px;
    width: auto;
    max-width: 140px;
    object-fit: contain;
    margin: 0 auto 12px;
    display: block;
}

.gj-pres-eco__platform strong,
.gj-pres-eco__ops strong {
    display: block;
    font-family: var(--gj-font-logo);
    letter-spacing: 0.06em;
    font-size: 0.98rem;
    margin-bottom: 4px;
}

.gj-pres-eco__platform span {
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gj-muted);
}

.gj-pres-eco__connector {
    width: 1px;
    height: 28px;
    background: var(--gj-brand);
    opacity: 0.5;
    position: relative;
}

.gj-pres-eco__connector::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -1px;
    width: 7px;
    height: 7px;
    border-right: 1.5px solid var(--gj-brand);
    border-bottom: 1.5px solid var(--gj-brand);
    transform: translateX(-50%) rotate(45deg);
    opacity: 0.7;
}

.gj-pres-eco__subs {
    margin: 12px 0 0;
    font-size: 0.76rem;
    line-height: 1.55;
    color: var(--gj-muted);
}

.gj-pres-eco__footnote {
    max-width: 780px;
    margin: 64px auto 0;
    text-align: center;
    color: #5a5a5a;
    line-height: 1.85;
    font-size: 0.98rem;
}

@media (max-width: 900px) {
    .gj-pres-eco__platforms {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
}

/* Plateformes — folio image dominante */
.gj-pres-portfolio {
    background: #fff;
}

.gj-pres-folio {
    display: grid;
    gap: 56px;
}

.gj-pres-folio__card {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    min-height: 380px;
    background: var(--gj-surface);
    overflow: hidden;
    border: 1px solid rgba(15, 18, 24, 0.05);
}

.gj-pres-folio__card:nth-child(even) {
    direction: rtl;
}

.gj-pres-folio__card:nth-child(even) > * {
    direction: ltr;
}

.gj-pres-folio__media {
    min-height: 280px;
    overflow: hidden;
}

.gj-pres-folio__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s ease;
}

.gj-pres-folio__card:hover .gj-pres-folio__media img {
    transform: scale(1.03);
}

.gj-pres-folio__body {
    padding: 56px 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.gj-pres-folio__logo {
    height: 40px;
    margin-bottom: 22px;
}

.gj-pres-folio__logo img {
    max-height: 40px;
    max-width: 160px;
    width: auto;
    object-fit: contain;
}

.gj-pres-folio__body h3 {
    font-family: var(--gj-font-logo);
    font-weight: 500;
    letter-spacing: 0.08em;
    font-size: 1.45rem;
    margin: 0 0 10px;
    color: var(--gj-brand-dark);
}

.gj-pres-folio__tag {
    margin: 0 0 18px;
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gj-muted);
}

.gj-pres-folio__body p {
    margin: 0;
    color: #4f4f4f;
    line-height: 1.75;
    font-size: 0.98rem;
}

.gj-pres-folio__detail {
    margin-top: 14px !important;
    color: var(--gj-muted) !important;
    font-size: 0.9rem !important;
}

@media (max-width: 840px) {
    .gj-pres-folio__card,
    .gj-pres-folio__card:nth-child(even) {
        grid-template-columns: 1fr;
        direction: ltr;
    }

    .gj-pres-folio__media {
        aspect-ratio: 16 / 10;
        min-height: 0;
    }

    .gj-pres-folio__body {
        padding: 32px 28px;
    }
}

/* Atouts */
.gj-pres-atouts {
    background: var(--gj-surface);
}

.gj-pres-atouts__grid--modern {
    gap: 18px;
    background: transparent;
    border: 0;
    grid-template-columns: repeat(4, 1fr);
    display: grid;
}

.gj-pres-atouts__card {
    padding: 40px 28px;
    background: #fff;
    display: flex;
    flex-direction: column;
    gap: 20px;
    border: 1px solid transparent;
    border-bottom: 3px solid transparent;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
    min-height: 148px;
}

.gj-pres-atouts__card:hover {
    border-bottom-color: var(--gj-brand);
    box-shadow: 0 12px 32px rgba(15, 18, 24, 0.06);
}

.gj-pres-atouts__check {
    font-size: 1.1rem;
    color: var(--gj-brand);
    line-height: 1;
}

.gj-pres-atouts__num {
    font-family: var(--gj-font-logo);
    font-size: 0.85rem;
    letter-spacing: 0.18em;
    color: var(--gj-brand);
}

.gj-pres-atouts__card h3 {
    font-family: var(--gj-font-logo);
    font-weight: 500;
    letter-spacing: 0.04em;
    font-size: 1.08rem;
    margin: 0;
    line-height: 1.4;
}

@media (max-width: 900px) {
    .gj-pres-atouts__grid--modern {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 560px) {
    .gj-pres-atouts__grid--modern {
        grid-template-columns: 1fr;
    }
}

/* Équipe — cartes uniformes, tailles hiérarchisées */
.gj-pres-team {
    background: #fff;
}

.gj-pres-team__title {
    font-family: var(--gj-font-logo);
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gj-brand);
    padding-bottom: 16px;
    margin: 56px auto 32px;
    border-bottom: 1px solid var(--gj-border);
    max-width: 920px;
    text-align: center;
}

.gj-pres-team__tier {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
    margin-bottom: 28px;
}

.gj-pres-team__tier--1 {
    gap: 28px;
    margin-bottom: 36px;
}

.gj-pres-team__tier--2 {
    gap: 24px;
    margin-bottom: 12px;
}

.gj-pres-team__tier--3,
.gj-pres-team__tier--more {
    gap: 20px;
    max-width: 1040px;
    margin-left: auto;
    margin-right: auto;
}

.gj-pres-person {
    text-align: center;
    background: var(--gj-surface);
    border: 1px solid rgba(15, 18, 24, 0.05);
    padding: 16px 16px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 168px;
    max-width: 100%;
    box-sizing: border-box;
}

.gj-pres-person__photo {
    width: 100%;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    border-radius: 2px;
    background: #d8d8d8;
    margin: 0 0 16px;
}

.gj-pres-person__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}

.gj-pres-person__initials {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    font-family: var(--gj-font-logo);
    font-size: 1.55rem;
    letter-spacing: 0.08em;
    color: #fff;
    background: linear-gradient(145deg, var(--gj-brand), var(--gj-brand-dark));
}

.gj-pres-person__meta {
    width: 100%;
}

.gj-pres-person h3 {
    margin: 0 0 6px;
    font-family: 'Crimson Text', Georgia, serif;
    font-size: 1.05rem;
    font-weight: 600;
    line-height: 1.25;
}

.gj-pres-person p {
    margin: 0;
    font-size: 0.74rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--gj-muted);
    line-height: 1.4;
}

.gj-pres-person--lg {
    width: 236px;
    padding: 20px 18px 24px;
}

.gj-pres-person--lg h3 {
    font-size: 1.28rem;
}

.gj-pres-person--lg p {
    font-size: 0.8rem;
}

.gj-pres-person--md {
    width: 188px;
}

.gj-pres-person--md h3 {
    font-size: 1.12rem;
}

.gj-pres-person--sm {
    width: 156px;
}

.gj-pres-person--sm h3 {
    font-size: 0.98rem;
}

.gj-pres-person--sm .gj-pres-person__initials {
    font-size: 1.25rem;
}

.gj-pres-team__more {
    display: none;
}

@media (max-width: 640px) {
    .gj-pres-team__tier--1,
    .gj-pres-team__tier--2,
    .gj-pres-team__tier--3,
    .gj-pres-team__tier--more {
        gap: 14px;
    }

    .gj-pres-person,
    .gj-pres-person--lg,
    .gj-pres-person--md,
    .gj-pres-person--sm {
        width: calc(50% - 8px);
        padding: 12px 10px 16px;
    }

    .gj-pres-person h3,
    .gj-pres-person--lg h3,
    .gj-pres-person--md h3,
    .gj-pres-person--sm h3 {
        font-size: 0.92rem;
    }
}

/* Témoignages */
.gj-pres-quotes {
    background: var(--gj-surface);
}

.gj-pres-quotes__grid {
    display: grid;
    gap: 48px 40px;
    grid-template-columns: repeat(4, 1fr);
}

.gj-pres-quotes__card {
    margin: 0;
    padding: 8px 12px 24px;
    background: transparent;
    border: 0;
    text-align: center;
}

.gj-pres-quotes__photo {
    width: 132px;
    height: 132px;
    margin: 0 auto 32px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid rgba(184, 148, 72, 0.4);
    box-shadow: 0 12px 28px rgba(15, 18, 24, 0.1);
}

.gj-pres-quotes__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gj-pres-quotes__card blockquote {
    margin: 0 0 28px;
    font-family: 'Crimson Text', Georgia, serif;
    font-size: 1.15rem;
    font-style: italic;
    line-height: 1.5;
    color: #333;
    min-height: 4.5em;
}

.gj-pres-quotes__name {
    display: block;
    font-family: var(--gj-font-logo);
    letter-spacing: 0.06em;
    font-size: 0.95rem;
    color: var(--gj-ink);
}

.gj-pres-quotes__role {
    display: block;
    margin-top: 6px;
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gj-brand);
}

.gj-pres-quotes__more {
    margin: 56px 0 0;
    text-align: center;
}

.gj-pres-quotes__more a {
    font-family: var(--gj-font-logo);
    font-size: 12px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gj-brand);
    text-decoration: none;
    border-bottom: 1px solid rgba(184, 148, 72, 0.35);
}

.gj-pres-quotes__more a:hover {
    border-bottom-color: var(--gj-brand);
}

@media (max-width: 1100px) {
    .gj-pres-quotes__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 48px 32px;
    }

    .gj-pres-quotes__card blockquote {
        min-height: 0;
    }
}

@media (max-width: 600px) {
    .gj-pres-quotes__grid {
        grid-template-columns: 1fr;
        max-width: 360px;
        margin: 0 auto;
    }
}

/* Partenaires — grille logos */
.gj-pres-partners {
    background: #fff;
}

.gj-pres-partners__logos {
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(3, 1fr);
    max-width: 920px;
    margin: 0 auto;
}

.gj-pres-partners__cell {
    height: 112px;
    width: 100%;
    padding: 24px 28px;
    background: var(--gj-surface);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(15, 18, 24, 0.04);
}

.gj-pres-partners__cell img {
    max-width: 100%;
    max-height: 48px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(1);
    opacity: 0.78;
    transition: filter 0.25s ease, opacity 0.25s ease;
}

.gj-pres-partners__cell:hover img {
    filter: none;
    opacity: 1;
}

.gj-pres-partners__text {
    font-family: var(--gj-font-logo);
    font-size: 0.82rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gj-muted);
    text-align: center;
}

@media (max-width: 800px) {
    .gj-pres-partners__logos {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Croissance 360 — grand visuel */
.gj-pres-growth-hero {
    position: relative;
    background: var(--gj-brand-dark);
    color: #fff;
    padding: 180px 0;
    overflow: hidden;
    min-height: 62vh;
    display: flex;
    align-items: center;
}

.gj-pres-growth-hero__visual {
    position: absolute;
    inset: 0;
    background-image: var(--gj-pres-growth-bg);
    background-size: cover;
    background-position: center;
    opacity: 0.32;
}

.gj-pres-growth-hero__visual::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15, 18, 24, 0.5), rgba(15, 18, 24, 0.86));
}

.gj-pres-growth-hero .gj-container {
    position: relative;
    z-index: 1;
}

.gj-pres-growth-hero .gj-pres-head {
    margin-bottom: 0;
}

/* Gouvernance dédiée */
.gj-pres-gov {
    background: #fff;
}

.gj-pres-gov__split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
}

.gj-pres-gov__media {
    overflow: hidden;
    min-height: 420px;
}

.gj-pres-gov__media img {
    width: 100%;
    height: 100%;
    min-height: 420px;
    object-fit: cover;
    display: block;
}

.gj-pres-gov__list {
    max-width: none;
    margin: 0;
    padding: 0;
    list-style: none;
}

.gj-pres-gov__list li {
    position: relative;
    padding: 18px 0 18px 28px;
    border-bottom: 1px solid var(--gj-border);
    font-family: var(--gj-font-logo);
    letter-spacing: 0.04em;
    font-size: 1.05rem;
    color: var(--gj-ink);
}

.gj-pres-gov__list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--gj-brand);
}

@media (max-width: 840px) {
    .gj-pres-gov__split {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .gj-pres-gov__media,
    .gj-pres-gov__media img {
        min-height: 260px;
    }
}

/* Événements */
.gj-pres-events {
    position: relative;
    background: #161a22;
    color: #fff;
    overflow: hidden;
}

.gj-pres-events .gj-container {
    position: relative;
    z-index: 1;
}

.gj-pres-events .gj-pres-head h2 {
    color: #fff;
}

.gj-pres-events__list {
    max-width: 760px;
    margin: 0 auto;
    padding: 0;
    list-style: none;
}

.gj-pres-events__item {
    display: flex;
    align-items: center;
    gap: 28px;
    padding: 28px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.gj-pres-events__date {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 68px;
    padding: 12px 0;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.16);
}

.gj-pres-events__day {
    font-family: var(--gj-font-logo);
    font-size: 1.55rem;
    line-height: 1;
    color: #fff;
}

.gj-pres-events__month {
    font-size: 11px;
    letter-spacing: 0.1em;
    color: #d9a441;
}

.gj-pres-events__body {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.gj-pres-events__place {
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
}

.gj-pres-events__name {
    font-family: var(--gj-font-logo);
    letter-spacing: 0.04em;
    font-size: 1.08rem;
}

/* Conclusion */
.gj-pres-cta {
    position: relative;
    background: #141820;
    color: #fff;
    text-align: center;
    padding: 160px 0;
    overflow: hidden;
}

.gj-pres-cta--close {
    background: #141820;
}

.gj-pres-cta__bg {
    position: absolute;
    inset: 0;
    background-image: var(--gj-pres-cta-bg);
    background-size: cover;
    background-position: center;
    opacity: 0.26;
}

.gj-pres-cta__bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15, 18, 24, 0.58), rgba(15, 18, 24, 0.9));
}

.gj-pres-cta .gj-container {
    position: relative;
    z-index: 1;
}

.gj-pres-cta__logo {
    width: min(220px, 52vw);
    height: auto;
    margin: 0 auto 32px;
    display: block;
}

.gj-pres-cta__line {
    margin: 0 0 16px;
    font-family: var(--gj-font-logo);
    font-size: 13px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #d9a441;
}

.gj-pres-cta h2 {
    font-family: var(--gj-font-logo);
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-size: clamp(1.4rem, 2.8vw, 1.9rem);
    margin: 0 0 36px;
    color: #fff;
}

.gj-pres-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 30px;
    border: 1px solid rgba(255, 255, 255, 0.45);
    border-radius: 2px;
    font-family: var(--gj-font-logo);
    font-size: 13px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    text-decoration: none;
    color: #fff;
    background: transparent;
    transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.gj-pres-btn:hover,
.gj-pres-btn:focus-visible {
    background: var(--gj-brand);
    border-color: var(--gj-brand);
    color: #fff;
}

@media (max-width: 640px) {
    .gj-pres-section {
        padding: 88px 0;
    }

    .gj-pres-growth-hero {
        padding: 120px 0;
        min-height: 0;
    }

    .gj-pres-events__item {
        gap: 18px;
    }
}

/* Contact */
.gj-contact-section {
    padding: 80px 0;
    background: #fff;
}

.gj-contact-grid {
    display: grid;
    gap: 40px;
}

@media (min-width: 992px) {
    .gj-contact-grid {
        grid-template-columns: 1fr 1fr;
        align-items: start;
    }
}

.gj-contact-map img {
    width: 100%;
    height: auto;
}

.gj-form {
    display: grid;
    gap: 16px;
}

.gj-field {
    position: relative;
}

.gj-contact-form h2 {
    margin: 0 0 24px;
    font-family: 'Crimson Text', Georgia, serif;
}

.gj-contact-note {
    margin-top: 16px;
    font-size: 13px;
    color: var(--gj-muted);
}

.gj-field label + input,
.gj-field label + select,
.gj-field label + textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--gj-border);
    border-radius: 4px;
    font: inherit;
    background: #fff;
}

.gj-field textarea {
    min-height: 140px;
    resize: vertical;
}

.gj-field label {
    display: block;
    margin-bottom: 6px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.gj-partners-section {
    border-top: 1px solid var(--gj-border);
    padding-top: clamp(56px, 7vw, 80px);
}

.gj-partners-header {
    max-width: 780px;
    margin: 0 auto clamp(32px, 4vw, 48px);
    text-align: center;
}

.gj-partners-header__subtitle {
    margin: 0 auto;
    max-width: 680px;
    font-family: 'Trajan Pro', serif;
    font-size: 15px;
    line-height: 1.75;
    color: #6b6560;
}

.gj-testimonials-header {
    max-width: 780px;
    margin: 0 auto clamp(32px, 4vw, 48px);
    text-align: center;
}

.gj-go-top {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 90;
    width: 44px;
    height: 44px;
    line-height: 44px;
    text-align: center;
    background: var(--gj-brand);
    color: #fff !important;
    text-decoration: none !important;
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.2s ease;
}

/* === site-inner.css (fusionné) === */

/* GEREJE V2 — pages intérieures (design system gj-*) */

.gj-section--compact {
    padding: 48px 0;
}

.gj-section--surface {
    background: var(--gj-surface);
}

.gj-section--pb0 {
    padding-bottom: 0;
}

/* Navigation ancres (page About) */
.gj-anchor-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 24px;
}

.gj-anchor-nav__link {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gj-ink);
    text-decoration: none !important;
    padding: 8px 0;
    border-bottom: 2px solid transparent;
    transition: color 0.2s, border-color 0.2s;
}

.gj-anchor-nav__link:hover,
.gj-anchor-nav__link:focus-visible {
    color: var(--gj-brand);
    border-bottom-color: var(--gj-brand);
}

/* Onglets About */
.gj-about-tabs {
    display: grid;
    gap: 48px;
}

@media (min-width: 992px) {
    .gj-about-tabs {
        grid-template-columns: 1fr 1fr;
        align-items: start;
        gap: 64px;
    }
}

.gj-tabs-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0 0 28px;
    padding: 0;
    list-style: none;
    border-bottom: 1px solid var(--gj-border);
}

.gj-tabs-nav button {
    margin: 0;
    padding: 12px 18px;
    border: none;
    background: none;
    font: inherit;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gj-muted);
    cursor: pointer;
    border-bottom: 2px solid transparent;
    margin-bottom: -1px;
    transition: color 0.2s, border-color 0.2s;
}

.gj-tabs-nav button.is-active,
.gj-tabs-nav button:hover {
    color: var(--gj-brand);
    border-bottom-color: var(--gj-brand);
}

.gj-tab-panel {
    display: none;
}

.gj-tab-panel.is-active {
    display: block;
}

.gj-tab-panel h2 {
    font-family: 'Crimson Text', Georgia, serif;
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin: 0 0 16px;
}

.gj-tab-panel .prose-gereje {
    color: #5a5a5a;
    line-height: 1.8;
}

.gj-about-tabs__media img.gj-tab-media {
    display: none;
    width: 100%;
    height: auto;
    border-radius: 4px;
}

.gj-about-tabs__media img.gj-tab-media.is-active {
    display: block;
}

.gj-about-tabs__media {
    position: relative;
}

.gj-about-tabs__play {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none !important;
}

.gj-about-tabs__play .gj-video-icon {
    width: 72px;
    height: 72px;
}

.gj-about-cta {
    margin-top: 28px;
}

/* Services / deliver */
.gj-deliver-grid {
    display: grid;
    gap: 32px;
    margin-top: 48px;
}

@media (min-width: 768px) {
    .gj-deliver-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.gj-deliver-card {
    display: flex;
    flex-direction: column;
    gap: 20px;
    background: #fff;
    padding: 28px;
    border-radius: 4px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.gj-deliver-card--row {
    flex-direction: row;
    align-items: center;
}

@media (max-width: 767px) {
    .gj-deliver-card--row {
        flex-direction: column;
    }
}

.gj-deliver-card__img img {
    width: 100%;
    height: auto;
    border-radius: 4px;
}

.gj-deliver-card h3 {
    font-family: 'Crimson Text', Georgia, serif;
    font-size: 1.35rem;
    margin: 0 0 8px;
}

.gj-deliver-card p {
    margin: 0;
    color: #5a5a5a;
    line-height: 1.7;
}

.gj-footnote {
    text-align: center;
    margin-top: 48px;
    color: var(--gj-muted);
    font-size: 13px;
}

/* Méthodologie */
.gj-methodology {
    margin-top: 40px;
}

.gj-methodology__center {
    text-align: center;
    margin-bottom: 40px;
}

.gj-methodology__center img {
    max-width: 280px;
    margin: 0 auto;
}

.gj-methodology__steps {
    display: grid;
    gap: 32px;
}

@media (min-width: 768px) {
    .gj-methodology__steps {
        grid-template-columns: repeat(3, 1fr);
    }
}

.gj-method-step {
    text-align: center;
    padding: 24px 16px;
}

.gj-method-step__icon {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border: 1px solid var(--gj-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gj-brand);
    font-size: 28px;
}

.gj-method-step__num {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 28px;
    height: 28px;
    background: var(--gj-brand);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gj-method-step p {
    margin: 0;
    color: #5a5a5a;
    line-height: 1.7;
    font-size: 15px;
}

/* Valeurs ajoutées */
.gj-values-grid {
    display: grid;
    gap: 40px;
    position: relative;
    z-index: 2;
}

.gj-values-grid--4 {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(16px, 2vw, 24px);
}

@media (max-width: 1199px) {
    .gj-values-grid--4 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .gj-values-row {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 32px;
    }

    .gj-values-grid--4 {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 768px) {
    .gj-values-row {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 32px;
    }
}

.gj-value-card {
    text-align: center;
}

.gj-value-card__img {
    position: relative;
    margin-bottom: 20px;
    overflow: hidden;
    border-radius: 4px;
}

.gj-value-card__img img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s ease;
}

.gj-value-card:hover .gj-value-card__img img {
    transform: scale(1.04);
}

.gj-value-card__num {
    position: absolute;
    top: 12px;
    left: 12px;
    width: 36px;
    height: 36px;
    background: var(--gj-brand);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gj-value-card h4 {
    font-family: 'Crimson Text', Georgia, serif;
    font-size: 1.25rem;
    margin: 0 0 8px;
}

.gj-value-card p {
    margin: 0;
    color: #5a5a5a;
    line-height: 1.7;
    font-size: 14px;
}

.gj-member-card {
    background: #fff;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.gj-member-card:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.gj-member-card__photo {
    position: relative;
    aspect-ratio: 4 / 5;
    overflow: hidden;
}

.gj-member-card__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gj-member-card__photo a {
    position: absolute;
    bottom: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    background: var(--gj-brand);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none !important;
    font-size: 14px;
}

.gj-member-card__body {
    padding: 24px;
}

.gj-member-card__body h4 {
    font-family: 'Crimson Text', Georgia, serif;
    font-size: 1.2rem;
    margin: 0 0 6px;
}

.gj-member-card__role {
    font-size: 12px;
    color: var(--gj-brand);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin: 0 0 12px;
}

.gj-member-card__body p:last-child {
    margin: 0;
    color: #5a5a5a;
    font-size: 14px;
    line-height: 1.6;
}

/* Carte monde */
.gj-world-map {
    position: relative;
    z-index: 2;
}

.gj-world-map__image {
    position: relative;
    margin-bottom: 24px;
}

.gj-world-map__image > img {
    width: 100%;
    height: auto;
}

.gj-world-pin {
    position: absolute;
    transform: translate(-50%, -50%);
}

.gj-world-pin__marker {
    width: 12px;
    height: 12px;
    background: var(--gj-brand);
    border: 2px solid #fff;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    cursor: pointer;
}

.gj-world-pin__card {
    display: none;
    position: absolute;
    bottom: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%);
    width: 140px;
    background: #fff;
    padding: 8px;
    border-radius: 4px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    text-align: center;
}

.gj-world-pin:hover .gj-world-pin__card,
.gj-world-pin:focus-within .gj-world-pin__card {
    display: block;
}

.gj-world-pin__card img {
    width: 100%;
    height: 80px;
    object-fit: cover;
    border-radius: 2px;
    margin-bottom: 6px;
}

.gj-world-pin__card h4 {
    font-size: 12px;
    margin: 0;
    font-family: 'Crimson Text', Georgia, serif;
}

.gj-news-card__link {
    display: block;
    color: inherit;
    text-decoration: none !important;
}

.gj-world-regions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 24px 0;
}

.gj-world-regions li {
    margin: 0;
}


.gj-world-regions button {
    padding: 8px 16px;
    border: 1px solid var(--gj-border);
    background: #fff;
    font: inherit;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 2px;
    transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.gj-world-regions button.is-active,
.gj-world-regions button:hover {
    background: var(--gj-brand);
    border-color: var(--gj-brand);
    color: #fff;
}

.gj-world-cities {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 24px;
}

.gj-world-cities span {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--gj-muted);
}

.gj-world-cities span.is-hidden {
    display: none;
}

/* Bureaux */
.gj-offices-grid {
    display: grid;
    gap: 32px;
    margin-top: 40px;
}

@media (min-width: 768px) {
    .gj-offices-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .gj-offices-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.gj-office-card__img {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: 4px;
    margin-bottom: 16px;
}

.gj-office-card__img img,
.gj-office-card__img iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: 0;
}

.gj-office-card h4 {
    font-family: 'Crimson Text', Georgia, serif;
    margin: 0 0 8px;
}

.gj-office-card p {
    margin: 0 0 6px;
    font-size: 14px;
    color: #5a5a5a;
    line-height: 1.6;
}

/* News / track record — grille filtrable */
.gj-page-filter {
    max-width: 320px;
    margin: 0 auto 48px;
}

.gj-page-filter select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--gj-border);
    border-radius: 4px;
    font: inherit;
    background: #fff;
    cursor: pointer;
}

.gj-masonry {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 640px) {
    .gj-masonry { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 992px) {
    .gj-masonry { grid-template-columns: repeat(3, 1fr); }
}

.gj-masonry-item {
    min-width: 0;
}

.gj-masonry-item.is-hidden {
    display: none;
}

.gj-news-card {
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: box-shadow 0.25s ease;
}

.gj-news-card:hover {
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.1);
}

.gj-news-card__img {
    position: relative;
    overflow: hidden;
}

.gj-news-card__img img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s ease;
}

.gj-news-card:hover .gj-news-card__img img {
    transform: scale(1.03);
}

.gj-news-card__cat {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--gj-brand);
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 2px;
}

.gj-news-card__body {
    padding: 24px;
}

.gj-news-card__meta {
    list-style: none;
    margin: 0 0 8px;
    padding: 0;
    font-size: 12px;
    color: var(--gj-brand);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.gj-news-card h3 {
    font-family: 'Crimson Text', Georgia, serif;
    font-size: 1.2rem;
    margin: 0 0 12px;
    line-height: 1.3;
}

.gj-news-card__footer {
    font-size: 13px;
    font-weight: 600;
    color: var(--gj-brand);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

/* Cartes génériques */
.gj-cards-grid {
    display: grid;
    gap: 32px;
    margin-top: 40px;
}

@media (min-width: 768px) {
    .gj-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .gj-cards-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.gj-card-item {
    background: #fff;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: box-shadow 0.25s ease;
}

.gj-card-item:hover {
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.1);
}

.gj-card-item__img {
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.gj-card-item__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gj-card-item:hover .gj-card-item__img img {
    transform: scale(1.04);
}

.gj-card-item__body {
    padding: 24px;
}

.gj-card-item h3 {
    font-family: 'Crimson Text', Georgia, serif;
    margin: 0 0 10px;
}

.gj-card-item p {
    margin: 0 0 16px;
    color: #5a5a5a;
    font-size: 14px;
    line-height: 1.7;
}

/* Stats */
.gj-stats-layout {
    display: grid;
    gap: 48px;
    align-items: center;
}

@media (min-width: 992px) {
    .gj-stats-layout {
        grid-template-columns: 1fr 1fr;
    }
}

.gj-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 32px;
}

.gj-stat-box {
    background: #fff;
    padding: 24px;
    text-align: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    border-radius: 4px;
}

.gj-stat-box__value {
    font-family: 'Crimson Text', Georgia, serif;
    font-size: 2rem;
    color: var(--gj-brand);
    margin-bottom: 6px;
}

.gj-stat-box__label {
    font-size: 13px;
    color: #5a5a5a;
}

/* Flash messages (contact) */
.gj-invest-flash {
    padding: 12px 16px;
    border-radius: 4px;
    margin-bottom: 20px;
    font-size: 14px;
}

.gj-invest-flash--success {
    background: #edf7ed;
    color: #1e4620;
    border: 1px solid #c8e6c9;
}

.gj-invest-flash--error {
    background: #fdecea;
    color: #611a15;
    border: 1px solid #f5c6cb;
}

/* Article single */
.gj-container--narrow {
    max-width: 760px;
}

.gj-article__header {
    padding-top: 48px;
    padding-bottom: 24px;
}

.gj-article__back a {
    font-size: 14px;
    color: var(--gj-brand);
    text-decoration: none;
}

.gj-article__date {
    display: block;
    font-size: 13px;
    color: #777;
    margin: 16px 0 8px;
}

.gj-article__title {
    font-family: var(--gj-font-serif, 'Crimson Text', serif);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    line-height: 1.2;
    margin: 0 0 12px;
}

.gj-article__excerpt {
    font-size: 1.05rem;
    color: #555;
    margin: 0;
}

.gj-article__hero img {
    width: 100%;
    max-height: 420px;
    object-fit: cover;
    display: block;
}

.gj-prose {
    font-size: 1rem;
    line-height: 1.75;
    color: #333;
}

.gj-prose h2,
.gj-prose h3,
.gj-prose h4 {
    font-family: var(--gj-font-serif, 'Crimson Text', serif);
    margin-top: 1.5em;
    margin-bottom: 0.5em;
}

.gj-prose p {
    margin: 0 0 1em;
}

.gj-prose img {
    max-width: 100%;
    height: auto;
}
