:root {
  --noir: #0C0C0C;
  --blanc: #FAFAF8;
  --beige: #F2EDE4;
  --beige-fonce: #E2D9CC;
  --or: #B8965A;
  --or-clair: #D4AF7A;
  --gris: #6B6560;
  --gris-clair: #C8C4BE;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Jost', sans-serif; background: var(--blanc); color: var(--noir); font-weight: 300; overflow-x: hidden; cursor: none; }

/* CURSEUR */
.cursor { position: fixed; width: 10px; height: 10px; background: var(--or); border-radius: 50%; pointer-events: none; z-index: 9999; transform: translate(-50%,-50%); transition: width .3s, height .3s; }
.cursor-ring { position: fixed; width: 36px; height: 36px; border: 1px solid var(--or); border-radius: 50%; pointer-events: none; z-index: 9998; transform: translate(-50%,-50%); opacity: .6; transition: width .3s, height .3s; }

/* NAV */
nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; padding: 0 60px; height: 120px; display: flex; align-items: center; justify-content: space-between; background: rgba(12,12,12,0.96); backdrop-filter: blur(14px); border-bottom: 1px solid rgba(184,150,90,0.2); transition: height .4s, transform .6s cubic-bezier(0.4, 0, 0.2, 1); }
nav.scrolled { height: 76px; }
.nav-logo { text-decoration: none; display: flex; align-items: center; }
.nav-logo-emblem { height: 200px; width: 200px; display: block; object-fit: contain; transition: height .4s, width .4s, opacity .3s; border-radius: 50%; }
nav.scrolled .nav-logo-emblem { height: 70px; width: 70px; }
.nav-logo-emblem:hover { opacity: 0.85; }
nav.hidden { transform: translateY(-100%); }
.nav-links { display: flex; gap: 48px; list-style: none; }
.nav-links a { font-size: 13px; font-weight: 400; letter-spacing: 3px; text-transform: uppercase; color: rgba(250,250,248,0.7); text-decoration: none; transition: color .3s; position: relative; }
.nav-links a::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 1px; background: var(--or); transition: width .3s; }
.nav-links a:hover, .nav-links a.active { color: var(--or-clair); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

/* HAMBURGER */
.nav-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; z-index: 200; }
.nav-hamburger span { display: block; width: 26px; height: 1.5px; background: var(--blanc); transition: transform .35s, opacity .35s, width .35s; transform-origin: center; }
.nav-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; width: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* MENU MOBILE */
.mobile-menu { position: fixed; inset: 0; background: var(--noir); z-index: 150; display: flex; flex-direction: column; align-items: center; justify-content: center; transform: translateX(100%); transition: transform .45s cubic-bezier(.77,0,.175,1); }
.mobile-menu.open { transform: translateX(0); }
.mobile-menu::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 280px; height: 280px;
  background-image: url('https://ravionavocat-gymamjukds.live-website.com/wp-content/uploads/2026/03/Elegant-Monogram-with-Decorative-Lines.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.06;
  pointer-events: none;
}
.mobile-menu a { font-family: 'Cormorant Garamond', serif; font-size: 40px; font-weight: 300; color: rgba(250,250,248,0.5); text-decoration: none; padding: 16px 40px; letter-spacing: 2px; transition: color .3s; position: relative; z-index: 1; display: block; text-align: center; width: 100%; }
.mobile-menu a:hover { color: var(--or-clair); }
.mobile-menu-footer { position: absolute; bottom: 50px; text-align: center; z-index: 1; }
.mobile-menu-footer a { font-family: 'Cormorant Garamond', serif !important; font-size: 20px !important; color: var(--or) !important; font-style: italic; padding: 0 !important; display: block; }
.mobile-menu-footer p { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: rgba(250,250,248,0.25); margin-top: 8px; }

