/* ==========================================================
   ÉTUDE DAMIEN BOURDON — Notaire à Paris
   Esthétique : classicisme français, sobre, papier crème,
   bleu nuit, or vieilli. Typographie : Cormorant + Manrope.
   ========================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&family=Manrope:wght@300;400;500;600&display=swap');

:root {
    --navy:        #0A1F3D;
    --navy-deep:   #061429;
    --navy-soft:   #1A2847;
    --gold:        #B8923D;
    --gold-light:  #D4B36A;
    --gold-dark:   #8E6E25;
    --cream:       #F5F1E8;
    --cream-dark:  #EAE3D2;
    --paper:       #FBF8F1;
    --ink:         #1A1A1A;
    --ink-soft:    #3A3A3A;
    --rule:        rgba(184, 146, 61, 0.25);
}

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

html { scroll-behavior: smooth; }

body {
    font-family: 'Manrope', sans-serif;
    font-weight: 300;
    color: var(--ink);
    background: var(--paper);
    line-height: 1.7;
    font-size: 16px;
    overflow-x: hidden;
}

/* Texture papier discrète */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    opacity: 0.4;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(184,146,61,0.04) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(10,31,61,0.03) 0%, transparent 40%);
}

h1, h2, h3, h4, h5 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    color: var(--navy);
    letter-spacing: -0.01em;
    line-height: 1.15;
}

a { color: inherit; text-decoration: none; transition: color 0.3s ease; }

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

/* ========== BARRE INFO TOP ========== */
.topbar {
    background: var(--navy);
    color: var(--cream);
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    padding: 0.6rem 0;
    position: relative;
    z-index: 10;
}
.topbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.topbar .info { display: flex; gap: 2rem; }
.topbar .info span { display: inline-flex; align-items: center; gap: 0.5rem; }
.topbar .info svg { width: 12px; height: 12px; opacity: 0.7; }
.topbar a:hover { color: var(--gold-light); }

/* ========== HEADER ========== */
header {
    background: var(--paper);
    border-bottom: 1px solid var(--rule);
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(12px);
    background: rgba(251, 248, 241, 0.92);
}
header .container {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 3rem;
    padding-top: 1.2rem;
    padding-bottom: 1.2rem;
}
.brand {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}
.brand-logo { width: 64px; height: 64px; flex-shrink: 0; }
.brand-logo-officiel {
    width: 70px;
    height: 70px;
    object-fit: contain;
    flex-shrink: 0;
}
.brand-divider {
    width: 1px;
    height: 48px;
    background: var(--rule);
    flex-shrink: 0;
}
.brand-text { display: flex; flex-direction: column; }
.brand-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.7rem;
    font-weight: 500;
    color: var(--navy);
    letter-spacing: 0.02em;
    line-height: 1.1;
}
.brand-sub {
    font-size: 0.68rem;
    letter-spacing: 0.28em;
    color: var(--gold-dark);
    text-transform: uppercase;
    margin-top: 0.4rem;
    font-weight: 500;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: flex-end;
    gap: 2.5rem;
    align-items: center;
}
nav a {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--ink-soft);
    font-weight: 500;
    position: relative;
    padding: 0.3rem 0;
}
nav a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.4s ease;
}
nav a:hover { color: var(--navy); }
nav a:hover::after { width: 100%; }

.btn-rdv {
    background: var(--navy) !important;
    color: var(--cream) !important;
    padding: 0.85rem 1.6rem !important;
    border: 1px solid var(--navy);
    transition: all 0.3s ease;
}
.btn-rdv:hover {
    background: transparent !important;
    color: var(--navy) !important;
}
.btn-rdv::after { display: none; }

/* ========== HERO ========== */
.hero {
    position: relative;
    min-height: 88vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center bottom;
}
.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        100deg,
        rgba(251,248,241,0.96) 0%,
        rgba(251,248,241,0.85) 35%,
        rgba(251,248,241,0.4) 65%,
        rgba(251,248,241,0.1) 100%
    );
}
.hero .container { position: relative; z-index: 2; padding: 6rem 2rem; }
.hero-content { max-width: 640px; }

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.72rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--gold-dark);
    font-weight: 500;
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeUp 1s ease 0.2s forwards;
}
.hero-eyebrow::before {
    content: '';
    width: 50px;
    height: 1px;
    background: var(--gold);
}

