/* ==========================================================================
   MDPL Immigration - Feuille de styles partagée
   ========================================================================== */

:root {
  --navy:       #0D1B2E;
  --navy-mid:   #162440;
  --navy-light: #1E3258;
  --gold:       #C49A2A;
  --gold-light: #D4A843;
  --gold-pale:  #F0DFA8;
  --white:      #FFFFFF;
  --beige:      #F6F1E9;
  --beige-mid:  #EDE5D8;
  --beige-dark: #D9CDB8;
  --ink:        #1A1A1A;
  --ink-mid:    #3A3530;
  --ink-light:  #6B635A;
  --crimson:    #8B1A1A;
  --gap: clamp(1.25rem, 4vw, 2.5rem);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--beige);
  color: var(--ink);
  font-family: 'Cormorant Garamond', Georgia, serif;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; object-fit: cover; }

/* ==========================================================================
   TOP BANNER
   ========================================================================== */
.top-banner { background: var(--navy-mid); padding: 0.45rem var(--gap); border-bottom: 1px solid rgba(184,146,42,0.2); }
.top-banner-inner { max-width: 1280px; margin: 0 auto; display: flex; align-items: center; justify-content: flex-end; flex-wrap: wrap; gap: 1.25rem; }
.top-banner-item { display: flex; align-items: center; gap: 0.4rem; font-family: 'Jost', sans-serif; font-size: 0.67rem; letter-spacing: 0.06em; color: rgba(255,255,255,0.55); }
.top-banner-item strong { color: var(--gold-pale); font-weight: 500; }
.top-banner-item a { transition: color 0.2s; }
.top-banner-item a:hover { color: var(--gold-light); }
.top-banner-sep { color: rgba(184,146,42,0.3); }

/* ==========================================================================
   HEADER
   ========================================================================== */
.site-header { background: var(--white); border-bottom: 1px solid var(--beige-dark); position: sticky; top: 0; z-index: 200; box-shadow: 0 2px 20px rgba(13,27,46,0.08); }
.header-inner { max-width: 1280px; margin: 0 auto; padding: 0 var(--gap); display: flex; align-items: center; justify-content: space-between; height: 72px; gap: 2rem; }
.logo { display: flex; flex-direction: column; line-height: 1; flex-shrink: 0; }
.logo-name { font-family: 'Playfair Display', serif; font-size: 1.2rem; font-weight: 700; color: var(--navy); letter-spacing: 0.01em; }
.logo-name span { color: var(--gold); font-style: italic; }
.logo-sub { font-family: 'Jost', sans-serif; font-size: 0.54rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--ink-light); margin-top: 0.2rem; }

.site-nav { display: flex; align-items: center; gap: 0.95rem; }
.site-nav > a, .nav-dropdown > a { font-family: 'Jost', sans-serif; font-size: 0.7rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-mid); transition: color 0.2s; position: relative; white-space: nowrap; padding: 0.3rem 0; }
.site-nav > a::after, .nav-dropdown > a::after { content: ''; position: absolute; bottom: -3px; left: 0; right: 0; height: 1px; background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform 0.25s; }
.site-nav > a:hover, .nav-dropdown > a:hover { color: var(--navy); }
.site-nav > a:hover::after, .nav-dropdown:hover > a::after { transform: scaleX(1); }
.site-nav > a.active, .nav-dropdown.active > a { color: var(--navy); }
.site-nav > a.active::after, .nav-dropdown.active > a::after { transform: scaleX(1); }

/* DROPDOWN */
.nav-dropdown { position: relative; }
.nav-dropdown > a { display: inline-flex; align-items: center; gap: 0.4rem; cursor: pointer; }
.nav-dropdown .caret { font-size: 0.55rem; transition: transform 0.25s; display: inline-block; }
.nav-dropdown:hover .caret { transform: rotate(180deg); }
.nav-dropdown-menu {
  position: absolute; top: 100%; left: -1rem; min-width: 280px;
  background: var(--white); border: 1px solid var(--beige-dark);
  box-shadow: 0 12px 32px rgba(13,27,46,0.18); padding: 0.6rem 0;
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: opacity 0.25s, visibility 0.25s, transform 0.25s;
  z-index: 300;
  border-top: 2px solid var(--gold);
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-dropdown-menu a {
  display: block; padding: 0.7rem 1.25rem;
  font-family: 'Jost', sans-serif; font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.06em; color: var(--ink-mid);
  transition: background 0.2s, color 0.2s, padding-left 0.2s;
  border-left: 2px solid transparent;
  text-transform: none;
}
.nav-dropdown-menu a:hover { background: var(--beige); color: var(--navy); border-left-color: var(--gold); padding-left: 1.5rem; }
.nav-dropdown-menu a::after { display: none; }

.nav-rdv { background: var(--gold) !important; color: var(--navy) !important; padding: 0.55rem 1.1rem !important; border-radius: 2px; font-weight: 600 !important; letter-spacing: 0.1em !important; }
.nav-rdv:hover { background: var(--gold-light) !important; }
.nav-rdv::after { display: none !important; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--navy); border-radius: 2px; transition: transform 0.3s, opacity 0.3s; }

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn-gold { display: inline-block; background: var(--gold); color: var(--navy); font-family: 'Jost', sans-serif; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; padding: 0.9rem 1.8rem; border-radius: 2px; transition: background 0.2s, transform 0.15s; cursor: pointer; border: none; }
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); }
.btn-ghost { display: inline-block; background: transparent; color: var(--white); font-family: 'Jost', sans-serif; font-size: 0.72rem; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; padding: 0.9rem 1.8rem; border: 1.5px solid rgba(255,255,255,0.35); border-radius: 2px; transition: all 0.2s; }
.btn-ghost:hover { border-color: var(--white); background: rgba(255,255,255,0.06); }
.btn-outline { display: inline-block; background: transparent; color: var(--navy); font-family: 'Jost', sans-serif; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; padding: 0.85rem 1.7rem; border: 1.5px solid var(--navy); border-radius: 2px; transition: all 0.2s; }
.btn-outline:hover { background: var(--navy); color: var(--white); }
.btn-outline.gold { color: var(--gold); border-color: var(--gold); }
.btn-outline.gold:hover { background: var(--gold); color: var(--navy); }

/* ==========================================================================
   SECTIONS / TYPOGRAPHY
   ========================================================================== */
.section { padding: clamp(3.5rem, 7vw, 6rem) var(--gap); }
.section-inner { max-width: 1280px; margin: 0 auto; }
.section-eyebrow { font-family: 'Jost', sans-serif; font-size: 0.63rem; font-weight: 600; letter-spacing: 0.26em; text-transform: uppercase; color: var(--gold); display: flex; align-items: center; gap: 0.65rem; margin-bottom: 0.5rem; }
.section-eyebrow::before { content: ''; display: block; width: 22px; height: 1px; background: var(--gold); }
.section-title { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 3.2vw, 2.4rem); font-weight: 700; color: var(--navy); line-height: 1.18; margin-bottom: 0.9rem; }
.section-title em { color: var(--gold); font-style: italic; font-weight: 600; }
.section-lead { font-family: 'Cormorant Garamond', serif; font-size: 1.12rem; font-weight: 300; line-height: 1.78; color: var(--ink-mid); max-width: 680px; }

/* ==========================================================================
   HERO (Homepage)
   ========================================================================== */
