
:root {
    --navy:        #0C1E3C;
    --navy-dark:   #060d1c;
    --red:         #C8102E;
    --red-dark:    #8b0a1e;
    --red-hover:   #a50d24;
    --gold:        #D4A017;
    --gold2:       #F5C842;
    --teal:        #2ABCBC;
    --white:       #FFFFFF;
    --light:       #F1F3F7;
    --border:      rgba(12,30,60,.10);


    --blue-deep:   #1A3A6B;
    --blue-mid:    #2255A0;
    --blue-light:  #4A90D9;
    --red-light:   #E8534A;
    --cream:       #FAF8F3;
    --cream-dark:  #EDE8DC;
    --ink:         #1C1C2E;
    --text:        #2D3748;
    --text-soft:   #4A5568;
    --border-p:    #D8D0C0;

    --font-sans:   'Inter', ui-sans-serif, system-ui, sans-serif;
    --font-serif:  'DM Serif Display', Georgia, serif;
    --font-serif2: 'Playfair Display', Georgia, serif;
}

/* ============================================
    RESET & BASE
    ============================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
    font-family: var(--font-sans);
    background: var(--cream);
    color: var(--ink);
    overflow-x: hidden;
    font-size: 15px;
    line-height: 1.65;
}


.line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.line-clamp-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
/* ============================================
    TYPOGRAPHIE
    ============================================ */
.font-serif  { font-family: var(--font-serif); }
.font-serif2  { font-family: var(--font-serif2); }

/* ============================================
    REVEAL AU SCROLL
    ============================================ */
[data-r] {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .7s cubic-bezier(.2,.6,.2,1), transform .7s cubic-bezier(.2,.6,.2,1);
}
[data-r].on        { opacity: 1; transform: none; }
[data-r="1"]       { transition-delay: .1s; }
[data-r="2"]       { transition-delay: .2s; }
[data-r="3"]       { transition-delay: .3s; }


/* ============================================
    BOUTONS GLOBAUX
    ============================================ */
.btn-primary {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--red); color: #fff; border: none;
    padding: 12px 24px; border-radius: 10px;
    font-family: var(--font-sans);
    font-size: .8rem; font-weight: 700;
    letter-spacing: .06em; text-transform: uppercase;
    text-decoration: none; cursor: pointer;
    transition: background .18s, transform .18s;
    box-shadow: 0 4px 16px rgba(200,16,46,.25);
}
.btn-primary:hover { background: var(--red-hover); transform: translateY(-1px); }

.btn-ghost {
    display: inline-flex; align-items: center; gap: 8px;
    background: transparent; color: rgba(255,255,255,.75);
    border: 1px solid rgba(255,255,255,.2);
    padding: 12px 24px; border-radius: 10px;
    font-family: var(--font-sans);
    font-size: .8rem; font-weight: 600;
    text-decoration: none; cursor: pointer;
    transition: border-color .18s, color .18s;
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold2); }




/* ── BOUTON 3D PRESS ── */
.btn-3d {
    position: relative;
    border: none;
    background: transparent;
    padding: 0;
    cursor: pointer;
    outline-offset: 4px;
    transition: filter 250ms;
    user-select: none;
    touch-action: manipulation;
    text-decoration: none;
    display: inline-block;
}
.btn-3d .shadow {
    position: absolute; top: 0; left: 0;
    width: 100%; height: 100%;
    border-radius: 12px;
    background: rgba(0,0,0,.25);
    will-change: transform;
    transform: translateY(2px);
    transition: transform 600ms cubic-bezier(.3,.7,.4,1);
}
.btn-3d .edge {
    position: absolute; top: 0; left: 0;
    width: 100%; height: 100%;
    border-radius: 12px;
    background: linear-gradient(to left,
        hsl(340deg 100% 16%) 0%,
        hsl(340deg 100% 32%) 8%,
        hsl(340deg 100% 32%) 92%,
        hsl(340deg 100% 16%) 100%
    );
}
.btn-3d .front {
    display: block;
    position: relative;
    padding: 12px 28px;
    border-radius: 12px;
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #fff;
    background: var(--red);
    will-change: transform;
    transform: translateY(-4px);
    transition: transform 600ms cubic-bezier(.3,.7,.4,1);
}
.btn-3d:hover { filter: brightness(110%); }
.btn-3d:hover .front {
    transform: translateY(-6px);
    transition: transform 250ms cubic-bezier(.3,.7,.4,1.5);
}
.btn-3d:active .front {
    transform: translateY(-2px);
    transition: transform 34ms;
}
.btn-3d:hover .shadow {
    transform: translateY(4px);
    transition: transform 250ms cubic-bezier(.3,.7,.4,1.5);
}
.btn-3d:active .shadow {
    transform: translateY(1px);
    transition: transform 34ms;
}

