  :root {
    --navy: #0A1F3D;
    --navy-2: #1A3461;
    --cream: #FAFAF7;
    --paper: #F5F4EE;
    --ink: #161616;
    --ink-soft: #2A2A2A;
    --muted: #6B7280;
    --gold: #B8945E;
    --gold-soft: #D4B584;
    --line: #E5E2D9;
    --line-strong: #C9C4B5;
    --bg-deep: #0A1F3D;
    --bg-deep-text: #FAFAF7;
    --bg-deep-text-muted: rgba(250,250,247,0.7);
    --bg-deep-text-soft: rgba(250,250,247,0.65);
    --bg-deep-line: rgba(250,250,247,0.1);
    --header-bg: rgba(250,250,247,0.92);
  }
  @media (prefers-color-scheme: dark) {
    :root:not([data-theme="light"]) {
      --navy: #E8E4D7;
      --navy-2: #FFFFFF;
      --cream: #0D131F;
      --paper: #161C2A;
      --ink: #E8E4D7;
      --ink-soft: #C5C2B9;
      --muted: #8990A0;
      --gold: #D4B584;
      --gold-soft: #E5C99B;
      --line: #252B3A;
      --line-strong: #3A4051;
      --bg-deep: #060912;
      --bg-deep-text: #E8E4D7;
      --bg-deep-text-muted: rgba(232,228,215,0.7);
      --bg-deep-text-soft: rgba(232,228,215,0.6);
      --bg-deep-line: rgba(232,228,215,0.08);
      --header-bg: rgba(13,19,31,0.92);
    }
  }
  :root[data-theme="dark"] {
    --navy: #E8E4D7;
    --navy-2: #FFFFFF;
    --cream: #0D131F;
    --paper: #161C2A;
    --ink: #E8E4D7;
    --ink-soft: #C5C2B9;
    --muted: #8990A0;
    --gold: #D4B584;
    --gold-soft: #E5C99B;
    --line: #252B3A;
    --line-strong: #3A4051;
    --bg-deep: #060912;
    --bg-deep-text: #E8E4D7;
    --bg-deep-text-muted: rgba(232,228,215,0.7);
    --bg-deep-text-soft: rgba(232,228,215,0.6);
    --bg-deep-line: rgba(232,228,215,0.08);
    --header-bg: rgba(13,19,31,0.92);
  }
  * { margin: 0; padding: 0; box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  body {
    font-family: 'Manrope', -apple-system, sans-serif;
    background: var(--cream);
    color: var(--ink);
    line-height: 1.6;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    transition: background 0.3s, color 0.3s;
  }
  header {
    position: sticky; top: 0; z-index: 100;
    background: var(--header-bg);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--line);
    padding: 22px 5%;
    display: flex; align-items: center; justify-content: space-between;
    gap: 20px;
  }
  .logo {
    font-family: 'Fraunces', serif;
    font-size: 28px; font-weight: 600;
    letter-spacing: -0.02em;
    color: var(--navy);
    display: flex; align-items: center;
    cursor: pointer;
  }
  .logo .mark {
    width: 7px; height: 7px;
    background: var(--gold);
    margin-left: 5px; margin-bottom: 3px;
    border-radius: 50%;
  }
  .nav-wrap { display: flex; align-items: center; gap: 28px; }
  nav { display: flex; gap: 32px; }
  nav a {
    font-size: 14px; color: var(--ink-soft);
    text-decoration: none; font-weight: 500;
    letter-spacing: 0.01em;
    position: relative; padding: 4px 0;
    cursor: pointer; transition: color 0.2s;
  }
  nav a:hover, nav a.active { color: var(--navy); }
  nav a.active::after {
    content: ''; position: absolute;
    bottom: -4px; left: 0; right: 0;
    height: 1px; background: var(--gold);
  }
  .nav-link {
    font-size: 14px; color: var(--ink-soft);
    text-decoration: none; font-weight: 500;
    letter-spacing: 0.01em;
    position: relative; padding: 4px 0;
    cursor: pointer; transition: color 0.2s;
    display: inline-flex; align-items: center; gap: 5px;
  }
  .nav-link:hover, .nav-link.active { color: var(--navy); }
  .nav-dropdown { position: relative; }
  .caret { font-size: 9px; transition: transform 0.25s; }
  .nav-dropdown-toggle.open .caret { transform: rotate(180deg); }
  .nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 12px); left: 50%;
    transform: translateX(-50%) translateY(-6px);
    background: var(--cream);
    border: 1px solid var(--line);
    border-radius: 4px;
    min-width: 235px;
    display: flex; flex-direction: column;
    padding: 8px 0;
    box-shadow: 0 14px 36px rgba(0,0,0,0.12);
    z-index: 200;
    opacity: 0; visibility: hidden;
    transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
  }
  .nav-dropdown-menu.open {
    opacity: 1; visibility: visible;
    transform: translateX(-50%) translateY(0);
  }
  .nav-dropdown-menu a {
    padding: 11px 20px;
    font-size: 14px; color: var(--ink-soft);
    text-decoration: none; font-weight: 500;
    white-space: nowrap;
    transition: background 0.15s, color 0.15s;
  }
  .nav-dropdown-menu a:hover { background: var(--paper); color: var(--navy); }
  /* Sélecteur de langue */
  .lang-switcher {
    display: flex; gap: 8px;
    justify-content: flex-end;
    margin-top: 16px; margin-bottom: 0;
  }
  .lang-btn {
    background: transparent; border: 1px solid var(--line);
    padding: 6px 14px; border-radius: 100px;
    font-size: 12px; font-weight: 500; letter-spacing: 0.04em;
    color: var(--muted); cursor: pointer;
    transition: all 0.2s; font-family: inherit;
  }
  .lang-btn:hover { color: var(--navy); border-color: var(--ink-soft); }
  .lang-btn.active {
    background: var(--navy); color: var(--cream);
    border-color: var(--navy);
  }
  .lang-notice {
    background: var(--paper); border: 1px solid var(--line);
    border-left: 3px solid var(--gold);
    padding: 16px 20px; margin: 24px 0;
    border-radius: 4px;
    color: var(--ink-soft); font-size: 14px;
    display: none;
  }
  .lang-notice.show { display: block; }
  /* Bandeau de réassurance trilingue */
  .lang-badge {
    display: inline-flex; align-items: center; gap: 10px;
    margin-top: 22px; padding: 8px 16px;
    background: var(--paper); border: 1px solid var(--line);
    border-radius: 100px; font-size: 13px;
    color: var(--ink-soft); letter-spacing: 0.02em;
  }
  .lang-badge .dot {
    width: 6px; height: 6px; background: var(--gold);
    border-radius: 50%; display: inline-block;
  }
  /* FAQ */
  .faq-grid {
    display: flex; flex-direction: column;
    gap: 4px; max-width: 880px;
    margin-bottom: 60px;
  }
  .faq-item {
    border-top: 1px solid var(--line);
    padding: 4px 0;
  }
  .faq-item:last-child { border-bottom: 1px solid var(--line); }
  .faq-item summary {
    cursor: pointer;
    padding: 22px 40px 22px 0;
    font-family: var(--serif);
    font-size: 19px; font-weight: 500;
    color: var(--navy);
    list-style: none;
    position: relative;
    transition: color 0.2s;
  }
  .faq-item summary::-webkit-details-marker { display: none; }
  .faq-item summary::after {
    content: '+'; position: absolute;
    right: 0; top: 50%; transform: translateY(-50%);
    font-size: 24px; color: var(--gold);
    font-weight: 300; transition: transform 0.25s;
    font-family: var(--sans);
  }
  .faq-item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
  .faq-item summary:hover { color: var(--gold); }
  .faq-item p {
    padding: 0 40px 22px 0;
    color: var(--ink-soft); line-height: 1.7;
    margin: 0;
  }
  /* Sections subdivisées pour Importateurs */
  .subsection-title {
    font-family: var(--serif);
    font-size: 22px; font-weight: 500;
    color: var(--navy);
    margin-top: 36px; margin-bottom: 14px;
  }
  /* Sélecteur de langue global (header) */
  .lang-global {
    display: flex; align-items: center;
    gap: 6px;
  }
  .lang-pill {
    background: transparent; border: none;
    padding: 4px 6px; cursor: pointer;
    font-family: var(--sans);
    font-size: 12px; font-weight: 500;
    letter-spacing: 0.04em;
    color: var(--muted);
    transition: color 0.2s;
  }
  .lang-pill:hover { color: var(--navy); }
  .lang-pill.active { color: var(--navy); font-weight: 700; }
  .lang-sep { color: var(--line); font-size: 12px; user-select: none; }

  @media (max-width: 768px) {
    .lang-pill { font-size: 11px; padding: 3px 4px; }
    .lang-sep { font-size: 11px; }
  }
  .theme-toggle {
    background: transparent;
    border: 1px solid var(--line-strong);
    width: 36px; height: 36px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    color: var(--ink-soft);
    transition: border-color 0.2s, color 0.2s, background 0.2s;
    padding: 0;
  }
  .theme-toggle:hover { border-color: var(--gold); color: var(--gold); }
  .theme-toggle svg { width: 16px; height: 16px; }
  .theme-toggle .sun { display: none; }
  .theme-toggle .moon { display: block; }
  :root[data-theme="dark"] .theme-toggle .sun { display: block; }
  :root[data-theme="dark"] .theme-toggle .moon { display: none; }
  @media (prefers-color-scheme: dark) {
    :root:not([data-theme="light"]) .theme-toggle .sun { display: block; }
    :root:not([data-theme="light"]) .theme-toggle .moon { display: none; }
  }
  .page { display: block; min-height: 80vh; padding: 60px 5% 100px; animation: fadeIn 0.5s ease-out; }
  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
  }
  .container { max-width: 1200px; margin: 0 auto; }
  .hero { padding: 40px 0 70px; border-bottom: 1px solid var(--line); }
  .eyebrow {
    font-size: 12px; text-transform: uppercase;
    letter-spacing: 0.18em; color: var(--gold);
    font-weight: 600; margin-bottom: 24px;
    display: flex; align-items: center; gap: 12px;
  }
  .eyebrow::before { content: ''; width: 24px; height: 1px; background: var(--gold); }
  h1.display {
    font-family: 'Fraunces', serif;
    font-size: clamp(38px, 6vw, 78px);
    font-weight: 400; line-height: 1.05;
    letter-spacing: -0.025em;
    color: var(--navy);
    max-width: 900px; margin-bottom: 28px;
  }
  h1.display em {
    font-style: italic; color: var(--ink-soft);
    font-weight: 300;
  }
  .lede {
    font-size: 19px; line-height: 1.6;
    color: var(--ink-soft);
    max-width: 620px; margin-bottom: 36px;
  }
  .btn {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 15px 26px; background: var(--navy);
    color: var(--cream); text-decoration: none;
    font-family: inherit; font-weight: 500;
    font-size: 15px; cursor: pointer; border: none;
    transition: background 0.25s, transform 0.2s, color 0.25s;
  }
  .btn:hover { background: var(--navy-2); transform: translateY(-1px); }
  .btn .arrow { transition: transform 0.25s; }
  .btn:hover .arrow { transform: translateX(4px); }
  .section-head {
    display: flex; align-items: baseline; gap: 24px;
    margin-bottom: 48px; padding-top: 70px;
    flex-wrap: wrap;
  }
  .section-num {
    font-family: 'Fraunces', serif; font-style: italic;
    font-size: 18px; color: var(--gold); font-weight: 400;
  }
  h2 {
    font-family: 'Fraunces', serif;
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 500; color: var(--navy);
    letter-spacing: -0.02em; line-height: 1.15;
  }
  .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 0;
    border-top: 1px solid var(--line);
  }
  .service-item {
    padding: 34px 26px;
    border-bottom: 1px solid var(--line);
    border-right: 1px solid var(--line);
    transition: background 0.3s;
  }
  .service-item:hover { background: var(--paper); }
  .service-num {
    font-family: 'Fraunces', serif; font-style: italic;
    font-size: 14px; color: var(--gold); margin-bottom: 14px;
  }
  .service-title {
    font-family: 'Fraunces', serif; font-size: 21px;
    font-weight: 500; color: var(--navy); margin-bottom: 10px;
  }
  .service-desc { font-size: 15px; color: var(--muted); line-height: 1.55; }
  .why-section {
    padding: 70px 0;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
  }
  .why-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
  .why-item h3 {
    font-family: 'Fraunces', serif; font-size: 20px;
    font-weight: 500; color: var(--navy); margin-bottom: 8px;
  }
  .why-item p { font-size: 15px; color: var(--muted); }
  .cta-band {
    background: var(--bg-deep); color: var(--bg-deep-text);
    padding: 70px 5%; margin: 60px -5% 0;
    text-align: center;
  }
  .cta-band h2 { color: var(--bg-deep-text); margin-bottom: 14px; }
  .cta-band p {
    color: var(--bg-deep-text-muted);
    margin-bottom: 30px;
    max-width: 500px; margin-left: auto; margin-right: auto;
  }
  .cta-band .btn { background: var(--gold); color: #0A1F3D; }
  .cta-band .btn:hover { background: var(--gold-soft); }
  .services-detail { display: grid; gap: 0; margin-top: 30px; }
  .service-detail {
    padding: 44px 0;
    border-top: 1px solid var(--line);
    display: grid;
    grid-template-columns: 60px 1fr 2fr;
    gap: 40px; align-items: start;
  }
  .service-detail:last-of-type { border-bottom: 1px solid var(--line); }
  .service-detail .num {
    font-family: 'Fraunces', serif; font-style: italic;
    font-size: 16px; color: var(--gold);
  }
  .service-detail h3 {
    font-family: 'Fraunces', serif; font-size: 25px;
    font-weight: 500; color: var(--navy); line-height: 1.2;
  }
  .service-detail p {
    color: var(--ink-soft); font-size: 16px; line-height: 1.65;
  }
  .contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px; margin-top: 30px;
  }
  .timeline { margin-top: 30px; }
  .step {
    display: grid;
    grid-template-columns: 90px 1fr;
    gap: 36px;
    padding: 38px 0;
    border-top: 1px solid var(--line);
    align-items: start;
  }
  .step:last-of-type { border-bottom: 1px solid var(--line); }
  .step-num {
    font-family: 'Fraunces', serif;
    font-size: 42px;
    font-style: italic;
    color: var(--gold);
    font-weight: 400;
    line-height: 1;
  }
  .step h3 {
    font-family: 'Fraunces', serif;
    font-size: 24px;
    font-weight: 500;
    color: var(--navy);
    margin-bottom: 12px;
    line-height: 1.2;
  }
  .step p {
    color: var(--ink-soft);
    font-size: 16px;
    line-height: 1.65;
    max-width: 620px;
  }
  .step-meta {
    display: inline-block;
    margin-top: 14px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--muted);
    font-weight: 600;
    padding: 5px 10px;
    border: 1px solid var(--line-strong);
    border-radius: 2px;
  }
  .contact-info h3 {
    font-family: 'Manrope', sans-serif; font-size: 12px;
    text-transform: uppercase; letter-spacing: 0.15em;
    color: var(--gold); font-weight: 600;
    margin-bottom: 10px;
  }
  .contact-block { margin-bottom: 36px; }
  .contact-block p, .contact-block a {
    font-size: 17px; color: var(--ink);
    line-height: 1.5; text-decoration: none;
  }
  .contact-block a { border-bottom: 1px solid transparent; transition: border-color 0.2s; }
  .contact-block a:hover { border-bottom-color: var(--gold); }
  form { display: grid; gap: 18px; }
  .field { display: grid; gap: 6px; }
  label {
    font-size: 12px; text-transform: uppercase;
    letter-spacing: 0.12em; color: var(--muted); font-weight: 600;
  }
  input, textarea, select {
    font-family: inherit; font-size: 15px;
    padding: 11px 0; border: none;
    border-bottom: 1px solid var(--line-strong);
    background: transparent; color: var(--ink);
    outline: none; transition: border-color 0.2s;
    width: 100%;
  }
  input:focus, textarea:focus, select:focus { border-bottom-color: var(--gold); }
  textarea { resize: vertical; min-height: 90px; }
  select { cursor: pointer; }
  select option { background: var(--cream); color: var(--ink); }
  .form-honeypot { display: none; }
  .form-success {
    padding: 20px; background: var(--paper);
    border-left: 3px solid var(--gold);
    margin-top: 18px; display: none;
  }
  .form-success.show { display: block; }
  footer {
    background: var(--bg-deep); color: var(--bg-deep-text);
    padding: 60px 5% 28px; margin-top: 70px;
  }
  .footer-grid {
    display: grid; grid-template-columns: 2fr 1fr 1fr;
    gap: 40px; max-width: 1200px; margin: 0 auto 36px;
  }
  footer .logo { color: var(--bg-deep-text); margin-bottom: 14px; }
  footer p, footer a {
    font-size: 14px; color: var(--bg-deep-text-soft);
    line-height: 1.7; text-decoration: none;
  }
  footer a { cursor: pointer; transition: color 0.2s; }
  footer a:hover { color: var(--gold); }
  footer h4 {
    font-family: 'Fraunces', serif; font-size: 13px;
    text-transform: uppercase; letter-spacing: 0.12em;
    color: var(--bg-deep-text); margin-bottom: 14px; font-weight: 500;
  }
  .footer-bottom {
    max-width: 1200px; margin: 0 auto;
    padding-top: 26px;
    border-top: 1px solid var(--bg-deep-line);
    font-size: 13px; color: var(--bg-deep-text-muted);
    display: flex; justify-content: space-between;
  }
  @media (max-width: 768px) {
    header { padding: 14px 22px; gap: 12px; }
    .nav-wrap { gap: 14px; }
    nav { gap: 16px; }
    nav a, .nav-link { font-size: 13px; }
    .nav-dropdown-menu { left: auto; right: 0; transform: translateX(0) translateY(-6px); min-width: 210px; }
    .nav-dropdown-menu.open { transform: translateX(0) translateY(0); }
    .theme-toggle { width: 32px; height: 32px; }
    .page { padding: 30px 22px 60px; }
    .hero { padding: 24px 0 50px; }
    .section-head { padding-top: 50px; margin-bottom: 30px; gap: 6px; }
    .why-section { grid-template-columns: 1fr; gap: 24px; padding: 50px 0; }
    .why-list { grid-template-columns: 1fr; gap: 22px; }
    .service-detail { grid-template-columns: 1fr; gap: 12px; padding: 30px 0; }
    .step { grid-template-columns: 1fr; gap: 10px; padding: 28px 0; }
    .step-num { font-size: 32px; }
    .contact-layout { grid-template-columns: 1fr; gap: 40px; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 10px; }
    .service-item { border-right: none; padding: 28px 22px; }
    .cta-band { padding: 50px 22px; margin: 50px -22px 0; }
  }
