/* ============================================
   MAÎTRE CAMILLE COCLY — CSS PREMIUM
   ============================================ */

/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --gold:        #C9A96E;
  --gold-light:  #E2C99A;
  --gold-dark:   #A8843A;
  --gold-dim:    rgba(201,169,110,0.06);
  --blue:        #2B6CA4;
  --blue-light:  #4A8DC4;
  --blue-dim:    rgba(43,108,164,0.12);
  --dark:        #0D0D0D;
  --dark-2:      #141414;
  --dark-3:      #1C1C1C;
  --dark-4:      #252525;
  --light:       #F5F0E8;
  --light-2:     #EDE8DC;
  --text:        #C8C4BA;
  --text-muted:  #7A7670;
  --white:       #FFFFFF;
  --font-serif:  'Cormorant Garamond', Georgia, serif;
  --font-sans:   'Jost', 'Helvetica Neue', Arial, sans-serif;
  --radius:      4px;
  --transition:  0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-sans);
  background: var(--dark);
  color: var(--text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  cursor: none;
}

/* Grain overlay */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  opacity: 0.032;
  pointer-events: none;
  z-index: 9998;
  mix-blend-mode: overlay;
}

/* Top accent line */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--gold) 30%, var(--gold-light) 50%, var(--gold) 70%, transparent 100%);
  z-index: 10001;
  opacity: 0.7;
}

img, svg { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; transition: color var(--transition); cursor: none; }
ul { list-style: none; }

/* === CUSTOM CURSOR === */
.cursor-dot,
.cursor-ring {
  position: fixed;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  transition: opacity 0.3s ease;
}

.cursor-dot {
  width: 5px;
  height: 5px;
  background: var(--gold);
  transition: opacity 0.3s ease, width 0.2s ease, height 0.2s ease;
}

.cursor-ring {
  width: 30px;
  height: 30px;
  border: 1px solid rgba(201,169,110,0.5);
}

body.cursor-hidden .cursor-dot,
body.cursor-hidden .cursor-ring {
  opacity: 0;
}

body.cursor-hover .cursor-dot {
  width: 8px;
  height: 8px;
  background: var(--gold-light);
}

body.cursor-hover .cursor-ring {
  width: 44px;
  height: 44px;
  border-color: var(--gold);
}

/* === TYPOGRAPHY === */
h1, h2, h3 { font-family: var(--font-serif); font-weight: 300; line-height: 1.15; }
em { font-style: italic; color: var(--gold); }

.section-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--blue-light);
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.2;
}

.section-divider {
  width: 40px;
  height: 1px;
  background: var(--gold);
  margin: 1.5rem 0 2.5rem;
  position: relative;
  overflow: hidden;
}

.section-divider::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold-light);
  transform: translateX(-100%);
  animation: shimmer 3s ease-in-out infinite 1s;
}

@keyframes shimmer {
  0% { transform: translateX(-100%); }
  50% { transform: translateX(100%); }
  100% { transform: translateX(100%); }
}

.section-header { text-align: center; margin-bottom: 4rem; }
.section-header .section-divider { margin-left: auto; margin-right: auto; }

.section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 1rem 2.5rem;
  border: 1px solid transparent;
  cursor: none;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.04);
  transform: translateX(-100%);
  transition: transform 0.4s ease;
}

.btn:hover::before { transform: translateX(0); }

.btn-primary {
  background: var(--gold);
  color: var(--dark);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  color: var(--dark);
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(201,169,110,0.3);
}

.btn-ghost {
  background: transparent;
  color: var(--light);
  border-color: rgba(255,255,255,0.25);
}
.btn-ghost:hover {
  background: rgba(201,169,110,0.06);
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.btn-full { width: 100%; justify-content: center; }

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.5rem 0;
  transition: all var(--transition);
}

.navbar.scrolled {
  background: rgba(13,13,13,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 1rem 0;
  border-bottom: 1px solid rgba(201,169,110,0.12);
  box-shadow: 0 4px 40px rgba(0,0,0,0.4);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
}
.nav-logo-img {
  height: 72px;
  width: auto;
  display: block;
  opacity: 0.92;
  transition: opacity var(--transition);
}
.nav-logo:hover .nav-logo-img { opacity: 1; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.nav-links a {
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text);
  position: relative;
  padding-bottom: 2px;
}

.nav-links a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}

.nav-links a:not(.nav-cta):hover {
  color: var(--gold);
}

.nav-links a:not(.nav-cta):hover::after {
  width: 100%;
}

.nav-cta {
  background: transparent;
  border: 1px solid rgba(201,169,110,0.6);
  color: var(--gold) !important;
  padding: 0.55rem 1.4rem;
  transition: all var(--transition);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
}
.nav-cta:hover {
  background: var(--gold) !important;
  color: var(--dark) !important;
  border-color: var(--gold) !important;
}

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: none;
  padding: 4px;
}
.nav-burger span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--white);
  transition: all var(--transition);
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--dark-2);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 70% at 15% 85%, rgba(201,169,110,0.07) 0%, transparent 60%),
    radial-gradient(ellipse 50% 60% at 85% 15%, rgba(201,169,110,0.04) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 50% 50%, rgba(201,169,110,0.02) 0%, transparent 70%);
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,169,110,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,169,110,0.025) 1px, transparent 1px);
  background-size: 80px 80px;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(13,13,13,0.25) 0%, rgba(13,13,13,0.05) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  max-width: 1000px;
  padding: 0 2rem;
  animation: fadeInUp 1s ease 0.3s both;
}

.hero-intro {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.hero-rule-line {
  display: block;
  width: 50px;
  height: 1px;
  background: rgba(201,169,110,0.4);
}

.hero-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--blue);
  white-space: nowrap;
}
.hero-barreau-mobile {
  display: none;
}
@media (max-width: 600px) {
  .hero-eyebrow { white-space: normal; text-align: center; }
  .hero-eyebrow-desktop { display: none; }
  .hero-barreau-mobile {
    display: block;
    font-family: var(--font-sans);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--blue);
    text-align: center;
    margin-top: 0.75rem;
  }
}

.hero-title {
  margin-bottom: 2.5rem;
  line-height: 1;
}
.hero-logo-img {
  height: clamp(80px, 18vw, 200px);
  width: auto;
  display: block;
  margin: 0 auto;
}

.hero-maitre {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 2.2vw, 1.7rem);
  font-weight: 300;
  color: var(--text-muted);
  letter-spacing: 0.35em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.hero-name {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(5rem, 11vw, 10.5rem);
  font-weight: 300;
  font-style: italic;
  color: var(--white);
  line-height: 0.92;
  letter-spacing: -0.01em;
}

.hero-bottom {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 3rem;
  text-align: left;
  margin-top: 3.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(201,169,110,0.12);
}

