* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            background-color: #1c1814;
            font-family: 'IM Fell English', serif;
            color: #e8e2d2;
            overflow-x: hidden;
        }

        /* ── NAVBAR ── */
        .bandeau {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            padding: 10px 50px;
            background: rgba(18, 15, 12, 0.97);
            border-bottom: 1px solid #C5A059;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            backdrop-filter: blur(8px);
        }

        .bandeau-logo {
            display: flex;
            align-items: center;
            gap: 14px;
            text-decoration: none;
        }

        .bandeau-logo img {
            height: 56px;
            width: 56px;
            object-fit: contain;
            filter: drop-shadow(0 0 8px rgba(197, 160, 89, 0.5));
            transition: filter 0.3s;
        }

        .bandeau-logo:hover img {
            filter: drop-shadow(0 0 14px rgba(197, 160, 89, 0.85));
        }

        .bandeau-logo h1 {
            font-family: 'Cinzel', serif;
            color: #C5A059;
            font-size: 1.6rem;
            letter-spacing: 4px;
            text-transform: uppercase;
            font-weight: 600;
        }

        nav ul {
            list-style: none;
            display: flex;
            gap: 0;
        }

        nav li {
            display: inline-block;
        }

        nav a {
            text-decoration: none;
            color: #c8bfa8;
            font-family: 'Cinzel', serif;
            font-size: 0.95rem;
            letter-spacing: 2px;
            text-transform: uppercase;
            padding: 8px 22px;
            transition: color 0.3s;
            position: relative;
        }

        nav a::after {
            content: '';
            position: absolute;
            bottom: 4px;
            left: 22px;
            right: 22px;
            height: 1px;
            background: #C5A059;
            transform: scaleX(0);
            transition: transform 0.3s;
        }

        nav a:hover {
            color: #C5A059;
        }

        nav a:hover::after {
            transform: scaleX(1);
        }

        /* ── HERO ── */
        .hero {
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            position: relative;
            padding-top: 80px;
        }

        .hero-bg {
            position: absolute;
            inset: 0;
            background: radial-gradient(ellipse at 50% 60%, rgba(197,160,89,0.07) 0%, transparent 65%),
                        radial-gradient(ellipse at 80% 20%, rgba(100,80,40,0.08) 0%, transparent 50%);
            pointer-events: none;
        }

        .hero-top-ornament {
            width: 300px;
            height: 1px;
            background: linear-gradient(to right, transparent, #C5A059, transparent);
            margin-bottom: 30px;
            position: relative;
        }

        .hero-top-ornament::before,
        .hero-top-ornament::after {
            content: '✦';
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            color: #C5A059;
            font-size: 10px;
        }

        .hero-top-ornament::before { left: -14px; }
        .hero-top-ornament::after { right: -14px; }

        .hero-title-block {
            text-align: center;
            margin-bottom: 50px;
            z-index: 2;
        }

        .hero-subtitle {
            font-family: 'Cinzel', serif;
            color: #8a7550;
            font-size: 0.8rem;
            letter-spacing: 6px;
            text-transform: uppercase;
            margin-bottom: 10px;
        }

        .hero-main-title {
            font-family: 'Cinzel Decorative', serif;
            color: #C5A059;
            font-size: clamp(2.2rem, 5vw, 3.8rem);
            letter-spacing: 6px;
            text-transform: uppercase;
            line-height: 1.15;
            text-shadow: 0 0 40px rgba(197,160,89,0.25);
        }

        /* ── IMAGE PRINCIPALE (propa) ── */
        .propa-container {
            position: relative;
            z-index: 2;
            width: 100%;
            max-width: 900px;
            margin: 0 auto 60px;
        }

        .propa-frame {
            position: relative;
            border: 1px solid rgba(197,160,89,0.4);
            padding: 8px;
            background: rgba(10,8,6,0.6);
        }

        .propa-frame::before,
        .propa-frame::after {
            content: '';
            position: absolute;
            width: 24px;
            height: 24px;
            border-color: #C5A059;
            border-style: solid;
        }

        .propa-frame::before {
            top: -1px; left: -1px;
            border-width: 2px 0 0 2px;
        }

        .propa-frame::after {
            bottom: -1px; right: -1px;
            border-width: 0 2px 2px 0;
        }

        .propa-inner {
            position: relative;
            overflow: hidden;
        }

        .propa-inner::before,
        .propa-inner::after {
            content: '';
            position: absolute;
            width: 24px;
            height: 24px;
            border-color: #C5A059;
            border-style: solid;
            z-index: 3;
        }

        .propa-inner::before {
            top: 0; right: 0;
            border-width: 2px 2px 0 0;
        }

        .propa-inner::after {
            bottom: 0; left: 0;
            border-width: 0 0 2px 2px;
        }

        .propa-img {
            display: block;
            width: 100%;
            height: auto;
            object-fit: cover;
            object-position: center top;
            filter: sepia(15%) contrast(1.05);
            transition: filter 0.5s;
        }

        .propa-img:hover {
            filter: sepia(5%) contrast(1.08);
        }

        .propa-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to bottom, transparent 55%, rgba(28,24,20,0.95) 100%);
            z-index: 2;
            pointer-events: none;
        }

        .propa-caption {
            position: absolute;
            bottom: 28px;
            left: 0;
            right: 0;
            z-index: 3;
            text-align: center;
            padding: 0 40px;
        }

        .propa-caption-title {
            font-family: 'Cinzel', serif;
            color: #C5A059;
            font-size: 1.1rem;
            letter-spacing: 4px;
            text-transform: uppercase;
        }

        .propa-caption-sub {
            font-family: 'IM Fell English', serif;
            color: rgba(232,226,210,0.75);
            font-size: 0.95rem;
            font-style: italic;
            margin-top: 6px;
        }

        /* ── SEPARATEUR ── */
        .sep {
            display: flex;
            align-items: center;
            gap: 20px;
            max-width: 600px;
            margin: 0 auto 60px;
            z-index: 2;
            position: relative;
        }

        .sep-line {
            flex: 1;
            height: 1px;
            background: linear-gradient(to right, transparent, rgba(197,160,89,0.6));
        }

        .sep-line.right {
            background: linear-gradient(to left, transparent, rgba(197,160,89,0.6));
        }

        .sep-icon {
            color: #C5A059;
            font-size: 1.1rem;
            letter-spacing: 4px;
        }

        /* ── SECTIONS ACCUEIL ── */
        .accueil-sections {
            max-width: 1100px;
            margin: 0 auto;
            padding: 0 40px 100px;
            z-index: 2;
            position: relative;
        }

        .section-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2px;
        }

        .section-card {
            position: relative;
            border: 1px solid rgba(197,160,89,0.2);
            padding: 40px 32px;
            text-align: center;
            text-decoration: none;
            color: inherit;
            background: rgba(22,18,14,0.6);
            transition: background 0.4s, border-color 0.4s;
            overflow: hidden;
        }

        .section-card::before {
            content: '';
            position: absolute;
            inset: 0;
            background: rgba(197,160,89,0.04);
            opacity: 0;
            transition: opacity 0.4s;
        }

        .section-card:hover {
            border-color: rgba(197,160,89,0.5);
            background: rgba(30,25,18,0.8);
        }

        .section-card:hover::before {
            opacity: 1;
        }

        .section-card-icon {
            font-size: 2.2rem;
            color: #C5A059;
            margin-bottom: 18px;
            opacity: 0.8;
        }

        .section-card-title {
            font-family: 'Cinzel', serif;
            color: #C5A059;
            font-size: 1rem;
            letter-spacing: 3px;
            text-transform: uppercase;
            margin-bottom: 14px;
        }

        .section-card-text {
            font-family: 'IM Fell English', serif;
            color: rgba(200,191,168,0.8);
            font-size: 0.92rem;
            line-height: 1.75;
            font-style: italic;
        }

        .section-card-arrow {
            display: inline-block;
            margin-top: 22px;
            color: rgba(197,160,89,0.5);
            font-family: 'Cinzel', serif;
            font-size: 0.75rem;
            letter-spacing: 3px;
            text-transform: uppercase;
            transition: color 0.3s, letter-spacing 0.3s;
        }

        .section-card:hover .section-card-arrow {
            color: #C5A059;
            letter-spacing: 5px;
        }

        /* ── SCROLLBAR ── */
        ::-webkit-scrollbar { width: 6px; }
        ::-webkit-scrollbar-track { background: #1c1814; }
        ::-webkit-scrollbar-thumb { background: rgba(197,160,89,0.4); }

        /* ── LETTRE D'INTENTION ── */
        .lettre-section {
            width: 100%;
            max-width: 1100px;
            margin: 0 auto;
            padding: 80px 40px 120px;
            position: relative;
            z-index: 2;
        }

        .lettre-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .lettre-surtitre {
            font-family: 'Cinzel', serif;
            color: #8a7550;
            font-size: 0.8rem;
            letter-spacing: 6px;
            text-transform: uppercase;
            margin-bottom: 12px;
        }

        .lettre-titre {
            font-family: 'Cinzel Decorative', serif;
            color: #C5A059;
            font-size: clamp(1.6rem, 3.5vw, 2.8rem);
            letter-spacing: 5px;
            text-transform: uppercase;
            text-shadow: 0 0 30px rgba(197,160,89,0.2);
        }

        /* ACCROCHE */
        .lettre-accroche {
            max-width: 780px;
            margin: 0 auto;
            text-align: center;
            border: 1px solid rgba(197,160,89,0.18);
            background: rgba(10,8,6,0.5);
            padding: 48px 56px;
            position: relative;
        }

        .lettre-accroche::before,
        .lettre-accroche::after {
            content: '';
            position: absolute;
            width: 28px; height: 28px;
            border-color: #C5A059;
            border-style: solid;
        }
        .lettre-accroche::before { top: -1px; left: -1px; border-width: 2px 0 0 2px; }
        .lettre-accroche::after  { bottom: -1px; right: -1px; border-width: 0 2px 2px 0; }

        .lettre-accroche p {
            font-family: 'IM Fell English', serif;
            font-size: 1.05rem;
            line-height: 1.9;
            color: #d6ceba;
            margin-bottom: 18px;
            font-style: italic;
        }

        .lettre-accroche p:last-child { margin-bottom: 0; }

        /* COLONNES */
        .lettre-cols {
            display: grid;
            grid-template-columns: 1fr 1px 1fr;
            gap: 0 40px;
            max-width: 1000px;
            margin: 0 auto;
        }

        .lettre-divider {
            background: linear-gradient(to bottom, transparent, rgba(197,160,89,0.4), transparent);
            width: 1px;
        }

        .lettre-col {
            padding: 10px 0;
        }

        .lettre-col-title {
            font-family: 'Cinzel', serif;
            color: #C5A059;
            font-size: 0.9rem;
            letter-spacing: 4px;
            text-transform: uppercase;
            margin-bottom: 18px;
            padding-bottom: 12px;
            border-bottom: 1px solid rgba(197,160,89,0.25);
        }

        .lettre-col-desc {
            font-family: 'IM Fell English', serif;
            font-style: italic;
            font-size: 0.95rem;
            color: #c8bfa8;
            line-height: 1.8;
            margin-bottom: 22px;
        }

        .lettre-list {
            list-style: none;
            margin-bottom: 22px;
        }

        .lettre-list li {
            font-family: 'IM Fell English', serif;
            font-size: 0.9rem;
            color: #b8ae98;
            line-height: 1.7;
            padding: 5px 0 5px 20px;
            border-bottom: 1px solid rgba(197,160,89,0.07);
            position: relative;
        }

        .lettre-list li::before {
            content: '✦';
            position: absolute;
            left: 0;
            color: rgba(197,160,89,0.5);
            font-size: 0.55rem;
            top: 50%;
            transform: translateY(-50%);
        }

        .lettre-note {
            font-family: 'IM Fell English', serif;
            font-size: 0.85rem;
            font-style: italic;
            color: rgba(184,174,152,0.65);
            line-height: 1.75;
            border-left: 2px solid rgba(197,160,89,0.3);
            padding-left: 16px;
        }

        /* INFOS PRATIQUES */
        .lettre-infos {
            max-width: 900px;
            margin: 0 auto;
            border: 1px solid rgba(197,160,89,0.2);
            background: rgba(10,8,6,0.4);
            padding: 48px 48px 40px;
            position: relative;
        }

        .lettre-infos::before,
        .lettre-infos::after {
            content: '';
            position: absolute;
            width: 28px; height: 28px;
            border-color: #C5A059;
            border-style: solid;
        }
        .lettre-infos::before { top: -1px; left: -1px; border-width: 2px 0 0 2px; }
        .lettre-infos::after  { bottom: -1px; right: -1px; border-width: 0 2px 2px 0; }

        .infos-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 2px;
        }

        .info-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            padding: 22px 16px;
            border: 1px solid rgba(197,160,89,0.1);
            background: rgba(22,18,14,0.5);
            transition: border-color 0.3s, background 0.3s;
        }

        .info-item:hover {
            border-color: rgba(197,160,89,0.35);
            background: rgba(30,25,18,0.7);
        }

        .info-icon {
            font-size: 1.4rem;
            margin-bottom: 10px;
            opacity: 0.75;
        }

        .info-label {
            font-family: 'Cinzel', serif;
            font-size: 0.65rem;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: #8a7550;
            margin-bottom: 6px;
        }

        .info-val {
            font-family: 'IM Fell English', serif;
            font-size: 0.95rem;
            color: #d6ceba;
            font-style: italic;
        }

        /* CLOTURE */
        .lettre-cloture {
            max-width: 600px;
            margin: 0 auto;
            text-align: center;
            padding: 60px 20px 0;
        }

        .lettre-cloture p {
            font-family: 'IM Fell English', serif;
            font-style: italic;
            font-size: 1rem;
            color: rgba(200,191,168,0.7);
            line-height: 2;
            margin-bottom: 30px;
        }

        .lettre-cloture-appel {
            font-family: 'Cinzel Decorative', serif !important;
            font-style: normal !important;
            color: #C5A059 !important;
            font-size: 1.15rem !important;
            letter-spacing: 3px;
            text-shadow: 0 0 20px rgba(197,160,89,0.3);
        }