
/* ================================================================
   GROUPE CSI · PÔLE POLYTECHNIQUE
   Design System — Editorial Luxury Edition
   ================================================================ */

:root {
    --ink: #0a1f17; --ink-soft: #14322b; --moss: #0a3d2e;
    --emerald: #0e6b51; --jade: #14a37f; --mint: #e8f5ef;
    --gold: #c9a45c; --gold-soft: #e8d4a8; --gold-deep: #a8893f;
    --terracotta: #c97954; --cream: #faf7f0; --paper: #f3eee2; --paper-warm: #ede5d2;
    --rule: rgba(10, 31, 23, 0.10); --rule-strong: rgba(10, 31, 23, 0.18);
    --rule-light: rgba(250, 247, 240, 0.12); --text-soft: rgba(10, 31, 23, 0.62);
    --text-on-dark: rgba(250, 247, 240, 0.78);
    --shadow-soft: 0 12px 40px -12px rgba(10, 31, 23, 0.12);
    --shadow-strong: 0 30px 60px -20px rgba(10, 31, 23, 0.28);
    --shadow-gold: 0 18px 40px -16px rgba(201, 164, 92, 0.35);
    --font-display: 'Fraunces', 'Georgia', serif;
    --font-body: 'Manrope', system-ui, sans-serif;
    --font-mono: 'JetBrains Mono', 'Courier New', monospace;
}

* { box-sizing: border-box; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--cream); color: var(--ink); font-family: var(--font-body); font-weight: 400; line-height: 1.6; overflow-x: hidden; text-rendering: optimizeLegibility; }
h1, h2, h3, h4, h5 { font-family: var(--font-display); font-optical-sizing: auto; font-weight: 500; letter-spacing: -0.02em; line-height: 1.05; margin: 0; color: var(--ink); }
img { max-width: 100%; display: block; }
p { margin: 0 0 16px; }
a { color: inherit; text-decoration: none; transition: color .25s ease; }
::selection { background: var(--gold); color: var(--ink); }
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--paper); }
::-webkit-scrollbar-thumb { background: var(--emerald); }
::-webkit-scrollbar-thumb:hover { background: var(--ink); }
@media (prefers-reduced-motion: reduce) { *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; } }

/* Page system */
.page { display: block; }
.page.active { display: block; animation: pageReveal .6s cubic-bezier(.2,.8,.2,1); }
@keyframes pageReveal { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

/* Layout */
.container { max-width: 1440px; margin: 0 auto; padding: 0 24px; }
@media (min-width: 768px) { .container { padding: 0 40px; } }
@media (min-width: 1280px) { .container { padding: 0 72px; } }
.section { padding: 80px 0; }
@media (min-width: 768px) { .section { padding: 120px 0; } }
@media (min-width: 1280px) { .section { padding: 144px 0; } }
.section-dark { background: var(--ink); color: var(--cream); }
.section-paper { background: var(--paper); }
.section-cream { background: var(--cream); }
.section-moss { background: var(--moss); color: var(--cream); }
.section-mint { background: var(--mint); }
.section-dark h1, .section-dark h2, .section-dark h3, .section-dark h4,
.section-moss h1, .section-moss h2, .section-moss h3, .section-moss h4 { color: var(--cream); }

/* Typography */
.eyebrow { font-family: var(--font-mono); font-size: 11px; font-weight: 600; letter-spacing: 0.32em; text-transform: uppercase; color: var(--emerald); margin-bottom: 16px; display: inline-flex; align-items: center; gap: 12px; }
.eyebrow::before { content: ''; width: 32px; height: 1px; background: var(--emerald); }
.section-dark .eyebrow, .section-moss .eyebrow { color: var(--gold); }
.section-dark .eyebrow::before, .section-moss .eyebrow::before { background: var(--gold); }
.h2-display { font-size: clamp(2rem, 4.5vw, 3.75rem); }
.italic-accent { font-style: italic; font-weight: 400; color: var(--emerald); }
.section-dark .italic-accent, .section-moss .italic-accent { color: var(--gold); }
.lead { font-size: 18px; line-height: 1.65; font-weight: 300; color: var(--text-soft); max-width: 640px; }
.section-dark .lead, .section-moss .lead { color: var(--text-on-dark); }

/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 12px; padding: 15px 28px; font-family: var(--font-body); font-size: 13.5px; font-weight: 600; letter-spacing: 0.02em; cursor: pointer; border: 1px solid transparent; background: transparent; transition: all .3s ease; white-space: nowrap; text-decoration: none; line-height: 1; }
.btn-arrow { display: inline-block; transition: transform .3s ease; }
.btn:hover .btn-arrow { transform: translateX(4px); }
.btn-primary { background: var(--ink); color: var(--cream); border-color: var(--ink); }
.btn-primary:hover { background: var(--emerald); border-color: var(--emerald); transform: translateY(-2px); box-shadow: 0 14px 30px -10px rgba(10,31,23,0.4); }
.btn-gold { background: var(--gold); color: var(--ink); border-color: var(--gold); }
.btn-gold:hover { background: var(--ink); color: var(--gold); border-color: var(--ink); transform: translateY(-2px); }
.btn-outline { color: var(--ink); border-color: var(--rule-strong); }
.btn-outline:hover { background: var(--ink); color: var(--cream); border-color: var(--ink); }
.btn-outline-light { color: var(--cream); border-color: rgba(250,247,240,0.3); }
.btn-outline-light:hover { background: var(--cream); color: var(--ink); border-color: var(--cream); }
.btn-small { padding: 11px 20px; font-size: 12.5px; }
.btn-block { display: flex; width: 100%; }

/* Top bar */
.topbar { background: var(--ink); color: var(--text-on-dark); padding: 10px 0; font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.14em; position: relative; z-index: 70; border-bottom: 1px solid var(--rule-light); }
.topbar-inner { max-width: 1440px; margin: 0 auto; padding: 0 24px; display: flex; justify-content: space-between; align-items: center; gap: 24px; flex-wrap: wrap; }
@media (min-width: 768px) { .topbar-inner { padding: 0 40px; } }
@media (min-width: 1280px) { .topbar-inner { padding: 0 72px; } }
.topbar-left, .topbar-right { display: flex; gap: 22px; align-items: center; flex-wrap: wrap; }
.topbar-left span { display: flex; align-items: center; gap: 8px; }
.topbar-left i { color: var(--jade); font-size: 11px; }
.topbar-right a { color: var(--text-on-dark); cursor: pointer; transition: color .25s; }
.topbar-right a:hover { color: var(--gold); }
.topbar-right .sep { color: rgba(250,247,240,0.18); }
@media (max-width: 720px) { .topbar-hide-mobile { display: none; } }

/* Navigation */
.nav { position: sticky; top: 0; z-index: 60; background: rgba(250,247,240,0.94); backdrop-filter: blur(20px) saturate(180%); -webkit-backdrop-filter: blur(20px) saturate(180%); border-bottom: 1px solid var(--rule); transition: box-shadow .3s, padding .3s; }
.nav.is-scrolled { box-shadow: 0 10px 30px -18px rgba(10,31,23,.3); }
.nav-inner { max-width: 1440px; margin: 0 auto; padding: 18px 24px; display: flex; justify-content: space-between; align-items: center; gap: 32px; }
@media (min-width: 768px) { .nav-inner { padding: 20px 40px; } }
@media (min-width: 1280px) { .nav-inner { padding: 22px 72px; } }
.nav-brand { display: flex; align-items: center; gap: 14px; cursor: pointer; flex-shrink: 0; }
.nav-logo { width: 52px; height: 52px; border-radius: 0; overflow: hidden; background: var(--ink); border: 1px solid var(--rule-strong); flex-shrink: 0; box-shadow: var(--shadow-soft); transition: transform .4s ease; }
.nav-brand:hover .nav-logo { transform: rotate(-6deg) scale(1.05); }
.nav-logo img { width: 100%; height: 100%; object-fit: cover; }
.nav-brand-text { line-height: 1.1; }
.nav-brand-title { font-family: var(--font-display); font-size: 21px; font-weight: 500; color: var(--ink); letter-spacing: -0.01em; }
.nav-brand-sub { font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--emerald); font-weight: 600; margin-top: 4px; }
.nav-links { display: none; align-items: center; gap: 16px; flex-wrap: nowrap; flex-shrink: 0; }
@media (min-width: 1400px) { .nav-links { display: flex; } }
/* Nav infos — panneau publicitaire cinématique dans l'espace libre de la nav bar */
.nav-ticker { display: flex; flex: 1 1 auto; min-width: 60px; height: 46px; margin: 0 8px; position: relative; overflow: hidden; align-items: center; justify-content: center; }
@media (max-width: 520px) { .nav-ticker-num, .nav-ticker-text small { display: none; } }
.nav-ticker-slide { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); display: flex; align-items: center; gap: 9px; white-space: nowrap; opacity: 0; transition: opacity .7s ease, transform .7s ease; pointer-events: none; }
.nav-ticker-slide.is-active { opacity: 1; transform: translate(-50%, -50%); pointer-events: auto; }
.nav-ticker-slide.is-prev { transform: translate(-50%, -60%); }
.nav-ticker-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--emerald); flex-shrink: 0; }
.nav-ticker-num { font-family: var(--font-mono); font-size: 13px; font-weight: 700; color: var(--gold); letter-spacing: 0.02em; flex-shrink: 0; }
.nav-ticker-text { font-family: var(--font-body); font-size: 15px; font-weight: 600; color: var(--ink); letter-spacing: 0.005em; overflow: hidden; text-overflow: ellipsis; }
@media (max-width: 520px) { .nav-ticker-text { font-size: 12px; } }
.nav-ticker-text small { display: inline; font-family: var(--font-mono); font-size: 11.5px; font-weight: 500; color: var(--text-soft); letter-spacing: 0.03em; text-transform: uppercase; margin-left: 6px; }
@media (min-width: 1400px) { .nav-ticker { min-width: 230px; } }
.nav-link { font-family: var(--font-body); font-size: 13.5px; font-weight: 500; color: var(--ink); padding: 8px 0; position: relative; cursor: pointer; transition: color .25s ease; }
.nav-link:hover { color: var(--emerald); }
.nav-link.is-active { color: var(--emerald); }
.nav-link.is-active::after { content: ''; position: absolute; bottom: -2px; left: 0; width: 100%; height: 1.5px; background: var(--emerald); }
.nav-dropdown { position: relative; }
.nav-dropdown > .nav-link::after { content: ''; display: inline-block; width: 6px; height: 6px; margin-left: 6px; border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor; transform: rotate(45deg) translateY(-2px); opacity: 0.5; transition: transform .25s, opacity .25s; }
.nav-dropdown:hover > .nav-link::after { opacity: 1; transform: rotate(225deg) translateY(-2px); }
.nav-dropdown-menu { position: absolute; top: 100%; left: -16px; background: var(--cream); border: 1px solid var(--rule); min-width: 300px; padding: 10px 0; box-shadow: var(--shadow-strong); opacity: 0; visibility: hidden; transform: translateY(8px); transition: all .25s; margin-top: 14px; }
.nav-dropdown:hover .nav-dropdown-menu, .nav-dropdown:focus-within .nav-dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-dropdown-menu a { display: block; padding: 14px 24px; font-size: 13.5px; font-weight: 500; border-bottom: 1px solid var(--rule); cursor: pointer; transition: all .2s; }
.nav-dropdown-menu a:last-child { border-bottom: none; }
.nav-dropdown-menu a:hover { background: var(--paper); color: var(--emerald); padding-left: 30px; }
.nav-dropdown-menu a small { display: block; font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.16em; color: var(--text-soft); text-transform: uppercase; margin-top: 3px; font-weight: 500; }
.nav-cta { background: var(--ink); color: var(--cream); padding: 13px 24px; font-family: var(--font-body); font-size: 12.5px; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; transition: all .3s; white-space: nowrap; border: 1px solid var(--ink); cursor: pointer; text-decoration: none; display: inline-flex; align-items: center; gap: 8px; }
.nav-cta:hover { background: var(--emerald); border-color: var(--emerald); transform: translateY(-2px); box-shadow: 0 12px 28px -10px rgba(10,31,23,0.4); }
.nav-actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.nav-login { font-family: var(--font-body); font-size: 12.5px; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; color: var(--ink); padding: 12px 18px; border: 1px solid var(--rule-strong); background: transparent; text-decoration: none; transition: all .3s; white-space: nowrap; display: inline-flex; align-items: center; gap: 8px; cursor: pointer; }
.nav-login:hover { border-color: var(--ink); background: var(--ink); color: var(--cream); }
.nav-login i { font-size: 11px; color: var(--gold); }
.nav-login:hover i { color: var(--gold-soft); }
.nav-account { background: var(--emerald); color: var(--cream); border: 1px solid var(--emerald); padding: 12px 20px; font-family: var(--font-body); font-size: 12.5px; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; text-decoration: none; transition: all .3s; display: inline-flex; align-items: center; gap: 8px; white-space: nowrap; }
.nav-account:hover { background: var(--moss); border-color: var(--moss); transform: translateY(-2px); box-shadow: 0 12px 28px -10px rgba(10,31,23,0.4); }
@media (max-width: 1399px) { .nav-actions { display: none; } }
.nav-toggle { display: flex; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 10px; margin-right: -10px; }
@media (min-width: 1400px) { .nav-toggle { display: none; } }
.nav-toggle span { width: 26px; height: 1.5px; background: var(--ink); transition: all .3s; display: block; }
.nav-toggle.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
.nav-mobile { position: fixed; top: 0; right: 0; width: 100%; max-width: 440px; height: 100vh; background: var(--ink); color: var(--cream); transform: translateX(100%); transition: transform .5s cubic-bezier(.2,.8,.2,1); z-index: 80; overflow-y: auto; padding: 80px 32px 40px; }
.nav-mobile.is-open { transform: translateX(0); }
.nav-mobile-close { position: absolute; top: 24px; right: 24px; background: none; border: none; color: var(--cream); font-size: 32px; cursor: pointer; padding: 8px; line-height: 1; transition: all .3s; }
.nav-mobile-close:hover { transform: rotate(90deg); color: var(--gold); }
.nav-mobile-section { margin-bottom: 32px; }
.nav-mobile-label { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); font-weight: 600; margin-bottom: 18px; padding-bottom: 14px; border-bottom: 1px solid var(--rule-light); display: flex; align-items: center; gap: 12px; }
.nav-mobile-label::before { content: ''; width: 18px; height: 1px; background: var(--gold); }
.nav-mobile a { display: block; padding: 14px 0; font-family: var(--font-display); font-size: 22px; font-weight: 400; color: var(--cream); cursor: pointer; border-bottom: 1px solid rgba(250,247,240,0.06); transition: all .25s; }
.nav-mobile a:hover { color: var(--gold); padding-left: 10px; }
.nav-mobile-overlay { position: fixed; inset: 0; background: rgba(10,31,23,0.55); opacity: 0; visibility: hidden; transition: all .35s; z-index: 75; backdrop-filter: blur(4px); }
.nav-mobile-overlay.is-open { opacity: 1; visibility: visible; }
.nav-mobile .nav-cta { margin-top: 32px; background: var(--gold); border-color: var(--gold); color: var(--ink); padding: 18px 24px; width: 100%; justify-content: center; font-size: 13px; }
.nav-mobile .nav-cta:hover { background: var(--cream); border-color: var(--cream); }

/* Scroll progress */
.scroll-progress { position: fixed; top: 0; left: 0; height: 3px; width: 0; background: linear-gradient(90deg, var(--emerald), var(--gold)); z-index: 100; transition: width .1s linear; }

/* Page hero */
.page-hero { position: relative; background: var(--ink); color: var(--cream); padding: 120px 0 100px; overflow: hidden; border-bottom: 1px solid var(--rule-light); }
.page-hero.has-photo::before { content: ''; position: absolute; inset: 0; background-image: var(--hero-photo); background-size: cover; background-position: center; opacity: 0.22; }
.page-hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 15% 30%, rgba(20,163,127,0.18), transparent 50%), radial-gradient(ellipse at 85% 70%, rgba(201,164,92,0.12), transparent 50%); pointer-events: none; }
.page-hero::after { content: ''; position: absolute; inset: 0; background-image: linear-gradient(rgba(250,247,240,0.025) 1px, transparent 1px), linear-gradient(90deg, rgba(250,247,240,0.025) 1px, transparent 1px); background-size: 80px 80px; pointer-events: none; opacity: 0.5; }
.page-hero-inner { position: relative; z-index: 2; }
.page-hero-breadcrumb { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase; color: rgba(250,247,240,0.45); margin-bottom: 36px; display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.page-hero-breadcrumb a { cursor: pointer; transition: color .2s; }
.page-hero-breadcrumb a:hover { color: var(--gold); }
.page-hero-breadcrumb .sep { color: rgba(250,247,240,0.25); }
.page-hero-eyebrow { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); margin-bottom: 24px; font-weight: 600; display: inline-flex; align-items: center; gap: 12px; }
.page-hero-eyebrow::before { content: ''; width: 28px; height: 1px; background: var(--gold); }
.page-hero-title { font-family: var(--font-display); font-size: clamp(2.5rem, 6.5vw, 5.5rem); font-weight: 400; line-height: 1.0; letter-spacing: -0.025em; color: var(--cream); max-width: 1100px; margin: 0; }
.page-hero-title em { font-style: italic; font-weight: 300; color: var(--gold); }
.page-hero-lead { font-size: 18px; line-height: 1.7; color: rgba(250,247,240,0.78); font-weight: 300; margin: 32px 0 0; max-width: 720px; }
.page-hero-actions { margin-top: 40px; display: flex; gap: 14px; flex-wrap: wrap; }

