/* ══════════════════════════════════════════
       KLANIEN — Design System
       Aesthetic: French editorial noir, luxe minimaliste
       ══════════════════════════════════════════ */

    :root {
      --noir:    #0a0a0a;
      --charbon: #141414;
      --encre:   #1e1e1e;
      --brume:   #2a2a2a;
      --mid:     #6e6e6e;
      --cendre:  #a8a8a8;
      --parchemin: #f2ede4;
      --blanc:   #fafaf8;
      --or:      #c9a84c;
      --or-lt:   #e0c070;
      --rouge:   #b03a2e;
      --filet:   rgba(255,255,255,0.07);
      --filet-lt: rgba(0,0,0,0.08);

      --f-titre: 'Cormorant Garamond', serif;
      --f-corps: 'Syne', sans-serif;
      --f-mono:  'JetBrains Mono', monospace;

      --dur: 0.38s;
      --ease: cubic-bezier(0.16, 1, 0.3, 1);
    }

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; font-size: 16px; }

    body {
      font-family: var(--f-corps);
      background: var(--noir);
      color: var(--blanc);
      line-height: 1.6;
      overflow-x: hidden;
      cursor: none;
    }

    /* ── Curseur personnalisé ── */
    #cursor {
      position: fixed;
      width: 10px; height: 10px;
      background: var(--or);
      border-radius: 50%;
      pointer-events: none;
      z-index: 9999;
      transform: translate(-50%,-50%);
      transition: width .2s var(--ease), height .2s var(--ease), background .2s;
      mix-blend-mode: difference;
    }
    #cursor-ring {
      position: fixed;
      width: 38px; height: 38px;
      border: 1px solid rgba(201,168,76,0.5);
      border-radius: 50%;
      pointer-events: none;
      z-index: 9998;
      transform: translate(-50%,-50%);
      transition: all .12s var(--ease);
    }
    body:has(a:hover) #cursor, body:has(button:hover) #cursor { width: 20px; height: 20px; }

    /* ── Grain 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.03'/%3E%3C/svg%3E");
      pointer-events: none;
      z-index: 9990;
      opacity: 0.4;
    }

    /* ── Scrollbar ── */
    ::-webkit-scrollbar { width: 3px; }
    ::-webkit-scrollbar-track { background: var(--noir); }
    ::-webkit-scrollbar-thumb { background: var(--or); }

    a { color: inherit; text-decoration: none; cursor: none; }
    img { display: block; max-width: 100%; object-fit: cover; }
    button { cursor: none; font-family: var(--f-corps); border: none; background: none; }

    /* ══════════════════════════════════════════
       PAGES — système SPA
       ══════════════════════════════════════════ */
    .page {
      display: none;
      min-height: 100vh;
      animation: pageIn .55s var(--ease) both;
    }
    .page.active { display: block; }

    @keyframes pageIn {
      from { opacity: 0; transform: translateY(16px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    /* ══════════════════════════════════════════
       HEADER / NAV
       ══════════════════════════════════════════ */
    .header {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 1000;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 3rem;
      height: 64px;
      background: rgba(10,10,10,0.85);
      backdrop-filter: blur(20px) saturate(1.2);
      border-bottom: 1px solid var(--filet);
    }
    .logo-mark {
      display: flex;
      align-items: baseline;
      gap: 0.1em;
    }
    .logo-mark .k {
      font-family: var(--f-titre);
      font-size: 1.5rem;
      font-weight: 700;
      color: var(--or);
      letter-spacing: -0.02em;
      line-height: 1;
    }
    .logo-mark .lanien {
      font-family: var(--f-titre);
      font-size: 1.5rem;
      font-weight: 300;
      color: var(--blanc);
      letter-spacing: 0.04em;
    }
    .logo-mark .dot {
      width: 5px; height: 5px;
      background: var(--or);
      border-radius: 50%;
      margin: 0 0.15em 0.1em;
      flex-shrink: 0;
      align-self: flex-end;
    }

    .nav { display: flex; align-items: center; gap: 0; }
    .nav-link {
      font-family: var(--f-mono);
      font-size: 0.65rem;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--cendre);
      padding: 0 1.1rem;
      height: 64px;
      display: flex;
      align-items: center;
      border-left: 1px solid var(--filet);
      transition: color var(--dur), background var(--dur);
      position: relative;
    }
    .nav-link::after {
      content: '';
      position: absolute;
      bottom: 0; left: 0; right: 0;
      height: 2px;
      background: var(--or);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform .3s var(--ease);
    }
    .nav-link:hover, .nav-link.active {
      color: var(--blanc);
      background: rgba(255,255,255,0.02);
    }
    .nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }
    .nav-link.nav-cta {
      background: var(--or);
      color: var(--noir);
      font-weight: 600;
      border-left: none;
      margin-left: 0.5rem;
    }
    .nav-link.nav-cta:hover { background: var(--or-lt); color: var(--noir); }
    .nav-link.nav-cta::after { display: none; }

    /* Hamburger mobile */
    .nav-toggle {
      display: none;
      flex-direction: column;
      gap: 5px;
      padding: 0.5rem;
    }
    .nav-toggle span {
      display: block;
      width: 22px; height: 1.5px;
      background: var(--blanc);
      transition: all .3s;
    }

    /* ══════════════════════════════════════════
       HERO — ACCUEIL
       ══════════════════════════════════════════ */
    .hero {
      height: 100vh;
      position: relative;
      display: flex;
      overflow: hidden;
    }
    .hero-img-wrap {
      position: absolute;
      inset: 0;
    }
    .hero-img {
      width: 100%; height: 100%;
      object-fit: cover;
      filter: brightness(0.32) saturate(0.7);
      transition: filter 1.5s ease, transform 8s ease;
      transform: scale(1.04);
    }
    .hero-img.loaded { transform: scale(1); }
    .hero-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(
        105deg,
        rgba(10,10,10,0.92) 0%,
        rgba(10,10,10,0.5) 55%,
        rgba(10,10,10,0.15) 100%
      );
    }
    .hero-content {
      position: relative;
      z-index: 2;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      padding: 0 3rem 5rem;
      max-width: 700px;
      width: 100%;
    }

    .hero-eyebrow {
      font-family: var(--f-mono);
      font-size: 0.65rem;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: var(--or);
      margin-bottom: 1.5rem;
      display: flex;
      align-items: center;
      gap: 0.75rem;
      opacity: 0;
      animation: fadeUp .7s var(--ease) .2s both;
    }
    .hero-eyebrow::before {
      content: '';
      display: block;
      width: 2.5rem;
      height: 1px;
      background: var(--or);
    }

    .hero-title {
      font-family: var(--f-titre);
      font-size: clamp(3.5rem, 7vw, 7rem);
      font-weight: 300;
      line-height: 1.0;
      letter-spacing: -0.01em;
      margin-bottom: 1.75rem;
      opacity: 0;
      animation: fadeUp .8s var(--ease) .35s both;
    }
    .hero-title em {
      font-style: italic;
      font-weight: 600;
      color: var(--or);
    }
    .hero-title .br-accent {
      display: block;
      font-size: 0.55em;
      font-style: normal;
      font-weight: 300;
      color: var(--cendre);
      letter-spacing: 0.03em;
      margin-top: 0.25em;
    }

    .hero-sub {
      font-size: 0.95rem;
      color: rgba(250,250,248,0.6);
      line-height: 1.8;
      max-width: 40ch;
      margin-bottom: 2.5rem;
      opacity: 0;
      animation: fadeUp .7s var(--ease) .5s both;
    }

    .hero-actions {
      display: flex;
      gap: 1rem;
      flex-wrap: wrap;
      opacity: 0;
      animation: fadeUp .7s var(--ease) .65s both;
    }

    /* Scroll hint */
    .hero-scroll {
      position: absolute;
      bottom: 2.5rem;
      right: 3rem;
      z-index: 2;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.5rem;
      opacity: 0;
      animation: fadeIn 1s .9s both;
    }
    .hero-scroll span {
      font-family: var(--f-mono);
      font-size: 0.58rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--mid);
      writing-mode: vertical-rl;
    }
    .scroll-line {
      width: 1px;
      height: 3rem;
      background: linear-gradient(var(--or), transparent);
      animation: scrollPulse 2s ease-in-out infinite;
    }
    @keyframes scrollPulse {
      0%,100% { opacity: 0.3; transform: scaleY(1); }
      50% { opacity: 1; transform: scaleY(1.3); }
    }

    /* Stats bar héro */
    .hero-stats {
      position: absolute;
      bottom: 0;
      right: 0;
      z-index: 2;
      display: flex;
      border-top: 1px solid var(--filet);
      border-left: 1px solid var(--filet);
    }
    .hero-stat {
      padding: 1.25rem 2rem;
      border-right: 1px solid var(--filet);
      text-align: center;
      background: rgba(10,10,10,0.6);
      backdrop-filter: blur(10px);
    }
    .hero-stat:last-child { border-right: none; }
    .stat-val {
      font-family: var(--f-titre);
      font-size: 2rem;
      font-weight: 600;
      color: var(--or);
      line-height: 1;
      display: block;
    }
    .stat-lbl {
      font-family: var(--f-mono);
      font-size: 0.58rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--mid);
      display: block;
      margin-top: 0.3rem;
    }

    /* ══════════════════════════════════════════
       BUTTONS
       ══════════════════════════════════════════ */
    .btn {
      display: inline-flex;
      align-items: center;
      gap: 0.6rem;
      padding: 0.8rem 1.8rem;
      font-family: var(--f-mono);
      font-size: 0.68rem;
      font-weight: 400;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      transition: all .3s var(--ease);
      position: relative;
      overflow: hidden;
    }
    .btn::before {
      content: '';
      position: absolute;
      inset: 0;
      background: rgba(255,255,255,0.05);
      transform: translateX(-101%);
      transition: transform .3s var(--ease);
    }
    .btn:hover::before { transform: translateX(0); }
    .btn-gold {
      background: var(--or);
      color: var(--noir);
    }
    .btn-gold:hover { background: var(--or-lt); }
    .btn-gold::before { background: rgba(255,255,255,0.1); }
    .btn-outline {
      border: 1px solid rgba(255,255,255,0.2);
      color: var(--blanc);
    }
    .btn-outline:hover { border-color: var(--or); color: var(--or); }
    .btn-dark {
      background: var(--encre);
      color: var(--blanc);
      border: 1px solid var(--brume);
    }
    .btn-dark:hover { border-color: var(--or); }
    .btn-ghost {
      color: var(--or);
      padding-left: 0; padding-right: 0;
    }
    .btn-ghost::after {
      content: '';
      position: absolute;
      bottom: 0.7rem; left: 0;
      width: 100%; height: 1px;
      background: var(--or);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform .3s var(--ease);
    }
    .btn-ghost:hover::after { transform: scaleX(1); }
    .btn-ghost::before { display: none; }

    /* Arrow icon */
    .arr { display: inline-block; transition: transform .25s var(--ease); }
    .btn:hover .arr { transform: translateX(4px); }

    /* ══════════════════════════════════════════
       TYPOGRAPHY HELPERS
       ══════════════════════════════════════════ */
    .eyebrow {
      font-family: var(--f-mono);
      font-size: 0.62rem;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--or);
      display: flex;
      align-items: center;
      gap: 0.7rem;
      margin-bottom: 1rem;
    }
    .eyebrow::before {
      content: '';
      display: block;
      width: 2rem; height: 1px;
      background: var(--or);
      flex-shrink: 0;
    }
    .eyebrow.dark { color: var(--mid); }
    .eyebrow.dark::before { background: var(--mid); }

    .section-title {
      font-family: var(--f-titre);
      font-size: clamp(2.2rem, 4vw, 3.8rem);
      font-weight: 300;
      line-height: 1.1;
      letter-spacing: -0.01em;
    }
    .section-title em { font-style: italic; font-weight: 600; color: var(--or); }
    .section-title.light { color: var(--parchemin); }

    .lead {
      font-size: 1rem;
      color: var(--cendre);
      line-height: 1.85;
      max-width: 52ch;
    }

    /* ══════════════════════════════════════════
       LAYOUT
       ══════════════════════════════════════════ */
    .container {
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 3rem;
    }
    .section { padding: 6rem 0; }
    .section-sm { padding: 4rem 0; }
    .pt-header { padding-top: 64px; }

    .grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }
    .grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; }
    .grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 2px; }

    /* ── Filet vertical ── */
    .vline {
      width: 1px; height: 4rem;
      background: linear-gradient(var(--or), transparent);
      margin: 2rem 0;
    }

    /* ── Bande accent ── */
    .band {
      background: var(--or);
      color: var(--noir);
      padding: 0.7rem 3rem;
      display: flex;
      align-items: center;
      gap: 2.5rem;
      overflow: hidden;
      white-space: nowrap;
    }
    .band-item {
      font-family: var(--f-mono);
      font-size: 0.65rem;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      display: flex;
      align-items: center;
      gap: 1.5rem;
      flex-shrink: 0;
    }
    .band-item::after { content: '◆'; font-size: 0.4rem; opacity: 0.5; }
    .band-item:last-child::after { display: none; }
    .band-marquee {
      display: flex;
      gap: 2.5rem;
      animation: marquee 22s linear infinite;
    }
    @keyframes marquee {
      from { transform: translateX(0); }
      to   { transform: translateX(-50%); }
    }

    /* ══════════════════════════════════════════
       IMAGE CARDS with Unsplash
       ══════════════════════════════════════════ */
    .img-card {
      position: relative;
      overflow: hidden;
      background: var(--encre);
    }
    .img-card img {
      width: 100%; height: 100%;
      object-fit: cover;
      transition: transform .7s var(--ease), filter .5s;
      filter: brightness(0.7) saturate(0.8);
    }
    .img-card:hover img {
      transform: scale(1.06);
      filter: brightness(0.5) saturate(0.6);
    }
    .img-card-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(10,10,10,0.9) 0%, transparent 60%);
    }
    .img-card-content {
      position: absolute;
      bottom: 0; left: 0; right: 0;
      padding: 2rem;
    }
    .img-card-cat {
      font-family: var(--f-mono);
      font-size: 0.58rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--or);
      margin-bottom: 0.5rem;
    }
    .img-card h3 {
      font-family: var(--f-titre);
      font-size: 1.4rem;
      font-weight: 400;
      line-height: 1.25;
      margin-bottom: 0.5rem;
    }
    .img-card p {
      font-size: 0.82rem;
      color: var(--cendre);
      line-height: 1.6;
      max-width: 30ch;
      opacity: 0;
      transform: translateY(8px);
      transition: all .4s var(--ease);
    }
    .img-card:hover p { opacity: 1; transform: translateY(0); }

    /* ══════════════════════════════════════════
       PORTAILS (accueil)
       ══════════════════════════════════════════ */
    .portail-wrap {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 2px;
      background: var(--brume);
    }
    .portail {
      background: var(--charbon);
      padding: 4rem;
      position: relative;
      overflow: hidden;
      transition: background .4s;
    }
    .portail::after {
      content: '';
      position: absolute;
      bottom: 0; left: 0; right: 0;
      height: 2px;
      background: var(--or);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform .5s var(--ease);
    }
    .portail:hover { background: var(--encre); }
    .portail:hover::after { transform: scaleX(1); }
    .portail-img {
      position: absolute;
      inset: 0;
      opacity: 0;
      transition: opacity .5s;
    }
    .portail:hover .portail-img { opacity: 1; }
    .portail-img img {
      width: 100%; height: 100%;
      object-fit: cover;
      filter: brightness(0.15) saturate(0.4);
    }
    .portail-content { position: relative; z-index: 1; }
    .portail-num {
      font-family: var(--f-titre);
      font-size: 5rem;
      font-weight: 300;
      color: rgba(255,255,255,0.06);
      line-height: 1;
      margin-bottom: 1.5rem;
      transition: color .3s;
    }
    .portail:hover .portail-num { color: rgba(201,168,76,0.15); }
    .portail h3 {
      font-family: var(--f-titre);
      font-size: 2rem;
      font-weight: 400;
      margin-bottom: 1rem;
      letter-spacing: -0.01em;
    }
    .portail p {
      font-size: 0.88rem;
      color: var(--cendre);
      line-height: 1.75;
      max-width: 34ch;
      margin-bottom: 2.5rem;
    }
    .portail-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 0.4rem;
      margin-bottom: 2.5rem;
    }
    .ptag {
      font-family: var(--f-mono);
      font-size: 0.58rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      padding: 0.3rem 0.75rem;
      border: 1px solid var(--filet);
      color: var(--mid);
      transition: all .25s;
    }
    .portail:hover .ptag {
      border-color: rgba(201,168,76,0.3);
      color: var(--or);
    }

    /* ══════════════════════════════════════════
       UNE (accueil)
       ══════════════════════════════════════════ */
    .une-grid {
      display: grid;
      grid-template-columns: 7fr 4fr;
      gap: 2px;
      background: var(--brume);
    }
    .une-main {
      background: var(--charbon);
      position: relative;
      overflow: hidden;
      min-height: 520px;
    }
    .une-main-img {
      position: absolute;
      inset: 0;
    }
    .une-main-img img {
      width: 100%; height: 100%;
      object-fit: cover;
      filter: brightness(0.3) saturate(0.6);
      transition: transform 8s ease;
    }
    .une-main:hover .une-main-img img { transform: scale(1.03); }
    .une-main-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(10,10,10,0.95) 0%, rgba(10,10,10,0.3) 70%, transparent 100%);
    }
    .une-main-content {
      position: absolute;
      bottom: 0; left: 0; right: 0;
      padding: 3rem;
    }
    .une-main h3 {
      font-family: var(--f-titre);
      font-size: clamp(1.8rem, 3vw, 2.8rem);
      font-weight: 300;
      line-height: 1.15;
      margin-bottom: 1rem;
    }
    .une-main-meta {
      font-family: var(--f-mono);
      font-size: 0.62rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--mid);
      margin-top: 1.25rem;
    }
    .une-aside {
      background: var(--charbon);
      display: flex;
      flex-direction: column;
    }
    .une-item {
      padding: 1.75rem;
      border-bottom: 1px solid var(--filet);
      transition: background .25s;
      cursor: pointer;
      flex: 1;
    }
    .une-item:last-child { border-bottom: none; }
    .une-item:hover { background: var(--encre); }
    .une-item-cat {
      font-family: var(--f-mono);
      font-size: 0.58rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--or);
      margin-bottom: 0.5rem;
    }
    .une-item h4 {
      font-family: var(--f-titre);
      font-size: 1.05rem;
      font-weight: 400;
      line-height: 1.35;
      margin-bottom: 0.4rem;
    }
    .une-item p {
      font-size: 0.8rem;
      color: var(--mid);
      line-height: 1.55;
    }

    /* ══════════════════════════════════════════
       PAGE MÉDIA
       ══════════════════════════════════════════ */
    .media-hero-section {
      position: relative;
      height: 70vh;
      min-height: 500px;
      overflow: hidden;
      display: flex;
      align-items: flex-end;
    }
    .media-hero-bg {
      position: absolute;
      inset: 0;
    }
    .media-hero-bg img {
      width: 100%; height: 100%;
      object-fit: cover;
      filter: brightness(0.25) saturate(0.5);
    }
    .media-hero-bg::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, var(--noir) 0%, transparent 60%);
    }
    .media-hero-text {
      position: relative;
      z-index: 1;
      padding: 5rem 3rem 4rem;
      max-width: 1280px;
      margin: 0 auto;
      width: 100%;
    }
    .media-ghost-text {
      position: absolute;
      right: 3rem;
      bottom: 2rem;
      font-family: var(--f-titre);
      font-size: 14rem;
      font-weight: 700;
      color: rgba(255,255,255,0.03);
      line-height: 1;
      pointer-events: none;
      letter-spacing: -0.04em;
    }

    /* Grille formats */
    .formats-wrap {
      display: grid;
      grid-template-columns: repeat(3,1fr);
      gap: 2px;
      background: var(--brume);
    }
    .format-card {
      background: var(--charbon);
      padding: 3rem;
      transition: background .3s;
      position: relative;
      overflow: hidden;
    }
    .format-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0;
      width: 2px; height: 0;
      background: var(--or);
      transition: height .4s var(--ease);
    }
    .format-card:hover { background: var(--encre); }
    .format-card:hover::before { height: 100%; }
    .format-icon-wrap {
      width: 48px; height: 48px;
      background: var(--or);
      display: flex; align-items: center; justify-content: center;
      margin-bottom: 1.5rem;
      font-size: 1.3rem;
    }
    .format-card h3 {
      font-family: var(--f-titre);
      font-size: 1.4rem;
      font-weight: 400;
      margin-bottom: 0.75rem;
    }
    .format-card p {
      font-size: 0.85rem;
      color: var(--cendre);
      line-height: 1.7;
      margin-bottom: 1.5rem;
    }
    .format-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 0;
    }
    .format-list li {
      font-family: var(--f-mono);
      font-size: 0.62rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--mid);
      padding: 0.45rem 0;
      border-top: 1px solid var(--filet);
      display: flex;
      align-items: center;
      gap: 0.6rem;
    }
    .format-list li::before { content: '→'; color: var(--or); }

    /* Podcast feature */
    .podcast-feature {
      display: grid;
      grid-template-columns: 280px 1fr;
      gap: 0;
      background: var(--charbon);
      border: 1px solid var(--filet);
    }
    .podcast-cover {
      background: var(--or);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: 3rem 2rem;
      gap: 1rem;
    }
    .podcast-cover .wave {
      display: flex;
      gap: 4px;
      align-items: center;
    }
    .wave-bar {
      width: 3px;
      background: var(--noir);
      border-radius: 2px;
      animation: wave 1.2s ease-in-out infinite;
    }
    .wave-bar:nth-child(1) { height: 16px; animation-delay: 0s; }
    .wave-bar:nth-child(2) { height: 28px; animation-delay: .1s; }
    .wave-bar:nth-child(3) { height: 20px; animation-delay: .2s; }
    .wave-bar:nth-child(4) { height: 34px; animation-delay: .15s; }
    .wave-bar:nth-child(5) { height: 22px; animation-delay: .05s; }
    .wave-bar:nth-child(6) { height: 30px; animation-delay: .25s; }
    .wave-bar:nth-child(7) { height: 18px; animation-delay: .1s; }
    @keyframes wave {
      0%,100% { transform: scaleY(1); opacity: 0.8; }
      50% { transform: scaleY(0.5); opacity: 0.5; }
    }
    .podcast-ep-num {
      font-family: var(--f-titre);
      font-size: 4rem;
      font-weight: 700;
      color: var(--noir);
      line-height: 1;
    }
    .podcast-ep-label {
      font-family: var(--f-mono);
      font-size: 0.6rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: rgba(10,10,10,0.6);
    }
    .podcast-info {
      padding: 3rem;
    }
    .podcast-info h3 {
      font-family: var(--f-titre);
      font-size: 1.8rem;
      font-weight: 400;
      margin-bottom: 0.75rem;
    }
    .podcast-info p {
      font-size: 0.88rem;
      color: var(--cendre);
      line-height: 1.75;
      margin-bottom: 2rem;
    }
    .ep-list {
      list-style: none;
      margin-top: 1.5rem;
      border-top: 1px solid var(--filet);
    }
    .ep-list li {
      display: flex;
      align-items: center;
      gap: 1rem;
      padding: 0.85rem 0;
      border-bottom: 1px solid var(--filet);
      font-size: 0.85rem;
      color: var(--cendre);
      transition: color .2s;
      cursor: pointer;
    }
    .ep-list li:hover { color: var(--or); }
    .ep-n {
      font-family: var(--f-mono);
      font-size: 0.6rem;
      color: var(--or);
      min-width: 1.8rem;
    }
    .ep-current { color: var(--or) !important; font-weight: 600; }

    /* ══════════════════════════════════════════
       PAGE COMMUNICATION
       ══════════════════════════════════════════ */
    .expertise-wrap {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 2px;
      background: var(--brume);
    }
    .exp-card {
      background: var(--charbon);
      padding: 3.5rem;
      position: relative;
      overflow: hidden;
      transition: background .3s;
    }
    .exp-card.flagship {
      grid-column: 1 / -1;
      background: var(--encre);
      border-bottom: 2px solid var(--or);
    }
    .exp-card:hover { background: var(--encre); }
    .exp-bg-img {
      position: absolute;
      inset: 0;
      opacity: 0;
      transition: opacity .4s;
    }
    .exp-card:hover .exp-bg-img { opacity: 1; }
    .exp-bg-img img {
      width: 100%; height: 100%;
      object-fit: cover;
      filter: brightness(0.08) saturate(0.3);
    }
    .exp-content { position: relative; z-index: 1; }
    .exp-num {
      font-family: var(--f-titre);
      font-size: 4.5rem;
      font-weight: 300;
      color: rgba(255,255,255,0.05);
      line-height: 1;
      margin-bottom: 1.25rem;
      transition: color .3s;
    }
    .exp-card:hover .exp-num { color: rgba(201,168,76,0.12); }
    .exp-card.flagship .exp-num { color: rgba(201,168,76,0.1); }
    .flagship-badge {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      background: var(--or);
      color: var(--noir);
      padding: 0.3rem 0.85rem;
      font-family: var(--f-mono);
      font-size: 0.58rem;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      margin-bottom: 1rem;
    }
    .exp-card h3 {
      font-family: var(--f-titre);
      font-size: 1.5rem;
      font-weight: 400;
      margin-bottom: 0.75rem;
      letter-spacing: -0.01em;
    }
    .exp-card.flagship h3 { font-size: 2rem; }
    .exp-card p {
      font-size: 0.88rem;
      color: var(--cendre);
      line-height: 1.75;
      margin-bottom: 1.25rem;
    }
    .exp-flagship-grid {
      display: grid;
      grid-template-columns: 1fr 2fr;
      gap: 3rem;
      align-items: start;
    }
    .exp-services-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 2px;
      background: var(--brume);
    }
    .exp-service {
      background: var(--charbon);
      padding: 0.85rem 1.1rem;
      font-size: 0.82rem;
      color: var(--mid);
      display: flex;
      align-items: center;
      gap: 0.5rem;
      transition: color .2s;
    }
    .exp-service:hover { color: var(--or); }
    .exp-service::before { content: '→'; color: var(--or); font-size: 0.7rem; }
    .exp-list {
      list-style: none;
    }
    .exp-list li {
      font-size: 0.85rem;
      color: var(--cendre);
      padding: 0.35rem 0;
      display: flex;
      align-items: center;
      gap: 0.5rem;
      border-bottom: 1px solid var(--filet);
    }
    .exp-list li::before { content: '–'; color: var(--or); }

    /* Formules */
    .formules-wrap {
      display: grid;
      grid-template-columns: repeat(4,1fr);
      gap: 2px;
      background: var(--brume);
    }
    .formule {
      background: var(--charbon);
      padding: 2.5rem 2rem;
      text-align: center;
      transition: background .3s;
      position: relative;
    }
    .formule:hover { background: var(--encre); }
    .formule-icon { font-size: 2rem; margin-bottom: 1.25rem; display: block; }
    .formule h4 {
      font-family: var(--f-titre);
      font-size: 1.2rem;
      font-weight: 400;
      margin-bottom: 0.5rem;
    }
    .formule p {
      font-size: 0.8rem;
      color: var(--mid);
      line-height: 1.6;
      margin-bottom: 1rem;
    }
    .formule-tag {
      display: inline-block;
      font-family: var(--f-mono);
      font-size: 0.58rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      padding: 0.25rem 0.65rem;
      border: 1px solid var(--filet);
      color: var(--mid);
    }

    /* ══════════════════════════════════════════
       PAGE À PROPOS
       ══════════════════════════════════════════ */
    .about-split {
      display: grid;
      grid-template-columns: 1fr 1fr;
      min-height: 80vh;
      gap: 2px;
      background: var(--brume);
    }
    .about-img-side {
      position: relative;
      overflow: hidden;
    }
    .about-img-side img {
      width: 100%; height: 100%;
      object-fit: cover;
      filter: brightness(0.5) saturate(0.6);
      transition: transform 8s ease;
    }
    .about-img-side:hover img { transform: scale(1.03); }
    .about-img-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to right, transparent 60%, var(--brume) 100%);
    }
    .about-text-side {
      background: var(--charbon);
      padding: 5rem 4rem;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }
    .about-text-side p {
      font-size: 0.95rem;
      color: var(--cendre);
      line-height: 1.85;
      margin-bottom: 1.25rem;
    }
    .about-text-side p:first-of-type {
      font-family: var(--f-titre);
      font-size: 1.25rem;
      font-style: italic;
      color: var(--parchemin);
      line-height: 1.65;
    }

    .values-grid {
      display: grid;
      grid-template-columns: repeat(5,1fr);
      gap: 2px;
      background: var(--brume);
    }
    .value-card {
      background: var(--charbon);
      padding: 2.5rem 2rem;
      transition: background .3s;
    }
    .value-card:hover { background: var(--encre); }
    .value-num {
      font-family: var(--f-titre);
      font-size: 2.5rem;
      font-weight: 300;
      color: var(--or);
      line-height: 1;
      margin-bottom: 1rem;
      display: block;
    }
    .value-card strong {
      font-family: var(--f-titre);
      font-size: 1.05rem;
      display: block;
      margin-bottom: 0.5rem;
    }
    .value-card span {
      font-size: 0.82rem;
      color: var(--mid);
      line-height: 1.6;
    }

    .stats-row {
      display: grid;
      grid-template-columns: repeat(4,1fr);
      gap: 2px;
      background: var(--brume);
    }
    .stat-box {
      background: var(--charbon);
      padding: 3rem 2rem;
      text-align: center;
    }
    .stat-box .n {
      font-family: var(--f-titre);
      font-size: 3.5rem;
      font-weight: 300;
      color: var(--or);
      line-height: 1;
      display: block;
    }
    .stat-box .l {
      font-family: var(--f-mono);
      font-size: 0.6rem;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--mid);
      display: block;
      margin-top: 0.5rem;
    }

    /* ══════════════════════════════════════════
       PAGE CONTACT
       ══════════════════════════════════════════ */
    .contact-split {
      display: grid;
      grid-template-columns: 1fr 1fr;
      min-height: calc(100vh - 64px);
      gap: 2px;
      background: var(--brume);
    }
    .contact-left {
      background: var(--charbon);
      padding: 5rem 4rem;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }
    .contact-right {
      background: var(--encre);
      padding: 5rem 4rem;
      position: relative;
      overflow: hidden;
    }
    .contact-right::before {
      content: '';
      position: absolute;
      top: 0; left: 0;
      width: 2px; height: 100%;
      background: linear-gradient(var(--or), transparent);
    }
    .contact-detail {
      display: flex;
      gap: 1rem;
      align-items: flex-start;
      padding: 1.25rem 0;
      border-bottom: 1px solid var(--filet);
    }
    .contact-icon {
      color: var(--or);
      font-size: 1rem;
      min-width: 1.5rem;
      margin-top: 0.1rem;
    }
    .contact-detail strong {
      font-family: var(--f-mono);
      font-size: 0.6rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--mid);
      display: block;
      margin-bottom: 0.2rem;
    }
    .contact-detail span {
      font-size: 0.9rem;
      color: var(--cendre);
    }
    .social-row {
      display: flex;
      gap: 0.6rem;
      margin-top: 2rem;
    }
    .social-btn {
      font-family: var(--f-mono);
      font-size: 0.6rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      padding: 0.5rem 0.9rem;
      border: 1px solid var(--filet);
      color: var(--mid);
      transition: all .25s;
    }
    .social-btn:hover { border-color: var(--or); color: var(--or); }

    /* Formulaire */
    .form-group {
      margin-bottom: 1.25rem;
    }
    .form-group label {
      display: block;
      font-family: var(--f-mono);
      font-size: 0.6rem;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--mid);
      margin-bottom: 0.45rem;
    }
    .form-group input,
    .form-group select,
    .form-group textarea {
      width: 100%;
      padding: 0.8rem 1.1rem;
      background: var(--charbon);
      border: 1px solid var(--brume);
      color: var(--blanc);
      font-family: var(--f-corps);
      font-size: 0.88rem;
      outline: none;
      transition: border-color .25s;
      -webkit-appearance: none;
    }
    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
      border-color: var(--or);
    }
    .form-group textarea { resize: vertical; min-height: 120px; }
    .form-group select { cursor: none; }
    .form-group select option { background: var(--charbon); }
    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1rem;
    }
    .form-check {
      display: flex;
      align-items: flex-start;
      gap: 0.75rem;
      margin-bottom: 1.5rem;
    }
    .form-check input[type="checkbox"] {
      width: 16px; height: 16px;
      flex-shrink: 0;
      margin-top: 0.15rem;
      accent-color: var(--or);
      cursor: none;
    }
    .form-check label {
      font-size: 0.78rem;
      color: var(--mid);
      line-height: 1.55;
      cursor: none;
    }
    #success-msg {
      display: none;
      padding: 1.5rem;
      border: 1px solid var(--or);
      background: rgba(201,168,76,0.06);
      margin-top: 1rem;
    }
    #success-msg p:first-child {
      font-family: var(--f-titre);
      font-size: 1.1rem;
      color: var(--or);
      margin-bottom: 0.35rem;
    }
    #success-msg p:last-child {
      font-size: 0.82rem;
      color: var(--mid);
    }

    /* ══════════════════════════════════════════
       FOOTER
       ══════════════════════════════════════════ */
    .footer {
      background: var(--noir);
      border-top: 1px solid var(--filet);
      padding: 5rem 0 2rem;
    }
    .footer-grid {
      display: grid;
      grid-template-columns: 2.5fr 1fr 1fr 1fr;
      gap: 4rem;
      padding-bottom: 4rem;
      border-bottom: 1px solid var(--filet);
    }
    .footer-brand-name {
      font-family: var(--f-titre);
      font-size: 1.6rem;
      font-weight: 300;
      margin-bottom: 0.75rem;
    }
    .footer-brand-name span { color: var(--or); }
    .footer-brand p {
      font-size: 0.83rem;
      color: var(--mid);
      line-height: 1.7;
      max-width: 26ch;
    }
    .footer-col h5 {
      font-family: var(--f-mono);
      font-size: 0.6rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.2);
      margin-bottom: 1.25rem;
    }
    .footer-col ul { list-style: none; }
    .footer-col li { margin-bottom: 0.45rem; }
    .footer-col a {
      font-size: 0.85rem;
      color: var(--mid);
      transition: color .2s;
    }
    .footer-col a:hover { color: var(--or); }
    .footer-bottom {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding-top: 2rem;
    }
    .footer-bottom p {
      font-family: var(--f-mono);
      font-size: 0.6rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.18);
    }
    .footer-bottom a { color: rgba(255,255,255,0.25); transition: color .2s; }
    .footer-bottom a:hover { color: var(--or); }

    /* ══════════════════════════════════════════
       ANIMATIONS UTILS
       ══════════════════════════════════════════ */
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(22px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    @keyframes fadeIn {
      from { opacity: 0; }
      to   { opacity: 1; }
    }

    .reveal {
      opacity: 0;
      transform: translateY(24px);
      transition: opacity .65s var(--ease), transform .65s var(--ease);
    }
    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }

    /* Image loading shimmer */
    .img-shimmer {
      position: relative;
      overflow: hidden;
      background: var(--encre);
    }
    .img-shimmer::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.04) 50%, transparent 100%);
      animation: shimmer 1.5s ease-in-out infinite;
    }
    .img-shimmer.loaded::after { display: none; }
    @keyframes shimmer {
      from { transform: translateX(-100%); }
      to   { transform: translateX(100%); }
    }

    /* ══════════════════════════════════════════
       MOBILE NAV
       ══════════════════════════════════════════ */
    @media (max-width: 960px) {
      .nav-toggle { display: flex; }
      .nav {
        position: fixed;
        top: 64px; left: 0; right: 0; bottom: 0;
        background: rgba(10,10,10,0.97);
        backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        padding: 2rem 0;
        gap: 0;
        transform: translateX(100%);
        transition: transform .4s var(--ease);
        z-index: 999;
      }
      .nav.open { transform: translateX(0); }
      .nav-link {
        height: auto;
        padding: 1.25rem 2rem;
        border-left: none;
        border-bottom: 1px solid var(--filet);
        font-size: 0.75rem;
      }
      .nav-link::after { display: none; }
      .nav-link.nav-cta { margin: 1rem 2rem 0; height: auto; justify-content: center; }
    }

    @media (max-width: 900px) {
      .container { padding: 0 1.5rem; }
      .header { padding: 0 1.5rem; }
      .portail-wrap, .grid-2, .grid-3, .grid-4,
      .formats-wrap, .expertise-wrap, .formules-wrap,
      .une-grid, .contact-split, .about-split,
      .values-grid, .stats-row {
        grid-template-columns: 1fr;
      }
      .exp-card.flagship .exp-flagship-grid { grid-template-columns: 1fr; gap: 1.5rem; }
      .exp-services-grid { grid-template-columns: 1fr; }
      .podcast-feature { grid-template-columns: 1fr; }
      .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
      .hero-stats { position: static; display: grid; grid-template-columns: repeat(3,1fr); }
      .hero-content { padding: 0 1.5rem 3rem; }
      .hero-scroll { display: none; }
      .about-text-side, .contact-left, .contact-right { padding: 3rem 2rem; }
      .portail { padding: 2.5rem 2rem; }
      .exp-card { padding: 2rem 1.5rem; }
      .media-ghost-text { display: none; }
    }

    @media (max-width: 560px) {
      .footer-grid { grid-template-columns: 1fr; }
      .form-row { grid-template-columns: 1fr; }
      .formules-wrap { grid-template-columns: 1fr 1fr; }
      .hero-stats { grid-template-columns: 1fr; }
      .hero-title { font-size: clamp(2.8rem, 10vw, 5rem); }
    }