/* HERO */
.hero { position: relative; min-height: 100vh; display: flex; align-items: flex-start; overflow: hidden; background: var(--noir); }
.hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0.28; animation: heroZoom 20s ease-in-out infinite alternate; }
@keyframes heroZoom { from { transform: scale(1.05); } to { transform: scale(1.12); } }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(12,12,12,0.92) 0%, rgba(12,12,12,0.6) 60%, rgba(184,150,90,0.05) 100%); }
.hero-line { position: absolute; left: 60px; top: 0; bottom: 0; width: 1px; background: linear-gradient(to bottom, transparent, rgba(184,150,90,0.4) 30%, rgba(184,150,90,0.4) 70%, transparent); }
.hero-content { position: relative; z-index: 2; padding: 160px 120px 0; max-width: 900px; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(40px); } to { opacity: 1; transform: translateY(0); } }
.hero-eyebrow { font-size: 11px; letter-spacing: 4px; text-transform: uppercase; color: var(--or); margin-bottom: 24px; display: flex; align-items: center; gap: 16px; animation: fadeUp 1.2s ease .2s both; }
.hero-eyebrow::before { content: ''; width: 40px; height: 1px; background: var(--or); }
.hero-title { font-family: 'Cormorant Garamond', serif; font-weight: 300; font-size: clamp(46px, 5.5vw, 74px); line-height: 1.1; color: var(--blanc); margin-bottom: 12px; animation: fadeUp 1.2s ease .35s both; }
.hero-title em { font-style: italic; color: var(--or-clair); font-weight: 300; display: block; }
.hero-title strong { font-weight: 500; display: block; font-size: 0.8em; letter-spacing: 8px; text-transform: uppercase; color: var(--blanc); margin-top: 4px; }
.hero-subtitle { font-family: 'Cormorant Garamond', serif; font-size: 20px; font-weight: 300; font-style: italic; color: rgba(250,250,248,0.72); margin-bottom: 10px; letter-spacing: 1px; animation: fadeUp 1.2s ease .45s both; }
.hero-barreau { font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: var(--or); margin-bottom: 48px; animation: fadeUp 1.2s ease .5s both; }
.hero-desc { font-size: 17px; font-weight: 300; line-height: 2; color: rgba(250,250,248,0.68); max-width: 480px; margin-bottom: 48px; animation: fadeUp 1.2s ease .6s both; }
.hero-ctas { display: flex; gap: 16px; animation: fadeUp 1.2s ease .75s both; }
.hero-scroll { position: absolute; bottom: 36px; left: 120px; display: flex; align-items: center; gap: 14px; color: rgba(250,250,248,0.35); font-size: 9px; letter-spacing: 3px; text-transform: uppercase; animation: fadeUp 1.2s ease 1s both; }
.hero-scroll-line { width: 50px; height: 1px; background: rgba(250,250,248,0.15); position: relative; overflow: hidden; }
.hero-scroll-line::after { content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%; background: var(--or); animation: scrollAnim 2s ease-in-out infinite; }
@keyframes scrollAnim { 0% { left: -100%; } 100% { left: 100%; } }

/* BOUTONS */
.btn-primary { padding: 15px 42px; background: var(--or); color: var(--noir); font-family: 'Jost', sans-serif; font-size: 11px; font-weight: 500; letter-spacing: 2.5px; text-transform: uppercase; border: none; cursor: pointer; text-decoration: none; display: inline-flex; align-items: center; gap: 10px; position: relative; overflow: hidden; transition: color .3s; }
.btn-primary::before { content: ''; position: absolute; inset: 0; background: var(--or-clair); transform: translateX(-100%); transition: transform .3s; }
.btn-primary:hover::before { transform: translateX(0); }
.btn-primary span { position: relative; z-index: 1; }
.btn-secondary { padding: 15px 42px; background: transparent; color: var(--blanc); font-family: 'Jost', sans-serif; font-size: 11px; font-weight: 400; letter-spacing: 2.5px; text-transform: uppercase; border: 1px solid rgba(250,250,248,0.3); cursor: pointer; text-decoration: none; display: inline-flex; align-items: center; gap: 10px; transition: border-color .3s, color .3s; }
.btn-secondary:hover { border-color: var(--or); color: var(--or-clair); }