/* Section head */
.section-head { display: grid; grid-template-columns: 1fr; gap: 24px; margin-bottom: 56px; }
@media (min-width: 768px) { .section-head { grid-template-columns: 1fr 2fr; gap: 64px; margin-bottom: 80px; align-items: end; } }

/* Flags */
.flag { width: 56px; height: 38px; border: 1px solid var(--rule); display: inline-block; overflow: hidden; flex-shrink: 0; }
.flag-ci { background: linear-gradient(90deg, #FF8200 33.33%, #fff 33.33%, #fff 66.66%, #009A57 66.66%); }
.flag-fr { background: linear-gradient(90deg, #0055A4 33.33%, #fff 33.33%, #fff 66.66%, #EF4135 66.66%); }
.flag-fede {
    
    background: #fff url("/images/logo-fede.png") center/16px 16px no-repeat;
}
.flag-eu {
   
    background: #003399 url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 60 40'%3E%3Crect width='60' height='40' fill='%23003999'/%3E%3Cg fill='%23FFCC00'%3E%3Cpolygon points='30,6 30.6,7.8 32.5,7.8 31,8.9 31.6,10.7 30,9.6 28.4,10.7 29,8.9 27.5,7.8 29.4,7.8'/%3E%3Cpolygon points='42,10 42.6,11.8 44.5,11.8 43,12.9 43.6,14.7 42,13.6 40.4,14.7 41,12.9 39.5,11.8 41.4,11.8'/%3E%3Cpolygon points='48,20 48.6,21.8 50.5,21.8 49,22.9 49.6,24.7 48,23.6 46.4,24.7 47,22.9 45.5,21.8 47.4,21.8'/%3E%3Cpolygon points='42,30 42.6,31.8 44.5,31.8 43,32.9 43.6,34.7 42,33.6 40.4,34.7 41,32.9 39.5,31.8 41.4,31.8'/%3E%3Cpolygon points='30,34 30.6,35.8 32.5,35.8 31,36.9 31.6,38.7 30,37.6 28.4,38.7 29,36.9 27.5,35.8 29.4,35.8'/%3E%3Cpolygon points='18,30 18.6,31.8 20.5,31.8 19,32.9 19.6,34.7 18,33.6 16.4,34.7 17,32.9 15.5,31.8 17.4,31.8'/%3E%3Cpolygon points='12,20 12.6,21.8 14.5,21.8 13,22.9 13.6,24.7 12,23.6 10.4,24.7 11,22.9 9.5,21.8 11.4,21.8'/%3E%3Cpolygon points='18,10 18.6,11.8 20.5,11.8 19,12.9 19.6,14.7 18,13.6 16.4,14.7 17,12.9 15.5,11.8 17.4,11.8'/%3E%3Cpolygon points='36,7 36.5,8.5 38,8.5 36.8,9.4 37.3,10.9 36,10 34.7,10.9 35.2,9.4 34,8.5 35.5,8.5'/%3E%3Cpolygon points='46,15 46.5,16.5 48,16.5 46.8,17.4 47.3,18.9 46,18 44.7,18.9 45.2,17.4 44,16.5 45.5,16.5'/%3E%3Cpolygon points='46,25 46.5,26.5 48,26.5 46.8,27.4 47.3,28.9 46,28 44.7,28.9 45.2,27.4 44,26.5 45.5,26.5'/%3E%3Cpolygon points='36,33 36.5,34.5 38,34.5 36.8,35.4 37.3,36.9 36,36 34.7,36.9 35.2,35.4 34,34.5 35.5,34.5'/%3E%3C/g%3E%3C/svg%3E") center/cover no-repeat;
}
.flag-mini-wrap { display: inline-flex; align-items: center; gap: 10px; background: var(--cream); padding: 12px 20px; border-radius: 999px; font-size: 13px; font-weight: 600; border: 1px solid var(--rule); transition: all .25s; }
.flag-mini-wrap:hover { transform: translateY(-3px); box-shadow: var(--shadow-soft); }
.flag-mini { width: 24px; height: 16px; border-radius: 2px; flex-shrink: 0; box-shadow: 0 1px 3px rgba(0,0,0,.15); display: inline-block; }
.flag-mini-bf { background: linear-gradient(to bottom, #ef2b2d 50%, #009e49 50%); position: relative; }
.flag-mini-bf::before { content:'★'; position:absolute; inset:0; display:flex; align-items:center; justify-content:center; color:#fcd116; font-size:9px; line-height:1; }
.flag-mini-ml { background: linear-gradient(to right, #14b53a 33.33%, #fcd116 33.33%, #fcd116 66.66%, #ce1126 66.66%); }
.flag-mini-sn { background: linear-gradient(to right, #00853f 33.33%, #fdef42 33.33%, #fdef42 66.66%, #e31b23 66.66%); position: relative; }
.flag-mini-sn::before { content:'★'; position:absolute; inset:0; display:flex; align-items:center; justify-content:center; color:#00853f; font-size:9px; line-height:1; }
.flag-mini-tg { background: repeating-linear-gradient(to bottom, #006a4e 0, #006a4e 3px, #ffce00 3px, #ffce00 6px); }
.flag-mini-bj { background: linear-gradient(to right, #008751 33.33%, #fcd116 33.33%, #fcd116 66.66%, #e8112d 66.66%); }
.flag-mini-ne { background: linear-gradient(to bottom, #e05206 33.33%, #fff 33.33%, #fff 66.66%, #0db02b 66.66%); }
.flag-mini-cm { background: linear-gradient(to right, #007a5e 33.33%, #ce1126 33.33%, #ce1126 66.66%, #fcd116 66.66%); }
.flag-mini-gn { background: linear-gradient(to right, #ce1126 33.33%, #fcd116 33.33%, #fcd116 66.66%, #009460 66.66%); }
.flag-mini-cd { background: #007fff; position: relative; }
.flag-mini-cd::before { content:'★'; position:absolute; top:1px; left:2px; color:#fcd116; font-size:9px; line-height:1; }
.flag-mini-ga { background: linear-gradient(to bottom, #009e60 33.33%, #fcd116 33.33%, #fcd116 66.66%, #3a75c4 66.66%); }

/* Reveal */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .9s cubic-bezier(.2,.8,.2,1), transform .9s cubic-bezier(.2,.8,.2,1); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* Hero */
.hero { position: relative; min-height: 92vh; display: flex; align-items: center; background: var(--ink); color: var(--cream); overflow: hidden; padding: 100px 0 80px; }
.hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 22% 28%, rgba(20,163,127,0.22), transparent 50%), radial-gradient(ellipse at 82% 72%, rgba(201,164,92,0.16), transparent 50%); pointer-events: none; }
.hero::after { content: ''; position: absolute; inset: 0; background-image: linear-gradient(rgba(250,247,240,0.02) 1px, transparent 1px), linear-gradient(90deg, rgba(250,247,240,0.02) 1px, transparent 1px); background-size: 100px 100px; pointer-events: none; }
.hero-grid { display: grid; grid-template-columns: 1fr; gap: 60px; align-items: center; position: relative; z-index: 5; }
@media (min-width: 1024px) { .hero-grid { grid-template-columns: 1.15fr 1fr; gap: 80px; } }
.hero-content { position: relative; z-index: 5; }
.hero-tag { display: inline-flex; align-items: center; gap: 14px; margin-bottom: 36px; font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); font-weight: 600; }
.hero-tag .bar { width: 48px; height: 1px; background: var(--gold); }
.hero-title { font-family: var(--font-display); font-size: clamp(2.75rem, 6.5vw, 6rem); font-weight: 400; line-height: 0.95; letter-spacing: -0.025em; color: var(--cream); margin: 0 0 36px; }
.hero-title em { font-style: italic; font-weight: 300; color: var(--gold); display: inline-block; position: relative; }
.hero-title em::after { content: ''; position: absolute; left: 0; bottom: 0.08em; width: 100%; height: 1.5px; background: var(--gold); opacity: 0.4; }
.hero-lead { font-size: 18px; line-height: 1.7; font-weight: 300; color: rgba(250,247,240,0.82); max-width: 560px; margin: 0 0 44px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 56px; }
.hero-stats-mini { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; padding-top: 40px; border-top: 1px solid rgba(250,247,240,0.14); max-width: 560px; }
.hero-stat-num { font-family: var(--font-display); font-size: 38px; font-weight: 500; color: var(--cream); line-height: 1; margin-bottom: 8px; letter-spacing: -0.02em; }
.hero-stat-num .acc { color: var(--gold); font-style: italic; font-weight: 400; }
.hero-stat-label { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(250,247,240,0.55); font-weight: 600; }
.hero-visual { position: relative; aspect-ratio: 4/5; max-height: 680px; display: none; }
@media (min-width: 1024px) { .hero-visual { display: block; } }
.hero-img-main, .hero-img-sub { position: absolute; overflow: hidden; border: 1px solid rgba(250,247,240,0.1); box-shadow: var(--shadow-strong); }
.hero-img-main { top: 0; right: 0; width: 70%; height: 78%; }
.hero-img-main img, .hero-img-sub img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s cubic-bezier(.2,.8,.2,1); }
.hero-img-main:hover img, .hero-img-sub:hover img { transform: scale(1.05); }
.hero-img-sub { bottom: 0; left: 0; width: 52%; height: 50%; z-index: 2; }
.hero-img-badge { position: absolute; top: 28px; left: 28px; background: var(--ink); color: var(--cream); padding: 18px 22px; z-index: 3; border: 1px solid var(--gold); animation: badgeFloat 4.5s ease-in-out infinite; }
@keyframes badgeFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
@media (prefers-reduced-motion: reduce) { .hero-img-badge { animation: none; } }
.hero-img-badge-label { font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); margin-bottom: 6px; }
.hero-img-badge-text { font-family: var(--font-display); font-size: 15px; font-weight: 500; line-height: 1.3; color: var(--cream); }

/* Diploma strip */
.diploma-strip { background: var(--moss); color: var(--cream); padding: 32px 0; border-top: 1px solid var(--rule-light); border-bottom: 1px solid var(--rule-light); position: relative; overflow: hidden; }
.diploma-strip::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 80% 50%, rgba(201,164,92,0.08), transparent 60%); pointer-events: none; }
.diploma-strip-inner { display: grid; grid-template-columns: 1fr; gap: 24px; align-items: center; position: relative; z-index: 2; }
@media (min-width: 768px) { .diploma-strip-inner { grid-template-columns: auto 1fr auto; gap: 48px; } }
.diploma-strip-label { display: flex; align-items: center; gap: 14px; font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase; color: var(--gold); font-weight: 600; }
.diploma-strip-label .ornament { width: 24px; height: 1px; background: var(--gold); }
.diploma-strip-text { font-family: var(--font-display); font-size: clamp(1.15rem, 1.9vw, 1.5rem); line-height: 1.4; font-weight: 400; color: var(--cream); }
.diploma-strip-text em { color: var(--gold-soft); font-style: italic; font-weight: 300; }
.diploma-strip-link { font-family: var(--font-body); font-size: 13px; font-weight: 600; color: var(--gold); display: inline-flex; align-items: center; gap: 10px; white-space: nowrap; cursor: pointer; transition: all .25s; letter-spacing: 0.02em; }
.diploma-strip-link:hover { color: var(--cream); gap: 16px; }
.diploma-strip-link::after { content: '→'; }

/* Marquee */
.marquee { background: var(--gold); color: var(--ink); overflow: hidden; padding: 16px 0; border-top: 1px solid var(--gold-deep); border-bottom: 1px solid var(--gold-deep); }
.marquee-track { display: flex; gap: 48px; white-space: nowrap; width: max-content; animation: marqueeMove 32s linear infinite; }
.marquee-track span { font-family: var(--font-display); font-style: italic; font-size: 20px; font-weight: 500; display: inline-flex; align-items: center; gap: 48px; }
.marquee-track span::after { content: '✦'; font-style: normal; color: var(--ink); opacity: .5; }
@keyframes marqueeMove { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* Audiences */
.audiences-section { background: var(--ink); padding: 0; }
.audiences-grid { display: grid; grid-template-columns: 1fr; gap: 1px; background: var(--rule-light); }
@media (min-width: 768px) { .audiences-grid { grid-template-columns: repeat(3, 1fr); } }
.audience-card { background: var(--ink); color: var(--cream); padding: 64px 40px; transition: background .4s ease; position: relative; min-height: 420px; display: flex; flex-direction: column; justify-content: space-between; cursor: pointer; overflow: hidden; text-decoration: none; }
.audience-card::before { content: ''; position: absolute; inset: 0; background-image: var(--bg); background-size: cover; background-position: center; opacity: 0.16; transition: all .6s ease; z-index: 0; transform: scale(1.05); }
.audience-card::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10,31,23,0.85), rgba(10,31,23,0.72)); z-index: 1; opacity: 0.65; transition: opacity .6s ease; }
.audience-card:hover::before { opacity: 0.55; transform: scale(1); }
.audience-card:hover::after { opacity: 0.5; }
.audience-card > * { position: relative; z-index: 2; }
.audience-card-num { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.3em; color: var(--gold); font-weight: 600; margin-bottom: 28px; display: flex; align-items: center; gap: 12px; }
.audience-card-num::before { content: ''; width: 24px; height: 1px; background: var(--gold); }
.audience-card h3 { font-family: var(--font-display); font-size: clamp(2rem, 3.5vw, 2.75rem); color: var(--cream); margin-bottom: 18px; line-height: 1.0; font-weight: 400; letter-spacing: -0.02em; }
.audience-card h3 em { font-style: italic; font-weight: 300; color: var(--gold); }
.audience-card p { font-size: 15px; color: rgba(250,247,240,0.75); line-height: 1.65; font-weight: 300; margin: 0; }
.audience-card-arrow { display: inline-flex; align-items: center; gap: 14px; margin-top: 36px; font-family: var(--font-body); font-size: 12.5px; font-weight: 600; color: var(--gold); letter-spacing: 0.06em; text-transform: uppercase; transition: all .3s; }
.audience-card:hover .audience-card-arrow { gap: 22px; color: var(--cream); }
.audience-card-arrow::after { content: '→'; font-size: 16px; }

/* Why */
.why-section { background: var(--cream); }
.why-grid { display: grid; grid-template-columns: 1fr; gap: 1px; background: var(--rule); }
@media (min-width: 640px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .why-grid { grid-template-columns: repeat(5, 1fr); } }
.why-card { background: var(--cream); padding: 48px 32px; transition: all .4s ease; position: relative; min-height: 340px; display: flex; flex-direction: column; }
.why-card:hover { background: var(--ink); color: var(--cream); }
.why-card:hover h3, .why-card:hover .why-card-num { color: var(--cream); }
.why-card:hover p { color: rgba(250,247,240,0.75); }
.why-card:hover .why-card-icon { background: var(--gold); color: var(--ink); }
.why-card-num { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.3em; color: var(--emerald); font-weight: 600; margin-bottom: 32px; transition: color .4s ease; }
.why-card-icon { width: 60px; height: 60px; display: flex; align-items: center; justify-content: center; background: var(--mint); color: var(--emerald); margin-bottom: 28px; font-size: 24px; transition: all .4s ease; border-radius: 50%; }
.why-card:hover .why-card-icon { transform: rotate(-8deg); }
.why-card h3 { font-family: var(--font-display); font-size: 22px; font-weight: 500; margin-bottom: 14px; line-height: 1.2; transition: color .4s; }
.why-card p { font-size: 14px; line-height: 1.65; color: var(--text-soft); font-weight: 300; margin: 0; transition: color .4s; }

/* Photo band (NOUVEAU) */
.photo-band { display: grid; grid-template-columns: 1fr; gap: 16px; }
@media (min-width: 640px) { .photo-band { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .photo-band { grid-template-columns: repeat(4, 1fr); } }
.photo-band-tile { position: relative; overflow: hidden; aspect-ratio: 3/4; background: var(--paper); }
.photo-band-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s cubic-bezier(.2,.8,.2,1); }
.photo-band-tile:hover img { transform: scale(1.08); }
.photo-band-tile .ovl { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 50%, rgba(10,31,23,0.82)); display: flex; flex-direction: column; justify-content: flex-end; padding: 20px 22px; }
.photo-band-tile .ovl span { font-family: var(--font-mono); font-size: 9.5px; letter-spacing: 0.28em; text-transform: uppercase; color: var(--gold); font-weight: 600; margin-bottom: 6px; }
.photo-band-tile .ovl strong { font-family: var(--font-display); font-size: 17px; font-weight: 500; color: var(--cream); line-height: 1.2; }

/* Split feature with photo (NOUVEAU) */
.split-feature { display: grid; grid-template-columns: 1fr; gap: 56px; align-items: center; }
@media (min-width: 900px) { .split-feature { grid-template-columns: 1fr 1fr; gap: 80px; } .split-feature.reverse > .split-feature-media { order: -1; } }
.split-feature-media { position: relative; aspect-ratio: 4/5; overflow: hidden; background: var(--paper); }
.split-feature-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s cubic-bezier(.2,.8,.2,1); }
.split-feature-media:hover img { transform: scale(1.05); }
.split-feature-media .floating-badge { position: absolute; bottom: 24px; left: 24px; background: var(--ink); color: var(--cream); padding: 18px 22px; border: 1px solid var(--gold); }
.split-feature-media .floating-badge .fb-num { font-family: var(--font-display); font-size: 30px; color: var(--gold); font-weight: 500; line-height: 1; }
.split-feature-media .floating-badge .fb-label { font-family: var(--font-mono); font-size: 9.5px; letter-spacing: 0.24em; text-transform: uppercase; color: rgba(250,247,240,0.7); margin-top: 6px; }

/* Stats */
.stats-band { background: var(--cream); padding: 80px 0; border-bottom: 1px solid var(--rule); }
.stats-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 48px 24px; }
@media (min-width: 768px) { .stats-grid { grid-template-columns: repeat(4, 1fr); gap: 32px; } }
.stat-item { border-left: 2px solid var(--emerald); padding-left: 24px; }
.stat-num { font-family: var(--font-display); font-weight: 500; font-size: clamp(2.5rem, 5vw, 4rem); line-height: 1; color: var(--ink); margin-bottom: 14px; font-variant-numeric: tabular-nums; letter-spacing: -0.02em; }
.stat-num .accent { color: var(--emerald); font-style: italic; font-weight: 400; }
.stat-num .gold { color: var(--gold); font-style: italic; font-weight: 400; }
.stat-label { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--text-soft); font-weight: 600; }

/* Stats parallax (NOUVEAU) */
.stats-parallax { position: relative; background: var(--ink); color: var(--cream); overflow: hidden; padding: 120px 0; }
.stats-parallax .sp-bg { position: absolute; inset: -15% 0; background-image: url('/images/facade.webp'); background-size: cover; background-position: center; opacity: 0.18; will-change: transform; }
.stats-parallax::after { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 50% 50%, rgba(10,31,23,0.5), rgba(10,31,23,0.85)); }
.stats-parallax .container { position: relative; z-index: 2; }
.stats-parallax .stat-num { color: var(--cream); }
.stats-parallax .stat-item { border-left-color: var(--gold); }
.stats-parallax .stat-num .accent { color: var(--gold); }
.stats-parallax .stat-label { color: rgba(250,247,240,0.6); }

/* Diplomation home */
.diplomation-section { background: var(--paper); }
.diplomation-grid { display: grid; grid-template-columns: 1fr; gap: 56px; align-items: start; }
@media (min-width: 768px) { .diplomation-grid { grid-template-columns: 5fr 7fr; gap: 80px; } }
.diplomation-cards { display: grid; grid-template-columns: 1fr; gap: 24px; }
@media (min-width: 640px) { .diplomation-cards { grid-template-columns: 1fr 1fr; } }
.diploma-card { background: var(--cream); padding: 40px 36px; border: 1px solid var(--rule); position: relative; transition: all .35s; }
.diploma-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-soft); border-color: var(--emerald); }
.diploma-card.featured { background: var(--ink); color: var(--cream); border-color: var(--ink); }
.diploma-card.featured:hover { border-color: var(--gold); box-shadow: var(--shadow-gold); }
.diploma-card-eyebrow { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--emerald); font-weight: 600; margin: 24px 0 14px; }
.diploma-card.featured .diploma-card-eyebrow { color: var(--gold); }
.diploma-card h3 { font-family: var(--font-display); font-size: 26px; font-weight: 500; line-height: 1.2; margin-bottom: 18px; color: inherit; letter-spacing: -0.015em; }
.diploma-card p { font-size: 14.5px; line-height: 1.7; color: var(--text-soft); font-weight: 300; margin: 0 0 24px; }
.diploma-card.featured p { color: rgba(250,247,240,0.78); }
.diploma-card-list { list-style: none; padding: 24px 0 0; margin: 0; border-top: 1px solid var(--rule); }
.diploma-card.featured .diploma-card-list { border-top-color: rgba(250,247,240,0.15); }
.diploma-card-list li { font-size: 13.5px; padding: 10px 0; display: flex; align-items: center; gap: 12px; color: var(--text-soft); }
.diploma-card.featured .diploma-card-list li { color: rgba(250,247,240,0.85); }
.diploma-card-list li::before { content: '✓'; color: var(--emerald); font-weight: 700; font-size: 14px; }
.diploma-card.featured .diploma-card-list li::before { color: var(--gold); }

/* Ecoles preview */
.ecoles-grid { display: grid; grid-template-columns: 1fr; gap: 1px; background: var(--rule); }
@media (min-width: 640px) { .ecoles-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .ecoles-grid { grid-template-columns: repeat(3, 1fr); } }
.ecole-card { background: var(--cream); min-height: 300px; display: flex; flex-direction: column; transition: background .35s ease; color: var(--ink); cursor: pointer; text-decoration: none; overflow: hidden; }
.ecole-card-photo { aspect-ratio: 16/10; overflow: hidden; position: relative; }
.ecole-card-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s cubic-bezier(.2,.8,.2,1); }
.ecole-card:hover .ecole-card-photo img { transform: scale(1.08); }
.ecole-card-photo .pnum { position: absolute; top: 14px; left: 16px; font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.2em; color: var(--cream); background: rgba(10,31,23,0.6); padding: 5px 10px; font-weight: 600; }
.ecole-card-inner { padding: 28px 30px 32px; flex: 1; display: flex; flex-direction: column; justify-content: space-between; }
.ecole-card:hover { background: var(--ink); color: var(--cream); }
.ecole-card:hover h3, .ecole-card:hover .ecole-card-arrow { color: var(--gold); }
.ecole-card:hover .ecole-card-arrow { border-color: var(--gold); }
.ecole-card:hover .ecole-card-desc { color: rgba(250,247,240,0.78); }
.ecole-card-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 20px; }
.ecole-card-arrow { width: 40px; height: 40px; border: 1px solid var(--rule-strong); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 13px; transition: all .35s; flex-shrink: 0; }
.ecole-card:hover .ecole-card-arrow { background: var(--gold); color: var(--ink); }
.ecole-card h3 { font-family: var(--font-display); font-size: clamp(1.6rem, 2.6vw, 2rem); font-weight: 500; line-height: 1.1; margin-bottom: 10px; transition: color .35s; letter-spacing: -0.02em; }
.ecole-card-meta { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--emerald); font-weight: 600; margin-bottom: 16px; transition: color .35s; }
.ecole-card:hover .ecole-card-meta { color: var(--gold); }
.ecole-card-desc { font-size: 14px; line-height: 1.65; color: var(--text-soft); font-weight: 300; transition: color .35s; }

/* Campus preview */
.campus-preview { background: var(--paper); }
.campus-preview-grid { display: grid; grid-template-columns: 1fr; gap: 16px; margin-top: 56px; }
@media (min-width: 768px) { .campus-preview-grid { grid-template-columns: 2fr 1fr 1fr; grid-template-rows: auto auto; gap: 16px; } }
.campus-tile { position: relative; overflow: hidden; aspect-ratio: 4/3; cursor: pointer; }
.campus-tile.big { aspect-ratio: 4/5; }
@media (min-width: 768px) { .campus-tile.big { grid-row: span 2; aspect-ratio: auto; } }
.campus-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s cubic-bezier(.2,.8,.2,1); }
.campus-tile:hover img { transform: scale(1.07); }
.campus-tile-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 45%, rgba(10,31,23,0.88)); display: flex; flex-direction: column; justify-content: flex-end; padding: 24px 28px; color: var(--cream); }
.campus-tile-label { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); font-weight: 600; margin-bottom: 8px; }
.campus-tile-title { font-family: var(--font-display); font-size: 22px; font-weight: 500; color: var(--cream); line-height: 1.2; letter-spacing: -0.01em; }

/* Testimonials */
.testimonials-section { background: var(--moss); color: var(--cream); }
.testimonials-grid { display: grid; grid-template-columns: 1fr; gap: 32px; margin-top: 64px; }
@media (min-width: 768px) { .testimonials-grid { grid-template-columns: repeat(3, 1fr); } }
.testimonial-card { background: rgba(250,247,240,0.04); border: 1px solid rgba(250,247,240,0.10); padding: 40px 34px; transition: all .35s; position: relative; }
.testimonial-card:hover { background: rgba(250,247,240,0.07); transform: translateY(-4px); border-color: var(--gold); }
.testimonial-card::before { content: '"'; position: absolute; top: 20px; right: 28px; font-family: var(--font-display); font-size: 80px; color: var(--gold); opacity: 0.3; line-height: 1; font-style: italic; }
.testimonial-stars { color: var(--gold); margin-bottom: 22px; letter-spacing: 4px; font-size: 14px; }
.testimonial-text { font-family: var(--font-display); font-style: italic; font-size: 17px; line-height: 1.55; color: var(--cream); margin-bottom: 32px; font-weight: 400; letter-spacing: -0.005em; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-avatar { width: 52px; height: 52px; border-radius: 50%; overflow: hidden; background: var(--gold); flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-weight: 500; font-size: 18px; color: var(--ink); border: 1px solid var(--gold); }
.testimonial-avatar img { width: 100%; height: 100%; object-fit: cover; }
.testimonial-name { font-family: var(--font-display); font-size: 15.5px; color: var(--cream); margin-bottom: 3px; font-weight: 500; }
.testimonial-role { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); font-weight: 600; }

/* Partners */
.partners-band { background: var(--cream); padding: 80px 0; border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); }
.partners-header { text-align: center; margin-bottom: 56px; font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--text-soft); font-weight: 600; }
.partners-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; align-items: center; }
@media (min-width: 640px) { .partners-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .partners-grid { grid-template-columns: repeat(6, 1fr); } }
.partner-logo { height: 52px; display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-weight: 500; font-size: 17px; color: var(--text-soft); opacity: 0.6; transition: all .3s; text-align: center; line-height: 1.1; letter-spacing: -0.01em; font-style: italic; }
.partner-logo:hover { opacity: 1; color: var(--ink); transform: translateY(-2px); }