@media(max-width: 640px) {
    .btn-3d .front {
        padding: 10px 20px;
        font-size: .72rem;
    }
}


.verse-actions {
    display: flex;
    gap: 12px;
    margin-top: 18px;
    justify-content: space-between;
}

.verse-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 8px;
    padding: 8px 16px;
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    transition: all 0.2s ease;
}

.verse-btn i {
    font-size: 0.75rem;
}

.verse-btn:hover {
    border-color: var(--white);
    color: var(--white);
    background: var(--navy);
    transform: translateY(-1px);
}

.verse-btn:active {
    transform: translateY(0);
}

/* ── BOUTON VOIR PLUS / SEE ALL ── */
.btn-see-all {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--navy);
    text-decoration: none;
    padding: 8px 18px;
    border-radius: 6px;
    border: 1.5px solid rgba(12,30,60,.2);
    transition: all .2s;
    white-space: nowrap;
}
.btn-see-all:hover { background: var(--navy); color: #fff; }

/* Variante sur fond sombre (sections navy) */
.btn-see-all.light {
    color: rgba(255,255,255,.6);
    border-color: rgba(255,255,255,.15);
}
.btn-see-all.light:hover {
    background: rgba(255,255,255,.08);
    color: #fff;
    border-color: rgba(255,255,255,.3);
}


/* ============================================
    HERO
    ============================================ */
.hero {
    position: relative;
    overflow: hidden;
    background: var(--navy);
    min-height: 92vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

/* .hero {
    background-color: rgba(11, 21, 64, 0.856);
    background-image: url('/assets/images/president.jpeg');
    background-size: cover;
    background-position: center;
    background-blend-mode: multiply;

} */

.hero-bg-type {
    position: absolute; top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-serif);
    font-size: clamp(120px, 18vw, 280px);
    color: rgba(255,255,255,.03);
    white-space: wrap;
    pointer-events: none;
    user-select: none;
    line-height: 1;
    font-style: italic;

}

.hero-noise {
    position: absolute; inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.04'/%3E%3C/svg%3E");
    opacity: .5; pointer-events: none;
}
.hero-inner {
    position: relative; z-index: 2;
    max-width: 1200px; margin: 0 auto; width: 100%;
    padding: 80px 32px 64px;
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 48px; align-items: end;
}
.hero h1 {
    font-family: var(--font-serif);
    font-size: clamp(38px, 5.5vw, 72px);
    color: #fff;
    line-height: 1.08;
    margin-bottom: 22px;
    font-weight:900;
}
.hero h1 .em1 { color: var(--gold2); font-style: italic; }
.hero h1 .line2 {
    display: block; font-style: italic;
    color: rgba(255,255,255,.6); font-size: .75em;
}
.hero-desc {
    font-size: .92rem; color: rgba(255,255,255,.55);
    line-height: 1.85; max-width: 480px; margin-bottom: 34px;
}
.hero-btns { display: flex; gap: 12px; flex-wrap: nowrap; }

.btn-hero-g {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: rgba(255,255,255,.75);
    border: 1.5px solid rgba(255,255,255,.25);
    padding: 12px 24px;
    border-radius: 12px;
    text-decoration: none;
    transition: all .22s;
}
.btn-hero-g:hover {
    color: #fff;
    border-color: rgba(255,255,255,.6);
    background: rgba(255,255,255,.08);
}
@media(max-width: 680px) {
    .hero-btns         { gap: 8px; }
    .btn-hero-g { padding: 9px 14px; font-size: .72rem; }
}

@media(max-width: 480px) {
    .hero-btns { flex-wrap: wrap; }
}


/* Verset card dans le hero */
.hero-verset {
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.1);
    border-top: 3px solid var(--gold);
    border-radius: 16px; padding: 24px;
    backdrop-filter: blur(12px);
}
.hv-chip {
    display: inline-flex; align-items: center; gap: 6px;
    background: rgba(212,160,23,.15); border: 1px solid rgba(212,160,23,.3);
    color: var(--gold2); padding: 3px 10px; border-radius: 20px;
    font-size: .62rem; font-weight: 700;
    letter-spacing: .14em; text-transform: uppercase;
    margin-bottom: 14px;
}
.hv-text {
    font-family: var(--font-serif); font-style: italic;
    font-size: 1rem; line-height: 1.75; color: #fff; margin-bottom: 12px;
}
.hv-ref {
    font-size: .68rem; font-weight: 700; letter-spacing: .12em;
    color: rgba(255,255,255,.35); text-align: right; text-transform: uppercase;
}
.hv-sep  { height: 1px; background: rgba(255,255,255,.08); margin: 14px 0; }
.hv-date { font-size: .6rem; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.25); }