/* BANDEAU CANNES */
.cannes-band { position: relative; height: 300px; overflow: hidden; background: var(--noir); }
.cannes-track { display: flex; height: 100%; animation: cannesScroll 20s linear infinite; will-change: transform; }
.cannes-track img { height:100%; width:auto; object-fit:cover; flex-shrink:0; opacity:0.75; filter:sepia(5%) contrast(1.0); }
@keyframes cannesScroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.cannes-band-overlay { position: absolute; inset: 0; background: linear-gradient(to right, rgba(12,12,12,0.75) 0%, rgba(12,12,12,0.05) 20%, rgba(12,12,12,0.05) 80%, rgba(12,12,12,0.75) 100%); pointer-events: none; }
.cannes-band-label { position: absolute; bottom: 22px; left: 50%; transform: translateX(-50%); font-size: 11px; letter-spacing: 6px; text-transform: uppercase; color: #FAFAF8; white-space: nowrap; background: rgba(12,12,12,0.45); padding: 8px 20px; backdrop-filter: blur(4px); }
.cannes-band-label::before, .cannes-band-label::after { content: ''; display: inline-block; width: 28px; height: 1px; background: rgba(184,150,90,0.4); vertical-align: middle; margin: 0 12px; }

/* STATS */
.section-stats { background: var(--beige); padding: 60px 120px; display: flex; justify-content: center; border-top: 1px solid var(--beige-fonce); }
.stat-item { padding: 28px 70px; border-right: 1px solid var(--beige-fonce); text-align: center; }
.stat-item:last-child { border-right: none; }
.stat-number { font-family: 'Cormorant Garamond', serif; font-size: 52px; font-weight: 300; color: var(--or); line-height: 1; margin-bottom: 8px; }
.stat-label { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--gris); }

/* SECTIONS */
.section { padding: 110px 120px; }
.section-dark { background: var(--noir); }
.section-beige { background: var(--beige); }
.section-eyebrow { font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: var(--or); margin-bottom: 16px; display: flex; align-items: center; gap: 12px; }
.section-eyebrow::before { content: ''; width: 28px; height: 1px; background: var(--or); }
.section-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(38px, 4vw, 56px); font-weight: 300; line-height: 1.15; color: var(--noir); }
.section-dark .section-title, .domaines-section .section-title { color: var(--blanc); }
.section-title em { font-style: italic; color: var(--or-clair); }

/* EXPERTISE CARDS */
.expertise-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; margin-top: 56px; }
.expertise-card { background: rgba(255,255,255,0.02); border: 1px solid rgba(184,150,90,0.12); padding: 48px 38px; transition: background .4s, border-color .4s, transform .4s; position: relative; overflow: hidden; }
.expertise-card::before { content: ''; position: absolute; top: 0; left: 0; width: 2px; height: 0; background: var(--or); transition: height .4s; }
.expertise-card:hover::before { height: 100%; }
.expertise-card:hover { background: rgba(184,150,90,0.06); border-color: rgba(184,150,90,0.3); transform: translateY(-4px); }
.expertise-num { font-family: 'Cormorant Garamond', serif; font-size: 13px; color: var(--or); letter-spacing: 2px; margin-bottom: 18px; display: block; }
.expertise-title-card { font-family: 'Cormorant Garamond', serif; font-size: 26px; font-weight: 500; margin-bottom: 14px; line-height: 1.2; color: var(--blanc); }
.expertise-text { font-size: 16px; line-height: 2; color: rgba(250,250,248,0.65); font-weight: 300; }