.hero-tagline {
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--text);
  line-height: 1.9;
  letter-spacing: 0.03em;
  flex: 1;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex-shrink: 0;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  z-index: 2;
  animation: fadeIn 1s ease 1.5s both;
}
.hero-scroll-indicator span {
  font-size: 0.55rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.scroll-line {
  width: 1px;
  height: 55px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2.5s ease-in-out infinite;
}

.hero-aside {
  position: absolute;
  right: 2.5rem;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  z-index: 2;
  animation: fadeIn 1s ease 1.2s both;
}

.hero-aside span {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-size: 0.55rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ============================================
   MARQUEE
   ============================================ */
.marquee-strip {
  overflow: hidden;
  background: var(--dark);
  border-top: 1px solid rgba(201,169,110,0.18);
  border-bottom: 1px solid rgba(201,169,110,0.18);
  padding: 0.9rem 0;
}

.marquee-inner {
  display: flex;
  width: max-content;
  animation: marquee 35s linear infinite;
}

.marquee-strip:hover .marquee-inner {
  animation-play-state: paused;
}

.marquee-content {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  padding-right: 2.5rem;
  white-space: nowrap;
}

.marquee-content span {
  font-family: var(--font-sans);
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.75;
}

.marquee-content .mx {
  color: rgba(201,169,110,0.3);
  font-size: 0.45rem;
  opacity: 1;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================
   STATS BAR
   ============================================ */
.stats-bar {
  background: var(--dark-3);
  border-bottom: 1px solid rgba(201,169,110,0.1);
  padding: 4rem 0;
}
.stats-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}
.stat-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 2rem;
}
.stat-number {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 5vw, 4.5rem);
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -0.02em;
}
.stat-number sup {
  font-size: 1.2rem;
  vertical-align: super;
}
.stat-label {
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 0.75rem;
}
.stat-divider {
  width: 1px;
  height: 55px;
  background: linear-gradient(to bottom, transparent, rgba(201,169,110,0.25), transparent);
}

/* ============================================
   EXPERTISE
   ============================================ */
.expertise {
  padding: 9rem 0;
  background: var(--dark-2);
}

.expertise-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid rgba(201,169,110,0.1);
  position: relative;
}

.expertise-card {
  position: relative;
  overflow: hidden;
  transition: background var(--transition);
}

/* Border trace effect on hover */
.expertise-card::before,
.expertise-card::after {
  content: '';
  position: absolute;
  z-index: 1;
  pointer-events: none;
  transition: transform 0.5s ease;
}

.expertise-card::before {
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
}

.expertise-card:hover::before {
  transform: scaleX(1);
}

/* Vertical separator */
.expertise-card:not(:last-child) {
  border-right: 1px solid rgba(201,169,110,0.08);
}

.expertise-card-inner {
  padding: 3.5rem 2.5rem;
  position: relative;
  z-index: 2;
}

/* Roman numeral */
.expertise-card[data-index]::after {
  content: attr(data-index);
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  font-family: var(--font-serif);
  font-size: 3.5rem;
  font-weight: 300;
  color: rgba(201,169,110,0.06);
  line-height: 1;
  letter-spacing: -0.02em;
  transition: color 0.4s ease, transform 0.4s ease;
  z-index: 1;
  height: auto;
  transform: translateY(4px);
}

.expertise-card:hover[data-index]::after {
  color: rgba(201,169,110,0.12);
  transform: translateY(0);
}

.expertise-card:hover { background: var(--dark-3); }

.expertise-card--featured {
  background: var(--dark-3);
}

.expertise-card--featured::before {
  background: var(--gold);
  transform: scaleX(1);
  height: 2px;
}

.expertise-badge {
  display: inline-block;
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--blue-light);
  border: 1px solid rgba(43,108,164,0.4);
  padding: 0.3rem 0.75rem;
  margin-bottom: 1.5rem;
}

.expertise-icon {
  width: 44px;
  height: 44px;
  color: var(--gold);
  margin-bottom: 1.75rem;
  opacity: 0.75;
  transition: opacity var(--transition), transform var(--transition);
}

.expertise-card:hover .expertise-icon {
  opacity: 1;
  transform: translateY(-2px);
}

.expertise-title {
  font-family: var(--font-serif);
  font-size: 1.7rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 1rem;
}

.expertise-desc {
  font-size: 0.85rem;
  line-height: 1.85;
  color: var(--text);
  margin-bottom: 1.75rem;
}

.expertise-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.expertise-list li {
  font-size: 0.78rem;
  color: var(--text-muted);
  padding-left: 1.25rem;
  position: relative;
  letter-spacing: 0.04em;
  transition: color var(--transition);
}
.expertise-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.7rem;
}
.expertise-card:hover .expertise-list li {
  color: var(--text);
}

/* ============================================
   CABINET
   ============================================ */
.cabinet {
  padding: 9rem 0;
  background: var(--dark);
}

.cabinet-layout {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 7rem;
  align-items: center;
}

.cabinet-image-wrapper {
  position: relative;
}

.cabinet-image-placeholder {
  background: var(--dark-3);
  border: 1px solid rgba(201,169,110,0.12);
  aspect-ratio: 3/4;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.cabinet-photo {
  display: block;
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: top center;
  border: 1px solid rgba(201,169,110,0.12);
}

.cabinet-image-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.cabinet-image-inner svg {
  width: 120px;
  height: 160px;
  opacity: 0.35;
}
.cabinet-image-caption {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  font-style: italic;
  color: var(--gold);
  letter-spacing: 0.05em;
}

.cabinet-image-accent {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  width: 55%;
  height: 55%;
  border: 1px solid rgba(201,169,110,0.15);
  z-index: -1;
}

.cabinet-image-accent-2 {
  position: absolute;
  top: -1rem;
  left: -1rem;
  width: 30%;
  height: 30%;
  border: 1px solid rgba(201,169,110,0.08);
  z-index: -1;
}

.cabinet-text {
  font-size: 0.925rem;
  line-height: 1.95;
  color: var(--text);
  margin-bottom: 1.5rem;
}

.cabinet-highlights {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(201,169,110,0.1);
}

.highlight-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 0.5rem 0;
  transition: transform var(--transition);
}

.highlight-item:hover {
  transform: translateX(4px);
}

.highlight-icon {
  color: var(--gold);
  font-size: 0.65rem;
  margin-top: 0.2rem;
  flex-shrink: 0;
  opacity: 0.8;
}
.highlight-item strong {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 0.3rem;
}
.highlight-item p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ============================================
   VALEURS
   ============================================ */
.valeurs {
  padding: 9rem 0;
  background: var(--dark-2);
}

.valeurs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3.5rem 6rem;
}

.valeur-item {
  position: relative;
  padding-left: 4.5rem;
  transition: transform var(--transition);
}

.valeur-item:hover {
  transform: translateY(-3px);
}

.valeur-number {
  position: absolute;
  left: 0;
  top: -0.75rem;
  font-family: var(--font-serif);
  font-size: 4rem;
  font-weight: 300;
  color: rgba(201,169,110,0.1);
  line-height: 1;
  letter-spacing: -0.02em;
  transition: color var(--transition);
}

