/* ============================================
   JACQMIN V2 — Référence avocat premium
   ============================================ */

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

:root {
    --navy: #1F3955;
    --navy-light: #2C4D6E;
    --navy-dark: #162D45;
    --cream: #F8F7F5;
    --beige: #F0EEEB;
    --beige-dark: #E0DEDB;
    --white: #FFFFFF;
    --gold: #C4A97D;
    --gold-light: #D4BFA0;
    --gold-dark: #A8905F;
    --text-dark: #1F3955;
    --text-body: #4A5D75;
    --text-muted: #8A96A6;
    --font-heading: 'Playfair Display', 'Georgia', serif;
    --font-body: 'Jost', 'Helvetica Neue', sans-serif;
    --header-height: 72px;
    --container-max: 1200px;
    --transition: 0.3s ease;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
    font-family: var(--font-body);
    font-weight: 300;
    color: var(--text-dark);
    background: var(--cream);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color var(--transition); }

.container { max-width: var(--container-max); margin: 0 auto; padding: 0 48px; }

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 500;
    line-height: 1.1;
    color: var(--navy);
    letter-spacing: -0.07em;
}

p { margin-bottom: 1em; }
p:last-child { margin-bottom: 0; }

/* --- HEADER --- */
.header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    background: var(--cream);
    border-bottom: 1px solid var(--beige-dark);
    transition: background var(--transition), box-shadow var(--transition);
}
.header.scrolled { background: rgba(248,247,245,0.97); box-shadow: 0 2px 20px rgba(31,57,85,0.05); }
.header-inner { max-width: var(--container-max); margin: 0 auto; padding: 0 48px; display: flex; align-items: center; justify-content: space-between; height: var(--header-height); }
.logo-img { height: 40px; width: auto; }
.nav-desktop { display: flex; align-items: center; gap: 32px; }
.nav-link { font-size: 0.82rem; font-weight: 400; letter-spacing: 0.06em; text-transform: uppercase; color: var(--text-dark); position: relative; padding: 4px 0; cursor: pointer; }
.nav-link::after { content: ''; position: absolute; bottom: -2px; left: 0; width: 0; height: 1px; background: var(--gold); transition: width var(--transition); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }
.nav-link-cta { background: var(--navy); color: var(--cream) !important; padding: 10px 24px; letter-spacing: 0.08em; font-size: 0.78rem; border-radius: 6px; }
.nav-link-cta::after { display: none; }
.nav-link-cta:hover { background: var(--navy-light); box-shadow: 0 4px 16px rgba(31,57,85,0.15); }
.menu-toggle { display: none; flex-direction: column; justify-content: center; align-items: center; width: 44px; height: 44px; gap: 6px; background: none; border: 1.5px solid var(--navy); border-radius: 10px; cursor: pointer; padding: 8px; }
.menu-bar { display: block; width: 22px; height: 1.5px; background: var(--navy); transition: transform var(--transition), opacity var(--transition); }
.menu-toggle.active .menu-bar:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.menu-toggle.active .menu-bar:nth-child(2) { opacity: 0; }
.menu-toggle.active .menu-bar:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }
.mobile-menu { position: fixed; top: var(--header-height); left: 0; right: 0; bottom: 0; background: var(--cream); z-index: 90; display: flex; flex-direction: column; align-items: center; padding: 0 0 40px; opacity: 0; visibility: hidden; transition: opacity 0.4s, visibility 0.4s; }
.mobile-menu.open { opacity: 1; visibility: visible; }
.mobile-menu-logo { display: none; }
.mobile-nav { display: flex; flex-direction: column; align-items: center; gap: 18px; flex: 1; justify-content: center; }
.mobile-nav-link { font-family: var(--font-body); font-size: 0.85rem; font-weight: 400; letter-spacing: 0.12em; text-transform: uppercase; color: var(--navy); transition: color 0.2s ease; }
.mobile-nav-link:hover { color: var(--gold); }
.mobile-nav-link.active { color: var(--gold); }
.mobile-menu-footer { display: flex; flex-direction: column; align-items: center; gap: 12px; }
.mobile-menu-tel {
    display: inline-flex; align-items: center; gap: 10px;
    font-family: var(--font-body); font-size: 0.85rem; font-weight: 400;
    letter-spacing: 0.08em; color: var(--text-body); text-transform: uppercase;
    padding: 12px 24px; border: 1.5px solid var(--beige-dark); border-radius: 8px;
    transition: all 0.25s ease;
}
.mobile-menu-tel:hover { border-color: var(--gold); color: var(--gold-dark); }
.mobile-menu-tel svg { color: var(--gold); flex-shrink: 0; }