/* Founder */
.founder-grid { display: grid; grid-template-columns: 1fr; gap: 56px; align-items: center; }
@media (min-width: 768px) { .founder-grid { grid-template-columns: 5fr 7fr; gap: 80px; } }
.founder-img-wrap { position: relative; aspect-ratio: 4/5; overflow: hidden; background: var(--paper); }
.founder-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s cubic-bezier(.2,.8,.2,1); }
.founder-img-wrap:hover img { transform: scale(1.04); }
.founder-badge { position: absolute; bottom: 0; right: 0; background: var(--ink); color: var(--cream); padding: 20px 28px; border: 1px solid var(--gold); border-right: none; border-bottom: none; }
.founder-badge-label { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); margin-bottom: 6px; font-weight: 600; }
.founder-badge-text { font-family: var(--font-display); font-size: 18px; font-weight: 500; color: var(--cream); letter-spacing: -0.01em; }
.founder-quote { font-family: var(--font-display); font-style: italic; font-size: clamp(1.4rem, 2.4vw, 1.95rem); line-height: 1.4; color: var(--ink); border-left: 2px solid var(--emerald); padding-left: 32px; margin: 36px 0; font-weight: 400; letter-spacing: -0.01em; }
.founder-text { font-size: 17px; line-height: 1.75; color: var(--text-soft); font-weight: 300; }
.founder-sign { display: flex; align-items: center; gap: 24px; margin-top: 40px; padding-top: 32px; border-top: 1px solid var(--rule); }
.founder-sign-line { width: 60px; height: 1px; background: var(--ink); }
.founder-sign-name { font-family: var(--font-display); font-size: 18px; font-weight: 500; letter-spacing: -0.01em; }
.founder-sign-role { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--emerald); font-weight: 600; margin-top: 4px; }

/* CTA final */
.cta-final { background: var(--cream); padding: 120px 0; text-align: center; position: relative; overflow: hidden; }
.cta-final-inner { max-width: 720px; margin: 0 auto; position: relative; z-index: 2; }
.cta-final h2 { font-size: clamp(2.5rem, 5.5vw, 4.5rem); line-height: 1.05; margin-bottom: 28px; font-weight: 400; letter-spacing: -0.025em; }
.cta-final h2 em { color: var(--emerald); font-style: italic; font-weight: 300; }
.cta-final-text { font-size: 18px; line-height: 1.7; font-weight: 300; color: var(--text-soft); margin: 0 auto 48px; }
.cta-final-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.section-dark .cta-final-inner h2, .section-moss .cta-final-inner h2 { color: var(--cream); }
.section-dark .cta-final-inner h2 em, .section-moss .cta-final-inner h2 em { color: var(--gold); }
.section-dark .cta-final-inner p, .section-moss .cta-final-inner p { color: rgba(250,247,240,0.78); }

/* AGRÉMENTS */
.agreements-section { background: var(--cream); }
.agreements-grid { display: grid; grid-template-columns: 1fr; gap: 1px; background: var(--rule); margin-top: 56px; }
@media (min-width: 640px) { .agreements-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .agreements-grid { grid-template-columns: repeat(4, 1fr); } }
.agreement-card { background: var(--cream); padding: 44px 36px; transition: background .4s, transform .4s; min-height: 280px; display: flex; flex-direction: column; }
.agreement-card:hover { background: var(--paper); }
.agreement-seal { width: 64px; height: 64px; border-radius: 50%; background: var(--ink); color: var(--gold); display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 22px; font-weight: 600; font-style: italic; margin-bottom: 28px; border: 2px solid var(--gold); transition: transform .4s; }
.agreement-card:hover .agreement-seal { transform: rotate(-8deg); }
.agreement-label { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.28em; text-transform: uppercase; color: var(--emerald); font-weight: 600; margin-bottom: 12px; }
.agreement-card h3 { font-family: var(--font-display); font-size: 22px; font-weight: 500; margin-bottom: 14px; line-height: 1.2; letter-spacing: -0.01em; }
.agreement-card p { font-size: 14px; line-height: 1.65; color: var(--text-soft); font-weight: 300; margin: 0; }

/* Anchor nav */
.anchor-nav { position: sticky; top: 92px; z-index: 40; background: rgba(250,247,240,0.97); backdrop-filter: blur(20px); border-bottom: 1px solid var(--rule); }
.anchor-nav-inner { display: flex; gap: 0; overflow-x: auto; scrollbar-width: none; }
.anchor-nav-inner::-webkit-scrollbar { display: none; }
.anchor-nav-inner a { padding: 22px 26px; font-family: var(--font-mono); font-size: 11px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-soft); white-space: nowrap; border-bottom: 2px solid transparent; transition: all .25s; cursor: pointer; }
.anchor-nav-inner a:hover { color: var(--ink); }
.anchor-nav-inner a.is-active { color: var(--emerald); border-bottom-color: var(--emerald); }

/* Ecole blocks */
.ecole-block { padding: 96px 0; border-bottom: 1px solid var(--rule); scroll-margin-top: 160px; }
.ecole-block:last-child { border-bottom: none; }
.ecole-header { display: grid; grid-template-columns: 1fr; gap: 32px; margin-bottom: 56px; align-items: end; }
@media (min-width: 768px) { .ecole-header { grid-template-columns: 1fr 2fr; gap: 64px; } }
.ecole-id { display: flex; align-items: baseline; gap: 18px; }
.ecole-id-num { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.3em; color: var(--emerald); font-weight: 600; }
.ecole-id-tag { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--text-soft); font-weight: 600; }
.ecole-name { font-family: var(--font-display); font-size: clamp(3rem, 7vw, 6rem); font-weight: 500; line-height: 0.95; margin: 14px 0 0; color: var(--ink); letter-spacing: -0.03em; }
.ecole-fullname { font-family: var(--font-display); font-style: italic; font-size: clamp(1.3rem, 2.2vw, 1.6rem); font-weight: 300; color: var(--text-soft); margin: 18px 0 0; line-height: 1.4; letter-spacing: -0.005em; }
.ecole-hero-img { width: 100%; aspect-ratio: 21/9; overflow: hidden; margin-bottom: 56px; background: var(--paper); }
.ecole-hero-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.5s cubic-bezier(.2,.8,.2,1); }
.ecole-hero-img:hover img { transform: scale(1.04); }
.ecole-body { display: grid; grid-template-columns: 1fr; gap: 56px; }
@media (min-width: 1024px) { .ecole-body { grid-template-columns: 1fr 1fr; gap: 72px; } }
.info-block-title { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--emerald); font-weight: 600; margin-bottom: 28px; display: flex; align-items: center; gap: 14px; }
.info-block-title::before { content: ''; width: 28px; height: 1px; background: var(--emerald); }
.parcours-list { list-style: none; padding: 0; margin: 0; }
.parcours-item { padding: 26px 0; border-bottom: 1px solid var(--rule); transition: padding-left .3s; }
.parcours-item:hover { padding-left: 12px; }
.parcours-item:last-child { border-bottom: none; }
.parcours-niveau { font-family: var(--font-display); font-size: 21px; font-weight: 500; color: var(--ink); margin-bottom: 10px; letter-spacing: -0.01em; }
.parcours-filiere { font-size: 15px; color: var(--text-soft); font-weight: 300; line-height: 1.65; }
.parcours-duree { display: inline-block; margin-top: 12px; padding: 5px 12px; background: var(--paper); font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink); font-weight: 600; }
.debouche-list { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: 1fr; gap: 12px; }
@media (min-width: 640px) { .debouche-list { grid-template-columns: 1fr 1fr; } }
.debouche-list li { padding: 16px 18px; background: var(--paper); font-size: 14px; font-weight: 500; color: var(--ink); display: flex; align-items: center; gap: 12px; transition: all .25s; }
.debouche-list li:hover { background: var(--mint); transform: translateX(4px); }
.debouche-list li::before { content: '→'; color: var(--emerald); font-weight: 700; }
.frais-table { background: var(--ink); color: var(--cream); padding: 36px; margin-top: 48px; position: relative; overflow: hidden; }
.frais-table::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 100% 0%, rgba(201,164,92,0.08), transparent 60%); pointer-events: none; }
.frais-table-title { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); font-weight: 600; margin-bottom: 28px; position: relative; }
.frais-row { display: flex; justify-content: space-between; align-items: baseline; padding: 16px 0; border-bottom: 1px solid rgba(250,247,240,0.1); position: relative; }
.frais-row:last-child { border-bottom: none; }
.frais-label { font-size: 14px; color: rgba(250,247,240,0.75); font-weight: 300; }
.frais-value { font-family: var(--font-display); font-size: 18px; font-weight: 500; color: var(--cream); letter-spacing: -0.01em; }
.frais-value.highlight { color: var(--gold); }
.ecole-cta { margin-top: 56px; padding-top: 36px; border-top: 1px solid var(--rule); }