.valeur-item:hover .valeur-number {
  color: rgba(201,169,110,0.18);
}

.valeur-item h3 {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 0.75rem;
}
.valeur-item p {
  font-size: 0.875rem;
  line-height: 1.85;
  color: var(--text);
}

/* ============================================
   TESTIMONIAL
   ============================================ */
.testimonial {
  background: var(--dark);
  border-top: 1px solid rgba(201,169,110,0.08);
  border-bottom: 1px solid rgba(201,169,110,0.08);
  padding: 7rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.testimonial::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(201,169,110,0.03) 0%, transparent 70%);
  pointer-events: none;
}

.testimonial-container {
  max-width: 820px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.testimonial-quote-mark {
  font-family: var(--font-serif);
  font-size: 9rem;
  color: var(--gold);
  opacity: 0.12;
  line-height: 0.4;
  margin-bottom: 1.5rem;
  display: block;
}

.testimonial-text {
  font-family: var(--font-serif);
  font-size: clamp(1.15rem, 2.5vw, 1.65rem);
  font-weight: 300;
  font-style: italic;
  color: var(--light);
  line-height: 1.75;
  margin-bottom: 2.5rem;
}

.testimonial-author {
  font-size: 0.7rem;
  font-style: normal;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
}
.testimonial-author strong {
  color: var(--white);
}

/* ============================================
   PROCESSUS
   ============================================ */
.processus {
  padding: 9rem 0;
  background: var(--dark-3);
}

.processus-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

/* Connecting line */
.processus-steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(12.5%);
  right: calc(12.5%);
  height: 1px;
  background: linear-gradient(90deg, rgba(201,169,110,0.15), rgba(201,169,110,0.3), rgba(201,169,110,0.15));
  z-index: 0;
}

.step {
  position: relative;
  padding: 0 1.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 1;
}

.step-number {
  width: 56px;
  height: 56px;
  border: 1px solid rgba(201,169,110,0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 300;
  color: var(--gold);
  margin-bottom: 2rem;
  background: var(--dark-3);
  position: relative;
  z-index: 2;
  transition: all var(--transition);
}

.step:hover .step-number {
  background: var(--gold);
  color: var(--dark);
  border-color: var(--gold);
  box-shadow: 0 0 30px rgba(201,169,110,0.25);
  transform: scale(1.05);
}

.step-content h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 0.75rem;
}
.step-content p {
  font-size: 0.82rem;
  line-height: 1.75;
  color: var(--text);
}

/* ============================================
   CONTACT
   ============================================ */
.contact {
  padding: 9rem 0;
  background: var(--dark-2);
}

.contact-layout {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 6rem;
  align-items: start;
}

.contact-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.2;
}

.contact-intro {
  font-size: 0.9rem;
  line-height: 1.85;
  color: var(--text);
  margin-bottom: 3rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.contact-detail-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  transition: transform var(--transition);
}

.contact-detail-item:hover {
  transform: translateX(4px);
}

.contact-detail-icon {
  width: 20px;
  height: 20px;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 0.2rem;
  opacity: 0.8;
}
.contact-detail-icon svg { width: 20px; height: 20px; }
.contact-detail-item strong {
  display: block;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 0.3rem;
}
.contact-detail-item p {
  font-size: 0.85rem;
  color: var(--text);
  line-height: 1.6;
}

/* === FORM === */
.contact-form {
  background: var(--dark-3);
  border: 1px solid rgba(201,169,110,0.1);
  padding: 3rem;
  position: relative;
}

/* Corner accents */
.contact-form::before,
.contact-form::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  border-color: rgba(201,169,110,0.3);
  border-style: solid;
}
.contact-form::before {
  top: -1px;
  right: -1px;
  border-width: 2px 2px 0 0;
}
.contact-form::after {
  bottom: -1px;
  left: -1px;
  border-width: 0 0 2px 2px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.form-group label {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color var(--transition);
}

.form-group:focus-within label {
  color: var(--gold);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--dark-4);
  border: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(201,169,110,0.15);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.875rem;
  padding: 0.875rem 1rem;
  outline: none;
  transition: border-color var(--transition), background var(--transition);
  appearance: none;
  -webkit-appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(122,118,112,0.5);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(201,169,110,0.4);
  border-bottom-color: var(--gold);
  background: rgba(37,37,37,0.9);
}

.form-group select {
  cursor: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23C9A96E' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form-group select option {
  background: var(--dark-4);
  color: var(--white);
}

.form-group textarea { resize: vertical; min-height: 130px; }

.form-legal {
  font-size: 0.68rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  opacity: 0.7;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--dark);
  border-top: 1px solid rgba(201,169,110,0.1);
  padding-top: 5rem;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem 4rem;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
}

.footer-name {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 0.75rem;
}
.footer-desc {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.75;
}

.footer-links h4,
.footer-contact h4 {
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.footer-links ul { display: flex; flex-direction: column; gap: 0.65rem; }
.footer-links a {
  font-size: 0.82rem;
  color: var(--text-muted);
  transition: color var(--transition);
  position: relative;
  display: inline-block;
}
.footer-links a::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}
.footer-links a:hover { color: var(--gold); }
.footer-links a:hover::after { width: 100%; }

.footer-contact p {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
  line-height: 1.6;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.04);
  padding: 1.5rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom p {
  font-size: 0.72rem;
  color: var(--text-muted);
  opacity: 0.7;
}
.footer-social {
  display: flex;
  gap: 1rem;
  align-items: center;
}
.footer-social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  opacity: 0.75;
  transition: color var(--transition), opacity var(--transition);
  font-family: var(--font-sans);
}
.footer-social-link svg {
  width: 16px;
  height: 16px;
}
.footer-social-link:hover {
  color: var(--blue-light);
  opacity: 1;
}