/* --- CHAPTER LABELS --- */
.section-chapter {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 0;
}
.section-chapter::before {
    content: '';
    width: 32px;
    height: 1px;
    background: var(--gold);
    margin-right: 12px;
    flex-shrink: 0;
}
.section-chapter-light { color: var(--gold-light); }
.section-chapter-light::before { background: var(--gold-light); }

.section-title { font-size: 2.4rem; margin-bottom: 32px; }

.section-header-center { text-align: center; margin-bottom: 48px; }
.section-header-center .section-chapter { justify-content: center; }
.section-header-center .section-chapter::before { display: none; }
.section-subtitle { font-size: 0.95rem; color: var(--text-body); max-width: 560px; margin: 0 auto; text-align: center; }

/* --- BUTTONS --- */
.btn-primary {
    display: inline-block; font-family: var(--font-body); font-size: 0.75rem; font-weight: 400;
    letter-spacing: 0.1em; text-transform: uppercase; color: var(--cream);
    background: var(--navy); padding: 12px 28px; border-radius: 6px; cursor: pointer;
    transition: background var(--transition), box-shadow var(--transition);
}
.btn-primary:hover { background: var(--navy-light); box-shadow: 0 4px 16px rgba(31,57,85,0.15); }
.btn-ghost {
    display: inline-block; font-family: var(--font-body); font-size: 0.75rem; font-weight: 400;
    letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-body);
    padding: 12px 0; cursor: pointer; position: relative;
    transition: color var(--transition);
}
.btn-ghost::after {
    content: ''; position: absolute; bottom: 0; left: 0; width: 100%;
    height: 1px; background: var(--gold); transition: width var(--transition);
}
.btn-ghost:hover { color: var(--navy); }
.btn-ghost:hover::after { width: 100%; }

/* ===================================================
   HERO — Split: texte gauche + portrait card droite
   =================================================== */
.hero {
    margin-top: var(--header-height);
    background: var(--cream);
    padding: 80px 0 60px;
}
.hero-inner {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 48px;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 64px;
    align-items: center;
}
.hero-text { max-width: 520px; }
.hero-chapter {
    font-family: var(--font-body); font-size: 0.75rem; font-weight: 400;
    letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold);
    margin-bottom: 24px;
    display: flex; align-items: center; gap: 0;
}
.hero-chapter::before { content: ''; width: 32px; height: 1px; background: var(--gold); margin-right: 12px; }
.hero-logo {
    height: 120px; width: auto; margin-bottom: 28px;
}
.hero-intro { font-size: 0.95rem; color: var(--text-body); line-height: 1.7; margin-bottom: 36px; }
.hero-actions { display: flex; align-items: center; gap: 28px; }

/* Portrait card — rounded, shadow, gold border */
.hero-portrait { display: flex; justify-content: flex-end; }
.hero-portrait-card {
    position: relative; width: 380px; border-radius: 12px; overflow: hidden;
    box-shadow: 0 24px 64px rgba(31,57,85,0.12);
}
.hero-portrait-card::after {
    content: ''; position: absolute; inset: 0; border: 1px solid var(--gold);
    border-radius: 12px; opacity: 0.3; pointer-events: none;
}
.hero-portrait-card img { width: 100%; aspect-ratio: 3/4; object-fit: cover; object-position: center top; }

/* Photo style — rounded, shadow, gold border (all photos) */
.photo-card {
    position: relative; border-radius: 12px; overflow: hidden;
    box-shadow: 0 16px 48px rgba(31,57,85,0.1);
}
.photo-card::after {
    content: ''; position: absolute; inset: 0; border: 1px solid var(--gold);
    border-radius: 12px; opacity: 0.25; pointer-events: none;
}
.photo-card img { width: 100%; object-fit: cover; object-position: center top; }