.hero h1 {
    font-size: clamp(2.8rem, 6vw, 5.2rem);
    font-weight: 300;
    color: var(--navy);
    margin-bottom: 1.8rem;
    line-height: 1.05;
    opacity: 0;
    animation: fadeUp 1s ease 0.4s forwards;
}
.hero h1 em {
    font-style: italic;
    color: var(--gold-dark);
    font-weight: 400;
}

.hero p.lead {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.35rem;
    font-weight: 300;
    color: var(--ink-soft);
    line-height: 1.55;
    margin-bottom: 2.8rem;
    max-width: 540px;
    opacity: 0;
    animation: fadeUp 1s ease 0.6s forwards;
}

.hero-cta {
    display: flex;
    gap: 1.2rem;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeUp 1s ease 0.8s forwards;
}
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    padding: 1.1rem 2rem;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-weight: 500;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: none;
    font-family: 'Manrope', sans-serif;
}
.btn-primary {
    background: var(--navy);
    color: var(--cream);
    border: 1px solid var(--navy);
}
.btn-primary:hover {
    background: var(--gold-dark);
    border-color: var(--gold-dark);
    transform: translateY(-2px);
}
.btn-outline {
    background: transparent;
    color: var(--navy);
    border: 1px solid var(--navy);
}
.btn-outline:hover {
    background: var(--navy);
    color: var(--cream);
}

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

/* ========== SECTIONS ========== */
section { padding: 7rem 0; position: relative; z-index: 2; }

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}
.section-eyebrow {
    display: inline-block;
    font-size: 0.72rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--gold-dark);
    font-weight: 500;
    margin-bottom: 1.5rem;
}
.section-eyebrow::before,
.section-eyebrow::after {
    content: '— ';
    color: var(--gold);
}
.section-eyebrow::after { content: ' —'; }
.section-header h2 {
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    font-weight: 300;
    margin-bottom: 1.2rem;
}
.section-header h2 em { font-style: italic; color: var(--gold-dark); }
.section-header p {
    max-width: 620px;
    margin: 0 auto;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    color: var(--ink-soft);
    font-style: italic;
}

/* ========== CABINET (à propos) ========== */
.cabinet {
    background: linear-gradient(180deg, var(--paper) 0%, var(--cream) 100%);
    border-top: 1px solid var(--rule);
    border-bottom: 1px solid var(--rule);
}
.cabinet-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}
.cabinet-text .section-eyebrow { margin-bottom: 1.5rem; }
.cabinet-text h2 {
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 300;
    margin-bottom: 2rem;
    line-height: 1.1;
}
.cabinet-text h2 em { font-style: italic; color: var(--gold-dark); }
.cabinet-text p {
    margin-bottom: 1.4rem;
    color: var(--ink-soft);
    font-size: 1rem;
}
.cabinet-text p.lead {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    color: var(--navy);
    line-height: 1.5;
    font-weight: 400;
    border-left: 2px solid var(--gold);
    padding-left: 1.5rem;
    margin-bottom: 2rem;
}

.cabinet-image {
    position: relative;
    aspect-ratio: 4/3;
    box-shadow:
        0 30px 60px -15px rgba(10,31,61,0.25),
        0 0 0 1px var(--rule);
}
.cabinet-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.cabinet-image::before {
    content: '';
    position: absolute;
    top: 20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 1px solid var(--gold);
    z-index: -1;
}
.cabinet-caption {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    background: rgba(10, 31, 61, 0.92);
    color: var(--cream);
    padding: 0.8rem 1.4rem;
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 0.95rem;
    letter-spacing: 0.04em;
}

/* ========== DOMAINES D'EXPERTISE ========== */
.expertise { background: var(--paper); }
.expertise-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--rule);
    border: 1px solid var(--rule);
}
.expertise-card {
    background: var(--paper);
    padding: 3rem 2.5rem;
    transition: all 0.4s ease;
    position: relative;
    cursor: default;
}
.expertise-card:hover {
    background: var(--navy);
    color: var(--cream);
}
.expertise-card:hover h3,
.expertise-card:hover p,
.expertise-card:hover .expertise-num { color: var(--cream); }
.expertise-card:hover .expertise-icon { stroke: var(--gold-light); }

