/* ========== VARIABLES ========== */
:root {
    --navy: #1a2332;
    --gold: #e5a91a;
    --gold-hover: #c8962e;
    --gold-light: #f5e6c4;
    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-300: #cbd5e1;
    --gray-400: #94a3b8;
    --gray-500: #6b7280;
    --gray-600: #5a6577;
    --gray-800: #2d3748;
    --white: #ffffff;
    --navy-dark: #0f1720;
    --navy-hover: #334155;
    --border: #e2e8f0;
    --beige: #faf6ef;
    --beige-border: #e5ddd0;
    --warm-brown: #8b7355;
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--gray-800);
    line-height: 1.6;
    background: var(--white);
}

a { color: var(--navy); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--gold-hover); }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 6%;
}

/* ========== BUTTONS ========== */
.btn {
    display: inline-block;
    padding: 0.7rem 1.5rem;
    background: var(--navy);
    color: var(--white);
    text-decoration: none;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.2s;
    border: none;
    cursor: pointer;
}
.btn:hover { background: var(--navy-hover); transform: translateY(-1px); color: var(--white); }

.btn-outline {
    background: transparent;
    color: var(--navy);
    border: 1.5px solid var(--navy);
}
.btn-outline:hover { background: var(--navy); color: var(--gold); }

.btn-gold {
    background: var(--gold);
    color: var(--navy);
    font-weight: 600;
}
.btn-gold:hover { background: var(--gold-hover); color: var(--navy); }

.btn-lg {
    font-size: 1rem;
    padding: 0.9rem 2rem;
}

/* ========== NAVIGATION ========== */
.site-header {
    position: sticky;
    top: 0;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    z-index: 100;
    border-bottom: 1px solid rgba(226,232,240,0.5);
}
.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.2rem;
    padding-bottom: 1.2rem;
}

/* Logo — plus foncé et plus grand */
.site-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}
.site-logo .logo-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 500;
    color: var(--navy-dark);
    line-height: 1;
    display: inline-flex;
    align-items: baseline;
}
.site-logo .logo-dash {
    color: var(--navy-dark);
    margin: 0 0.02em;
    font-size: 0.85em;
}
.site-logo .logo-s {
    color: var(--gold);
    font-weight: 600;
}
.site-logo .logo-star {
    display: inline-block;
    position: relative;
    top: -0.55em;
    margin-left: 2px;
    width: 9px;
    height: 9px;
    max-width: 9px;
    max-height: 9px;
    overflow: hidden;
}
.site-logo .logo-star svg {
    display: block;
    width: 9px !important;
    height: 9px !important;
    fill: var(--gold);
}
.site-logo .logo-tagline {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.85rem;
    color: var(--navy);
    letter-spacing: 1.2px;
    font-style: italic;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0;
    margin-top: 2px;
}
.site-logo .logo-tagline .logo-star {
    top: 0;
    width: 5px; height: 5px;
    max-width: 5px; max-height: 5px;
    margin-right: 2px; margin-left: 0;
}
.site-logo .logo-tagline .logo-star svg {
    width: 5px !important; height: 5px !important;
    max-width: 5px; max-height: 5px;
    opacity: 0.5;
}

/* Primary menu */
.primary-menu {
    display: flex;
    gap: 2rem;
    list-style: none;
    align-items: center;
}
.primary-menu li a {
    text-decoration: none;
    color: var(--gray-600);
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.2s;
    padding: 0.4rem 0;
    border-bottom: 2px solid transparent;
}
.primary-menu li a:hover {
    color: var(--gold);
    border-bottom-color: var(--gold);
}
.primary-menu li a.active {
    color: var(--navy);
    border-bottom-color: var(--navy);
    font-weight: 600;
}

/* Dropdown menu */
.has-dropdown { position: relative; }
.dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: -0.5rem;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 0.5rem 0;
    min-width: 220px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    list-style: none;
    z-index: 200;
}
.has-dropdown:hover .dropdown { display: block; }
.dropdown li { padding: 0; }
.dropdown li a {
    display: block;
    padding: 0.5rem 1.2rem;
    font-size: 0.85rem !important;
    color: var(--gray-600) !important;
    transition: background 0.2s, color 0.2s;
}
.dropdown li a:hover {
    background: transparent;
    color: var(--gold) !important;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--navy);
    cursor: pointer;
    padding: 0.5rem;
}

/* ========== HERO ========== */
.hero {
    padding: 5rem 0 4rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.6rem;
    line-height: 1.15;
    color: var(--navy);
    margin-bottom: 1.2rem;
}
.hero p {
    font-size: 0.95rem;
    color: var(--gray-600);
    margin-bottom: 2rem;
    line-height: 1.7;
}
.hero-buttons { display: flex; gap: 1rem; }
.hero-quote {
    border-left: none;
    border-radius: 12px;
    padding: 2.5rem 2rem;
    max-width: 400px;
    position: relative;
    background: var(--white);
    border: 2px solid var(--gray-300);
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}
.hero-quote::before {
    content: '\201C';
    font-family: 'Cormorant Garamond', serif;
    font-size: 5rem;
    color: var(--gold);
    opacity: 0.25;
    position: absolute;
    top: -0.2rem;
    left: 1rem;
    line-height: 1;
}
.hero-quote p {
    font-size: 0.95rem;
    font-style: italic;
    margin-bottom: 0.8rem;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}