/* ============================================
HEADER
============================================ */
header {
    position: sticky;
    top: 0; z-index: 200;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 1px 12px rgba(12,30,60,.06);
}
.nav {
    max-width: 1200px; margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 32px;
    height: 60px;
}
.nav-logo { display: flex; text-decoration: none; }

.nav-menu {
    display: flex;
    gap: 2px;
    align-items: right;
}
.nav-menu a {
    font-family: var(--font-serif2);
    font-size: 1.2rem;
    font-weight: 600;
    color: rgba(0, 0, 0, 0.897);
    text-decoration: none;
    padding: 6px 12px;
    border-radius: 7px;
    transition: color .18s, background .18s;
    white-space: nowrap;
}
.nav-menu a:hover {
    color: var(--red);
    background: var(--white);
}
.nav-menu a.cur   { color: var(--red); font-weight: 700; background: transparent; }



.nav-btn-don {
    font-family: var(--font-serif2) !important;
    font-size: .9rem !important;
    font-weight: 700 !important;
    color: var(--white) !important;
    background: var(--red) !important;
    border: none !important;
    padding: 8px 16px;
    border-radius: 8px;
    text-decoration: none !important;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-left: 32px;
    transition: background .18s, transform .18s;
    white-space: nowrap;
    box-shadow: 0 2px 10px rgba(200,16,46,.25);
}
.nav-btn-don:hover {
    background: var(--red-hover) !important;
    transform: translateY(-1px) !important;
}
.nav-btn-don i { font-size: .9rem; }


.hamburger {
  position: relative;
  width: 36px;
  height: 36px;
  background: var(--cream);
  border-radius: 12px;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy-dark);
  border-radius: 4px;
  transition: 0.25s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* Hover : fond légèrement plus visible, ombre dorée */
.hamburger:hover {
  background: var(--cream);
  box-shadow: 0 4px 12px rgba(212,160,23,0.2);
  transform: translateY(-1px);
}

/* État open (quand menu actif) */
.hamburger.open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}


/* .hamburger {
    display: none; background: none; border: none;
    cursor: pointer; padding: 6px;
    flex-direction: column; gap: 5px;
}
.hamburger span {
    display: block; width: 22px; height: 2px;
    background: var(--navy); border-radius: 2px; transition: .25s;
} */

/* ── DRAWER MOBILE ── */
.drawer {
    position: fixed; inset: 0; z-index: 300;
    background: var(--white);
    transform: translateX(100%);
    transition: transform .35s cubic-bezier(.2,.9,.4,1.05);
    display: flex; flex-direction: column;
    overflow-y: auto;
}
.drawer.open { transform: translateX(0); }

.drawer-head {
    display: flex; align-items: center; justify-content: space-between;
    padding: .9rem 1.25rem;
    border-bottom: 1px solid var(--border);
    min-height: 60px;
}
.drawer-close {
    width: 36px; height: 36px;
    display: grid; place-items: center;
    border: 1px solid var(--border); border-radius: 8px;
    background: none; cursor: pointer;
    color: var(--navy); font-size: 1rem;
    transition: background .18s;
}
.drawer-close:hover { background: var(--light); }