.expertise-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.9rem;
    color: var(--gold-dark);
    letter-spacing: 0.2em;
    margin-bottom: 1.5rem;
    transition: color 0.4s ease;
}
.expertise-icon {
    width: 44px;
    height: 44px;
    stroke: var(--navy);
    stroke-width: 1;
    fill: none;
    margin-bottom: 1.8rem;
    transition: stroke 0.4s ease;
}
.expertise-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    font-weight: 500;
    transition: color 0.4s ease;
}
.expertise-card p {
    font-size: 0.92rem;
    color: var(--ink-soft);
    line-height: 1.7;
    transition: color 0.4s ease;
}

/* ========== CITATION / INTERMÈDE ========== */
.intermede {
    background: var(--navy);
    color: var(--cream);
    padding: 6rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.intermede::before, .intermede::after {
    content: '';
    position: absolute;
    width: 200px; height: 200px;
    border: 1px solid var(--gold);
    opacity: 0.15;
    border-radius: 50%;
}
.intermede::before { top: -100px; left: -100px; }
.intermede::after { bottom: -100px; right: -100px; width: 300px; height: 300px; }

.intermede blockquote {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-style: italic;
    font-weight: 300;
    line-height: 1.4;
    max-width: 800px;
    margin: 0 auto;
    color: var(--cream);
    position: relative;
    z-index: 2;
}
.intermede blockquote::before {
    content: '"';
    font-size: 5rem;
    color: var(--gold);
    line-height: 0;
    position: relative;
    top: 0.4rem;
    font-family: 'Cormorant Garamond', serif;
}
.intermede cite {
    display: block;
    font-style: normal;
    font-family: 'Manrope', sans-serif;
    font-size: 0.78rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    margin-top: 2.5rem;
    color: var(--gold-light);
    font-weight: 500;
}

/* ========== HORAIRES & CONTACT ========== */
.contact-section {
    background: linear-gradient(180deg, var(--cream) 0%, var(--paper) 100%);
    border-top: 1px solid var(--rule);
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
    align-items: start;
}
.contact-info h3 {
    font-size: 1.8rem;
    margin-bottom: 0.4rem;
}
.contact-info > p {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 1.1rem;
    color: var(--ink-soft);
    margin-bottom: 2.5rem;
}
.info-block {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--rule);
}
.info-block:last-child { border-bottom: none; }
.info-label {
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold-dark);
    font-weight: 500;
    margin-bottom: 0.6rem;
}
.info-value {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    color: var(--navy);
    line-height: 1.4;
}
.info-value a { color: var(--navy); border-bottom: 1px solid var(--gold); padding-bottom: 1px; }
.info-value a:hover { color: var(--gold-dark); }

.horaires-list { list-style: none; }
.horaires-list li {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    font-size: 0.95rem;
    border-bottom: 1px dotted var(--rule);
}
.horaires-list li:last-child { border-bottom: none; }
.horaires-list .jour { color: var(--navy); font-weight: 500; }
.horaires-list .heures { color: var(--ink-soft); font-family: 'Cormorant Garamond', serif; font-size: 1.05rem; }