.hero-quote cite {
    font-size: 0.8rem;
    font-style: normal;
    font-weight: 500;
}

/* ========== STATS BAR ========== */
.stats-bar {
    background: var(--navy);
    padding: 2.5rem 0;
}
.stats-inner {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    text-align: center;
}
.stat h3 {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 0.3rem;
    letter-spacing: -0.5px;
}
.stat p {
    color: rgba(255,255,255,0.7);
    font-size: 0.85rem;
}

/* ========== SECTIONS ========== */
.section { padding: 5rem 0; }
.section-alt { background: var(--gray-50); }
.section-title { text-align: center; margin-bottom: 3rem; }
.section-title h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    color: var(--navy);
    margin-bottom: 0.5rem;
}
.section-title p { color: var(--gray-500); font-size: 1rem; }

/* ========== SERVICE CARDS ========== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
.service-card {
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 2.5rem 2rem;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    background: var(--white);
}
.service-card:hover {
    border-color: var(--gold);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}
.service-card.featured {
    border-color: var(--gold);
    border-width: 2px;
}
.service-card.featured::before {
    content: '★ Spécialité';
    position: absolute;
    top: 0; right: 0;
    background: var(--gold);
    color: var(--navy);
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.3rem 1rem;
    border-radius: 0 10px 0 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.service-icon {
    width: 48px; height: 48px;
    background: var(--gold-light);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 1.2rem;
    font-size: 1.4rem;
}

/* Service header: icon + title on same line */
.service-header {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 0.6rem;
}
.service-icon-inline {
    width: 40px; height: 40px;
    background: var(--gold-light);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}
.service-header h3 {
    font-size: 1.2rem; font-weight: 600;
    color: var(--navy); margin: 0;
}
.service-card h3 {
    font-size: 1.2rem; font-weight: 600;
    margin-bottom: 0.6rem; color: var(--navy);
}
.service-card > p {
    font-size: 0.9rem; color: var(--gray-500);
    margin-bottom: 1.2rem; line-height: 1.6;
}
.service-price {
    font-size: 1.5rem; font-weight: 600;
    color: var(--gold); margin-bottom: 0.3rem;
}
.service-price-detail {
    font-size: 0.8rem; color: var(--gray-400);
}
.service-card ul {
    list-style: none;
    margin-top: 1rem; padding-top: 1rem;
    border-top: 1px solid var(--gray-100);
}
.service-card ul li {
    font-size: 0.85rem; color: var(--gray-600);
    padding: 0.25rem 0;
}
.service-card ul li::before {
    content: '✓ '; color: var(--gold); font-weight: 600;
}

/* Clickable cards */
a.clickable-card {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    cursor: pointer;
}
a.clickable-card:hover {
    color: inherit;
}
.card-link {
    display: block;
    margin-top: auto;
    padding-top: 1.2rem;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--gold);
    transition: color 0.2s;
    text-align: right;
}
a.clickable-card:hover .card-link {
    color: var(--gold-hover);
}

/* ========== FAQ ========== */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
    border: 1px solid var(--border);
    border-radius: 10px;
    margin-bottom: 1rem;
    overflow: hidden;
    background: var(--white);
}
.faq-question {
    width: 100%; text-align: left;
    padding: 1.3rem 1.5rem;
    background: none; border: none;
    font-size: 1rem; font-weight: 600;
    color: var(--navy); cursor: pointer;
    display: flex; justify-content: space-between; align-items: center;
    transition: background 0.2s;
    font-family: inherit;
}
.faq-question:hover { background: var(--gray-50); }
.faq-question::after {
    content: '+'; font-size: 1.3rem;
    color: var(--gold); transition: transform 0.3s;
    flex-shrink: 0; margin-left: 1rem;
}
.faq-item.active .faq-question::after { content: '−'; }
.faq-answer {
    display: none;
    padding: 0 1.5rem 1.3rem;
    font-size: 0.9rem; color: var(--gray-600);
    line-height: 1.7;
}
.faq-item.active .faq-answer { display: block; }