.drawer-nav { flex: 1; }
.drawer-nav a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: .8rem 1rem;
    font-family: var(--font-serif2);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--ink);
    text-decoration: none;
    border-bottom: 1px solid rgba(12,30,60,.06);
    transition: color .18s, background .18s;
}
.drawer-nav a i    { font-size: .7rem; color: var(--red); opacity: .6; }
.drawer-nav a:hover { background: #F9FAFB; color: var(--red); }
.drawer-nav a.cur   { color: var(--red); font-weight: 700; }

.drawer-foot { padding: 1.1rem 1.25rem; border-top: 1px solid var(--border); }
.drawer-btn-don {
    display: flex; align-items: center; justify-content: center; gap: 8px;
    width: 100%;
    padding: 10px;
    font-family: var(--font-serif2);
    font-size: .9rem; font-weight: 700;
    color: var(--white);
    background: var(--red);
    border: none;
    border-radius: 10px;
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(200,16,46,.25);
    transition: background .18s;
}
.drawer-btn-don:hover { background: var(--red-hover); }

/* ── RESPONSIVE ── */
@media(max-width: 1024px) {
    .nav-menu, .nav-btn-don { display: none; }
    .hamburger { display: flex; }
    .hero-inner { grid-template-columns: 1fr; padding: 60px 16px 44px; }
}
@media(max-width: 680px) {
    .nav { padding: 0 16px; }
}



/* ============================================
NEWSLETTER
============================================ */
.newsletter-band {
    background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
    padding: 64px 32px;
    position: relative; overflow: hidden;
}
.newsletter-band::before {
    content: ''; position: absolute; top: -100px; right: -100px;
    width: 400px; height: 400px; border-radius: 50%;
    background: rgba(255,255,255,.06); pointer-events: none;
}
.newsletter-band::after {
    content: ''; position: absolute; bottom: -60px; left: 5%;
    width: 280px; height: 280px; border-radius: 50%;
    background: rgba(255,255,255,.04); pointer-events: none;
}
.nl-inner {
    /* max-width: 680px; */
     margin: 0 auto;
    text-align: center; position: relative; z-index: 1;
}
.nl-label {
    font-family: var(--font-sans);
    font-size: .65rem; font-weight: 700;
    letter-spacing: .22em; text-transform: uppercase;
    color: rgba(255,255,255,.55); margin-bottom: 10px;
}
.nl-title {
    font-family: var(--font-serif);
    font-size: clamp(24px, 4vw, 40px);
    color: var(--white); line-height: 1.2;
    margin-bottom: 8px; font-weight: 400;
}
.nl-sub {
    font-size: .88rem; color: rgba(255,255,255,.65);
    line-height: 1.7; margin-bottom: 28px;
}
.nl-form {
    display: flex; gap: 10px;
    max-width: 460px; margin: 0 auto;
}
.nl-input {
    flex: 1; padding: 13px 18px; border-radius: 10px;
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.2);
    color: var(--white); font-family: var(--font-sans);
    font-size: .85rem; outline: none;
    transition: border-color .2s, background .2s;
}
.nl-input::placeholder { color: rgba(255,255,255,.45); }
.nl-input:focus { border-color: rgba(255,255,255,.5); background: rgba(255,255,255,.18); }
.nl-btn {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 13px 22px; border-radius: 10px;
    background: var(--gold); color: var(--navy);
    border: none; font-family: var(--font-sans);
    font-size: .8rem; font-weight: 800;
    cursor: pointer; white-space: nowrap;
    transition: background .18s;
}
.nl-btn:hover { background: var(--gold2); }
.nl-error   { color: rgba(255,255,255,.75); font-size: .78rem; margin-top: 8px; }

@media (max-width: 480px) {
    .nl-form {
        display: flex;
        flex-wrap: nowrap;   /* force une seule ligne */
        gap: 6px;
        width: 100%;
    }
    .nl-input {
        min-width: 0;        /* autorise la réduction */
        flex: 1;
        font-size: 0.8rem;
        padding: 10px 12px;
    }
    .nl-btn {
        flex-shrink: 0;      /* empêche le bouton de rétrécir trop */
        padding: 10px 14px;
        font-size: 0;
    }
    .nl-btn i {
        font-size: 1rem;
        margin: 0;
    }
}
/* ============================================
FOOTER
============================================ */
footer {
    background: #011027;
    padding: 48px 32px 16px;
}



.foot-inner { max-width: 1200px; margin: 0 auto; }

.foot-top {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,.1);
    margin-bottom: 14px;
}

.foot-logo-img  { height: 40px; width: auto; margin-bottom: 14px; display: block; }
.foot-brand-name {
    font-family: var(--font-serif2);
    font-size: .9rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 12px;
}
.foot-brand p {
    font-size: .8rem; color: rgba(255,255,255,.55);
    line-height: 1.85; font-style: italic;
}

.foot-socials { display: flex; gap: 8px; margin-top: 20px; }
.fsoc {
    width: 36px; height: 36px; border-radius: 9px;
    border: 1px solid rgba(255,255,255,.2);
    display: flex; align-items: center; justify-content: center;
    font-size: .8rem; color: rgba(255,255,255,.55);
    text-decoration: none; transition: all .18s;
}
.fsoc:hover { border-color: var(--gold); color: var(--gold2); transform: translateY(-2px); }

.foot-col h5 {
    font-family: var(--font-serif2);
    font-size: .75rem; font-weight: 700;
    letter-spacing: .18em; text-transform: uppercase;
    color: var(--white);
    margin-bottom: 18px; padding-bottom: 8px;
    border-bottom: 1px solid rgba(255,255,255,.1);
}
.foot-col a {
    display: block; font-size: .84rem;
    color: rgba(255,255,255,.6);
    text-decoration: none; margin-bottom: 10px;
    font-family: var(--font-sans); transition: color .18s;
}
.foot-col a:hover { color: var(--white); }