/* PORTRAIT */
.section-portrait { display: grid; grid-template-columns: 1fr 1fr; min-height: 580px; }
.portrait-visual { position: relative; background: var(--noir); overflow: hidden; min-height: 480px; }
.portrait-visual img { width: 100%; height: 100%; object-fit: cover; object-position: top center; opacity: 0.75; transition: opacity .5s, transform .5s; }
.portrait-visual:hover img { opacity: 0.88; transform: scale(1.03); }
.portrait-visual-overlay { position: absolute; inset: 0; background: linear-gradient(to right, transparent 55%, var(--beige)); }
.portrait-symbol { position: absolute; bottom: 36px; left: 36px; font-size: 80px; opacity: 0.07; font-family: 'Cormorant Garamond', serif; color: var(--or); }
.portrait-content { background: var(--beige); padding: 80px 72px; display: flex; flex-direction: column; justify-content: center; }
.portrait-quote { font-family: 'Cormorant Garamond', serif; font-size: 28px; font-weight: 300; font-style: italic; line-height: 1.55; color: var(--noir); margin-bottom: 32px; position: relative; padding-left: 20px; }
.portrait-quote::before { content: '"'; font-size: 72px; color: var(--or); opacity: 0.25; position: absolute; top: -16px; left: -8px; font-family: 'Cormorant Garamond', serif; line-height: 1; }
.portrait-text { font-size: 16px; line-height: 2.1; color: var(--gris); margin-bottom: 24px; font-weight: 300; }
.portrait-signature { font-family: 'Cormorant Garamond', serif; font-size: 22px; font-style: italic; color: var(--or); margin-bottom: 4px; }
.portrait-fonction { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--gris); }

/* DISTINCTION */
.distinction-band { background: var(--noir); padding: 80px 120px; display: grid; grid-template-columns: 1fr 2fr; gap: 80px; align-items: center; border-top: 1px solid rgba(184,150,90,0.15); border-bottom: 1px solid rgba(184,150,90,0.15); }
.distinction-title { font-family: 'Cormorant Garamond', serif; font-size: 42px; font-weight: 300; color: var(--blanc); line-height: 1.2; }
.distinction-title em { color: var(--or-clair); font-style: italic; }
.distinction-points { display: grid; grid-template-columns: 1fr 1fr; gap: 36px; }
.distinction-point { border-left: 1px solid rgba(184,150,90,0.3); padding-left: 22px; }
.distinction-point-title { font-family: 'Cormorant Garamond', serif; font-size: 20px; color: var(--or-clair); margin-bottom: 10px; }
.distinction-point-text { font-size: 15px; color: rgba(250,250,248,0.62); line-height: 1.9; font-weight: 300; }

/* CTA */
.section-cta { padding: 110px; text-align: center; background: var(--blanc); position: relative; overflow: hidden; }
.section-cta::before { content: 'JUSTICE'; position: absolute; font-family: 'Cormorant Garamond', serif; font-size: 180px; font-weight: 700; color: var(--beige); letter-spacing: 20px; top: 50%; left: 50%; transform: translate(-50%,-50%); white-space: nowrap; pointer-events: none; }
.section-cta > * { position: relative; z-index: 1; }
.cta-title { font-family: 'Cormorant Garamond', serif; font-size: 54px; font-weight: 300; margin-bottom: 18px; line-height: 1.2; color: var(--noir); }
.cta-title em { color: var(--or); font-style: italic; }
.cta-text { font-size: 17px; color: var(--gris); margin-bottom: 40px; font-weight: 300; line-height: 1.9; max-width: 500px; margin-left: auto; margin-right: auto; }
.cta-tel { font-family: 'Cormorant Garamond', serif; font-size: 36px; color: var(--noir); font-weight: 300; letter-spacing: 2px; margin-bottom: 8px; display: block; text-decoration: none; transition: color .3s; }
.cta-tel:hover { color: var(--or); }
.cta-dispo { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--or); margin-bottom: 40px; display: block; }