.hero { display: grid; grid-template-columns: 1fr 1fr; min-height: 88vh; }
.hero-left { background: var(--navy); padding: clamp(3rem, 6vw, 5rem) clamp(2rem, 5vw, 4.5rem); display: flex; flex-direction: column; justify-content: center; position: relative; overflow: hidden; }
.hero-left::before { content: ''; position: absolute; inset: 0; background-image: repeating-linear-gradient(45deg, rgba(196,154,42,0.03) 0, rgba(196,154,42,0.03) 1px, transparent 1px, transparent 60px); }
.hero-left::after { content: ''; position: absolute; bottom: -80px; left: -80px; width: 360px; height: 360px; border-radius: 50%; background: radial-gradient(circle, rgba(196,154,42,0.08) 0%, transparent 70%); }
.hero-label { font-family: 'Jost', sans-serif; font-size: 0.64rem; font-weight: 600; letter-spacing: 0.28em; text-transform: uppercase; color: var(--gold); display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1.5rem; position: relative; z-index: 1; }
.hero-label::before { content: ''; display: block; width: 32px; height: 1px; background: var(--gold); }
.hero-title { font-family: 'Playfair Display', serif; font-size: clamp(2.6rem, 4.8vw, 4rem); font-weight: 900; color: var(--white); line-height: 1.08; letter-spacing: -0.02em; margin-bottom: 0.3rem; position: relative; z-index: 1; }
.hero-title-italic { font-family: 'Playfair Display', serif; font-size: clamp(2.2rem, 4vw, 3.4rem); font-weight: 700; font-style: italic; color: var(--gold); line-height: 1.1; margin-bottom: 2rem; position: relative; z-index: 1; }
.hero-desc { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; font-weight: 300; line-height: 1.75; color: rgba(255,255,255,0.7); max-width: 460px; margin-bottom: 2.5rem; position: relative; z-index: 1; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; position: relative; z-index: 1; }
.hero-right { display: grid; grid-template-rows: 1fr 1fr; gap: 4px; background: var(--navy-mid); }
.hero-img { width: 100%; height: 100%; object-fit: cover; display: block; filter: brightness(0.88) saturate(0.9); transition: filter 0.4s; }
.hero-img:hover { filter: brightness(1) saturate(1); }

/* ==========================================================================
   PAGE HERO (interior pages)
   ========================================================================== */
.page-hero { background: var(--navy); color: var(--white); padding: clamp(3rem, 7vw, 5.5rem) var(--gap) clamp(3rem, 7vw, 5rem); position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; inset: 0; background-image: repeating-linear-gradient(45deg, rgba(196,154,42,0.03) 0, rgba(196,154,42,0.03) 1px, transparent 1px, transparent 60px); pointer-events: none; }
.page-hero::after { content: ''; position: absolute; top: -100px; right: -100px; width: 480px; height: 480px; border-radius: 50%; background: radial-gradient(circle, rgba(196,154,42,0.08) 0%, transparent 70%); pointer-events: none; }
.page-hero-inner { max-width: 1280px; margin: 0 auto; position: relative; z-index: 1; }
.page-hero-eyebrow { font-family: 'Jost', sans-serif; font-size: 0.66rem; font-weight: 600; letter-spacing: 0.28em; text-transform: uppercase; color: var(--gold); display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1.25rem; }
.page-hero-eyebrow::before { content: ''; display: block; width: 32px; height: 1px; background: var(--gold); }
.page-hero-title { font-family: 'Playfair Display', serif; font-size: clamp(2.2rem, 4.5vw, 3.6rem); font-weight: 800; color: var(--white); line-height: 1.1; letter-spacing: -0.015em; margin-bottom: 0.5rem; max-width: 900px; }
.page-hero-title em { color: var(--gold); font-style: italic; font-weight: 700; }
.page-hero-subtitle { font-family: 'Playfair Display', serif; font-size: clamp(1.4rem, 2.6vw, 2rem); font-weight: 600; font-style: italic; color: var(--gold); line-height: 1.2; margin-bottom: 1.5rem; max-width: 900px; }
.page-hero-desc { font-family: 'Cormorant Garamond', serif; font-size: 1.15rem; font-weight: 300; line-height: 1.78; color: rgba(255,255,255,0.7); max-width: 720px; }

/* BREADCRUMB */
.breadcrumb { font-family: 'Jost', sans-serif; font-size: 0.66rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 1.25rem; }
.breadcrumb a { transition: color 0.2s; }
.breadcrumb a:hover { color: var(--gold-light); }
.breadcrumb-sep { margin: 0 0.6rem; color: rgba(196,154,42,0.5); }

/* ==========================================================================
   STATS BAR
   ========================================================================== */
.stats-bar { background: var(--navy-mid); padding: 2.25rem var(--gap); border-top: 1px solid rgba(196,154,42,0.15); border-bottom: 1px solid rgba(196,154,42,0.15); }
.stats-inner { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }
.stat-item { text-align: center; position: relative; }
.stat-item:not(:last-child)::after { content: ''; position: absolute; right: -1rem; top: 15%; bottom: 15%; width: 1px; background: rgba(196,154,42,0.2); }
.stat-num { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 3vw, 2.5rem); font-weight: 700; color: var(--gold); line-height: 1; margin-bottom: 0.4rem; }
.stat-label { font-family: 'Jost', sans-serif; font-size: 0.66rem; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255,255,255,0.6); }

/* ==========================================================================
   PROSE / CONTENT BLOCKS
   ========================================================================== */
.prose { max-width: 820px; }
.prose p { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; line-height: 1.85; color: var(--ink); margin-bottom: 1.2rem; }
.prose p:last-child { margin-bottom: 0; }
.prose p strong { color: var(--navy); font-weight: 600; }
.prose h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.5rem, 2.4vw, 1.9rem); font-weight: 700; color: var(--navy); line-height: 1.25; margin: 2.5rem 0 1rem; }
.prose h2 em { color: var(--gold); font-style: italic; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { font-family: 'Playfair Display', serif; font-size: 1.25rem; font-weight: 700; color: var(--navy); line-height: 1.3; margin: 2rem 0 0.75rem; }
.prose ul, .prose ol { margin: 1rem 0 1.5rem 1.5rem; }
.prose li { font-family: 'Cormorant Garamond', serif; font-size: 1.08rem; line-height: 1.8; color: var(--ink); margin-bottom: 0.5rem; }
.prose li strong { color: var(--navy); font-weight: 600; }
.prose .lead { font-size: 1.2rem; color: var(--ink-mid); font-weight: 400; line-height: 1.8; }

/* PULL QUOTE */
.pull-quote { border-left: 3px solid var(--gold); padding: 0.5rem 0 0.5rem 1.5rem; margin: 2rem 0; font-family: 'Playfair Display', serif; font-size: 1.3rem; font-style: italic; line-height: 1.5; color: var(--navy); }

/* INFO BOX */
.info-box { background: var(--beige); border-left: 3px solid var(--gold); padding: 1.5rem 1.75rem; margin: 2rem 0; border-radius: 0 4px 4px 0; }
.info-box-title { font-family: 'Jost', sans-serif; font-size: 0.66rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.6rem; }
.info-box p { font-family: 'Cormorant Garamond', serif; font-size: 1.02rem; line-height: 1.7; color: var(--ink); margin-bottom: 0.75rem; }
.info-box p:last-child { margin-bottom: 0; }

/* ==========================================================================
   ABOUT / TWO-COLUMN
   ========================================================================== */
.two-col { display: grid; grid-template-columns: 1fr 440px; gap: 5rem; margin-top: 3rem; align-items: start; }
.two-col-image { display: flex; flex-direction: column; gap: 0.25rem; }
.two-col-image .img-main { width: 100%; height: 320px; object-fit: cover; filter: brightness(0.9) saturate(0.85); }
.two-col-image .img-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 0.25rem; }
.two-col-image .img-pair img { height: 160px; object-fit: cover; filter: brightness(0.88) saturate(0.85); }
.two-col-image .caption { font-family: 'Jost', sans-serif; font-size: 0.62rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-light); margin-top: 0.75rem; text-align: right; }

/* ==========================================================================
   PILLARS / VALUES
   ========================================================================== */
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 2.5rem; }
.pillar { background: var(--beige); border-left: 3px solid var(--gold); padding: 1.5rem 1.5rem; }
.pillar-title { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 700; color: var(--navy); margin-bottom: 0.5rem; }
.pillar-desc { font-family: 'Cormorant Garamond', serif; font-size: 0.98rem; line-height: 1.65; color: var(--ink-mid); }

/* ==========================================================================
   SERVICES GRID
   ========================================================================== */