.foot-bottom {
    display: flex; align-items: center;
    justify-content: center; flex-wrap: wrap; gap: 8px;
}
.foot-copy {
    font-size: .72rem; color: rgba(255,255,255,.4);
    font-family: var(--font-sans);
}

/* ── RESPONSIVE FOOTER ── */
@media(max-width: 1024px) {
    .foot-top { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media(max-width: 640px) {
    .foot-top         { grid-template-columns: 1fr; }
    .newsletter-band  { padding: 48px 20px; }
    footer            { padding: 48px 20px 24px; }
    .foot-bottom      { flex-direction: column; align-items: flex-start; }
}


/* ============================================
ENSEIGNEMENTS — Magazine 2+3
============================================ */

.ens-section {
    padding: 20px 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
}
.ens-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

/* En-tête */
.ens-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 36px;
    gap: 16px;
    flex-wrap: wrap;
}

.ens-heading {
    font-family: var(--font-serif);
    font-size: clamp(28px, 3vw, 38px);
    color: var(--navy);
    line-height: 1.1;
    font-weight: 700;


}



/* Lignes */
.ens-row1 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}
.ens-row2 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

/* Card base */
.ens-card {
    display: flex;
    flex-direction: column;
    border-radius: 14px;
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--border);
    text-decoration: none;
    color: inherit;
    transition: transform .25s, box-shadow .25s;
    box-shadow: 0 2px 12px rgba(12,30,60,.05);
}
.ens-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 44px rgba(12,30,60,.13);
}

/* Barre couleur */
.ens-card-bar {
    height: 4px;
    background: var(--bar-color, var(--teal));
    flex-shrink: 0;
}

/* Image */
.ens-card-img {
    aspect-ratio: 16/10;
    overflow: hidden;
    background: var(--light);
    flex-shrink: 0;
}
.ens-card-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .5s;
}
.ens-card:hover .ens-card-img img { transform: scale(1.05); }


/* Catégorie */
.ens-cat {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: .58rem;
    font-weight: 800;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--cat-color, var(--teal));
}

/* Corps */
.ens-card-body {
    padding: 18px 20px 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

/* Titre net */
.ens-card-title {
    font-family: var(--font-sans);   /* Inter au lieu de DM Serif */
    font-size: 15px;
    font-weight: 700;                /* Bold, pas 400 */
    color: var(--navy);
    line-height: 1.4;
    transition: color .2s;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.ens-card:hover .ens-card-title { color: var(--teal); }

.ens-card.featured .ens-card-title {
    font-family: var(--font-serif);
    font-size: clamp(20px, 1.8vw, 26px);
    font-weight: 700;
    line-height: 1.3;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.ens-card-excerpt {
    font-size: .78rem;
    color: var(--text);
    line-height: 1.7;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Pied */
.ens-card-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
    padding-top: 12px;
    border-top: 1px solid var(--border);
    margin-top: auto;
}
.ens-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.ens-card-date {
    font-size: .65rem;
    color: var(--text);
    display: inline-flex;
    align-items: center;
    gap: 4px;
}
.ens-card-read {
    font-size: .62rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--red);
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: gap .2s;
}
.ens-card:hover .ens-card-read { gap: 7px; }

/* ── FEATURED ── */
.ens-card.featured {
    grid-column: span 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto 1fr;
    flex-direction: unset;
}
.ens-card.featured .ens-card-bar  { grid-column: span 2; }
.ens-card.featured .ens-card-img  {
    aspect-ratio: unset;
    min-height: 260px;
    grid-row: 2; grid-column: 1;
}
.ens-card.featured .ens-card-body {
    grid-row: 2; grid-column: 2;
    padding: 28px 32px;
    justify-content: center;
    gap: 12px;
    border-left: 1px solid var(--border);
}

.ens-card.featured .ens-card-excerpt {
    -webkit-line-clamp: 4;
    font-size: .82rem;
}
.ens-card.featured .ens-card-read {
    font-size: .68rem;
    background: var(--red);
    color: #fff;
    padding: 8px 14px;
    border-radius: 6px;
    gap: 6px;
    box-shadow: 0 3px 10px rgba(200,16,46,.25);
}
.ens-card.featured:hover .ens-card-read { gap: 9px; }

/* ── RESPONSIVE ── */
@media(max-width: 1024px) {
    .ens-container { padding: 0 24px; }
    .ens-row1 { grid-template-columns: 1fr 1fr; }
    .ens-card.featured {
        grid-column: span 2;
        grid-template-columns: 1fr 1fr;
    }
    .ens-row2 { grid-template-columns: 1fr 1fr; }
}

@media(max-width: 640px) {
    .ens-container { padding: 0 16px; }
    .ens-section   { padding: 56px 0; }
    .ens-row1      { grid-template-columns: 1fr; }
    .ens-row2      { grid-template-columns: 1fr; }
    .ens-card.featured {
        grid-column: span 1;
        display: flex;
        flex-direction: column;
    }
    .ens-card.featured .ens-card-bar  { grid-column: unset; }
    .ens-card.featured .ens-card-img  {
        aspect-ratio: 16/9;
        min-height: unset;
        grid-column: unset;
        grid-row: unset;
    }
    .ens-card.featured .ens-card-body {
        grid-column: unset;
        grid-row: unset;
        border-left: none;
        border-top: 1px solid var(--border);
        padding: 18px 20px;
    }
}




/* ============================================
   ÉVÉNEMENTS
   ============================================ */

.evt-section {
    padding: 80px 0;
    background: var(--light);
}
.evt-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

/* En-tête */
.evt-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 36px;
    gap: 16px;
    flex-wrap: wrap;
}

.evt-heading {
    font-family: var(--font-serif);
    font-size: clamp(28px, 3vw, 38px);
    color: var(--navy);
    line-height: 1.1;
    font-weight: 700;
}
.evt-heading em {
    font-style: italic;
    color: var(--red);
    font-weight: 600;
}

/* Grid */
.evt-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

/* Card */
.evt-card {
    display: flex;
    flex-direction: column;
    border-radius: 14px;
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--border);
    text-decoration: none;
    color: inherit;
    transition: transform .25s, box-shadow .25s;
    box-shadow: 0 2px 12px rgba(12,30,60,.05);
}
.evt-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 44px rgba(12,30,60,.13);
}