/* Fiche dynamique — média + sidebar */
.ecole-fiche { display: grid; grid-template-columns: 1fr; gap: 32px; margin-top: 40px; }
@media (min-width: 1024px) { .ecole-fiche { grid-template-columns: 1.6fr 1fr; gap: 48px; align-items: start; } }
.ecole-fiche-media { width: 100%; aspect-ratio: 4/3; overflow: hidden; background: var(--paper); }
.ecole-fiche-media .ecole-hero-img { width: 100%; height: 100%; margin: 0; }
.ecole-fiche-media img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 1.4s cubic-bezier(.2,.8,.2,1); }
.ecole-fiche-media:hover img { transform: scale(1.04); }
.fiche-sidebar { background: var(--cream); border: 1px solid var(--rule); box-shadow: var(--shadow-soft); align-self: start; }
@media (min-width: 1024px) { .fiche-sidebar { position: sticky; top: 160px; } }
.fiche-sidebar-inner { padding: 30px; }
.fiche-stat-label { font-family: var(--font-mono); font-size: 10px; letter-spacing: .22em; text-transform: uppercase; color: var(--text-soft); font-weight: 600; margin-bottom: 8px; }
.fiche-stat-value { font-family: var(--font-display); font-size: 24px; color: var(--ink); font-weight: 500; line-height: 1.2; }
.fiche-divider { height: 1px; background: var(--rule); margin: 22px 0; }
.fiche-row { display: flex; gap: 14px; align-items: flex-start; padding: 14px 0; border-bottom: 1px solid var(--rule); }
.fiche-row:last-of-type { border-bottom: none; }
.fiche-row-ico { width: 34px; height: 34px; flex: none; display: flex; align-items: center; justify-content: center; background: var(--mint); color: var(--emerald); font-size: 13px; }
.fiche-row-label { font-family: var(--font-mono); font-size: 10px; letter-spacing: .14em; text-transform: uppercase; color: var(--text-soft); margin-bottom: 3px; }
.fiche-row-value { font-size: 14.5px; color: var(--ink); font-weight: 500; line-height: 1.4; }
.fiche-cta { margin-top: 22px; width: 100%; justify-content: center; }

/* Accordéon */
.ecole-accordion { display: flex; flex-direction: column; gap: 1px; background: var(--rule); border: 1px solid var(--rule); margin-top: 40px; }
.acc-item { background: var(--cream); }
.acc-head { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 20px 26px; background: none; border: none; cursor: pointer; text-align: left; font-family: var(--font-mono); font-size: 12px; letter-spacing: .14em; text-transform: uppercase; font-weight: 600; color: var(--ink); }
.acc-head:hover { color: var(--emerald); }
.acc-icon { transition: transform .3s ease; color: var(--emerald); font-size: 12px; flex: none; }
.acc-item.is-open .acc-icon { transform: rotate(180deg); }
.acc-body { max-height: 0; overflow: hidden; transition: max-height .4s cubic-bezier(.2,.8,.2,1); padding: 0 26px; }
.acc-item.is-open .acc-body { padding: 2px 26px 26px; }

/* Dip flags */
.dip-flag-row { display: flex; gap: 16px; margin-top: 36px; flex-wrap: wrap; }
.dip-flag-badge { display: inline-flex; align-items: center; gap: 14px; background: rgba(250,247,240,0.06); padding: 12px 22px; border-radius: 999px; font-size: 13.5px; font-weight: 500; border: 1px solid rgba(250,247,240,0.15); color: var(--cream); }

/* Dip twin */
.dip-twin { display: grid; grid-template-columns: 1fr; gap: 1px; background: var(--rule-strong); margin: 64px 0; }
@media (min-width: 768px) { .dip-twin { grid-template-columns: 1fr 1fr; } }
.dip-twin-card { background: var(--cream); padding: 56px 44px; transition: background .35s; }
.dip-twin-card.dark { background: var(--ink); color: var(--cream); }
.dip-twin-card.dark:hover { background: var(--ink-soft); }
.dip-twin-flag { width: 64px; height: 42px; margin-bottom: 36px; border: 1px solid var(--rule-strong); }
.dip-twin-card.dark .dip-twin-flag { border-color: rgba(250,247,240,0.2); }
.dip-twin-eyebrow { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--emerald); font-weight: 600; margin-bottom: 18px; }
.dip-twin-card.dark .dip-twin-eyebrow { color: var(--gold); }
.dip-twin-card h3 { font-family: var(--font-display); font-size: clamp(1.75rem, 3vw, 2.4rem); margin-bottom: 22px; color: inherit; font-weight: 500; letter-spacing: -0.02em; }
.dip-twin-card p { font-size: 16px; line-height: 1.75; color: var(--text-soft); font-weight: 300; margin-bottom: 36px; }
.dip-twin-card.dark p { color: rgba(250,247,240,0.78); }
.dip-feature-list { list-style: none; padding: 0; margin: 0; border-top: 1px solid var(--rule); padding-top: 28px; }
.dip-twin-card.dark .dip-feature-list { border-top-color: rgba(250,247,240,0.15); }
.dip-feature-list li { display: flex; align-items: flex-start; gap: 14px; padding: 14px 0; font-size: 14.5px; line-height: 1.55; border-bottom: 1px solid var(--rule); color: var(--ink); }
.dip-twin-card.dark .dip-feature-list li { border-bottom-color: rgba(250,247,240,0.10); color: rgba(250,247,240,0.88); }
.dip-feature-list li:last-child { border-bottom: none; }
.dip-feature-list li i { color: var(--emerald); margin-top: 4px; flex-shrink: 0; font-size: 12px; }
.dip-twin-card.dark .dip-feature-list li i { color: var(--gold); }

/* CAMES */
.cames-grid { display: grid; grid-template-columns: 1fr; gap: 56px; align-items: center; }
@media (min-width: 768px) { .cames-grid { grid-template-columns: 1fr 1fr; gap: 80px; } }
.cames-box { background: var(--ink); color: var(--cream); padding: 56px 48px; border-left: 4px solid var(--gold); position: relative; overflow: hidden; }
.cames-box::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 100% 100%, rgba(201,164,92,0.1), transparent 60%); pointer-events: none; }
.cames-box > * { position: relative; z-index: 1; }
.cames-eyebrow { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); font-weight: 600; margin-bottom: 20px; }
.cames-acronym { font-family: var(--font-display); font-size: clamp(3rem, 6vw, 5rem); font-weight: 500; line-height: 1; margin-bottom: 14px; color: var(--cream); letter-spacing: -0.025em; }
.cames-fullname { font-family: var(--font-display); font-style: italic; font-size: 18px; color: var(--gold-soft); margin-bottom: 32px; line-height: 1.4; font-weight: 300; }
.cames-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 36px; padding-top: 36px; border-top: 1px solid rgba(250,247,240,0.15); }
.cames-stat-num { font-family: var(--font-display); font-size: clamp(2rem, 3.5vw, 2.75rem); font-weight: 500; color: var(--gold); line-height: 1; margin-bottom: 8px; letter-spacing: -0.02em; }
.cames-stat-label { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(250,247,240,0.65); font-weight: 600; }

/* Dip steps */
.dip-steps { display: grid; grid-template-columns: 1fr; gap: 1px; background: rgba(250,247,240,0.10); margin-top: 56px; }
@media (min-width: 768px) { .dip-steps { grid-template-columns: repeat(4, 1fr); } }
.dip-step { background: var(--ink); padding: 48px 36px; transition: background .35s; }
.dip-step:hover { background: var(--ink-soft); }
.dip-step-num { font-family: var(--font-display); font-size: 68px; color: var(--gold); line-height: 1; font-weight: 400; margin-bottom: 28px; font-style: italic; }
.dip-step h3 { font-family: var(--font-display); font-size: 22px; color: var(--cream); margin-bottom: 14px; line-height: 1.25; font-weight: 500; letter-spacing: -0.01em; }
.dip-step p { font-size: 14px; line-height: 1.65; color: rgba(250,247,240,0.72); font-weight: 300; margin: 0; }

/* Value cards */
.value-grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
@media (min-width: 640px) { .value-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .value-grid { grid-template-columns: repeat(3, 1fr); } }
.value-card { padding: 40px 32px; background: var(--cream); border: 1px solid var(--rule); transition: all .3s; }
.value-card:hover { border-color: var(--emerald); transform: translateY(-4px); box-shadow: var(--shadow-soft); }
.value-icon { width: 56px; height: 56px; background: var(--mint); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 22px; color: var(--emerald); margin-bottom: 28px; transition: transform .3s; }
.value-card:hover .value-icon { transform: rotate(-8deg) scale(1.08); }
.value-card h3 { font-family: var(--font-display); font-size: 22px; margin-bottom: 14px; font-weight: 500; letter-spacing: -0.01em; }
.value-card p { font-size: 14.5px; color: var(--text-soft); line-height: 1.65; font-weight: 300; margin: 0; }

/* FAQ (redesign avec photo) */
.faq-layout { display: grid; grid-template-columns: 1fr; gap: 56px; align-items: start; }
@media (min-width: 1024px) { .faq-layout { grid-template-columns: 5fr 7fr; gap: 72px; } }
.faq-media { position: sticky; top: 120px; }
.faq-media-img { aspect-ratio: 3/4; overflow: hidden; position: relative; background: var(--paper); }
.faq-media-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.4s cubic-bezier(.2,.8,.2,1); }
.faq-media-img:hover img { transform: scale(1.05); }
.faq-media-card { background: var(--ink); color: var(--cream); padding: 28px 30px; border: 1px solid var(--gold); margin-top: -1px; }
.faq-media-card .fm-eyebrow { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.28em; text-transform: uppercase; color: var(--gold); font-weight: 600; margin-bottom: 12px; }
.faq-media-card h4 { font-family: var(--font-display); font-size: 20px; color: var(--cream); font-weight: 500; margin-bottom: 8px; }
.faq-media-card p { font-size: 13.5px; color: rgba(250,247,240,0.75); font-weight: 300; margin: 0 0 18px; line-height: 1.6; }
.faq { max-width: 880px; margin: 0; }
.faq-item { border-bottom: 1px solid var(--rule); padding: 0; }
.section-paper .faq-item { border-bottom-color: var(--rule-strong); }
.faq-item summary { font-family: var(--font-display); font-size: 20px; font-weight: 500; color: var(--ink); cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 24px; padding: 28px 0; list-style: none; letter-spacing: -0.01em; transition: color .25s; }
.faq-item summary:hover { color: var(--emerald); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-family: var(--font-mono); font-size: 26px; color: var(--emerald); transition: transform .35s; flex-shrink: 0; line-height: 1; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-answer { padding: 0 0 28px; font-size: 15.5px; line-height: 1.75; color: var(--text-soft); font-weight: 300; margin: 0; }

/* Futur eleve */
.fut-hero-img { width: 100%; aspect-ratio: 21/9; overflow: hidden; background: var(--paper); }
.fut-hero-img img { width: 100%; height: 100%; object-fit: cover; }
.fut-journey { display: grid; grid-template-columns: 1fr; gap: 1px; background: var(--rule); margin: 56px 0 0; }
@media (min-width: 640px) { .fut-journey { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .fut-journey { grid-template-columns: repeat(4, 1fr); } }
.fut-step { background: var(--cream); padding: 44px 36px; position: relative; transition: background .35s; min-height: 320px; display: flex; flex-direction: column; }
.fut-step:hover { background: var(--paper); }
.fut-step-num { font-family: var(--font-display); font-size: 64px; font-weight: 400; color: var(--mint); line-height: 1; position: absolute; top: 36px; right: 36px; font-style: italic; transition: color .35s; }
.fut-step:hover .fut-step-num { color: var(--gold-soft); }
.fut-step-label { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--emerald); font-weight: 600; margin-bottom: 16px; }
.fut-step h3 { font-family: var(--font-display); font-size: 24px; font-weight: 500; margin-bottom: 14px; max-width: 75%; letter-spacing: -0.01em; }
.fut-step p { font-size: 14px; color: var(--text-soft); font-weight: 300; line-height: 1.65; margin: 0 0 20px; flex: 1; }
.fut-step .link-arrow { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--emerald); font-weight: 600; cursor: pointer; display: inline-flex; align-items: center; gap: 8px; transition: all .25s; }
.fut-step .link-arrow:hover { gap: 14px; color: var(--ink); }
.fut-step .link-arrow::after { content: '→'; }
.fut-resources { display: grid; grid-template-columns: 1fr; gap: 28px; margin-top: 56px; }
@media (min-width: 768px) { .fut-resources { grid-template-columns: repeat(3, 1fr); } }
.fut-resource-card { background: var(--cream); overflow: hidden; border: 1px solid var(--rule); transition: all .35s; display: flex; flex-direction: column; }
.fut-resource-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-soft); border-color: var(--emerald); }
.fut-resource-img { aspect-ratio: 4/3; overflow: hidden; }
.fut-resource-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s cubic-bezier(.2,.8,.2,1); }
.fut-resource-card:hover .fut-resource-img img { transform: scale(1.08); }
.fut-resource-body { padding: 32px 28px; flex: 1; display: flex; flex-direction: column; }
.fut-resource-body h3 { font-family: var(--font-display); font-size: 22px; margin-bottom: 12px; font-weight: 500; letter-spacing: -0.01em; }
.fut-resource-body p { font-size: 14px; line-height: 1.65; color: var(--text-soft); font-weight: 300; margin: 0 0 24px; flex: 1; }

/* Events */
.events-list { display: grid; grid-template-columns: 1fr; gap: 20px; margin-top: 56px; }
@media (min-width: 768px) { .events-list { grid-template-columns: repeat(2, 1fr); } }
.event-item { display: flex; gap: 28px; background: var(--cream); padding: 28px; border: 1px solid var(--rule); transition: all .3s; align-items: center; }
.event-item:hover { border-color: var(--emerald); transform: translateX(4px); box-shadow: var(--shadow-soft); }
.event-date { flex-shrink: 0; width: 96px; background: var(--ink); color: var(--cream); padding: 18px 10px; text-align: center; border: 1px solid var(--gold); }
.event-date-day { font-family: var(--font-display); font-size: 40px; font-weight: 500; line-height: 1; letter-spacing: -0.02em; }
.event-date-month { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); font-weight: 600; margin-top: 8px; }
.event-body { flex: 1; }
.event-tag { display: inline-block; padding: 4px 10px; background: var(--mint); color: var(--emerald); font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 600; margin-bottom: 12px; }
.event-body h3, .event-body h4 { font-family: var(--font-display); font-size: 19px; font-weight: 500; margin: 0 0 8px; line-height: 1.3; letter-spacing: -0.005em; }
.event-body p { font-size: 13.5px; color: var(--text-soft); font-weight: 300; margin: 0; line-height: 1.55; }
.event-body .link-arrow { margin-top: 12px; display: inline-flex; font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--emerald); font-weight: 600; cursor: pointer; align-items: center; gap: 8px; transition: gap .25s; }
.event-body .link-arrow:hover { gap: 14px; }
.event-body .link-arrow::after { content: '→'; }

/* Campus mosaic */
.campus-mosaic { display: grid; grid-template-columns: 1fr; gap: 16px; margin-bottom: 80px; }
@media (min-width: 768px) { .campus-mosaic { grid-template-columns: 2fr 1fr 1fr; grid-template-rows: 280px 280px; } .campus-mosaic .mosaic-large { grid-row: span 2; } }
.mosaic-tile { position: relative; overflow: hidden; aspect-ratio: 4/3; background: var(--paper); }
@media (min-width: 768px) { .mosaic-tile { aspect-ratio: auto; } }
.mosaic-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s cubic-bezier(.2,.8,.2,1); }
.mosaic-tile:hover img { transform: scale(1.07); }
.mosaic-tile .mt-cap { position: absolute; left: 0; bottom: 0; padding: 16px 20px; background: linear-gradient(0deg, rgba(10,31,23,.85), transparent); color: var(--cream); font-family: var(--font-mono); font-size: 10px; letter-spacing: .22em; text-transform: uppercase; width: 100%; }
.campus-features { display: grid; grid-template-columns: 1fr; gap: 1px; background: var(--rule); margin: 80px 0; }
@media (min-width: 640px) { .campus-features { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .campus-features { grid-template-columns: repeat(4, 1fr); } }
.campus-feature { background: var(--cream); padding: 44px 36px; transition: background .35s; min-height: 240px; }
.campus-feature:hover { background: var(--mint); }
.campus-feature i { font-size: 30px; color: var(--emerald); margin-bottom: 28px; display: block; transition: transform .35s; }
.campus-feature:hover i { transform: rotate(-8deg) scale(1.1); }
.campus-feature h3 { font-family: var(--font-display); font-size: 21px; margin-bottom: 12px; font-weight: 500; letter-spacing: -0.01em; }
.campus-feature p { font-size: 14px; color: var(--text-soft); font-weight: 300; line-height: 1.6; margin: 0; }
.clubs-grid { display: grid; grid-template-columns: 1fr; gap: 28px; margin-top: 56px; }
@media (min-width: 640px) { .clubs-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .clubs-grid { grid-template-columns: repeat(3, 1fr); } }
.club-card { background: var(--cream); border: 1px solid var(--rule); overflow: hidden; transition: all .35s; }
.club-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-soft); border-color: var(--emerald); }
.club-img { aspect-ratio: 4/3; overflow: hidden; }
.club-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s cubic-bezier(.2,.8,.2,1); }
.club-card:hover .club-img img { transform: scale(1.08); }
.club-body { padding: 28px 26px; }
.club-tag { display: inline-block; padding: 4px 12px; background: var(--mint); color: var(--emerald); font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; font-weight: 600; margin-bottom: 14px; }
.club-body h3 { font-family: var(--font-display); font-size: 21px; margin-bottom: 10px; font-weight: 500; letter-spacing: -0.01em; }
.club-body p { font-size: 14px; color: var(--text-soft); font-weight: 300; line-height: 1.6; margin: 0; }
.services-grid { display: grid; grid-template-columns: 1fr; gap: 1px; background: rgba(250,247,240,0.08); margin-top: 56px; }
@media (min-width: 640px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }
.service-tile { background: var(--ink); color: var(--cream); padding: 44px 36px; transition: background .35s; min-height: 260px; }
.service-tile:hover { background: var(--moss); }
.service-tile i { font-size: 28px; color: var(--gold); margin-bottom: 24px; display: block; transition: transform .35s; }
.service-tile:hover i { transform: rotate(-8deg) scale(1.1); }
.service-tile h3 { font-family: var(--font-display); font-size: 22px; color: var(--cream); margin-bottom: 14px; font-weight: 500; letter-spacing: -0.01em; }
.service-tile p { font-size: 14px; color: rgba(250,247,240,0.75); font-weight: 300; line-height: 1.65; margin: 0; }