/* FOOTER */
footer { background: var(--noir); padding: 60px 120px 40px; border-top: 1px solid rgba(184,150,90,0.15); }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 60px; margin-bottom: 56px; padding-bottom: 56px; border-bottom: 1px solid rgba(255,255,255,0.06); }
.footer-logo { font-family: 'Cormorant Garamond', serif; font-size: 18px; font-weight: 600; color: var(--blanc); letter-spacing: 3px; text-transform: uppercase; margin-bottom: 14px; }
.footer-tagline { font-size: 14px; color: rgba(250,250,248,0.42); line-height: 1.9; font-weight: 300; max-width: 280px; }
.footer-col-title { font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: var(--or); margin-bottom: 18px; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { font-size: 15px; color: rgba(250,250,248,0.48); text-decoration: none; transition: color .3s; font-weight: 300; }
.footer-links a:hover { color: var(--or-clair); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; }
.footer-copyright { font-size: 12px; color: rgba(250,250,248,0.28); }
.footer-or-line { width: 60px; height: 1px; background: linear-gradient(to right, transparent, var(--or), transparent); }
.footer-legal-link { color: rgba(250,250,248,0.28); text-decoration: none; transition: color .3s; }
.footer-legal-link:hover { color: var(--or-clair); }

/* PAGE HERO */
.page-hero { height: 50vh; background: var(--noir); display: flex; align-items: flex-end; padding: 0 120px 64px; position: relative; overflow: hidden; padding-top: 96px; }
.page-hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0.18; }
.page-hero-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(12,12,12,1) 20%, rgba(12,12,12,0.5) 100%); }
.page-hero-content { position: relative; z-index: 2; }
.page-hero-tag { font-size: 11px; letter-spacing: 4px; text-transform: uppercase; color: var(--or); display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.page-hero-tag::before { content: ''; width: 28px; height: 1px; background: var(--or); }
.page-hero-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(42px, 5vw, 70px); font-weight: 300; color: var(--blanc); line-height: 1.1; }
.page-hero-title em { font-style: italic; color: var(--or-clair); }

/* PRÉSENTATION */
.presentation-grid { display: grid; grid-template-columns: 1fr 1fr; }
.pres-col-left { background: var(--beige); padding: 90px 76px; }
.pres-col-right { background: var(--blanc); padding: 90px 76px; }
.pres-title { font-family: 'Cormorant Garamond', serif; font-size: 40px; font-weight: 300; margin-bottom: 32px; line-height: 1.2; color: var(--noir); }
.pres-title em { font-style: italic; color: var(--or); }
.pres-text { font-size: 16px; line-height: 2.1; color: var(--gris); font-weight: 300; margin-bottom: 22px; }
.pres-highlight { border-left: 2px solid var(--or); padding: 14px 22px; background: rgba(184,150,90,0.05); font-family: 'Cormorant Garamond', serif; font-size: 20px; font-style: italic; color: var(--noir); margin: 28px 0; line-height: 1.6; }
.pres-diplome-item { display: flex; gap: 18px; padding: 18px 0; border-bottom: 1px solid var(--beige-fonce); align-items: flex-start; }
.pres-diplome-dot { width: 7px; height: 7px; border: 1px solid var(--or); border-radius: 50%; margin-top: 8px; flex-shrink: 0; background: rgba(184,150,90,0.3); }
.pres-diplome-text { font-size: 15px; color: var(--gris); line-height: 1.8; font-weight: 300; }
.pres-diplome-text strong { color: var(--noir); font-weight: 500; font-size: 16px; display: block; margin-bottom: 2px; }