/* ========== WHY CARDS ========== */
.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}
.why-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid var(--border);
    transition: all 0.3s;
}
.why-card:hover {
    border-color: var(--gold);
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}
.why-card h4 {
    font-size: 1rem; font-weight: 600;
    color: var(--navy); margin-bottom: 0.5rem;
}
.why-card p {
    font-size: 0.9rem; color: var(--gray-500); line-height: 1.6;
}
.essential-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem; margin-top: 2rem;
}
.essential-card {
    text-align: center;
    padding: 2rem;
    background: var(--white);
    border-radius: 12px;
    border: 1px solid var(--border);
}
.essential-icon { font-size: 2rem; margin-bottom: 0.8rem; }
.essential-card h4 {
    font-size: 1.05rem; font-weight: 600;
    color: var(--navy); margin-bottom: 0.5rem;
}
.essential-card p {
    font-size: 0.88rem; color: var(--gray-500); line-height: 1.6;
}

/* ========== ABOUT / QUI SUIS-JE ========== */
.about-content {
    max-width: 800px; margin: 0 auto;
}
.about-content p {
    font-size: 1rem; color: var(--gray-600);
    line-height: 1.8; margin-bottom: 1rem;
}
.about-content h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem; color: var(--navy);
    margin: 2rem 0 0.8rem;
}
.about-content ul {
    list-style: none; padding: 0; margin-bottom: 1.5rem;
}
.about-content ul li {
    font-size: 0.95rem; color: var(--gray-600);
    padding: 0.4rem 0; padding-left: 1.5rem;
    position: relative; line-height: 1.7;
}
.about-content ul li::before {
    content: '→'; position: absolute; left: 0;
    color: var(--gold); font-weight: 600;
}
.voltaire-badge {
    background: var(--gold-light);
    border-left: 4px solid var(--gold);
    padding: 1.5rem 2rem;
    border-radius: 0 10px 10px 0;
    margin: 1.5rem 0;
    font-size: 0.95rem;
    color: var(--navy);
    line-height: 1.6;
}
.expertise-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2.5rem;
}
.expertise-card {
    text-align: center;
    padding: 2rem;
    border: 1px solid var(--border);
    border-radius: 12px;
    transition: all 0.3s;
}
.expertise-card:hover {
    border-color: var(--gold);
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}
.expertise-icon { font-size: 2rem; margin-bottom: 0.8rem; }
.expertise-card h4 {
    font-size: 1.05rem; font-weight: 600;
    color: var(--navy); margin-bottom: 0.5rem;
}
.expertise-card p {
    font-size: 0.88rem; color: var(--gray-500); line-height: 1.6;
}

/* ========== CONTENT GRID (prestation pages) ========== */
.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.5rem;
}
.content-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 1.8rem;
    transition: all 0.3s;
}
.content-card:hover {
    border-color: var(--gold);
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}
.content-card h4 {
    font-size: 1rem; font-weight: 600;
    color: var(--navy); margin-bottom: 0.8rem;
}
.content-card ul {
    list-style: none; padding: 0;
}
.content-card ul li {
    font-size: 0.85rem; color: var(--gray-600);
    padding: 0.25rem 0; padding-left: 1.3rem;
    position: relative;
}
.content-card ul li::before {
    content: '·'; position: absolute; left: 0.3rem;
    color: var(--gold); font-weight: 600; font-size: 1.2rem;
}

/* Services detail (correction web) */

/* Correction detail blocks */
.correction-detail {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}
.correction-block {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 1.8rem;
}
.correction-block h4 {
    font-size: 1rem; font-weight: 600;
    color: var(--navy); margin-bottom: 0.5rem;
}
.correction-block p {
    font-size: 0.9rem; color: var(--gray-500); line-height: 1.6;
}

/* Exchange grid (before/after) */

/* Other services link section */
.other-services {
    text-align: center;
    max-width: 650px; margin: 0 auto;
}
.other-services h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem; color: var(--navy);
    margin-bottom: 0.5rem;
}
.other-services p {
    font-size: 0.95rem; color: var(--gray-500);
    margin-bottom: 1.5rem;
}
.other-links {
    display: flex; gap: 1rem;
    justify-content: center; flex-wrap: wrap;
}

/* ========== FORFAITS ========== */

/* ========== PROCESS STEPS ========== */
.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
}
.process-step {
    text-align: center;
    position: relative;
}
.step-number {
    width: 48px;
    height: 48px;
    background: var(--gold);
    color: var(--navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0 auto 1rem;
}
.process-step h4 {
    font-size: 1rem;
    color: var(--navy);
    margin-bottom: 0.5rem;
}
.process-step p {
    font-size: 0.88rem;
    color: var(--gray-500);
    line-height: 1.6;
}

/* ========== PAGE HERO ========== */
.page-hero {
    background: var(--navy);
    padding: 4rem 0;
    text-align: center;
}
.page-hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 0.5rem;
}
.page-hero p {
    color: rgba(255,255,255,0.7);
    font-size: 1.05rem;
}