/* ===================================================
   SECTIONS
   =================================================== */
.section { padding: 88px 0; }

/* --- BIO BLOCK — typographic, centered --- */
.section-bio {
    background: var(--beige);
    padding: 72px 0;
}
/* --- BIO — card arrondie, split titre/texte --- */
.section-bio { background: var(--beige); }
.bio-card {
    display: grid; grid-template-columns: 1fr 2fr; gap: 0;
    background: var(--white); border-radius: 20px; overflow: hidden;
    box-shadow: 0 8px 40px rgba(31,57,85,0.05);
}
.bio-left {
    padding: 56px 48px; background: var(--cream);
    border-right: 1px solid var(--beige-dark);
    display: flex; flex-direction: column; justify-content: center;
}
.bio-left .section-chapter { margin-bottom: 16px; }
.bio-left .section-title { margin-bottom: 8px; white-space: nowrap; }
.bio-role {
    font-family: var(--font-heading); font-size: 1rem; font-weight: 400;
    font-style: italic; color: var(--gold-dark); letter-spacing: -0.02em;
    line-height: 1.4; white-space: nowrap;
}
.bio-right {
    padding: 56px 56px; font-size: 0.95rem; color: var(--text-body); line-height: 1.8;
    display: flex; flex-direction: column; justify-content: center;
}

/* --- PARCOURS --- */
.section-parcours { background: var(--cream); }
.parcours-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 72px; align-items: start; }
.parcours-image img { aspect-ratio: 4/5; }
.parcours-text { color: var(--text-body); font-size: 0.95rem; line-height: 1.8; }
.lettrine {
    float: left; font-family: var(--font-heading); font-size: 4rem; font-weight: 600;
    color: var(--navy); line-height: 0.8; margin-right: 8px; margin-top: 6px;
}
.parcours-bio { margin-top: 24px; padding-top: 24px; border-top: 1px solid var(--beige-dark); }


