/* ============ TOKENS ============ */
    :root {
      --paper: #fafaf7;
      --paper-warm: #f0eee8;
      --ink: #0a0a0a;
      --ink-soft: rgba(10, 10, 10, 0.7);
      --ink-muted: rgba(10, 10, 10, 0.5);
      --ink-line: rgba(10, 10, 10, 0.15);
      --ease: cubic-bezier(0.19, 1, 0.22, 1);
    }

    /* ============ RESET ============ */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
    body {
      font-family: 'Inter Tight', sans-serif;
      background: var(--paper);
      color: var(--ink);
      overflow-x: hidden;
      line-height: 1.5;
      cursor: none;
    }
    @media (max-width: 860px) { body { cursor: auto; } }
    a { color: inherit; text-decoration: none; }
    button { background: none; border: none; cursor: none; font: inherit; color: inherit; }
    @media (max-width: 860px) { button { cursor: pointer; } }
    img, svg { display: block; max-width: 100%; }

    .font-display { font-family: 'Fraunces', serif; font-optical-sizing: auto; }
    .italic { font-style: italic; }

    /* ============ GRAIN ============ */
    body::before {
      content: '';
      position: fixed;
      inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
      opacity: 0.05;
      pointer-events: none;
      z-index: 9999;
      mix-blend-mode: multiply;
    }

    /* ============ CURSEUR CUSTOM ============ */
    .cursor-dot, .cursor-ring {
      position: fixed;
      top: 0; left: 0;
      pointer-events: none;
      z-index: 9998;
      border-radius: 50%;
      will-change: transform;
      transition: width 0.3s var(--ease), height 0.3s var(--ease), background 0.3s, border-color 0.3s, opacity 0.3s;
    }
    .cursor-dot {
      width: 5px; height: 5px;
      background: var(--ink);
    }
    .cursor-ring {
      width: 32px; height: 32px;
      border: 1px solid var(--ink);
      mix-blend-mode: difference;
    }
    .cursor-ring.hover {
      width: 70px; height: 70px;
      background: rgba(10, 10, 10, 0.04);
    }
    .cursor-ring.dark { border-color: #fff; }
    @media (max-width: 860px) {
      .cursor-dot, .cursor-ring { display: none; }
    }

    /* ============ GLOW FOLLOWER ============ */
    .glow-follower {
      position: fixed;
      top: 0; left: 0;
      width: 600px; height: 600px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(10, 10, 10, 0.08) 0%, transparent 60%);
      pointer-events: none;
      z-index: 1;
      transform: translate(-50%, -50%);
      filter: blur(60px);
      mix-blend-mode: multiply;
    }
    .glow-follower.dark {
      background: radial-gradient(circle, rgba(255, 255, 255, 0.06) 0%, transparent 60%);
      mix-blend-mode: screen;
    }
    @media (max-width: 860px) { .glow-follower { display: none; } }

    /* ============ SCROLL PROGRESS ============ */
    .progress-bar {
      position: fixed;
      top: 0; left: 0;
      width: 100%; height: 2px;
      background: transparent;
      z-index: 101;
      pointer-events: none;
    }
    .progress-fill {
      height: 100%;
      background: var(--ink);
      width: 0%;
      transition: width 0.1s linear;
    }

    /* ============ REVEAL ANIMATIONS ============ */
    .reveal {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 1s var(--ease), transform 1s var(--ease);
    }
    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }

    .reveal-stagger > * {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 1s var(--ease), transform 1s var(--ease);
    }
    .reveal-stagger.visible > * {
      opacity: 1;
      transform: translateY(0);
    }
    .reveal-stagger.visible > *:nth-child(1) { transition-delay: 0s; }
    .reveal-stagger.visible > *:nth-child(2) { transition-delay: 0.08s; }
    .reveal-stagger.visible > *:nth-child(3) { transition-delay: 0.16s; }
    .reveal-stagger.visible > *:nth-child(4) { transition-delay: 0.24s; }
    .reveal-stagger.visible > *:nth-child(5) { transition-delay: 0.32s; }
    .reveal-stagger.visible > *:nth-child(6) { transition-delay: 0.40s; }
    .reveal-stagger.visible > *:nth-child(7) { transition-delay: 0.48s; }

    /* Split text */
    .split-text {
      display: inline-block;
      overflow: hidden;
      vertical-align: top;
    }
    .split-text .line {
      display: inline-block;
      transform: translateY(110%);
      transition: transform 1.1s var(--ease);
    }
    .split-text.visible .line { transform: translateY(0); }

    /* ============ TICKER ============ */
    @keyframes ticker {
      from { transform: translateX(0); }
      to { transform: translateX(-50%); }
    }
    @keyframes drawLine {
      from { transform: scaleX(0); }
      to { transform: scaleX(1); }
    }

    /* ============ LAYOUT HELPERS ============ */
    .container { max-width: 1400px; margin: 0 auto; padding: 0 2rem; }
    .grid-12 {
      display: grid;
      grid-template-columns: repeat(12, 1fr);
      gap: 2rem;
    }
    .col-12 { grid-column: span 12; }
    @media (min-width: 768px) {
      .col-md-3 { grid-column: span 3; }
      .col-md-4 { grid-column: span 4; }
      .col-md-5 { grid-column: span 5; }
      .col-md-7 { grid-column: span 7; }
      .col-md-8 { grid-column: span 8; }
      .col-md-9 { grid-column: span 9; }
      .col-md-1 { grid-column: span 1; }
      .col-md-start-6 { grid-column-start: 6; }
      .col-md-start-9 { grid-column-start: 9; }
      .text-md-right { text-align: right; }
      .pb-md-6 { padding-bottom: 1.5rem; }
      .pt-md-12 { padding-top: 3rem; }
    }
    .end { align-items: end; }

    /* ============ NAV ============ */
    .nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 50;
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      background: rgba(250, 250, 247, 0);
      border-bottom: 1px solid transparent;
      transition: background 0.4s var(--ease), border-color 0.4s var(--ease);
    }
    .nav.scrolled {
      background: rgba(250, 250, 247, 0.85);
      border-bottom-color: var(--ink-line);
    }
    .nav-inner {
      max-width: 1400px;
      margin: 0 auto;
      padding: 1.25rem 2rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    .nav-logo {
      font-family: 'Fraunces', serif;
      font-size: 1.25rem;
      letter-spacing: -0.02em;
    }
    .nav-logo .italic { font-weight: 300; }
    .nav-logo small {
      margin-left: 0.5rem;
      font-family: 'Inter Tight', sans-serif;
      font-size: 0.7rem;
      text-transform: uppercase;
      letter-spacing: 0.2em;
      color: var(--ink-muted);
      vertical-align: middle;
    }
    .nav-links {
      display: none;
      align-items: center;
      gap: 2.5rem;
      font-size: 0.875rem;
    }
    @media (min-width: 768px) { .nav-links { display: flex; } }

    .link-underline {
      position: relative;
      display: inline-block;
    }
    .link-underline::after {
      content: '';
      position: absolute;
      left: 0; bottom: -3px;
      width: 100%; height: 1px;
      background: currentColor;
      transform: scaleX(0);
      transform-origin: right;
      transition: transform 0.5s var(--ease);
    }
    .link-underline:hover::after {
      transform: scaleX(1);
      transform-origin: left;
    }

    .btn-primary {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      font-size: 0.875rem;
      background: var(--ink);
      color: var(--paper);
      padding: 0.65rem 1.25rem;
      position: relative;
      overflow: hidden;
      transition: transform 0.3s var(--ease);
      will-change: transform;
    }
    .btn-primary::before {
      content: '';
      position: absolute;
      inset: 0;
      background: var(--paper);
      transform: translateY(100%);
      transition: transform 0.5s var(--ease);
      z-index: 0;
    }
    .btn-primary:hover { box-shadow: inset 0 0 0 1px var(--ink); color: var(--ink); }
    .btn-primary:hover::before { transform: translateY(0); }
    .btn-primary > * { position: relative; z-index: 1; }

    /* ============ KICKER ============ */
    .kicker {
      font-size: 0.7rem;
      text-transform: uppercase;
      letter-spacing: 0.3em;
      color: var(--ink-muted);
      margin-bottom: 1rem;
      display: flex;
      align-items: center;
    }
    .kicker .dash {
      display: inline-block;
      width: 2rem;
      height: 1px;
      background: rgba(0,0,0,0.4);
      margin-right: 0.75rem;
    }
    .kicker .dot {
      display: inline-block;
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--ink);
      margin-right: 0.75rem;
      animation: pulse 2.5s ease-in-out infinite;
    }
    @keyframes pulse {
      0%, 100% { opacity: 1; transform: scale(1); }
      50% { opacity: 0.4; transform: scale(0.85); }
    }
    .kicker-light { color: rgba(255,255,255,0.4); }
    .kicker-light .dash { background: rgba(255,255,255,0.3); }
    .kicker-light .dot { background: #fff; }

    /* ============ HERO ============ */
    .hero {
      padding: 10rem 0 6rem;
      position: relative;
      overflow: hidden;
    }
    .hero-figure {
      position: absolute;
      top: 9rem;
      right: -8%;
      width: 32vw;
      max-width: 460px;
      aspect-ratio: 4 / 5;
      z-index: 0;
      pointer-events: none;
      overflow: hidden;
      opacity: 0;
      transform: translateY(40px) scale(0.96);
      transition: opacity 1.6s var(--ease) 0.3s, transform 1.6s var(--ease) 0.3s;
    }
    /* Cache l'image sur les viewports intermédiaires où elle empièterait sur le texte */
    @media (max-width: 1199px) and (min-width: 861px) {
      .hero-figure { display: none; }
    }
    .hero.loaded .hero-figure {
      opacity: 1;
      transform: translateY(0) scale(1);
    }
    .hero-figure::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, transparent 50%, rgba(250,250,247,0.4) 100%);
      pointer-events: none;
      z-index: 2;
    }
    .hero-figure::before {
      content: '';
      position: absolute;
      inset: 0;
      background: var(--paper);
      transform-origin: right;
      transform: scaleX(1);
      transition: transform 1.4s var(--ease) 0.5s;
      z-index: 3;
    }
    .hero.loaded .hero-figure::before {
      transform: scaleX(0);
      transform-origin: left;
    }
    .hero-figure img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      filter: grayscale(100%) contrast(1.05);
      transform: scale(1.08);
      transition: transform 6s var(--ease);
    }
    .hero.loaded .hero-figure img { transform: scale(1); }
    @media (max-width: 860px) {
      .hero-figure {
        display: block;
        position: relative;
        top: auto;
        right: auto;
        width: 100%;
        max-width: none;
        margin-top: 3rem;
        aspect-ratio: 16 / 10;
      }
    }
    .hero .container { position: relative; z-index: 1; }
    .hero-content {
      transition: transform 0.4s var(--ease);
      will-change: transform;
    }
    .hero-title {
      font-family: 'Fraunces', serif;
      font-size: clamp(3rem, 9vw, 8.5rem);
      line-height: 0.95;
      letter-spacing: -0.03em;
      font-weight: 300;
    }
    .hero-title > div { display: block; }
    .hero-title .extra-light { font-weight: 200; }
    .hero-side {
      font-size: 1rem;
      line-height: 1.6;
      color: var(--ink-soft);
      max-width: 24rem;
    }
    .hero-arrow-link {
      display: inline-flex;
      align-items: center;
      gap: 0.75rem;
      margin-top: 2rem;
      font-size: 0.8rem;
      text-transform: uppercase;
      letter-spacing: 0.2em;
    }
    .hero-bottom-line {
      margin-top: 6rem;
      height: 1px;
      background: var(--ink-line);
      transform-origin: left;
      transform: scaleX(0);
      transition: transform 1.4s var(--ease) 0.7s;
    }
    .hero.loaded .hero-bottom-line { transform: scaleX(1); }

    .ticker-wrap {
      margin-top: 2rem;
      overflow: hidden;
      white-space: nowrap;
    }
    .ticker {
      display: inline-block;
      animation: ticker 50s linear infinite;
      font-family: 'Fraunces', serif;
      font-style: italic;
      font-size: 1.5rem;
      color: rgba(0,0,0,0.25);
    }
    .ticker span { margin: 0 3rem; }

    .scroll-indicator {
      position: absolute;
      bottom: 2rem;
      left: 50%;
      transform: translateX(-50%);
      font-size: 0.7rem;
      text-transform: uppercase;
      letter-spacing: 0.3em;
      color: var(--ink-muted);
      writing-mode: vertical-rl;
    }
    .scroll-indicator::after {
      content: '';
      display: block;
      width: 1px;
      height: 30px;
      background: var(--ink);
      margin: 0.75rem auto 0;
      animation: scrollLine 2s ease-in-out infinite;
      transform-origin: top;
    }
    @keyframes scrollLine {
      0%, 100% { transform: scaleY(0.3); opacity: 0.3; }
      50% { transform: scaleY(1); opacity: 1; }
    }

    /* ============ CLIENTS BANNER ============ */
    .section-clients {
      padding: 5rem 0 6rem;
      background: var(--paper);
      border-top: 1px solid var(--ink-line);
      border-bottom: 1px solid var(--ink-line);
      overflow: hidden;
    }
    .clients-header {
      max-width: 800px;
      margin-bottom: 4rem;
    }
    .clients-title {
      font-family: 'Fraunces', serif;
      font-size: clamp(1.5rem, 2.6vw, 2.25rem);
      font-weight: 300;
      line-height: 1.2;
      letter-spacing: -0.01em;
      color: var(--ink-soft);
    }
    .clients-title .italic { color: var(--ink); }

    .clients-marquee {
      width: 100%;
      overflow: hidden;
      mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
      -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
    }
    .clients-track {
      display: flex;
      align-items: center;
      gap: 4rem;
      width: max-content;
      animation: clientsScroll 60s linear infinite;
      padding: 1rem 0;
    }
    .clients-track:hover { animation-play-state: paused; }

    @keyframes clientsScroll {
      from { transform: translateX(0); }
      to { transform: translateX(-50%); }
    }

    .client-logo {
      flex-shrink: 0;
      height: 48px;
      width: auto;
      max-width: 180px;
      display: flex;
      align-items: center;
      justify-content: center;
      filter: grayscale(100%) brightness(0.4) contrast(1.2);
      opacity: 0.55;
      transition: filter 0.5s var(--ease), opacity 0.5s var(--ease), transform 0.5s var(--ease);
      cursor: none;
    }
    @media (max-width: 860px) { .client-logo { cursor: pointer; } }
    .client-logo:hover {
      filter: grayscale(0%) brightness(1) contrast(1);
      opacity: 1;
      transform: scale(1.05);
    }
    .client-logo img {
      max-height: 100%;
      max-width: 100%;
      width: auto;
      object-fit: contain;
    }
    /* Logos blancs sur fond sombre : on les inverse pour fond clair */
    .client-logo.invert img {
      filter: invert(1);
    }
    .client-logo.invert:hover img {
      filter: invert(1);
    }
    /* Texte en lieu et place de logo */
    .client-logo-text {
      flex-shrink: 0;
      height: 48px;
      display: flex;
      align-items: center;
      padding: 0 1rem;
      font-family: 'Fraunces', serif;
      font-size: 1.5rem;
      font-weight: 300;
      letter-spacing: -0.01em;
      color: var(--ink-muted);
      transition: color 0.5s var(--ease), transform 0.5s var(--ease);
      cursor: none;
      white-space: nowrap;
    }
    @media (max-width: 860px) { .client-logo-text { cursor: pointer; } }
    .client-logo-text:hover {
      color: var(--ink);
      transform: scale(1.05);
    }
    .client-logo-text.sans {
      font-family: 'Inter Tight', sans-serif;
      font-size: 1.1rem;
      font-weight: 500;
      letter-spacing: 0.05em;
      text-transform: uppercase;
    }

    /* ============ SECTION DARK / MANIFESTO ============ */
    .section-dark {
      padding: 8rem 0;
      background: var(--ink);
      color: var(--paper);
      position: relative;
      overflow: hidden;
    }
    .section-dark::before {
      content: '';
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse at 15% 20%, rgba(255,255,255,0.04), transparent 50%),
        radial-gradient(ellipse at 85% 80%, rgba(255,255,255,0.03), transparent 50%);
      pointer-events: none;
    }
    .section-dark > * { position: relative; }

    .manifesto {
      font-family: 'Fraunces', serif;
      font-size: clamp(1.75rem, 3.5vw, 3rem);
      line-height: 1.15;
      font-weight: 300;
      letter-spacing: -0.02em;
    }

    .manifesto-photo {
      margin-top: 4rem;
      width: 100%;
      aspect-ratio: 4 / 3;
      overflow: hidden;
      position: relative;
      filter: grayscale(100%) contrast(1.05);
    }
    .manifesto-photo img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 1.5s var(--ease);
    }
    .manifesto-photo:hover img { transform: scale(1.04); }
    .manifesto-photo::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, transparent 60%, rgba(10,10,10,0.4) 100%);
      pointer-events: none;
    }
    .manifesto-photo-caption {
      position: absolute;
      bottom: 1.5rem;
      left: 1.5rem;
      right: 1.5rem;
      color: var(--paper);
      font-size: 0.7rem;
      text-transform: uppercase;
      letter-spacing: 0.3em;
      z-index: 1;
    }
    .stats-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 3rem;
      margin-top: 5rem;
      padding-top: 3rem;
      border-top: 1px solid rgba(255,255,255,0.1);
    }
    @media (min-width: 768px) { .stats-grid { grid-template-columns: repeat(3, 1fr); } }
    .stat-num {
      font-family: 'Fraunces', serif;
      font-size: 4rem;
      font-weight: 200;
      letter-spacing: -0.04em;
      font-feature-settings: 'tnum' on, 'lnum' on;
      line-height: 1;
    }
    .stat-num .suffix { font-size: 0.6em; opacity: 0.7; }
    .stat-label {
      font-size: 0.8rem;
      text-transform: uppercase;
      letter-spacing: 0.2em;
      margin-top: 1rem;
      color: rgba(255,255,255,0.85);
    }
    .stat-sub {
      font-size: 0.875rem;
      color: rgba(255,255,255,0.5);
      margin-top: 0.5rem;
      line-height: 1.5;
    }
    .sticky-md { position: relative; }
    @media (min-width: 768px) { .sticky-md { position: sticky; top: 8rem; } }

    /* ============ SERVICES ============ */
    .section-services { padding: 8rem 0; }
    .section-title {
      font-family: 'Fraunces', serif;
      font-size: 3rem;
      font-weight: 300;
      line-height: 1;
      letter-spacing: -0.02em;
    }
    @media (min-width: 768px) { .section-title { font-size: 3.75rem; } }
    .section-title .extra-light { font-weight: 200; }
    .section-intro {
      font-size: 1.125rem;
      line-height: 1.7;
      color: var(--ink-soft);
    }

    .services-list {
      border-top: 1px solid var(--ink-line);
      margin-top: 5rem;
    }
    .service-row {
      border-bottom: 1px solid var(--ink-line);
      padding: 2rem 0;
      cursor: none;
      position: relative;
      overflow: hidden;
      transition: padding 0.5s var(--ease), background 0.4s var(--ease);
    }
    @media (max-width: 860px) { .service-row { cursor: pointer; } }
    .service-row::before {
      content: '';
      position: absolute;
      left: 0; top: 0;
      width: 100%; height: 100%;
      background: var(--paper-warm);
      transform: translateY(101%);
      transition: transform 0.6s var(--ease);
      z-index: 0;
    }
    .service-row:hover::before { transform: translateY(0); }
    .service-row > * { position: relative; z-index: 1; }
    .service-row:hover { padding-left: 1.5rem; padding-right: 1.5rem; }

    .service-row .grid-12 { gap: 1rem; align-items: start; }
    .service-num {
      grid-column: span 2;
      font-family: 'Fraunces', serif;
      font-size: 1.25rem;
      color: var(--ink-muted);
      font-style: italic;
      font-weight: 300;
    }
    .service-title-cell { grid-column: span 10; }
    .service-desc-cell { grid-column: span 12; }
    .service-arrow-cell { grid-column: span 12; }
    @media (min-width: 768px) {
      .service-num { grid-column: span 1; }
      .service-title-cell { grid-column: span 5; }
      .service-desc-cell { grid-column: span 5; padding-left: 1rem; }
      .service-arrow-cell { grid-column: span 1; display: flex; justify-content: flex-end; }
    }
    .service-title {
      font-family: 'Fraunces', serif;
      font-size: 1.5rem;
      font-weight: 300;
      line-height: 1.2;
      transition: transform 0.5s var(--ease);
    }
    @media (min-width: 768px) { .service-title { font-size: 1.875rem; } }
    .service-row:hover .service-title { transform: translateX(8px); }
    .service-desc {
      font-size: 0.875rem;
      color: var(--ink-soft);
      line-height: 1.6;
      margin-bottom: 0.75rem;
    }
    .service-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 0.75rem; }
    .tag {
      font-size: 0.7rem;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      color: var(--ink-muted);
      border: 1px solid var(--ink-line);
      padding: 0.25rem 0.75rem;
      border-radius: 999px;
      background: rgba(255,255,255,0.5);
    }
    .arrow-icon {
      width: 24px;
      height: 24px;
      stroke: var(--ink-muted);
      transition: transform 0.5s var(--ease), stroke 0.3s ease;
    }
    .service-row:hover .arrow-icon { stroke: var(--ink); transform: rotate(45deg) translate(2px, -2px); }

    /* ============ BLOG / JOURNAL ============ */
    .section-blog {
      padding: 8rem 0;
      background: var(--paper-warm);
      position: relative;
    }
    .articles-list {
      border-top: 1px solid var(--ink-line);
    }
    .article-row {
      display: grid;
      grid-template-columns: 1fr;
      gap: 1.5rem;
      padding: 3rem 0;
      border-bottom: 1px solid var(--ink-line);
      cursor: none;
      position: relative;
      overflow: hidden;
      transition: padding 0.5s var(--ease);
    }
    @media (max-width: 860px) { .article-row { cursor: pointer; } }
    @media (min-width: 768px) {
      .article-row {
        grid-template-columns: 140px 200px 1fr 60px;
        gap: 2.5rem;
        align-items: start;
      }
    }
    .article-row::before {
      content: '';
      position: absolute;
      left: 0; top: 0;
      width: 100%; height: 100%;
      background: var(--paper);
      transform: translateY(101%);
      transition: transform 0.6s var(--ease);
      z-index: 0;
    }
    .article-row:hover::before { transform: translateY(0); }
    .article-row > * { position: relative; z-index: 1; }
    .article-row:hover { padding-left: 1.5rem; padding-right: 1.5rem; }

    .article-thumb {
      width: 100%;
      aspect-ratio: 4 / 5;
      overflow: hidden;
      filter: grayscale(100%) contrast(1.05);
      transition: filter 0.6s var(--ease);
    }
    .article-thumb img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 1.2s var(--ease);
    }
    .article-row:hover .article-thumb { filter: grayscale(0%) contrast(1); }
    .article-row:hover .article-thumb img { transform: scale(1.06); }
    @media (max-width: 767px) {
      .article-thumb { aspect-ratio: 16 / 9; max-width: 320px; }
    }

    .article-meta {
      font-size: 0.7rem;
      text-transform: uppercase;
      letter-spacing: 0.2em;
      color: var(--ink-muted);
      line-height: 1.6;
    }
    .article-meta .date {
      font-family: 'Fraunces', serif;
      font-style: italic;
      font-size: 1rem;
      letter-spacing: 0;
      text-transform: none;
      color: var(--ink-soft);
      display: block;
      margin-bottom: 0.4rem;
    }
    .article-meta .author {
      display: block;
    }

    .article-title {
      font-family: 'Fraunces', serif;
      font-size: 1.75rem;
      font-weight: 300;
      line-height: 1.2;
      letter-spacing: -0.01em;
      transition: transform 0.5s var(--ease);
      margin-bottom: 1rem;
    }
    @media (min-width: 768px) { .article-title { font-size: 2.25rem; } }
    .article-row:hover .article-title { transform: translateX(8px); }

    .article-excerpt {
      font-size: 0.95rem;
      color: var(--ink-soft);
      line-height: 1.6;
      max-width: 36rem;
      margin-bottom: 1rem;
    }

    .article-read {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      font-size: 0.7rem;
      text-transform: uppercase;
      letter-spacing: 0.2em;
      color: var(--ink);
    }

    .article-arrow-cell {
      display: flex;
      justify-content: flex-start;
    }
    @media (min-width: 768px) { .article-arrow-cell { justify-content: flex-end; } }
    .article-row:hover .arrow-icon { stroke: var(--ink); transform: rotate(45deg) translate(2px, -2px); }

    /* ============ QUOTE ============ */
    .section-quote {
      padding: 8rem 0;
      position: relative;
      overflow: hidden;
    }
    .quote-bg {
      position: absolute;
      inset: 0;
      z-index: 0;
      pointer-events: none;
    }
    .quote-bg img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      filter: grayscale(100%) contrast(1.05);
      opacity: 0.18;
    }
    .quote-bg::after {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse at center, transparent 10%, var(--paper) 80%);
    }
    .quote-inner { max-width: 1100px; margin: 0 auto; text-align: center; padding: 0 2rem; position: relative; z-index: 1; }
    .quote-mark {
      font-family: 'Fraunces', serif;
      font-size: 5rem;
      color: rgba(0,0,0,0.2);
      line-height: 1;
      margin-bottom: 1rem;
      user-select: none;
    }
    .quote-text {
      font-family: 'Fraunces', serif;
      font-size: 1.875rem;
      font-weight: 300;
      line-height: 1.2;
      letter-spacing: -0.02em;
    }
    @media (min-width: 768px) { .quote-text { font-size: 3rem; } }
    .quote-attribution {
      margin-top: 3rem;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 1rem;
    }
    .quote-attribution .line { width: 3rem; height: 1px; background: rgba(0,0,0,0.3); }
    .quote-attribution .name {
      font-size: 0.7rem;
      text-transform: uppercase;
      letter-spacing: 0.3em;
      color: var(--ink-soft);
    }

    /* ============ FAQ ============ */
    .section-faq { padding: 8rem 0; border-top: 1px solid var(--ink-line); }
    .faq-item {
      border-bottom: 1px solid var(--ink-line);
      transition: padding 0.4s var(--ease);
    }
    .faq-item:hover { padding-left: 0.75rem; }
    .faq-button {
      width: 100%;
      padding: 1.5rem 0;
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 1rem;
      text-align: left;
    }
    .faq-q {
      font-family: 'Fraunces', serif;
      font-size: 1.25rem;
      font-weight: 300;
      flex: 1;
      padding-right: 1rem;
      transition: transform 0.4s var(--ease);
    }
    @media (min-width: 768px) { .faq-q { font-size: 1.5rem; } }
    .faq-icon { flex-shrink: 0; margin-top: 0.4rem; transition: transform 0.4s var(--ease); }
    .faq-item.open .faq-icon { transform: rotate(135deg); }
    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.6s var(--ease), padding-bottom 0.5s ease;
    }
    .faq-item.open .faq-answer { max-height: 300px; padding-bottom: 1.5rem; }
    .faq-answer p {
      font-size: 1rem;
      color: var(--ink-soft);
      line-height: 1.6;
      padding-right: 3rem;
    }

    /* ============ CTA ============ */
    .section-cta {
      padding: 8rem 0;
      background: var(--ink);
      color: var(--paper);
      position: relative;
      overflow: hidden;
    }
    .section-cta::before {
      content: '';
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse at 80% 20%, rgba(255,255,255,0.05), transparent 50%),
        radial-gradient(ellipse at 20% 90%, rgba(255,255,255,0.04), transparent 50%);
      pointer-events: none;
      z-index: 1;
    }
    .cta-bg {
      position: absolute;
      inset: 0;
      z-index: 0;
      pointer-events: none;
      overflow: hidden;
    }
    .cta-bg img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      filter: grayscale(100%) contrast(1.2);
      opacity: 0.12;
      mix-blend-mode: screen;
    }
    .section-cta > .container { position: relative; z-index: 2; }
    .cta-title {
      font-family: 'Fraunces', serif;
      font-size: clamp(2.5rem, 7vw, 7rem);
      line-height: 0.95;
      letter-spacing: -0.02em;
      font-weight: 300;
    }
    .cta-title .extra-light { font-weight: 200; }
    .cta-text {
      font-size: 1.125rem;
      color: rgba(255,255,255,0.6);
      margin-top: 2rem;
      max-width: 36rem;
      line-height: 1.6;
    }
    .cta-button {
      display: inline-flex;
      align-items: center;
      gap: 1rem;
      border: 1px solid rgba(255,255,255,0.3);
      padding: 1.25rem 2rem;
      font-size: 0.8rem;
      text-transform: uppercase;
      letter-spacing: 0.2em;
      transition: all 0.5s var(--ease);
      will-change: transform;
    }
    .cta-button:hover { background: var(--paper); color: var(--ink); border-color: var(--paper); }
    .cta-button:hover .arrow-icon { transform: rotate(45deg); stroke: var(--ink); }
    .cta-button .arrow-icon { stroke: var(--paper); transition: transform 0.5s, stroke 0.5s; }

    .contact-grid {
      margin-top: 6rem;
      display: grid;
      grid-template-columns: 1fr;
      gap: 2rem;
      padding-top: 3rem;
      border-top: 1px solid rgba(255,255,255,0.1);
    }
    @media (min-width: 768px) { .contact-grid { grid-template-columns: repeat(4, 1fr); } }
    .contact-label {
      font-size: 0.7rem;
      text-transform: uppercase;
      letter-spacing: 0.3em;
      color: rgba(255,255,255,0.4);
      margin-bottom: 0.5rem;
    }
    .contact-value {
      font-family: 'Fraunces', serif;
      font-size: 1.125rem;
      font-weight: 300;
    }

    /* ============ FOOTER ============ */
    .footer {
      background: var(--ink);
      color: var(--paper);
      padding: 0 2rem 3rem;
      border-top: 1px solid rgba(255,255,255,0.1);
    }
    .footer-inner { max-width: 1400px; margin: 0 auto; padding-top: 3rem; }
    .footer-top {
      display: flex;
      flex-direction: column;
      gap: 2rem;
      align-items: flex-start;
      justify-content: space-between;
    }
    @media (min-width: 768px) { .footer-top { flex-direction: row; align-items: flex-end; } }
    .footer-logo {
      font-family: 'Fraunces', serif;
      font-size: 1.875rem;
    }
    .footer-logo .italic { font-weight: 300; }
    .footer-logo small {
      margin-left: 0.5rem;
      font-family: 'Inter Tight', sans-serif;
      font-size: 0.7rem;
      text-transform: uppercase;
      letter-spacing: 0.3em;
      color: rgba(255,255,255,0.5);
      vertical-align: middle;
    }
    .footer-tagline {
      font-size: 0.875rem;
      color: rgba(255,255,255,0.4);
      margin-top: 0.75rem;
      max-width: 28rem;
      line-height: 1.6;
    }
    .footer-links {
      display: flex;
      flex-wrap: wrap;
      gap: 0.5rem 2rem;
      font-size: 0.875rem;
      color: rgba(255,255,255,0.7);
    }
    .footer-bottom {
      margin-top: 4rem;
      padding-top: 1.5rem;
      border-top: 1px solid rgba(255,255,255,0.1);
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
      justify-content: space-between;
      font-size: 0.7rem;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      color: rgba(255,255,255,0.3);
    }
    @media (min-width: 768px) { .footer-bottom { flex-direction: row; } }

    /* ============ BACK TO TOP ============ */
    .back-to-top {
      position: fixed;
      bottom: 32px;
      right: 32px;
      width: 56px;
      height: 56px;
      border-radius: 50%;
      background: var(--ink);
      color: var(--paper);
      border: 1px solid rgba(255,255,255,0.15);
      cursor: none;
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      pointer-events: none;
      transform: translateY(20px) scale(0.9);
      transition: all 0.4s var(--ease);
      z-index: 99;
    }
    @media (max-width: 860px) { .back-to-top { cursor: pointer; } }
    .back-to-top.visible {
      opacity: 1;
      pointer-events: auto;
      transform: translateY(0) scale(1);
    }
    .back-to-top:hover {
      background: var(--paper);
      color: var(--ink);
      transform: translateY(-4px) scale(1);
    }
    .back-to-top svg { transition: transform 0.3s var(--ease); }
    .back-to-top:hover svg { transform: translateY(-3px); }

    /* ============ SECTION HEADER COMMON ============ */
    h2.section-title { font-size: 3rem; }
    @media (min-width: 768px) { h2.section-title { font-size: 3.75rem; } }
    /* ============ PAGES SECONDAIRES (header simple, page-hero) ============ */
    .page-header {
      padding: 10rem 0 5rem;
      position: relative;
      border-bottom: 1px solid var(--ink-line);
    }
    .page-header .kicker { margin-bottom: 1.5rem; }
    .page-title {
      font-family: 'Fraunces', serif;
      font-size: clamp(2.5rem, 7vw, 6rem);
      line-height: 0.98;
      letter-spacing: -0.03em;
      font-weight: 300;
    }
    .page-title .extra-light { font-weight: 200; }
    .page-intro {
      font-size: 1.125rem;
      line-height: 1.7;
      color: var(--ink-soft);
      max-width: 42rem;
      margin-top: 2rem;
    }

    /* ============ SERVICES PAGE - bloc détaillé ============ */
    .service-block {
      padding: 5rem 0;
      border-bottom: 1px solid var(--ink-line);
      position: relative;
    }
    .service-block:nth-child(even) { background: var(--paper-warm); }
    .service-block-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 3rem;
      align-items: start;
    }
    @media (min-width: 768px) {
      .service-block-grid { grid-template-columns: 280px 1fr; gap: 5rem; }
    }
    .service-block-num {
      font-family: 'Fraunces', serif;
      font-size: 5rem;
      font-weight: 200;
      font-style: italic;
      color: var(--ink-muted);
      line-height: 1;
      letter-spacing: -0.04em;
    }
    .service-block-image {
      width: 100%;
      aspect-ratio: 1 / 1;
      max-width: 280px;
      margin-top: 2rem;
      overflow: hidden;
      filter: grayscale(100%) contrast(1.05);
    }
    .service-block-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    .service-block-title {
      font-family: 'Fraunces', serif;
      font-size: 2rem;
      font-weight: 300;
      letter-spacing: -0.02em;
      line-height: 1.2;
      margin-bottom: 2rem;
    }
    @media (min-width: 768px) { .service-block-title { font-size: 2.75rem; } }

    .service-detail-section {
      margin-top: 2.5rem;
      padding-top: 2rem;
      border-top: 1px solid var(--ink-line);
    }
    .service-detail-label {
      font-family: 'Fraunces', serif;
      font-style: italic;
      font-size: 1.125rem;
      color: var(--ink-soft);
      margin-bottom: 1rem;
    }
    .service-detail-text {
      font-size: 1rem;
      line-height: 1.7;
      color: var(--ink-soft);
      margin-bottom: 1rem;
    }
    .service-detail-list {
      list-style: none;
      padding: 0;
      margin: 0;
    }
    .service-detail-list li {
      font-size: 0.95rem;
      line-height: 1.7;
      color: var(--ink-soft);
      padding-left: 1.5rem;
      position: relative;
      margin-bottom: 0.75rem;
    }
    .service-detail-list li::before {
      content: '—';
      position: absolute;
      left: 0;
      color: var(--ink-muted);
    }
    .service-detail-list strong { color: var(--ink); font-weight: 500; }

    /* ============ ARTICLE PAGE ============ */
    .article-page {
      padding: 8rem 0 6rem;
    }
    .article-container {
      max-width: 760px;
      margin: 0 auto;
      padding: 0 2rem;
    }
    .article-header {
      margin-bottom: 4rem;
      padding-bottom: 3rem;
      border-bottom: 1px solid var(--ink-line);
    }
    .article-back {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      font-size: 0.7rem;
      text-transform: uppercase;
      letter-spacing: 0.2em;
      color: var(--ink-muted);
      margin-bottom: 3rem;
      transition: color 0.3s var(--ease);
    }
    .article-back:hover { color: var(--ink); }
    .article-back svg { transition: transform 0.4s var(--ease); }
    .article-back:hover svg { transform: translateX(-4px); }

    .article-page-title {
      font-family: 'Fraunces', serif;
      font-size: clamp(2rem, 5vw, 3.75rem);
      line-height: 1.05;
      letter-spacing: -0.02em;
      font-weight: 300;
      margin-bottom: 2rem;
    }
    .article-page-meta {
      display: flex;
      gap: 2rem;
      flex-wrap: wrap;
      font-size: 0.7rem;
      text-transform: uppercase;
      letter-spacing: 0.2em;
      color: var(--ink-muted);
    }
    .article-page-meta .author {
      font-family: 'Fraunces', serif;
      font-style: italic;
      font-size: 1rem;
      letter-spacing: 0;
      text-transform: none;
      color: var(--ink-soft);
    }
    .article-hero-image {
      margin: 4rem 0;
      width: 100%;
      aspect-ratio: 16 / 10;
      overflow: hidden;
      filter: grayscale(100%) contrast(1.05);
    }
    .article-hero-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .article-body {
      font-size: 1.125rem;
      line-height: 1.75;
      color: var(--ink-soft);
    }
    .article-body h2, .article-body h3 {
      font-family: 'Fraunces', serif;
      font-weight: 400;
      letter-spacing: -0.01em;
      color: var(--ink);
      margin-top: 3rem;
      margin-bottom: 1rem;
      line-height: 1.2;
    }
    .article-body h2 { font-size: 2rem; font-weight: 300; }
    .article-body h3 { font-size: 1.5rem; font-style: italic; font-weight: 300; }
    .article-body p { margin-bottom: 1.5rem; }
    .article-body strong { color: var(--ink); font-weight: 500; }
    .article-body em { font-style: italic; }
    .article-body ul, .article-body ol {
      margin: 1.5rem 0;
      padding-left: 0;
      list-style: none;
    }
    .article-body ul li, .article-body ol li {
      padding-left: 2rem;
      position: relative;
      margin-bottom: 1rem;
    }
    .article-body ul li::before {
      content: '—';
      position: absolute;
      left: 0;
      color: var(--ink-muted);
    }
    .article-body ol {
      counter-reset: ol-counter;
    }
    .article-body ol li {
      counter-increment: ol-counter;
    }
    .article-body ol li::before {
      content: counter(ol-counter, decimal-leading-zero);
      position: absolute;
      left: 0;
      font-family: 'Fraunces', serif;
      font-style: italic;
      color: var(--ink-muted);
    }
    .article-body blockquote {
      border-left: 2px solid var(--ink);
      padding-left: 1.5rem;
      margin: 2.5rem 0;
      font-family: 'Fraunces', serif;
      font-style: italic;
      font-size: 1.5rem;
      line-height: 1.4;
      color: var(--ink);
    }

    .article-footer {
      margin-top: 5rem;
      padding-top: 3rem;
      border-top: 1px solid var(--ink-line);
    }
    .article-nav {
      display: grid;
      grid-template-columns: 1fr;
      gap: 2rem;
      margin-top: 3rem;
    }
    @media (min-width: 768px) {
      .article-nav { grid-template-columns: 1fr 1fr; }
    }
    .article-nav-item {
      padding: 1.5rem;
      border: 1px solid var(--ink-line);
      transition: border-color 0.4s var(--ease), background 0.4s var(--ease);
    }
    .article-nav-item:hover { border-color: var(--ink); background: var(--paper-warm); }
    .article-nav-item .label {
      font-size: 0.7rem;
      text-transform: uppercase;
      letter-spacing: 0.2em;
      color: var(--ink-muted);
      margin-bottom: 0.5rem;
    }
    .article-nav-item .title {
      font-family: 'Fraunces', serif;
      font-size: 1.125rem;
      font-weight: 300;
      line-height: 1.3;
    }

    /* ============ CONTACT PAGE - FORM ============ */
    .contact-section { padding: 5rem 0; }
    .contact-form {
      display: grid;
      grid-template-columns: 1fr;
      gap: 1.5rem;
      max-width: 600px;
    }
    @media (min-width: 640px) {
      .contact-form-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
      }
    }
    .form-field { display: flex; flex-direction: column; }
    .form-field label {
      font-size: 0.7rem;
      text-transform: uppercase;
      letter-spacing: 0.2em;
      color: var(--ink-muted);
      margin-bottom: 0.5rem;
    }
    .form-field input,
    .form-field textarea,
    .form-field select {
      font-family: 'Inter Tight', sans-serif;
      font-size: 1rem;
      padding: 0.85rem 0;
      background: transparent;
      border: none;
      border-bottom: 1px solid var(--ink-line);
      color: var(--ink);
      transition: border-color 0.3s var(--ease);
      outline: none;
    }
    .form-field input:focus,
    .form-field textarea:focus,
    .form-field select:focus {
      border-bottom-color: var(--ink);
    }
    .form-field textarea {
      min-height: 140px;
      resize: vertical;
      padding: 0.85rem 0;
    }
    .form-submit {
      margin-top: 1rem;
      padding: 1rem 2rem;
      font-family: 'Inter Tight', sans-serif;
      font-size: 0.8rem;
      text-transform: uppercase;
      letter-spacing: 0.2em;
      background: var(--ink);
      color: var(--paper);
      border: none;
      cursor: none;
      transition: background 0.4s var(--ease);
      align-self: flex-start;
      will-change: transform;
    }
    @media (max-width: 860px) { .form-submit { cursor: pointer; } }
    .form-submit:hover { background: var(--paper); color: var(--ink); box-shadow: inset 0 0 0 1px var(--ink); }

    /* ============ ABOUT PAGE - PILIERS ============ */
    .pillar-row {
      display: grid;
      grid-template-columns: 1fr;
      gap: 2rem;
      padding: 3rem 0;
      border-bottom: 1px solid var(--ink-line);
    }
    @media (min-width: 768px) {
      .pillar-row { grid-template-columns: 80px 1fr 1fr; gap: 3rem; }
    }
    .pillar-num {
      font-family: 'Fraunces', serif;
      font-size: 3rem;
      font-weight: 200;
      font-style: italic;
      color: var(--ink-muted);
      line-height: 1;
    }
    .pillar-title {
      font-family: 'Fraunces', serif;
      font-size: 1.75rem;
      font-weight: 300;
      letter-spacing: -0.01em;
      line-height: 1.2;
    }
    .pillar-text {
      font-size: 1rem;
      line-height: 1.7;
      color: var(--ink-soft);
    }
    .pillar-text strong { color: var(--ink); font-weight: 500; }

    /* ============ VALEURS GRID ============ */
    .values-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 2rem;
      margin-top: 3rem;
    }
    @media (min-width: 640px) { .values-grid { grid-template-columns: repeat(2, 1fr); } }
    @media (min-width: 1024px) { .values-grid { grid-template-columns: repeat(4, 1fr); } }
    .value-card {
      padding: 2rem;
      border: 1px solid var(--ink-line);
      background: var(--paper);
      transition: border-color 0.4s var(--ease), transform 0.4s var(--ease);
    }
    .value-card:hover { border-color: var(--ink); transform: translateY(-4px); }
    .value-card .label {
      font-family: 'Fraunces', serif;
      font-size: 1.5rem;
      font-weight: 300;
      letter-spacing: -0.01em;
      margin-bottom: 1rem;
    }
    .value-card .label .italic { font-style: italic; }
    .value-card p {
      font-size: 0.95rem;
      line-height: 1.6;
      color: var(--ink-soft);
    }

    /* ============ MISC PAGE LAYOUT ============ */
    .section-prose {
      padding: 6rem 0;
    }
    .prose-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 3rem;
    }
    @media (min-width: 768px) {
      .prose-grid { grid-template-columns: 280px 1fr; gap: 5rem; }
    }
    .prose-content p {
      font-size: 1.0625rem;
      line-height: 1.75;
      color: var(--ink-soft);
      margin-bottom: 1.5rem;
    }
    .prose-content p strong { color: var(--ink); font-weight: 500; }