.services-section { background: var(--navy); color: var(--white); position: relative; overflow: hidden; }
.services-section::before { content: ''; position: absolute; top: 0; right: 0; width: 480px; height: 480px; background: radial-gradient(circle, rgba(196,154,42,0.06) 0%, transparent 70%); pointer-events: none; }
.services-section .section-title { color: var(--white); }
.services-section .section-title em { color: var(--gold); }
.services-section .section-lead { color: rgba(255,255,255,0.65); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; margin-top: 3rem; position: relative; z-index: 1; }
.service-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(196,154,42,0.18); padding: 2rem 1.75rem 1.75rem; display: flex; flex-direction: column; transition: all 0.3s ease; position: relative; overflow: hidden; }
.service-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform 0.4s ease; }
.service-card:hover { background: rgba(255,255,255,0.07); border-color: rgba(196,154,42,0.4); transform: translateY(-4px); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon { width: 48px; height: 48px; border: 1px solid var(--gold); display: flex; align-items: center; justify-content: center; margin-bottom: 1.25rem; color: var(--gold); font-size: 0.9rem; font-family: 'Jost', sans-serif; font-weight: 600; letter-spacing: 0.05em; }
.service-num { font-family: 'Jost', sans-serif; font-size: 0.58rem; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.6rem; }
.service-title { font-family: 'Playfair Display', serif; font-size: 1.25rem; font-weight: 700; color: var(--white); line-height: 1.25; margin-bottom: 0.75rem; }
.service-desc { font-family: 'Cormorant Garamond', serif; font-size: 1rem; line-height: 1.7; color: rgba(255,255,255,0.62); margin-bottom: 1.25rem; flex: 1; }
.service-btn { display: inline-flex; align-items: center; gap: 0.5rem; font-family: 'Jost', sans-serif; font-size: 0.68rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); padding: 0.65rem 1.1rem; border: 1px solid var(--gold); border-radius: 2px; transition: all 0.25s ease; align-self: flex-start; cursor: pointer; background: transparent; }
.service-btn::after { content: '\2192'; transition: transform 0.2s; }
.service-btn:hover { background: var(--gold); color: var(--navy); }
.service-btn:hover::after { transform: translateX(3px); }
.services-cta { margin-top: 3rem; text-align: center; position: relative; z-index: 1; }
.services-cta p { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 1.1rem; color: rgba(255,255,255,0.7); margin-bottom: 1.25rem; }

/* SERVICE PAGE - Detail card list */
.service-features { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; margin: 2rem 0 2.5rem; }
.feature-item { background: var(--white); border: 1px solid var(--beige-dark); padding: 1.5rem 1.5rem 1.4rem; border-top: 3px solid var(--gold); }
.feature-title { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 700; color: var(--navy); margin-bottom: 0.5rem; }
.feature-desc { font-family: 'Cormorant Garamond', serif; font-size: 1rem; line-height: 1.65; color: var(--ink-mid); }

/* ==========================================================================
   WHY MDPL - Numbered list
   ========================================================================== */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; margin-top: 3rem; align-items: center; }
.why-list { list-style: none; display: grid; gap: 1.1rem; }
.why-list li { display: flex; gap: 1rem; align-items: flex-start; padding-bottom: 1.1rem; border-bottom: 1px solid var(--beige-dark); }
.why-list li:last-child { border-bottom: none; }
.why-mark { flex-shrink: 0; width: 32px; height: 32px; background: var(--navy); color: var(--gold); display: flex; align-items: center; justify-content: center; font-family: 'Playfair Display', serif; font-weight: 700; font-size: 0.9rem; margin-top: 0.15rem; }
.why-text { font-family: 'Cormorant Garamond', serif; font-size: 1.08rem; line-height: 1.7; color: var(--ink); }
.why-text strong { font-family: 'Playfair Display', serif; font-weight: 700; color: var(--navy); display: block; font-size: 1.15rem; margin-bottom: 0.15rem; }
.why-image { position: relative; }
.why-image img { width: 100%; height: 520px; object-fit: cover; filter: brightness(0.92) saturate(0.9); }
.why-image-badge { position: absolute; bottom: -1px; right: -1px; background: var(--gold); color: var(--navy); padding: 1.25rem 1.75rem; max-width: 240px; }
.why-image-badge-num { font-family: 'Playfair Display', serif; font-size: 2.2rem; font-weight: 900; line-height: 1; margin-bottom: 0.3rem; }
.why-image-badge-label { font-family: 'Jost', sans-serif; font-size: 0.66rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; }

/* ==========================================================================
   PROCESS - Numbered steps
   ========================================================================== */
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; margin-top: 3rem; }
.process-step { position: relative; padding: 0 0.5rem; }
.process-step::before { content: ''; position: absolute; top: 24px; left: 60px; right: -1.5rem; height: 1px; background: var(--beige-dark); z-index: 0; }
.process-step:last-child::before { display: none; }
.process-num { width: 48px; height: 48px; border-radius: 50%; background: var(--navy); color: var(--gold); display: flex; align-items: center; justify-content: center; font-family: 'Playfair Display', serif; font-size: 1.05rem; font-weight: 700; margin-bottom: 1.25rem; position: relative; z-index: 1; }
.process-title { font-family: 'Playfair Display', serif; font-size: 1.05rem; font-weight: 700; color: var(--navy); margin-bottom: 0.5rem; }
.process-desc { font-family: 'Cormorant Garamond', serif; font-size: 0.98rem; line-height: 1.65; color: var(--ink-mid); }

/* ==========================================================================
   FAQ (improved - no harsh white)
   ========================================================================== */
.faq-list { display: grid; gap: 0.85rem; margin-top: 3rem; }
.faq-item {
  border: 1px solid rgba(13,27,46,0.1);
  border-radius: 6px;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 2px 12px rgba(13,27,46,0.04);
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}
.faq-item.open { border-color: var(--gold); box-shadow: 0 6px 24px rgba(13,27,46,0.1); }
.faq-heading { margin: 0; }
.faq-question {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  padding: 1.2rem 1.5rem; background: var(--navy); color: var(--white);
  border: none; font-family: 'Jost', sans-serif; font-size: 0.92rem;
  font-weight: 500; letter-spacing: 0.01em; text-align: left; cursor: pointer;
  transition: background 0.3s ease;
}
.faq-question:hover { background: var(--navy-light); }
.faq-item.open .faq-question { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%); }
.faq-toggle {
  display: inline-flex; align-items: center; justify-content: center;
  width: 1.9rem; height: 1.9rem; border-radius: 50%;
  background: rgba(255,255,255,0.15); color: var(--gold-pale);
  font-size: 1rem; font-weight: 700; flex-shrink: 0; margin-left: 1rem;
  transition: all 0.3s ease;
}
.faq-item.open .faq-toggle { background: var(--gold); color: var(--navy); }
.faq-answer {
  max-height: 0; overflow: hidden;
  padding: 0 1.5rem;
  font-family: 'Cormorant Garamond', serif; font-size: 1.05rem;
  line-height: 1.8; color: var(--ink);
  background: #FBF7EE;
  transition: max-height 0.4s ease;
}
.faq-item.open .faq-answer {
  max-height: 1200px;
  padding: 1.4rem 1.5rem 1.6rem;
  border-top: 1px solid var(--beige-dark);
}
.faq-answer p { margin-bottom: 0.8rem; }
.faq-answer p:last-child { margin-bottom: 0; }
.faq-answer strong { color: var(--navy); font-weight: 600; }

/* ==========================================================================
   CONTACT
   ========================================================================== */
