  :root {
    --navy: #0A1F3A;
    --navy-soft: #1B3358;
    --gold: #B89968;
    --gold-soft: #D4BC92;
    --gold-deep: #8A6A3C;
    --cream: #F7F2E8;
    --cream-deep: #EFE7D6;
    --ink: #1A1A1A;
    --slate: #5C5C5C;
    --line: #E5DDD0;
    --paper: #FBF8F0;
  }
  * { margin: 0; padding: 0; box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  body {
    font-family: 'EB Garamond', Georgia, serif;
    background: var(--paper);
    color: var(--ink);
    line-height: 1.65;
    font-size: 18px;
    -webkit-font-smoothing: antialiased;
  }
  .display { font-family: 'Cormorant Garamond', Georgia, serif; }
  a { color: inherit; text-decoration: none; }

  /* NAV */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 24px 48px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(251, 248, 240, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--line);
    transition: padding 0.3s ease;
  }
  nav.scrolled { padding: 16px 48px; }
  .nav-brand {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    font-size: 22px;
    letter-spacing: 0.2em;
    color: var(--navy);
    display: flex;
    flex-direction: column;
    line-height: 1;
  }
  .nav-brand .nav-descriptor {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    font-size: 11px;
    color: var(--gold);
    letter-spacing: 0.22em;
    margin-top: 5px;
    text-transform: uppercase;
  }
  .nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
    font-size: 13px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--navy);
  }
  .nav-links a {
    position: relative;
    transition: color 0.2s;
  }
  .nav-links a:hover { color: var(--gold); }
  .nav-cta {
    border: 1px solid var(--navy);
    padding: 10px 24px;
    font-size: 12px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--navy);
    background: transparent;
    cursor: pointer;
    transition: all 0.25s ease;
    font-family: 'EB Garamond', serif;
  }
  .nav-cta:hover {
    background: var(--navy);
    color: var(--cream);
  }
  .menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--navy);
  }

  /* HERO */
  .hero {
    min-height: 100vh;
    padding: 180px 48px 100px;
    background: var(--paper);
    position: relative;
    overflow: hidden;
  }
  .hero::before {
    content: '';
    position: absolute;
    top: 20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(184,153,104,0.08) 0%, transparent 65%);
    pointer-events: none;
  }
  .hero-grid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
  }
  .hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 12px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 32px;
  }
  .hero-eyebrow::before {
    content: '';
    width: 40px;
    height: 1px;
    background: var(--gold);
  }
  .hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    font-size: clamp(48px, 6vw, 88px);
    line-height: 1.02;
    color: var(--navy);
    letter-spacing: -0.01em;
    margin-bottom: 32px;
  }
  .hero-title em {
    font-style: italic;
    color: var(--gold);
    font-weight: 400;
  }
  .hero-lead {
    font-size: 22px;
    line-height: 1.55;
    color: var(--ink);
    max-width: 520px;
    margin-bottom: 48px;
    font-weight: 400;
  }
  .hero-cta-group {
    display: flex;
    gap: 24px;
    align-items: center;
  }
  .btn-primary {
    background: var(--navy);
    color: var(--cream);
    padding: 16px 36px;
    font-size: 13px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    font-family: 'EB Garamond', serif;
    transition: background 0.25s;
  }
  .btn-primary:hover { background: var(--navy-soft); }
  .btn-link {
    color: var(--navy);
    font-style: italic;
    font-size: 16px;
    border-bottom: 1px solid var(--gold);
    padding-bottom: 2px;
    transition: color 0.2s;
  }
  .btn-link:hover { color: var(--gold); }

  /* Hero visual side - editorial number block */
  .hero-visual {
    position: relative;
    aspect-ratio: 4/5;
    background: var(--navy);
    padding: 48px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: var(--cream);
    overflow: hidden;
  }
  .hero-visual::before {
    content: '';
    position: absolute;
    inset: 12px;
    border: 1px solid var(--gold);
    pointer-events: none;
  }
  .hero-visual-top {
    font-size: 11px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold-soft);
  }
  .hero-stats {
    text-align: center;
    z-index: 1;
  }
  .stat-block {
    margin-bottom: 32px;
  }
  .stat-block:last-child { margin-bottom: 0; }
  .stat-figure {
    font-family: 'Cormorant Garamond', serif;
    font-size: 88px;
    font-weight: 300;
    color: var(--gold);
    line-height: 1;
    letter-spacing: -0.02em;
  }
  .stat-label {
    font-style: italic;
    font-size: 16px;
    color: var(--cream);
    margin-top: 8px;
    opacity: 0.85;
  }
  .hero-visual-bottom {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 18px;
    color: var(--gold-soft);
    text-align: right;
  }

  /* HERO SÉLECTEUR */
  .hero-select {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 150px 48px 80px;
  }
  .hero-select .hero-eyebrow {
    justify-content: center;
    margin-bottom: 14px;
  }
  .hero-select .hero-eyebrow::after {
    content: '';
    width: 40px;
    height: 1px;
    background: var(--gold);
  }
  .select-prompt {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 24px;
    color: var(--slate);
    margin-bottom: 44px;
  }
  .select-grid {
    width: 100%;
    max-width: 1080px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .select-card {
    position: relative;
    min-height: 440px;
    padding: 56px 48px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
  }
  .select-card::before {
    content: '';
    position: absolute;
    inset: 12px;
    border: 1px solid var(--gold);
    pointer-events: none;
    transition: inset 0.35s ease, border-color 0.35s ease;
  }
  .select-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px -30px rgba(10,31,58,0.35);
  }
  .select-card:hover::before { inset: 20px; border-color: var(--gold-soft); }
  .select-card--light { background: var(--cream); color: var(--navy); }
  .select-card--dark { background: var(--navy); color: var(--cream); }
  .select-roman {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 14px;
    letter-spacing: 0.2em;
    color: var(--gold);
  }
  .select-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    font-size: clamp(40px, 4.5vw, 60px);
    line-height: 1.05;
    letter-spacing: -0.01em;
    margin-top: auto;
  }
  .select-card--light .select-title { color: var(--navy); }
  .select-card--dark .select-title { color: var(--cream); }
  .select-desc {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 20px;
    margin-top: 12px;
    color: var(--slate);
  }
  .select-card--dark .select-desc { color: var(--gold-soft); }
  .select-enter {
    margin-top: 36px;
    font-size: 12px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: gap 0.3s ease;
  }
  .select-card:hover .select-enter { gap: 18px; }

  .hero-stats-band {
    width: 100%;
    max-width: 1080px;
    margin-top: 56px;
    padding-top: 32px;
    border-top: 1px solid var(--line);
    display: flex;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
  }
  .hsb-item {
    flex: 1;
    min-width: 200px;
    font-style: italic;
    font-size: 15px;
    color: var(--slate);
    text-align: center;
  }
  .hsb-fig {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-style: normal;
    font-size: 52px;
    font-weight: 300;
    color: var(--navy);
    line-height: 1;
    margin-bottom: 8px;
  }
  .hsb-fig sup { color: var(--gold); font-size: 24px; }

  #particuliers, #professionnels { scroll-margin-top: 96px; }

  /* MÉTIERS */
  .metiers {
    padding: 140px 48px;
    background: var(--cream);
    border-top: 1px solid var(--line);
  }
  .section-eyebrow {
    text-align: center;
    font-size: 12px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
  }
  .section-title-center {
    text-align: center;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    font-size: clamp(40px, 5vw, 64px);
    line-height: 1.1;
    color: var(--navy);
    margin-bottom: 24px;
    letter-spacing: -0.01em;
  }
  .section-title-center em {
    font-style: italic;
    color: var(--gold);
    font-weight: 400;
  }
  .section-intro {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 80px;
    font-size: 20px;
    color: var(--slate);
    font-style: italic;
    font-family: 'Cormorant Garamond', serif;
    line-height: 1.5;
  }
  .metiers-grid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }
  .metier {
    padding: 64px 48px;
    border-right: 1px solid var(--line);
    transition: background 0.3s;
    cursor: default;
  }
  .metier:last-child { border-right: none; }
  .metier:hover { background: var(--paper); }
  .metier-roman {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 14px;
    color: var(--gold);
    letter-spacing: 0.2em;
    margin-bottom: 24px;
  }
  .metier-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    font-size: 32px;
    color: var(--navy);
    line-height: 1.15;
    margin-bottom: 24px;
  }
  .metier-text {
    color: var(--ink);
    margin-bottom: 32px;
    font-size: 17px;
    line-height: 1.65;
  }
  .metier-list {
    list-style: none;
    border-top: 1px solid var(--line);
    padding-top: 20px;
  }
  .metier-list li {
    padding: 6px 0;
    font-size: 15px;
    color: var(--slate);
    font-style: italic;
    position: relative;
    padding-left: 20px;
  }
  .metier-list li::before {
    content: "\2014";
    position: absolute;
    left: 0;
    color: var(--gold);
    font-style: normal;
  }

  /* APPROCHE */
  .approche {
    padding: 140px 48px;
    background: var(--navy);
    color: var(--cream);
  }
  .approche-grid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
    align-items: start;
  }
  .approche-eyebrow {
    color: var(--gold);
    letter-spacing: 0.3em;
    text-transform: uppercase;
    font-size: 12px;
    margin-bottom: 24px;
  }
  .approche-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    font-size: clamp(36px, 4.5vw, 56px);
    line-height: 1.1;
    color: var(--cream);
    margin-bottom: 0;
  }
  .approche-title em {
    font-style: italic;
    color: var(--gold);
    font-weight: 400;
  }
  .approche-steps {
    display: flex;
    flex-direction: column;
    gap: 0;
  }
  .step {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 32px;
    padding: 32px 0;
    border-top: 1px solid rgba(212, 188, 146, 0.2);
  }
  .step:last-child {
    border-bottom: 1px solid rgba(212, 188, 146, 0.2);
  }
  .step-number {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-weight: 400;
    font-size: 36px;
    color: var(--gold);
  }
  .step-content h3 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    font-size: 24px;
    color: var(--cream);
    margin-bottom: 8px;
    letter-spacing: 0.02em;
  }
  .step-content p {
    color: rgba(247, 242, 232, 0.75);
    line-height: 1.6;
  }

  /* PROFIL */
  .profil {
    padding: 140px 48px;
    background: var(--paper);
  }
  .profil-grid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 80px;
    align-items: center;
  }
  .profil-portrait {
    aspect-ratio: 3/4;
    background: var(--cream-deep);
    position: relative;
    overflow: hidden;
  }
  .profil-portrait::before {
    content: '';
    position: absolute;
    inset: 16px;
    border: 1px solid var(--gold);
    pointer-events: none;
  }
  .portrait-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 48px;
    text-align: center;
  }
  .portrait-monogram {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    font-size: 200px;
    line-height: 1;
    color: var(--navy);
    margin-bottom: 24px;
    letter-spacing: -0.02em;
  }
  .portrait-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    color: var(--navy);
    letter-spacing: 0.15em;
    margin-bottom: 8px;
  }
  .portrait-role {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    color: var(--gold);
    font-size: 16px;
    letter-spacing: 0.1em;
  }
  .profil-text h3 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    font-size: clamp(36px, 4.5vw, 56px);
    line-height: 1.1;
    color: var(--navy);
    margin-bottom: 32px;
    letter-spacing: -0.01em;
  }
  .profil-text h3 em {
    font-style: italic;
    color: var(--gold);
    font-weight: 400;
  }
  .profil-text p {
    margin-bottom: 20px;
    color: var(--ink);
    font-size: 18px;
    line-height: 1.7;
  }
  .credentials {
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid var(--line);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
  .credential-block {
    border-left: 2px solid var(--gold);
    padding-left: 16px;
  }
  .credential-label {
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 4px;
  }
  .credential-value {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    color: var(--navy);
    line-height: 1.3;
  }

  /* DOSSIERS */
  .dossiers {
    padding: 140px 48px;
    background: var(--cream);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }
  .dossiers-list {
    max-width: 1080px;
    margin: 64px auto 0;
    border-top: 1px solid var(--line);
  }
  .dossier {
    display: grid;
    grid-template-columns: 80px 1fr 2fr 200px;
    gap: 32px;
    padding: 40px 0;
    border-bottom: 1px solid var(--line);
    align-items: baseline;
    transition: padding 0.25s;
  }
  .dossier:hover { padding-left: 16px; }
  .dossier-num {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    color: var(--gold);
    font-size: 24px;
  }
  .dossier-sector {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    color: var(--navy);
    font-weight: 400;
  }
  .dossier-desc {
    color: var(--slate);
    font-size: 16px;
    font-style: italic;
    line-height: 1.5;
  }
  .dossier-amount {
    text-align: right;
    font-family: 'Cormorant Garamond', serif;
    color: var(--navy);
    font-size: 22px;
  }
  .dossier-amount em {
    font-style: italic;
    color: var(--gold);
    font-size: 13px;
    display: block;
    margin-top: 2px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
  }

  /* CONTACT */
  .contact {
    padding: 140px 48px;
    background: var(--paper);
  }
  .contact-grid {
    max-width: 1080px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }
  .contact-text h3 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    font-size: clamp(40px, 5vw, 64px);
    line-height: 1.05;
    color: var(--navy);
    margin-bottom: 24px;
    letter-spacing: -0.01em;
  }
  .contact-text h3 em {
    font-style: italic;
    color: var(--gold);
    font-weight: 400;
  }
  .contact-text p {
    font-size: 19px;
    color: var(--ink);
    line-height: 1.6;
    margin-bottom: 40px;
  }
  .contact-coords {
    border-top: 1px solid var(--line);
    padding-top: 32px;
  }
  .coord-line {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 24px;
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
    align-items: baseline;
  }
  .coord-line:last-child { border-bottom: none; }
  .coord-label {
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
  }
  .coord-value {
    color: var(--navy);
    font-family: 'Cormorant Garamond', serif;
    font-size: 19px;
  }
  .contact-panel {
    background: var(--cream);
    border: 1px solid var(--line);
    padding: 36px;
  }
  .contact-tabs {
    display: flex;
    margin-bottom: 28px;
    border-bottom: 1px solid var(--line);
  }
  .contact-tab {
    flex: 1;
    background: none;
    border: none;
    cursor: pointer;
    font-family: 'EB Garamond', serif;
    font-size: 13px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--slate);
    padding: 0 0 14px;
    position: relative;
    transition: color 0.2s;
  }
  .contact-tab:hover { color: var(--navy); }
  .contact-tab.is-active { color: var(--navy); }
  .contact-tab.is-active::after {
    content: '';
    position: absolute;
    left: 0; right: 0; bottom: -1px;
    height: 2px;
    background: var(--gold);
  }
  .contact-pane[hidden] { display: none; }
  .book-pitch {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 19px;
    line-height: 1.5;
    color: var(--ink);
    margin-bottom: 24px;
  }
  .form-group { margin-bottom: 24px; }
  .form-group label {
    display: block;
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 8px;
  }
  .form-group input,
  .form-group textarea,
  .form-group select {
    width: 100%;
    padding: 12px 0;
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--line);
    font-family: 'EB Garamond', serif;
    font-size: 17px;
    color: var(--navy);
    outline: none;
    transition: border-color 0.2s;
  }
  .form-group input:focus,
  .form-group textarea:focus,
  .form-group select:focus {
    border-bottom-color: var(--gold);
  }
  .form-group textarea {
    resize: vertical;
    min-height: 80px;
  }
  .btn-form {
    background: var(--navy);
    color: var(--cream);
    padding: 16px 0;
    width: 100%;
    border: none;
    font-family: 'EB Garamond', serif;
    font-size: 13px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.25s;
    margin-top: 16px;
  }
  .btn-form:hover { background: var(--navy-soft); }

  /* FOOTER */
  footer {
    background: var(--navy);
    color: var(--cream);
    padding: 80px 48px 40px;
  }
  .footer-grid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 64px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(212, 188, 146, 0.2);
  }
  .footer-brand {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    font-size: 56px;
    line-height: 1;
    color: var(--cream);
    letter-spacing: 0.02em;
    margin-bottom: 16px;
    display: block;
  }
  .footer-brand .footer-descriptor {
    display: block;
    font-size: 11px;
    color: var(--gold);
    font-weight: 400;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    margin-top: 8px;
  }
  .footer-brand em {
    font-style: italic;
    color: var(--gold);
    font-weight: 400;
    font-size: 28px;
    display: block;
    margin-top: 4px;
  }
  .footer-tagline {
    color: rgba(247, 242, 232, 0.7);
    font-style: italic;
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    max-width: 320px;
  }
  .footer-col h4 {
    font-size: 11px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
    font-weight: 500;
  }
  .footer-col ul {
    list-style: none;
  }
  .footer-col li {
    padding: 6px 0;
    color: rgba(247, 242, 232, 0.7);
    font-size: 15px;
  }
  .footer-col a:hover { color: var(--gold); }
  .footer-bottom {
    max-width: 1280px;
    margin: 32px auto 0;
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(212, 188, 146, 0.6);
  }

  /* SCROLL ANIMATIONS */
  .fade-up {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.8s ease, transform 0.8s ease;
  }
  .fade-up.visible {
    opacity: 1;
    transform: translateY(0);
  }

  /* MOBILE */
  @media (max-width: 900px) {
    nav { padding: 16px 24px; flex-wrap: wrap; }
    .nav-links, .nav-cta, .nav-phone { display: none; }
    .menu-toggle { display: block; line-height: 1; }
    nav.menu-open .nav-links {
      display: flex;
      flex-direction: column;
      width: 100%;
      order: 3;
      margin-top: 14px;
      padding-top: 14px;
      border-top: 1px solid var(--line);
      gap: 0;
    }
    nav.menu-open .nav-links li { padding: 11px 0; }
    nav.menu-open .nav-cta {
      display: block;
      width: 100%;
      order: 4;
      margin-top: 12px;
      text-align: center;
    }
    nav.menu-open .nav-phone {
      display: flex;
      width: 100%;
      order: 2;
      margin-top: 14px;
      justify-content: center;
      font-size: 17px;
    }
    /* barre d'appel collante */
    .call-bar {
      display: flex;
      position: fixed;
      left: 0; right: 0; bottom: 0;
      z-index: 900;
      border-top: 1px solid var(--line);
      background: rgba(251, 248, 240, 0.97);
      -webkit-backdrop-filter: blur(8px);
      backdrop-filter: blur(8px);
    }
    .call-bar a {
      flex: 1;
      text-align: center;
      padding: 16px 8px;
      font-family: 'EB Garamond', serif;
      font-size: 13px;
      letter-spacing: 0.14em;
      text-transform: uppercase;
    }
    .call-bar .cb-call { background: var(--navy); color: var(--cream); }
    .call-bar .cb-write { color: var(--navy); }
    body { padding-bottom: 54px; }
    .hero { padding: 120px 24px 60px; }
    .hero-grid { grid-template-columns: 1fr; gap: 40px; }
    .hero-visual { aspect-ratio: 3/4; padding: 32px; }
    .stat-figure { font-size: 64px; }
    .hero-select { padding: 110px 24px 60px; }
    .select-grid { grid-template-columns: 1fr; gap: 20px; }
    .select-card { min-height: 300px; padding: 44px 32px; }
    .hero-stats-band { flex-direction: column; gap: 28px; margin-top: 44px; }
    .hsb-fig { font-size: 44px; }
    .metiers, .approche, .profil, .dossiers, .contact { padding: 80px 24px; }
    .metiers-grid { grid-template-columns: 1fr; }
    .metier { border-right: none; border-bottom: 1px solid var(--line); padding: 48px 24px; }
    .metier:last-child { border-bottom: none; }
    .approche-grid, .profil-grid, .contact-grid { grid-template-columns: 1fr; gap: 48px; }
    .credentials { grid-template-columns: 1fr; }
    .dossier { grid-template-columns: 60px 1fr; gap: 16px; padding: 24px 0; }
    .dossier-desc, .dossier-amount { grid-column: 2; text-align: left; }
    .dossier-amount { margin-top: 8px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
    .footer-brand { font-size: 40px; }
    .footer-bottom { flex-direction: column; gap: 8px; }
  }

  .portrait-photo{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;object-position:center 18%;}
  .portrait-caption{position:absolute;left:0;right:0;bottom:0;z-index:3;padding:64px 24px 30px;text-align:center;background:linear-gradient(to top,rgba(10,31,58,.94) 0%,rgba(10,31,58,.72) 45%,rgba(10,31,58,0) 100%);}
  .portrait-caption .pc-name{font-family:'Cormorant Garamond',serif;font-size:26px;color:var(--cream);letter-spacing:.18em;margin-bottom:4px;}
  .portrait-caption .pc-role{font-family:'Cormorant Garamond',serif;font-style:italic;color:var(--gold);font-size:16px;letter-spacing:.1em;}
  .profil-portrait::before{z-index:4;}

  /* ===== PORTE D'ENTRÉE ===== */
  .door {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
  }
  .door-center {
    flex: 1;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 48px 48px;
  }
  .door-promise {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: clamp(20px, 2.4vw, 26px);
    line-height: 1.4;
    color: var(--navy);
    text-align: center;
    max-width: 600px;
    margin-top: 20px;
  }
  .door .marquee-band { border-top: 1px solid var(--line); border-bottom: none; }
  .door-brand {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    font-size: 34px;
    letter-spacing: 0.3em;
    color: var(--navy);
    text-align: center;
    line-height: 1;
  }
  .door-descriptor {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    font-size: 11px;
    color: var(--gold);
    letter-spacing: 0.28em;
    text-transform: uppercase;
    margin-top: 12px;
  }
  .door-prompt {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 24px;
    color: var(--slate);
    margin: 42px 0 44px;
  }

  /* ===== BANDEAU PRODUITS (hero présentation) ===== */
  .banner {
    padding: 160px 48px 90px;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
  }
  .banner-inner { max-width: 1080px; margin: 0 auto; }
  .banner-eyebrow {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 12px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 28px;
  }
  .banner-eyebrow::before {
    content: '';
    width: 40px;
    height: 1px;
    background: var(--gold);
  }
  .banner-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    font-size: clamp(44px, 5.5vw, 76px);
    line-height: 1.04;
    letter-spacing: -0.01em;
    color: var(--navy);
  }
  .banner-title em { font-style: italic; color: var(--gold); font-weight: 400; }
  .banner-lead {
    font-size: 21px;
    line-height: 1.55;
    color: var(--ink);
    max-width: 640px;
    margin-top: 28px;
  }
  .banner-products {
    margin-top: 48px;
    padding-top: 28px;
    border-top: 1px solid var(--line);
    display: flex;
    flex-wrap: wrap;
    gap: 14px 44px;
  }
  .banner-product {
    font-family: 'Cormorant Garamond', serif;
    font-size: 19px;
    color: var(--navy);
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .banner-product::before { content: "\2014"; color: var(--gold); }
  .banner--dark { background: var(--navy); }
  .banner--dark .banner-title { color: var(--cream); }
  .banner--dark .banner-lead { color: rgba(247,242,232,0.82); }
  .banner--dark .banner-products { border-top-color: rgba(212,188,146,0.25); }
  .banner--dark .banner-product { color: var(--cream); }

  /* ===== SECTIONS PRODUITS ===== */
  .products { padding: 120px 48px; background: var(--cream); }
  .products-inner { max-width: 1080px; margin: 0 auto; }
  .products-intro {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 72px;
    font-size: 20px;
    color: var(--slate);
    font-style: italic;
    font-family: 'Cormorant Garamond', serif;
    line-height: 1.5;
  }
  .product {
    display: grid;
    grid-template-columns: 90px 1fr;
    gap: 48px;
    padding: 56px 0;
    border-top: 1px solid var(--line);
    align-items: start;
  }
  .product:last-child { border-bottom: 1px solid var(--line); }
  .product-num {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 38px;
    color: var(--gold);
    line-height: 1;
  }
  .product-body h3 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    font-size: 30px;
    color: var(--navy);
    line-height: 1.15;
    margin-bottom: 16px;
  }
  .product-body p {
    color: var(--ink);
    font-size: 17px;
    line-height: 1.7;
    max-width: 660px;
  }
  /* emplacement réservé pour des exemples (à compléter plus tard) */
  .product-examples {
    margin-top: 28px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
  }
  .product-example {
    border: 1px solid var(--line);
    border-left: 2px solid var(--gold);
    padding: 14px 18px;
    background: var(--paper);
    font-size: 14px;
    color: var(--slate);
    max-width: 320px;
  }
  .product-example strong {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    font-size: 17px;
    color: var(--navy);
    margin-bottom: 2px;
  }

  /* eyebrow aligné à gauche (réutilisable) */
  .eyebrow-left {
    font-size: 12px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
  }

  /* ancrage sous la nav fixe */
  #produits, #qui, #contact { scroll-margin-top: 90px; }

  /* ===== PAGES LÉGALES ===== */
  .legal { padding: 140px 48px 100px; background: var(--paper); }
  .legal-inner { max-width: 760px; margin: 0 auto; }
  .legal h1 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    font-size: clamp(40px, 5vw, 60px);
    line-height: 1.05;
    letter-spacing: -0.01em;
    color: var(--navy);
    margin-bottom: 6px;
  }
  .legal-date {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    color: var(--slate);
    font-size: 18px;
    margin-bottom: 48px;
  }
  .legal h2 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    font-size: 24px;
    color: var(--navy);
    margin: 40px 0 14px;
    letter-spacing: 0.01em;
  }
  .legal p { margin-bottom: 14px; color: var(--ink); font-size: 17px; line-height: 1.7; }
  .legal ul { margin: 0 0 18px 22px; color: var(--ink); }
  .legal li { margin-bottom: 8px; line-height: 1.6; }
  .legal a { color: var(--gold); text-decoration: underline; text-underline-offset: 2px; }
  .legal strong { color: var(--navy); }
  .legal-note {
    background: var(--cream);
    border-left: 2px solid var(--gold);
    padding: 14px 18px;
    font-size: 15px;
    font-style: italic;
    color: var(--slate);
    margin: 6px 0 22px;
  }

  /* phrase de réassurance honoraires sous l'intro du contact */
  .contact-note {
    font-size: 16px;
    color: var(--slate);
    margin: -16px 0 40px;
  }
  .contact-note a { color: var(--gold); text-decoration: underline; text-underline-offset: 2px; }

  /* grille honoraires */
  .fees { width: 100%; border-collapse: collapse; margin: 4px 0 36px; }
  .fees caption {
    text-align: left;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    font-size: 22px;
    color: var(--navy);
    padding: 0 0 10px;
  }
  .fees th {
    text-align: left;
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 500;
    padding: 0 0 10px;
    border-bottom: 1px solid var(--line);
  }
  .fees th:last-child { text-align: right; }
  .fees td {
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
    font-size: 16px;
    color: var(--ink);
    line-height: 1.4;
    vertical-align: top;
  }
  .fees td.fee {
    text-align: right;
    white-space: nowrap;
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    color: var(--navy);
    padding-left: 24px;
  }
  .fees td.fee small {
    display: block;
    font-family: 'EB Garamond', serif;
    font-size: 13px;
    font-style: italic;
    color: var(--slate);
  }

  /* statut d'envoi du formulaire */
  .form-status { margin-top: 16px; font-size: 15px; font-style: italic; color: var(--slate); min-height: 1.2em; line-height: 1.5; }
  .form-status.ok { color: var(--navy); font-style: normal; }
  .form-status.error { color: #9a3b2e; }
  .contact-form input[name="botcheck"] { display: none !important; }

  /* téléphone cliquable dans la nav */
  .nav-phone {
    font-family: 'EB Garamond', serif;
    font-size: 15px;
    letter-spacing: 0.04em;
    color: var(--navy);
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    transition: color 0.2s;
  }
  .nav-phone::before { content: '\260E'; color: var(--gold); font-size: 17px; }
  .nav-phone:hover { color: var(--gold); }

  /* liens dans les coordonnées de contact */
  .coord-value a { color: inherit; transition: color 0.2s; }
  .coord-value a:hover { color: var(--gold); }

  /* barre d'appel collante (mobile uniquement) */
  .call-bar { display: none; }

  /* rappel simulateur après les produits */
  .products-cta { text-align: center; margin-top: 60px; }

  /* ===== PREUVE SOCIALE : chiffres clés ===== */
  .trust { background: var(--navy); color: var(--cream); padding: 80px 48px; }
  .trust-inner { max-width: 1080px; margin: 0 auto; }
  .trust-figures { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
  .tf { text-align: center; }
  .tf-num {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    font-size: 64px;
    line-height: 1;
    letter-spacing: -0.02em;
    color: var(--gold);
  }
  .tf-num sup { font-size: 26px; top: -0.45em; }
  .tf-label {
    display: block;
    margin-top: 10px;
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 17px;
    color: var(--cream);
    opacity: 0.85;
  }
  .trust-signals {
    text-align: center;
    margin-top: 44px;
    padding-top: 28px;
    border-top: 1px solid rgba(212, 188, 146, 0.25);
    font-size: 13px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold-soft);
  }

  /* ===== PREUVE SOCIALE : défilement des banques ===== */
  .marquee-band {
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    padding: 30px 0;
    overflow: hidden;
  }
  .marquee-label {
    text-align: center;
    font-size: 11px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
  }
  .marquee { overflow: hidden; position: relative; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
  .marquee-track { display: inline-flex; white-space: nowrap; will-change: transform; animation: marquee 45s linear infinite; }
  .marquee-track span {
    font-family: 'Cormorant Garamond', serif;
    font-size: 23px;
    color: var(--navy);
    padding: 0 26px;
    position: relative;
  }
  .marquee-track span::after { content: '·'; color: var(--gold); position: absolute; right: -3px; top: 0; }
  .marquee:hover .marquee-track { animation-play-state: paused; }
  @keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
  @media (prefers-reduced-motion: reduce) { .marquee-track { animation: none; } }

  /* ===== RESPONSIVE (multi-pages) ===== */
  @media (max-width: 900px) {
    /* overrides d'ordre de cascade (règles de base définies plus haut) */
    .nav-phone { display: none; }
    .call-bar { display: flex; }
    .trust { padding: 60px 24px; }
    .trust-figures { grid-template-columns: 1fr 1fr; gap: 30px 16px; }
    .tf-num { font-size: 48px; }
    .trust-signals { font-size: 11px; letter-spacing: 0.1em; }
    .marquee-track span { font-size: 20px; }
    .door-center { padding: 60px 24px 32px; }
    .banner { padding: 110px 24px 56px; }
    .banner-products { gap: 12px 28px; }
    .products { padding: 70px 24px; }
    .product { grid-template-columns: 1fr; gap: 14px; padding: 40px 0; }
    .product-num { font-size: 30px; }
    .legal { padding: 110px 24px 70px; }
  }

  /* ===== LISIBILITÉ : or plus foncé pour les petits textes sur fond clair ===== */
  .nav-descriptor,
  .door-descriptor,
  .section-eyebrow,
  .banner-eyebrow,
  .eyebrow-left,
  .sim-eyebrow,
  .marquee-label,
  .credential-label,
  .coord-label,
  .form-group label,
  .fees th,
  .legal a,
  .contact-note a,
  .product-num,
  .select-roman,
  .select-enter { color: var(--gold-deep); }

  .nav-links a:hover,
  .nav-phone:hover,
  .coord-value a:hover { color: var(--gold-deep); }

  /* on garde l'or vif sur fond navy */
  .banner--dark .banner-eyebrow,
  .select-card--dark .select-roman,
  .select-card--dark .select-enter { color: var(--gold); }