/* --- EXPERTISES — impactful navy cards --- */
.section-expertises { background: var(--beige); padding: 96px 0; }
.expertises-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.exp-card {
    padding: 40px 28px 32px; background: var(--navy); border-radius: 16px;
    display: flex; flex-direction: column; cursor: pointer;
    position: relative; overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    min-height: 280px;
}
.exp-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 48px rgba(31,57,85,0.2);
}
.exp-num {
    font-family: var(--font-heading); font-size: 3.5rem; font-weight: 300;
    color: rgba(255,255,255,0.08); line-height: 1; margin-bottom: 20px;
    letter-spacing: -0.05em;
    transition: color 0.4s ease;
}
.exp-card:hover .exp-num { color: var(--gold); opacity: 0.4; }
.exp-title {
    font-size: 1.25rem; font-weight: 600; color: var(--beige);
    margin-bottom: 12px; letter-spacing: -0.05em; line-height: 1.25;
}
.exp-desc {
    font-size: 0.82rem; color: rgba(245,240,232,0.5); line-height: 1.7;
    flex-grow: 1; margin-bottom: 24px; text-align: left;
}
.exp-bottom {
    display: flex; align-items: center; justify-content: space-between;
    padding-top: 16px; border-top: 1px solid rgba(245,240,232,0.1);
}
.exp-link {
    font-size: 0.75rem; letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--gold);
}
.exp-arrow {
    color: var(--gold); opacity: 0; transform: translateX(-8px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}
.exp-card:hover .exp-arrow { opacity: 1; transform: translateX(0); }

/* --- CITATION — dark background --- */
.section-quote {
    background: var(--navy-dark);
    padding: 88px 48px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.quote-inner { max-width: 800px; margin: 0 auto; }
.quote-mark {
    font-family: var(--font-heading); font-size: 6rem; font-weight: 700;
    color: var(--gold); line-height: 0.5; margin-bottom: 24px; opacity: 0.4;
}
.quote-text {
    font-family: var(--font-heading); font-size: 1.6rem; font-weight: 400;
    font-style: italic; color: var(--beige); line-height: 1.6; letter-spacing: -0.03em;
}
.quote-author {
    display: flex; flex-direction: column; align-items: center; gap: 12px; margin-top: 36px;
}
.quote-line { width: 40px; height: 1px; background: var(--gold); }
.quote-name {
    font-family: var(--font-body); font-size: 0.8rem; font-weight: 500;
    letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold);
}
.quote-role { font-size: 0.78rem; color: rgba(245,240,232,0.45); font-style: italic; }

/* --- VALEURS (intégrées dans parcours, même fond crème) --- */
.valeurs-row {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
    margin-top: 56px;
}
.valeur {
    padding: 36px 28px; background: var(--white); border-radius: 12px;
    position: relative; overflow: hidden;
    box-shadow: 0 2px 12px rgba(31,57,85,0.04);
}
.valeur::before { display: none; }
.valeur-motif {
    display: flex; align-items: center; width: 40px; margin-bottom: 16px; margin-top: 8px;
}
.valeur-motif::before, .valeur-motif::after {
    content: ''; width: 4px; height: 4px; border-radius: 50%;
    background: var(--gold); flex-shrink: 0;
}
.valeur-motif span { display: block; height: 1px; flex-grow: 1; background: var(--gold); }
.valeur h3 {
    font-size: 1.1rem; font-weight: 600; margin-bottom: 12px; margin-top: 12px;
    letter-spacing: -0.04em; line-height: 1.25;
}
.valeur p { font-size: 0.84rem; color: var(--text-body); line-height: 1.7; }

.key-info { display: flex; align-items: center; justify-content: center; gap: 14px; margin-top: 40px; }
.key-info svg { color: var(--gold); flex-shrink: 0; }
.key-info p { font-family: var(--font-heading); font-size: 1rem; font-style: italic; color: var(--text-body); margin: 0; letter-spacing: -0.02em; }

/* --- LOCATION — split card (photo + infos) --- */
.section-location { background: var(--cream); }
.location-card {
    display: grid; grid-template-columns: 1.2fr 1fr; background: var(--beige);
    border-radius: 16px; overflow: hidden; box-shadow: 0 16px 48px rgba(31,57,85,0.06);
}
.location-card .location-photo { border-radius: 0; box-shadow: none; }
.location-card .location-photo::after { display: none; }
.location-card .location-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 40%; min-height: 360px; }
.location-details { padding: 48px 40px; display: flex; flex-direction: column; justify-content: center; gap: 28px; }
.location-detail { display: flex; align-items: flex-start; gap: 16px; }
.location-icon {
    width: 40px; height: 40px; border-radius: 50%; background: var(--cream);
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
    color: var(--gold);
}
.location-label {
    display: block; font-family: var(--font-body); font-size: 0.72rem; font-weight: 500;
    letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold-dark); margin-bottom: 4px;
}
.location-value { display: block; font-size: 0.9rem; color: var(--text-body); line-height: 1.5; }
a.location-value:hover { color: var(--gold-dark); }

/* --- CONTACT — centré, formulaire en dessous --- */
.section-contact { background: var(--beige); }
.contact-header { max-width: 700px; margin: 0 auto 40px; text-align: center; }
.contact-header .section-chapter { justify-content: center; }
.contact-header .section-chapter::before { display: none; }
.contact-header .section-title { text-align: center; }
.contact-intro { font-size: 0.92rem; color: var(--text-body); line-height: 1.7; margin-bottom: 24px; text-align: center; }
.contact-infos { display: flex; justify-content: center; gap: 32px; }
.contact-info-item { display: flex; align-items: center; gap: 10px; font-size: 0.9rem; color: var(--text-body); }
.contact-info-item svg { color: var(--gold); flex-shrink: 0; }
.contact-info-item a { color: var(--text-body); }
.contact-info-item a:hover { color: var(--gold-dark); }

.contact-form-card {
    background: var(--white); border-radius: 16px; padding: 48px;
    box-shadow: 0 16px 48px rgba(31,57,85,0.06);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 0; }