.contact-section { background: linear-gradient(135deg, #2f5f8f 0%, #1E3258 100%); color: #ffffff; padding: clamp(3.5rem, 7vw, 6rem) var(--gap); position: relative; overflow: hidden; }
.contact-section::before { content: ''; position: absolute; top: -100px; left: -100px; width: 400px; height: 400px; border-radius: 50%; background: radial-gradient(circle, rgba(196,154,42,0.1) 0%, transparent 70%); pointer-events: none; }
.contact-inner { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: 1.2fr 1fr; gap: 2.5rem; align-items: start; position: relative; z-index: 1; }
.contact-eyebrow { font-family: 'Jost', sans-serif; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold-pale); margin-bottom: 1rem; }
.contact-title { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; line-height: 1.05; margin-bottom: 2rem; }
.contact-title em { color: var(--gold); font-style: italic; }
.contact-details { display: grid; gap: 1rem; }
.contact-detail-block { padding: 1.1rem 1.25rem; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12); border-radius: 4px; transition: background 0.2s; }
.contact-detail-block:hover { background: rgba(255,255,255,0.12); }
.contact-detail-label { font-family: 'Jost', sans-serif; font-size: 0.68rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255,255,255,0.8); margin-bottom: 0.35rem; }
.contact-detail-text { font-family: 'Cormorant Garamond', serif; font-size: 1rem; line-height: 1.7; color: rgba(255,255,255,0.95); }
.contact-detail-text a:hover { color: var(--gold-pale); }
.contact-form { display: grid; gap: 1rem; background: rgba(255,255,255,0.07); padding: 1.75rem; border-radius: 8px; border: 1px solid rgba(255,255,255,0.14); }
.form-field { display: grid; gap: 0.5rem; font-family: 'Jost', sans-serif; color: rgba(255,255,255,0.9); }
.form-field span { font-size: 0.82rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; }
.form-field input,
.form-field textarea,
.form-field select { width: 100%; border: 1px solid rgba(255,255,255,0.2); border-radius: 4px; background: rgba(255,255,255,0.15); color: #ffffff; font-family: 'Jost', sans-serif; font-size: 0.95rem; padding: 0.85rem 1rem; outline: none; }
.form-field input::placeholder,
.form-field textarea::placeholder { color: rgba(255,255,255,0.65); }
.form-field select option { color: var(--navy); }
.form-field textarea { min-height: 140px; resize: vertical; }
.btn-send { display: inline-flex; align-items: center; justify-content: center; background: var(--gold); color: var(--navy); border: none; border-radius: 4px; padding: 0.95rem 1.4rem; font-family: 'Jost', sans-serif; font-size: 0.85rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; cursor: pointer; transition: background 0.2s, transform 0.15s; }
.btn-send:hover { background: var(--gold-light); transform: translateY(-1px); }
.btn-send:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }
.form-status { font-family: 'Jost', sans-serif; font-size: 0.82rem; line-height: 1.55; padding: 0.85rem 1.1rem; border-radius: 4px; display: none; }
.form-status--success { display: block; background: rgba(80,200,120,0.15); border: 1px solid rgba(80,200,120,0.45); color: #c8ffd8; }
.form-status--error { display: block; background: rgba(255,90,90,0.12); border: 1px solid rgba(255,90,90,0.4); color: #ffd0d0; }
.form-status--error a { color: var(--gold); }

/* ==========================================================================
   CTA BAND
   ========================================================================== */
.cta-band { background: var(--navy); color: var(--white); padding: clamp(2.5rem, 5vw, 4rem) var(--gap); text-align: center; position: relative; overflow: hidden; }
.cta-band::before { content: ''; position: absolute; bottom: -100px; right: -100px; width: 400px; height: 400px; border-radius: 50%; background: radial-gradient(circle, rgba(196,154,42,0.08) 0%, transparent 70%); pointer-events: none; }
.cta-band-inner { max-width: 900px; margin: 0 auto; position: relative; z-index: 1; }
.cta-band h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 700; line-height: 1.2; margin-bottom: 0.75rem; }
.cta-band h2 em { color: var(--gold); font-style: italic; }
.cta-band p { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; color: rgba(255,255,255,0.65); margin-bottom: 1.75rem; line-height: 1.7; }
.cta-band-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ==========================================================================
   DISCLAIMER
   ========================================================================== */
.disclaimer-section { background: var(--beige-mid); border-top: 1px solid var(--beige-dark); border-bottom: 1px solid var(--beige-dark); padding: 2.25rem var(--gap); }
.disclaimer-inner { max-width: 1280px; margin: 0 auto; display: flex; gap: 1.5rem; align-items: flex-start; }
.disclaimer-bar { flex-shrink: 0; width: 3px; background: var(--crimson); align-self: stretch; min-height: 36px; }
.disclaimer-title { font-family: 'Jost', sans-serif; font-size: 0.62rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--crimson); margin-bottom: 0.4rem; }
.disclaimer-text { font-family: 'Cormorant Garamond', serif; font-size: 1rem; line-height: 1.78; color: var(--ink-mid); }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer { background: var(--navy); padding: clamp(3rem, 5vw, 4.5rem) var(--gap) 0; }
.footer-inner { max-width: 1280px; margin: 0 auto; }
.footer-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 3.5rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-logo-name { font-family: 'Playfair Display', serif; font-size: 1.25rem; font-weight: 700; color: var(--white); }
.footer-logo-name span { color: var(--gold); font-style: italic; }
.footer-logo-sub { font-family: 'Jost', sans-serif; font-size: 0.54rem; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(255,255,255,0.3); margin-top: 0.2rem; margin-bottom: 1rem; }
.footer-desc { font-family: 'Cormorant Garamond', serif; font-size: 0.97rem; line-height: 1.75; color: rgba(255,255,255,0.52); max-width: 320px; }
.footer-col-title { font-family: 'Jost', sans-serif; font-size: 0.6rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 1.25rem; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.55rem; }
.footer-links a { font-family: 'Jost', sans-serif; font-size: 0.78rem; color: rgba(255,255,255,0.55); transition: color 0.2s; }
.footer-links a:hover { color: var(--gold-light); }
.footer-contact-block { display: flex; flex-direction: column; gap: 0.85rem; }
.footer-contact-label { font-family: 'Jost', sans-serif; font-size: 0.55rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.4); display: block; margin-bottom: 0.2rem; }
.footer-contact-value { font-family: 'Cormorant Garamond', serif; font-size: 0.95rem; color: rgba(255,255,255,0.75); line-height: 1.55; }
.footer-contact-value:hover { color: var(--gold-light); }
.footer-address { font-family: 'Cormorant Garamond', serif; font-size: 0.95rem; color: rgba(255,255,255,0.75); line-height: 1.55; font-style: normal; }
.footer-address a:hover { color: var(--gold-light); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding: 1.5rem 0; flex-wrap: wrap; gap: 1rem; }
.footer-bottom p { font-family: 'Jost', sans-serif; font-size: 0.72rem; color: rgba(255,255,255,0.4); }
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { font-family: 'Jost', sans-serif; font-size: 0.72rem; color: rgba(255,255,255,0.4); transition: color 0.2s; }
.footer-legal a:hover { color: var(--gold-light); }

/* ==========================================================================
   ANIMATIONS
   ========================================================================== */