.footer-legal-links {
  display: flex;
  gap: 1.5rem;
}
.footer-legal-links a {
  font-size: 0.72rem;
  color: var(--text-muted);
  opacity: 0.7;
  transition: color var(--transition), opacity var(--transition);
}
.footer-legal-links a:hover {
  color: var(--blue-light);
  opacity: 1;
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(35px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes scrollPulse {
  0%, 100% { transform: scaleY(1); opacity: 0.5; }
  50%       { transform: scaleY(0.6); opacity: 1; }
}

/* Clip-path reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s cubic-bezier(0.25,0.46,0.45,0.94),
              transform 0.8s cubic-bezier(0.25,0.46,0.45,0.94);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .expertise-grid { grid-template-columns: 1fr; }
  .expertise-card:not(:last-child) {
    border-right: none;
    border-bottom: 1px solid rgba(201,169,110,0.08);
  }
  .cabinet-layout { grid-template-columns: 1fr; gap: 4rem; }
  .cabinet-image-wrapper { max-width: 420px; }
  .processus-steps { grid-template-columns: repeat(2, 1fr); gap: 3rem; }
  .processus-steps::before { display: none; }
  .contact-layout { grid-template-columns: 1fr; gap: 4rem; }
  .footer-container { grid-template-columns: 1fr 1fr; }
  .valeurs-grid { gap: 2.5rem 3rem; }
  .hero-aside { display: none; }
  .hero-bottom { flex-direction: column; gap: 2rem; align-items: center; text-align: center; }
  .hero-actions { flex-direction: row; }
}

@media (max-width: 768px) {
  body { cursor: auto; }
  .cursor-dot, .cursor-ring { display: none; }
  a, button { cursor: auto; }

  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    width: 100vw;
    height: 100vh;
    min-height: 100vh;
    background: rgba(13,13,13,0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    justify-content: center;
    align-items: center;
    gap: 2rem;
    z-index: 1002;
  }
  .nav-links.open a { font-size: 1.1rem; letter-spacing: 0.2em; }
  .nav-burger { display: flex; z-index: 1003; position: relative; }
  .nav-logo { flex: 1; justify-content: center; }

  .hero-intro { gap: 1rem; }
  .hero-rule-line { width: 30px; }
  .hero-bottom { gap: 1.5rem; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { text-align: center; justify-content: center; }

  .stats-container { flex-direction: column; gap: 2.5rem; }
  .stat-divider { width: 40px; height: 1px; background: rgba(201,169,110,0.2); }

  .valeurs-grid { grid-template-columns: 1fr; }
  .processus-steps { grid-template-columns: 1fr; }
  .footer-container { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
  .form-row { grid-template-columns: 1fr; }

  .stats-bar { padding: 2.5rem 0; }
  .expertise, .cabinet, .valeurs, .processus, .contact { padding: 6rem 0; }
  .contact-form { padding: 2rem; }
}

@media (max-width: 480px) {
  .hero-name { font-size: clamp(3.5rem, 14vw, 5.5rem); }
  .hero-eyebrow { font-size: 0.68rem; letter-spacing: 0.1em !important; white-space: normal; text-align: center; color: var(--blue) !important; }
  .hero-rule-line { display: none; }
  .hero-content { padding-top: 90px; }
}

/* ============================================
   ARTICLES SECTION
   ============================================ */

.articles-section {
  padding: 10rem 0;
  background: var(--dark-2);
}

.articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.article-card {
  background: var(--dark-3);
  border: 1px solid rgba(201,169,110,0.12);
  border-radius: var(--radius);
  padding: 2.5rem;
  transition: border-color var(--transition), transform var(--transition);
}

.article-card:hover {
  border-color: rgba(201,169,110,0.35);
  transform: translateY(-4px);
}

.article-card-tag {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}

.article-card-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--light);
  line-height: 1.35;
  margin-bottom: 1rem;
}

.article-card-excerpt {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 2rem;
}

.article-card-link {
  background: none;
  border: none;
  color: var(--gold);
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: none;
  padding: 0;
  transition: color var(--transition);
}

.article-card-link:hover { color: var(--gold-light); }

/* Article full content */
.article-full {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.article-full.article-expanded {
  max-height: 9999px;
}

.article-juridique {
  background: var(--dark-3);
  border: 1px solid rgba(201,169,110,0.12);
  border-radius: var(--radius);
  padding: 4rem;
  margin-top: 1rem;
}

.article-juridique h1 {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 400;
  color: var(--light);
  line-height: 1.25;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(201,169,110,0.15);
}

.article-intro {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--text);
  margin-bottom: 3rem;
}

.article-juridique h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.3rem, 2vw, 1.8rem);
  font-weight: 400;
  color: var(--light);
  margin-top: 3rem;
  margin-bottom: 1.2rem;
}

.article-juridique h3 {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.article-juridique p {
  font-size: 0.95rem;
  line-height: 1.85;
  color: var(--text);
  margin-bottom: 1.2rem;
}

.article-list {
  list-style: none;
  padding: 0;
  margin-bottom: 1.5rem;
}

.article-list li {
  font-size: 0.95rem;
  color: var(--text);
  padding: 0.7rem 0 0.7rem 1.5rem;
  border-bottom: 1px solid rgba(201,169,110,0.07);
  position: relative;
}

.article-list li::before {
  content: '◆';
  position: absolute;
  left: 0;
  font-size: 0.45rem;
  color: var(--gold);
  top: 50%;
  transform: translateY(-50%);
}

.article-cta {
  background: var(--dark-4);
  border: 1px solid rgba(201,169,110,0.2);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius);
  padding: 2.5rem;
  margin: 3rem 0;
}

.article-cta p {
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

.faq-section { margin-top: 3rem; }

.faq-section h2 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--light);
  margin-bottom: 2rem;
}

.faq-section [itemprop="mainEntity"] {
  border-bottom: 1px solid rgba(201,169,110,0.1);
  padding: 1.5rem 0;
}

.faq-section h3 {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--light-2);
  text-transform: none;
  letter-spacing: 0;
  margin-bottom: 0.8rem;
}

.faq-section p {
  font-size: 0.88rem;
  color: var(--text-muted);
}

@media (max-width: 768px) {
  .articles-grid { grid-template-columns: 1fr; }
  .article-juridique { padding: 2rem 1.5rem; }
}

/* ============================================
   LIGHT REBRAND (inspired by rydge.fr rhythm)
   ============================================ */

:root {
  --gold: #B38745;
  --gold-light: #C79E60;
  --gold-dark: #8D672F;
  --gold-dim: rgba(179, 135, 69, 0.08);
  --dark: #FFFFFF;
  --dark-2: #F7F8FC;
  --dark-3: #FFFFFF;
  --dark-4: #EEF1F6;
  --light: #121B2D;
  --light-2: #27324A;
  --text: #44506A;
  --text-muted: #6B778F;
  --white: #121B2D;
  --radius: 14px;
}

body {
  background: radial-gradient(circle at 14% 12%, rgba(43, 88, 181, 0.07), transparent 34%),
              radial-gradient(circle at 84% 10%, rgba(179, 135, 69, 0.08), transparent 26%),
              #ffffff;
  color: var(--text);
  cursor: auto;
}

body::after {
  opacity: 0.01;
  mix-blend-mode: normal;
}

body::before {
  height: 2px;
  background: linear-gradient(90deg, rgba(16, 28, 48, 0), rgba(16, 28, 48, 0.45), rgba(179, 135, 69, 0.6), rgba(16, 28, 48, 0.45), rgba(16, 28, 48, 0));
  opacity: 0.35;
}

a,
button,
.btn,
.nav-burger,
.article-card-link,
.form-group select {
  cursor: pointer;
}

.cursor-dot,
.cursor-ring {
  display: none;
}

h1,
h2,
h3,
.section-title,
.contact-title,
.hero-name,
.hero-maitre,
.testimonial-text,
.expertise-title,
.article-juridique h1,
.article-juridique h2,
.faq-section h2,
.valeur-item h3,
.step-content h3,
.footer-name {
  color: var(--light);
}