/* DOMAINES */
.domaines-section { padding: 90px 120px; background: var(--noir); }
.domaine-block { margin-bottom: 64px; }
.domaine-label { display: inline-flex; align-items: center; gap: 12px; font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: var(--or); margin-bottom: 18px; background: rgba(184,150,90,0.07); padding: 8px 16px; border: 1px solid rgba(184,150,90,0.18); }
.domaine-h3 { font-family: 'Cormorant Garamond', serif; font-size: 36px; font-weight: 300; color: var(--blanc); margin-bottom: 26px; line-height: 1.2; }
.domaine-h3 em { font-style: italic; color: var(--or-clair); }
.domaine-list { display: grid; grid-template-columns: repeat(2,1fr); gap: 10px; list-style: none; }
.domaine-list li { font-size: 16px; color: rgba(250,250,248,0.75); padding: 13px 16px; border: 1px solid rgba(255,255,255,0.05); display: flex; align-items: center; gap: 12px; font-weight: 300; line-height: 1.5; transition: border-color .3s, background .3s, color .3s; }
.domaine-list li:hover { border-color: rgba(184,150,90,0.28); background: rgba(184,150,90,0.04); color: var(--blanc); }
.domaine-list li::before { content: '—'; color: var(--or); flex-shrink: 0; }
.domaine-note { margin-top: 18px; font-size: 15px; color: rgba(250,250,248,0.45); font-style: italic; padding-left: 16px; border-left: 1px solid rgba(184,150,90,0.22); line-height: 1.8; font-weight: 300; }

/* HONORAIRES */
.honoraires-intro { padding: 90px 120px; background: var(--beige); }
.honoraires-intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; }
.honoraires-intro-text p { font-size: 16px; line-height: 2.1; color: var(--gris); font-weight: 300; margin-bottom: 18px; }
.honoraires-box { background: var(--blanc); border: 1px solid var(--beige-fonce); padding: 48px; position: relative; }
.honoraires-box::before { content: ''; position: absolute; top: 0; left: 0; width: 36px; height: 2px; background: var(--or); }
.honoraires-box-title { font-family: 'Cormorant Garamond', serif; font-size: 26px; font-weight: 500; margin-bottom: 22px; line-height: 1.3; color: var(--noir); }
.honoraires-box-text { font-size: 16px; color: var(--gris); line-height: 2; font-weight: 300; }
.honoraires-modes { padding: 90px 120px; background: var(--blanc); }
.honoraires-modes-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; margin-top: 56px; }
.mode-card { padding: 56px 40px; background: var(--beige); transition: background .3s, transform .3s; }
.mode-card:hover { background: var(--noir); transform: translateY(-5px); }
.mode-card:hover .mode-title { color: var(--blanc); }
.mode-card:hover .mode-text { color: rgba(250,250,248,0.58); }
.mode-icon { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 28px; margin-bottom: 24px; display: block; color: var(--or); transition: .3s; }
.mode-title { font-family: 'Cormorant Garamond', serif; font-size: 30px; font-weight: 500; margin-bottom: 14px; color: var(--noir); transition: color .3s; }
.mode-text { font-size: 16px; line-height: 2; color: var(--gris); font-weight: 300; transition: color .3s; }
.honoraires-aide { padding: 76px 120px; background: var(--noir); }
.honoraires-aide-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.aide-title { font-family: 'Cormorant Garamond', serif; font-size: 40px; font-weight: 300; color: var(--blanc); margin-bottom: 20px; line-height: 1.2; }
.aide-title em { font-style: italic; color: var(--or-clair); }
.aide-text { font-size: 16px; color: rgba(250,250,248,0.62); line-height: 2; font-weight: 300; }
.aide-list { list-style: none; }
.aide-list li { display: flex; align-items: flex-start; gap: 14px; padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,0.05); font-size: 16px; color: rgba(250,250,248,0.7); line-height: 1.8; font-weight: 300; }
.aide-list li::before { content: '→'; color: var(--or); flex-shrink: 0; }