@keyframes fadeUp { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } }
.hero-label        { animation: fadeUp 0.5s ease both 0.1s; }
.hero-title        { animation: fadeUp 0.5s ease both 0.22s; }
.hero-title-italic { animation: fadeUp 0.5s ease both 0.3s; }
.hero-desc         { animation: fadeUp 0.5s ease both 0.4s; }
.hero-actions      { animation: fadeUp 0.5s ease both 0.5s; }
.page-hero-eyebrow  { animation: fadeUp 0.5s ease both 0.1s; }
.page-hero-title    { animation: fadeUp 0.5s ease both 0.22s; }
.page-hero-subtitle { animation: fadeUp 0.5s ease both 0.3s; }
.page-hero-desc     { animation: fadeUp 0.5s ease both 0.4s; }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1100px) {
  .site-nav { gap: 1.1rem; }
  .site-nav > a, .nav-dropdown > a { font-size: 0.66rem; letter-spacing: 0.08em; }
}
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-right { grid-template-rows: 1fr; grid-template-columns: 1fr 1fr; height: 320px; }
  .two-col { grid-template-columns: 1fr; gap: 3rem; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .why-image img { height: 380px; }
  .process-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
  .process-step::before { display: none; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); gap: 2.5rem 1.5rem; }
  .stat-item:not(:last-child)::after { display: none; }
  .contact-inner { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .service-features { grid-template-columns: 1fr; }
}
@media (max-width: 860px) {
  .services-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .stats-inner { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
}
@media (max-width: 580px) {
  .hero-right { grid-template-columns: 1fr; height: 240px; }
  .top-banner-inner { justify-content: center; gap: 0.75rem; }
  .top-banner-item { font-size: 0.65rem; }
  .header-inner { padding: 0 1rem; }
  .logo-name { font-size: 1rem; }
  .logo-sub { font-size: 0.48rem; }
  .hero-left { padding: clamp(1.5rem, 8vw, 3rem) 1.25rem; }
  .hero-desc { font-size: 0.98rem; }
  .why-image-badge { padding: 1rem 1.25rem; }
  .why-image-badge-num { font-size: 1.8rem; }
  .faq-question { font-size: 0.88rem; padding: 1rem 1.15rem; }
  .faq-answer { font-size: 0.98rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .disclaimer-inner { flex-direction: column; gap: 0.75rem; }
  .disclaimer-bar { width: 28px; height: 3px; align-self: auto; }
  .top-banner-sep { display: none; }
}

/* ==========================================================================
   BLOG-SPECIFIC STYLES (page blog.html)
   ========================================================================== */

/* QUI SOMMES-NOUS du blog */
.about-section { background: var(--white); }
.about-grid { display: grid; grid-template-columns: 1fr 420px; gap: 5rem; margin-top: 3rem; align-items: start; }
.about-text p { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; line-height: 1.85; color: var(--ink); margin-bottom: 1.1rem; }
.about-text p:last-child { margin-bottom: 0; }
.about-image-block { display: flex; flex-direction: column; gap: 0.25rem; }
.about-img-main { width: 100%; height: 280px; object-fit: cover; filter: brightness(0.9) saturate(0.85); }
.about-img-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 0.25rem; }
.about-img-pair img { width: 100%; height: 160px; object-fit: cover; filter: brightness(0.88) saturate(0.85); }
.about-caption { font-family: 'Jost', sans-serif; font-size: 0.62rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-light); margin-top: 0.5rem; text-align: center; }
.about-pillars { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; margin-top: 2rem; }

/* CATEGORIES */
.categories-section { background: var(--navy); position: relative; overflow: hidden; }
.categories-section::before { content: ''; position: absolute; top: -120px; right: -120px; width: 500px; height: 500px; border-radius: 50%; background: radial-gradient(circle, rgba(196,154,42,0.06) 0%, transparent 70%); }
.categories-section .section-eyebrow { color: var(--gold-light); }
.categories-section .section-eyebrow::before { background: var(--gold-light); }
.categories-section .section-title { color: var(--white); }
.categories-section .section-lead { color: rgba(255,255,255,0.58); }
.cat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin-top: 3rem; border: 1px solid rgba(196,154,42,0.15); position: relative; z-index: 1; }
.cat-card { background: rgba(255,255,255,0.03); display: flex; flex-direction: column; cursor: pointer; transition: background 0.25s; overflow: hidden; text-decoration: none; }
.cat-card:hover { background: rgba(255,255,255,0.07); }
.cat-card-img { width: 100%; height: 160px; object-fit: cover; filter: brightness(0.6) saturate(0.7); transition: filter 0.4s, transform 0.4s; }
.cat-card:hover .cat-card-img { filter: brightness(0.75) saturate(0.85); transform: scale(1.03); }
.cat-card-body { padding: 1.3rem 1.4rem 1.5rem; flex: 1; display: flex; flex-direction: column; gap: 0.5rem; }
.cat-card-num { font-family: 'Jost', sans-serif; font-size: 0.58rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); }
.cat-card-title { font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 600; color: var(--white); line-height: 1.25; }
.cat-card-desc { font-family: 'Cormorant Garamond', serif; font-size: 0.9rem; line-height: 1.6; color: rgba(255,255,255,0.5); flex: 1; }
.cat-card-link { font-family: 'Jost', sans-serif; font-size: 0.65rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); display: flex; align-items: center; gap: 0.4rem; margin-top: 0.5rem; transition: gap 0.2s; }
.cat-card:hover .cat-card-link { gap: 0.7rem; }
.cat-card-link::after { content: '\2192'; }

/* SEARCH */
.search-section { background: var(--beige); padding: 1.4rem var(--gap); border-bottom: 1px solid var(--beige-dark); border-top: 1px solid var(--beige-dark); }
.search-inner { max-width: 1280px; margin: 0 auto; display: flex; align-items: center; gap: 1.25rem; flex-wrap: wrap; }
.search-label { font-family: 'Jost', sans-serif; font-size: 0.63rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--navy); white-space: nowrap; flex-shrink: 0; }
.search-form { flex: 1; display: flex; border: 1px solid var(--beige-dark); overflow: hidden; min-width: 200px; max-width: 520px; }
.search-form input { flex: 1; background: var(--white); border: none; padding: 0.65rem 1rem; font-family: 'Jost', sans-serif; font-size: 0.8rem; color: var(--navy); outline: none; min-width: 0; }
.search-form input::placeholder { color: var(--ink-light); }
.search-form button { background: var(--gold); border: none; padding: 0 1.1rem; font-family: 'Jost', sans-serif; font-size: 0.65rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--navy); cursor: pointer; transition: background 0.2s; white-space: nowrap; }
.search-form button:hover { background: var(--gold-light); }
.search-tags { display: flex; flex-wrap: wrap; gap: 0.35rem; align-items: center; }
.search-tag { font-family: 'Jost', sans-serif; font-size: 0.6rem; color: var(--navy); background: rgba(13,27,46,0.06); border: 1px solid var(--beige-dark); padding: 0.18rem 0.55rem; cursor: pointer; transition: all 0.2s; border-radius: 1px; }
.search-tag:hover { color: var(--gold); background: rgba(196,154,42,0.1); border-color: var(--gold); }

/* SEARCH RESULTS */
.search-results { max-width: 1280px; margin: 2rem auto; padding: 0 var(--gap); }
.search-results.hidden { display: none; }
.search-results-header { margin-bottom: 2rem; }
.search-results-title { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 700; color: var(--navy); margin: 0 0 1rem 0; }
.search-results-info { font-family: 'Jost', sans-serif; font-size: 0.85rem; font-weight: 600; letter-spacing: 0.05em; color: var(--ink-mid); }
.search-results-info strong { color: var(--navy); }
.search-results-list { display: grid; gap: 1.5rem; }
.search-result-item { background: var(--white); border: 1px solid var(--beige-dark); border-radius: 8px; padding: 1.75rem; transition: all 0.3s ease; }
.search-result-item:hover { box-shadow: 0 6px 16px rgba(13, 27, 46, 0.12); transform: translateY(-3px); border-color: var(--gold); }
.search-result-title { font-family: 'Playfair Display', serif; font-size: 1.4rem; font-weight: 700; color: var(--navy); margin: 0 0 0.75rem 0; }
.search-result-desc { font-family: 'Cormorant Garamond', serif; font-size: 0.98rem; color: var(--ink-mid); margin: 0 0 1.25rem 0; line-height: 1.7; }
.search-result-link { display: inline-block; font-family: 'Jost', sans-serif; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); text-decoration: none; transition: all 0.3s ease; padding: 0.5rem 1rem; border: 1px solid var(--gold); border-radius: 3px; }
.search-result-link:hover { background: var(--gold); color: var(--navy); }
.search-result-link::after { content: " \2192"; }
.search-empty { text-align: center; padding: 3rem 2rem; background: rgba(196,154,42,0.05); border: 1px solid var(--beige-dark); border-radius: 8px; }
.search-empty-text { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; color: var(--ink-mid); margin: 0; line-height: 1.6; }