.section-divider {
  background: linear-gradient(90deg, rgba(17, 29, 49, 0.08), rgba(179, 135, 69, 0.75));
}

.btn {
  border-radius: 999px;
}

.btn-primary {
  background: #121b2d;
  border-color: #121b2d;
  color: #ffffff;
  box-shadow: 0 12px 34px rgba(18, 27, 45, 0.16);
}

.btn-primary:hover {
  background: #1f2d48;
  border-color: #1f2d48;
  box-shadow: 0 16px 36px rgba(31, 45, 72, 0.2);
}

.btn-ghost {
  color: #1f2d48;
  border-color: rgba(18, 27, 45, 0.2);
  background: #ffffff;
}

.btn-ghost:hover {
  border-color: rgba(18, 27, 45, 0.4);
  background: #f6f8fc;
  color: #121b2d;
}

.navbar {
  padding: 1.1rem 0;
  background: rgba(255, 255, 255, 0.86);
  border-bottom: 1px solid rgba(17, 29, 49, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.97);
  border-bottom-color: rgba(17, 29, 49, 0.12);
  box-shadow: 0 14px 40px rgba(16, 28, 48, 0.12);
}


.nav-links a {
  color: #2f3a52;
}

.nav-links a:not(.nav-cta)::after {
  background: #121b2d;
}

.nav-links a:not(.nav-cta):hover {
  color: #121b2d;
}

.nav-cta {
  color: #121b2d !important;
  border-color: rgba(18, 27, 45, 0.26);
}

.nav-cta:hover {
  background: #121b2d !important;
  border-color: #121b2d !important;
  color: #ffffff !important;
}

.nav-burger span {
  background: #121b2d;
}

.hero {
  background: linear-gradient(180deg, #f7f9fe 0%, #ffffff 68%);
  min-height: 94vh;
}

.hero::before {
  background: radial-gradient(ellipse 55% 55% at 12% 88%, rgba(26, 61, 132, 0.1) 0%, transparent 65%),
              radial-gradient(ellipse 42% 52% at 88% 10%, rgba(179, 135, 69, 0.12) 0%, transparent 66%),
              radial-gradient(ellipse 60% 60% at 52% 38%, rgba(24, 38, 64, 0.05) 0%, transparent 70%);
}

.hero::after {
  background-image: linear-gradient(rgba(17, 29, 49, 0.04) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(17, 29, 49, 0.04) 1px, transparent 1px);
  background-size: 74px 74px;
}

.hero-overlay {
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.45) 0%, rgba(255, 255, 255, 0.2) 100%);
}

.hero-maitre {
  color: #5f6a84;
}

.hero-name {
  color: #111c31;
}

.hero-bottom {
  border-top-color: rgba(17, 29, 49, 0.1);
}

.hero-tagline,
.hero-scroll-indicator span,
.hero-aside span,
.stat-label,
.expertise-desc,
.cabinet-text,
.highlight-item p,
.valeur-item p,
.step-content p,
.contact-intro,
.contact-detail-item p,
.article-card-excerpt,
.article-juridique p,
.faq-section p,
.footer-desc,
.footer-contact p,
.footer-bottom p,
.footer-legal-links a {
  color: var(--text);
}

.scroll-line {
  background: linear-gradient(to bottom, #1f2d48, transparent);
}

.marquee-strip {
  background: #ffffff;
  border-top-color: rgba(17, 29, 49, 0.12);
  border-bottom-color: rgba(17, 29, 49, 0.12);
}

.marquee-content span {
  color: #33425f;
}

.marquee-content .mx {
  color: rgba(179, 135, 69, 0.7);
}

.stats-bar,
.cabinet,
.testimonial,
.processus,
.contact,
.footer {
  background: #ffffff;
}

.expertise,
.valeurs,
.articles-section {
  background: #f7f9fd;
}

.stats-bar {
  border-top: 1px solid rgba(17, 29, 49, 0.08);
  border-bottom: 1px solid rgba(17, 29, 49, 0.08);
}

.stat-number,
.section-eyebrow,
.contact-detail-icon,
.expertise-icon,
.testimonial-author,
.article-card-tag,
.article-card-link,
.form-group:focus-within label {
  color: #1f2d48;
}

.stat-divider {
  background: linear-gradient(to bottom, transparent, rgba(17, 29, 49, 0.23), transparent);
}

.expertise-grid {
  border: 1px solid rgba(17, 29, 49, 0.12);
  border-radius: var(--radius);
  overflow: hidden;
}

.expertise-card:not(:last-child) {
  border-right-color: rgba(17, 29, 49, 0.1);
}

.expertise-card,
.expertise-card:hover,
.expertise-card--featured {
  background: #ffffff;
}

.expertise-card[data-index]::after {
  color: rgba(17, 29, 49, 0.07);
}

.expertise-list li {
  color: #5a6781;
}

.cabinet-image-placeholder,
.contact-form,
.article-card,
.article-juridique,
.article-cta {
  background: #ffffff;
  border: 1px solid rgba(17, 29, 49, 0.14);
  box-shadow: 0 12px 34px rgba(17, 29, 49, 0.08);
}

.cabinet-image-inner svg {
  opacity: 0.2;
}

.cabinet-image-caption,
.highlight-icon,
.expertise-list li::before,
.article-list li::before,
.valeur-item:hover .valeur-number {
  color: #1f2d48;
}

.cabinet-image-accent {
  border-color: rgba(17, 29, 49, 0.22);
}

.cabinet-image-accent-2 {
  border-color: rgba(179, 135, 69, 0.4);
}

.cabinet-highlights {
  border-top-color: rgba(17, 29, 49, 0.12);
}

.highlight-item strong,
.contact-detail-item strong,
.article-juridique h3,
.faq-section h3,
.footer-links h4,
.footer-contact h4 {
  color: var(--light);
}

.highlight-item p,
.expertise-list li,
.form-legal,
.footer-links a {
  color: #5a6781;
}

.valeur-number {
  color: rgba(17, 29, 49, 0.09);
}

.testimonial {
  border-top-color: rgba(17, 29, 49, 0.1);
  border-bottom-color: rgba(17, 29, 49, 0.1);
}

.testimonial::before {
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(36, 62, 110, 0.06) 0%, transparent 74%);
}

.testimonial-quote-mark {
  color: #1f2d48;
  opacity: 0.16;
}

.processus-steps::before {
  background: linear-gradient(90deg, rgba(17, 29, 49, 0.16), rgba(17, 29, 49, 0.3), rgba(17, 29, 49, 0.16));
}

.step-number {
  border-color: rgba(17, 29, 49, 0.2);
  color: #1f2d48;
  background: #ffffff;
}

.step:hover .step-number {
  background: #121b2d;
  color: #ffffff;
  border-color: #121b2d;
  box-shadow: 0 0 0 8px rgba(18, 27, 45, 0.08);
}

