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

  :root {
    --navy:       #0B1829;
    --navy-mid:   #162438;
    --navy-light: #1E3050;
    --gold:       #C4963A;
    --gold-light: #D9B06A;
    --gold-pale:  #F5EDD6;
    --cream:      #FAF6EE;
    --white:      #FFFFFF;
    --text:       #0B1829;
    --text-mid:   #3A4A60;
    --text-muted: #6A7A8E;
    --border:     rgba(196,150,58,0.2);
    --border-light: rgba(196,150,58,0.12);
    --whatsapp:   #25D366;
  }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Jost', sans-serif;
    font-weight: 300;
    color: var(--text);
    background: var(--cream);
    line-height: 1.7;
    overflow-x: hidden;
  }

  /* ── PARTICLES CANVAS ── */
  #particles-canvas {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    pointer-events: none;
    z-index: 99;
    opacity: 0.6;
  }

  /* ── LANG TOGGLE ── */
  .lang-toggle {
    position: fixed;
    top: 90px;
    right: 20px;
    z-index: 101;
    background: var(--navy);
    border: 1px solid var(--gold);
    color: var(--gold-light);
    padding: 0.4rem 0.9rem;
    font-family: 'Jost', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 1px;
    transition: all 0.2s;
  }
  .lang-toggle:hover {
    background: var(--gold);
    color: var(--navy);
  }

  /* ── FLOATING BUTTONS ── */
  .float-btn {
    position: fixed;
    right: 20px;
    z-index: 100;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
    transition: transform 0.2s, box-shadow 0.2s;
    font-size: 1.5rem;
    cursor: pointer;
    border: none;
  }
  .float-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
  }
  .float-btn.whatsapp {
    bottom: 100px;
    background: var(--whatsapp);
    color: white;
  }
  .float-btn.location {
    bottom: 170px;
    background: var(--gold);
    color: var(--navy);
  }
  .float-btn .label {
    position: absolute;
    right: 64px;
    background: var(--navy);
    color: var(--white);
    padding: 0.3rem 0.7rem;
    border-radius: 2px;
    font-size: 0.7rem;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s;
    font-family: 'Jost', sans-serif;
  }
  .float-btn:hover .label {
    opacity: 1;
  }

  /* ── NAVIGATION ── */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    background: rgba(11,24,41,0.96);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(196,150,58,0.15);
    padding: 0 4vw;
    display: flex; align-items: center; justify-content: space-between;
    height: 72px;
    transition: background 0.3s;
  }
  .nav-brand {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-weight: 500;
    color: var(--white);
    letter-spacing: 0.02em;
    line-height: 1.3;
    text-decoration: none;
  }
  .nav-brand span { display: block; color: var(--gold-light); font-size: 0.7rem; font-family: 'Jost', sans-serif; font-weight: 300; letter-spacing: 0.18em; text-transform: uppercase; margin-top: 1px; }
  .nav-links { display: flex; gap: 2rem; list-style: none; }
  .nav-links a { color: rgba(255,255,255,0.7); text-decoration: none; font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 400; transition: color 0.2s; }
  .nav-links a:hover { color: var(--gold-light); }
  .nav-cta {
    background: transparent; border: 1px solid var(--gold);
    color: var(--gold-light); padding: 0.5rem 1.3rem; border-radius: 1px;
    font-size: 0.75rem; letter-spacing: 0.12em; text-transform: uppercase;
    font-family: 'Jost', sans-serif; cursor: pointer; transition: all 0.2s;
    text-decoration: none;
  }
  .nav-cta:hover { background: var(--gold); color: var(--navy); }
  .nav-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
  .nav-hamburger span { width: 22px; height: 1.5px; background: var(--white); transition: all 0.3s; }

  /* ── HERO ── */
  #accueil {
    min-height: 100vh;
    background: var(--navy);
    display: flex; flex-direction: column; justify-content: center;
    position: relative; overflow: hidden;
    padding: 120px 4vw 80px;
  }
  .hero-bg-pattern {
    position: absolute; inset: 0; opacity: 0.04;
    background-image: repeating-linear-gradient(
      45deg,
      var(--gold) 0, var(--gold) 1px,
      transparent 0, transparent 50%
    );
    background-size: 30px 30px;
  }
  .hero-accent-line {
    position: absolute; top: 0; left: 4vw; right: 4vw;
    height: 2px; background: linear-gradient(90deg, transparent, var(--gold), transparent);
  }
  .hero-content { position: relative; max-width: 780px; z-index: 2; }
  .hero-overline {
    font-family: 'Jost', sans-serif; font-weight: 300; font-size: 0.7rem;
    letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold);
    margin-bottom: 1.5rem; display: flex; align-items: center; gap: 12px;
  }
  .hero-overline::before { content: ''; width: 40px; height: 1px; background: var(--gold); flex-shrink: 0; }
  .hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.8rem, 6vw, 5rem);
    font-weight: 400; color: var(--white); line-height: 1.1;
    margin-bottom: 1.5rem;
  }
  .hero-title em { font-style: italic; color: var(--gold-light); }
  .hero-subtitle {
    font-family: 'Cormorant Garamond', serif; font-size: 1.25rem;
    font-weight: 300; color: rgba(255,255,255,0.65);
    max-width: 520px; line-height: 1.6; margin-bottom: 2.5rem;
    font-style: italic;
  }
  .hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
  .btn-primary {
    background: var(--gold); color: var(--navy);
    padding: 0.85rem 2rem; border: none; border-radius: 1px;
    font-family: 'Jost', sans-serif; font-size: 0.78rem;
    font-weight: 400; letter-spacing: 0.12em; text-transform: uppercase;
    cursor: pointer; text-decoration: none; display: inline-block;
    transition: background 0.2s, transform 0.2s;
  }
  .btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); }
  .btn-outline {
    background: transparent; color: rgba(255,255,255,0.8);
    padding: 0.85rem 2rem; border: 1px solid rgba(255,255,255,0.25); border-radius: 1px;
    font-family: 'Jost', sans-serif; font-size: 0.78rem;
    font-weight: 400; letter-spacing: 0.12em; text-transform: uppercase;
    cursor: pointer; text-decoration: none; display: inline-block;
    transition: all 0.2s;
  }
  .btn-outline:hover { border-color: var(--gold); color: var(--gold-light); }
  .btn-whatsapp {
    background: var(--whatsapp); color: white;
    padding: 0.85rem 2rem; border: none; border-radius: 1px;
    font-family: 'Jost', sans-serif; font-size: 0.78rem;
    font-weight: 400; letter-spacing: 0.12em; text-transform: uppercase;
    cursor: pointer; text-decoration: none; display: inline-flex; align-items: center; gap: 8px;
    transition: background 0.2s, transform 0.2s;
  }
  .btn-whatsapp:hover { background: #128C7E; transform: translateY(-1px); }
  .hero-bottom {
    position: absolute; bottom: 48px; left: 4vw; right: 4vw;
    display: flex; gap: 3rem; border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 2rem; z-index: 2;
  }
  .hero-stat { }
  .hero-stat .number {
    font-family: 'Playfair Display', serif; font-size: 1.8rem;
    color: var(--gold-light); display: block;
  }
  .hero-stat .label {
    font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase;
    color: rgba(255,255,255,0.45);
  }
  .hero-address {
    position: absolute;
    bottom: 48px;
    right: 4vw;
    z-index: 2;
    text-align: right;
    color: rgba(255,255,255,0.5);
    font-size: 0.8rem;
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
  }
  .hero-address strong {
    color: var(--gold-light);
    font-family: 'Jost', sans-serif;
    font-style: normal;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    display: block;
    margin-bottom: 4px;
  }

  /* ── SECTION COMMON ── */
  section { padding: 100px 4vw; }
  .section-header { text-align: center; margin-bottom: 64px; }
  .section-tag {
    font-size: 0.68rem; letter-spacing: 0.3em; text-transform: uppercase;
    color: var(--gold); font-family: 'Jost', sans-serif; font-weight: 400;
    display: flex; align-items: center; justify-content: center; gap: 10px;
    margin-bottom: 1rem;
  }
  .section-tag::before, .section-tag::after { content: ''; flex: 0 0 30px; height: 1px; background: var(--gold); }
  .section-title {
    font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 400; color: var(--navy); line-height: 1.2; margin-bottom: 1rem;
  }
  .section-title em { font-style: italic; color: var(--gold); }
  .section-subtitle {
    font-family: 'Cormorant Garamond', serif; font-size: 1.1rem;
    color: var(--text-muted); max-width: 540px; margin: 0 auto; font-style: italic;
  }

  /* ── À PROPOS ── */
  #a-propos {
    background: var(--white);
  }
  .about-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 80px; align-items: center; max-width: 1100px; margin: 0 auto;
  }
  .about-photo-wrap {
    position: relative;
  }
  .about-photo-frame {
    width: 100%; aspect-ratio: 3/4;
    background: var(--navy-mid);
    border-radius: 2px; overflow: hidden; position: relative;
  }
  .about-photo-placeholder {
    width: 100%; height: 100%;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    gap: 12px; color: rgba(255,255,255,0.3);
  }
  .about-photo-placeholder svg { width: 60px; height: 60px; opacity: 0.3; }
  .about-photo-placeholder span { font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.25); }
  .about-photo-border {
    position: absolute; top: -16px; left: -16px; right: 16px; bottom: -16px;
    border: 1px solid var(--gold); border-radius: 2px; z-index: 0; pointer-events: none;
  }
  .about-photo-frame { position: relative; z-index: 1; }
  .about-content {}
  .about-name {
    font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 400;
    color: var(--navy); margin-bottom: 0.25rem;
  }
  .about-role {
    font-family: 'Cormorant Garamond', serif; color: var(--gold);
    font-size: 1rem; letter-spacing: 0.15em; text-transform: uppercase;
    margin-bottom: 2rem; font-style: italic;
  }
  .about-divider { width: 48px; height: 1px; background: var(--gold); margin-bottom: 1.5rem; }
  .about-text {
    color: var(--text-mid); font-size: 0.95rem; line-height: 1.9; margin-bottom: 2rem;
  }
  .about-credentials { list-style: none; margin-bottom: 2rem; }
  .about-credentials li {
    display: flex; gap: 12px; align-items: flex-start;
    padding: 0.6rem 0; border-bottom: 1px solid var(--border-light);
    font-size: 0.88rem; color: var(--text-mid);
  }
  .about-credentials li::before {
    content: '◆'; color: var(--gold); font-size: 0.5rem; margin-top: 6px; flex-shrink: 0;
  }
  .about-quote {
    background: var(--navy); padding: 1.5rem 2rem;
    border-left: 3px solid var(--gold); margin-top: 2rem;
  }
  .about-quote blockquote {
    font-family: 'Cormorant Garamond', serif; font-size: 1.05rem;
    font-style: italic; color: rgba(255,255,255,0.85); line-height: 1.7;
  }

  /* ── BIOGRAPHIE ── */
  #biographie {
    background: var(--navy);
    position: relative;
    overflow: hidden;
  }
  #biographie .section-title { color: var(--white); }
  #biographie .section-subtitle { color: rgba(255,255,255,0.5); }
  .bio-content {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
  }
  .bio-text {
    color: rgba(255,255,255,0.75);
    font-size: 0.95rem;
    line-height: 2;
  }
  .bio-text p {
    margin-bottom: 1.5rem;
  }
  .bio-text strong {
    color: var(--gold-light);
    font-weight: 400;
  }
  .bio-highlights {
    background: var(--navy-mid);
    border: 1px solid rgba(196,150,58,0.2);
    padding: 2rem;
  }
  .bio-highlights h3 {
    font-family: 'Playfair Display', serif;
    color: var(--gold-light);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    font-weight: 400;
  }
  .bio-highlights ul {
    list-style: none;
  }
  .bio-highlights li {
    color: rgba(255,255,255,0.65);
    font-size: 0.88rem;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.6;
  }
  .bio-highlights li::before {
    content: '◆';
    color: var(--gold);
    font-size: 0.5rem;
    margin-top: 6px;
    flex-shrink: 0;
  }
  .bio-cta {
    margin-top: 2rem;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
  }

  /* ── SERVICES ── */
  #services { background: var(--cream); }
  .services-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5px; max-width: 1200px; margin: 0 auto;
    background: var(--border);
    border: 1px solid var(--border);
  }
  .service-card {
    background: var(--white); padding: 2.5rem 2rem;
    transition: background 0.3s, transform 0.3s;
    cursor: default; position: relative; overflow: hidden;
  }
  .service-card.featured {
    background: var(--navy);
  }
  .service-card.featured .service-title { color: var(--white); }
  .service-card.featured .service-desc { color: rgba(255,255,255,0.6); }
  .service-card.featured .service-icon { color: var(--gold); }
  .service-card.featured .service-link { color: var(--gold-light); }
  .service-card.featured .service-num { color: rgba(255,255,255,0.08); }
  .service-card.featured::before {
    content: 'POPULAIRE';
    position: absolute;
    top: 12px;
    right: -30px;
    background: var(--gold);
    color: var(--navy);
    font-size: 0.6rem;
    letter-spacing: 0.15em;
    padding: 4px 30px;
    transform: rotate(45deg);
    font-family: 'Jost', sans-serif;
    font-weight: 500;
    z-index: 2;
  }
  .service-card::before {
    content: ''; position: absolute; top: 0; left: 0; width: 3px; height: 0;
    background: var(--gold); transition: height 0.4s;
  }
  .service-card:hover::before { height: 100%; }
  .service-card:hover { background: var(--navy); }
  .service-card:hover .service-title { color: var(--white); }
  .service-card:hover .service-desc { color: rgba(255,255,255,0.6); }
  .service-card:hover .service-icon { color: var(--gold); }
  .service-card:hover .service-link { color: var(--gold-light); }
  .service-card:hover .service-num { color: rgba(255,255,255,0.04); }
  .service-icon {
    font-size: 1.8rem; color: var(--gold); margin-bottom: 1.2rem;
    line-height: 1;
  }
  .service-num {
    position: absolute; top: 1.5rem; right: 1.5rem;
    font-family: 'Playfair Display', serif; font-size: 3rem; font-weight: 400;
    color: rgba(196,150,58,0.08); line-height: 1;
  }
  .service-title {
    font-family: 'Playfair Display', serif; font-size: 1.15rem;
    font-weight: 500; color: var(--navy); margin-bottom: 0.75rem;
    transition: color 0.3s;
  }
  .service-desc {
    font-size: 0.88rem; color: var(--text-muted); line-height: 1.8;
    transition: color 0.3s;
  }
  .service-link {
    display: inline-block; margin-top: 1.2rem; font-size: 0.72rem;
    letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold);
    text-decoration: none; transition: color 0.3s;
  }
  .services-cta {
    text-align: center;
    margin-top: 3rem;
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
  }

  /* ── PRÉPARER DOSSIER ── */
  #preparer-dossier { background: var(--navy); }
  #preparer-dossier .section-title { color: var(--white); }
  #preparer-dossier .section-subtitle { color: rgba(255,255,255,0.5); }
  .dossier-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1px; max-width: 1100px; margin: 0 auto;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.06);
  }
  .dossier-card {
    background: var(--navy-mid); padding: 2rem 1.75rem;
    transition: background 0.3s;
  }
  .dossier-card:hover { background: var(--navy-light); }
  .dossier-card-title {
    font-family: 'Playfair Display', serif; font-size: 1rem;
    color: var(--gold-light); margin-bottom: 1rem;
    display: flex; align-items: center; gap: 10px;
  }
  .dossier-card-title::before { content: ''; width: 20px; height: 1px; background: var(--gold); flex-shrink: 0; }
  .dossier-list { list-style: none; }
  .dossier-list li {
    font-size: 0.83rem; color: rgba(255,255,255,0.6);
    padding: 0.35rem 0; border-bottom: 1px solid rgba(255,255,255,0.06);
    display: flex; gap: 8px; align-items: flex-start;
  }
  .dossier-list li::before { content: '—'; color: var(--gold); flex-shrink: 0; font-size: 0.75rem; margin-top: 2px; }
  .dossier-note {
    max-width: 700px; margin: 3rem auto 0; text-align: center;
    padding: 2rem; border: 1px solid rgba(196,150,58,0.2);
    background: rgba(196,150,58,0.04);
  }
  .dossier-note p {
    font-family: 'Cormorant Garamond', serif; font-style: italic;
    color: rgba(255,255,255,0.6); font-size: 1rem; margin-bottom: 1.5rem;
  }
  .btn-gold {
    background: transparent; border: 1px solid var(--gold); color: var(--gold-light);
    padding: 0.75rem 1.75rem; font-family: 'Jost', sans-serif; font-size: 0.75rem;
    letter-spacing: 0.12em; text-transform: uppercase; cursor: pointer;
    border-radius: 1px; text-decoration: none; display: inline-block;
    transition: all 0.2s;
  }
  .btn-gold:hover { background: var(--gold); color: var(--navy); }

  /* ── FAQ ── */
  #faq { background: var(--cream); }
  .faq-container { max-width: 780px; margin: 0 auto; }
  .faq-group { margin-bottom: 3rem; }
  .faq-group-title {
    font-family: 'Playfair Display', serif; font-size: 1.1rem;
    color: var(--navy); margin-bottom: 1rem;
    display: flex; align-items: center; gap: 12px;
  }
  .faq-group-title::after { content: ''; flex: 1; height: 1px; background: var(--border); }
  .faq-item { border-bottom: 1px solid var(--border-light); }
  .faq-question {
    width: 100%; background: none; border: none; text-align: left;
    padding: 1.1rem 0; cursor: pointer;
    font-family: 'Jost', sans-serif; font-size: 0.93rem; font-weight: 400;
    color: var(--navy); display: flex; justify-content: space-between; align-items: center;
    gap: 1rem; transition: color 0.2s;
  }
  .faq-question:hover { color: var(--gold); }
  .faq-question .toggle {
    width: 20px; height: 20px; flex-shrink: 0; border: 1px solid var(--border);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-size: 1rem; color: var(--gold); transition: transform 0.3s, background 0.3s;
    line-height: 1;
  }
  .faq-item.open .toggle { transform: rotate(45deg); background: var(--gold); border-color: var(--gold); color: var(--white); }
  .faq-answer {
    max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s;
    font-size: 0.88rem; color: var(--text-mid); line-height: 1.9;
  }
  .faq-item.open .faq-answer { max-height: 300px; padding-bottom: 1.1rem; }

  /* ── CONTACT ── */
  #contact { background: var(--navy); }
  #contact .section-title { color: var(--white); }
  #contact .section-subtitle { color: rgba(255,255,255,0.45); }
  .contact-grid {
    display: grid; grid-template-columns: 1fr 1.5fr;
    gap: 4rem; max-width: 1000px; margin: 0 auto;
  }
  .contact-info-list { list-style: none; margin-bottom: 2rem; }
  .contact-info-list li {
    display: flex; gap: 1rem; align-items: flex-start;
    padding: 1rem 0; border-bottom: 1px solid rgba(255,255,255,0.07);
    font-size: 0.88rem; color: rgba(255,255,255,0.65);
  }
  .contact-info-list li .icon-wrap {
    width: 34px; height: 34px; border: 1px solid rgba(196,150,58,0.3);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; color: var(--gold); font-size: 1rem;
  }
  .contact-info-list li strong { display: block; color: var(--white); font-weight: 400; margin-bottom: 2px; }
  .contact-hours {
    background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.06);
    padding: 1.5rem;
  }
  .contact-hours h4 {
    font-family: 'Playfair Display', serif; color: var(--gold-light);
    font-size: 0.95rem; margin-bottom: 1rem; font-weight: 400;
  }
  .contact-hours p { font-size: 0.83rem; color: rgba(255,255,255,0.5); line-height: 2; }
  .contact-form { }
  .form-group { margin-bottom: 1.25rem; }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
  .form-group label {
    display: block; font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase;
    color: rgba(255,255,255,0.4); margin-bottom: 0.4rem; font-weight: 400;
  }
  .form-group input,
  .form-group select,
  .form-group textarea {
    width: 100%; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
    color: var(--white); padding: 0.75rem 1rem; font-family: 'Jost', sans-serif;
    font-size: 0.88rem; font-weight: 300; border-radius: 1px; outline: none;
    transition: border-color 0.2s;
  }
  .form-group input:focus,
  .form-group select:focus,
  .form-group textarea:focus { border-color: var(--gold); }
  .form-group select { appearance: none; cursor: pointer; }
  .form-group textarea { resize: vertical; min-height: 120px; }
  .form-group input::placeholder,
  .form-group textarea::placeholder { color: rgba(255,255,255,0.25); }
  .form-group select option { background: var(--navy-mid); color: var(--white); }
  .form-submit {
    background: var(--gold); color: var(--navy); border: none;
    padding: 0.9rem 2rem; font-family: 'Jost', sans-serif; font-size: 0.78rem;
    font-weight: 400; letter-spacing: 0.12em; text-transform: uppercase;
    cursor: pointer; border-radius: 1px; transition: background 0.2s, transform 0.2s;
    width: 100%;
  }
  .form-submit:hover { background: var(--gold-light); transform: translateY(-1px); }

  .map-section {
    width: 100%;
    margin-top: 60px;
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 60px;
  }
  .map-container {
    width: 100%;
    max-height: 400px;
    overflow: hidden;
    border: 1px solid rgba(196,150,58,0.2);
    position: relative;
  }
  .map-container iframe {
    width: 100%;
    height: 400px;
    border: 0;
    display: block;
    filter: grayscale(30%) contrast(1.1);
  }
  .map-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1.5rem;
    flex-wrap: wrap;
  }

  /* ── MENTIONS LÉGALES ── */
  #mentions-legales {
    background: var(--white); padding: 80px 4vw;
  }
  .mentions-content {
    max-width: 760px; margin: 0 auto;
  }
  .mentions-content h2 {
    font-family: 'Playfair Display', serif; font-size: 1.3rem;
    color: var(--navy); margin: 2rem 0 0.75rem;
  }
  .mentions-content p { font-size: 0.88rem; color: var(--text-mid); line-height: 1.9; margin-bottom: 1rem; }

  /* ── FOOTER ── */
  footer {
    background: var(--navy); border-top: 1px solid rgba(255,255,255,0.06);
    padding: 3rem 4vw 2rem;
  }
  .footer-inner {
    max-width: 1100px; margin: 0 auto;
    display: flex; flex-direction: column; gap: 2rem;
  }
  .footer-top {
    display: flex; justify-content: space-between; align-items: flex-start;
    flex-wrap: wrap; gap: 2rem;
    padding-bottom: 2rem; border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .footer-brand .name {
    font-family: 'Playfair Display', serif; font-size: 1.1rem; color: var(--white); font-weight: 400;
  }
  .footer-brand .tagline {
    font-size: 0.75rem; color: rgba(255,255,255,0.35); margin-top: 0.25rem;
    font-family: 'Cormorant Garamond', serif; font-style: italic;
  }
  .footer-links { display: flex; gap: 2rem; flex-wrap: wrap; }
  .footer-links a {
    font-size: 0.75rem; color: rgba(255,255,255,0.4); text-decoration: none;
    letter-spacing: 0.1em; text-transform: uppercase; transition: color 0.2s;
  }
  .footer-links a:hover { color: var(--gold-light); }
  .footer-bottom {
    display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem;
  }
  .footer-copy { font-size: 0.75rem; color: rgba(255,255,255,0.25); }
  .footer-gold-line { width: 40px; height: 1px; background: var(--gold); }
  .footer-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1rem;
  }

  /* ── RESPONSIVE ── */
  @media (max-width: 768px) {
    .nav-links, .nav-cta { display: none; }
    .nav-hamburger { display: flex; }
    .nav-links.open {
      display: flex; flex-direction: column; position: fixed;
      top: 72px; left: 0; right: 0; background: var(--navy);
      padding: 2rem; gap: 1.5rem; border-top: 1px solid rgba(255,255,255,0.08);
    }
    .hero-bottom { flex-wrap: wrap; gap: 1.5rem; }
    .about-grid { grid-template-columns: 1fr; gap: 3rem; }
    .about-photo-wrap { max-width: 320px; margin: 0 auto; }
    .bio-content { grid-template-columns: 1fr; gap: 3rem; }
    .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .form-row { grid-template-columns: 1fr; }
    .footer-top { flex-direction: column; }
    .hero-address { position: relative; bottom: auto; right: auto; text-align: left; margin-top: 2rem; }
    .float-btn .label { display: none; }
  }

  /* ── ARABIC RTL ── */
  body[dir="rtl"] {
    direction: rtl;
  }
  body[dir="rtl"] .hero-overline::before { display: none; }
  body[dir="rtl"] .hero-overline::after { content: ''; width: 40px; height: 1px; background: var(--gold); flex-shrink: 0; }
  body[dir="rtl"] .about-credentials li::before { margin-top: 0; }
  body[dir="rtl"] .about-quote { border-left: none; border-right: 3px solid var(--gold); }
  body[dir="rtl"] .dossier-list li::before { content: '—'; margin-top: 0; }
  body[dir="rtl"] .faq-group-title::after { display: none; }
  body[dir="rtl"] .faq-group-title::before { content: ''; flex: 1; height: 1px; background: var(--border); }
  body[dir="rtl"] .contact-info-list li { flex-direction: row-reverse; text-align: right; }
  body[dir="rtl"] .contact-info-list li .icon-wrap { margin-left: 0; margin-right: 0; }
  body[dir="rtl"] .form-row { direction: rtl; }
  body[dir="rtl"] .lang-toggle { right: auto; left: 20px; }
  body[dir="rtl"] .float-btn { right: auto; left: 20px; }
  body[dir="rtl"] .float-btn .label { right: auto; left: 64px; }
  body[dir="rtl"] .hero-address { right: auto; left: 4vw; text-align: left; }
  body[dir="rtl"] .section-tag::before { flex: 0 0 30px; }
  body[dir="rtl"] .section-tag::after { flex: 0 0 30px; }
  body[dir="rtl"] .bio-highlights li { flex-direction: row-reverse; }
  body[dir="rtl"] .about-credentials li { flex-direction: row-reverse; }
  body[dir="rtl"] .dossier-card-title { flex-direction: row-reverse; }
  body[dir="rtl"] .dossier-list li { flex-direction: row-reverse; }
  body[dir="rtl"] .hero-actions, body[dir="rtl"] .bio-cta, body[dir="rtl"] .services-cta, body[dir="rtl"] .map-cta { justify-content: flex-start; }
  body[dir="rtl"] .dossier-card-title::before { display: none; }
  body[dir="rtl"] .dossier-card-title::after { content: ''; width: 20px; height: 1px; background: var(--gold); flex-shrink: 0; }
  body[dir="rtl"] .about-divider { margin-right: 0; margin-left: auto; }

  @media (max-width: 768px) {
    body[dir="rtl"] .hero-address { left: auto; right: auto; text-align: right; }
    body[dir="rtl"] .hero-actions, body[dir="rtl"] .bio-cta, body[dir="rtl"] .services-cta, body[dir="rtl"] .map-cta { justify-content: center; }
  }