/* ARTICLES */
.articles-section { background: var(--beige); }
.articles-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 1.25rem; margin-top: 3rem; }
.article-featured { grid-column: span 7; background: var(--navy); display: flex; flex-direction: column; overflow: hidden; }
.article-featured-img { width: 100%; height: 260px; object-fit: cover; filter: brightness(0.7) saturate(0.8); transition: filter 0.4s; }
.article-featured:hover .article-featured-img { filter: brightness(0.85) saturate(0.9); }
.article-featured-body { padding: 2rem 2rem 1.75rem; flex: 1; display: flex; flex-direction: column; }
.article-tag { display: inline-block; font-family: 'Jost', sans-serif; font-size: 0.58rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; padding: 0.25rem 0.6rem; margin-bottom: 0.85rem; align-self: flex-start; }
.article-tag.navy { background: rgba(255,255,255,0.12); color: var(--gold-pale); }
.article-tag.light { background: var(--beige-mid); color: var(--navy); border: 1px solid var(--beige-dark); }
.article-featured-title { font-family: 'Playfair Display', serif; font-size: 1.3rem; font-weight: 700; color: var(--white); line-height: 1.25; margin-bottom: 0.75rem; }
.article-featured-excerpt { font-family: 'Cormorant Garamond', serif; font-size: 1rem; line-height: 1.75; color: rgba(255,255,255,0.65); margin-bottom: 1rem; flex: 1; }
.article-kw { display: flex; flex-wrap: wrap; gap: 0.3rem; margin-bottom: 1.25rem; }
.kw { font-family: 'Jost', sans-serif; font-size: 0.56rem; font-weight: 500; letter-spacing: 0.06em; color: rgba(255,255,255,0.4); background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); padding: 0.15rem 0.45rem; text-decoration: none; cursor: pointer; }
.kw.dark { color: var(--ink-light); background: var(--beige); border: 1px solid var(--beige-dark); }
a.kw:hover { opacity: 0.75; }
a.search-tag { text-decoration: none; }
.btn-lire { font-family: 'Jost', sans-serif; font-size: 0.67rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; display: inline-flex; align-items: center; gap: 0.4rem; transition: gap 0.2s; }
.btn-lire.light { color: var(--gold); }
.btn-lire.dark { color: var(--navy); }
.btn-lire::after { content: '\2192'; }
.btn-lire:hover { gap: 0.7rem; }
.articles-side { grid-column: span 5; display: flex; flex-direction: column; gap: 1.25rem; }
.article-card-sm { background: var(--white); border: 1px solid var(--beige-dark); overflow: hidden; display: flex; flex-direction: column; flex: 1; transition: box-shadow 0.2s, transform 0.2s; }
.article-card-sm:hover { box-shadow: 0 6px 24px rgba(13,27,46,0.1); transform: translateY(-2px); }
.article-card-sm-img { width: 100%; height: 140px; object-fit: cover; filter: brightness(0.88) saturate(0.85); transition: filter 0.35s; }
.article-card-sm:hover .article-card-sm-img { filter: brightness(1) saturate(1); }
.article-card-sm-body { padding: 1.25rem 1.3rem; display: flex; flex-direction: column; flex: 1; }
.article-card-sm-title { font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 700; color: var(--navy); line-height: 1.3; margin-bottom: 0.5rem; }
.article-card-sm-excerpt { font-family: 'Cormorant Garamond', serif; font-size: 0.95rem; line-height: 1.7; color: var(--ink-mid); margin-bottom: 0.75rem; flex: 1; }
.article-card-bottom { grid-column: span 4; background: var(--white); border: 1px solid var(--beige-dark); overflow: hidden; display: flex; flex-direction: column; transition: box-shadow 0.2s, transform 0.2s; }
.article-card-bottom:hover { box-shadow: 0 6px 24px rgba(13,27,46,0.1); transform: translateY(-2px); }
.article-card-bottom-img { width: 100%; height: 130px; object-fit: cover; filter: brightness(0.88) saturate(0.8); transition: filter 0.35s; }
.article-card-bottom:hover .article-card-bottom-img { filter: brightness(1) saturate(1); }
.article-card-bottom-body { padding: 1.1rem 1.2rem 1.2rem; display: flex; flex-direction: column; flex: 1; }
.article-card-bottom-title { font-family: 'Playfair Display', serif; font-size: 0.98rem; font-weight: 700; color: var(--navy); line-height: 1.28; margin-bottom: 0.5rem; }
.article-card-bottom-excerpt { font-family: 'Cormorant Garamond', serif; font-size: 0.9rem; line-height: 1.65; color: var(--ink-mid); margin-bottom: 0.75rem; flex: 1; }
.articles-cta { margin-top: 2.5rem; text-align: center; }

/* BLOG responsive */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-image-block { display: grid; grid-template-columns: 1fr 1fr; gap: 0.25rem; }
  .about-img-main { grid-column: 1 / -1; height: 220px; }
  .about-img-pair { grid-column: 1 / -1; }
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .articles-grid { grid-template-columns: 1fr 1fr; }
  .article-featured { grid-column: 1 / -1; }
  .articles-side { grid-column: 1 / -1; flex-direction: row; }
  .article-card-sm { flex: 1; }
  .article-card-bottom { grid-column: span 6; }
}
@media (max-width: 860px) {
  .search-inner { flex-direction: column; align-items: stretch; }
  .search-form { max-width: 100%; }
  .articles-side { flex-direction: column; }
  .article-card-bottom { grid-column: 1 / -1; }
  .about-pillars { grid-template-columns: 1fr; }
}

/* ==========================================================================
   HEADER ADJUSTMENT FOR 2 DROPDOWNS + 8 ITEMS
   ========================================================================== */
@media (max-width: 1280px) {
  .site-nav { gap: 0.95rem; }
  .site-nav > a, .nav-dropdown > a { font-size: 0.62rem; letter-spacing: 0.06em; }
  .header-inner { gap: 1rem; }
  .logo-name { font-size: 1.1rem; }
}
@media (max-width: 1180px) {
  .site-nav { gap: 0.75rem; }
  .site-nav > a, .nav-dropdown > a { font-size: 0.58rem; }
  .nav-rdv { padding: 0.5rem 0.85rem !important; font-size: 0.6rem !important; }
}
/* Hamburger menu — breakpoint relevé à 1080px pour couvrir le débordement de la nav
   entre 860 et ~1070px. Ce bloc est placé APRÈS les blocs 1280/1180 pour
   les écraser en cascade et rétablir la mise en page mobile. */
@media (max-width: 1080px) {
  .site-nav {
    position: absolute; top: 72px; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--white); border-top: 1px solid var(--beige-dark);
    padding: 1rem var(--gap);
    transform: translateY(calc(-100% - 72px)); transition: transform 0.28s;
    box-shadow: 0 12px 25px rgba(13,27,46,0.12);
    max-height: calc(100vh - 72px); overflow-y: auto;
  }
  .site-nav.open { transform: translateY(0); }
  .site-nav > a, .nav-dropdown > a { padding: 0.85rem 0; border-bottom: 1px solid var(--beige-dark); font-size: 0.78rem; letter-spacing: 0.1em; }
  .site-nav > a:last-child { border-bottom: none; }
  .nav-toggle { display: flex; }
  .nav-rdv { text-align: center; margin-top: 0.5rem; }
  .nav-dropdown { border-bottom: 1px solid var(--beige-dark); }
  .nav-dropdown > a { border-bottom: none; }
  .nav-dropdown-menu {
    position: static; opacity: 1; visibility: visible; transform: none;
    box-shadow: none; border: none; padding: 0 0 0.5rem 1rem;
    min-width: auto; max-height: 0; overflow: hidden;
    transition: max-height 0.3s ease;
    border-top: none;
  }
  .nav-dropdown.open .nav-dropdown-menu { max-height: 500px; }
  .nav-dropdown-menu a { padding: 0.55rem 0; border-bottom: none; font-size: 0.7rem; color: var(--ink-light); border-left: none; }
  .nav-dropdown-menu a:hover { padding-left: 0.5rem; background: transparent; }
  .nav-dropdown .caret { float: right; }
}