/* International */
.intl-hero-grid { display: grid; grid-template-columns: 1fr; gap: 56px; align-items: center; margin-top: 64px; }
@media (min-width: 768px) { .intl-hero-grid { grid-template-columns: 1fr 1fr; gap: 80px; } }
.intl-image { aspect-ratio: 4/5; overflow: hidden; background: var(--paper); }
.intl-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s cubic-bezier(.2,.8,.2,1); }
.intl-image:hover img { transform: scale(1.04); }
.intl-bullets { list-style: none; padding: 24px 0 0; margin: 32px 0 0; border-top: 1px solid var(--rule); }
.intl-bullets li { padding: 14px 0; border-bottom: 1px solid var(--rule); font-size: 15px; display: flex; align-items: center; gap: 14px; color: var(--ink); }
.intl-bullets li:last-child { border-bottom: none; }
.intl-bullets li::before { content: '\f0ac'; font-family: 'Font Awesome 6 Free'; font-weight: 900; color: var(--emerald); font-size: 14px; }
.intl-steps { display: grid; grid-template-columns: 1fr; gap: 20px; margin: 64px 0; }
@media (min-width: 768px) { .intl-steps { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .intl-steps { grid-template-columns: repeat(4, 1fr); } }
.intl-step { background: var(--cream); border-left: 3px solid var(--emerald); padding: 36px 32px; transition: all .3s; }
.intl-step:hover { transform: translateX(6px); box-shadow: var(--shadow-soft); }
.intl-step-num { font-family: var(--font-display); font-size: 44px; color: var(--emerald); line-height: 1; margin-bottom: 20px; font-weight: 400; font-style: italic; letter-spacing: -0.02em; }
.intl-step h3 { font-family: var(--font-display); font-size: 20px; margin-bottom: 12px; font-weight: 500; letter-spacing: -0.01em; }
.intl-step p { font-size: 14px; color: var(--text-soft); font-weight: 300; line-height: 1.65; margin: 0; }
.flags-band-section { background: var(--paper); padding: 72px 0; border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); }
.flags-band-title { text-align: center; font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--text-soft); margin-bottom: 44px; font-weight: 600; }
.flags-pills { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
.doc-grid { display: grid; grid-template-columns: 1fr; gap: 28px; margin-top: 56px; }
@media (min-width: 768px) { .doc-grid { grid-template-columns: 1fr 1fr; } }
.doc-card { background: var(--cream); padding: 40px 36px; border: 1px solid var(--rule); transition: all .3s; }
.doc-card:hover { border-color: var(--emerald); transform: translateY(-3px); box-shadow: var(--shadow-soft); }
.doc-card h3 { font-family: var(--font-display); font-size: 24px; margin-bottom: 28px; padding-bottom: 18px; border-bottom: 2px solid var(--emerald); font-weight: 500; letter-spacing: -0.01em; }
.doc-card ul { list-style: none; padding: 0; margin: 0; }
.doc-card li { padding: 14px 0; border-bottom: 1px dashed var(--rule); font-size: 14px; color: var(--ink); display: flex; align-items: flex-start; gap: 14px; line-height: 1.55; }
.doc-card li:last-child { border-bottom: none; }
.doc-card li::before { content: '\f15c'; font-family: 'Font Awesome 6 Free'; font-weight: 900; color: var(--emerald); margin-top: 2px; flex-shrink: 0; font-size: 13px; }

/* Entreprises */
.ent-prop { display: grid; grid-template-columns: 1fr; gap: 64px; align-items: center; }
@media (min-width: 768px) { .ent-prop { grid-template-columns: 1fr 1fr; } }
.ent-prop-img { aspect-ratio: 4/5; overflow: hidden; background: var(--paper); }
.ent-prop-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s cubic-bezier(.2,.8,.2,1); }
.ent-prop-img:hover img { transform: scale(1.04); }
.ent-services-grid { display: grid; grid-template-columns: 1fr; gap: 1px; background: var(--rule); margin-top: 56px; }
@media (min-width: 640px) { .ent-services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .ent-services-grid { grid-template-columns: repeat(3, 1fr); } }
.ent-service { background: var(--cream); padding: 44px 36px; transition: background .35s; min-height: 300px; display: flex; flex-direction: column; }
.ent-service:hover { background: var(--mint); }
.ent-service-icon { width: 52px; height: 52px; background: var(--ink); color: var(--gold); display: flex; align-items: center; justify-content: center; font-size: 22px; margin-bottom: 28px; transition: all .35s; }
.ent-service:hover .ent-service-icon { background: var(--emerald); color: var(--cream); transform: rotate(-8deg); }
.ent-service h3 { font-family: var(--font-display); font-size: 22px; margin-bottom: 14px; font-weight: 500; letter-spacing: -0.01em; }
.ent-service p { font-size: 14px; color: var(--text-soft); font-weight: 300; line-height: 1.65; margin: 0; }
.ent-process-band { background: var(--ink); color: var(--cream); padding: 100px 0; }
.ent-process-steps { display: grid; grid-template-columns: 1fr; gap: 1px; background: rgba(250,247,240,0.08); margin-top: 56px; }
@media (min-width: 768px) { .ent-process-steps { grid-template-columns: repeat(4, 1fr); } }
.ent-process-step { background: var(--ink); padding: 44px 32px; transition: background .35s; }
.ent-process-step:hover { background: var(--ink-soft); }
.ent-process-step-num { font-family: var(--font-display); font-size: 56px; color: var(--gold); line-height: 1; margin-bottom: 24px; font-weight: 400; font-style: italic; }
.ent-process-step h3 { color: var(--cream); font-family: var(--font-display); font-size: 20px; margin-bottom: 12px; font-weight: 500; letter-spacing: -0.01em; }
.ent-process-step p { color: rgba(250,247,240,0.72); font-size: 14px; font-weight: 300; line-height: 1.6; margin: 0; }
.ent-cta-card { background: var(--paper); display: grid; grid-template-columns: 1fr; overflow: hidden; border: 1px solid var(--rule); }
@media (min-width: 768px) { .ent-cta-card { grid-template-columns: 1fr 1fr; } }
.ent-cta-body { background: var(--moss); color: var(--cream); padding: 56px 48px; position: relative; overflow: hidden; }
.ent-cta-body::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 100% 100%, rgba(201,164,92,0.12), transparent 60%); pointer-events: none; }
.ent-cta-body > * { position: relative; z-index: 1; }
.ent-cta-body h2 { font-family: var(--font-display); font-size: clamp(1.75rem, 3vw, 2.4rem); line-height: 1.2; color: var(--cream); margin-bottom: 18px; font-weight: 500; letter-spacing: -0.02em; }
.ent-cta-body p { font-size: 16px; color: rgba(250,247,240,0.82); font-weight: 300; line-height: 1.7; margin: 0 0 24px; }
.ent-cta-list { list-style: none; padding: 0; margin: 0; }
.ent-cta-list li { padding: 10px 0; font-size: 14px; color: rgba(250,247,240,0.88); display: flex; align-items: center; gap: 12px; }
.ent-cta-list li::before { content: '✓'; color: var(--gold); font-weight: 700; }
.ent-cta-form-wrap { padding: 56px 48px; background: var(--cream); }
.ent-cta-form-wrap h3 { font-family: var(--font-display); font-size: 24px; margin-bottom: 28px; font-weight: 500; letter-spacing: -0.01em; }

/* Forms */
.form-light label { display: block; font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--text-soft); font-weight: 600; margin-bottom: 22px; }
.form-light label > input, .form-light label > select, .form-light label > textarea { display: block; width: 100%; margin-top: 10px; padding: 14px 16px; background: var(--cream); border: 1px solid var(--rule); font-family: var(--font-body); font-size: 14.5px; font-weight: 400; color: var(--ink); letter-spacing: 0; text-transform: none; transition: all .25s; border-radius: 0; }
.form-light label > textarea { resize: vertical; min-height: 96px; line-height: 1.55; }
.form-light label > input:focus, .form-light label > select:focus, .form-light label > textarea:focus { outline: none; border-color: var(--emerald); box-shadow: 0 0 0 3px rgba(20,163,127,0.12); }
.form-light label > input::placeholder, .form-light label > textarea::placeholder { color: rgba(10,31,23,0.4); font-family: var(--font-body); text-transform: none; letter-spacing: 0; font-size: 14px; }
.form-light label > input[type="file"] { padding: 12px 14px; background: rgba(10,31,23,0.03); font-size: 13px; cursor: pointer; }
.form-light .form-row { display: grid; grid-template-columns: 1fr; gap: 0 24px; }
@media (min-width: 640px) { .form-light .form-row { grid-template-columns: 1fr 1fr; } }
.form-light button[type="submit"] { margin-top: 14px; }
.honey { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; }