/* En-tête card */
.evt-card-head {
    background: var(--navy);
    padding: 18px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}
.evt-date-nums {
    border-left: 3px solid var(--red);
    padding-left: 12px;
}
.evt-day {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    font-weight: 700;
    color: #fff;
    line-height: 1;
    display: block;
    -webkit-font-smoothing: antialiased;
}
.evt-month {
    font-size: .58rem;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--gold2);
    display: block;
    margin-top: 2px;
}

/* Badge dynamique */
.evt-badge {
    font-size: .58rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 20px;
    background: var(--badge-bg, rgba(200,16,46,.2));
    color: var(--badge-color, #f87171);
    border: 1px solid var(--badge-border, rgba(200,16,46,.3));
    white-space: nowrap;
}

/* Image */
.evt-card-img {
    aspect-ratio: 16/8;
    overflow: hidden;
    background: var(--light);
    flex-shrink: 0;
}
.evt-card-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .5s;
}
.evt-card:hover .evt-card-img img { transform: scale(1.05); }
.evt-card-img-fallback {
    width: 100%; height: 100%;
    display: grid; place-items: center;
    color: rgba(12,30,60,.1);
    font-size: 2rem;
    background: var(--light);
}

/* Corps */
.evt-card-body {
    padding: 18px 22px 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}
.evt-card-title {
    font-family: var(--font-sans);
    font-size: 15px;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.4;
    transition: color .2s;
    -webkit-font-smoothing: antialiased;
}
.evt-card:hover .evt-card-title { color: var(--red); }

.evt-card-excerpt {
    font-size: .78rem;
    color: var(--text);
    line-height: 1.7;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Info lieu/heure */
.evt-card-info {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 2px;
}
.evt-card-info span {
    font-size: .68rem;
    color: var(--text);
    display: inline-flex;
    align-items: center;
    gap: 4px;
}
.evt-card-info i {
    color: var(--red);
    font-size: .6rem;
}

/* Pied */
.evt-card-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 12px;
    border-top: 1px solid var(--border);
    margin-top: auto;
}
.evt-card-cta {
    font-size: .62rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--red);
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: gap .2s;
}
.evt-card:hover .evt-card-cta { gap: 7px; }
.evt-card-arrow {
    width: 28px; height: 28px;
    border-radius: 50%;
    background: var(--light);
    display: grid; place-items: center;
    font-size: .6rem;
    color: var(--text);
    transition: background .2s, color .2s;
}
.evt-card:hover .evt-card-arrow {
    background: var(--navy);
    color: #fff;
}