/* Formulaire */
.contact-form {
    background: var(--paper);
    padding: 3rem;
    box-shadow:
        0 20px 60px -20px rgba(10,31,61,0.15),
        0 0 0 1px var(--rule);
    position: relative;
}
.contact-form::before {
    content: '';
    position: absolute;
    top: 12px; left: 12px; right: 12px; bottom: 12px;
    border: 1px solid var(--rule);
    pointer-events: none;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.form-group { margin-bottom: 1.5rem; }
.form-group label {
    display: block;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold-dark);
    margin-bottom: 0.5rem;
    font-weight: 500;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.85rem 0;
    border: none;
    border-bottom: 1px solid var(--rule);
    background: transparent;
    font-family: 'Manrope', sans-serif;
    font-size: 1rem;
    color: var(--ink);
    transition: border-color 0.3s ease;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-bottom-color: var(--navy);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-group select { appearance: none; cursor: pointer; }

.form-message {
    padding: 1rem 1.4rem;
    margin-bottom: 1.5rem;
    border-left: 3px solid var(--gold);
    background: var(--cream);
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.05rem;
    color: var(--navy);
}
.form-message.error { border-left-color: #B33A3A; }

/* ========== FOOTER ========== */
footer {
    background: var(--navy-deep);
    color: var(--cream);
    padding: 4rem 0 2rem;
    position: relative;
    z-index: 2;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}
.footer-brand {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--cream);
}
.footer-grid p, .footer-grid li, .footer-grid a {
    font-size: 0.88rem;
    color: rgba(245,241,232,0.7);
    line-height: 1.8;
}
.footer-grid h5 {
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 1.2rem;
    font-weight: 500;
    font-family: 'Manrope', sans-serif;
}
.footer-grid ul { list-style: none; }
.footer-grid a:hover { color: var(--gold-light); }
.footer-bottom {
    border-top: 1px solid rgba(184,146,61,0.2);
    padding-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    font-size: 0.78rem;
    color: rgba(245,241,232,0.5);
}

/* ========== CASE À COCHER RGPD ========== */
.form-checkbox { margin-bottom: 1.5rem; }
.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    cursor: pointer;
    font-size: 0.85rem;
    color: var(--ink-soft);
    line-height: 1.5;
}
.checkbox-label input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    border: 1px solid var(--rule);
    background: var(--paper);
    cursor: pointer;
    flex-shrink: 0;
    margin-top: 2px;
    position: relative;
    transition: all 0.3s ease;
}
.checkbox-label input[type="checkbox"]:checked {
    background: var(--navy);
    border-color: var(--navy);
}
.checkbox-label input[type="checkbox"]:checked::after {
    content: '';
    position: absolute;
    left: 5px;
    top: 1px;
    width: 5px;
    height: 10px;
    border: solid var(--gold-light);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}
.checkbox-label input[type="checkbox"]:focus {
    outline: 2px solid var(--gold);
    outline-offset: 2px;
}

/* ========== PAGE MENTIONS LÉGALES ========== */
.legal-hero {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
    color: var(--cream);
    padding: 6rem 0 4rem;
    position: relative;
    z-index: 2;
    text-align: center;
    overflow: hidden;
}
.legal-hero::before {
    content: '';
    position: absolute;
    width: 400px; height: 400px;
    border: 1px solid var(--gold);
    border-radius: 50%;
    opacity: 0.08;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
}
.legal-hero .section-eyebrow { color: var(--gold-light); }
.legal-hero .section-eyebrow::before,
.legal-hero .section-eyebrow::after { color: var(--gold); }
.legal-hero h1 {
    font-size: clamp(2.4rem, 5vw, 4rem);
    font-weight: 300;
    color: var(--cream);
    margin: 1.2rem auto 1.5rem;
    line-height: 1.1;
    max-width: 800px;
}
.legal-hero h1 em {
    font-style: italic;
    color: var(--gold-light);
    font-weight: 400;
}
.legal-hero p {
    max-width: 680px;
    margin: 0 auto;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    color: rgba(245,241,232,0.85);
    font-style: italic;
    line-height: 1.6;
}

.legal-page {
    padding: 5rem 0;
    background: var(--paper);
    position: relative;
    z-index: 2;
}
.legal-page .container {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 4rem;
    align-items: start;
}

/* Sommaire */
.legal-toc {
    position: sticky;
    top: 110px;
    padding: 2rem 1.8rem;
    background: var(--cream);
    border-left: 2px solid var(--gold);
}
.legal-toc h3 {
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold-dark);
    margin-bottom: 1.2rem;
    font-family: 'Manrope', sans-serif;
    font-weight: 500;
}
.legal-toc ol {
    list-style: none;
    counter-reset: toc;
}
.legal-toc li {
    counter-increment: toc;
    margin-bottom: 0.7rem;
    font-size: 0.88rem;
    line-height: 1.4;
    position: relative;
    padding-left: 1.8rem;
}
.legal-toc li::before {
    content: counter(toc, upper-roman) '.';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--gold-dark);
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.95rem;
    font-weight: 500;
}
.legal-toc a {
    color: var(--ink-soft);
    transition: color 0.3s ease;
}
.legal-toc a:hover { color: var(--navy); }