/* ========== CONTACT FORM ========== */
.contact-wrapper {
    max-width: 650px; margin: 0 auto;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 3rem;
}
.contact-intro {
    text-align: center; font-size: 0.95rem;
    color: var(--gray-500); margin-bottom: 2rem; line-height: 1.8;
}
.form-group { margin-bottom: 1.5rem; }
.form-group label {
    display: block; font-size: 0.88rem; font-weight: 500;
    margin-bottom: 0.4rem; color: var(--gray-800);
}
.form-group input,
.form-group textarea,
.form-group select {
    width: 100%; padding: 0.8rem 1rem;
    border: 1px solid var(--border); border-radius: 8px;
    font-family: inherit; font-size: 0.92rem;
    background: var(--gray-50); color: var(--gray-800);
    transition: border-color 0.2s;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none; border-color: var(--gold);
}
.form-group textarea { min-height: 120px; resize: vertical; }
.btn-submit {
    display: block; width: 100%;
    padding: 1rem; border: none; border-radius: 8px;
    background: var(--gold); color: var(--navy);
    font-family: inherit; font-size: 1rem; font-weight: 600;
    cursor: pointer; transition: background 0.2s;
}
.btn-submit:hover { background: var(--gold-hover); }

/* ========== CTA BOX ========== */
.cta-box {
    background: var(--navy);
    border-radius: 16px;
    padding: 4rem 3rem;
    text-align: center;
}
.cta-box h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem; color: var(--white);
    margin-bottom: 0.8rem;
}
.cta-box h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem; color: var(--gold);
    margin-bottom: 0.8rem;
    text-transform: none;
    letter-spacing: 0;
}
.cta-box p {
    color: rgba(255,255,255,0.7);
    margin-bottom: 2rem; font-size: 1rem;
}

/* ========== FOOTER ========== */
.site-footer {
    background: var(--navy);
    color: rgba(255,255,255,0.7);
    padding: 3.5rem 0 1.5rem;
}
.footer-compact {
    text-align: center;
    padding-bottom: 1.2rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand-compact { margin-bottom: 1rem; }
.footer-links-row {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.3rem;
}
.footer-links-row a {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.8);
    transition: color 0.2s;
}
.footer-links-row a:hover { color: var(--gold); }
.footer-sep {
    color: rgba(255,255,255,0.35);
    font-size: 0.8rem;
}
.footer-bottom {
    padding-top: 1.2rem;
    display: flex; justify-content: space-between; align-items: center;
}
.footer-bottom p {
    font-size: 0.75rem; color: rgba(255,255,255,0.55);
}
.footer-social {
    display: flex; gap: 0.6rem;
}
.footer-social a {
    display: inline-flex; align-items: center; justify-content: center;
    width: 32px; height: 32px; border-radius: 50%;
    background: rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.8);
    transition: all 0.2s; font-size: 0.9rem;
}
.footer-social a:hover { background: var(--gold); color: var(--navy); }

/* ========== LEGAL PAGES ========== */
.legal-content {
    max-width: 800px;
    margin: 0 auto;
}
.legal-content h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    color: var(--navy);
    margin: 2.5rem 0 0.8rem;
}
.legal-content h2:first-of-type {
    margin-top: 0;
}
.legal-content p {
    font-size: 0.92rem;
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 0.8rem;
}
.legal-content ul {
    list-style: none;
    padding: 0;
    margin-bottom: 1rem;
}
.legal-content ul li {
    font-size: 0.9rem;
    color: var(--gray-600);
    padding: 0.3rem 0;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.7;
}
.legal-content ul li::before {
    content: '·';
    position: absolute;
    left: 0.3rem;
    color: var(--gold);
    font-weight: 600;
    font-size: 1.2rem;
}
.legal-content a {
    color: var(--gold);
}
.legal-content a:hover {
    color: var(--gold-hover);
}

/* ========== EXTRACTED INLINE STYLES ========== */

/* Page hero compact (subpages with less padding) */
.page-hero-compact { padding: 2.5rem 0; }

/* Hero gold accent */
.hero-gold { color: var(--gold); }

/* Gold accent (generic) */
.gold-accent { color: var(--gold); }

/* Hero quote box */

.hero-quote p { color: var(--navy); }
.hero-quote cite { color: var(--gray-500); }

/* Services grid variants */
.services-grid-2col { grid-template-columns: repeat(2, 1fr); }
.services-grid-2col-narrow { grid-template-columns: repeat(2, 1fr); max-width: 800px; margin: 0 auto; }

/* Process steps 3-col variant */
.process-steps-3col { grid-template-columns: repeat(3, 1fr); }

/* Price footnotes */
.price-footnotes { text-align: center; margin-top: 1.5rem; }
.price-footnotes-lg { text-align: center; margin-top: 2rem; }
.footnote-text { font-size: 0.75rem; color: var(--gray-400); }
.footnote-text-mt { font-size: 0.75rem; color: var(--gray-400); margin-top: 0.2rem; }
.footnote-text-light { font-size: 0.75rem; color: var(--gray-300); margin-top: 0.3rem; }
.footnote-main { font-size: 0.8rem; color: var(--gray-400); line-height: 1.6; }