/* Admissions */
.process-band { display: grid; grid-template-columns: 1fr; gap: 24px; margin-top: 56px; }
@media (min-width: 640px) { .process-band { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .process-band { grid-template-columns: repeat(4, 1fr); } }
.process-step { background: var(--cream); padding: 36px 32px; border-top: 3px solid var(--emerald); transition: all .3s; }
.process-step:hover { transform: translateY(-4px); box-shadow: var(--shadow-soft); }
.process-num { font-family: var(--font-display); font-size: 52px; font-weight: 400; color: var(--emerald); line-height: 1; margin-bottom: 20px; font-style: italic; letter-spacing: -0.02em; }
.process-step h3 { font-family: var(--font-display); font-size: 20px; margin-bottom: 12px; font-weight: 500; letter-spacing: -0.01em; }
.process-step p { font-size: 14px; color: var(--text-soft); font-weight: 300; line-height: 1.65; margin: 0; }
.app-grid { display: grid; grid-template-columns: 1fr; gap: 1px; background: var(--rule-strong); }
@media (min-width: 1024px) { .app-grid { grid-template-columns: 5fr 7fr; } }
.payment-panel { background: var(--cream); padding: 56px 44px; }
.payment-panel h3 { font-family: var(--font-display); font-size: 24px; margin-bottom: 14px; font-weight: 500; letter-spacing: -0.01em; }
.payment-panel-intro { font-size: 14.5px; color: var(--text-soft); line-height: 1.7; font-weight: 300; margin: 0 0 32px; }
.payment-panel-intro strong { color: var(--ink); font-weight: 600; }
.pay-tabs { display: flex; gap: 4px; background: var(--paper); padding: 5px; margin-bottom: 24px; }
.pay-tab { flex: 1; padding: 12px 8px; border: none; background: transparent; font-family: var(--font-body); font-size: 11.5px; font-weight: 600; color: var(--text-soft); cursor: pointer; transition: all .25s; display: flex; align-items: center; justify-content: center; gap: 8px; letter-spacing: 0.05em; text-transform: uppercase; }
.pay-tab:hover { color: var(--ink); background: rgba(250,247,240,0.6); }
.pay-tab.is-active { background: var(--ink); color: var(--cream); box-shadow: 0 4px 14px rgba(10,31,23,0.2); }
.pay-tab i { font-size: 13px; }
.pay-panel { display: none; }
.pay-panel.is-active { display: block; animation: payFadeIn .35s ease; }
@keyframes payFadeIn { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: translateY(0); } }
.wave-card { background: linear-gradient(135deg, #1DC8FF 0%, #0084FF 100%); color: #fff; padding: 32px 28px; text-align: center; box-shadow: 0 12px 36px -10px rgba(0,132,255,0.4); position: relative; overflow: hidden; }
.wave-card::before { content: ''; position: absolute; top: -30%; right: -20%; width: 220px; height: 220px; background: radial-gradient(circle, rgba(255,255,255,0.18) 0%, transparent 70%); pointer-events: none; }
.wave-amount { font-family: var(--font-display); font-size: 38px; font-weight: 500; line-height: 1; margin-bottom: 8px; letter-spacing: -0.02em; position: relative; }
.wave-card p { font-size: 13px; opacity: .85; margin: 0 0 22px; position: relative; }
.wave-card .btn { background: var(--ink); color: var(--cream); border-color: var(--ink); position: relative; }
.wave-card .btn:hover { background: var(--cream); color: var(--ink); border-color: var(--cream); }
.om-card { background: linear-gradient(135deg, #ff6600 0%, #ff8533 100%); color: #fff; padding: 32px 28px; text-align: center; box-shadow: 0 12px 36px -10px rgba(255,102,0,0.35); position: relative; overflow: hidden; }
.om-card::before { content: ''; position: absolute; top: -30%; right: -20%; width: 220px; height: 220px; background: radial-gradient(circle, rgba(255,255,255,0.18) 0%, transparent 70%); pointer-events: none; }
.om-card > * { position: relative; }
.om-logo-row { display: flex; align-items: center; justify-content: center; gap: 10px; margin-bottom: 18px; font-weight: 700; font-size: 13px; letter-spacing: 0.05em; text-transform: uppercase; }
.om-dot { width: 26px; height: 26px; border-radius: 50%; background: #fff; color: #ff6600; display: inline-flex; align-items: center; justify-content: center; font-weight: 900; font-size: 15px; font-family: var(--font-display); }
.om-amount { font-family: var(--font-display); font-size: 38px; font-weight: 500; line-height: 1; margin-bottom: 8px; letter-spacing: -0.02em; }
.om-merchant { display: inline-block; background: rgba(255,255,255,0.2); padding: 9px 16px; font-family: var(--font-mono); font-size: 14px; font-weight: 600; letter-spacing: 0.05em; margin: 16px 0 12px; }
.om-instruction { font-size: 13px; opacity: 0.95; margin-bottom: 18px; line-height: 1.55; }
.om-ussd { background: rgba(0,0,0,0.25); padding: 12px 16px; font-family: var(--font-mono); font-size: 15px; font-weight: 700; letter-spacing: 0.04em; }
.visa-card { background: linear-gradient(135deg, #1a1f71 0%, #2a3499 60%, #4e5bbf 100%); color: #fff; padding: 32px 28px; text-align: center; box-shadow: 0 12px 36px -10px rgba(26,31,113,0.4); position: relative; overflow: hidden; }
.visa-card::before { content: ''; position: absolute; top: -30%; right: -20%; width: 220px; height: 220px; background: radial-gradient(circle, rgba(245,158,11,0.28) 0%, transparent 70%); pointer-events: none; }
.visa-card > * { position: relative; }
.visa-logo-row { display: flex; align-items: center; justify-content: center; gap: 10px; margin-bottom: 18px; }
.visa-logo { font-family: var(--font-display); font-style: italic; font-weight: 700; font-size: 24px; letter-spacing: 0.04em; background: #fff; color: #1a1f71; padding: 5px 16px; }
.visa-amount { font-family: var(--font-display); font-size: 38px; font-weight: 500; line-height: 1; margin-bottom: 8px; letter-spacing: -0.02em; }
.visa-info { font-size: 13px; opacity: 0.95; line-height: 1.55; margin: 0 0 22px; }
.visa-secure-row { display: flex; align-items: center; justify-content: center; gap: 18px; margin-top: 18px; font-size: 10.5px; opacity: 0.88; text-transform: uppercase; letter-spacing: 0.08em; font-family: var(--font-mono); }
.visa-secure-row i { color: #f59e0b; }
.btn-visa { background: #fff !important; color: #1a1f71 !important; border-color: #fff !important; font-weight: 700; }
.btn-visa:hover { background: #f59e0b !important; color: #1a1f71 !important; border-color: #f59e0b !important; }
.payment-note { margin-top: 20px; padding: 18px; background: var(--paper); border-left: 3px solid var(--gold); font-size: 13px; color: var(--text-soft); line-height: 1.6; font-weight: 300; }
.form-panel { background: var(--ink); color: var(--cream); padding: 56px 44px; }
.form-panel-eyebrow { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); font-weight: 600; margin-bottom: 20px; display: flex; align-items: center; gap: 12px; }
.form-panel-eyebrow::before { content: ''; width: 24px; height: 1px; background: var(--gold); }
.form-panel h2, .form-panel h3 { font-family: var(--font-display); font-size: clamp(1.75rem, 3vw, 2.25rem); margin-bottom: 16px; color: var(--cream); font-weight: 500; letter-spacing: -0.02em; }
.form-panel-lead { font-size: 15px; color: rgba(250,247,240,0.72); line-height: 1.7; font-weight: 300; margin: 0 0 40px; max-width: 540px; }
.form-dark label { display: block; font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(250,247,240,0.55); font-weight: 600; margin-bottom: 22px; }
.form-dark label > input, .form-dark label > select, .form-dark label > textarea { display: block; width: 100%; margin-top: 10px; padding: 14px 0; background: transparent; border: none; border-bottom: 1.5px solid rgba(250,247,240,0.22); font-family: var(--font-body); font-size: 15px; font-weight: 400; color: var(--cream); letter-spacing: 0; text-transform: none; transition: border-color .25s; border-radius: 0; }
.form-dark label > textarea { resize: vertical; min-height: 80px; line-height: 1.55; }
.form-dark label > input:focus, .form-dark label > select:focus, .form-dark label > textarea:focus { outline: none; border-bottom-color: var(--gold); }
.form-dark label > input::placeholder, .form-dark label > textarea::placeholder { color: rgba(250,247,240,0.35); }
.form-dark label > input[type="file"] { padding: 12px 0; font-size: 13px; color: rgba(250,247,240,0.75); cursor: pointer; }
.form-dark label > select option { color: var(--ink); background: var(--cream); }
.form-dark .form-row { display: grid; grid-template-columns: 1fr; gap: 0 28px; }
@media (min-width: 640px) { .form-dark .form-row { grid-template-columns: 1fr 1fr; } }
.form-dark button[type="submit"] { background: var(--gold); color: var(--ink); border: none; padding: 20px 32px; font-family: var(--font-body); font-size: 13px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; cursor: pointer; transition: all .25s; margin-top: 16px; width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.form-dark button[type="submit"]:hover { background: var(--cream); transform: translateY(-2px); box-shadow: 0 16px 36px -12px rgba(201,164,92,0.4); }
.form-dark button[type="submit"] span:last-child { font-size: 18px; transition: transform .25s; }
.form-dark button[type="submit"]:hover span:last-child { transform: translateX(6px); }
.pieces-grid { display: grid; grid-template-columns: 1fr; gap: 32px; margin-top: 56px; }
@media (min-width: 768px) { .pieces-grid { grid-template-columns: 1fr 1fr; } }
.pieces-card { background: var(--cream); padding: 40px 36px; border: 1px solid var(--rule); transition: all .3s; }
.pieces-card:hover { border-color: var(--gold); transform: translateY(-3px); box-shadow: var(--shadow-soft); }
.pieces-card h3 { font-family: var(--font-display); font-size: 22px; margin-bottom: 12px; font-weight: 500; letter-spacing: -0.01em; }
.pieces-card .subtitle { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--emerald); font-weight: 600; margin-bottom: 28px; }
.pieces-card ul { list-style: none; padding: 0; margin: 0; }
.pieces-card li { padding: 14px 0; border-bottom: 1px dashed var(--rule); font-size: 14px; color: var(--ink); display: flex; align-items: flex-start; gap: 12px; line-height: 1.55; }
.pieces-card li:last-child { border-bottom: none; }
.pieces-card li::before { content: '\f15c'; font-family: 'Font Awesome 6 Free'; font-weight: 900; color: var(--emerald); margin-top: 2px; flex-shrink: 0; font-size: 13px; }
.tenue-box { max-width: 920px; margin: 0 auto; }
.tenue-box h2 { text-align: center; margin-bottom: 16px; }
.tenue-box > p { text-align: center; color: rgba(250,247,240,0.78); font-weight: 300; margin-bottom: 40px; font-size: 16px; line-height: 1.7; }
.tenue-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 16px; }
.tenue-list li { background: rgba(250,247,240,0.05); padding: 22px 26px; border-left: 3px solid var(--gold); font-size: 14.5px; line-height: 1.7; color: var(--cream); font-weight: 300; }
.tenue-list strong { color: var(--gold); font-weight: 600; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 1px; background: var(--rule-strong); }
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 5fr 7fr; } }
.contact-info { background: var(--ink); color: var(--cream); padding: 56px 44px; }
.contact-info h2 { color: var(--cream); margin-bottom: 16px; }
.contact-info-lead { font-size: 15px; color: rgba(250,247,240,0.72); line-height: 1.7; font-weight: 300; margin-bottom: 48px; }
.contact-block { padding: 24px 0; border-bottom: 1px solid rgba(250,247,240,0.10); display: grid; grid-template-columns: 52px 1fr; gap: 18px; align-items: start; }
.contact-block:last-child { border-bottom: none; }
.contact-icon { width: 44px; height: 44px; background: rgba(201,164,92,0.12); color: var(--gold); display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
.contact-block h4 { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.28em; text-transform: uppercase; color: rgba(250,247,240,0.55); font-weight: 600; margin: 0 0 8px; }
.contact-block-value { font-family: var(--font-display); font-size: 18px; font-weight: 500; color: var(--cream); line-height: 1.4; letter-spacing: -0.01em; }
.contact-block-value a:hover { color: var(--gold); }
.contact-social { display: flex; gap: 12px; margin-top: 32px; }
.contact-social a { width: 44px; height: 44px; border: 1px solid rgba(250,247,240,0.22); display: flex; align-items: center; justify-content: center; transition: all .25s; color: var(--cream); }
.contact-social a:hover { background: var(--gold); color: var(--ink); border-color: var(--gold); transform: translateY(-3px); }
.contact-form-panel { background: var(--cream); padding: 56px 44px; }
.contact-form-panel h2 { margin-bottom: 16px; }
.contact-form-panel-lead { font-size: 15px; color: var(--text-soft); line-height: 1.7; font-weight: 300; margin-bottom: 40px; }
.contact-form-panel button[type="submit"] { background: var(--ink); color: var(--cream); border: none; padding: 20px 32px; font-family: var(--font-body); font-size: 13px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; cursor: pointer; transition: all .25s; display: flex; align-items: center; justify-content: space-between; gap: 16px; width: 100%; }
.contact-form-panel button[type="submit"]:hover { background: var(--emerald); transform: translateY(-2px); box-shadow: 0 16px 36px -12px rgba(14,107,81,0.4); }
.contact-form-panel button[type="submit"] span:last-child { font-size: 18px; transition: transform .25s; }
.contact-form-panel button[type="submit"]:hover span:last-child { transform: translateX(6px); }
.hours-grid { display: grid; grid-template-columns: 1fr; gap: 28px; margin-top: 56px; }
@media (min-width: 640px) { .hours-grid { grid-template-columns: repeat(3, 1fr); } }
.hours-card { background: var(--cream); padding: 36px 32px; border: 1px solid var(--rule); border-top: 3px solid var(--emerald); transition: all .3s; }
.hours-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-soft); }
.hours-card h3 { font-family: var(--font-display); font-size: 21px; margin-bottom: 20px; font-weight: 500; letter-spacing: -0.01em; }
.hours-day { display: flex; justify-content: space-between; padding: 10px 0; font-size: 14px; color: var(--text-soft); font-weight: 400; border-bottom: 1px dashed var(--rule); }
.hours-day:last-child { border-bottom: none; }
.hours-day .time { font-family: var(--font-mono); font-size: 13px; color: var(--ink); font-weight: 500; }
.hours-day.closed .time { color: var(--text-soft); font-style: italic; }
.map-wrap { width: 100%; height: 480px; background: var(--paper); overflow: hidden; margin-top: 56px; border: 1px solid var(--rule); }
.map-wrap iframe { width: 100%; height: 100%; border: none; display: block; filter: grayscale(0.4) contrast(1.05); }

/* Newsletter / Infolettre (NOUVEAU) */
.newsletter { position: relative; background: var(--moss); color: var(--cream); overflow: hidden; }
.newsletter .nl-bg { position: absolute; inset: 0; background-image: url('/images/campus.webp'); background-size: cover; background-position: center; opacity: 0.16; }
.newsletter::after { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 20% 30%, rgba(20,163,127,0.25), transparent 55%), radial-gradient(ellipse at 85% 80%, rgba(201,164,92,0.18), transparent 55%); }
.newsletter .container { position: relative; z-index: 2; }
.nl-grid { display: grid; grid-template-columns: 1fr; gap: 48px; align-items: center; }
@media (min-width: 900px) { .nl-grid { grid-template-columns: 1fr 1fr; gap: 80px; } }
.nl-eyebrow { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); font-weight: 600; margin-bottom: 18px; display: inline-flex; align-items: center; gap: 12px; }
.nl-eyebrow::before { content: ''; width: 28px; height: 1px; background: var(--gold); }
.nl-grid h2 { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3.25rem); color: var(--cream); font-weight: 400; line-height: 1.05; letter-spacing: -0.025em; margin-bottom: 20px; }
.nl-grid h2 em { font-style: italic; color: var(--gold); font-weight: 300; }
.nl-grid p { font-size: 16px; color: rgba(250,247,240,0.8); font-weight: 300; line-height: 1.7; margin: 0; max-width: 460px; }
.nl-perks { list-style: none; padding: 24px 0 0; margin: 24px 0 0; border-top: 1px solid rgba(250,247,240,0.14); display: grid; gap: 12px; }
.nl-perks li { font-size: 14px; color: rgba(250,247,240,0.88); display: flex; align-items: center; gap: 12px; }
.nl-perks li i { color: var(--gold); font-size: 13px; }
.nl-form-card { background: rgba(250,247,240,0.06); border: 1px solid rgba(250,247,240,0.14); padding: 40px 36px; backdrop-filter: blur(4px); }
.nl-form-card h3 { font-family: var(--font-display); font-size: 22px; color: var(--cream); font-weight: 500; margin-bottom: 8px; }
.nl-form-card .nl-sub { font-size: 13px; color: rgba(250,247,240,0.65); font-weight: 300; margin-bottom: 28px; }
.nl-field { margin-bottom: 18px; }
.nl-field label { display: block; font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(250,247,240,0.6); font-weight: 600; margin-bottom: 10px; }
.nl-field input, .nl-field select { width: 100%; padding: 14px 16px; background: rgba(10,31,23,0.4); border: 1px solid rgba(250,247,240,0.18); color: var(--cream); font-family: var(--font-body); font-size: 14.5px; transition: border-color .25s; }
.nl-field input::placeholder { color: rgba(250,247,240,0.4); }
.nl-field input:focus, .nl-field select:focus { outline: none; border-color: var(--gold); }
.nl-field select option { color: var(--ink); }
.nl-consent { display: flex; align-items: flex-start; gap: 10px; margin: 6px 0 22px; }
.nl-consent input { margin-top: 3px; accent-color: var(--gold); width: 16px; height: 16px; flex-shrink: 0; }
.nl-consent label { font-size: 11.5px; color: rgba(250,247,240,0.62); font-weight: 300; line-height: 1.5; }
.nl-form-card button { width: 100%; background: var(--gold); color: var(--ink); border: none; padding: 17px; font-family: var(--font-body); font-size: 13px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; cursor: pointer; transition: all .25s; display: flex; align-items: center; justify-content: center; gap: 12px; }
.nl-form-card button:hover { background: var(--cream); transform: translateY(-2px); }

/* Footer */
.footer { background: var(--ink); color: var(--cream); padding: 96px 0 40px; position: relative; overflow: hidden; }
.footer::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, var(--gold) 20%, var(--gold) 80%, transparent); opacity: 0.4; }
.footer-cta-band { display: grid; grid-template-columns: 1fr; gap: 32px; align-items: center; padding-bottom: 64px; margin-bottom: 64px; border-bottom: 1px solid rgba(250,247,240,0.10); }
@media (min-width: 768px) { .footer-cta-band { grid-template-columns: 2fr 1fr; gap: 48px; } }
.footer-cta-text { font-family: var(--font-display); font-size: clamp(1.75rem, 3.5vw, 2.75rem); line-height: 1.15; color: var(--cream); margin: 0; font-weight: 400; letter-spacing: -0.02em; }
.footer-cta-text em { color: var(--gold); font-style: italic; font-weight: 300; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 48px; padding-bottom: 56px; border-bottom: 1px solid rgba(250,247,240,0.10); }
@media (min-width: 640px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 2.2fr 1fr 1fr 1.2fr; gap: 56px; } }
.footer-brand { display: flex; align-items: center; gap: 16px; margin-bottom: 24px; }
.footer-logo { width: 60px; height: 60px; border-radius: 0; overflow: hidden; border: 1px solid rgba(250,247,240,0.15); flex-shrink: 0; }
.footer-logo img { width: 100%; height: 100%; object-fit: cover; }
.footer-brand-text { line-height: 1.1; }
.footer-brand-title { font-family: var(--font-display); font-size: 22px; font-weight: 500; color: var(--cream); letter-spacing: -0.01em; }
.footer-brand-sub { font-family: var(--font-mono); font-size: 9.5px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); margin-top: 4px; font-weight: 600; }
.footer-tagline { font-size: 14.5px; line-height: 1.7; color: rgba(250,247,240,0.72); font-weight: 300; margin: 0 0 18px; max-width: 380px; }
.footer-address { font-size: 13.5px; color: rgba(250,247,240,0.6); line-height: 1.65; font-weight: 300; }
.footer h4 { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); font-weight: 600; margin-bottom: 24px; display: flex; align-items: center; gap: 12px; }
.footer h4::before { content: ''; width: 18px; height: 1px; background: var(--gold); }
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer li { margin-bottom: 12px; }
.footer li a { font-size: 14px; font-weight: 300; color: rgba(250,247,240,0.78); cursor: pointer; transition: all .25s; display: inline-block; }
.footer li a:hover { color: var(--gold); padding-left: 6px; }
.footer-contact-line { font-size: 14px; margin: 0 0 12px; color: rgba(250,247,240,0.78); font-weight: 300; display: flex; align-items: center; gap: 10px; }
.footer-contact-line i { color: var(--gold); width: 16px; }
.footer-contact-line a:hover { color: var(--gold); }
.footer-social { display: flex; gap: 12px; margin-top: 24px; }
.footer-social a { width: 42px; height: 42px; border: 1px solid rgba(250,247,240,0.20); display: flex; align-items: center; justify-content: center; transition: all .25s; color: var(--cream); }
.footer-social a:hover { background: var(--gold); color: var(--ink); border-color: var(--gold); transform: translateY(-3px); }
.footer-bottom { display: flex; flex-direction: column; justify-content: space-between; gap: 16px; padding-top: 36px; font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(250,247,240,0.38); font-weight: 500; }
@media (min-width: 768px) { .footer-bottom { flex-direction: row; align-items: center; } }
.footer-credits { color: var(--gold); }