/* CONTACT */
.contact-layout { display: grid; grid-template-columns: 1fr 1fr; min-height: calc(100vh - 96px); }
.contact-info { background: var(--noir); padding: 96px 76px; display: flex; flex-direction: column; justify-content: center; position: relative; overflow: hidden; }
.contact-info::before { content: ''; position: absolute; top: -100px; right: -100px; width: 380px; height: 380px; border-radius: 50%; border: 1px solid rgba(184,150,90,0.06); }
.contact-info-content { position: relative; z-index: 1; }
.contact-brand { font-size: 11px; letter-spacing: 4px; text-transform: uppercase; color: var(--or); margin-bottom: 36px; display: flex; align-items: center; gap: 12px; }
.contact-brand::before { content: ''; width: 28px; height: 1px; background: var(--or); }
.contact-info-title { font-family: 'Cormorant Garamond', serif; font-size: 54px; font-weight: 300; color: var(--blanc); line-height: 1.1; margin-bottom: 50px; }
.contact-info-title em { font-style: italic; color: var(--or-clair); }
.contact-details { list-style: none; margin-bottom: 46px; }
.contact-details li { display: flex; align-items: flex-start; gap: 20px; padding: 20px 0; border-bottom: 1px solid rgba(255,255,255,0.05); }
.contact-details-icon { width: 40px; height: 40px; border: 1px solid rgba(184,150,90,0.22); display: flex; align-items: center; justify-content: center; font-size: 11px; color: var(--or); flex-shrink: 0; font-family: 'Cormorant Garamond', serif; font-style: italic; letter-spacing: 1px; }
.contact-details-text { font-size: 16px; color: rgba(250,250,248,0.72); line-height: 1.9; font-weight: 300; }
.contact-details-text strong { color: var(--blanc); font-weight: 400; font-size: 17px; display: block; margin-bottom: 3px; }
.contact-details-text a { color: rgba(250,250,248,0.72); text-decoration: none; transition: color .3s; }
.contact-details-text a:hover { color: var(--or-clair); }
.contact-dispo-badge { display: inline-flex; align-items: center; gap: 10px; padding: 13px 26px; border: 1px solid rgba(184,150,90,0.28); background: rgba(184,150,90,0.05); font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--or); }
.contact-dispo-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--or); animation: pulse 2s ease-in-out infinite; }
@keyframes pulse { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity: .4; transform: scale(.7); } }
.contact-map-col { background: var(--beige); display: flex; flex-direction: column; }
.contact-map-col iframe { flex: 1; width: 100%; border: none; filter: grayscale(18%) sepia(8%); min-height: 100%; }

/* PAGES LÉGALES */
.legal-hero { background: var(--noir); padding: 80px 120px 60px; border-bottom: 1px solid rgba(184,150,90,0.15); padding-top: 140px; }
.legal-tag { font-size: 11px; letter-spacing: 4px; text-transform: uppercase; color: var(--or); display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.legal-tag::before { content: ''; width: 28px; height: 1px; background: var(--or); }
.legal-hero-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(38px, 4vw, 58px); font-weight: 300; color: var(--blanc); line-height: 1.1; }
.legal-body { max-width: 840px; margin: 0 auto; padding: 76px 40px; }
.legal-section { margin-bottom: 48px; }
.legal-section h2 { font-family: 'Cormorant Garamond', serif; font-size: 26px; font-weight: 500; color: var(--noir); margin-bottom: 18px; padding-bottom: 10px; border-bottom: 1px solid var(--beige-fonce); }
.legal-section h2::before { content: '— '; color: var(--or); }
.legal-section p { font-size: 16px; line-height: 2; color: var(--gris); font-weight: 300; margin-bottom: 12px; }
.legal-section strong { color: var(--noir); font-weight: 500; }
.legal-section a { color: var(--or); text-decoration: none; }
.legal-section ul { list-style: none; padding: 0; margin: 14px 0; }
.legal-section ul li { font-size: 16px; line-height: 2; color: var(--gris); font-weight: 300; padding: 5px 0 5px 18px; position: relative; }
.legal-section ul li::before { content: '—'; color: var(--or); position: absolute; left: 0; }
.legal-back { display: inline-flex; align-items: center; gap: 10px; font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--or); text-decoration: none; margin-bottom: 52px; transition: gap .3s; }
.legal-back:hover { gap: 16px; }
.legal-date { font-size: 13px; color: var(--gris-clair); letter-spacing: 1px; margin-bottom: 48px; font-style: italic; }

/* REVEAL */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s ease, transform .8s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }

