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

    /* Scrollbar cross-platform */
    ::-webkit-scrollbar { width: 6px; }
    ::-webkit-scrollbar-track { background: transparent; }
    ::-webkit-scrollbar-thumb { background: rgba(139,58,0,0.25); border-radius: 3px; }
    ::-webkit-scrollbar-thumb:hover { background: var(--gold); }
    html { scrollbar-width: thin; scrollbar-color: rgba(139,58,0,0.25) transparent; }

    :root {
      --navy: #f7f3ee;
      --navy-mid: #ede8e0;
      --navy-light: #e3ddd4;
      --gold: #c8601a;
      --gold-light: #a84800;
      --gold-pale: #c86020;
      --cream: #2a1f14;
      --cream-dark: #3d2e1e;
      --white: #1a1108;
      --text-muted: #7a6a58;
      --border: rgba(139,58,0,0.15);
      --transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

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

    body {
      font-family: 'Raleway', sans-serif;
      background: var(--navy);
      color: var(--cream);
      min-height: 100vh;
      overflow-x: hidden;
      cursor: none;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      text-rendering: optimizeLegibility;
    }

    /* CUSTOM CURSOR */
    .cursor {
      width: 8px; height: 8px;
      background: var(--gold);
      border-radius: 50%;
      position: fixed;
      pointer-events: none;
      z-index: 9999;
      transition: transform 0.15s ease;
      transform: translate(-50%, -50%);
    }
    .cursor-ring {
      width: 32px; height: 32px;
      border: 1px solid rgba(184,146,74,0.5);
      border-radius: 50%;
      position: fixed;
      pointer-events: none;
      z-index: 9998;
      transition: transform 0.35s ease, width 0.3s ease, height 0.3s ease;
      transform: translate(-50%, -50%);
    }
    body:hover .cursor-ring { opacity: 1; }

    /* NOISE TEXTURE OVERLAY */
    body::before {
      content: '';
      position: fixed;
      inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
      pointer-events: none;
      z-index: 1;
      opacity: 0.25;
    }

    /* NAVIGATION */
    nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 60px;
      height: 80px;
      background: rgba(247,243,238,0.94);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border-bottom: 1px solid var(--border);
      box-shadow: 0 1px 20px rgba(139,58,0,0.06);
      transition: all 0.3s ease;
    }

    .logo {
      display: flex;
      flex-direction: column;
      cursor: none;
      text-decoration: none;
    }
    .logo-main {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.8rem;
      font-weight: 600;
      color: var(--gold);
      letter-spacing: 0.12em;
      line-height: 1;
    }
    .logo img {
      height: 80px;
      width: auto;
    }
    .logo-sub {
      font-family: 'Raleway', sans-serif;
      font-size: 0.65rem;
      font-weight: 500;
      color: var(--text-muted);
      letter-spacing: 0.35em;
      text-transform: uppercase;
      margin-top: 4px;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 16px;
      list-style: none;
    }
    .nav-links a {
      font-size: 0.64rem;
      font-weight: 500;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--cream-dark);
      text-decoration: none;
      position: relative;
      transition: color var(--transition);
    }
    .nav-links a::after {
      content: '';
      position: absolute;
      bottom: -4px; left: 0;
      width: 0; height: 1px;
      background: var(--gold);
      transition: width var(--transition);
    }
    .nav-links a:hover, .nav-links a.active { color: var(--gold); }
    .nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

    .nav-cta {
      padding: 10px 28px;
      border: 1px solid var(--gold);
      color: var(--gold) !important;
      font-size: 0.68rem !important;
      letter-spacing: 0.2em !important;
      text-transform: uppercase !important;
      font-weight: 700 !important;
      transition: all 0.3s ease !important;
      white-space: nowrap !important;
    }
    .nav-cta::after { display: none !important; }
    .nav-cta:hover {
      background: var(--gold) !important;
      color: #fff !important;
    }

    /* HAMBURGER MENU */
    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: none;
      padding: 4px;
    }
    .hamburger span {
      display: block;
      width: 24px; height: 1px;
      background: var(--gold);
      transition: all 0.3s ease;
    }

    /* MOBILE MENU */
    .mobile-menu {
      display: none;
      position: fixed;
      inset: 0;
      background: #f7f3ee;
      z-index: 99;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 32px;
    }
    .mobile-menu.open { display: flex; }
    .mobile-menu a {
      font-family: 'Cormorant Garamond', serif;
      font-size: 2rem;
      color: var(--cream);
      text-decoration: none;
      letter-spacing: 0.1em;
      transition: color 0.3s ease;
      touch-action: manipulation;
      cursor: none;
    }
    .mobile-menu a:hover { color: var(--gold); }
    .mobile-menu .close-btn {
      position: absolute;
      top: 30px; right: 40px;
      font-size: 2rem;
      color: var(--gold);
      cursor: none;
      background: none;
      border: none;
      font-family: 'Cormorant Garamond', serif;
    }

    /* PAGES */
    .page {
      display: none;
      min-height: 100vh;
      padding-top: 80px;
      position: relative;
      z-index: 2;
    }
    .page.active { display: block; }

    /* ANIMATIONS */
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(30px); }
      to { opacity: 1; transform: translateY(0); }
    }
    @keyframes fadeIn {
      from { opacity: 0; }
      to { opacity: 1; }
    }
    @keyframes lineGrow {
      from { width: 0; }
      to { width: 80px; }
    }
    @keyframes shimmer {
      0% { background-position: -200% center; }
      100% { background-position: 200% center; }
    }

    .animate { animation: fadeUp 0.7s ease forwards; }
    .delay-1 { animation-delay: 0.1s; opacity: 0; }
    .delay-2 { animation-delay: 0.25s; opacity: 0; }
    .delay-3 { animation-delay: 0.4s; opacity: 0; }
    .delay-4 { animation-delay: 0.55s; opacity: 0; }

    /* ================================
       PAGE: ACCUEIL (HOME)
    ================================ */
    .hero {
      min-height: calc(100vh - 80px);
      display: flex;
      align-items: center;
      position: relative;
      overflow: hidden;
      padding: 80px 60px;
      background: linear-gradient(135deg, #f0ebe2 0%, #f7f3ee 55%, #ece5d8 100%);
    }

    .hero-bg {
      position: absolute;
      inset: 0;
      background: 
        radial-gradient(ellipse at 75% 40%, rgba(139,58,0,0.06) 0%, transparent 55%),
        radial-gradient(ellipse at 15% 80%, rgba(139,58,0,0.03) 0%, transparent 45%);
    }

    .hero-lines {
      position: absolute;
      right: 0; top: 0; bottom: 0;
      width: 45%;
      overflow: hidden;
    }
    .hero-lines::before {
      content: '';
      position: absolute;
      right: -10%; top: 50%;
      transform: translateY(-50%);
      width: 500px; height: 500px;
      border: 1px solid rgba(139,58,0,0.08);
      border-radius: 50%;
    }
    .hero-lines::after {
      content: '';
      position: absolute;
      right: 5%; top: 50%;
      transform: translateY(-50%);
      width: 350px; height: 350px;
      border: 1px solid rgba(139,58,0,0.12);
      border-radius: 50%;
    }

    .hero-scale-text {
      position: absolute;
      right: 60px; top: 50%;
      transform: translateY(-50%);
      font-family: 'Cormorant Garamond', serif;
      font-size: 18rem;
      font-weight: 300;
      color: rgba(139,58,0,0.06);
      line-height: 1;
      user-select: none;
      letter-spacing: -0.05em;
    }

    .hero-content {
      max-width: 680px;
      position: relative;
      z-index: 2;
    }
    .hero-eyebrow {
      display: flex;
      align-items: center;
      gap: 16px;
      margin-bottom: 28px;
    }
    .hero-eyebrow span {
      font-size: 1.1rem;
      letter-spacing: 0.35em;
      text-transform: uppercase;
      color: var(--gold);
      font-weight: 500;
    }
    .eyebrow-line {
      width: 40px; height: 1px;
      background: var(--gold);
    }

    .hero h1 {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(3rem, 6vw, 5.5rem);
      font-weight: 300;
      line-height: 1.08;
      color: #1a1108;
      margin-bottom: 16px;
    }
    .hero h1 em {
      font-style: italic;
      color: var(--gold);
    }
    .hero h1 strong {
      font-weight: 600;
      display: block;
    }

    .hero-tagline {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.3rem;
      font-weight: 300;
      font-style: italic;
      color: var(--cream-dark);
      margin-bottom: 48px;
      border-left: 1px solid var(--gold);
      padding-left: 20px;
    }

    .hero-actions {
      display: flex;
      align-items: center;
      gap: 32px;
      flex-wrap: wrap;
    }

    .btn-primary {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      padding: 16px 40px;
      background: var(--gold);
      color: #fff;
      font-size: 0.7rem;
      font-weight: 600;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      text-decoration: none;
      cursor: none;
      border: none;
      transition: all 0.3s ease;
    }
    .btn-primary:hover {
      background: var(--gold-light);
      transform: translateY(-2px);
      box-shadow: 0 12px 40px rgba(139,58,0,0.25);
    }
    .btn-primary svg { width: 16px; height: 16px; }

    .btn-ghost {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-size: 0.7rem;
      font-weight: 500;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--cream-dark);
      cursor: none;
      border: none;
      background: none;
      text-decoration: none;
      transition: color 0.3s ease;
    }
    .btn-ghost:hover { color: var(--gold-light); }
    .btn-ghost::after {
      content: '→';
      transition: transform 0.3s ease;
    }
    .btn-ghost:hover::after { transform: translateX(4px); }

    .hero-bottom {
      position: absolute;
      bottom: 40px; left: 60px; right: 60px;
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
    }
    .hero-locations {
      display: flex;
      gap: 48px;
    }
    .hero-location {
      display: flex;
      flex-direction: column;
      gap: 4px;
    }
    .hero-location .loc-city {
      font-size: 0.6rem;
      letter-spacing: 0.3em;
      text-transform: uppercase;
      color: var(--gold);
      font-weight: 500;
    }
    .hero-location .loc-addr {
      font-size: 0.75rem;
      color: #7a6a58;
      font-weight: 300;
    }
    .hero-scroll {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 8px;
      color: #7a6a58;
      font-size: 0.6rem;
      letter-spacing: 0.25em;
      text-transform: uppercase;
    }
    .scroll-line {
      width: 1px; height: 40px;
      background: linear-gradient(to bottom, var(--gold), transparent);
      animation: scrollPulse 2s ease-in-out infinite;
    }
    @keyframes scrollPulse {
      0%, 100% { opacity: 1; }
      50% { opacity: 0.3; }
    }

    /* EXPERTISE BANDS */
    .expertise-band {
      padding: 80px 60px;
      border-top: 1px solid var(--border);
      background: #f7f3ee;
    }
    .section-label {
      font-size: 1rem;
      letter-spacing: 0.4em;
      text-transform: uppercase;
      color: var(--gold);
      font-weight: 500;
      margin-bottom: 48px;
      display: flex;
      align-items: center;
      gap: 16px;
    }
    .section-label::before {
      content: '';
      width: 40px; height: 1px;
      background: var(--gold);
    }

    .expertise-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1px;
      background: var(--border);
    }
    .expertise-card {
      background: var(--navy);
      padding: 48px 40px;
      cursor: none;
      transition: background 0.3s ease;
      position: relative;
      overflow: hidden;
    }
    .expertise-card::before {
      content: '';
      position: absolute;
      bottom: 0; left: 0;
      width: 0; height: 2px;
      background: var(--gold);
      transition: width 0.4s ease;
    }
    .expertise-card:hover { background: #ede8e0; }
    .expertise-card:hover::before { width: 100%; }
    .expertise-num {
      font-family: 'Cormorant Garamond', serif;
      font-size: 4rem;
      font-weight: 300;
      color: rgba(139,58,0,0.10);
      line-height: 1;
      margin-bottom: 16px;
    }
    .expertise-card h3 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 2rem;
      font-weight: 400;
      color: var(--cream);
      margin-bottom: 12px;
    }
    .expertise-card p {
      font-size: 1rem;
      line-height: 1.8;
      color: var(--text-muted);
      font-weight: 300;
    }

    /* ================================
       PAGE: CABINET
    ================================ */
    .page-hero {
      padding: 80px 60px 60px;
      border-bottom: 1px solid var(--border);
      position: relative;
      overflow: hidden;
      background: linear-gradient(to right, #f0ebe2, #f7f3ee);
    }
    .page-hero-bg {
      position: absolute;
      right: 60px; top: 50%;
      transform: translateY(-50%);
      font-family: 'Cormorant Garamond', serif;
      font-size: 14rem;
      font-weight: 300;
      color: rgba(139,58,0,0.06);
      white-space: nowrap;
      user-select: none;
    }
    .breadcrumb {
      font-size: 0.62rem;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: var(--text-muted);
      margin-bottom: 24px;
    }
    .breadcrumb span { color: var(--gold); }
    .page-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(2.5rem, 5vw, 4.5rem);
      font-weight: 300;
      line-height: 1.1;
      color: var(--white);
    }
    .page-title em { font-style: italic; color: var(--gold); }

    .cabinet-content {
      display: block;
    }
    .cabinet-text {
      padding: 80px 120px;
      max-width: 900px;
    }
    .cabinet-text p {
      font-size: 0.9rem;
      line-height: 1.9;
      color: var(--cream);
      font-weight: 300;
      margin-bottom: 24px;
      text-align: justify;
    }
    .cabinet-text p:first-of-type {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.25rem;
      font-style: italic;
      color: var(--cream);
      line-height: 1.7;
      margin-bottom: 32px;
    }

    .cabinet-details {
      padding: 80px 60px;
    }
    .detail-block {
      margin-bottom: 48px;
      padding-bottom: 48px;
      border-bottom: 1px solid var(--border);
    }
    .detail-block:last-child {
      border-bottom: none;
      margin-bottom: 0;
      padding-bottom: 0;
    }
    .detail-label {
      font-size: 0.6rem;
      letter-spacing: 0.35em;
      text-transform: uppercase;
      color: var(--gold);
      font-weight: 500;
      margin-bottom: 16px;
    }
    .detail-block h3 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.3rem;
      font-weight: 400;
      color: var(--cream);
      margin-bottom: 12px;
    }
    .detail-block p, .detail-block a {
      font-size: 0.82rem;
      line-height: 1.8;
      color: var(--text-muted);
      font-weight: 300;
      text-decoration: none;
      display: block;
    }
    .detail-block a:hover { color: var(--gold); }

    .values-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 24px;
      margin-top: 32px;
    }
    .value-item {
      padding: 28px;
      border: 1px solid var(--border);
      transition: border-color 0.3s ease;
    }
    .value-item:hover { border-color: var(--gold); }
    .value-icon {
      font-size: 1.5rem;
      margin-bottom: 12px;
    }
    .value-item h4 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.1rem;
      font-weight: 400;
      color: var(--cream);
      margin-bottom: 8px;
    }
    .value-item p {
      font-size: 0.75rem !important;
      line-height: 1.7 !important;
    }

    /* ================================
       PAGE: ÉQUIPE
    ================================ */
    .equipe-grid {
      display: flex;
      flex-direction: column;
      gap: 36px;
      background: transparent;
      margin-top: 60px;
    }
    .avocat-card {
      background: var(--navy);
      display: flex;
      flex-direction: row;
      align-items: center;
      position: relative;
      overflow: hidden;
    }
    .avocat-photo {
      width: 220px;
      min-width: 220px;
      height: 240px;
      overflow: hidden;
      flex-shrink: 0;
      position: relative;
    }
    .avocat-card:not(:last-child) {
      border-bottom: 1px solid var(--border);
      padding-bottom: 36px;
    }
    .avocat-photo img {
      width: 100%; height: 100%;
      object-fit: cover;
      object-position: center top;
      filter: grayscale(15%);
      transition: filter 0.4s ease, transform 0.5s ease;
      display: block;
    }
    .avocat-card:hover .avocat-photo img {
      filter: grayscale(0%);
      transform: scale(1.03);
    }
    .avocat-body {
      padding: 48px 64px;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }
    .avocat-title {
      font-size: 0.6rem;
      letter-spacing: 0.35em;
      text-transform: uppercase;
      color: var(--gold);
      font-weight: 500;
      margin-bottom: 8px;
      min-height: 2rem;
      display: flex;
      align-items: flex-end;
    }
    .avocat-card h2 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 2rem;
      font-weight: 400;
      color: var(--cream);
      margin-bottom: 20px;
    }
    .avocat-card p {
      font-size: 0.82rem;
      line-height: 1.9;
      color: var(--text-muted);
      font-weight: 300;
      margin-bottom: 0;
      text-align: justify;
      max-width: 680px;
    }
    .avocat-rdv {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-size: 0.68rem;
      font-weight: 500;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--gold);
      cursor: none;
      border: none;
      background: none;
      transition: gap 0.3s ease;
      padding: 0;
      text-decoration: none;
      white-space: nowrap;
    }
    .avocat-rdv::after { content: '→'; }
    .avocat-rdv:hover { gap: 16px; color: var(--gold-light); }

    .story-section {
      padding: 80px 60px;
      background: #ede8e0;
      margin-top: 1px;
      border-top: 1px solid var(--border);
    }
    .story-grid {
      display: grid;
      grid-template-columns: 1fr 2fr;
      gap: 80px;
      align-items: start;
    }
    .story-label {
      font-family: 'Cormorant Garamond', serif;
      font-size: 5rem;
      font-weight: 300;
      color: rgba(139,58,0,0.12);
      line-height: 1;
    }
    .story-text h2 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 2.2rem;
      font-weight: 300;
      color: var(--white);
      margin-bottom: 24px;
    }
    .story-text p {
      font-size: 0.85rem;
      line-height: 1.9;
      color: var(--cream);
      font-weight: 300;
      margin-bottom: 20px;
    }

    /* ================================
       PAGE: COMPÉTENCES
    ================================ */
    .competences-nav {
      display: flex;
      border-bottom: 1px solid var(--border);
      padding: 0 60px;
      overflow-x: auto;
    }
    .comp-tab {
      padding: 20px 32px;
      font-size: 0.68rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--text-muted);
      font-weight: 500;
      cursor: none;
      border-bottom: 2px solid transparent;
      white-space: nowrap;
      transition: all 0.3s ease;
      border: none;
      background: none;
    }
    .comp-tab:hover, .comp-tab.active {
      color: var(--gold-light);
      border-bottom-color: var(--gold);
    }

    .comp-panel {
      display: none;
      padding: 80px 60px;
    }
    .comp-panel.active { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; }

    .comp-heading {
      font-family: 'Cormorant Garamond', serif;
      font-size: 2.8rem;
      font-weight: 300;
      color: var(--white);
      line-height: 1.15;
      margin-bottom: 24px;
    }
    .comp-heading em { font-style: italic; color: var(--gold); }
    .comp-intro {
      font-size: 0.85rem;
      line-height: 1.9;
      color: var(--cream);
      font-weight: 300;
      margin-bottom: 48px;
    }

    .comp-items {
      display: flex;
      flex-direction: column;
      gap: 0;
    }
    .comp-item {
      padding: 24px 0;
      border-bottom: 1px solid var(--border);
      display: flex;
      justify-content: space-between;
      align-items: center;
      cursor: none;
      transition: padding-left 0.3s ease;
      position: relative;
    }
    .comp-item:hover { padding-left: 12px; }
    .comp-item:first-child { border-top: 1px solid var(--border); }
    .comp-item-text {
      display: flex;
      flex-direction: column;
      gap: 4px;
    }
    .comp-item-name {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.1rem;
      font-weight: 400;
      color: var(--cream);
      transition: color 0.3s ease;
    }
    .comp-item:hover .comp-item-name { color: var(--gold-light); }
    .comp-item-desc {
      font-size: 0.72rem;
      color: var(--text-muted);
      font-weight: 300;
    }
    .comp-arrow {
      color: var(--gold);
      font-size: 1.2rem;
      opacity: 0;
      transition: opacity 0.3s ease, transform 0.3s ease;
    }
    .comp-item:hover .comp-arrow { opacity: 1; transform: translateX(4px); }

    /* Cartes thématiques Droit Pénal des Affaires */
    .comp-penal-cards {
      display: flex;
      flex-direction: column;
      gap: 20px;
      margin-top: 8px;
    }
    .comp-penal-card {
      border: 1px solid rgba(200, 160, 80, 0.3);
      border-left: 3px solid var(--gold);
      padding: 28px 28px 24px;
      background: rgba(200, 160, 80, 0.04);
      transition: background 0.3s ease, border-left-color 0.3s ease, transform 0.3s ease;
      cursor: none;
    }
    .comp-penal-card:hover {
      background: rgba(200, 160, 80, 0.09);
      border-left-color: var(--gold-light);
      transform: translateX(4px);
    }
    .comp-penal-card-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.45rem;
      font-weight: 400;
      color: var(--white);
      line-height: 1.2;
      margin-bottom: 12px;
    }
    .comp-penal-card-body {
      font-size: 0.78rem;
      line-height: 1.85;
      color: var(--cream);
      font-weight: 300;
    }
    .comp-penal-card-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-top: 16px;
    }
    .comp-penal-tag {
      font-size: 0.65rem;
      letter-spacing: 0.08em;
      color: var(--gold);
      border: 1px solid rgba(200, 160, 80, 0.35);
      padding: 4px 10px;
      text-transform: uppercase;
    }

    .comp-visual {
      display: flex;
      flex-direction: column;
      gap: 24px;
    }
    .comp-stat {
      padding: 32px;
      border: 1px solid var(--border);
      background: #ede8e0;
      transition: border-color 0.3s ease;
    }
    .comp-stat:hover { border-color: var(--gold); }
    .comp-stat-num {
      font-family: 'Cormorant Garamond', serif;
      font-size: 3rem;
      font-weight: 300;
      color: var(--gold);
      line-height: 1;
      margin-bottom: 8px;
    }
    .comp-stat-label {
      font-size: 0.72rem;
      color: var(--text-muted);
      font-weight: 300;
      letter-spacing: 0.1em;
    }

    /* ================================
       PAGE: HONORAIRES
    ================================ */
    .honoraires-intro {
      padding: 80px 60px 40px;
      max-width: 700px;
    }
    .honoraires-intro p {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.4rem;
      font-weight: 300;
      font-style: italic;
      color: var(--cream-dark);
      line-height: 1.7;
      border-left: 2px solid var(--gold);
      padding-left: 24px;
    }

    .tarifs-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1px;
      background: var(--border);
      margin: 0 60px;
    }
    .tarif-card {
      background: var(--navy);
      padding: 48px 40px;
      position: relative;
      transition: background 0.3s ease;
    }
    .tarif-card:hover { background: var(--navy-mid); }
    .tarif-card.featured {
      background: #ede8e0;
      border-top: 2px solid var(--gold);
    }
    .tarif-badge {
      display: inline-block;
      font-size: 0.58rem;
      letter-spacing: 0.3em;
      text-transform: uppercase;
      color: #fff;
      background: var(--gold);
      padding: 4px 12px;
      margin-bottom: 24px;
      font-weight: 600;
    }
    .tarif-icon {
      font-size: 2rem;
      margin-bottom: 16px;
    }
    .tarif-card h3 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.4rem;
      font-weight: 400;
      color: var(--cream);
      margin-bottom: 12px;
    }
    .tarif-card p {
      font-size: 0.8rem;
      line-height: 1.8;
      color: var(--text-muted);
      font-weight: 300;
    }

    .honoraires-note {
      padding: 60px;
      margin-top: 1px;
      background: var(--border);
    }
    .honoraires-note p {
      font-size: 0.8rem;
      line-height: 1.8;
      color: var(--text-muted);
      max-width: 800px;
      font-weight: 300;
    }
    .honoraires-note strong { color: var(--gold-light); font-weight: 400; }

    /* ================================
       PAGE: CONTACT
    ================================ */
    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0;
      min-height: calc(100vh - 200px);
    }
    .contact-info {
      padding: 80px 60px;
      border-right: 1px solid var(--border);
    }
    .contact-info h2 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 2.5rem;
      font-weight: 300;
      color: var(--white);
      margin-bottom: 12px;
    }
    .contact-info > p {
      font-size: 0.82rem;
      color: var(--text-muted);
      margin-bottom: 56px;
      font-weight: 300;
      line-height: 1.7;
    }

    .contact-office {
      margin-bottom: 48px;
      padding-bottom: 48px;
      border-bottom: 1px solid var(--border);
    }
    .contact-office:last-child { border-bottom: none; }
    .office-city {
      font-size: 0.6rem;
      letter-spacing: 0.4em;
      text-transform: uppercase;
      color: var(--gold);
      font-weight: 500;
      margin-bottom: 16px;
    }
    .office-name {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.3rem;
      font-weight: 400;
      color: var(--cream);
      margin-bottom: 12px;
    }
    .office-detail {
      font-size: 0.8rem;
      color: var(--text-muted);
      font-weight: 300;
      line-height: 1.9;
    }
    .office-detail a {
      color: var(--gold);
      text-decoration: none;
      display: block;
      transition: color 0.3s ease;
    }
    .office-detail a:hover { color: var(--gold-light); }

    .social-links {
      display: flex;
      gap: 24px;
      margin-top: 48px;
      padding-top: 48px;
      border-top: 1px solid var(--border);
    }
    .social-link {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 44px; height: 44px;
      border: 1px solid var(--border);
      color: var(--text-muted);
      text-decoration: none;
      font-size: 0.7rem;
      font-weight: 600;
      letter-spacing: 0.05em;
      transition: all 0.3s ease;
    }
    .social-link:hover {
      border-color: var(--gold);
      color: var(--gold);
    }

    .contact-form {
      padding: 80px 60px;
    }
    .contact-form h2 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.8rem;
      font-weight: 300;
      color: var(--white);
      margin-bottom: 8px;
    }
    .contact-form > p {
      font-size: 0.78rem;
      color: var(--text-muted);
      margin-bottom: 40px;
      font-weight: 300;
    }

    .form-group {
      margin-bottom: 28px;
    }
    .form-group label {
      display: block;
      font-size: 0.62rem;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: var(--gold);
      font-weight: 500;
      margin-bottom: 10px;
    }
    .form-group input,
    .form-group select,
    .form-group textarea {
      width: 100%;
      background: transparent;
      border: none;
      border-bottom: 1px solid var(--border);
      color: var(--cream);
      font-family: 'Raleway', sans-serif;
      font-size: 0.85rem;
      font-weight: 300;
      padding: 12px 0;
      outline: none;
      transition: border-color 0.3s ease;
      cursor: none;
    }
    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
      border-bottom-color: var(--gold);
    }
    .form-group select option { background: #f7f3ee; color: #2a1f14; }
    .form-group textarea { resize: none; height: 120px; }
    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 24px;
    }
    .form-submit {
      width: 100%;
      padding: 16px;
      background: var(--gold);
      color: #fff;
      font-family: 'Raleway', sans-serif;
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      border: none;
      cursor: none;
      transition: all 0.3s ease;
      margin-top: 8px;
    }
    .form-submit:hover {
      background: var(--gold-light);
      box-shadow: 0 8px 30px rgba(139,58,0,0.2);
    }

    /* ================================
       FOOTER
    ================================ */
    footer {
      border-top: 1px solid var(--border);
      padding: 40px 60px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      position: relative;
      z-index: 2;
    }
    .footer-logo {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.2rem;
      font-weight: 600;
      color: var(--gold);
      letter-spacing: 0.1em;
    }
    .footer-copy {
      font-size: 0.65rem;
      color: var(--text-muted);
      letter-spacing: 0.1em;
    }
    .footer-links {
      display: flex;
      gap: 24px;
    }
    .footer-links a {
      font-size: 0.65rem;
      color: var(--text-muted);
      text-decoration: none;
      letter-spacing: 0.1em;
      transition: color 0.3s ease;
    }
    .footer-links a:hover { color: var(--gold); }

    /* ================================
       RESPONSIVE
    ================================ */
    @media (max-width: 900px) {
      nav { padding: 0 24px; }
      .nav-links { display: none; }
      .hamburger { display: flex; }

      .hero { padding: 60px 24px 120px; }
      .hero-bottom { left: 24px; right: 24px; flex-direction: column; align-items: flex-start; gap: 24px; bottom: 24px; }
      .hero-scroll { display: none; }
      .hero-scale-text { display: none; }

      .expertise-grid { grid-template-columns: 1fr; }
      .expertise-band { padding: 48px 24px; }
      .page-hero { padding: 48px 24px; }
      .page-hero-bg { display: none; }

      .cabinet-text { padding: 48px 24px !important; }

      .cabinet-equipe-section { padding: 48px 24px !important; }
      .equipe-grid { flex-direction: column; }
      .avocat-card { flex-direction: column; }
      .avocat-photo,
      .avocat-photo-lg { width: 100% !important; min-width: unset !important; height: 280px !important; }
      .avocat-photo img { object-position: center 25%; }
      .avocat-body { padding: 32px 24px; }

      .honoraires-note { margin-left: 0 !important; margin-right: 0 !important; padding: 40px 24px !important; }
      .story-section { padding: 48px 24px; }
      .story-grid { grid-template-columns: 1fr; gap: 24px; }
      .story-label { display: none; }

      .competences-nav { padding: 0 24px; }
      .comp-panel.active { grid-template-columns: 1fr; gap: 40px; padding: 48px 24px; }

      .tarifs-grid { grid-template-columns: 1fr; margin: 0 24px; }
      .honoraires-intro { padding: 48px 24px; }

      .contact-grid { grid-template-columns: 1fr; }
      .contact-info { padding: 48px 24px; border-right: none; border-bottom: 1px solid var(--border); }
      .contact-form { padding: 48px 24px; }
      .form-row { grid-template-columns: 1fr; }

      footer { padding: 32px 24px; flex-direction: column; gap: 16px; text-align: center; }
      .footer-links { flex-wrap: wrap; justify-content: center; }
    }

    /* ── ACTUALITÉS ── */
    .actu-hero { position: relative; padding: 140px 60px 80px; overflow: hidden; }
    .actu-hero-bg {
      position: absolute; inset: 0;
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(5rem, 15vw, 14rem);
      font-weight: 600;
      color: rgba(200,96,26,0.06);
      display: flex; align-items: center; justify-content: center;
      letter-spacing: 0.05em;
      pointer-events: none; user-select: none;
    }
    .actu-filters {
      display: flex; gap: 12px; flex-wrap: wrap;
      padding: 0 60px 48px;
    }
    .actu-filter-btn {
      padding: 8px 22px;
      border: 1px solid var(--border);
      background: transparent;
      color: var(--text-muted);
      font-family: 'Raleway', sans-serif;
      font-size: 0.68rem;
      font-weight: 600;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      cursor: none;
      transition: all 0.3s ease;
      border-radius: 0;
    }
    .actu-filter-btn:hover,
    .actu-filter-btn.active {
      border-color: var(--gold);
      color: var(--gold);
      background: rgba(200,96,26,0.06);
    }
    .actu-grid {
      display: flex;
      flex-direction: column;
      gap: 12px;
      padding: 0 60px 80px;
    }
    .actu-card {
      border-bottom: 1px solid var(--border);
      background: transparent;
      transition: background 0.3s ease;
      overflow: hidden;
      display: flex;
      flex-direction: row;
      align-items: stretch;
      min-height: 180px;
    }
    .actu-card:first-of-type { border-top: 1px solid var(--border); }
    .actu-card:hover {
      background: rgba(200,96,26,0.04);
    }
    .actu-card-media {
      width: 260px;
      flex-shrink: 0;
      aspect-ratio: unset;
      background: var(--navy-mid);
      overflow: hidden;
      position: relative;
    }
    .actu-card-media img {
      width: 100%; height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }
    .actu-card:hover .actu-card-media img { transform: scale(1.04); }
    .actu-card-media-placeholder {
      width: 100%; height: 100%;
      display: flex; align-items: center; justify-content: center;
      font-size: 2.5rem;
      color: rgba(200,96,26,0.25);
    }
    .actu-card-video-badge {
      position: absolute; top: 12px; left: 12px;
      background: var(--gold);
      color: #fff;
      font-size: 0.6rem;
      font-weight: 700;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      padding: 4px 10px;
    }
    .actu-card-body {
      padding: 28px 36px;
      flex: 1;
      display: flex;
      flex-direction: column;
      justify-content: center;
      gap: 10px;
    }
    .actu-card-meta {
      display: flex; align-items: center; gap: 12px;
      font-size: 0.62rem;
      font-weight: 600;
      letter-spacing: 0.2em;
      text-transform: uppercase;
    }
    .actu-card-type {
      color: var(--gold);
      border: 1px solid rgba(200,96,26,0.3);
      padding: 3px 10px;
    }
    .actu-card-date { color: var(--text-muted); }
    .actu-card-source { color: var(--text-muted); font-weight: 800; }
    .actu-card h3 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.25rem;
      font-weight: 600;
      line-height: 1.35;
      color: var(--cream);
    }
    .actu-card p {
      font-size: 0.78rem;
      line-height: 1.7;
      color: var(--text-muted);
      max-width: 680px;
    }
    .actu-card-link {
      display: inline-flex; align-items: center; gap: 8px;
      font-size: 0.68rem;
      font-weight: 600;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--gold);
      text-decoration: none;
      margin-top: 4px;
      transition: gap 0.3s ease;
    }
    .actu-card-link:hover { gap: 14px; }

    /* ── Filtrage par type (géré en JS via .style.display) ── */
    .actu-card.actu-hidden { display: none !important; }

    .actu-empty {
      padding: 80px 0;
      text-align: center;
    }
    .actu-empty p {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.4rem;
      color: var(--text-muted);
      font-style: italic;
    }
    /* Classes pour sections avec padding fixe */
    .cabinet-equipe-section {
      padding: 80px 60px;
      border-top: 1px solid var(--border);
      background: var(--navy);
    }
    .avocat-photo-lg {
      width: 280px;
      min-width: 280px;
      height: 340px;
    }

    @media (max-width: 768px) {
      .actu-hero { padding: 120px 24px 60px; }
      .actu-filters { padding: 0 24px 32px; }
      .actu-grid { padding: 0 24px 60px; }
      .actu-card { flex-direction: column; min-height: unset; }
      .actu-card-media { width: 100%; height: 200px; }
    }
  