.form-group label {
  color: #62708a;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: #f8fafd;
  border: 1px solid rgba(17, 29, 49, 0.12);
  border-bottom-color: rgba(17, 29, 49, 0.18);
  color: #1f2d48;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #8a96ad;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(31, 45, 72, 0.5);
  border-bottom-color: #1f2d48;
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(31, 45, 72, 0.08);
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23121B2D' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
}

.article-card:hover {
  border-color: rgba(17, 29, 49, 0.24);
}

.article-juridique h1 {
  border-bottom-color: rgba(17, 29, 49, 0.14);
}

.article-list li {
  border-bottom-color: rgba(17, 29, 49, 0.08);
}

.faq-section [itemprop="mainEntity"] {
  border-bottom-color: rgba(17, 29, 49, 0.1);
}

.footer {
  border-top: 1px solid rgba(17, 29, 49, 0.1);
}

.footer-links a::after {
  background: #121b2d;
}

.footer-links a:hover,
.footer-legal-links a:hover {
  color: #121b2d;
}

.footer-bottom {
  border-top-color: rgba(17, 29, 49, 0.1);
}

@media (max-width: 768px) {
  .navbar,
  .navbar.scrolled {
    background: rgba(255, 255, 255, 0.97);
  }

  .nav-links.open {
    background: rgba(255, 255, 255, 0.98);
  }

  .nav-links.open a {
    color: #111c31;
  }

  .hero {
    min-height: 88vh;
    padding-top: 5.5rem;
  }

  .contact-form,
  .article-juridique,
  .article-card,
  .article-cta {
    box-shadow: 0 10px 26px rgba(17, 29, 49, 0.08);
  }
}

/* ============================================
   EDITORIAL PREMIUM PASS (law firm direction)
   ============================================ */

:root {
  --gold: #A67A3C;
  --gold-light: #BC9157;
  --gold-dark: #7E5C2B;
  --dark-2: #F8F6F2;
  --dark-4: #F1ECE3;
  --light: #151A28;
  --light-2: #2A3146;
  --text: #4A5267;
  --text-muted: #70788D;
  --radius: 16px;
}

body {
  background: radial-gradient(circle at 16% 10%, rgba(166, 122, 60, 0.09), transparent 34%),
              radial-gradient(circle at 82% 18%, rgba(20, 27, 42, 0.06), transparent 36%),
              #fdfcf9;
}

.section-container,
.nav-container,
.cabinet-layout,
.contact-layout,
.stats-container,
.footer-container,
.footer-bottom {
  max-width: 1240px;
}

.section-title,
.contact-title,
.hero-name,
.hero-maitre,
.expertise-title,
.testimonial-text,
.article-juridique h1,
.article-juridique h2,
.valeur-item h3,
.step-content h3 {
  letter-spacing: -0.015em;
}

.section-eyebrow,
.nav-links a,
.nav-cta,
.stat-label,
.hero-eyebrow,
.footer-links h4,
.footer-contact h4 {
  letter-spacing: 0.22em;
}

.navbar,
.navbar.scrolled {
  border-bottom: 1px solid rgba(21, 26, 40, 0.08);
}