.form-group:last-child { margin-bottom: 0; }
.form-group label {
    font-family: var(--font-body); font-size: 0.72rem; font-weight: 500;
    letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold-dark);
}
.form-group input,
.form-group select,
.form-group textarea {
    font-family: var(--font-body); font-size: 0.9rem; font-weight: 300;
    color: var(--text-dark); background: var(--beige); border: 1px solid var(--beige-dark);
    border-radius: 8px; padding: 12px 16px; outline: none;
    transition: border-color var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select { appearance: none; cursor: pointer; }
.form-footer { display: flex; align-items: center; gap: 20px; margin-top: 24px; }
.form-note { font-size: 0.8rem; color: var(--text-muted); font-style: italic; }

/* ===================================================
   PAGES INTERIEURES
   =================================================== */

/* --- PAGE HERO --- */
.page-hero {
    margin-top: var(--header-height);
    background: var(--beige);
    padding: 72px 0 56px;
    text-align: center;
}
.page-hero-title {
    font-size: 3rem; margin-bottom: 16px;
}
.page-hero-subtitle {
    font-family: var(--font-heading); font-size: 1.15rem; font-weight: 400;
    font-style: italic; color: var(--gold-dark); letter-spacing: -0.02em;
}
.page-hero .section-chapter { justify-content: center; }
.page-hero .section-chapter::before { display: none; }

/* --- PAGE HERO LIGHT (pages internes — halo lumineux subtil, flat) --- */
.page-hero-light {
    background:
        radial-gradient(ellipse 60% 50% at 50% 45%, rgba(255,255,255,0.4) 0%, transparent 70%),
        var(--cream);
}

/* --- CONTRAT ACCORDEON --- */
.section-contrats { background: var(--beige); padding: 56px 0; }

.contrat-accord {
    background: var(--white);
    border-radius: 12px;
    margin-bottom: 12px;
    box-shadow: 0 2px 12px rgba(31,57,85,0.03);
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}
.contrat-accord:last-of-type { margin-bottom: 0; }
.contrat-accord:hover,
.contrat-accord.open { box-shadow: 0 4px 24px rgba(31,57,85,0.07); }

/* --- Header cliquable --- */
.contrat-accord-head {
    all: unset;
    display: flex;
    align-items: center;
    gap: 20px;
    width: 100%;
    padding: 28px 36px;
    cursor: pointer;
    box-sizing: border-box;
    transition: background 0.2s ease;
}
.contrat-accord-head:hover { background: rgba(248,247,245,0.5); }
.contrat-accord.open .contrat-accord-head { background: var(--navy); }

.contrat-accord-num {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--gold);
    letter-spacing: 0.05em;
    flex-shrink: 0;
    min-width: 28px;
    transition: color 0.3s ease;
}
.contrat-accord.open .contrat-accord-num { color: var(--gold-light); }

.contrat-accord-title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--navy);
    letter-spacing: -0.03em;
    line-height: 1.3;
    margin: 0;
    flex: 1;
    transition: color 0.3s ease;
}
.contrat-accord.open .contrat-accord-title { color: var(--beige); }

/* Icone + / - */
.contrat-accord-icon {
    flex-shrink: 0;
    color: var(--gold);
    transition: transform 0.35s ease, color 0.3s ease;
}
.contrat-accord.open .contrat-accord-icon {
    transform: rotate(45deg);
    color: var(--gold-light);
}

/* --- Contenu deployable --- */
.contrat-accord-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.45s ease;
}
.contrat-accord.open .contrat-accord-body { max-height: 600px; }

.contrat-accord-content {
    padding: 8px 36px 32px 84px;
    font-size: 0.92rem;
    color: var(--text-body);
    line-height: 1.8;
    text-align: left;
    max-width: 780px;
}

/* Bullet points — fins, dorés, bien alignés */
.contrat-list {
    list-style: none;
    margin: 14px 0 0;
    padding: 0;
}

.contrat-list li {
    position: relative;
    padding-left: 18px;
    margin-bottom: 8px;
    font-size: 0.9rem;
    line-height: 1.6;
    text-align: left;
}

.contrat-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 1px;
    background: var(--gold);
}

.contrat-list li:last-child { margin-bottom: 0; }

/* --- DOMAINES GRID (mini-cards avec motif) --- */
.intro-domaines {
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid var(--beige-dark);
}

.intro-domaines-label {
    font-size: 0.92rem;
    color: var(--text-body);
    line-height: 1.8;
    margin-bottom: 20px;
}

