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

    :root {
      --cream: #F5EDD8;
      --sand: #D4B896;
      --brown: #4A2E1A;
      --orange: #E06B2C;
      --orange-light: #F08C4E;
      --dark: #1C1008;
      --gold: #C9A84C;
      --text: #2A1A0A;
      --muted: rgba(42, 26, 10, 0.55);
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      background: var(--cream);
      color: var(--text);
      font-family: 'Inter', sans-serif;
      overflow-x: hidden;
    }

    /* NOISE */
    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='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
      background-size: 200px 200px;
      opacity: 0.018;
      pointer-events: none;
      z-index: 9997;
    }

    /* CURSOR */
    .cursor {
      width: 10px;
      height: 10px;
      background: var(--orange);
      border-radius: 50%;
      position: fixed;
      top: 0;
      left: 0;
      pointer-events: none;
      z-index: 9999;
      transform: translate(-50%, -50%);
      mix-blend-mode: multiply;
    }

    .cursor-ring {
      width: 32px;
      height: 32px;
      border: 1.5px solid rgba(224, 107, 44, 0.5);
      border-radius: 50%;
      position: fixed;
      top: 0;
      left: 0;
      pointer-events: none;
      z-index: 9998;
      transform: translate(-50%, -50%);
    }

    /* SCROLL PROGRESS */
    .scroll-line {
      position: fixed;
      top: 0;
      left: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--orange), var(--gold));
      z-index: 1000;
      transform-origin: left;
      transform: scaleX(0);
    }

    /* 3D CUBE */
    #cube-wrap {
      position: fixed;
      top: 0;
      left: 0;
      pointer-events: none;
      z-index: 0;
      will-change: transform;
    }

    .cube {
      width: 60px;
      height: 60px;
      position: relative;
      transform-style: preserve-3d;
      animation: spinCube 9s linear infinite;
    }

    .cube-face {
      position: absolute;
      width: 60px;
      height: 60px;
      border: 1.5px solid rgba(255, 255, 255, 0.18);
    }

    .face-front {
      transform: translateZ(30px);
      background: #E8773A;
    }

    .face-back {
      transform: rotateY(180deg) translateZ(30px);
      background: #C05020;
    }

    .face-left {
      transform: rotateY(-90deg) translateZ(30px);
      background: #D46030;
    }

    .face-right {
      transform: rotateY(90deg) translateZ(30px);
      background: #E8773A;
    }

    .face-top {
      transform: rotateX(90deg) translateZ(30px);
      background: #F0904A;
    }

    .face-bottom {
      transform: rotateX(-90deg) translateZ(30px);
      background: #B84818;
    }

    @keyframes spinCube {
      0% {
        transform: rotateX(22deg) rotateY(0deg) rotateZ(8deg);
      }

      100% {
        transform: rotateX(22deg) rotateY(360deg) rotateZ(8deg);
      }
    }

    /* NAV */
    nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 200;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 22px 6vw;
      transition: background 0.4s, backdrop-filter 0.4s;
    }

    nav.scrolled {
      background: rgba(245, 237, 216, 0.9);
      backdrop-filter: blur(16px);
      border-bottom: 1px solid rgba(42, 26, 10, 0.08);
    }

    .nav-logo {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.5rem;
      font-weight: 600;
      color: var(--brown);
      letter-spacing: 0.04em;
      text-decoration: none;
    }

    .nav-links {
      display: flex;
      gap: 32px;
      list-style: none;
    }

    .nav-toggle {
      display: none;
      width: 42px;
      height: 42px;
      align-items: center;
      justify-content: center;
      border: 1px solid rgba(42, 26, 10, 0.12);
      border-radius: 14px;
      background: rgba(245, 237, 216, 0.78);
      color: var(--text);
      cursor: pointer;
      backdrop-filter: blur(14px);
      box-shadow: 0 12px 28px rgba(74, 46, 26, 0.12);
    }

    .nav-toggle svg {
      width: 22px;
      height: 22px;
    }

    .nav-links a {
      font-size: 0.74rem;
      font-weight: 500;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--muted);
      text-decoration: none;
      transition: color 0.3s;
    }

    .nav-links a:hover {
      color: var(--orange);
    }

    /* HERO */
    #hero {
      min-height: 100vh;
      display: flex;
      align-items: center;
      padding: 120px 6vw 80px;
      position: relative;
      overflow: hidden;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
      max-width: 1200px;
      margin: 0 auto;
      width: 100%;
    }

    .hero-eyebrow {
      font-size: 0.7rem;
      font-weight: 600;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--orange);
      margin-bottom: 20px;
      display: inline-block;
      opacity: 0;
      transform: translateY(20px);
    }

    .hero-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(3rem, 7vw, 6.5rem);
      font-weight: 300;
      line-height: 1.0;
      color: var(--dark);
      opacity: 0;
      transform: translateY(40px);
    }

    .hero-title em {
      font-style: italic;
      color: var(--orange);
    }

    .hero-divider {
      width: 48px;
      height: 2px;
      background: var(--orange);
      margin: 32px 0;
      transform: scaleX(0);
      transform-origin: left;
    }

    .hero-body {
      font-size: 1rem;
      font-weight: 300;
      line-height: 1.85;
      color: var(--muted);
      max-width: 440px;
      opacity: 0;
      transform: translateY(20px);
    }

    .hero-body strong {
      color: var(--brown);
      font-weight: 600;
    }

    .hero-img {
      border-radius: 24px;
      overflow: hidden;
      aspect-ratio: 4/3;
      opacity: 0;
      transform: scale(0.94) translateY(30px);
      box-shadow: 0 32px 80px rgba(42, 26, 10, 0.18);
    }

    .hero-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.6s ease;
    }

    .hero-img:hover img {
      transform: scale(1.04);
    }

    /* Blobs déco */
    .blob {
      position: absolute;
      border-radius: 50%;
      filter: blur(90px);
      pointer-events: none;
      opacity: 0.2;
    }

    .blob-1 {
      width: 480px;
      height: 480px;
      background: var(--orange);
      top: -120px;
      right: -80px;
    }

    .blob-2 {
      width: 280px;
      height: 280px;
      background: var(--sand);
      bottom: 0;
      left: -60px;
    }

    /* SECTION HELPERS */
    .section-label {
      font-size: 0.68rem;
      font-weight: 600;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--orange);
      margin-bottom: 16px;
      display: block;
    }

    .section-h2 {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(2.2rem, 4vw, 3.6rem);
      font-weight: 300;
      line-height: 1.15;
      color: var(--dark);
    }

    .section-h2 em {
      font-style: italic;
      color: var(--orange);
    }

    /* DERNIERS ARTICLES */
    #derniers {
      padding: 100px 6vw;
      background: var(--cream);
    }

    .section-head {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      margin-bottom: 56px;
    }

    .view-all {
      font-size: 0.74rem;
      font-weight: 500;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--muted);
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      transition: color 0.3s;
    }

    .view-all::after {
      content: '→';
      transition: transform 0.3s;
    }

    .view-all:hover {
      color: var(--orange);
    }

    .view-all:hover::after {
      transform: translateX(4px);
    }

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

    .article-card {
      display: block;
      background: white;
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 4px 24px rgba(42, 26, 10, 0.06);
      opacity: 0;
      transform: translateY(40px);
      transition: transform 0.4s ease, box-shadow 0.4s ease;
      cursor: pointer;
      color: inherit;
      text-decoration: none;
    }

    .article-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 16px 48px rgba(42, 26, 10, 0.12);
    }

    .card-img {
      width: 100%;
      aspect-ratio: 4/3;
      overflow: hidden;
      position: relative;
    }

    .card-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.5s ease;
    }

    .article-card:hover .card-img img {
      transform: scale(1.06);
    }

    .card-tag {
      position: absolute;
      top: 14px;
      left: 14px;
      font-size: 0.6rem;
      font-weight: 600;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: white;
      background: var(--orange);
      padding: 5px 10px;
      border-radius: 100px;
    }

    .card-body {
      padding: 24px;
    }

    .card-date {
      font-size: 0.7rem;
      color: var(--muted);
      letter-spacing: 0.06em;
      margin-bottom: 10px;
    }

    .card-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.45rem;
      font-weight: 400;
      line-height: 1.25;
      color: var(--dark);
      margin-bottom: 12px;
    }

    .card-excerpt {
      font-size: 0.82rem;
      font-weight: 300;
      line-height: 1.75;
      color: var(--muted);
    }

    /* VOIR PLUS */
    #voir-plus {
      background: var(--dark);
      padding: 100px 6vw;
      position: relative;
      overflow: hidden;
    }

    #voir-plus .section-label {
      color: var(--orange);
    }

    #voir-plus .section-h2 {
      color: var(--cream);
    }

    .blob-dark {
      position: absolute;
      border-radius: 50%;
      filter: blur(100px);
      pointer-events: none;
      opacity: 0.12;
    }

    .blob-dark-1 {
      width: 400px;
      height: 400px;
      background: var(--orange);
      top: -100px;
      right: -60px;
    }

    .blob-dark-2 {
      width: 300px;
      height: 300px;
      background: #603010;
      bottom: -60px;
      left: 0;
    }

    .mini-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      margin-top: 48px;
    }

    .mini-card {
      border-radius: 16px;
      overflow: hidden;
      aspect-ratio: 1;
      position: relative;
      opacity: 0;
      transform: scale(0.9);
      cursor: pointer;
    }

    .mini-card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      filter: brightness(0.72) saturate(1.1);
      transition: filter 0.4s, transform 0.4s;
    }

    .mini-card:hover img {
      filter: brightness(0.92) saturate(1.3);
      transform: scale(1.04);
    }

    .mini-card-info {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      padding: 16px;
      background: linear-gradient(to top, rgba(15, 6, 0, 0.9), transparent);
      opacity: 0;
      transform: translateY(8px);
      transition: opacity 0.3s, transform 0.3s;
    }

    .mini-card:hover .mini-card-info {
      opacity: 1;
      transform: translateY(0);
    }

    .mini-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1rem;
      color: white;
      line-height: 1.3;
    }

    /* COLLAB */
    #collab {
      padding: 100px 6vw;
      background: var(--sand);
      position: relative;
      overflow: hidden;
    }

    .collab-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
      max-width: 1100px;
      margin: 0 auto;
    }

    .collab-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(2.4rem, 5vw, 4rem);
      font-weight: 300;
      line-height: 1.1;
      color: var(--dark);
      margin-bottom: 24px;
    }

    .collab-title em {
      font-style: italic;
      color: var(--brown);
    }

    .collab-desc {
      font-size: 0.95rem;
      font-weight: 300;
      line-height: 1.85;
      color: rgba(42, 26, 10, 0.7);
      margin-bottom: 36px;
    }

    .btn-orange {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 14px 30px;
      background: var(--orange);
      color: white;
      font-size: 0.78rem;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      text-decoration: none;
      border-radius: 100px;
      transition: background 0.3s, transform 0.2s;
    }

    .btn-orange:hover {
      background: var(--brown);
      transform: translateY(-2px);
    }

    .collab-img-stack {
      position: relative;
      height: 420px;
    }

    .collab-img {
      position: absolute;
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 20px 60px rgba(42, 26, 10, 0.2);
    }

    .collab-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .collab-img-main {
      width: 75%;
      height: 80%;
      bottom: 0;
      right: 0;
      opacity: 0;
      transform: translateY(30px);
    }

    .collab-img-thumb {
      width: 45%;
      height: 50%;
      top: 0;
      left: 0;
      z-index: 2;
      opacity: 0;
      transform: translateY(-20px) rotate(-3deg);
    }

    /* FOOTER */
    footer {
      background: var(--dark);
      padding: 48px 6vw;
      display: flex;
      justify-content: space-between;
      align-items: center;
      border-top: 1px solid rgba(245, 237, 216, 0.06);
    }

    .footer-logo {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.3rem;
      font-weight: 600;
      color: var(--cream);
    }

    .footer-copy {
      font-size: 0.7rem;
      color: rgba(245, 237, 216, 0.35);
      letter-spacing: 0.06em;
    }

    /* RESPONSIVE */
    @media (max-width:900px) {
      #navbar {
        flex-wrap: wrap;
        gap: 12px;
      }

      .nav-toggle {
        display: inline-flex;
      }

      .nav-links {
        flex: 0 0 100%;
        display: grid;
        gap: 8px;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transform: translateY(-8px);
        pointer-events: none;
        transition: max-height 0.35s ease, opacity 0.25s ease, transform 0.25s ease;
      }

      .nav-links.is-open {
        max-height: 22rem;
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
      }

      .nav-links a {
        display: block;
        padding: 12px 14px;
        border: 1px solid rgba(42, 26, 10, 0.1);
        border-radius: 12px;
        background: rgba(245, 237, 216, 0.82);
      }

      .hero-grid,
      .collab-grid {
        grid-template-columns: 1fr;
        gap: 40px;
      }

      .articles-grid {
        grid-template-columns: 1fr;
      }

      .mini-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width:600px) {
      .mini-grid {
        grid-template-columns: 1fr;
      }

      footer {
        flex-direction: column;
        gap: 12px;
        text-align: center;
      }
    }