/* ==========================================================================
   TOOLS PAGES
   ========================================================================== */

/* Tools overview grid */
.tools-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 3rem;
}
.tool-card {
  background: var(--white);
  border: 1px solid var(--beige-dark);
  border-top: 3px solid var(--gold);
  padding: 2rem 1.75rem 1.75rem;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  text-decoration: none;
  color: var(--ink);
}
.tool-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(13,27,46,0.12);
  border-top-color: var(--gold-light);
}
.tool-icon {
  width: 56px; height: 56px;
  background: var(--navy); color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem; font-weight: 700;
  margin-bottom: 1.25rem;
  border-radius: 4px;
}
.tool-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem; font-weight: 700;
  color: var(--navy); line-height: 1.3;
  margin-bottom: 0.6rem;
}
.tool-desc {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem; line-height: 1.7;
  color: var(--ink-mid);
  margin-bottom: 1.25rem;
  flex: 1;
}
.tool-cta {
  font-family: 'Jost', sans-serif;
  font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold);
  display: inline-flex; align-items: center; gap: 0.4rem;
  transition: gap 0.2s;
}
.tool-cta::after { content: '\2192'; }
.tool-card:hover .tool-cta { gap: 0.7rem; }

/* Tool form layout */
.tool-form-section { background: var(--white); }
.tool-form-wrapper {
  max-width: 820px;
  margin: 2rem auto 0;
  background: #FBF7EE;
  border: 1px solid var(--beige-dark);
  border-radius: 8px;
  padding: 2.25rem 2rem;
}
.tool-form-group { margin-bottom: 1.5rem; }
.tool-form-group:last-child { margin-bottom: 0; }
.tool-form-label {
  display: block;
  font-family: 'Jost', sans-serif;
  font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 0.55rem;
}
.tool-form-help {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic; font-size: 0.95rem;
  color: var(--ink-light);
  margin-bottom: 0.55rem;
  display: block;
}
.tool-form-input,
.tool-form-select,
.tool-form-textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid var(--beige-dark);
  border-radius: 4px;
  background: var(--white);
  font-family: 'Jost', sans-serif;
  font-size: 0.92rem;
  color: var(--navy);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.tool-form-input:focus,
.tool-form-select:focus,
.tool-form-textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(196,154,42,0.15);
}
.tool-form-textarea { min-height: 120px; resize: vertical; }
.tool-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.tool-form-actions {
  display: flex; gap: 1rem; flex-wrap: wrap;
  margin-top: 1.75rem;
}
.tool-btn {
  background: var(--gold); color: var(--navy);
  border: none; cursor: pointer;
  padding: 0.95rem 1.8rem;
  font-family: 'Jost', sans-serif;
  font-size: 0.74rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  border-radius: 3px;
  transition: background 0.2s, transform 0.15s;
}
.tool-btn:hover { background: var(--gold-light); transform: translateY(-2px); }
.tool-btn-reset {
  background: transparent; color: var(--navy);
  border: 1.5px solid var(--navy);
}
.tool-btn-reset:hover { background: var(--navy); color: var(--white); transform: translateY(-2px); }

/* Tool result panel */
.tool-result {
  display: none;
  max-width: 820px;
  margin: 2.5rem auto 0;
  background: var(--white);
  border: 2px solid var(--gold);
  border-radius: 8px;
  padding: 2.25rem 2rem;
  box-shadow: 0 8px 30px rgba(196,154,42,0.18);
}
.tool-result.visible { display: block; animation: fadeUp 0.4s ease both; }
.tool-result-eyebrow {
  font-family: 'Jost', sans-serif;
  font-size: 0.66rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
}
.tool-result-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem; font-weight: 700;
  color: var(--navy); line-height: 1.25;
  margin-bottom: 1rem;
}
.tool-result-title em { color: var(--gold); font-style: italic; }
.tool-result-score {
  font-family: 'Playfair Display', serif;
  font-size: 3.2rem; font-weight: 900;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.4rem;
}
.tool-result-score-label {
  font-family: 'Jost', sans-serif;
  font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ink-light);
  margin-bottom: 1.5rem;
}
.tool-result-body p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem; line-height: 1.75;
  color: var(--ink);
  margin-bottom: 1rem;
}
.tool-result-body ul { margin: 1rem 0 1.25rem 1.25rem; }
.tool-result-body li {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.02rem; line-height: 1.7;
  color: var(--ink); margin-bottom: 0.45rem;
}
.tool-result-body strong { color: var(--navy); font-weight: 600; }
.tool-result-recommendations {
  background: #FBF7EE;
  border-left: 3px solid var(--gold);
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
  border-radius: 0 4px 4px 0;
}
.tool-result-recommendations p:last-child { margin-bottom: 0; }
.tool-result-cta {
  display: flex; gap: 1rem; flex-wrap: wrap;
  margin-top: 1.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--beige-dark);
}