/* WhatsApp + back to top */
.wa-float { position: fixed; bottom: 24px; right: 24px; width: 60px; height: 60px; background: #25D366; color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 14px 36px rgba(37,211,102,0.45); z-index: 50; transition: transform .25s; }
.wa-float:hover { transform: scale(1.08); }
.wa-float-pulse { position: absolute; inset: 0; border-radius: 50%; border: 2px solid #25D366; opacity: 0; animation: waPulse 2.4s infinite; pointer-events: none; }
@keyframes waPulse { 0% { opacity: .8; transform: scale(.92); } 70% { opacity: 0; transform: scale(1.4); } 100% { opacity: 0; transform: scale(1.4); } }
.to-top { position: fixed; bottom: 96px; right: 24px; width: 48px; height: 48px; background: var(--ink); color: var(--gold); border: 1px solid var(--gold); display: flex; align-items: center; justify-content: center; z-index: 50; cursor: pointer; opacity: 0; visibility: hidden; transform: translateY(10px); transition: all .3s; }
.to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.to-top:hover { background: var(--gold); color: var(--ink); }

/* Consent */
.consent-banner { position: fixed; bottom: 24px; left: 24px; right: 24px; max-width: 480px; margin: 0 auto; background: var(--ink); color: var(--cream); padding: 28px 28px 24px; z-index: 9000; transform: translateY(180%); transition: transform .5s cubic-bezier(.2,.8,.2,1); border: 1px solid rgba(250,247,240,0.10); border-top: 2px solid var(--gold); box-shadow: 0 25px 60px rgba(0,0,0,0.4); }
.consent-banner.is-visible { transform: translateY(0); }
.consent-label { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; font-weight: 600; }
.consent-banner p { font-size: 13px; line-height: 1.65; font-weight: 300; margin: 0 0 22px; color: rgba(250,247,240,0.82); }
.consent-buttons { display: flex; gap: 10px; flex-wrap: wrap; }
.consent-buttons button { padding: 11px 18px; font-family: var(--font-body); font-size: 11.5px; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; border: none; cursor: pointer; transition: all .25s; }
.consent-buttons .accept { background: var(--gold); color: var(--ink); }
.consent-buttons .accept:hover { background: var(--cream); }
.consent-buttons .decline { background: transparent; color: var(--cream); border: 1px solid rgba(250,247,240,0.3); }
.consent-buttons .decline:hover { background: rgba(250,247,240,0.08); border-color: var(--cream); }

/* Custom cursor (desktop only) */
@media (hover: hover) and (pointer: fine) {
  .cursor-dot { position: fixed; top: 0; left: 0; width: 7px; height: 7px; background: var(--gold); border-radius: 50%; pointer-events: none; z-index: 99998; transform: translate(-50%,-50%); }
  .cursor-ring { position: fixed; top: 0; left: 0; width: 36px; height: 36px; border: 1px solid rgba(201,164,92,0.5); border-radius: 50%; pointer-events: none; z-index: 99997; transform: translate(-50%,-50%); transition: width .25s, height .25s, background .25s, border-color .25s; }
  .cursor-ring.is-hover { width: 56px; height: 56px; background: rgba(201,164,92,0.12); border-color: var(--gold); }
}

/* Reveal helpers for motion */
.anim-img { overflow: hidden; }
.anim-img img { will-change: transform; }
body.motion-ready .anim-img img { clip-path: inset(0 0 100% 0); transform: scale(1.08); transition: clip-path 1.1s cubic-bezier(.16,1,.3,1), transform 1.3s cubic-bezier(.16,1,.3,1); }
body.motion-ready .anim-img.is-in img { clip-path: inset(0 0 0 0); transform: scale(1); }
@media (prefers-reduced-motion: reduce) {
  
  .cursor-dot, .cursor-ring { display: none !important; }
}

/* Hero load animation */
.hero-tag { animation: heroFadeUp .8s .1s both cubic-bezier(.2,.8,.2,1); }
.hero-title { animation: heroFadeUp .9s .25s both cubic-bezier(.2,.8,.2,1); }
.hero-lead { animation: heroFadeUp .9s .4s both cubic-bezier(.2,.8,.2,1); }
.hero-actions { animation: heroFadeUp .9s .55s both cubic-bezier(.2,.8,.2,1); }
.hero-stats-mini { animation: heroFadeUp .9s .7s both cubic-bezier(.2,.8,.2,1); }
.hero-visual { animation: heroFadeIn 1.2s .4s both cubic-bezier(.2,.8,.2,1); }
@keyframes heroFadeUp { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }
@keyframes heroFadeIn { from { opacity: 0; } to { opacity: 1; } }
/* ===== SUPPLEMENTAL — bridge classes ===== */
.photo-band-tile .pb-cap { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 48%, rgba(10,31,23,0.85)); display: flex; flex-direction: column; justify-content: flex-end; padding: 22px 22px; font-family: var(--font-display); font-size: 17px; font-weight: 500; color: var(--cream); line-height: 1.25; }
.photo-band-tile .pb-cap-label { font-family: var(--font-mono); font-size: 9.5px; letter-spacing: 0.28em; text-transform: uppercase; color: var(--gold); font-weight: 600; margin-bottom: 6px; }
.ecole-card-photo .ecole-card-photo-num { position: absolute; top: 14px; left: 16px; font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.2em; color: var(--cream); background: rgba(10,31,23,0.6); padding: 5px 10px; font-weight: 600; }
.stats-parallax .sp-overlay { position: absolute; inset: 0; background: radial-gradient(ellipse at 50% 50%, rgba(10,31,23,0.5), rgba(10,31,23,0.88)); z-index: 1; }
.stats-parallax .sp-inner { position: relative; z-index: 2; }
.sp-stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 48px 24px; }
@media (min-width: 768px) { .sp-stats { grid-template-columns: repeat(4, 1fr); gap: 32px; } }
.sp-stat { border-left: 2px solid var(--gold); padding-left: 24px; }
.sp-stat-num { font-family: var(--font-display); font-weight: 500; font-size: clamp(2.5rem, 5vw, 4rem); line-height: 1; color: var(--cream); margin-bottom: 14px; letter-spacing: -0.02em; }
.sp-stat-num span { color: var(--gold); font-style: italic; }
.sp-stat-label { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(250,247,240,0.65); font-weight: 600; }
.newsletter .nl-overlay { position: absolute; inset: 0; background: radial-gradient(ellipse at 20% 30%, rgba(20,163,127,0.25), transparent 55%), radial-gradient(ellipse at 85% 80%, rgba(201,164,92,0.18), transparent 55%); z-index: 1; }
.newsletter .nl-grid { position: relative; z-index: 2; }
.nl-form-sub { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.12em; color: rgba(250,247,240,0.6); margin: -2px 0 24px; text-transform: none; }
.nl-form .nl-field label { display:block; font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(250,247,240,0.6); font-weight: 600; margin-bottom: 18px; }
.nl-form .nl-field input, .nl-form .nl-field select { display:block; width:100%; margin-top:10px; padding:14px 16px; background:rgba(250,247,240,0.08); border:1px solid rgba(250,247,240,0.18); font-family:var(--font-body); font-size:14.5px; color:var(--cream); letter-spacing:0; text-transform:none; }
.nl-form .nl-field input::placeholder { color: rgba(250,247,240,0.4); }
.nl-form .nl-field select option { color: var(--ink); }
.nl-form .nl-field input:focus, .nl-form .nl-field select:focus { outline:none; border-color:var(--gold); box-shadow:0 0 0 3px rgba(201,164,92,0.18); }
.nl-consent { color: rgba(250,247,240,0.8); font-size: 12.5px; font-weight: 300; }
.nl-consent a { color: var(--gold); text-decoration: underline; }
/* ============================================================
   OVERRIDES v2 — contraste, lisibilité, photos
   ============================================================ */
:root{
  --text-soft: rgba(10,31,23,0.82);
  --text-on-dark: rgba(250,247,240,0.93);
  --rule: rgba(10,31,23,0.16);
  --rule-strong: rgba(10,31,23,0.30);
}

/* Taille de base augmentée pour la lisibilité */
body{ font-size:17px; line-height:1.62; }

/* Corps de texte plus foncé et un peu plus épais partout */
.lead{ font-size:19px; line-height:1.72; font-weight:400; color:var(--text-soft); }
.page-hero-lead{ font-size:19px; line-height:1.72; font-weight:400; }
.why-card p{ font-size:15.5px; font-weight:400; }
.why-card h3{ font-size:23px; }
.ecole-card-desc{ font-size:15px; font-weight:400; color:var(--text-soft); }
.agreement-card p{ font-size:15px; font-weight:400; }
.agreement-card h3{ font-size:24px; }
.diploma-card p{ font-size:15.5px; font-weight:400; }
.dip-twin-card p{ font-size:16.5px; font-weight:400; }
.fut-resource-body p{ font-size:15.5px; font-weight:400; }
.fut-step p, .intl-step p, .ent-process-step p{ font-size:15px; font-weight:400; }
.event-body p{ font-size:15px; font-weight:400; }
.club-body p, .service-card p{ font-size:14.5px; font-weight:400; }
.cta-final-text{ font-size:19px; font-weight:400; }
.contact-block-value, .contact-info p, .contact-form-panel p{ font-size:16px; }
.hours-day{ font-size:15px; }
.nl-grid p{ font-size:17px; font-weight:400; }
.footer-tagline, .footer-address{ font-size:14.5px; }
.footer-grid ul a, .footer-contact-line a{ font-size:15px; }
.section-dark p, .section-moss p{ color:var(--text-on-dark); }
.nav-link{ font-size:15px; }
.faq-answer{ font-size:15.5px; font-weight:400; line-height:1.7; }

/* CORRECTIF : le fond sombre/moss doit primer sur le crème de .cta-final */
.cta-final.section-moss{ background: var(--moss); }
.cta-final.section-dark{ background: var(--ink); }

/* Photo de fond sur toutes les sections d'appel à l'action (moss) */
.cta-final.section-moss::before{
  content:""; position:absolute; inset:0; z-index:0;
  background:url('/images/campus.webp') center/cover no-repeat;
  opacity:0.30;
}
.cta-final.section-moss::after{
  content:""; position:absolute; inset:0; z-index:1;
  background:linear-gradient(135deg, rgba(10,61,46,0.86), rgba(10,31,23,0.90));
}
.cta-final-inner{ position:relative; z-index:2; }

/* Photo dans la colonne libre des en-têtes de section */
.section-head.has-photo-col{ align-items:start; }
.section-head-photo{ margin-top:26px; width:100%; aspect-ratio:3/4; max-height:440px; overflow:hidden; border:1px solid var(--rule); box-shadow:var(--shadow-soft); }
.section-head-photo img{ width:100%; height:100%; object-fit:cover; display:block; transition:transform .7s ease; }
.section-head-photo:hover img{ transform:scale(1.05); }
@media (max-width:767px){ .section-head-photo{ display:none; } }

/* Galerie photos (remplace la carte du contact) */
.contact-gallery{ display:grid; grid-template-columns:repeat(2,1fr); gap:14px; margin-top:48px; }
@media (min-width:900px){ .contact-gallery{ grid-template-columns:repeat(4,1fr); } }
.contact-gallery figure{ margin:0; position:relative; aspect-ratio:3/4; overflow:hidden; border:1px solid var(--rule); }
.contact-gallery img{ width:100%; height:100%; object-fit:cover; display:block; transition:transform .6s ease; }
.contact-gallery figure:hover img{ transform:scale(1.06); }
.contact-gallery figcaption{ position:absolute; left:0; right:0; bottom:0; padding:16px 16px 18px; background:linear-gradient(transparent, rgba(10,31,23,0.88)); color:var(--cream); font-family:var(--font-display); font-size:16px; font-weight:500; }

/* Hero Diplomation : photo du diplômé à droite */
.page-hero.has-side-photo .page-hero-inner{ display:grid; grid-template-columns:1fr; gap:44px; align-items:center; }
@media (min-width:1024px){ .page-hero.has-side-photo .page-hero-inner{ grid-template-columns:1.02fr 0.98fr; gap:64px; } }
.hero-split-text{ min-width:0; }
.hero-split-media{ position:relative; }
.hero-split-media img{ width:100%; height:auto; display:block; border:1px solid var(--rule-light); box-shadow:0 34px 80px rgba(0,0,0,0.45); }
.hero-split-badge{ position:absolute; left:0; bottom:0; transform:translate(-14px,14px); background:var(--gold); color:var(--ink); font-family:var(--font-mono); font-size:11px; letter-spacing:0.16em; text-transform:uppercase; font-weight:700; padding:12px 18px; box-shadow:0 10px 24px rgba(0,0,0,0.3); }
@media (max-width:1023px){ .hero-split-media{ max-width:560px; margin:0 auto; } .hero-split-badge{ transform:translate(0,0); left:14px; bottom:14px; } }

/* Bande photo cérémonie (remise de diplôme) */
.ceremonie-band{ position:relative; margin:0; overflow:hidden; max-height:560px; }
.ceremonie-band img{ width:100%; height:100%; object-fit:cover; display:block; }
.ceremonie-cap{ position:absolute; left:0; bottom:0; background:var(--ink); color:var(--cream); font-family:var(--font-mono); font-size:12px; letter-spacing:0.16em; text-transform:uppercase; padding:14px 22px; border-top:2px solid var(--gold); }
.ceremonie-cap b{ color:var(--gold); font-weight:600; }

.section-head-photo.is-wide{ aspect-ratio:3/2; max-height:none; }
.section-head-photo.is-wide img{ object-position:center 30%; }

/* ============================================================
   TÉMOIGNAGES ALUMNI
   ============================================================ */
.alumni-hero { position:relative; background:var(--ink); color:var(--cream); padding:120px 0 100px; overflow:hidden; border-bottom:1px solid var(--rule-light); }
.alumni-hero::before { content:''; position:absolute; inset:0; background:radial-gradient(ellipse at 20% 30%, rgba(20,163,127,0.20), transparent 50%), radial-gradient(ellipse at 80% 70%, rgba(201,164,92,0.15), transparent 50%); pointer-events:none; }
.alumni-hero-inner { position:relative; z-index:2; }
.alumni-hero-badge { display:inline-flex; align-items:center; gap:12px; background:rgba(201,164,92,0.12); border:1px solid var(--gold); padding:10px 20px; font-family:var(--font-mono); font-size:11px; letter-spacing:0.2em; text-transform:uppercase; color:var(--gold); font-weight:600; margin-bottom:28px; }
.alumni-hero h1 { font-family:var(--font-display); font-size:clamp(2.5rem, 6vw, 5rem); font-weight:400; line-height:1.0; letter-spacing:-0.025em; color:var(--cream); margin:0; }
.alumni-hero h1 em { font-style:italic; font-weight:300; color:var(--gold); }
.alumni-hero-lead { font-size:18px; line-height:1.7; color:rgba(250,247,240,0.78); font-weight:300; margin:28px 0 0; max-width:640px; }

.alumni-form-section { background:var(--paper); padding:96px 0; }
.alumni-form-card { background:var(--cream); border:1px solid var(--rule); padding:48px 44px; max-width:720px; margin:0 auto; position:relative; }
.alumni-form-card::before { content:''; position:absolute; top:0; left:0; width:100%; height:4px; background:linear-gradient(90deg, var(--emerald), var(--gold)); }
.alumni-form-card h2 { font-family:var(--font-display); font-size:clamp(1.75rem, 3vw, 2.4rem); margin-bottom:12px; font-weight:500; letter-spacing:-0.02em; }
.alumni-form-card .sub { font-size:15px; color:var(--text-soft); font-weight:300; margin-bottom:40px; line-height:1.6; }
.alumni-field { margin-bottom:24px; }
.alumni-field label { display:block; font-family:var(--font-mono); font-size:10.5px; letter-spacing:0.22em; text-transform:uppercase; color:var(--text-soft); font-weight:600; margin-bottom:10px; }
.alumni-field input, .alumni-field textarea, .alumni-field select { display:block; width:100%; padding:14px 16px; background:var(--cream); border:1px solid var(--rule); font-family:var(--font-body); font-size:15px; font-weight:400; color:var(--ink); transition:all .25s; }
.alumni-field input:focus, .alumni-field textarea:focus, .alumni-field select:focus { outline:none; border-color:var(--emerald); box-shadow:0 0 0 3px rgba(20,163,127,0.10); }
.alumni-field textarea { resize:vertical; min-height:120px; line-height:1.6; }
.alumni-field input::placeholder, .alumni-field textarea::placeholder { color:rgba(10,31,23,0.35); }
.alumni-form-row { display:grid; grid-template-columns:1fr; gap:0 24px; }
@media (min-width:640px) { .alumni-form-row { grid-template-columns:1fr 1fr; } }
.alumni-submit { background:var(--ink); color:var(--cream); border:none; padding:18px 32px; font-family:var(--font-body); font-size:13px; font-weight:700; letter-spacing:0.06em; text-transform:uppercase; cursor:pointer; transition:all .25s; display:flex; align-items:center; justify-content:center; gap:12px; width:100%; margin-top:8px; }
.alumni-submit:hover { background:var(--emerald); transform:translateY(-2px); box-shadow:0 16px 36px -12px rgba(14,107,81,0.4); }
.alumni-submit i { color:var(--gold); }

.alumni-success { display:none; background:var(--mint); border-left:4px solid var(--emerald); padding:20px 24px; margin-top:24px; font-size:15px; color:var(--ink); font-weight:500; }
.alumni-success.is-visible { display:block; animation:fadeUp .5s ease; }

.alumni-list-section { background:var(--cream); padding:96px 0; }
.alumni-grid { display:grid; grid-template-columns:1fr; gap:32px; }
@media (min-width:768px) { .alumni-grid { grid-template-columns:repeat(2, 1fr); } }
@media (min-width:1024px) { .alumni-grid { grid-template-columns:repeat(3, 1fr); } }
.alumni-card { background:var(--cream); border:1px solid var(--rule); padding:40px 34px; transition:all .35s; position:relative; overflow:hidden; }
.alumni-card:hover { transform:translateY(-6px); box-shadow:var(--shadow-soft); border-color:var(--gold); }
.alumni-card::before { content:''; position:absolute; top:0; left:0; width:100%; height:3px; background:var(--gold); transform:scaleX(0); transform-origin:left; transition:transform .4s ease; }
.alumni-card:hover::before { transform:scaleX(1); }
.alumni-card-quote { font-family:var(--font-display); font-style:italic; font-size:17px; line-height:1.6; color:var(--ink); margin-bottom:28px; font-weight:400; letter-spacing:-0.005em; }
.alumni-card-meta { display:flex; align-items:center; gap:14px; margin-bottom:20px; }
.alumni-avatar { width:52px; height:52px; border-radius:50%; background:var(--ink); color:var(--gold); display:flex; align-items:center; justify-content:center; font-family:var(--font-display); font-weight:600; font-size:20px; border:2px solid var(--gold); flex-shrink:0; }
.alumni-card-name { font-family:var(--font-display); font-size:17px; font-weight:500; color:var(--ink); margin-bottom:4px; }
.alumni-card-role { font-family:var(--font-mono); font-size:10px; letter-spacing:0.2em; text-transform:uppercase; color:var(--emerald); font-weight:600; }
.alumni-card-company { font-size:14px; color:var(--text-soft); font-weight:300; margin-top:4px; }
.alumni-card-year { display:inline-flex; align-items:center; gap:8px; margin-top:16px; padding:6px 14px; background:var(--paper); font-family:var(--font-mono); font-size:10px; letter-spacing:0.18em; text-transform:uppercase; color:var(--ink); font-weight:600; border:1px solid var(--rule); }
.alumni-card-year i { color:var(--gold); font-size:10px; }

.alumni-empty { text-align:center; padding:80px 24px; }
.alumni-empty i { font-size:48px; color:var(--rule-strong); margin-bottom:24px; display:block; }
.alumni-empty h3 { font-family:var(--font-display); font-size:24px; color:var(--ink); margin-bottom:12px; font-weight:500; }
.alumni-empty p { font-size:16px; color:var(--text-soft); font-weight:300; }

/* Admin toggle link */
.admin-toggle { text-align:center; margin-top:48px; }
.admin-toggle a { font-family:var(--font-mono); font-size:11px; letter-spacing:0.2em; text-transform:uppercase; color:var(--text-soft); font-weight:600; cursor:pointer; transition:color .25s; }
.admin-toggle a:hover { color:var(--gold); }

/* Admin panel */
.admin-panel { background:var(--ink); color:var(--cream); min-height:100vh; }
.admin-header { background:var(--moss); padding:32px 0; border-bottom:1px solid var(--rule-light); }
.admin-header-inner { display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:16px; }
.admin-header h1 { font-family:var(--font-display); font-size:28px; color:var(--cream); font-weight:500; }
.admin-header .back-link { font-family:var(--font-mono); font-size:11px; letter-spacing:0.2em; text-transform:uppercase; color:var(--gold); font-weight:600; cursor:pointer; transition:color .25s; }
.admin-header .back-link:hover { color:var(--cream); }