.domaines-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.domaine-item {
    padding: 0;
}

.domaine-motif {
    display: flex;
    align-items: center;
    width: 28px;
    margin-bottom: 10px;
}
.domaine-motif::before, .domaine-motif::after {
    content: '';
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: var(--gold);
    flex-shrink: 0;
}
.domaine-motif span {
    display: block;
    height: 1px;
    flex-grow: 1;
    background: var(--gold);
}

.domaine-item p {
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--navy);
    line-height: 1.4;
    margin: 0;
}

/* Variante 3 colonnes (honoraires) */
.valeurs-row-3 { grid-template-columns: repeat(3, 1fr); margin-top: 24px; }

.honoraires-label {
    font-size: 0.92rem;
    color: var(--text-body);
    line-height: 1.8;
    margin-bottom: 0;
}

/* --- CONTACT PAGE --- */
.section-contact-page { background: var(--beige); }

.contact-page-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 48px;
    align-items: start;
}

.contact-page-title {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 500;
    color: var(--navy);
    letter-spacing: -0.04em;
    margin-bottom: 12px;
}

.contact-page-items {
    margin-top: 28px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-page-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}
.contact-page-item svg {
    color: var(--gold);
    flex-shrink: 0;
    margin-top: 2px;
}
.contact-page-item div {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.contact-page-label {
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.contact-page-value {
    font-size: 0.92rem;
    color: var(--navy);
    font-weight: 400;
}
a.contact-page-value:hover { color: var(--gold-dark); }

.contact-page-map {
    margin-top: 40px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(31,57,85,0.06);
}

/* --- TAG LIST (pills horizontales) --- */
.tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
}

.tag {
    display: inline-block;
    padding: 8px 16px;
    font-size: 0.82rem;
    font-weight: 400;
    color: var(--navy);
    background: var(--cream);
    border: 1px solid var(--beige-dark);
    border-radius: 100px;
    line-height: 1.3;
    white-space: nowrap;
}

/* --- DUAL COLUMNS (2 blocs cote a cote) --- */
.dual-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    align-items: stretch;
}

.dual-col {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 16px rgba(31,57,85,0.04);
    display: flex;
    flex-direction: column;
}

.dual-col-head {
    padding: 32px 32px 0;
}

.dual-col-num {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--gold);
    letter-spacing: 0.1em;
    display: block;
    margin-bottom: 8px;
}

.dual-col-title {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 500;
    color: var(--navy);
    line-height: 1.25;
    letter-spacing: -0.04em;
    margin: 0 0 16px;
}

/* Motif ●——● doré sous le titre */
.dual-col-motif {
    display: flex;
    align-items: center;
    width: 48px;
    margin-bottom: 4px;
}
.dual-col-motif::before, .dual-col-motif::after {
    content: '';
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--gold);
    flex-shrink: 0;
}
.dual-col-motif span {
    display: block;
    height: 1px;
    flex-grow: 1;
    background: var(--gold);
}

.dual-col-body {
    padding: 20px 32px 32px;
    font-size: 0.88rem;
    color: var(--text-body);
    line-height: 1.75;
    text-align: left;
    flex: 1;
}
.dual-col-body p { margin-bottom: 8px; }

/* --- CIVIL TJ (split texte gauche + liste droite) --- */
.section-civil-tj { background: var(--beige); padding: 56px 0; }

.civil-tj-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
}

.civil-tj-left .section-title { font-size: 2rem; margin-bottom: 16px; }

.civil-tj-intro {
    font-size: 0.92rem;
    color: var(--text-body);
    line-height: 1.8;
}

.civil-tj-right {
    background: var(--white);
    border-radius: 16px;
    padding: 36px 32px;
    box-shadow: 0 2px 16px rgba(31,57,85,0.04);
}

.civil-tj-list { margin: 0 0 20px; }
.civil-tj-list li { font-size: 0.95rem; margin-bottom: 12px; line-height: 1.6; }

.civil-tj-closing {
    font-size: 0.88rem;
    color: var(--text-body);
    line-height: 1.7;
    padding-top: 16px;
    border-top: 1px solid var(--beige-dark);
}