.hero {
  background: linear-gradient(180deg, #fbf8f3 0%, #fdfcf9 42%, #ffffff 100%);
}

.hero::before {
  background: radial-gradient(ellipse 62% 56% at 8% 90%, rgba(166, 122, 60, 0.11) 0%, transparent 70%),
              radial-gradient(ellipse 46% 58% at 90% 6%, rgba(20, 27, 42, 0.08) 0%, transparent 72%),
              radial-gradient(ellipse 70% 65% at 50% 40%, rgba(166, 122, 60, 0.04) 0%, transparent 72%);
}

.hero::after {
  background-image: linear-gradient(rgba(21, 26, 40, 0.03) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(21, 26, 40, 0.03) 1px, transparent 1px);
  background-size: 92px 92px;
}

.hero-content {
  max-width: 1080px;
}

.hero-name {
  font-size: clamp(5.2rem, 11.5vw, 11rem);
  line-height: 0.88;
}

.hero-tagline {
  max-width: 600px;
  font-size: 0.97rem;
  line-height: 1.95;
}

.stats-bar {
  padding: 4.4rem 0;
}

.stat-number {
  font-size: clamp(3.2rem, 5.2vw, 4.8rem);
}

.expertise,
.valeurs,
.articles-section {
  background: linear-gradient(180deg, #f8f6f2 0%, #f8f6f2 60%, #fdfcf9 100%);
}

.expertise-grid {
  border-color: rgba(21, 26, 40, 0.13);
}

.expertise-card-inner {
  padding: 3.8rem 2.6rem;
}

.expertise-card::before,
.expertise-card--featured::before {
  height: 3px;
  background: linear-gradient(90deg, #151a28, #a67a3c);
}

.expertise-card:hover,
.expertise-card--featured {
  background: linear-gradient(180deg, #ffffff 0%, #fbf9f4 100%);
}

.cabinet,
.processus,
.contact,
.articles-section,
.testimonial,
.footer {
  position: relative;
}

.cabinet::before,
.processus::before,
.contact::before,
.articles-section::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(21, 26, 40, 0), rgba(21, 26, 40, 0.14), rgba(21, 26, 40, 0));
}

.cabinet-image-placeholder,
.contact-form,
.article-card,
.article-juridique,
.article-cta {
  border-color: rgba(21, 26, 40, 0.14);
  box-shadow: 0 22px 46px rgba(21, 26, 40, 0.09);
}

.contact-form,
.article-juridique {
  border-radius: calc(var(--radius) + 2px);
}

.testimonial {
  background: linear-gradient(180deg, #fcfaf6 0%, #ffffff 100%);
}

.testimonial::before {
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(166, 122, 60, 0.1) 0%, transparent 78%);
}

.testimonial-text {
  max-width: 840px;
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(1.25rem, 2.8vw, 1.85rem);
  line-height: 1.72;
}

.processus {
  background: #fffdfa;
}

.step {
  padding: 0 1.8rem;
}

.step-number {
  width: 62px;
  height: 62px;
  border-width: 1.5px;
}

.step:hover .step-number {
  box-shadow: 0 0 0 10px rgba(166, 122, 60, 0.12);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: #fcfaf6;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  box-shadow: 0 0 0 4px rgba(166, 122, 60, 0.14);
}

.article-juridique {
  background: linear-gradient(180deg, #ffffff 0%, #fcfaf6 100%);
}

.article-juridique p,
.article-list li,
.faq-section p {
  max-width: 78ch;
}

.article-cta {
  background: linear-gradient(180deg, #ffffff 0%, #faf6ee 100%);
  border-left: 4px solid #a67a3c;
}

.footer {
  background: #f9f6ef;
}

.footer-bottom {
  border-top-color: rgba(21, 26, 40, 0.14);
}

@media (max-width: 1024px) {
  .hero-name {
    font-size: clamp(4.4rem, 13vw, 8.2rem);
  }

  .cabinet-image-placeholder,
  .contact-form,
  .article-card,
  .article-juridique,
  .article-cta {
    box-shadow: 0 14px 34px rgba(21, 26, 40, 0.1);
  }
}

@media (max-width: 768px) {
  .hero {
    min-height: 84vh;
  }

  .section-title,
  .contact-title {
    line-height: 1.22;
  }

  .hero-name {
    line-height: 0.94;
  }

  .expertise-card-inner {
    padding: 2.8rem 1.8rem;
  }
}

/* ============================================
   LUXE AFFIRME PASS
   ============================================ */

:root {
  --gold: #9D6A2E;
  --gold-light: #BB8750;
  --gold-dark: #6F4A20;
  --light: #0E1422;
  --light-2: #1D2840;
  --text: #3E495F;
  --text-muted: #667188;
}

body {
  background: radial-gradient(circle at 10% 8%, rgba(157, 106, 46, 0.13), transparent 34%),
              radial-gradient(circle at 88% 12%, rgba(14, 20, 34, 0.1), transparent 38%),
              linear-gradient(180deg, #fbf7f0 0%, #fefcf9 52%, #ffffff 100%);
}

.section-title,
.contact-title,
.hero-name,
.expertise-title,
.article-juridique h1,
.article-juridique h2,
.testimonial-text {
  color: #0b1220;
}

.section-eyebrow,
.hero-eyebrow,
.stat-label,
.nav-links a,
.footer-links h4,
.footer-contact h4 {
  letter-spacing: 0.24em;
}

.btn-primary {
  background: linear-gradient(135deg, #111a2e 0%, #1b2844 100%);
  border-color: #111a2e;
  box-shadow: 0 16px 36px rgba(13, 21, 37, 0.24);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #0f1728 0%, #16223b 100%);
  box-shadow: 0 20px 44px rgba(13, 21, 37, 0.28);
}

.btn-ghost {
  border-color: rgba(14, 20, 34, 0.28);
}

.btn-ghost:hover {
  background: #f6f1e8;
}

.navbar,
.navbar.scrolled {
  background: rgba(255, 253, 248, 0.94);
  border-bottom: 1px solid rgba(14, 20, 34, 0.12);
}

.nav-links a {
  color: #293651;
}

.nav-cta {
  border-color: rgba(14, 20, 34, 0.32);
}

.hero {
  background: linear-gradient(180deg, #f9f3e8 0%, #fcf8f0 48%, #ffffff 100%);
}

.hero::before {
  background: radial-gradient(ellipse 60% 56% at 12% 88%, rgba(157, 106, 46, 0.16) 0%, transparent 72%),
              radial-gradient(ellipse 46% 58% at 88% 8%, rgba(14, 20, 34, 0.12) 0%, transparent 72%),
              radial-gradient(ellipse 74% 66% at 52% 36%, rgba(157, 106, 46, 0.06) 0%, transparent 72%);
}

.hero::after {
  background-image: linear-gradient(rgba(14, 20, 34, 0.04) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(14, 20, 34, 0.04) 1px, transparent 1px);
}

.hero-name {
  text-shadow: 0 10px 24px rgba(14, 20, 34, 0.08);
}

.marquee-strip {
  background: #fffdfa;
  border-top-color: rgba(14, 20, 34, 0.14);
  border-bottom-color: rgba(14, 20, 34, 0.14);
}

.marquee-content span {
  color: #202e49;
}

.stats-bar {
  background: linear-gradient(180deg, #fffdfa 0%, #ffffff 100%);
  border-top: 1px solid rgba(14, 20, 34, 0.11);
  border-bottom: 1px solid rgba(14, 20, 34, 0.11);
}

.stat-number,
.section-eyebrow,
.expertise-icon,
.contact-detail-icon,
.article-card-tag,
.article-card-link {
  color: #8c5f2a;
}

.expertise,
.valeurs,
.articles-section {
  background: linear-gradient(180deg, #f6efe3 0%, #f8f2e8 58%, #fcf8f0 100%);
}

.expertise-grid {
  border-color: rgba(14, 20, 34, 0.18);
  box-shadow: 0 24px 50px rgba(14, 20, 34, 0.1);
}

.expertise-card:not(:last-child) {
  border-right-color: rgba(14, 20, 34, 0.14);
}

.expertise-card,
.expertise-card:hover,
.expertise-card--featured {
  background: linear-gradient(180deg, #ffffff 0%, #fbf5ec 100%);
}

.expertise-card::before,
.expertise-card--featured::before {
  background: linear-gradient(90deg, #111a2e, #9d6a2e 42%, #c99a62 100%);
}

.cabinet-image-placeholder,
.contact-form,
.article-card,
.article-juridique,
.article-cta {
  background: linear-gradient(180deg, #ffffff 0%, #fcf7ee 100%);
  border: 1px solid rgba(14, 20, 34, 0.18);
  box-shadow: 0 28px 60px rgba(14, 20, 34, 0.14);
}

.cabinet-image-accent {
  border-color: rgba(14, 20, 34, 0.26);
}

.cabinet-image-accent-2 {
  border-color: rgba(157, 106, 46, 0.55);
}

.testimonial {
  background: linear-gradient(180deg, #faf3e8 0%, #fffdfa 100%);
}

.testimonial::before {
  background: radial-gradient(ellipse 62% 82% at 50% 50%, rgba(157, 106, 46, 0.16) 0%, transparent 78%);
}

.testimonial-quote-mark {
  color: #8c5f2a;
  opacity: 0.22;
}

.processus {
  background: linear-gradient(180deg, #fffdfa 0%, #ffffff 100%);
}

.step-number {
  border-color: rgba(14, 20, 34, 0.26);
  color: #1d2840;
}

.step:hover .step-number {
  background: linear-gradient(135deg, #111a2e 0%, #1d2840 100%);
  border-color: #111a2e;
  box-shadow: 0 0 0 10px rgba(157, 106, 46, 0.2);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: #fffaf2;
  border: 1px solid rgba(14, 20, 34, 0.16);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(157, 106, 46, 0.7);
  border-bottom-color: #8c5f2a;
  box-shadow: 0 0 0 4px rgba(157, 106, 46, 0.16);
}

.article-juridique {
  background: linear-gradient(180deg, #ffffff 0%, #fdf7ed 100%);
}

.article-cta {
  border-left: 4px solid #8c5f2a;
}

.footer {
  background: linear-gradient(180deg, #f7efdf 0%, #f3e8d5 100%);
  border-top: 1px solid rgba(14, 20, 34, 0.14);
}

.footer-links a,
.footer-contact p,
.footer-bottom p,
.footer-legal-links a {
  color: #4a556d;
}

.footer-links a:hover,
.footer-legal-links a:hover {
  color: #1d2840;
}

@media (max-width: 1024px) {
  .expertise-grid,
  .cabinet-image-placeholder,
  .contact-form,
  .article-card,
  .article-juridique,
  .article-cta {
    box-shadow: 0 18px 40px rgba(14, 20, 34, 0.12);
  }
}

/* ============================================
   VERSION DEFINITIVE — CABINET PREMIUM
   ============================================ */

:root {
  --gold: #97642b;
  --gold-light: #b7834b;
  --gold-dark: #6a4520;
  --light: #0c1322;
  --light-2: #1e2941;
  --text: #3f4a60;
  --text-muted: #677289;
}

body {
  background: radial-gradient(circle at 8% 8%, rgba(151, 100, 43, 0.14), transparent 32%),
              radial-gradient(circle at 88% 10%, rgba(12, 19, 34, 0.1), transparent 36%),
              linear-gradient(180deg, #f9f3e8 0%, #fdf9f2 48%, #ffffff 100%);
  color: var(--text);
}

.nav-container,
.section-container,
.cabinet-layout,
.contact-layout,
.stats-container,
.footer-container,
.footer-bottom {
  max-width: 1260px;
}

.navbar,
.navbar.scrolled {
  background: rgba(255, 252, 246, 0.95);
  border-bottom: 1px solid rgba(12, 19, 34, 0.12);
}

.section-eyebrow,
.hero-eyebrow,
.nav-links a,
.stat-label,
.footer-links h4,
.footer-contact h4 {
  letter-spacing: 0.25em;
}

.hero {
  min-height: 96vh;
  background: linear-gradient(180deg, #f8f1e4 0%, #fcf6ec 52%, #ffffff 100%);
}

.hero::before {
  background: radial-gradient(ellipse 62% 58% at 10% 88%, rgba(151, 100, 43, 0.18) 0%, transparent 72%),
              radial-gradient(ellipse 44% 58% at 90% 8%, rgba(12, 19, 34, 0.14) 0%, transparent 72%),
              radial-gradient(ellipse 74% 66% at 52% 36%, rgba(151, 100, 43, 0.06) 0%, transparent 72%);
}

.hero::after {
  background-image: linear-gradient(rgba(12, 19, 34, 0.04) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(12, 19, 34, 0.04) 1px, transparent 1px);
  background-size: 96px 96px;
}

.hero-name {
  font-size: clamp(5.3rem, 11vw, 11.2rem);
  line-height: 0.88;
  color: #0a111f;
  text-shadow: 0 12px 28px rgba(12, 19, 34, 0.1);
}

.hero-tagline {
  max-width: 620px;
  line-height: 1.95;
}

.btn {
  border-radius: 999px;
}

.btn-primary {
  background: linear-gradient(135deg, #10182c 0%, #1b2845 100%);
  border-color: #10182c;
  color: #ffffff;
  box-shadow: 0 18px 38px rgba(12, 19, 34, 0.24);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #0d1425 0%, #16213a 100%);
  box-shadow: 0 22px 46px rgba(12, 19, 34, 0.28);
}

.btn-ghost {
  background: #fffdfa;
  border-color: rgba(12, 19, 34, 0.28);
  color: #16213a;
}

.btn-ghost:hover {
  background: #f7f1e5;
  border-color: rgba(12, 19, 34, 0.42);
}

.stats-bar {
  background: linear-gradient(180deg, #fefbf6 0%, #ffffff 100%);
  border-top: 1px solid rgba(12, 19, 34, 0.12);
  border-bottom: 1px solid rgba(12, 19, 34, 0.12);
  padding: 4.6rem 0;
}

.stat-number,
.section-eyebrow,
.article-card-tag,
.article-card-link,
.expertise-icon,
.contact-detail-icon {
  color: #875a28;
}

.expertise,
.valeurs,
.articles-section {
  background: linear-gradient(180deg, #f6eee1 0%, #f9f3e8 58%, #fdf8f0 100%);
}

.cabinet,
.processus,
.contact,
.footer {
  background: #ffffff;
}

.expertise-grid {
  border-color: rgba(12, 19, 34, 0.18);
  box-shadow: 0 24px 52px rgba(12, 19, 34, 0.11);
}

.expertise-card,
.expertise-card:hover,
.expertise-card--featured,
.article-card,
.article-juridique,
.article-cta,
.contact-form,
.cabinet-image-placeholder {
  background: linear-gradient(180deg, #ffffff 0%, #fbf4e8 100%);
  border: 1px solid rgba(12, 19, 34, 0.18);
  box-shadow: 0 26px 60px rgba(12, 19, 34, 0.13);
}

.expertise-card::before,
.expertise-card--featured::before {
  height: 3px;
  background: linear-gradient(90deg, #10182c, #97642b 44%, #c3925a 100%);
}

.testimonial {
  background: linear-gradient(180deg, #faf2e6 0%, #fffdfa 100%);
}

.testimonial::before {
  background: radial-gradient(ellipse 62% 82% at 50% 50%, rgba(151, 100, 43, 0.18) 0%, transparent 78%);
}

.testimonial-text {
  font-size: clamp(1.25rem, 2.8vw, 1.9rem);
  line-height: 1.72;
}

.testimonial-quote-mark {
  color: #875a28;
  opacity: 0.24;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: #fff9ef;
  border: 1px solid rgba(12, 19, 34, 0.17);
  color: #1d2840;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(151, 100, 43, 0.72);
  border-bottom-color: #875a28;
  box-shadow: 0 0 0 4px rgba(151, 100, 43, 0.16);
}

.article-juridique p,
.article-list li,
.faq-section p {
  max-width: 80ch;
}

.footer {
  background: linear-gradient(180deg, #f7efdf 0%, #f3e8d4 100%);
  border-top: 1px solid rgba(12, 19, 34, 0.14);
}

.footer-links a,
.footer-contact p,
.footer-bottom p,
.footer-legal-links a {
  color: #4a556d;
}

.footer-links a:hover,
.footer-legal-links a:hover {
  color: #1d2840;
}

@media (max-width: 1024px) {
  .hero {
    min-height: 90vh;
  }

  .hero-name {
    font-size: clamp(4.4rem, 12.5vw, 8.6rem);
  }

  .expertise-grid,
  .article-card,
  .article-juridique,
  .article-cta,
  .contact-form,
  .cabinet-image-placeholder {
    box-shadow: 0 18px 42px rgba(12, 19, 34, 0.12);
  }
}

@media (max-width: 768px) {
  .navbar,
  .navbar.scrolled {
    background: rgba(255, 252, 246, 0.98);
  }

  .nav-links.open {
    background: rgba(255, 252, 246, 0.99);
  }

  .hero {
    min-height: 84vh;
  }

  .hero-name {
    line-height: 0.94;
  }

  .stats-bar {
    padding: 3rem 0;
  }

  .expertise-card,
  .article-card,
  .article-juridique,
  .article-cta,
  .contact-form,
  .cabinet-image-placeholder {
    box-shadow: 0 12px 30px rgba(12, 19, 34, 0.1);
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
