:root {
      --dark-primary: #1A2233;
      --dark-secondary: #263149;
      --accent-gold: #CBB98E;
      --accent-hover: #D8C79C;
      --light-ivory: #F6F2E9;
      --muted-gray: #B6BDC7;
      --very-dark: #0F151F;
      --white: #FFFFFF;
      --text-dark: #1A2233;
      --text-light: #555555;
      --font-heading: 'Cormorant Garamond', serif;
      --font-body: 'DM Sans', sans-serif;
      --transition: all 0.3s ease;
      --box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
      --box-shadow-hover: 0 16px 40px rgba(0, 0, 0, 0.16);
    }

    * { margin: 0; padding: 0; box-sizing: border-box; }
    html { scroll-behavior: smooth; scroll-padding-top: 80px; }
    body { font-family: var(--font-body); color: var(--text-dark); line-height: 1.6; background: var(--white); }

    .container { max-width: 1200px; margin: 0 auto; padding: 0 40px; }
    .section-tag { font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; color: var(--accent-gold); margin-bottom: 16px; }
    h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); font-weight: 600; color: var(--text-dark); line-height: 1.2; }
    h1 { font-size: 56px; } h2 { font-size: 44px; } h3 { font-size: 32px; } h4 { font-size: 24px; } h5 { font-size: 18px; }

    .btn { font-family: var(--font-body); font-weight: 600; font-size: 14px; text-transform: uppercase; letter-spacing: 1px; padding: 16px 32px; border-radius: 4px; border: none; cursor: pointer; transition: var(--transition); display: inline-block; text-decoration: none; }
    .btn-primary { background: var(--accent-gold); color: var(--dark-primary); }
    .btn-primary:hover { background: var(--accent-hover); box-shadow: 0 8px 24px rgba(203, 185, 142, 0.3); }
    .btn-secondary { background: transparent; color: var(--accent-gold); border: 2px solid var(--accent-gold); }
    .btn-secondary:hover { background: var(--accent-gold); color: var(--dark-primary); }
    .btn-dark { background: var(--dark-primary); color: var(--white); }
    .btn-dark:hover { background: var(--dark-secondary); }

    /* NAVIGATION */
    nav { position: fixed; top: 0; left: 0; right: 0; height: 80px; background: var(--white); z-index: 1000; display: flex; align-items: center; justify-content: space-between; padding: 0 40px; box-shadow: none; transition: box-shadow 0.3s ease; }
    nav.scrolled { box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08); }
    .nav-brand { display: flex; align-items: center; gap: 16px; cursor: pointer; text-decoration: none; color: var(--text-dark); }
    .nav-logo { width: 50px; height: 58px; object-fit: contain; }
    .nav-text h1 { font-size: 20px; font-weight: 700; margin-bottom: 2px; color: var(--text-dark); }
    .nav-text p { font-size: 10px; letter-spacing: 1px; color: var(--muted-gray); text-transform: uppercase; }
    .nav-menu { display: flex; align-items: center; gap: 40px; list-style: none; }
    .nav-menu a { text-decoration: none; color: var(--text-dark); font-weight: 500; font-size: 14px; transition: color 0.3s ease; }
    .nav-menu a:hover { color: var(--accent-gold); }
    .nav-actions { display: flex; align-items: center; gap: 24px; }
    .lang-toggle { font-size: 13px; font-weight: 600; display: flex; gap: 8px; color: var(--text-dark); }
    .lang-toggle a { text-decoration: none; color: var(--muted-gray); cursor: pointer; transition: color 0.3s ease; }
    .lang-toggle a.active { color: var(--accent-gold); }
    .hamburger { display: none; flex-direction: column; gap: 6px; cursor: pointer; background: none; border: none; }
    .hamburger span { width: 24px; height: 2px; background: var(--text-dark); transition: all 0.3s ease; }
    .hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(10px, 10px); }
    .hamburger.active span:nth-child(2) { opacity: 0; }
    .hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(7px, -7px); }

    .mobile-menu { display: none; position: fixed; top: 80px; left: 0; right: 0; background: var(--white); flex-direction: column; padding: 24px 40px; gap: 16px; z-index: 999; border-bottom: 1px solid #efefef; }
    .mobile-menu a { text-decoration: none; color: var(--text-dark); font-weight: 500; padding: 12px 0; border-bottom: 1px solid #efefef; }

    /* HERO */
    .hero { margin-top: 80px; height: 700px; background: linear-gradient(135deg, rgba(26, 34, 51, 0.85) 0%, rgba(26, 34, 51, 0.3) 100%), url('/assets/img/93507cc36ceb4f698334c53a1c91e168.jpg') center 30%/cover;  display: flex; align-items: center; justify-content: center; color: var(--white); text-align: center; position: relative; overflow: hidden; }
    .hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 20% 50%, rgba(203, 185, 142, 0.08) 0%, transparent 50%); pointer-events: none; }
    .hero-content { position: relative; z-index: 2; max-width: 800px; animation: fadeInUp 1s ease forwards; }
    @keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
    .hero h1 { color: var(--white); font-size: 64px; margin-bottom: 24px; line-height: 1.15; }
    .hero p { font-size: 18px; color: #e0e0e0; margin-bottom: 40px; line-height: 1.7; }
    .hero-buttons { display: flex; gap: 16px; justify-content: center; margin-bottom: 48px; flex-wrap: wrap; }
    .hero-badges { display: flex; justify-content: center; gap: 48px; flex-wrap: wrap; padding-top: 32px; border-top: 1px solid rgba(255, 255, 255, 0.2); }
    .badge { font-size: 13px; color: #d0d0d0; display: flex; align-items: center; gap: 8px; }
    .badge::before { content: '•'; color: var(--accent-gold); font-size: 20px; }

    /* TRUST BAR */
    .trust-bar { background: var(--light-ivory); padding: 60px 40px; margin: -60px 0 0 0; }
    .trust-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 40px; max-width: 1200px; margin: 0 auto; }
    .trust-item { text-align: center; border-right: 1px solid var(--muted-gray); }
    .trust-item:last-child { border-right: none; }
    .trust-number { font-family: var(--font-heading); font-size: 52px; font-weight: 700; color: var(--accent-gold); margin-bottom: 8px; }
    .trust-label { font-size: 14px; color: var(--text-light); text-transform: uppercase; letter-spacing: 1px; }

    /* EXPERTISES */
    .expertises { background: var(--dark-primary); color: var(--white); padding: 120px 40px; }
    .expertises .section-tag { color: var(--accent-gold); }
    .expertises h2 { color: var(--white); margin-bottom: 60px; max-width: 700px; }
    .expertises-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 32px; max-width: 1200px; margin: 0 auto; }
    .expertise-card { background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(203, 185, 142, 0.2); padding: 40px 32px; border-radius: 6px; transition: var(--transition); cursor: pointer; }
    .expertise-card:hover { background: rgba(203, 185, 142, 0.08); border-color: var(--accent-gold); transform: translateY(-8px); }
    .expertise-icon { width: 48px; height: 48px; margin-bottom: 24px; color: var(--accent-gold); }
    .expertise-card h4 { color: var(--white); margin-bottom: 16px; font-size: 22px; }
    .expertise-card p { font-size: 14px; color: #d0d0d0; margin-bottom: 24px; line-height: 1.6; min-height: 48px; }
    .expertise-card a { color: var(--accent-gold); text-decoration: none; font-weight: 600; font-size: 13px; transition: color 0.3s ease; }
    .expertise-card a:hover { color: var(--accent-hover); }

    /* SITUATIONS */
    .situations { background: var(--light-ivory); padding: 120px 40px; }
    .situations h2 { margin-bottom: 60px; max-width: 700px; }
    .situations-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 32px; max-width: 1200px; margin: 0 auto; }
    .situation-card { background: var(--white); border: 1px solid #e8e8e8; padding: 40px 32px; border-radius: 6px; transition: var(--transition); }
    .situation-card:hover { box-shadow: var(--box-shadow-hover); border-color: var(--accent-gold); }
    .situation-icon { width: 56px; height: 56px; margin-bottom: 24px; color: var(--accent-gold); }
    .situation-card h4 { margin-bottom: 16px; font-size: 22px; }
    .situation-card p { font-size: 14px; color: var(--text-light); margin-bottom: 24px; line-height: 1.6; min-height: 60px; }
    .situation-card .btn-secondary { font-size: 12px; padding: 12px 24px; }

    /* FONDATEUR */
    .fondateur { background: var(--dark-primary); color: var(--white); padding: 120px 40px; }
    .fondateur-content { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; max-width: 1200px; margin: 0 auto; }
    .fondateur-image { position: relative; }
    .fondateur-image img { width: 100%; height: auto; border: 4px solid var(--accent-gold); border-radius: 4px; }
    .fondateur-bio h3 { color: var(--white); font-size: 36px; margin-bottom: 8px; }
    .fondateur-title { font-size: 14px; color: var(--accent-gold); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 32px; }
    .fondateur-text { font-size: 15px; line-height: 1.8; color: #d0d0d0; margin-bottom: 32px; }
    .fondateur-text p { margin-bottom: 16px; }
    .timeline { display: flex; flex-direction: column; gap: 16px; margin: 32px 0; padding: 24px 0; border-top: 1px solid rgba(203, 185, 142, 0.3); border-bottom: 1px solid rgba(203, 185, 142, 0.3); }
    .timeline-item { display: flex; gap: 16px; align-items: center; font-size: 14px; }
    .timeline-year { color: var(--accent-gold); font-weight: 700; min-width: 60px; }
    .timeline-text { color: #d0d0d0; }
    .credentials { display: flex; flex-wrap: wrap; gap: 16px; padding-top: 24px; }
    .credential { background: rgba(203, 185, 142, 0.1); border: 1px solid rgba(203, 185, 142, 0.3); color: var(--accent-gold); padding: 12px 20px; border-radius: 4px; font-size: 13px; font-weight: 600; }

    /* METHODE */
    .methode { background: var(--light-ivory); padding: 120px 40px; }
    .methode h2 { margin-bottom: 60px; max-width: 700px; }
    .methode-content { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; max-width: 1200px; margin: 0 auto; }
    .methode-image img { width: 100%; height: auto; border-radius: 4px; box-shadow: var(--box-shadow); }
    .methode-steps { display: flex; flex-direction: column; gap: 32px; }
    .step { display: flex; gap: 24px; }
    .step-number { width: 56px; height: 56px; border: 2px solid var(--accent-gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--font-heading); font-size: 24px; font-weight: 700; color: var(--accent-gold); flex-shrink: 0; }
    .step-content h4 { margin-bottom: 8px; color: var(--text-dark); }
    .step-content p { font-size: 14px; color: var(--text-light); line-height: 1.7; }

    /* INSIGHTS */
    .insights { background: var(--dark-primary); color: var(--white); padding: 120px 40px; }
    .insights h2 { color: var(--white); margin-bottom: 60px; max-width: 700px; }
    .insights-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); gap: 40px; max-width: 1200px; margin: 0 auto; margin-bottom: 48px; }
    .article-card { background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(203, 185, 142, 0.2); border-radius: 6px; overflow: hidden; transition: var(--transition); cursor: pointer; }
    .article-card:hover { background: rgba(203, 185, 142, 0.08); border-color: var(--accent-gold); transform: translateY(-8px); }
    .article-image { width: 100%; height: 220px; overflow: hidden; background: rgba(203, 185, 142, 0.1); }
    .article-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
    .article-card:hover .article-image img { transform: scale(1.05); }
    .article-content { padding: 32px; }
    .article-tag { font-size: 11px; color: var(--accent-gold); text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 12px; display: inline-block; }
    .article-card h4 { color: var(--white); margin-bottom: 12px; font-size: 20px; line-height: 1.4; }
    .article-excerpt { font-size: 14px; color: #d0d0d0; margin-bottom: 16px; line-height: 1.6; }
    .article-date { font-size: 12px; color: var(--muted-gray); }
    .insights-cta { text-align: center; }
    .insights-cta a { color: var(--accent-gold); text-decoration: none; font-weight: 600; font-size: 14px; transition: color 0.3s ease; }
    .insights-cta a:hover { color: var(--accent-hover); }

    /* TESTIMONIALS */
    .testimonials { background: var(--white); padding: 120px 40px; }
    .testimonials h2 { text-align: center; margin-bottom: 60px; }
    .testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 40px; max-width: 1200px; margin: 0 auto; }
    .testimonial-card { background: var(--light-ivory); border: 1px solid #e8e8e8; padding: 40px; border-radius: 6px; box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06); transition: var(--transition); }
    .testimonial-card:hover { box-shadow: var(--box-shadow); }
    .testimonial-quote { position: relative; margin-bottom: 24px; }
    .quote-mark { font-size: 48px; color: var(--accent-gold); margin-bottom: 8px; opacity: 0.6; }
    .testimonial-text { font-size: 15px; color: var(--text-dark); line-height: 1.8; font-style: italic; }
    .testimonial-author { margin-top: 24px; padding-top: 24px; border-top: 1px solid #ddd; }
    .author-name { font-weight: 700; color: var(--text-dark); font-size: 15px; }
    .author-role { font-size: 13px; color: var(--text-light); margin-top: 4px; }

    /* FAQ */
    .faq { background: var(--light-ivory); padding: 120px 40px; }
    .faq h2 { margin-bottom: 60px; max-width: 700px; }
    .faq-container { max-width: 900px; margin: 0 auto; }
    .faq-item { background: var(--white); border: 1px solid #e8e8e8; border-radius: 6px; margin-bottom: 16px; overflow: hidden; transition: box-shadow 0.3s ease; }
    .faq-item:hover { box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06); }
    .faq-header { padding: 24px 32px; display: flex; justify-content: space-between; align-items: center; cursor: pointer; background: var(--white); border: none; width: 100%; text-align: left; font-family: var(--font-heading); font-size: 18px; font-weight: 600; color: var(--text-dark); transition: background 0.3s ease; }
    .faq-header:hover { background: #fafaf8; }
    .faq-toggle { width: 28px; height: 28px; border: 2px solid var(--accent-gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--accent-gold); font-weight: bold; flex-shrink: 0; transition: transform 0.3s ease; }
    .faq-item.open .faq-toggle { transform: rotate(180deg); }
    .faq-content { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; background: rgba(203, 185, 142, 0.04); }
    .faq-item.open .faq-content { max-height: 400px; }
    .faq-answer { padding: 32px; font-size: 14px; line-height: 1.8; color: var(--text-light); }

    /* CONSULTATION */
    .consultation { background: linear-gradient(135deg, rgba(26, 34, 51, 0.9) 0%, rgba(26, 34, 51, 0.7) 100%), url('/assets/img/11062b_42019dfb241c4d819a98672c3d3e01bb-mv2.jpg') center 35%/cover;  color: var(--white); padding: 120px 40px; position: relative; }
    .consultation h2 { color: var(--white); margin-bottom: 60px; text-align: center; }
    .consultation-wrapper { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; max-width: 1200px; margin: 0 auto; align-items: flex-start; }
    .consultation-options { display: flex; flex-direction: column; gap: 24px; }
    .option-card { background: rgba(255, 255, 255, 0.08); border: 1px solid rgba(203, 185, 142, 0.3); padding: 32px; border-radius: 6px; transition: var(--transition); }
    .option-card:hover { background: rgba(203, 185, 142, 0.12); border-color: var(--accent-gold); }
    .option-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; }
    .option-card h4 { color: var(--white); margin: 0; }
    .option-price { color: var(--accent-gold); font-family: var(--font-heading); font-size: 18px; font-weight: 700; }
    .option-meta { font-size: 13px; color: #b0b0b0; margin-bottom: 12px; }
    .option-card p { font-size: 14px; color: #d0d0d0; margin: 0; }
    .consultation-form { background: rgba(255, 255, 255, 0.08); border: 1px solid rgba(203, 185, 142, 0.3); padding: 40px; border-radius: 6px; }
    .form-group { display: flex; flex-direction: column; margin-bottom: 24px; }
    .form-group label { font-size: 13px; font-weight: 600; margin-bottom: 8px; color: var(--white); text-transform: uppercase; letter-spacing: 0.5px; }
    .form-group input, .form-group textarea, .form-group select { font-family: var(--font-body); padding: 12px 16px; border: 1px solid rgba(203, 185, 142, 0.3); border-radius: 4px; background: rgba(255, 255, 255, 0.08); color: var(--white); font-size: 14px; transition: border-color 0.3s ease; }
    .form-group input::placeholder, .form-group textarea::placeholder { color: #b0b0b0; }
    .form-group input:focus, .form-group textarea:focus, .form-group select:focus { outline: none; border-color: var(--accent-gold); }
    .form-group select option { background: var(--dark-primary); color: var(--white); }
    .form-group textarea { resize: vertical; min-height: 100px; }
    .form-group.submit { margin-top: 32px; }


    /* FOOTER */
    footer { background: var(--very-dark); color: var(--white); padding: 80px 40px 40px; }
    .footer-content { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 48px; max-width: 1200px; margin: 0 auto 48px; }
    .footer-section h3 { color: var(--white); margin-bottom: 24px; font-size: 18px; }
    .footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
    .footer-logo img { width: 40px; height: 48px; object-fit: contain; }
    .footer-logo-text h3 { margin: 0; font-size: 16px; }
    .footer-tagline { font-size: 12px; color: #a0a0a0; margin-top: 8px; }
    .footer-links { display: flex; flex-direction: column; gap: 12px; list-style: none; }
    .footer-links a { color: #b0b0b0; text-decoration: none; font-size: 14px; transition: color 0.3s ease; }
    .footer-links a:hover { color: var(--accent-gold); }
    .footer-contact { font-size: 14px; line-height: 1.8; }
    .footer-contact p { color: #b0b0b0; margin-bottom: 8px; }
    .footer-contact a { color: var(--accent-gold); text-decoration: none; transition: color 0.3s ease; }
    .footer-contact a:hover { color: var(--accent-hover); }
    .footer-bottom { max-width: 1200px; margin: 0 auto; padding-top: 32px; border-top: 1px solid rgba(203, 185, 142, 0.2); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 24px; font-size: 12px; color: #a0a0a0; }
    .footer-bottom a { color: #a0a0a0; text-decoration: none; transition: color 0.3s ease; }
    .footer-bottom a:hover { color: var(--accent-gold); }

    /* SCROLL REVEAL */
    .reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.8s ease, transform 0.8s ease; }
    .reveal.active { opacity: 1; transform: translateY(0); }

    
    .cookie-decline:hover { border-color: var(--white); }

    /* RESPONSIVE */
    @media (max-width: 1200px) { .container { padding: 0 32px; } .consultation-wrapper { grid-template-columns: 1fr; } .fondateur-content { gap: 48px; } .methode-content { gap: 48px; } }
    @media (max-width: 960px) { nav { padding: 0 24px; } .nav-menu { display: none; } .hamburger { display: flex; } .mobile-menu.active { display: flex; } .hero h1 { font-size: 44px; } h2 { font-size: 36px; } .fondateur-content, .methode-content { grid-template-columns: 1fr; } .trust-grid { grid-template-columns: repeat(2, 1fr); } .trust-item { border-right: none; border-bottom: 1px solid var(--muted-gray); padding-bottom: 24px; } }
    @media (max-width: 768px) { nav { padding: 0 20px; } .container { padding: 0 20px; } .nav-logo { width: 40px; height: 48px; } .nav-text h1 { font-size: 16px; } .hero { height: 500px; margin-top: 80px; } .hero h1 { font-size: 36px; } .hero p { font-size: 16px; } h1 { font-size: 36px; } h2 { font-size: 28px; } h3 { font-size: 24px; } h4 { font-size: 18px; } .expertises, .situations, .fondateur, .methode, .insights, .testimonials, .faq, .consultation { padding: 80px 20px; } .expertises-grid, .situations-grid, .insights-grid, .testimonials-grid { grid-template-columns: 1fr; } .trust-grid { grid-template-columns: 1fr; } .trust-item { border: none; } .hero-badges { flex-direction: column; gap: 16px; } .floating-bar { display: flex; } .email-button { bottom: 100px; } .consultation-options { display: grid; grid-template-columns: 1fr; } }
    @media (max-width: 480px) { nav { height: 70px; padding: 0 16px; } html { scroll-padding-top: 70px; } .nav-text h1 { font-size: 14px; } .nav-text p { font-size: 9px; } .hero { height: 400px; margin-top: 70px; } .hero h1 { font-size: 28px; } .hero p { font-size: 14px; margin-bottom: 24px; } .hero-buttons { gap: 12px; margin-bottom: 24px; } .btn { padding: 12px 24px; font-size: 12px; } h1 { font-size: 28px; } h2 { font-size: 24px; } h3 { font-size: 20px; } h4 { font-size: 16px; } .expertises, .situations, .fondateur, .methode, .insights, .testimonials, .faq, .consultation { padding: 60px 16px; } .footer-bottom { flex-direction: column; text-align: center; } }
  
/* FLOATING CTA */
.float-cta{position:fixed;bottom:0;left:0;right:0;z-index:500;display:flex;background:rgba(26,34,51,.98);backdrop-filter:blur(10px);border-top:1px solid rgba(203,185,142,.25);transform:translateY(100%);transition:transform .4s cubic-bezier(.4,0,.2,1);padding:0}
.float-cta.visible{transform:translateY(0)}
.float-phone{flex:0 0 auto;display:flex;align-items:center;gap:8px;padding:14px 18px;color:var(--accent-gold);font-size:.82rem;font-weight:400;border-right:1px solid rgba(255,255,255,.08);transition:background .2s;text-decoration:none}
.float-phone:hover{background:rgba(255,255,255,.05)}
.float-phone svg{flex-shrink:0}
.float-book{flex:1;display:flex;align-items:center;justify-content:center;gap:8px;padding:14px 20px;background:var(--accent-gold);color:var(--dark-primary);font-size:.82rem;font-weight:600;letter-spacing:.06em;text-transform:uppercase;transition:background .2s;text-decoration:none}
.float-book:hover{background:var(--accent-hover)}
@media(min-width:961px){.float-cta{left:auto;right:24px;bottom:24px;width:auto;flex-direction:column;border-top:none;border-radius:6px;box-shadow:0 8px 32px rgba(0,0,0,.25);overflow:hidden;max-width:260px}.float-phone{border-right:none;border-bottom:1px solid rgba(255,255,255,.08);padding:12px 20px;justify-content:center}.float-book{padding:14px 24px}}
/* CTA PULSE */
@keyframes ctaPulse{0%{box-shadow:0 0 0 0 rgba(203,185,142,.4)}70%{box-shadow:0 0 0 12px rgba(203,185,142,0)}100%{box-shadow:0 0 0 0 rgba(203,185,142,0)}}
.float-book,.btn-primary{animation:ctaPulse 2.5s infinite}
.float-book:hover,.btn-primary:hover{animation:none}
/* BACK TO TOP */
.btt{position:fixed;bottom:80px;right:24px;z-index:400;width:40px;height:40px;background:var(--dark-primary);color:var(--accent-gold);border:1px solid rgba(203,185,142,.25);border-radius:4px;display:flex;align-items:center;justify-content:center;font-size:1rem;cursor:pointer;opacity:0;transform:translateY(10px);transition:all .3s;pointer-events:none;text-decoration:none}
.btt.visible{opacity:1;transform:translateY(0);pointer-events:auto}
.btt:hover{background:var(--accent-gold);color:var(--dark-primary)}
@media(max-width:960px){.btt{bottom:70px;right:16px}}

    /* === 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; }
    }