/* --- CLOSING SECTION --- */
.section-closing { background: var(--beige); padding: 56px 0; }
.closing-grid {
    display: grid; grid-template-columns: 1fr 1.4fr; gap: 64px; align-items: center;
}
.closing-photo img { aspect-ratio: 4/5; object-position: center top; }
.closing-text { font-size: 0.95rem; color: var(--text-body); line-height: 1.8; }
.closing-text .section-title { font-size: 2rem; }

/* Variante paysage (photo rectangulaire) */
.closing-grid-landscape { grid-template-columns: 1.2fr 1fr; align-items: center; }
.closing-photo-landscape img { aspect-ratio: 3/2; object-position: center center; }

/* --- POSTULATION BANNER --- */
.section-postulation-navy {
    background: var(--beige);
    padding: 56px 0;
}

.postul-navy-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.postul-navy-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 500;
    color: var(--navy);
    letter-spacing: -0.05em;
    line-height: 1.15;
    margin-bottom: 16px;
}

.postul-navy-motif {
    display: flex;
    align-items: center;
    width: 48px;
    margin-bottom: 20px;
}
.postul-navy-motif::before, .postul-navy-motif::after {
    content: '';
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--gold);
    flex-shrink: 0;
}
.postul-navy-motif span {
    display: block;
    height: 1px;
    flex-grow: 1;
    background: var(--gold);
}

.postul-navy-intro {
    font-size: 0.92rem;
    color: var(--text-body);
    line-height: 1.8;
}

.postul-navy-label {
    font-size: 0.92rem;
    font-weight: 300;
    color: var(--text-body);
    margin-bottom: 16px;
    line-height: 1.8;
}

.postul-list {
    list-style: none;
    margin: 0;
    padding: 0;
}
.postul-list li {
    position: relative;
    padding-left: 18px;
    margin-bottom: 12px;
    font-size: 0.92rem;
    line-height: 1.6;
    color: var(--text-body);
}
.postul-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 1px;
    background: var(--gold);
}

.postul-navy-forfait {
    margin-top: 36px;
    padding-top: 28px;
    border-top: 1px solid var(--beige-dark);
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
    font-style: italic;
}

/* --- CTA CONTACT --- */
.section-cta-contact { background: var(--cream); }
.section-cta-beige { background: var(--cream); }
.cta-contact-inner {
    text-align: center; max-width: 560px; margin: 0 auto;
}
.cta-contact-inner .section-title { margin-bottom: 16px; }
.cta-contact-inner p {
    font-size: 0.95rem; color: var(--text-body); margin-bottom: 28px; text-align: center;
}

/* Actions CTA : bouton + tel */
.cta-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.btn-ghost-tel {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-body);
    padding: 12px 0;
    cursor: pointer;
    position: relative;
    transition: color var(--transition);
}
.btn-ghost-tel::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--gold);
    transition: width var(--transition);
}
.btn-ghost-tel:hover { color: var(--navy); }
.btn-ghost-tel svg {
    flex-shrink: 0;
    color: var(--gold);
    width: 18px;
    height: 18px;
}

/* --- FOOTER MINIMAL --- */
.footer-min { background: var(--navy-dark); padding: 20px 0; }
.footer-min-inner { display: flex; align-items: center; justify-content: space-between; font-size: 0.75rem; color: rgba(245,240,232,0.4); }
.footer-min-center { display: flex; flex-direction: column; align-items: center; gap: 6px; flex: 1; }
.footer-min-nav { display: flex; gap: 12px; align-items: center; font-size: 0.78rem; }
.footer-min-nav a { color: rgba(245,240,232,0.6); cursor: pointer; }
.footer-min-nav a:hover { color: var(--gold); }
.footer-min-nav span { color: rgba(245,240,232,0.2); }
.footer-min-logo { height: 28px; filter: brightness(0) invert(1); opacity: 0.6; flex-shrink: 0; }
.footer-min-links { display: flex; gap: 16px; flex-shrink: 0; }
.footer-min-links a { color: rgba(245,240,232,0.4); cursor: pointer; }
.footer-min-links a:hover { color: var(--gold); }