/* ── RESPONSIVE ── */
@media(max-width: 1024px) {
    .evt-container { padding: 0 24px; }
    .evt-grid { grid-template-columns: 1fr 1fr; }
}
@media(max-width: 640px) {
    .evt-container { padding: 0 16px; }
    .evt-section   { padding: 56px 0; }
    .evt-grid      { grid-template-columns: 1fr; }
}


/* ============================================
   VIDÉOTHÈQUE
   ============================================ */

.vid-section {
    padding: 80px 0;
    background: var(--navy);
    position: relative;
    overflow: hidden;
}
.vid-section::before {
    content: '';
    position: absolute;
    top: -100px; right: -100px;
    width: 450px; height: 450px; border-radius: 50%;
    background: radial-gradient(circle, rgba(14,124,123,.1) 0%, transparent 65%);
    pointer-events: none;
}
.vid-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 1;
}


/* Titre */
.vid-heading {
    font-family: var(--font-serif);
    font-size: clamp(28px, 3vw, 38px);
    color: #fff; line-height: 1.1; font-weight: 700;
}
.vid-heading em { font-style: italic; color: var(--gold2); font-weight: 600; }


/* Layout principal */
.vid-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-items: start;
}

/* ── FEATURED ── */
.vid-featured {
    border-radius: 14px;
    overflow: hidden;
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.08);
    cursor: pointer;
    transition: transform .25s, border-color .25s;
}
.vid-featured:hover { transform: translateY(-4px); border-color: rgba(255,255,255,.2); }

.vid-featured-thumb {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
}
.vid-featured-thumb img {
    width: 100%; height: 100%;
    object-fit: cover; display: block;
    transition: transform .5s;
}
.vid-featured:hover .vid-featured-thumb img { transform: scale(1.04); }

.vid-featured-body {
    padding: 14px 16px;
}
.vid-featured-title {
    font-size: 15px; font-weight: 700;
    color: rgba(255,255,255,.9); line-height: 1.45;
    margin-bottom: 5px;
    -webkit-font-smoothing: antialiased;
    transition: color .2s;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.vid-featured:hover .vid-featured-title { color: var(--gold2); }
.vid-featured-date {
    font-size: .62rem; color: rgba(255,255,255,.35);
    display: flex; align-items: center; gap: 5px;
}

/* ── GRILLE SECONDAIRE ── */
.vid-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}
.vid-card {
    border-radius: 12px;
    overflow: hidden;
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.08);
    cursor: pointer;
    transition: transform .25s, border-color .25s;
}
.vid-card:hover { transform: translateY(-3px); border-color: rgba(255,255,255,.2); }

.vid-card-thumb {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
}
.vid-card-thumb img {
    width: 100%; height: 100%;
    object-fit: cover; display: block;
    transition: transform .5s;
}
.vid-card:hover .vid-card-thumb img { transform: scale(1.04); }

.vid-card-body { padding: 10px 12px; }
.vid-card-title {
    font-size: 12px; font-weight: 700;
    color: rgba(255,255,255,.88); line-height: 1.4;
    margin-bottom: 4px;
    -webkit-font-smoothing: antialiased;
    transition: color .2s;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.vid-card:hover .vid-card-title { color: var(--gold2); }
.vid-card-date {
    font-size: .58rem; color: rgba(255,255,255,.3);
    display: flex; align-items: center; gap: 4px;
}

/* ── OVERLAY & PLAY (partagés) ── */
.vid-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(12,30,60,.75) 0%, transparent 55%);
}
.vid-play-wrap {
    position: absolute; inset: 0;
    display: flex; align-items: center; justify-content: center;
}
.vid-play-btn {
    width: 48px; height: 48px; border-radius: 50%;
    background: rgba(255,255,255,.12);
    border: 2px solid rgba(255,255,255,.3);
    display: grid; place-items: center;
    color: #fff; font-size: 1rem;
    backdrop-filter: blur(4px);
    transition: all .25s;
}
.vid-featured:hover .vid-play-btn,
.vid-card:hover .vid-play-btn {
    background: var(--gold); border-color: var(--gold);
    color: var(--navy); transform: scale(1.1);
}
.vid-play-btn-sm { width: 36px; height: 36px; font-size: .75rem; }

/* Badges */
.vid-badge-duration {
    position: absolute; bottom: 8px; right: 8px;
    font-size: .58rem; font-weight: 700;
    background: rgba(0,0,0,.72); color: #fff;
    padding: 2px 7px; border-radius: 4px;
}
.vid-badge-provider {
    position: absolute; bottom: 8px; left: 8px;
    width: 22px; height: 22px; border-radius: 4px;
    background: rgba(0,0,0,.6); color: rgba(255,255,255,.7);
    display: grid; place-items: center; font-size: .6rem;
}