.admin-login { max-width:420px; margin:0 auto; padding:120px 24px; text-align:center; }
.admin-login .lock-icon { width:72px; height:72px; background:var(--moss); color:var(--gold); border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:28px; margin:0 auto 32px; border:2px solid var(--gold); }
.admin-login h2 { font-family:var(--font-display); font-size:32px; color:var(--cream); margin-bottom:16px; font-weight:500; }
.admin-login p { font-size:15px; color:rgba(250,247,240,0.72); font-weight:300; margin-bottom:40px; }
.admin-login input { width:100%; padding:16px; background:rgba(250,247,240,0.06); border:1px solid rgba(250,247,240,0.18); color:var(--cream); font-family:var(--font-body); font-size:15px; text-align:center; letter-spacing:0.3em; margin-bottom:20px; transition:border-color .25s; }
.admin-login input:focus { outline:none; border-color:var(--gold); }
.admin-login input::placeholder { color:rgba(250,247,240,0.35); }
.admin-login button { width:100%; background:var(--gold); color:var(--ink); border:none; padding:18px; font-family:var(--font-body); font-size:13px; font-weight:700; letter-spacing:0.06em; text-transform:uppercase; cursor:pointer; transition:all .25s; }
.admin-login button:hover { background:var(--cream); }
.admin-login .error { color:#e57373; font-size:13px; margin-top:16px; display:none; }
.admin-login .error.is-visible { display:block; }

.admin-dashboard { padding:56px 0; }
.admin-section { margin-bottom:64px; }
.admin-section-title { font-family:var(--font-mono); font-size:11px; letter-spacing:0.3em; text-transform:uppercase; color:var(--gold); font-weight:600; margin-bottom:28px; display:flex; align-items:center; gap:12px; }
.admin-section-title::before { content:''; width:24px; height:1px; background:var(--gold); }
.admin-count { font-family:var(--font-display); font-size:18px; color:var(--cream); margin-left:auto; font-weight:500; }

.admin-table { width:100%; border-collapse:collapse; }
.admin-table th { font-family:var(--font-mono); font-size:10px; letter-spacing:0.2em; text-transform:uppercase; color:var(--gold); font-weight:600; text-align:left; padding:16px 20px; border-bottom:1px solid rgba(250,247,240,0.15); }
.admin-table td { padding:20px; border-bottom:1px solid rgba(250,247,240,0.08); font-size:14px; color:rgba(250,247,240,0.85); vertical-align:top; }
.admin-table tr:hover td { background:rgba(250,247,240,0.03); }
.admin-table .col-name { font-family:var(--font-display); font-size:16px; color:var(--cream); font-weight:500; }
.admin-table .col-meta { font-size:12px; color:var(--gold); margin-top:4px; font-family:var(--font-mono); letter-spacing:0.1em; text-transform:uppercase; }
.admin-table .col-text { max-width:320px; line-height:1.6; font-style:italic; }
.admin-actions { display:flex; gap:10px; flex-wrap:wrap; }
.admin-btn { padding:10px 18px; font-family:var(--font-body); font-size:12px; font-weight:600; letter-spacing:0.04em; text-transform:uppercase; border:none; cursor:pointer; transition:all .25s; }
.admin-btn-approve { background:var(--emerald); color:var(--cream); }
.admin-btn-approve:hover { background:var(--jade); transform:translateY(-2px); }
.admin-btn-delete { background:transparent; color:rgba(250,247,240,0.6); border:1px solid rgba(250,247,240,0.2); }
.admin-btn-delete:hover { background:rgba(250,247,240,0.08); color:var(--cream); border-color:rgba(250,247,240,0.4); }

@media (max-width:767px) {
  .admin-table thead { display:none; }
  .admin-table, .admin-table tbody, .admin-table tr, .admin-table td { display:block; width:100%; }
  .admin-table tr { margin-bottom:16px; border:1px solid rgba(250,247,240,0.10); padding:16px; }
  .admin-table td { border:none; padding:8px 0; }
  .admin-table td::before { content:attr(data-label); display:block; font-family:var(--font-mono); font-size:10px; color:var(--gold); margin-bottom:4px; text-transform:uppercase; letter-spacing:0.15em; }
}

@keyframes fadeUp { from { opacity:0; transform:translateY(12px); } to { opacity:1; transform:translateY(0); } }

/* ================================================================
   REFONTE VISUELLE PREMIUM — Design System v2
   Couche d'amélioration exclusivement visuelle (Tailwind-compatible).
   Aucune structure, contenu, ID, classe fonctionnelle ou logique JS
   n'est modifiée : uniquement rayons, ombres, espacements, transitions.
   ================================================================ */
:root {
    --radius-sm: 12px;
    --radius-md: 18px;
    --radius-lg: 26px;
    --radius-full: 999px;
    --shadow-premium-sm: 0 4px 16px -6px rgba(10,31,23,0.10);
    --shadow-premium-md: 0 20px 45px -18px rgba(10,31,23,0.22);
    --shadow-premium-lg: 0 30px 70px -20px rgba(10,31,23,0.30);
    --shadow-premium-gold: 0 18px 40px -16px rgba(201,164,92,0.40);
    --ease-premium: cubic-bezier(.16,1,.3,1);
}

/* ---- Navbar flottante niveau entreprise ---- */
.nav {
    position: sticky;
    top: 14px;
    max-width: 1720px;
    width: calc(100% - 24px);
    margin: 16px auto 0;
    border-radius: var(--radius-full);
    border: 1px solid var(--rule);
    background: rgba(250,247,240,0.72);
    backdrop-filter: blur(24px) saturate(190%);
    -webkit-backdrop-filter: blur(24px) saturate(190%);
    box-shadow: var(--shadow-premium-sm);
    transition: box-shadow .4s var(--ease-premium), background .4s var(--ease-premium), width .4s var(--ease-premium), padding .4s var(--ease-premium), top .4s var(--ease-premium);
}
@media (min-width: 768px) { .nav { width: calc(100% - 32px); } }
@media (min-width: 1280px) { .nav { width: calc(100% - 40px); } }
.nav-inner { padding: 12px 20px; transition: padding .4s var(--ease-premium); flex-wrap: nowrap; gap: 20px; }
@media (min-width: 768px) { .nav-inner { padding: 13px 24px; } }
@media (min-width: 1400px) { .nav-inner { padding: 13px 28px; gap: 24px; } }
.nav.is-scrolled {
    top: 10px;
    background: rgba(250,247,240,0.92);
    box-shadow: var(--shadow-premium-md);
}
.nav.is-scrolled .nav-inner { padding: 9px 20px; }
.nav.is-scrolled .nav-logo { width: 42px; height: 42px; }
.nav-logo { transition: width .4s var(--ease-premium), height .4s var(--ease-premium), transform .4s ease; }
.nav-dropdown-menu {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-premium-lg);
    border-color: var(--rule);
}
.nav-cta, .nav-login, .nav-account, .nav-mobile .nav-cta { border-radius: var(--radius-full); }
.nav-toggle { border-radius: var(--radius-full); }
.nav-toggle:hover { background: var(--rule); }

/* ---- Boutons premium ---- */
.btn { border-radius: var(--radius-full); transition: all .35s var(--ease-premium); }
.btn-primary, .btn-gold { box-shadow: var(--shadow-premium-sm); }
.btn-primary:hover { box-shadow: var(--shadow-premium-lg); transform: translateY(-3px); }
.btn-gold:hover { box-shadow: var(--shadow-premium-gold); transform: translateY(-3px); }
.btn-outline:hover, .btn-outline-light:hover { transform: translateY(-3px); box-shadow: var(--shadow-premium-md); }

/* ---- Cartes : coins arrondis + hover élégant ---- */
.ecole-card, .why-card, .value-card, .testimonial-card, .agreement-card,
.alumni-card, .alumni-form-card, .audience-card, .club-card, .dip-twin-card,
.diploma-card, .doc-card, .ent-cta-card, .faq-media-card, .fut-resource-card,
.hours-card, .nl-form-card, .om-card, .pieces-card, .service-card,
.visa-card, .wave-card {
    border-radius: var(--radius-lg);
    transition: transform .45s var(--ease-premium), box-shadow .45s var(--ease-premium), border-color .45s var(--ease-premium), background .45s var(--ease-premium);
}
.ecole-card:hover, .why-card:hover, .value-card:hover, .agreement-card:hover,
.alumni-card:hover, .audience-card:hover, .club-card:hover, .diploma-card:hover,
.doc-card:hover, .fut-resource-card:hover, .hours-card:hover, .om-card:hover,
.pieces-card:hover, .service-card:hover, .visa-card:hover, .wave-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-premium-md);
}
.testimonial-card { border-radius: var(--radius-lg); }
.testimonial-card:hover { box-shadow: var(--shadow-premium-lg); }

/* ---- Images : ratios, arrondis, zoom discret ---- */
.hero-img-main, .hero-img-sub, .founder-img-wrap, .campus-tile, .anim-img {
    border-radius: var(--radius-lg);
}
.hero-img-sub { border-radius: var(--radius-md); }
.campus-tile { border-radius: var(--radius-md); }
.founder-badge { border-radius: 0 var(--radius-md) 0 0; }
.hero-img-badge { border-radius: var(--radius-sm); }
.hero-split-media img { border-radius: var(--radius-lg); }
.hero-split-badge { border-radius: var(--radius-sm); }

/* ---- Champs de formulaire ---- */
.form-light label > input, .form-light label > select, .form-light label > textarea {
    border-radius: var(--radius-sm) !important;
    transition: all .3s var(--ease-premium);
}
.form-light label > input:focus, .form-light label > select:focus, .form-light label > textarea:focus {
    border-color: var(--emerald);
    box-shadow: 0 0 0 3px rgba(14,107,81,0.12);
    outline: none;
}
.form-dark label > input:focus, .form-dark label > select:focus, .form-dark label > textarea:focus {
    border-color: var(--gold);
    outline: none;
}

/* ---- Focus visible accessible (clavier) ---- */
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
    outline: 2px solid var(--emerald);
    outline-offset: 3px;
    border-radius: 4px;
}

/* ---- Détails premium divers ---- */
.flag-mini-wrap, .dip-flag-badge { transition: all .3s var(--ease-premium); }
.flag-mini-wrap:hover { box-shadow: var(--shadow-premium-sm); transform: translateY(-2px); }
.partner-logo { transition: all .35s var(--ease-premium); }
.wa-float { transition: transform .3s var(--ease-premium), box-shadow .3s var(--ease-premium); }
.wa-float:hover { transform: scale(1.08); }

@media (max-width: 480px) {
    .nav { width: calc(100% - 16px); top: 8px; }
    .nav-inner { padding: 10px 14px; }
}

/* ---- Affiches / posters programmes ---- */
.poster-grid { display: grid; grid-template-columns: 1fr; gap: 28px; margin-top: 40px; }
@media (min-width: 768px) { .poster-grid.two-up { grid-template-columns: 1fr 1fr; } }
.poster-card { display: block; position: relative; overflow: hidden; border-radius: var(--radius-lg); box-shadow: var(--shadow-premium-sm); border: 1px solid var(--rule); transition: transform .4s var(--ease-premium), box-shadow .4s var(--ease-premium); background: var(--cream); }
.poster-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-premium-lg); }
.poster-card img { width: 100%; height: auto; display: block; }
.poster-card-overlay { position: absolute; inset: auto 0 0 0; background: linear-gradient(0deg, rgba(10,31,23,0.85), transparent); color: var(--cream); padding: 20px 22px 16px; display: flex; align-items: center; justify-content: space-between; gap: 12px; opacity: 0; transition: opacity .35s var(--ease-premium); }
.poster-card:hover .poster-card-overlay { opacity: 1; }
.poster-card-overlay span { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 600; }
.poster-card-overlay i { color: var(--gold); }
.poster-single { max-width: 640px; margin: 40px auto 0; }

/* ---- Formes flottantes ambiantes (façon IUA) ---- */
.float-shapes { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 1; }
.float-shape { position: absolute; border-radius: 50%; filter: blur(2px); opacity: 0.35; will-change: transform; }
.float-shape.gold { background: radial-gradient(circle at 30% 30%, var(--gold), transparent 70%); }
.float-shape.emerald { background: radial-gradient(circle at 30% 30%, var(--emerald), transparent 70%); }
.float-shape.ring { background: none; border: 1.5px solid var(--gold); opacity: 0.25; filter: none; }
.hero .float-shape.s1 { width: 140px; height: 140px; top: 8%; left: 4%; animation: floatDrift1 9s ease-in-out infinite; }
.hero .float-shape.s2 { width: 90px; height: 90px; top: 62%; left: 12%; animation: floatDrift2 11s ease-in-out infinite; }
.hero .float-shape.s3 { width: 60px; height: 60px; top: 20%; right: 6%; animation: floatDrift3 7.5s ease-in-out infinite; }
.hero .float-shape.s4 { width: 180px; height: 180px; bottom: -6%; right: 10%; animation: floatDrift1 13s ease-in-out infinite reverse; }
.hero .float-shape.s5 { width: 46px; height: 46px; top: 42%; right: 28%; animation: floatDrift3 6s ease-in-out infinite; }
@keyframes floatDrift1 { 0%, 100% { transform: translate(0, 0) rotate(0deg); } 50% { transform: translate(18px, -24px) rotate(8deg); } }
@keyframes floatDrift2 { 0%, 100% { transform: translate(0, 0) scale(1); } 50% { transform: translate(-16px, 20px) scale(1.08); } }
@keyframes floatDrift3 { 0%, 100% { transform: translate(0, 0); } 50% { transform: translate(12px, 14px); } }
.hero-content, .hero-visual { position: relative; z-index: 5; }
@media (prefers-reduced-motion: reduce) { .float-shape { animation: none !important; } }
@media (max-width: 767px) { .float-shape.s4 { display: none; } }


                .dc-panel{ background:var(--ink); color:var(--cream); border-radius:4px; padding:40px 32px; max-width:980px; margin:0 auto; }
                .dc-toolbar{ display:flex; flex-wrap:wrap; gap:14px; align-items:center; margin-bottom:28px; }
                .dc-search{ position:relative; flex:1 1 260px; }
                .dc-search i{ position:absolute; left:16px; top:50%; transform:translateY(-50%); color:rgba(250,247,240,0.4); font-size:13px; }
                .dc-search input{ width:100%; box-sizing:border-box; background:rgba(250,247,240,0.06); border:1px solid rgba(250,247,240,0.18); color:var(--cream); font-family:var(--font-body); font-size:14px; padding:12px 14px 12px 40px; border-radius:3px; outline:none; transition:border-color .2s; }
                .dc-search input:focus{ border-color:var(--gold); }
                .dc-search input::placeholder{ color:rgba(250,247,240,0.4); }
                .dc-sort{ background:rgba(250,247,240,0.06); border:1px solid rgba(250,247,240,0.18); color:var(--cream); font-family:var(--font-body); font-size:13px; padding:11px 12px; border-radius:3px; outline:none; cursor:pointer; }
                .dc-sort option{ background:var(--ink); color:var(--cream); }
                .dc-chips{ display:flex; flex-wrap:wrap; gap:8px; margin-bottom:14px; }
                .dc-chip{ font-family:var(--font-mono); font-size:11px; letter-spacing:0.06em; text-transform:uppercase; color:var(--cream); background:transparent; border:1px solid rgba(250,247,240,0.25); border-radius:20px; padding:7px 14px; cursor:pointer; transition:all .2s; }
                .dc-chip:hover{ border-color:var(--gold); color:var(--gold); }
                .dc-chip.is-active{ background:var(--gold); border-color:var(--gold); color:var(--ink); font-weight:700; }
                .dc-count{ font-family:var(--font-mono); font-size:11px; color:rgba(250,247,240,0.5); margin-bottom:18px; letter-spacing:0.04em; }
                .dc-grid{ display:grid; grid-template-columns:repeat(auto-fill,minmax(260px,1fr)); gap:12px; }
                .dc-card{ display:flex; flex-direction:column; gap:10px; background:rgba(250,247,240,0.05); border:1px solid rgba(250,247,240,0.12); border-left:3px solid var(--gold); border-radius:3px; padding:16px 18px; text-decoration:none; transition:all .2s; }
                .dc-card:hover{ background:rgba(250,247,240,0.1); transform:translateY(-2px); }
                .dc-card-ecole{ font-family:var(--font-mono); font-size:10.5px; letter-spacing:0.1em; text-transform:uppercase; color:var(--gold); font-weight:700; }
                .dc-card-title{ font-family:var(--font-body); font-size:15px; color:var(--cream); font-weight:500; line-height:1.35; }
                .dc-card-niveau{ font-size:11.5px; color:rgba(250,247,240,0.55); }
                .dc-card-dl{ margin-top:auto; display:flex; align-items:center; gap:8px; font-family:var(--font-mono); font-size:11px; letter-spacing:0.05em; text-transform:uppercase; color:var(--cream); }
                .dc-card:hover .dc-card-dl{ color:var(--gold); }
                .dc-empty{ text-align:center; color:rgba(250,247,240,0.6); font-size:14px; padding:30px 0; }
            
.skip-link{position:absolute;left:-999px;top:0;background:var(--gold);color:var(--ink);padding:8px 16px;z-index:10000;font-weight:700}
.skip-link:focus{left:16px;top:16px}
img[src*="/images/"]{background:var(--paper)}
.ecole-card-photo img{width:100%;height:100%;object-fit:cover}
.form-status{margin-top:16px;font-size:14px}
.form-status.ok{color:var(--emerald)}
.form-status.err{color:var(--terracotta)}
.auth-shell{min-height:70vh;display:grid;place-items:center;padding:80px 24px;background:var(--paper)}
.auth-card{width:100%;max-width:480px;background:var(--cream);border:1px solid var(--rule);padding:48px 40px;box-shadow:var(--shadow-soft)}
.auth-card h1{font-size:2rem;margin-bottom:8px}
.auth-card .lead{margin-bottom:28px}
.legal{padding:120px 0;max-width:760px}
.legal h1{margin-bottom:24px}
.legal h2{margin:32px 0 12px;font-size:1.5rem}
.legal p,.legal li{color:var(--text-soft);font-weight:300;line-height:1.7}