/* --- ANIMATIONS --- */
.fade-in { opacity: 0; transform: translateY(30px); transition: opacity 0.8s, transform 0.8s; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
    .container { padding: 0 32px; }
    .header-inner { padding: 0 32px; }
    .nav-desktop { display: none; }
    .menu-toggle { display: flex; }
    .hero-inner { grid-template-columns: 1fr; gap: 48px; padding: 0 32px; }
    .hero-logo { height: 100px; }
    .hero-portrait-card { width: 320px; margin: 0 auto; }
    .bio-card { grid-template-columns: 1fr; }
    .bio-left { padding: 40px 32px; border-right: none; border-bottom: 1px solid var(--beige-dark); }
    .bio-right { padding: 40px 32px; }
    .parcours-grid { grid-template-columns: 1fr; gap: 48px; }
    .valeurs-row { grid-template-columns: 1fr 1fr; }
    .closing-grid { grid-template-columns: 1fr; gap: 48px; }
    .contrat-accord-head { padding: 24px 28px; }
    .contrat-accord-content { padding: 8px 28px 28px 72px; }
    .dual-cols { gap: 20px; }
    .dual-col-head { padding: 24px 24px 0; }
    .dual-col-body { padding: 16px 24px 28px; }
    .civil-tj-grid { gap: 40px; }
    .closing-grid-landscape { grid-template-columns: 1fr 1fr; }
    .domaines-grid { grid-template-columns: repeat(3, 1fr); }
    .contact-page-grid { grid-template-columns: 1fr; gap: 40px; }
    .postul-navy-inner { gap: 36px; }
}

@media (max-width: 768px) {
    .hero { padding: 36px 0 32px; text-align: center; }
    .hero-chapter { justify-content: center; }
    .hero-chapter::before { display: none; }
    .hero-logo { height: auto; width: 80%; max-width: 280px; margin: 0 auto 36px; }
    .hero-portrait-card { width: 100%; max-width: 100%; margin: 0 auto; }
    .hero-portrait-card img { border-radius: 12px; }
    .hero-subtitle { font-size: 0.85rem; }
    .hero-intro { text-align: center; }
    .hero-actions { flex-direction: row; justify-content: center; gap: 12px; }
    .hero-actions .btn-primary,
    .hero-actions .btn-ghost { font-size: 0.7rem; padding: 10px 18px; }
    .section { padding: 64px 0; }
    .section-title { font-size: 2rem; }
    .expertises-grid { grid-template-columns: 1fr; }
    .exp-card { min-height: 180px; }
    .valeurs-row { grid-template-columns: 1fr; }
    .location-card { grid-template-columns: 1fr; }
    .location-card .location-photo img { min-height: 240px; }
    .contact-infos { flex-direction: column; gap: 16px; }
    .form-row { grid-template-columns: 1fr; }
    .quote-text { font-size: 1.2rem; }
    .footer-min-inner { flex-direction: column; gap: 8px; text-align: center; }
    .key-info { flex-direction: column; text-align: center; }
    .page-hero-title { font-size: 2.2rem; }
    .contrat-accord-head { padding: 20px 20px; gap: 14px; }
    .contrat-accord-title { font-size: 1.05rem; }
    .contrat-accord-content { padding: 4px 20px 24px 20px; }
    .dual-cols { grid-template-columns: 1fr; gap: 16px; }
    .civil-tj-grid { grid-template-columns: 1fr; gap: 32px; }
    .closing-grid-landscape { grid-template-columns: 1fr; }
    .domaines-grid { grid-template-columns: repeat(2, 1fr); }
    .valeurs-row-3 { grid-template-columns: 1fr; }
    .contact-page-grid { grid-template-columns: 1fr; gap: 32px; }
    .postul-navy-inner { grid-template-columns: 1fr; gap: 24px; }
    .postul-navy-title { font-size: 1.6rem; }
    .closing-grid { grid-template-columns: 1fr; gap: 32px; }
    .closing-photo { max-width: 100%; }
}

@media (max-width: 480px) {
    .hero-logo { height: 64px; }
    .hero-portrait-card { width: 100%; }
    .citation-text { font-size: 1.2rem; }
    .location-title { font-size: 2rem; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .fade-in { opacity: 1; transform: none; transition: none; }
}
