:root {
            --dark-primary: #1A2233;
            --dark-secondary: #263149;
            --accent-gold: #CBB98E;
            --accent-hover: #D8C79C;
            --light-ivory: #F6F2E9;
            --muted-gray: #B6BDC7;
            --very-dark: #0F151F;
        }

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

        body {
            font-family: 'DM Sans', sans-serif;
            color: var(--dark-primary);
            background: #FFFFFF;
            line-height: 1.6;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: 'Cormorant Garamond', serif;
            font-weight: 600;
            line-height: 1.2;
        }

        /* Navigation */
        nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background: #FFFFFF;
            padding: 1rem 2rem;
            box-shadow: 0 2px 8px rgba(26, 34, 51, 0.08);
            z-index: 1000;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .nav-left {
            display: flex;
            align-items: center;
            gap: 2rem;
        }

        .logo {
            height: 45px;
            width: auto;
        }

        .nav-subtitle {
            font-size: 0.75rem;
            color: var(--muted-gray);
            font-family: 'DM Sans', sans-serif;
            letter-spacing: 0.05em;
            text-transform: uppercase;
            line-height: 1.3;
        }

        .nav-links {
            display: flex;
            gap: 2rem;
            list-style: none;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--dark-primary);
            font-size: 0.95rem;
            font-weight: 500;
            transition: color 0.3s ease;
            position: relative;
        }

        .nav-links a:hover {
            color: var(--accent-gold);
        }

        .nav-links a.active::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            right: 0;
            height: 2px;
            background: var(--accent-gold);
        }

        .nav-right {
            display: flex;
            align-items: center;
            gap: 1.5rem;
        }

        .lang-toggle {
            display: flex;
            gap: 0.5rem;
            font-size: 0.85rem;
            font-weight: 600;
        }

        .lang-toggle a {
            color: var(--dark-primary);
            text-decoration: none;
            padding: 0.25rem 0.5rem;
        }

        .lang-toggle a.active {
            color: var(--accent-gold);
        }

        .cta-btn {
            background: var(--dark-primary);
            color: #FFFFFF;
            padding: 0.75rem 1.75rem;
            border-radius: 4px;
            text-decoration: none;
            font-size: 0.9rem;
            font-weight: 600;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
        }

        .cta-btn:hover {
            background: var(--accent-gold);
            color: var(--very-dark);
        }

        /* Main content offset */
        main {
            margin-top: 80px;
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, var(--dark-primary) 0%, var(--very-dark) 100%);
            color: #FFFFFF;
            padding: 4rem 2rem;
            text-align: center;
        }

        .hero-tag {
            font-size: 0.8rem;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            color: var(--accent-gold);
            margin-bottom: 1rem;
        }

        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            font-weight: 700;
        }

        .hero-subtitle {
            font-size: 1.1rem;
            max-width: 800px;
            margin: 0 auto 2rem;
            color: rgba(255, 255, 255, 0.9);
            line-height: 1.7;
        }

        /* Filter Bar */
        .filter-bar {
            position: sticky;
            top: 80px;
            background: #FFFFFF;
            border-bottom: 1px solid #E8E5DF;
            padding: 1.5rem 2rem;
            z-index: 900;
            display: flex;
            gap: 2rem;
            overflow-x: auto;
        }

        .filter-btn {
            background: none;
            border: none;
            color: var(--dark-primary);
            font-size: 0.95rem;
            font-weight: 500;
            cursor: pointer;
            padding: 0.5rem 0;
            border-bottom: 2px solid transparent;
            transition: all 0.3s ease;
            white-space: nowrap;
        }

        .filter-btn:hover {
            color: var(--accent-gold);
        }

        .filter-btn.active {
            color: var(--accent-gold);
            border-bottom-color: var(--accent-gold);
        }

        /* Quick Links */
        .quick-links {
            background: var(--light-ivory);
            padding: 2rem;
            margin: 0;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1.5rem;
        }

        .quick-link {
            background: #FFFFFF;
            padding: 1.5rem;
            border-radius: 4px;
            border-left: 3px solid var(--accent-gold);
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .quick-link:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(26, 34, 51, 0.1);
        }

        .quick-link h3 {
            font-size: 1.1rem;
            margin-bottom: 0.5rem;
            color: var(--dark-primary);
        }

        .quick-link p {
            font-size: 0.85rem;
            color: var(--muted-gray);
        }

        /* Main Content Layout */
        .content-wrapper {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 3rem;
            padding: 3rem 2rem;
            max-width: 1400px;
            margin: 0 auto;
        }

        /* Featured Article */
        .featured-article {
            background: #FFFFFF;
            border-radius: 6px;
            overflow: hidden;
            box-shadow: 0 4px 16px rgba(26, 34, 51, 0.08);
            margin-bottom: 3rem;
        }

        .featured-image {
            width: 100%;
            height: 400px;
            object-fit: cover;
            display: block;
        }

        .featured-content {
            padding: 2.5rem;
        }

        .featured-tag {
            font-size: 0.75rem;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            color: var(--accent-gold);
            margin-bottom: 1rem;
        }

        .featured-content h2 {
            font-size: 2.2rem;
            margin-bottom: 1rem;
            color: var(--dark-primary);
        }

        .featured-meta {
            display: flex;
            gap: 1rem;
            font-size: 0.85rem;
            color: var(--muted-gray);
            margin-bottom: 1.5rem;
        }

        .featured-excerpt {
            color: #555;
            margin-bottom: 1.5rem;
            line-height: 1.8;
        }

        .read-more {
            display: inline-block;
            color: var(--accent-gold);
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .read-more:hover {
            color: var(--accent-hover);
            margin-left: 0.5rem;
        }

        /* Articles Grid */
        .articles-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 2rem;
        }

        .article-card {
            background: #FFFFFF;
            border-radius: 6px;
            overflow: hidden;
            box-shadow: 0 4px 12px rgba(26, 34, 51, 0.06);
            transition: all 0.3s ease;
            opacity: 1;
            visibility: visible;
        }

        .article-card.hidden {
            display: none;
            opacity: 0;
            visibility: hidden;
        }

        .article-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 20px rgba(26, 34, 51, 0.12);
        }

        .article-image {
            width: 100%;
            height: 250px;
            object-fit: cover;
            display: block;
        }

        .article-body {
            padding: 1.5rem;
        }

        .article-category {
            font-size: 0.7rem;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            color: var(--accent-gold);
            margin-bottom: 0.5rem;
        }

        .article-title {
            font-size: 1.3rem;
            margin-bottom: 0.75rem;
            color: var(--dark-primary);
        }

        .article-meta {
            font-size: 0.8rem;
            color: var(--muted-gray);
            margin-bottom: 1rem;
        }

        .article-link {
            display: inline-block;
            color: var(--accent-gold);
            text-decoration: none;
            font-weight: 600;
            font-size: 0.9rem;
            transition: all 0.3s ease;
        }

        .article-link:hover {
            color: var(--accent-hover);
        }

        /* Sidebar */
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 2rem;
            position: sticky;
            top: 140px;
            height: fit-content;
        }

        .sidebar-cta {
            background: var(--dark-secondary);
            color: #FFFFFF;
            padding: 2rem;
            border-radius: 6px;
            text-align: center;
        }

        .sidebar-cta h3 {
            font-size: 1.3rem;
            margin-bottom: 0.5rem;
            color: #FFFFFF;
        }

        .sidebar-cta p {
            font-size: 0.9rem;
            margin-bottom: 1.5rem;
            color: rgba(255, 255, 255, 0.8);
        }

        .sidebar-cta .cta-btn {
            width: 100%;
            background: var(--accent-gold);
            color: var(--dark-primary);
        }

        .sidebar-cta .cta-btn:hover {
            background: var(--accent-hover);
        }

        .sidebar-section {
            background: #FFFFFF;
            border-radius: 6px;
            overflow: hidden;
            box-shadow: 0 2px 8px rgba(26, 34, 51, 0.06);
        }

        .sidebar-section-title {
            background: var(--dark-primary);
            color: #FFFFFF;
            padding: 1.25rem;
            font-size: 1rem;
            font-weight: 600;
        }

        .sidebar-list {
            list-style: none;
            padding: 0;
        }

        .sidebar-list li {
            border-bottom: 1px solid #E8E5DF;
        }

        .sidebar-list li:last-child {
            border-bottom: none;
        }

        .sidebar-list a {
            display: block;
            padding: 1rem 1.25rem;
            color: var(--dark-primary);
            text-decoration: none;
            font-size: 0.9rem;
            transition: all 0.3s ease;
        }

        .sidebar-list a:hover {
            background: var(--light-ivory);
            color: var(--accent-gold);
            padding-left: 1.5rem;
        }

        .sidebar-list-numbered {
            counter-reset: item;
        }

        .sidebar-list-numbered li {
            counter-increment: item;
        }

        .sidebar-list-numbered a::before {
            content: counter(item) ". ";
            font-weight: 600;
            color: var(--accent-gold);
            margin-right: 0.5rem;
        }

        /* Footer */
        footer {
            background: var(--dark-primary);
            color: #FFFFFF;
            padding: 4rem 2rem 2rem;
            margin-top: 4rem;
        }

        .footer-content {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }

        .footer-col h4 {
            margin-bottom: 1.25rem;
            color: var(--accent-gold);
        }

        .footer-col ul {
            list-style: none;
        }

        .footer-col ul li {
            margin-bottom: 0.75rem;
        }

        .footer-col a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-col a:hover {
            color: var(--accent-gold);
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 2rem;
            text-align: center;
            font-size: 0.85rem;
            color: rgba(255, 255, 255, 0.6);
        }

        /* Floating CTA */
        .floating-cta {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            background: var(--accent-gold);
            color: var(--dark-primary);
            padding: 1rem 1.5rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            box-shadow: 0 8px 24px rgba(203, 185, 142, 0.3);
            z-index: 800;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .floating-cta:hover {
            background: var(--accent-hover);
            transform: translateY(-2px);
            box-shadow: 0 12px 32px rgba(203, 185, 142, 0.4);
        }

        /* Cookie Consent */
        .cookie-consent {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: var(--dark-secondary);
            color: #FFFFFF;
            padding: 1.5rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 2rem;
            z-index: 700;
            transform: translateY(150%);
            transition: transform 0.3s ease;
        }

        .cookie-consent.show {
            transform: translateY(0);
        }

        .cookie-consent p {
            font-size: 0.9rem;
            margin: 0;
            flex: 1;
        }

        .cookie-consent button {
            background: var(--accent-gold);
            color: var(--dark-primary);
            border: none;
            padding: 0.75rem 1.5rem;
            border-radius: 4px;
            cursor: pointer;
            font-weight: 600;
            white-space: nowrap;
        }

        .cookie-consent button:hover {
            background: var(--accent-hover);
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .content-wrapper {
                grid-template-columns: 1fr;
            }

            .sidebar {
                position: static;
                top: auto;
            }

            .articles-grid {
                grid-template-columns: 1fr;
            }

            .hero h1 {
                font-size: 2.5rem;
            }

            .nav-links {
                gap: 1rem;
                font-size: 0.85rem;
            }
        }

        @media (max-width: 768px) {
            nav {
                flex-direction: column;
                gap: 1rem;
                padding: 1rem;
            }

            .nav-left {
                width: 100%;
                justify-content: space-between;
            }

            .nav-links {
                display: none;
            }

            .filter-bar {
                padding: 1rem;
                gap: 1rem;
            }

            .hero {
                padding: 2.5rem 1rem;
            }

            .hero h1 {
                font-size: 1.75rem;
            }

            .hero-subtitle {
                font-size: 0.95rem;
            }

            .quick-links {
                grid-template-columns: 1fr;
            }

            .featured-image {
                height: 250px;
            }

            .featured-content {
                padding: 1.5rem;
            }

            .featured-content h2 {
                font-size: 1.5rem;
            }

            .article-image {
                height: 200px;
            }

            .article-body {
                padding: 1rem;
            }

            .article-title {
                font-size: 1.1rem;
            }

            .content-wrapper {
                padding: 1.5rem 1rem;
                gap: 2rem;
            }

            .floating-cta {
                bottom: 1rem;
                right: 1rem;
                padding: 0.75rem 1.25rem;
                font-size: 0.85rem;
            }

            .cookie-consent {
                flex-direction: column;
                text-align: center;
            }
        }

        /* Scroll Reveal Animation */
        .scroll-reveal {
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }

        .scroll-reveal.visible {
            opacity: 1;
            transform: translateY(0);
        }
    
    /* === v14 additions === */
    /* Sticky mobile CTA */
    .sticky-cta-mobile { display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 999; background: var(--accent-gold, #CBB98E); color: var(--dark-primary, #1A2233); padding: 14px 20px; text-align: center; font-weight: 700; font-size: 14px; text-decoration: none; box-shadow: 0 -4px 12px rgba(0,0,0,0.18); letter-spacing: 0.5px; }
    .sticky-cta-mobile:hover { background: var(--accent-hover, #D8C79C); color: var(--dark-primary, #1A2233); }
    @media (max-width: 768px) { .sticky-cta-mobile { display: block; } body { padding-bottom: 56px; } }
    /* Exit Tax nav highlight */
    .nav-menu .nav-exit-tax { font-weight: 700; color: var(--accent-gold, #CBB98E) !important; }
    /* Sub-page silo navigation */
    .silo-nav { background: var(--light-ivory, #F6F2E9); border-top: 1px solid #e6dfd0; border-bottom: 1px solid #e6dfd0; padding: 16px 0; margin: 32px 0 24px; }
    .silo-nav-inner { max-width: 1200px; margin: 0 auto; padding: 0 40px; display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
    .silo-nav-label { font-size: 12px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--accent-gold, #CBB98E); margin-right: 8px; }
    .silo-nav a { font-size: 13px; color: var(--text-dark, #1A2233); text-decoration: none; padding: 6px 10px; border-radius: 4px; transition: background 0.2s; }
    .silo-nav a:hover, .silo-nav a.active { background: var(--accent-gold, #CBB98E); color: var(--dark-primary, #1A2233); }

  
    /* CMP v2 — granular consent */
    .cmp-banner { position: fixed; bottom: 20px; left: 20px; right: 20px; max-width: 1100px; margin: 0 auto; background: #fff; border-radius: 8px; box-shadow: 0 12px 40px rgba(0,0,0,0.18); border: 1px solid #e6dfd0; z-index: 9999; padding: 24px; }
    .cmp-banner-inner { display: grid; grid-template-columns: 1fr auto; gap: 24px; align-items: center; }
    .cmp-banner-text strong { display: block; color: #1A2233; font-size: 15px; margin-bottom: 6px; }
    .cmp-banner-text p { color: #2c2c2c; font-size: 13px; line-height: 1.6; margin: 0; }
    .cmp-banner-text a { color: #8A6E3F; text-decoration: underline; }
    .cmp-banner-actions { display: flex; gap: 8px; flex-shrink: 0; }
    .cmp-btn { padding: 10px 18px; border-radius: 4px; font-size: 13px; font-weight: 600; cursor: pointer; border: none; font-family: inherit; }
    .cmp-btn-primary { background: #1A2233; color: #fff; }
    .cmp-btn-primary:hover { background: #263149; }
    .cmp-btn-secondary { background: #fff; color: #1A2233; border: 1px solid #d4c7b0; }
    .cmp-btn-secondary:hover { border-color: #1A2233; }
    .cmp-modal { position: fixed; inset: 0; z-index: 10000; display: flex; align-items: center; justify-content: center; padding: 20px; }
    .cmp-modal-backdrop { position: absolute; inset: 0; background: rgba(12,27,56,0.7); }
    .cmp-modal-content { position: relative; background: #fff; border-radius: 8px; max-width: 640px; width: 100%; max-height: 90vh; display: flex; flex-direction: column; box-shadow: 0 20px 60px rgba(0,0,0,0.3); }
    .cmp-modal-header { padding: 24px 28px; border-bottom: 1px solid #e6dfd0; display: flex; justify-content: space-between; align-items: center; }
    .cmp-modal-header h2 { font-family: 'Cormorant Garamond', serif; font-size: 26px; color: #1A2233; margin: 0; }
    .cmp-modal-close { background: transparent; border: none; font-size: 28px; color: #1A2233; cursor: pointer; padding: 0 8px; line-height: 1; }
    .cmp-modal-body { padding: 24px 28px; overflow-y: auto; }
    .cmp-modal-footer { padding: 18px 28px; border-top: 1px solid #e6dfd0; display: flex; justify-content: flex-end; gap: 10px; }
    .cmp-category { background: #F8F4EE; border-radius: 6px; padding: 18px 20px; margin-bottom: 14px; }
    .cmp-cat-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; }
    .cmp-cat-head strong { color: #1A2233; font-size: 15px; }
    .cmp-category p { color: #2c2c2c; font-size: 13px; line-height: 1.55; margin: 0; }
    .cmp-toggle { position: relative; display: inline-block; width: 44px; height: 24px; }
    .cmp-toggle input { opacity: 0; width: 0; height: 0; }
    .cmp-toggle span { position: absolute; cursor: pointer; inset: 0; background: #d4c7b0; border-radius: 12px; transition: 0.3s; }
    .cmp-toggle span:before { position: absolute; content: ""; height: 18px; width: 18px; left: 3px; top: 3px; background: #fff; border-radius: 50%; transition: 0.3s; }
    .cmp-toggle input:checked + span { background: #2A6B4A; }
    .cmp-toggle input:checked + span:before { transform: translateX(20px); }
    .cmp-toggle input:disabled + span { background: #d4c7b0; opacity: 0.7; cursor: not-allowed; }
    @media (max-width: 768px) {
      .cmp-banner-inner { grid-template-columns: 1fr; }
      .cmp-banner-actions { flex-wrap: wrap; }
      .cmp-banner-actions .cmp-btn { flex: 1; min-width: 100px; }
    }

  
        /* v126 : layout du menu principal (ex .nav-links) */
        .nav-menu { display: flex; list-style: none; gap: 32px; margin: 0; padding: 0; align-items: center; }
        .nav-menu > li > a { text-decoration: none; color: var(--dark-primary); font-size: 14px; font-weight: 500; transition: color 0.3s ease; position: relative; }
        .nav-menu > li > a:hover { color: var(--accent-gold); }
        @media (max-width: 960px) { .nav-menu { display: none; } }