/* ── LIGHTBOX ── */
.vid-lightbox { position: fixed; inset: 0; z-index: 300; }
.vid-lightbox.hidden { display: none; }
.vid-lb-bg {
    position: absolute; inset: 0;
    background: rgba(0,0,0,.85);
    backdrop-filter: blur(6px);
}
.vid-lb-inner {
    position: relative; height: 100%;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    padding: 1.5rem;
}
.vid-lb-player {
    position: relative; width: 100%;
    max-width: 1000px; aspect-ratio: 16/9;
    border-radius: 14px; overflow: hidden; background: #000;
}
.vid-lb-player > div { width: 100%; height: 100%; }
.vid-lb-close {
    position: absolute; top: .75rem; right: .75rem; z-index: 10;
    width: 36px; height: 36px;
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 8px; color: #fff;
    font-size: 1rem; cursor: pointer;
    display: grid; place-items: center;
    transition: background .18s;
}
.vid-lb-close:hover { background: rgba(255,255,255,.22); }
.vid-lb-title {
    margin-top: 1rem; font-size: .82rem;
    color: rgba(255,255,255,.45); text-align: center;
}

/* ── RESPONSIVE ── */
@media(max-width: 1024px) {
    .vid-container { padding: 0 24px; }
    .vid-layout { grid-template-columns: 1fr; }
    .vid-grid   { grid-template-columns: repeat(3, 1fr); }
}
@media(max-width: 640px) {
    .vid-container { padding: 0 16px; }
    .vid-section   { padding: 56px 0; }
    .vid-grid      { grid-template-columns: 1fr 1fr; }
}





/* ============================================
   ANNONCES
   ============================================ */
/* Layout card : 1fr + image fixe */
.ann-item {
    grid-template-columns: 1fr 240px;
    min-height: 140px;
    max-height: 180px;
}

/* Image : hauteur fixe pour ne pas s'étirer */
.ann-img {
    height: 100%;
    max-height: 180px;
}

/* Titre : line-clamp */
.ann-title {
    font-size: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color .2s;
    -webkit-font-smoothing: antialiased;
}
.ann-item:hover .ann-title { color: #071628; }

/* Excerpt : line-clamp */
.ann-excerpt {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Lire : gap au hover */
.ann-read { transition: gap .2s; }
.ann-item:hover .ann-read { gap: 8px; }

/* Image scale au hover */
.ann-img img { transition: transform .5s; }
.ann-item:hover .ann-img img { transform: scale(1.05); }

/* Responsive */
@media(max-width: 768px) {
    .ann-item {
        grid-template-columns: 1fr;
        max-height: none;
    }
    .ann-img {
        height: 160px;
        max-height: 160px;
        border-top: 1px solid var(--border);
    }
}
@media(max-width: 640px) {
    .ann-img { height: 140px; max-height: 140px; }
}





/* ============================================
   SECTION PÂQUES — CSS custom minimal
   ============================================ */

/* Layout : fixe 320px à gauche */
.paques-card {
    grid-template-columns: 320px 1fr;
}

/* Fond gauche navy dégradé */
.paques-visual {
    background: linear-gradient(145deg, #0C1E3C 0%, #1a3560 60%, #243d72 100%);
    position: relative;
    overflow: hidden;
}

/* Barre gold en bas */
.paques-visual::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold2), var(--gold));
}

/* Orbe décorative */
.paques-orb {
    position: absolute;
    top: -40px; right: -40px;
    width: 180px; height: 180px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212,160,23,.12) 0%, transparent 65%);
    pointer-events: none;
}

/* Texte fantôme */
.paques-ghost {
    position: absolute;
    bottom: -20px; right: -10px;
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 110px;
    font-weight: 600;
    color: rgba(255,255,255,.05);
    line-height: 1;
    pointer-events: none;
    user-select: none;
    white-space: nowrap;
}

/* Titres calligraphiques */
.paques-title-small {
    font-family: var(--font-serif);
    font-weight: 600;
    letter-spacing: .04em;
}
.paques-title-big {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 600;
    letter-spacing: -.02em;
    line-height: 1.02;
}

/* Verset italic */
.paques-verse-text {
    font-family: var(--font-serif2);
    font-style: italic;
    line-height: 1.4;
}

/* Responsive */
@media(max-width: 900px) {
    .paques-card { grid-template-columns: 1fr; }
    .paques-visual { min-height: 240px; }
}