/* Risk levels */
.risk-low .tool-result-score { color: #2D7A3A; }
.risk-medium .tool-result-score { color: #C49A2A; }
.risk-high .tool-result-score { color: var(--crimson); }
.risk-badge {
  display: inline-block;
  font-family: 'Jost', sans-serif;
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 0.4rem 0.85rem; border-radius: 3px;
  margin-bottom: 0.75rem;
}
.risk-badge.low { background: rgba(45,122,58,0.15); color: #2D7A3A; }
.risk-badge.medium { background: rgba(196,154,42,0.2); color: #8b6f1e; }
.risk-badge.high { background: rgba(139,26,26,0.15); color: var(--crimson); }

/* Quiz steps */
.quiz-progress {
  max-width: 820px; margin: 0 auto 1.5rem;
  background: var(--beige-mid);
  border-radius: 999px; height: 6px;
  overflow: hidden;
}
.quiz-progress-bar {
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  height: 100%; width: 0%;
  transition: width 0.4s ease;
}
.quiz-step { display: none; }
.quiz-step.active { display: block; animation: fadeUp 0.3s ease both; }
.quiz-step-num {
  font-family: 'Jost', sans-serif;
  font-size: 0.66rem; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.quiz-question {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem; font-weight: 700;
  color: var(--navy); line-height: 1.3;
  margin-bottom: 1.5rem;
}
.quiz-options { display: grid; gap: 0.75rem; }
.quiz-option {
  background: var(--white);
  border: 2px solid var(--beige-dark);
  border-radius: 6px;
  padding: 1.1rem 1.4rem;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.08rem;
  color: var(--ink);
  text-align: left;
  display: flex; align-items: center; gap: 0.75rem;
}
.quiz-option::before {
  content: '';
  display: inline-block; flex-shrink: 0;
  width: 20px; height: 20px;
  border: 2px solid var(--beige-dark);
  border-radius: 50%;
  transition: all 0.2s;
}
.quiz-option:hover { border-color: var(--gold); transform: translateX(2px); }
.quiz-option:hover::before { border-color: var(--gold); }
.quiz-option.selected {
  border-color: var(--gold);
  background: #FBF7EE;
}
.quiz-option.selected::before {
  border-color: var(--gold);
  background: var(--gold);
  box-shadow: inset 0 0 0 3px #FBF7EE;
}

/* Cost calculator */
.cost-list { display: grid; gap: 0.6rem; }
.cost-item {
  background: var(--white);
  border: 1px solid var(--beige-dark);
  border-radius: 4px;
  padding: 0.85rem 1.1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.cost-item-label {
  flex: 1;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.02rem;
  color: var(--ink);
}
.cost-item-label small {
  display: block;
  font-size: 0.8rem;
  color: var(--ink-light);
  font-style: italic;
}
.cost-item-control { display: flex; align-items: center; gap: 0.6rem; }
.cost-item-input {
  width: 70px;
  text-align: center;
  padding: 0.4rem 0.5rem;
  border: 1px solid var(--beige-dark);
  border-radius: 3px;
  font-family: 'Jost', sans-serif;
  font-size: 0.92rem;
}
.cost-item-price {
  min-width: 90px; text-align: right;
  font-family: 'Jost', sans-serif;
  font-size: 0.92rem; font-weight: 600;
  color: var(--navy);
}
.cost-total {
  margin-top: 1.5rem;
  padding: 1.25rem 1.5rem;
  background: var(--navy);
  color: var(--white);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cost-total-label {
  font-family: 'Jost', sans-serif;
  font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}
.cost-total-amount {
  font-family: 'Playfair Display', serif;
  font-size: 2rem; font-weight: 700;
  color: var(--gold);
}

/* Délais IRCC table */
.ircc-table-wrapper {
  background: var(--white);
  border: 1px solid var(--beige-dark);
  border-radius: 6px;
  overflow: hidden;
  margin: 2rem 0;
}
.ircc-table { width: 100%; border-collapse: collapse; }
.ircc-table thead { background: var(--navy); color: var(--white); }
.ircc-table th {
  text-align: left;
  padding: 0.95rem 1.25rem;
  font-family: 'Jost', sans-serif;
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
}
.ircc-table td {
  padding: 0.95rem 1.25rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.02rem;
  color: var(--ink);
  border-bottom: 1px solid var(--beige-mid);
}
.ircc-table tbody tr:last-child td { border-bottom: none; }
.ircc-table tbody tr:nth-child(even) { background: #FBF7EE; }
.ircc-table td strong { color: var(--navy); font-weight: 600; }
.ircc-table .delay-fast { color: #2D7A3A; font-weight: 600; }
.ircc-table .delay-slow { color: var(--crimson); font-weight: 600; }

/* Document generator */
.doc-templates {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin: 2rem 0;
}
.doc-template {
  background: var(--white);
  border: 1px solid var(--beige-dark);
  border-left: 3px solid var(--gold);
  padding: 1.4rem 1.5rem;
  cursor: pointer;
  transition: all 0.25s ease;
  text-decoration: none;
  color: var(--ink);
}
.doc-template:hover {
  background: #FBF7EE;
  transform: translateX(3px);
  box-shadow: 0 4px 16px rgba(13,27,46,0.08);
}
.doc-template-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem; font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.4rem;
}
.doc-template-desc {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.95rem; line-height: 1.6;
  color: var(--ink-mid);
}

/* Assistant chat */
.chat-wrapper {
  max-width: 820px;
  margin: 2rem auto 0;
  background: var(--white);
  border: 1px solid var(--beige-dark);
  border-radius: 8px;
  overflow: hidden;
}
.chat-header {
  background: var(--navy);
  color: var(--white);
  padding: 1.1rem 1.5rem;
  display: flex; align-items: center; gap: 0.85rem;
}
.chat-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--gold); color: var(--navy);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1rem; font-weight: 700;
}
.chat-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem; font-weight: 700;
}
.chat-status {
  font-family: 'Jost', sans-serif;
  font-size: 0.66rem;
  color: var(--gold-pale);
  margin-top: 0.15rem;
  display: flex; align-items: center; gap: 0.35rem;
}
.chat-status::before {
  content: ''; display: inline-block;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #4ade80;
}
.chat-body {
  background: #FBF7EE;
  padding: 1.5rem;
  min-height: 360px;
  max-height: 540px;
  overflow-y: auto;
}
.chat-msg {
  display: flex; gap: 0.65rem;
  margin-bottom: 1rem;
  align-items: flex-start;
  animation: fadeUp 0.3s ease both;
}
.chat-msg.user { flex-direction: row-reverse; }
.chat-msg-bubble {
  background: var(--white);
  border: 1px solid var(--beige-dark);
  border-radius: 14px 14px 14px 4px;
  padding: 0.85rem 1.1rem;
  max-width: 78%;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.02rem; line-height: 1.65;
  color: var(--ink);
}
.chat-msg.user .chat-msg-bubble {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
  border-radius: 14px 14px 4px 14px;
}
.chat-msg-avatar {
  width: 32px; height: 32px;
  border-radius: 50%;
  flex-shrink: 0;
  background: var(--gold); color: var(--navy);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif;
  font-weight: 700; font-size: 0.85rem;
}
.chat-msg.user .chat-msg-avatar {
  background: var(--navy-light); color: var(--gold);
}
.chat-suggestions {
  padding: 1rem 1.5rem;
  background: var(--white);
  border-top: 1px solid var(--beige-dark);
}
.chat-suggestions-label {
  font-family: 'Jost', sans-serif;
  font-size: 0.6rem; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ink-light);
  margin-bottom: 0.55rem;
}
.chat-suggestions-list {
  display: flex; gap: 0.45rem; flex-wrap: wrap;
}
.chat-suggestion {
  background: #FBF7EE;
  border: 1px solid var(--beige-dark);
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  font-family: 'Jost', sans-serif;
  font-size: 0.72rem;
  color: var(--navy);
  cursor: pointer;
  transition: all 0.2s;
}
.chat-suggestion:hover {
  background: var(--gold); color: var(--navy);
  border-color: var(--gold);
}

/* Country card grid */
.country-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}
.country-card {
  background: var(--white);
  border: 1px solid var(--beige-dark);
  border-top: 3px solid var(--gold);
  padding: 1.3rem 1.4rem;
}
.country-flag {
  font-size: 1.6rem; margin-bottom: 0.5rem;
}
.country-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem; font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.4rem;
}
.country-stats { display: grid; gap: 0.4rem; }
.country-stat {
  display: flex; justify-content: space-between;
  font-family: 'Jost', sans-serif;
  font-size: 0.78rem;
}
.country-stat-label { color: var(--ink-light); }
.country-stat-value { color: var(--navy); font-weight: 600; }

/* Responsive */
@media (max-width: 1024px) {
  .tools-grid { grid-template-columns: repeat(2, 1fr); }
  .doc-templates { grid-template-columns: 1fr; }
  .country-grid { grid-template-columns: repeat(2, 1fr); }
  .tool-form-row { grid-template-columns: 1fr; }
}
@media (max-width: 580px) {
  .tools-grid { grid-template-columns: 1fr; }
  .country-grid { grid-template-columns: 1fr; }
  .ircc-table th, .ircc-table td { padding: 0.7rem 0.85rem; font-size: 0.85rem; }
  .cost-item { flex-wrap: wrap; }
  .tool-form-wrapper { padding: 1.5rem 1.25rem; }
}

/* ==========================================================================
   LANG TOGGLE
   ========================================================================== */
/* Desktop: inline at the end of the top banner */
.lang-toggle {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.1rem 0;
  font-family: 'Jost', sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
}
.lang-toggle:hover { color: rgba(255,255,255,0.85); }
.lang-opt { transition: color 0.2s; }
.lang-sep { color: rgba(196,154,42,0.3); font-weight: 300; }
html[lang="fr"] .lang-toggle .lang-opt[data-lang="fr"] {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 2px;
}
html[lang="en"] .lang-toggle .lang-opt[data-lang="en"] {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Hide the dynamic separator when button leaves the banner flow on mobile */
@media (max-width: 1080px) {
  .top-banner-lang-sep { display: none; }
}

/* Mobile (≤1080px): pull out of banner, pin gold badge to bottom-right */
@media (max-width: 1080px) {
  .lang-toggle {
    position: fixed;
    top: auto;
    bottom: 1.5rem;
    right: 1rem;
    background: var(--gold);
    border-radius: 4px;
    padding: 0.5rem 1rem;
    color: var(--navy);
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    z-index: 9999;
    transition: background 0.2s, box-shadow 0.2s;
  }
  .lang-toggle:hover { background: var(--gold-pale); color: var(--navy); }
  .lang-toggle .lang-opt { color: var(--navy); }
  html[lang="fr"] .lang-toggle .lang-opt[data-lang="fr"],
  html[lang="en"] .lang-toggle .lang-opt[data-lang="en"] {
    color: var(--navy);
    text-decoration: underline;
    text-underline-offset: 2px;
  }
  .lang-toggle .lang-sep { color: var(--navy); opacity: 0.4; }
}