/* Explanation box (navy) */
.explanation-box {
    max-width: 800px; margin: 2.5rem auto 0;
    background: var(--navy); border-radius: 12px;
    padding: 2rem 2.5rem; text-align: center;
}
.explanation-box h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem; color: var(--gold); margin-bottom: 0.8rem;
}
.explanation-box p {
    color: rgba(255,255,255,0.85); font-size: 0.95rem; line-height: 1.7;
}

/* ========== BLOG ARTICLE ========== */

.article-container { max-width: 720px; margin: 0 auto; padding: 40px 24px 60px; }
.article-container .intro { font-size: 1.05rem; color: #444; margin-bottom: 30px; border-left: 4px solid var(--gold); padding-left: 20px; line-height: 1.8; }
.article-container p { margin-bottom: 16px; line-height: 1.75; }
.article-container h2 { font-family: 'Cormorant Garamond', serif; color: var(--navy); font-size: 1.6rem; margin: 45px 0 16px; padding-bottom: 8px; border-bottom: 2px solid rgba(229,169,26,0.25); }
.article-container h2 .num { color: var(--gold); }
.article-container h3 { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 1px; color: var(--warm-brown); margin: 24px 0 10px; font-weight: 600; }

.slide-card { background: linear-gradient(135deg, #faf6ef 0%, #f5efe4 100%); border: 1px solid var(--beige-border); border-radius: 10px; padding: 22px 26px; margin: 14px 0 8px; font-size: 0.95rem; line-height: 1.8; box-shadow: 0 2px 8px rgba(139,115,85,0.06); }
.slide-card .label { font-size: 0.65rem; text-transform: uppercase; letter-spacing: 1.5px; color: var(--warm-brown); font-weight: 600; margin-bottom: 12px; display: block; opacity: 0.7; }
.slide-card p { margin-bottom: 6px; color: #3d3225; }
.slide-card p + p { margin-top: 4px; }
.slide-card ol, .slide-card ul { padding-left: 22px; margin: 8px 0; color: #3d3225; }
.slide-card li { margin-bottom: 4px; }
.slide-card blockquote { border-left: 3px solid var(--beige-border); padding-left: 14px; color: #5a4e3e; font-style: italic; margin: 10px 0; }

.slide-corrected { background: linear-gradient(135deg, #f7f4ee 0%, #f0ece3 100%); border: 1px solid #d9d1c3; border-left: 4px solid var(--gold); border-radius: 10px; padding: 22px 26px; margin: 14px 0 36px; font-size: 0.95rem; line-height: 1.8; box-shadow: 0 2px 8px rgba(139,115,85,0.06); }
.slide-corrected .label { font-size: 0.65rem; text-transform: uppercase; letter-spacing: 1.5px; color: var(--gold); font-weight: 600; margin-bottom: 12px; display: block; }
.slide-corrected p { margin-bottom: 6px; color: #2d2418; }
.slide-corrected p + p { margin-top: 4px; }
.slide-corrected ol, .slide-corrected ul { padding-left: 22px; margin: 8px 0; color: #2d2418; }
.slide-corrected li { margin-bottom: 4px; }
.slide-corrected blockquote { border-left: 3px solid var(--gold-light); padding-left: 14px; color: #5a4e3e; font-style: italic; margin: 10px 0; }

.correction-list { list-style: none; padding: 0; margin: 4px 0 8px; }
.correction-list li { padding: 8px 0; border-bottom: 1px solid #eee; font-size: 0.92rem; line-height: 1.65; }
.correction-list li:last-child { border-bottom: none; }
.faux { text-decoration: line-through; color: #888; }
.juste { color: var(--navy); font-weight: 600; }
.arrow { color: #ccc; margin: 0 6px; }
.expl { color: var(--gray-500); font-size: 0.88rem; }

.share-row { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }
.share-btn { display: inline-block; color: white; padding: 10px 20px; border-radius: 6px; text-decoration: none; font-size: 0.875rem; font-weight: bold; }

/* Blog article (5-erreurs style) */
.blog-article { max-width: 740px; margin: 0 auto; padding: 0 1.5rem 3rem; }
.blog-article h2 { font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; font-weight: 600; color: var(--navy); margin: 2.5rem 0 1rem; padding-bottom: 0.4rem; border-bottom: 2px solid rgba(201,168,76,0.2); }
.blog-article h2 .num { color: var(--gold); }
.blog-article p { font-size: 0.95rem; line-height: 1.8; color: #333; margin-bottom: 1rem; }
.blog-article .intro-text { font-size: 1.05rem; border-left: 4px solid var(--gold); padding-left: 1.2rem; margin-bottom: 1.5rem; margin-top: 2.5rem; }

.blog-stat-box { background: var(--navy); color: var(--gold); text-align: center; padding: 1.8rem 1.2rem; border-radius: 10px; margin: 1.5rem 0; }
.blog-stat-box .stat-number { font-family: 'Cormorant Garamond', serif; font-size: 2.8rem; font-weight: 600; display: block; }
.blog-stat-box .stat-text { font-size: 0.85rem; color: rgba(255,255,255,0.75); margin-top: 0.4rem; display: block; }
.blog-stat-box .stat-source { font-size: 0.7rem; opacity: 0.4; margin-top: 0.5rem; display: block; }

.blog-example-box { background: #fff; border: 1px solid #e0e0e0; border-left: 4px solid #e03131; border-radius: 6px; padding: 1rem 1.2rem; margin: 1rem 0 1.2rem; font-size: 0.88rem; line-height: 1.7; }
.blog-example-box ul { list-style: none; padding: 0; margin: 0; }
.blog-example-box li { margin-bottom: 0.4rem; }
.blog-example-box li::before { content: "\274C "; }
.blog-example-box li.no-cross::before { content: ""; }

.blog-tip { background: #f0f7f0; border-left: 4px solid #2d9a2d; border-radius: 6px; padding: 1rem 1.2rem; margin: 1rem 0 1.5rem; font-size: 0.88rem; }
.blog-tip::before { content: "✅ Le réflexe : "; font-weight: 600; color: #2d9a2d; }

.blog-summary-table { width: 100%; border-collapse: collapse; margin: 1.5rem 0; font-size: 0.88rem; }
.blog-summary-table th { background: var(--navy); color: var(--gold); padding: 0.7rem 1rem; text-align: left; }
.blog-summary-table td { padding: 0.7rem 1rem; border-bottom: 1px solid #e0e0e0; }
.blog-summary-table tr:nth-child(even) td { background: #f5f5f3; }

.blog-cta-box { background: var(--navy); border-radius: 12px; padding: 2rem 1.5rem; text-align: center; margin: 2.5rem 0 1.5rem; }
.blog-cta-box h3 { font-family: 'Cormorant Garamond', serif; color: var(--gold); font-size: 1.4rem; margin-bottom: 0.8rem; text-transform: none; letter-spacing: 0; }
.blog-cta-box p { color: rgba(255,255,255,0.75); font-size: 0.88rem; margin-bottom: 0.5rem; }
.blog-cta-box .btn { display: inline-block; margin-top: 1rem; }

.blog-share { text-align: center; margin-top: 2rem; }
.blog-share p { font-style: italic; color: #888; font-size: 0.88rem; margin-bottom: 1rem; }
.blog-share-buttons { display: flex; justify-content: center; gap: 0.6rem; flex-wrap: wrap; }
.blog-share-buttons a { display: inline-block; color: white; padding: 0.5rem 1rem; border-radius: 6px; text-decoration: none; font-size: 0.8rem; font-weight: 600; }

.blog-meta { font-size: 0.82rem; color: #888; margin-bottom: 0.5rem; }
.blog-back { font-size: 0.85rem; margin-top: 2rem; }
.blog-back a { color: var(--gold); text-decoration: none; }
.blog-back a:hover { text-decoration: underline; }

/* Blog featured (blog.html) */
.blog-featured { max-width: 740px; margin: 0 auto; }
.blog-featured-header { margin-bottom: 2rem; }
.blog-featured-badge { display: inline-block; background: var(--gold); color: var(--navy); font-size: 0.7rem; font-weight: 600; padding: 0.25rem 0.8rem; border-radius: 4px; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 1rem; }
.blog-featured-title { font-family: 'Cormorant Garamond', serif; font-size: 2rem; font-weight: 600; color: var(--navy); line-height: 1.2; margin-bottom: 0.5rem; }
.blog-featured-date { font-size: 0.82rem; color: var(--gray-400); }
.blog-featured p { font-size: 0.95rem; line-height: 1.8; color: #333; margin-bottom: 1rem; }
.blog-featured .intro-text { font-size: 1.05rem; border-left: 4px solid var(--gold); padding-left: 1.2rem; margin-bottom: 1.5rem; }
.blog-featured h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; font-weight: 600; color: var(--navy); margin: 2rem 0 0.8rem; padding-bottom: 0.3rem; border-bottom: 2px solid rgba(201,168,76,0.2); }
.blog-featured h3 .num { color: var(--gold); }
.blog-featured .read-more-fade { position: relative; margin-top: -2rem; padding-top: 3rem; background: linear-gradient(to bottom, rgba(248,250,252,0), var(--gray-50) 70%); text-align: center; }

.blog-upcoming-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; max-width: 740px; margin: 0 auto; }
.blog-upcoming-card { background: var(--white); border: 1px solid var(--border); border-radius: 10px; padding: 1.8rem; position: relative; overflow: hidden; transition: all 0.3s; }
.blog-upcoming-card:hover { border-color: var(--gold); box-shadow: 0 4px 20px rgba(0,0,0,0.05); }
.blog-upcoming-badge { position: absolute; top: 0; right: 0; background: var(--gray-300); color: var(--gray-800); font-size: 0.65rem; font-weight: 600; padding: 0.25rem 0.7rem; border-radius: 0 8px 0 8px; text-transform: uppercase; letter-spacing: 0.3px; }
.blog-upcoming-card h4 { font-size: 1rem; font-weight: 600; color: var(--navy); margin: 0.5rem 0 0.6rem; }
.blog-upcoming-card p { font-size: 0.88rem; color: var(--gray-500); line-height: 1.6; margin: 0; }

/* 404 page */
.error-page { max-width: 600px; margin: 0 auto; padding: 120px 24px 80px; text-align: center; min-height: 60vh; display: flex; flex-direction: column; justify-content: center; }
.error-page .code { font-family: 'Cormorant Garamond', serif; font-size: 5rem; font-weight: 600; color: var(--gold); line-height: 1; margin-bottom: 16px; }
.error-page h1 { font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; font-weight: 600; color: var(--navy); margin-bottom: 12px; }
.error-page p { font-size: 0.95rem; color: #666; margin-bottom: 32px; }
.error-page .btn-back { display: inline-block; background: var(--navy); color: white; padding: 12px 28px; border-radius: 8px; text-decoration: none; font-weight: 500; font-size: 0.95rem; transition: background 0.2s; }
.error-page .btn-back:hover { background: #2a2f5d; }

/* Section CTA center */
.section-cta-center { text-align: center; margin-top: 2rem; }
.section-cta-center-lg { text-align: center; margin-top: 2.5rem; }

/* Page intro (prestation pages) */
.page-intro { max-width: 800px; margin: 0 auto; text-align: center; }
.page-intro-lead { font-size: 1.1rem; margin-bottom: 0.8rem; }

/* Service addon section */
.service-addon {
    margin-top: 1.5rem; padding-top: 1.2rem;
    border-top: 1px solid var(--border);
}
.service-addon h4 {
    font-size: 0.92rem; color: var(--navy);
    margin-bottom: 0.3rem; font-weight: 600;
}
.service-addon-wide h4 { margin-bottom: 0.8rem; }
.service-addon .detail-text {
    font-size: 0.82rem; color: var(--gray-400); margin-bottom: 0.8rem;
}
.service-addon .service-price { margin-top: 0.5rem; }
.service-addon .forfait-text {
    font-size: 0.82rem; color: var(--gray-400); margin-top: 0.8rem;
}

/* Promo box (navy) */
.promo-box {
    max-width: 800px; margin: 0 auto;
    background: var(--navy); border-radius: 12px;
    padding: 2rem 2.5rem;
    display: flex; align-items: center; gap: 2rem;
}
.promo-box-icon { font-size: 2.5rem; flex-shrink: 0; }
.promo-box h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem; color: var(--gold); margin-bottom: 0.5rem;
}
.promo-box p {
    color: rgba(255,255,255,0.85); font-size: 0.92rem;
    line-height: 1.7; margin: 0;
}

/* Content grid narrow */
.content-grid-narrow { max-width: 800px; margin: 0 auto; }
.content-grid-single { max-width: 700px; margin: 0 auto; grid-template-columns: 1fr; }

/* Blog */
.blog-card { position: relative; overflow: hidden; }
.blog-card-badge {
    position: absolute; top: 0; right: 0;
    background: var(--gold); color: var(--navy);
    font-size: 0.7rem; font-weight: 600;
    padding: 0.3rem 0.8rem; border-radius: 0 8px 0 8px;
}
.blog-card h4 { margin-top: 0.5rem; }
.blog-social-links {
    display: flex; gap: 1rem;
    justify-content: center; margin-top: 1rem;
    flex-wrap: wrap;
}

/* FAQ contact box */
.faq-contact-box {
    max-width: 700px; margin: 2.5rem auto 0;
    text-align: center; padding: 2rem;
    background: var(--gray-50); border-radius: 12px;
}
.faq-contact-box h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem; color: var(--navy); margin-bottom: 0.5rem;
}
.faq-contact-box p { color: var(--gray-500); margin-bottom: 1.2rem; }

/* Merci (thank you page) */
.merci-section { min-height: 60vh; display: flex; align-items: center; }
.merci-content { max-width: 600px; margin: 0 auto; text-align: center; }
.merci-icon { font-size: 3rem; margin-bottom: 1rem; }
.merci-content h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem; color: var(--navy); margin-bottom: 1rem;
}
.merci-content p {
    font-size: 1.05rem; color: var(--gray-600);
    line-height: 1.8; margin-bottom: 2rem;
}

/* Footer logo */
.footer-logo-link {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem; font-weight: 400;
    color: var(--white); display: inline-flex;
    align-items: baseline; text-decoration: none;
}
.footer-logo-dash { margin: 0 0.02em; font-size: 0.85em; }
.footer-logo-s { color: var(--gold); font-weight: 500; }
.footer-logo-star {
    display: inline-block; position: relative;
    top: -0.45em; margin-left: 2px;
}

/* Footer legal row */
.footer-legal-row { margin-top: 0.5rem; }

/* Other links margin */
.other-links { margin-top: 1rem; }

/* Legal date */
.legal-date { font-size: 0.85rem; color: var(--gray-400); margin-bottom: 2rem; }

/* Contact form helpers */
.form-label-hint { font-weight: 400; color: var(--gray-400); }
.form-file-input { font-size: 0.88rem; }

/* Quisuisje spacing */
.section-title-spaced { margin-top: 3rem; }
.about-content-spaced { margin-top: 3rem; }
.why-grid-compact { margin-top: 1rem; }
.voltaire-code { font-size: 0.8rem; color: var(--gray-400); }
.voltaire-code a { color: var(--gold); }

.services-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

/* Tarif cards: align separator lines across columns */
.tarif-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}
.tarif-top {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding-bottom: 0.5rem;
}
.tarif-card ul {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
    .services-detail-grid { grid-template-columns: 1fr; }
    .hero {
        grid-template-columns: 1fr;
        padding: 3rem 0 2rem;
        gap: 2rem;
    }
    .hero h1 { font-size: 2.2rem; }
    .hero-buttons { flex-direction: column; }
    .hero-visual { display: none; }
    .stats-inner { grid-template-columns: 1fr; gap: 1.5rem; }
    .services-grid, .services-grid-2col, .services-grid-2col-narrow { grid-template-columns: 1fr !important; }
    .why-grid { grid-template-columns: 1fr; }
    .process-steps { grid-template-columns: 1fr 1fr; }
    .essential-grid { grid-template-columns: 1fr; }
    .expertise-grid { grid-template-columns: 1fr; }
    .correction-detail { grid-template-columns: 1fr; }
    .footer-links-row { gap: 0.2rem; }
    .section-title h2 { font-size: 1.7rem; }
    .cta-box { padding: 2.5rem 1.5rem; }
    .cta-box h2 { font-size: 1.5rem; }
    .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }

    .menu-toggle { display: block; }
    .primary-menu {
        display: none;
        position: absolute;
        top: 100%; left: 0; right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 1.5rem;
        gap: 0;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        border-top: 1px solid var(--border);
    }
    .primary-menu.open { display: flex; }
    .primary-menu li { padding: 0.6rem 0; }
    .primary-menu li a { font-size: 1rem; }

    .has-dropdown > a { pointer-events: none; }
    .has-dropdown.open > a { pointer-events: none; }
    .dropdown {
        position: static !important;
        box-shadow: none !important;
        border: none !important;
        border-radius: 0 !important;
        background: transparent !important;
        padding: 0.2rem 0 0 0 !important;
        min-width: auto !important;
    }
    .has-dropdown .dropdown { display: none; }
    .has-dropdown.open .dropdown { display: block; }
    .dropdown li { padding: 0 !important; }
    .dropdown li a {
        padding: 0.25rem 0 !important;
        font-size: 0.85rem !important;
        color: var(--gray-400) !important;
    }
    .dropdown li a:hover { color: var(--gold) !important; }
    .contact-wrapper { padding: 2rem 1.5rem; }
    .blog-featured-title { font-size: 1.6rem; }
    .blog-upcoming-grid { grid-template-columns: 1fr; }
}
@media (max-width: 1024px) and (min-width: 769px) {
    .hero h1 { font-size: 2.5rem; }
    .services-grid { grid-template-columns: 1fr; }
}

/* ========== ABOUT PORTRAIT ========== */
.about-content picture {
    float: left;
    margin: 0.3rem 1.5rem 1rem 0;
}
.about-portrait {
    float: left;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0.3rem 1.5rem 1rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

@media (max-width: 480px) {
    .hero h1 { font-size: 1.8rem; }
    .section-title h2 { font-size: 1.5rem; }
    .page-hero h1 { font-size: 1.6rem; }
    .container { padding: 0 5%; }
    .cta-box { padding: 2rem 1rem; }
    .cta-box h2 { font-size: 1.3rem; }
    .process-steps { grid-template-columns: 1fr; }
    .contact-wrapper { padding: 1.5rem 1rem; }
    .btn-lg { font-size: 0.9rem; padding: 0.8rem 1.5rem; }
}

/* ========== FOCUS VISIBLE ========== */
*:focus-visible {
  outline: 2px solid var(--gold, #c9a84c);
  outline-offset: 2px;
}
a:focus:not(:focus-visible),
button:focus:not(:focus-visible) {
  outline: none;
}

/* ========== SKIP LINK ========== */
.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
  z-index: 1000;
}
.skip-link:focus {
  position: fixed;
  top: 10px;
  left: 10px;
  width: auto;
  height: auto;
  overflow: visible;
  background: var(--navy, #1a1f3d);
  color: white;
  padding: 8px 16px;
  border-radius: 4px;
  text-decoration: none;
  font-size: 0.9rem;
  z-index: 10000;
}