/* Contenu */
.legal-content { max-width: 760px; }
.legal-section {
    margin-bottom: 4rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid var(--rule);
    position: relative;
}
.legal-section:last-child { border-bottom: none; }

.legal-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.95rem;
    color: var(--gold-dark);
    letter-spacing: 0.25em;
    display: block;
    margin-bottom: 0.6rem;
}
.legal-section h2 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 400;
    color: var(--navy);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}
.legal-section h3 {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--navy);
    margin: 2rem 0 0.8rem;
    font-family: 'Cormorant Garamond', serif;
}
.legal-section p {
    margin-bottom: 1rem;
    color: var(--ink-soft);
    font-size: 0.96rem;
    line-height: 1.75;
}
.legal-section ul {
    list-style: none;
    margin: 1rem 0 1.5rem;
    padding-left: 0;
}
.legal-section ul li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.6rem;
    color: var(--ink-soft);
    font-size: 0.95rem;
    line-height: 1.7;
}
.legal-section ul li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: 400;
}
.legal-section a {
    color: var(--navy);
    border-bottom: 1px solid var(--gold);
    transition: color 0.3s ease;
}
.legal-section a:hover { color: var(--gold-dark); }
.legal-section strong { color: var(--navy); font-weight: 600; }

.legal-intro {
    font-family: 'Cormorant Garamond', serif !important;
    font-size: 1.15rem !important;
    font-style: italic;
    color: var(--navy) !important;
    border-left: 2px solid var(--gold);
    padding-left: 1.5rem;
    margin-bottom: 2rem !important;
    line-height: 1.6 !important;
}

.legal-block {
    background: var(--cream);
    padding: 1.5rem;
    border-left: 2px solid var(--gold);
    font-size: 0.95rem !important;
    line-height: 1.7 !important;
}

.legal-mise-a-jour {
    font-style: italic;
    font-family: 'Cormorant Garamond', serif !important;
    color: var(--gold-dark) !important;
    font-size: 1.05rem !important;
    margin-top: 2rem !important;
    padding-top: 1rem;
    border-top: 1px dotted var(--rule);
}

/* Liste de définitions (éditeur, hébergeur) */
.legal-dl {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 0.8rem 2rem;
    margin: 1.5rem 0;
    padding: 1.8rem;
    background: var(--cream);
    border-left: 2px solid var(--gold);
}
.legal-dl dt {
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold-dark);
    font-weight: 500;
    padding-top: 0.2rem;
}
.legal-dl dd {
    font-size: 0.96rem;
    color: var(--navy);
    line-height: 1.6;
    margin: 0;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 960px) {
    nav ul { gap: 1.2rem; }
    nav a { font-size: 0.7rem; letter-spacing: 0.12em; }
    .cabinet-grid, .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
    .expertise-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .topbar .info { gap: 1rem; font-size: 0.7rem; }
    .legal-page .container { grid-template-columns: 1fr; gap: 2.5rem; }
    .legal-toc { position: static; }
    .legal-dl { grid-template-columns: 1fr; gap: 0.3rem; padding: 1.5rem; }
    .legal-dl dt { padding-top: 1rem; }
    .legal-dl dt:first-of-type { padding-top: 0; }
}
@media (max-width: 640px) {
    section { padding: 4rem 0; }
    header .container { grid-template-columns: 1fr; gap: 1.5rem; }
    .brand { justify-content: center; }
    .brand-logo-officiel { width: 56px; height: 56px; }
    .brand-divider { height: 42px; }
    .brand-name { font-size: 1.4rem; }
    nav ul { justify-content: center; flex-wrap: wrap; }
    .topbar .container { flex-direction: column; gap: 0.4rem; }
    .expertise-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
    .contact-form { padding: 2rem 1.5rem; }
    .cabinet-image::before { display: none; }
}