/* JS NAV SCROLL */
.nav-js { transition: all .4s; }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 900px) {
  .cursor, .cursor-ring { display: none; }
  body { cursor: auto; }
  nav { padding: 0 20px; height: 90px; }
  nav.scrolled { height: 60px; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .nav-logo-emblem { height: 90px; width: 90px; }

  .hero { height: 100svh; }
  .hero-content { padding: 80px 24px 0; max-width: 100%; }
  .hero-title { font-size: clamp(38px, 10vw, 56px); }
  .hero-desc { font-size: 16px; max-width: 100%; }
  .hero-ctas { flex-direction: column; gap: 12px; margin-bottom: 120px; }
  .btn-primary, .btn-secondary { padding: 15px 24px; font-size: 10px; justify-content: center; text-align: center; width: 100%; }
  .hero-line { left: 20px; }
  .hero-scroll { left: 24px; bottom: 16px; }

  .cannes-band-label { font-size: 8px; letter-spacing: 3px; }
  .section-stats { flex-direction: column; padding: 40px 20px; }
  .stat-item { padding: 22px 20px; border-right: none !important; border-bottom: 1px solid var(--beige-fonce); text-align: center; }
  .stat-item:last-child { border-bottom: none; }
  .stat-number { font-size: 38px; }
  .cannes-track { animation-duration: 10s; animation-play-state: running; }

  .section { padding: 56px 20px; }
  .domaines-section { padding: 56px 20px; }
  .distinction-band { padding: 56px 20px; grid-template-columns: 1fr; gap: 36px; }
  .distinction-points { grid-template-columns: 1fr; gap: 24px; }
  .distinction-title { font-size: 34px; }

  .expertise-grid { grid-template-columns: 1fr; }
  .expertise-card { padding: 32px 24px; }
  .expertise-text { font-size: 15px; }

  .section-portrait { grid-template-columns: 1fr; }
  .portrait-visual { min-height: 300px; }
  .portrait-visual-overlay { background: linear-gradient(to bottom, transparent 50%, var(--beige)); }
  .portrait-content { padding: 48px 24px; }
  .portrait-quote { font-size: 22px; }

  .section-cta { padding: 72px 24px; }
  .section-cta::before { font-size: 60px; letter-spacing: 5px; }
  .cta-title { font-size: 36px; }
  .cta-tel { font-size: 28px; }

  footer { padding: 44px 20px 28px; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; margin-bottom: 32px; padding-bottom: 32px; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
  .footer-or-line { display: none; }

  .page-hero { height: auto; min-height: 200px; padding: 110px 20px 48px; }
  .page-hero-title { font-size: clamp(32px, 9vw, 52px); }

  .presentation-grid { grid-template-columns: 1fr; }
  .pres-col-left, .pres-col-right { padding: 56px 24px; }
  .pres-title { font-size: 32px; }
  .pres-highlight { font-size: 18px; }

  .domaine-list { grid-template-columns: 1fr; }
  .domaine-h3 { font-size: 28px; }

  .honoraires-intro { padding: 56px 20px; }
  .honoraires-intro-grid { grid-template-columns: 1fr; gap: 36px; }
  .honoraires-modes { padding: 56px 20px; }
  .honoraires-modes-grid { grid-template-columns: 1fr; }
  .honoraires-aide { padding: 56px 20px; }
  .honoraires-aide-grid { grid-template-columns: 1fr; gap: 36px; }
  .honoraires-box { padding: 32px 24px; }

  .contact-layout { grid-template-columns: 1fr; }
  .contact-info { padding: 96px 24px 56px; }
  .contact-info-title { font-size: 40px; }
  .contact-map-col iframe { min-height: 340px; }

  .legal-hero { padding: 110px 20px 44px; }
  .legal-body { padding: 48px 20px; }

  .mobile-menu a { font-size: 34px; padding: 13px 20px; }

  .section-title { font-size: 32px; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 36px; }
  .hero-content { padding-top: 72px; }
}