    /* ============================================
   CATAMARAN MAGAZINE — Design System 2026
   Fusion : Editorial warmth × Dark immersion
   Typo : Fraunces (serif) + Space Grotesk (sans)
============================================ */
    :root {
      --bg: #070E1B;
      --bg2: #0B1929;
      --bg3: #0F2137;
      --paper: #F5F0E8;
      --paper2: #EDE8DA;
      --paper3: #E5DFD0;
      --ink: #0F1B2D;
      --ink2: #3A4658;
      --text: #E8EDF5;
      --text2: #7A90A8;
      --text3: #3D5573;
      --seafoam: #00C8A5;
      --sf-g: rgba(0, 200, 165, .12);
      --copper: #B85932;
      --copper-g: rgba(184, 89, 50, .14);
      --gold: #C9A24E;
      --gold-g: rgba(201, 162, 78, .1);
      --border: rgba(255, 255, 255, .07);
      --border2: rgba(255, 255, 255, .14);
      --glass: rgba(7, 14, 27, .84);
      --max: 1320px;
      --gutter: clamp(1.25rem, 4vw, 2.5rem);
      --serif: 'Fraunces', 'Times New Roman', serif;
      --sans: 'Space Grotesk', -apple-system, sans-serif;
      --ease: cubic-bezier(.22, 1, .36, 1);
    }

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

    html {
      scroll-behavior: smooth;
      -webkit-text-size-adjust: 100%;
      overflow-x: hidden;
    }

    body {
      font-family: var(--sans);
      background: var(--bg);
      color: var(--text);
      line-height: 1.55;
      -webkit-font-smoothing: antialiased;
      text-rendering: optimizeLegibility;
      overflow-x: hidden;
      cursor: none;
      max-width: 100%;
    }

    @media(pointer:coarse) {
      body {
        cursor: auto;
      }
    }

    ::selection {
      background: var(--seafoam);
      color: var(--bg);
    }

    a {
      text-decoration: none;
      color: inherit;
    }

    button {
      font: inherit;
      color: inherit;
      background: none;
      border: none;
      cursor: none;
    }

    img {
      max-width: 100%;
      display: block;
    }

    /* ===== GRAIN ===== */
    body::after {
      content: '';
      position: fixed;
      inset: 0;
      pointer-events: none;
      z-index: 9999;
      opacity: .022;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
      background-size: 200px;
    }

    /* ===== CURSEUR ===== */
    .cur-dot {
      position: fixed;
      top: 0;
      left: 0;
      width: 6px;
      height: 6px;
      background: var(--seafoam);
      border-radius: 50%;
      pointer-events: none;
      z-index: 10000;
      transform: translate(-50%, -50%);
      mix-blend-mode: difference;
    }

    .cur-ring {
      position: fixed;
      top: 0;
      left: 0;
      width: 38px;
      height: 38px;
      border: 1px solid rgba(0, 200, 165, .3);
      border-radius: 50%;
      pointer-events: none;
      z-index: 9999;
      transform: translate(-50%, -50%);
      transition: width .4s var(--ease), height .4s var(--ease), border-color .3s, background .3s;
    }

    .cur-ring.h {
      width: 60px;
      height: 60px;
      border-color: var(--seafoam);
      background: var(--sf-g);
    }

    @media(pointer:coarse) {

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

    /* ===== PROGRESS BAR ===== */
    .prog {
      position: fixed;
      top: 0;
      left: 0;
      height: 2px;
      width: 100%;
      background: linear-gradient(90deg, var(--seafoam), var(--copper));
      z-index: 10001;
      transform-origin: left;
      transform: scaleX(0);
    }

    /* ===== NAV ===== */
    .nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1000;
      padding: 1.5rem var(--gutter);
      display: flex;
      align-items: center;
      justify-content: space-between;
      transition: padding .5s var(--ease), background .5s var(--ease), border-color .5s;
      border-bottom: 1px solid transparent;
    }

    .nav.s {
      padding: .75rem var(--gutter);
      background: var(--glass);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border-bottom-color: rgba(255, 255, 255, .08);
    }

    .nav-inner {
      max-width: var(--max);
      width: 100%;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .nav-brand {
      display: flex;
      flex-direction: column;
      gap: 2px;
      text-decoration: none;
    }

    .nav-brand .b1 {
      font-family: var(--serif);
      font-weight: 600;
      font-size: .95rem;
      letter-spacing: .28em;
      color: var(--text);
      text-transform: uppercase;
      font-variation-settings: "opsz" 144;
    }

    .nav-brand .b2 {
      font-size: .42rem;
      letter-spacing: .35em;
      text-transform: uppercase;
      color: var(--seafoam);
      font-weight: 500;
    }

    .nav-links {
      display: none;
      gap: 2.5rem;
      list-style: none;
      align-items: center;
    }

    @media(min-width:900px) {
      .nav-links {
        display: flex;
      }
    }

    .nav-link {
      font-size: .72rem;
      font-weight: 500;
      letter-spacing: .08em;
      text-transform: uppercase;
      color: var(--text);
      position: relative;
      padding: .35rem 0;
      transition: color .3s;
    }

    .nav-link::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 0;
      height: 1px;
      background: var(--seafoam);
      transition: width .4s var(--ease);
    }

    .nav-link:hover {
      color: var(--text);
    }

    .nav-link:hover::after {
      width: 100%;
    }

    .nav-cta {
      font-size: .68rem;
      font-weight: 600;
      letter-spacing: .1em;
      text-transform: uppercase;
      padding: .55rem 1.4rem;
      border: 1px solid var(--border2);
      color: var(--text);
      border-radius: 3px;
      transition: all .35s;
      cursor: none;
    }

    .nav-cta:hover {
      border-color: var(--seafoam);
      color: var(--seafoam);
      box-shadow: 0 0 28px var(--sf-g);
    }

    .nav-toggle {
      display: flex;
      flex-direction: column;
      gap: 5px;
      padding: 5px;
      background: none;
      border: none;
      cursor: none;
    }

    .nav-toggle span {
      display: block;
      width: 22px;
      height: 1.5px;
      background: var(--text);
      transition: transform .35s var(--ease), opacity .35s;
    }

    .nav-toggle.on span:nth-child(1) {
      transform: translateY(6.5px) rotate(45deg);
    }

    .nav-toggle.on span:nth-child(2) {
      opacity: 0;
    }

    .nav-toggle.on span:nth-child(3) {
      transform: translateY(-6.5px) rotate(-45deg);
    }

    @media(min-width:900px) {
      .nav-toggle {
        display: none;
      }
    }

    /* Mobile menu */
    .mob {
      position: fixed;
      inset: 0;
      z-index: 990;
      background: var(--bg);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 2rem;
      opacity: 0;
      visibility: hidden;
      transition: all .4s var(--ease);
    }

    .mob.on {
      opacity: 1;
      visibility: visible;
    }

    .mob a {
      font-family: var(--serif);
      font-weight: 300;
      font-size: clamp(2rem, 8vw, 3rem);
      letter-spacing: -.02em;
      color: var(--text);
      transition: color .3s;
    }

    .mob a em {
      font-style: italic;
      color: var(--seafoam);
    }

    .mob a:hover {
      color: var(--seafoam);
    }

    /* ===== HERO ===== */
    .hero {
      position: relative;
      height: 100vh;
      min-height: 700px;
      display: flex;
      align-items: flex-end;
      justify-content: flex-start;
      padding: 0 var(--gutter) clamp(3rem, 6vh, 5rem);
      overflow: hidden;
    }

    .hero-bg {
      position: absolute;
      inset: -6%;
      z-index: 0;
      will-change: transform;
    }

    .hero-bg img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      filter: saturate(1.05);
      animation: kenBurns 22s ease-out forwards;
    }

    @keyframes kenBurns {
      from {
        transform: scale(1.08);
      }

      to {
        transform: scale(1);
      }
    }

    .hero-overlay {
      position: absolute;
      inset: 0;
      z-index: 1;
      background:
        radial-gradient(ellipse at 20% 40%, rgba(7, 14, 27, .2), transparent 55%),
        linear-gradient(180deg, rgba(7, 14, 27, .3) 0%, rgba(7, 14, 27, .1) 40%, rgba(7, 14, 27, .88) 100%);
    }

    .hero-content {
      position: relative;
      z-index: 2;
      max-width: var(--max);
      width: 100%;
    }

    .hero-kicker {
      display: inline-flex;
      align-items: center;
      gap: .9rem;
      font-size: .72rem;
      font-weight: 500;
      letter-spacing: .22em;
      text-transform: uppercase;
      color: rgba(232, 237, 245, .7);
      margin-bottom: 1.75rem;
      opacity: 0;
      animation: fadeUp .9s var(--ease) .5s forwards;
    }

    .hero-kicker::before {
      content: '';
      width: 34px;
      height: 1px;
      background: rgba(232, 237, 245, .5);
    }

    .hero h1 {
      font-family: var(--serif);
      font-weight: 200;
      font-variation-settings: "opsz" 144;
      font-size: clamp(3rem, 9.5vw, 8rem);
      line-height: .95;
      letter-spacing: -.035em;
      color: var(--text);
      margin-bottom: 2rem;
      max-width: 12ch;
      opacity: 0;
      animation: fadeUp 1.1s var(--ease) .7s forwards;
    }

    .hero h1 em {
      font-style: italic;
      font-weight: 300;
      color: #F0C896;
      display: inline-block;
    }

    .hero h1 strong {
      font-weight: 600;
      font-variation-settings: "opsz" 144, "wght" 600;
    }

    .hero-sub {
      font-family: var(--serif);
      font-weight: 300;
      font-style: italic;
      font-size: clamp(1rem, 1.5vw, 1.25rem);
      line-height: 1.6;
      color: rgba(232, 237, 245, .75);
      max-width: 52ch;
      margin-bottom: 2.5rem;
      opacity: 0;
      animation: fadeUp .9s var(--ease) .95s forwards;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 1rem;
      align-items: center;
      opacity: 0;
      animation: fadeUp .9s var(--ease) 1.1s forwards;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      gap: .6rem;
      font-size: .82rem;
      font-weight: 500;
      letter-spacing: .04em;
      padding: .95rem 1.65rem;
      border-radius: 3px;
      transition: all .4s var(--ease);
      cursor: none;
    }

    .btn .arr {
      display: inline-block;
      transition: transform .35s var(--ease);
    }

    .btn:hover .arr {
      transform: translateX(4px);
    }

    .btn-light {
      background: var(--paper);
      color: var(--ink);
    }

    .btn-light:hover {
      background: var(--seafoam);
      color: var(--bg);
      box-shadow: 0 14px 36px -12px rgba(0, 200, 165, .5);
    }

    .btn-ghost {
      color: var(--text);
      border: 1px solid rgba(232, 237, 245, .25);
    }

    .btn-ghost:hover {
      border-color: var(--text);
      background: rgba(232, 237, 245, .06);
    }

    /* Hero scroll indicator */
    .hero-scroll {
      position: absolute;
      bottom: 2.5rem;
      right: var(--gutter);
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: .6rem;
      z-index: 2;
      opacity: 0;
      animation: fadeUp .8s var(--ease) 1.6s forwards;
    }

    .hero-scroll span {
      font-size: .52rem;
      letter-spacing: .22em;
      text-transform: uppercase;
      color: var(--text3);
    }

    .hero-scroll::after {
      content: '';
      width: 1px;
      height: 60px;
      background: linear-gradient(to bottom, rgba(232, 237, 245, .6), transparent);
      animation: scrollPulse 2.6s ease-in-out infinite;
    }

    @keyframes scrollPulse {

      0%,
      100% {
        transform: scaleY(.35);
        transform-origin: top;
        opacity: .35;
      }

      50% {
        transform: scaleY(1);
        opacity: 1;
      }
    }

    @media(max-width:768px) {
      .hero-scroll {
        display: none;
      }

      .hero {
        height: 100svh;
        min-height: 100svh;
      }

      .hero-bg {
        inset: -6%;
      }

      .hero-bg img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center center;
      }

      /* ============================================================
         MOBILE — grilles statiques, aucun effet de scroll horizontal
         ============================================================ */

      /* Sections Bateaux & Technique : grille 2 colonnes simple */
      #bateaux,
      #technique {
        height: auto !important;
        overflow: visible;
      }

      #boatsPin,
      #techPin {
        display: block;
        position: static;
        height: auto;
        overflow: visible;
        padding: clamp(3.5rem, 8vw, 5.5rem) var(--gutter);
        background: var(--paper);
      }

      #boatsClip,
      #techClip {
        display: block;
        overflow: visible;
        width: 100%;
        margin-top: clamp(1.75rem, 4vw, 2.5rem);
      }

      .boats-track,
      .tech-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: clamp(0.75rem, 2.5vw, 1.25rem);
        width: 100%;
        padding: 0;
        transform: none !important;
        will-change: auto;
      }

      .boats-head,
      .tech-head {
        padding: 0;
      }

      .boats-foot,
      .tech-foot {
        margin: clamp(1.75rem, 4vw, 2.5rem) 0 0;
        padding: 0.75rem 0 0;
      }

      .boat-card,
      .tech-card {
        width: 100%;
        max-width: 100%;
        flex-shrink: 1;
      }

      /* Hauteur d'image légèrement réduite pour un meilleur rendu en 2 col */
      .boat-img,
      .tech-img {
        height: clamp(140px, 32vw, 180px);
      }

      /* Section Catamaran : statique sur mobile (plus de sticky/pin) */
      .cat-section {
        height: auto;
      }

      .cat-pin {
        position: static;
        height: auto;
        padding: clamp(3.5rem, 8vw, 5rem) var(--gutter);
      }

      /* Spec tags masqués sur mobile : trop petits et chevauchement */
      .cat-specs {
        display: none;
      }

      /* Article feat : colonne unique sur mobile */
      .card.feat {
        grid-template-columns: 1fr;
      }

      /* Carte thumb sans marge en bas dans le feat */
      .card.feat .card-thumb {
        margin-bottom: 1.35rem;
      }
    }

    @media(max-width:500px) {
      .nl-form {
        flex-direction: column;
      }

      .nl-in {
        border-right: 1px solid var(--border2);
        border-bottom: none;
        border-radius: 3px 3px 0 0;
      }

      .nl-btn {
        border-radius: 0 0 3px 3px;
        padding: 1rem;
      }
    }

    @media(pointer:coarse) {
      .btn,
      .nav-cta,
      .nav-toggle,
      .see-all,
      .card,
      .tool-card,
      .boat-card,
      .dest-card,
      .tech-card,
      .interview-card {
        cursor: pointer;
      }

      button {
        cursor: pointer;
      }
    }

    @keyframes fadeUp {
      from {
        opacity: 0;
        transform: translateY(28px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    /* ===== MARQUEE ===== */
    .marquee-wrap {
      padding: 1.1rem 0;
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
      overflow: hidden;
      white-space: nowrap;
      background: var(--bg);
    }

    .marquee-track {
      display: inline-block;
      animation: mq 42s linear infinite;
      font-family: var(--sans);
      font-size: .78rem;
      font-weight: 500;
      letter-spacing: .2em;
      color: var(--text3);
      text-transform: uppercase;
    }

    .marquee-track b {
      font-weight: 700;
      color: var(--text2);
      margin: 0 1.4rem;
    }

    @keyframes mq {
      from {
        transform: translateX(0);
      }

      to {
        transform: translateX(-50%);
      }
    }

    /* ===== CATAMARAN SHOWCASE (Apple-scroll) ===== */
    .cat-section {
      position: relative;
      height: 280vh;
      /* longue pour le scroll-pin */
      background: var(--bg);
    }

    .cat-pin {
      position: sticky;
      top: 0;
      height: 100vh;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      overflow: hidden;
    }

    /* Halo sous-marin */
    .cat-halo {
      position: absolute;
      width: 900px;
      height: 900px;
      max-width: 100%;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(0, 200, 165, .06) 0%, rgba(11, 25, 41, .4) 50%, transparent 70%);
      pointer-events: none;
    }

    .cat-label-top {
      font-size: .68rem;
      font-weight: 600;
      letter-spacing: .28em;
      text-transform: uppercase;
      color: var(--text3);
      margin-bottom: 2rem;
      opacity: 0;
      transition: opacity .8s var(--ease);
    }

    .cat-label-top.in {
      opacity: 1;
    }

    /* Wrapper SVG du catamaran */
    .cat-svg-wrap {
      position: relative;
      width: 100%;
      max-width: 900px;
      transform: translateX(120px) rotate(3deg);
      transition: none;
      /* géré par JS */
      will-change: transform;
    }

    .cat-svg-wrap svg {
      width: 100%;
      height: auto;
      display: block;
    }

    /* Animation de tangage en idle */
    .cat-body {
      animation: catRock 9s ease-in-out infinite;
      transform-origin: 450px 285px;
    }

    @keyframes catRock {

      0%,
      100% {
        transform: rotate(0deg) translateY(0);
      }

      20% {
        transform: rotate(-1.4deg) translateY(-5px);
      }

      50% {
        transform: rotate(.6deg) translateY(2px);
      }

      75% {
        transform: rotate(-1deg) translateY(-3px);
      }
    }

    /* Vagues animées */
    .wave-1 {
      animation: waveAnim1 7s ease-in-out infinite;
    }

    .wave-2 {
      animation: waveAnim2 11s ease-in-out infinite reverse;
    }

    .wave-3 {
      animation: waveAnim3 15s ease-in-out infinite;
    }

    @keyframes waveAnim1 {

      0%,
      100% {
        transform: translateX(0);
      }

      50% {
        transform: translateX(-28px);
      }
    }

    @keyframes waveAnim2 {

      0%,
      100% {
        transform: translateX(0);
      }

      50% {
        transform: translateX(20px);
      }
    }

    @keyframes waveAnim3 {

      0%,
      100% {
        transform: translateX(0);
      }

      50% {
        transform: translateX(-15px);
      }
    }

    /* Voile qui se "gonfle" au vent */
    #genoa {
      animation: genoaBow 9s ease-in-out infinite;
      transform-origin: 440px 160px;
    }

    @keyframes genoaBow {

      0%,
      100% {
        opacity: .55;
      }

      40% {
        opacity: .85;
      }
    }

    /* Specs autour du bateau */
    .cat-specs {
      position: absolute;
      inset: 0;
      pointer-events: none;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .spec-tag {
      position: absolute;
      opacity: 0;
      transform: translateY(14px);
      transition: opacity .6s var(--ease), transform .6s var(--ease);
    }

    .spec-tag.show {
      opacity: 1;
      transform: translateY(0);
    }

    .spec-tag .spec-line {
      display: block;
      background: rgba(0, 200, 165, .5);
      transform-origin: left;
      height: 1px;
    }

    .spec-tag .spec-val {
      font-family: var(--serif);
      font-weight: 300;
      font-style: italic;
      font-size: clamp(1.6rem, 3vw, 2.4rem);
      letter-spacing: -.025em;
      color: var(--text);
      line-height: 1;
    }

    .spec-tag .spec-key {
      font-size: .65rem;
      font-weight: 500;
      letter-spacing: .2em;
      text-transform: uppercase;
      color: var(--text3);
      margin-top: .35rem;
      display: block;
    }

    /* Positions des specs */
    .spec-1 {
      left: clamp(.5rem, 4%, 4rem);
      top: 30%;
      text-align: left;
    }

    .spec-2 {
      right: clamp(.5rem, 4%, 4rem);
      top: 22%;
      text-align: right;
    }

    .spec-3 {
      left: clamp(.5rem, 4%, 4rem);
      bottom: 30%;
      text-align: left;
    }

    .spec-4 {
      right: clamp(.5rem, 4%, 4rem);
      bottom: 28%;
      text-align: right;
    }

    /* Étiquette description en bas */
    .cat-desc {
      position: absolute;
      bottom: 4rem;
      left: 50%;
      transform: translateX(-50%);
      text-align: center;
      width: 100%;
      padding: 0 var(--gutter);
    }

    .cat-desc p {
      font-family: var(--serif);
      font-weight: 300;
      font-style: italic;
      font-size: clamp(1.1rem, 2vw, 1.55rem);
      color: rgba(232, 237, 245, .5);
      max-width: 52ch;
      margin: 0 auto;
      opacity: 0;
      transition: opacity .8s var(--ease);
    }

    .cat-desc p.in {
      opacity: 1;
    }

    /* ===== SECTION WRAPPER (light) ===== */
    .light {
      background: var(--paper);
      color: var(--ink);
    }

    .light2 {
      background: var(--paper2);
      color: var(--ink);
    }

    .light3 {
      background: var(--paper3);
      color: var(--ink);
    }

    section {
      padding: clamp(4rem, 9vw, 6.5rem) var(--gutter);
    }

    .inner {
      max-width: var(--max);
      margin: 0 auto;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: .75rem;
      font-size: .68rem;
      font-weight: 600;
      letter-spacing: .25em;
      text-transform: uppercase;
      color: var(--copper);
      margin-bottom: 1.5rem;
    }

    .eyebrow::before {
      content: '';
      width: 24px;
      height: 1px;
      background: var(--copper);
    }

    .eyebrow-light {
      color: var(--seafoam);
    }

    .eyebrow-light::before {
      background: var(--seafoam);
    }

    .sec-title {
      font-family: var(--serif);
      font-weight: 300;
      font-variation-settings: "opsz" 144;
      font-size: clamp(2.2rem, 5.5vw, 4rem);
      line-height: 1.02;
      letter-spacing: -.03em;
      max-width: 20ch;
    }

    .sec-title em {
      font-style: italic;
      font-weight: 300;
      color: var(--copper);
    }

    .sec-title-light em {
      color: var(--seafoam);
    }

    /* ===== MANIFESTE ===== */
    .manifest-grid {
      display: grid;
      gap: clamp(2.5rem, 5vw, 4.5rem);
    }

    @media(min-width:880px) {
      .manifest-grid {
        grid-template-columns: 1fr 1.2fr;
        align-items: end;
      }
    }

    .manifest-lead {
      font-family: var(--serif);
      font-weight: 300;
      font-variation-settings: "opsz" 144;
      font-size: clamp(1.5rem, 3vw, 2.1rem);
      line-height: 1.3;
      letter-spacing: -.02em;
      color: var(--ink);
    }

    .manifest-lead em {
      font-style: italic;
      color: var(--copper);
    }

    .manifest-body {
      font-size: 1.05rem;
      line-height: 1.72;
      color: var(--ink2);
      max-width: 52ch;
    }

    .manifest-body p+p {
      margin-top: 1.1rem;
    }

    .stats-row {
      margin-top: clamp(3rem, 6vw, 4.5rem);
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
      border-top: 1px solid #9E9282;
      border-bottom: 1px solid #9E9282;
    }

    .stat {
      padding: 2rem 1.25rem;
      text-align: center;
      border-right: 1px solid #9E9282;
    }

    .stat:last-child {
      border-right: none;
    }

    @media(max-width:640px) {
      .stat {
        border-right: none;
        border-bottom: 1px solid #9E9282;
        padding: 1.5rem 0;
      }

      .stat:last-child {
        border-bottom: none;
      }
    }

    .stat-n {
      font-family: var(--serif);
      font-weight: 400;
      font-variation-settings: "opsz" 144;
      font-size: clamp(2.6rem, 5vw, 3.8rem);
      line-height: 1;
      letter-spacing: -.04em;
      color: var(--ink);
      display: block;
      margin-bottom: .5rem;
    }

    .stat-n em {
      font-style: italic;
      color: var(--copper);
    }

    .stat-l {
      font-size: .82rem;
      color: #7A8294;
      line-height: 1.5;
      max-width: 26ch;
      margin: 0 auto;
    }

    /* ===== ARTICLES ===== */
    .blog-head {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
      margin-bottom: clamp(3rem, 6vw, 4.5rem);
    }

    @media(min-width:880px) {
      .blog-head {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-end;
      }
    }

    .blog-meta {
      font-size: .92rem;
      color: var(--ink2);
      max-width: 42ch;
      line-height: 1.6;
    }

    .blog-grid {
      display: grid;
      gap: clamp(2rem, 4vw, 2.75rem);
      grid-template-columns: 1fr;
    }

    @media(min-width:720px) {
      .blog-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media(min-width:1100px) {
      .blog-grid {
        grid-template-columns: repeat(3, 1fr);
      }
    }

    .card {
      display: flex;
      flex-direction: column;
      cursor: none;
    }

    .card.feat {
      grid-column: 1/-1;
      display: grid;
      gap: clamp(1.5rem, 3vw, 3rem);
    }

    @media(min-width:880px) {
      .card.feat {
        grid-template-columns: 1.1fr 1fr;
        align-items: center;
      }
    }

    .card-thumb {
      position: relative;
      overflow: hidden;
      background: var(--paper3);
      border-radius: 2px;
      margin-bottom: 1.35rem;
      aspect-ratio: 4/3;
    }

    .card.feat .card-thumb {
      margin-bottom: 0;
    }

    .card-thumb img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 1.1s var(--ease);
    }

    .card:hover .card-thumb img {
      transform: scale(1.05);
    }

    .card-badge {
      position: absolute;
      top: .85rem;
      left: .85rem;
      background: var(--ink);
      color: var(--paper);
      font-size: .62rem;
      font-weight: 600;
      letter-spacing: .14em;
      text-transform: uppercase;
      padding: .38rem .7rem;
      border-radius: 2px;
    }

    .card-cat {
      font-size: .68rem;
      font-weight: 600;
      letter-spacing: .18em;
      text-transform: uppercase;
      color: var(--copper);
      margin-bottom: .75rem;
      display: block;
    }

    .card-title {
      font-family: var(--serif);
      font-weight: 400;
      font-variation-settings: "opsz" 36;
      font-size: clamp(1.2rem, 2vw, 1.5rem);
      line-height: 1.18;
      letter-spacing: -.015em;
      color: var(--ink);
      margin-bottom: .8rem;
      transition: color .3s;
    }

    .card.feat .card-title {
      font-size: clamp(1.8rem, 4vw, 2.6rem);
      font-variation-settings: "opsz" 96;
      line-height: 1.06;
      margin-bottom: 1.2rem;
    }

    .card:hover .card-title {
      color: var(--copper);
    }

    .card-excerpt {
      font-size: .95rem;
      line-height: 1.62;
      color: var(--ink2);
      margin-bottom: 1rem;
    }

    .card.feat .card-excerpt {
      font-size: 1.05rem;
      max-width: 50ch;
    }

    .card-link {
      font-size: .8rem;
      font-weight: 500;
      letter-spacing: .04em;
      color: var(--ink);
      display: inline-flex;
      align-items: center;
      gap: .5rem;
      border-bottom: 1px solid var(--ink);
      padding-bottom: 2px;
      align-self: flex-start;
      transition: color .3s, border-color .3s;
    }

    .card:hover .card-link {
      color: var(--copper);
      border-color: var(--copper);
    }

    /* ===== OUTILS ===== */
    .tools-grid {
      margin-top: clamp(3rem, 6vw, 4.5rem);
      display: grid;
      gap: 1.25rem;
      grid-template-columns: 1fr;
    }

    @media(min-width:760px) {
      .tools-grid {
        grid-template-columns: 1fr 1fr;
      }
    }

    .tool-card {
      position: relative;
      padding: clamp(2rem, 4vw, 2.75rem);
      border: 1px solid #DDD7C8;
      border-radius: 2px;
      background: var(--paper);
      display: flex;
      flex-direction: column;
      gap: 1rem;
      min-height: 340px;
      transition: border-color .4s, transform .5s var(--ease), box-shadow .5s var(--ease);
      overflow: hidden;
    }

    .tool-card::before {
      content: '';
      position: absolute;
      left: 0;
      top: 0;
      bottom: 0;
      width: 3px;
      background: var(--copper);
      transform: scaleY(0);
      transform-origin: top;
      transition: transform .5s var(--ease);
    }

    .tool-card:hover {
      border-color: var(--ink);
      transform: translateY(-4px);
      box-shadow: 0 22px 50px -28px rgba(15, 27, 45, .22);
    }

    .tool-card:hover::before {
      transform: scaleY(1);
    }

    .tool-num {
      font-family: var(--serif);
      font-style: italic;
      font-weight: 300;
      font-size: .95rem;
      color: var(--copper);
    }

    .tool-status {
      display: inline-flex;
      align-items: center;
      gap: .45rem;
      font-size: .62rem;
      font-weight: 600;
      letter-spacing: .2em;
      text-transform: uppercase;
      padding: .3rem .65rem;
      border: 1px solid #DDD7C8;
      border-radius: 100px;
      color: #7A8294;
      background: var(--paper2);
      align-self: flex-start;
    }

    .tool-status .dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--gold);
    }

    .tool-card h3 {
      font-family: var(--serif);
      font-weight: 400;
      font-variation-settings: "opsz" 96;
      font-size: clamp(1.55rem, 3.2vw, 2.1rem);
      line-height: 1.1;
      letter-spacing: -.02em;
      color: var(--ink);
    }

    .tool-card h3 em {
      font-style: italic;
      color: var(--copper);
    }

    .tool-card p {
      color: var(--ink2);
      font-size: .98rem;
      line-height: 1.6;
    }

    .tool-feats {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: .55rem;
    }

    .tool-feats li {
      font-size: .9rem;
      color: var(--ink2);
      display: flex;
      align-items: baseline;
      gap: .65rem;
    }

    .tool-feats li::before {
      content: '→';
      color: var(--copper);
      font-family: var(--serif);
      flex-shrink: 0;
    }

    .tool-foot {
      margin-top: auto;
      padding-top: 1rem;
      border-top: 1px solid #E8E2D4;
      font-size: .82rem;
      color: #7A8294;
    }

    .tool-foot strong {
      color: var(--ink);
      font-weight: 500;
    }

    /* ===== NEWSLETTER ===== */
    .nl-section {
      background: var(--bg2);
      position: relative;
      overflow: hidden;
    }

    .nl-glow {
      position: absolute;
      width: 560px;
      height: 560px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(0, 200, 165, .07), transparent 65%);
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      pointer-events: none;
    }

    .nl-wrap {
      max-width: 680px;
      margin: 0 auto;
      text-align: center;
      position: relative;
      z-index: 1;
    }

    .nl-icon {
      display: inline-flex;
      margin: 0 auto 1.75rem;
      width: 52px;
      height: 52px;
      align-items: center;
      justify-content: center;
      border: 1px solid var(--border2);
      border-radius: 50%;
      color: var(--seafoam);
    }

    .nl-icon svg {
      width: 22px;
      height: 22px;
    }

    .nl-wrap h2 {
      font-family: var(--serif);
      font-weight: 300;
      font-variation-settings: "opsz" 144;
      font-size: clamp(2rem, 5.5vw, 3.6rem);
      line-height: 1.03;
      letter-spacing: -.03em;
      color: var(--text);
      margin-bottom: 1.25rem;
    }

    .nl-wrap h2 em {
      font-style: italic;
      font-weight: 300;
      color: var(--seafoam);
    }

    .nl-lead {
      font-size: 1.05rem;
      line-height: 1.65;
      color: var(--text2);
      max-width: 50ch;
      margin: 0 auto 2.5rem;
    }

    .nl-form {
      display: flex;
      gap: 0;
      max-width: 500px;
      margin: 0 auto 1.25rem;
    }

    .nl-in {
      flex: 1;
      min-width: 0;
      padding: .9rem 1.1rem;
      font: 400 .95rem var(--sans);
      color: var(--text);
      background: rgba(255, 255, 255, .06);
      border: 1px solid var(--border2);
      border-right: none;
      border-radius: 3px 0 0 3px;
      outline: none;
      transition: border-color .3s;
    }

    .nl-in::placeholder {
      color: var(--text3);
    }

    .nl-in:focus {
      border-color: var(--seafoam);
    }

    .nl-btn {
      background: var(--seafoam);
      color: var(--bg);
      font-family: var(--sans);
      font-weight: 600;
      font-size: .72rem;
      letter-spacing: .1em;
      text-transform: uppercase;
      padding: .9rem 1.6rem;
      border: none;
      border-radius: 0 3px 3px 0;
      cursor: none;
      transition: background .3s;
      white-space: nowrap;
    }

    .nl-btn:hover {
      background: #00E0B8;
    }

    .nl-fine {
      font-size: .72rem;
      color: var(--text3);
      letter-spacing: .04em;
    }

    .nl-success {
      display: none;
      margin: 0 auto 1rem;
      max-width: 500px;
      padding: .9rem 1.1rem;
      background: rgba(0, 200, 165, .08);
      border-left: 2px solid var(--seafoam);
      color: var(--seafoam);
      font-size: .92rem;
      text-align: left;
    }

    .nl-success.in {
      display: block;
      animation: fadeUp .4s var(--ease);
    }

    /* ===== FOOTER ===== */
    footer {
      background: var(--bg);
      padding: 4rem var(--gutter) 1.75rem;
      border-top: 1px solid var(--border);
    }

    .foot-grid {
      max-width: var(--max);
      margin: 0 auto;
      display: grid;
      gap: 2.5rem;
      grid-template-columns: 1fr;
      padding-bottom: 2.5rem;
      border-bottom: 1px solid var(--border);
    }

    @media(min-width:720px) {
      .foot-grid {
        grid-template-columns: 1.5fr 1fr 1fr 1fr;
      }
    }

    .foot-brand {
      font-family: var(--serif);
      font-weight: 500;
      font-variation-settings: "opsz" 144;
      font-size: 1.35rem;
      letter-spacing: .01em;
      margin-bottom: .85rem;
    }

    .foot-brand em {
      font-style: italic;
      color: var(--seafoam);
    }

    .foot-tag {
      font-size: .9rem;
      color: var(--text2);
      line-height: 1.6;
      max-width: 34ch;
    }

    .foot-col h4 {
      font-size: .65rem;
      font-weight: 600;
      letter-spacing: .22em;
      text-transform: uppercase;
      color: var(--text3);
      margin-bottom: 1.1rem;
    }

    .foot-col ul {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: .7rem;
    }

    .foot-col a {
      font-size: .9rem;
      color: var(--text2);
      transition: color .3s;
    }

    .foot-col a:hover {
      color: var(--seafoam);
    }

    .foot-bottom {
      max-width: var(--max);
      margin: 1.75rem auto 0;
      display: flex;
      flex-direction: column;
      gap: .75rem;
      font-size: .78rem;
      color: var(--text3);
    }

    @media(min-width:720px) {
      .foot-bottom {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
      }
    }

    /* ===== REVEAL ===== */
    .rv {
      opacity: 0;
      transform: translateY(28px);
      transition: opacity .8s var(--ease), transform .8s var(--ease);
    }

    .rv.in {
      opacity: 1;
      transform: translateY(0);
    }

    .rv-s>* {
      opacity: 0;
      transform: translateY(20px);
      transition: opacity .7s var(--ease), transform .7s var(--ease);
    }

    .rv-s.in>*:nth-child(1) {
      transition-delay: 0s;
    }

    .rv-s.in>*:nth-child(2) {
      transition-delay: .09s;
    }

    .rv-s.in>*:nth-child(3) {
      transition-delay: .18s;
    }

    .rv-s.in>*:nth-child(4) {
      transition-delay: .27s;
    }

    .rv-s.in>*:nth-child(5) {
      transition-delay: .36s;
    }

    .rv-s.in>*:nth-child(6) {
      transition-delay: .45s;
    }

    .rv-s.in>*:nth-child(7) {
      transition-delay: .54s;
    }

    .rv-s.in>* {
      opacity: 1;
      transform: translateY(0);
    }

    @media(prefers-reduced-motion:reduce) {

      *,
      *::before,
      *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
      }

      .rv,
      .rv-s>* {
        opacity: 1;
        transform: none;
      }
    }

    /* ===== BATEAUX TESTÉS — scroll vertical → défilement horizontal ===== */
    #bateaux {
      position: relative;
      padding: 0;
      overflow-x: clip;
    }

    #boatsPin {
      display: flex;
      flex-direction: column;
      justify-content: center;
      height: 100vh;
      overflow: hidden;
      gap: clamp(1rem, 2.5vh, 1.75rem);
      padding: clamp(1.5rem, 3vh, 2.5rem) 0;
      background: var(--paper2);
    }

    .boats-head {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      align-items: flex-end;
      gap: 1rem 3rem;
      padding: 0 var(--gutter);
      flex-shrink: 0;
    }

    #boatsClip {
      overflow: hidden;
      flex: 1;
      min-height: 0;
      display: flex;
      align-items: center;
    }

    .boats-track {
      display: flex;
      gap: 1.5rem;
      padding: 0.5rem var(--gutter);
      width: max-content;
      will-change: transform;
    }

    .boats-foot {
      padding: 0.75rem var(--gutter) 0;
      flex-shrink: 0;
      border-top: 1px solid #DDD7C8;
      display: flex;
      justify-content: center;
    }

    .boat-card {
      width: clamp(280px, 38vw, 360px);
      flex-shrink: 0;
      border: 1px solid #DDD7C8;
      border-radius: 2px;
      background: var(--paper);
      overflow: hidden;
      transition: box-shadow .5s var(--ease), border-color .4s;
      will-change: transform;
      cursor: none;
    }

    .boat-card:hover {
      box-shadow: 0 22px 50px -24px rgba(15, 27, 45, .22);
      border-color: #B8B0A0;
    }

    .boat-img {
      height: 220px;
      overflow: hidden;
      position: relative;
      background: var(--paper3);
    }

    .boat-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 1.1s var(--ease);
    }

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

    .boat-badge {
      position: absolute;
      top: .85rem;
      right: .85rem;
      display: flex;
      align-items: center;
      gap: .35rem;
      background: var(--paper);
      padding: .32rem .65rem;
      border-radius: 2px;
      font-size: .68rem;
      font-weight: 700;
      color: var(--gold);
    }

    .boat-badge svg {
      width: 11px;
      height: 11px;
      fill: var(--gold);
      stroke: var(--gold);
    }

    .boat-body {
      padding: 1.25rem 1.35rem 1.4rem;
    }

    .boat-specs {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: .35rem;
      margin: .85rem 0 1rem;
    }

    .boat-spec {
      text-align: center;
      padding: .4rem .25rem;
      background: var(--paper2);
      border-radius: 2px;
    }

    .boat-spec-v {
      display: block;
      font-size: .82rem;
      font-weight: 600;
      color: var(--ink);
      line-height: 1.2;
    }

    .boat-spec-l {
      display: block;
      font-size: .52rem;
      text-transform: uppercase;
      letter-spacing: .08em;
      color: #9A9288;
      margin-top: .1rem;
    }

    .boat-link {
      font-size: .72rem;
      font-weight: 600;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: var(--copper);
      display: inline-flex;
      align-items: center;
      gap: .4rem;
      transition: gap .3s var(--ease);
    }

    .boat-card:hover .boat-link {
      gap: .7rem;
    }

    /* ===== DESTINATIONS ===== */
    .dest-grid {
      display: grid;
      gap: 1.25rem;
      grid-template-columns: 1fr;
    }

    @media(min-width:720px) {
      .dest-grid {
        grid-template-columns: 1fr 1fr;
      }
    }

    @media(min-width:1080px) {
      .dest-grid {
        grid-template-columns: 1fr 1fr 1fr;
      }
    }

    .dest-card {
      position: relative;
      overflow: hidden;
      border-radius: 2px;
      aspect-ratio: 3/2;
      cursor: none;
    }

    .dest-card.tall {
      aspect-ratio: 2/3;
    }

    @media(min-width:720px) {
      .dest-grid>.dest-card:first-child {
        grid-row: span 2;
        aspect-ratio: auto;
        min-height: 460px;
      }
    }

    .dest-img {
      position: absolute;
      inset: 0;
    }

    .dest-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 1.2s var(--ease), filter .8s var(--ease);
    }

    .dest-card:hover .dest-img img {
      transform: scale(1.07);
      filter: brightness(1.08);
    }

    .dest-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, transparent 35%, rgba(7, 14, 27, .78) 100%);
      z-index: 1;
    }

    .dest-content {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      z-index: 2;
      padding: 1.5rem 1.5rem 1.4rem;
      transform: translateY(4px);
      transition: transform .5s var(--ease);
    }

    .dest-card:hover .dest-content {
      transform: translateY(0);
    }

    .dest-region {
      display: block;
      font-size: .65rem;
      font-weight: 600;
      letter-spacing: .22em;
      text-transform: uppercase;
      color: rgba(232, 237, 245, .65);
      margin-bottom: .5rem;
    }

    .dest-title {
      font-family: var(--serif);
      font-weight: 400;
      font-variation-settings: "opsz" 36;
      font-size: clamp(1.1rem, 2.2vw, 1.55rem);
      line-height: 1.15;
      letter-spacing: -.015em;
      color: var(--text);
      margin-bottom: .6rem;
    }

    .dest-coming {
      font-size: .68rem;
      font-weight: 500;
      color: rgba(232, 237, 245, .55);
      letter-spacing: .04em;
      opacity: 0;
      transform: translateY(6px);
      transition: opacity .4s, transform .4s var(--ease);
    }

    .dest-card:hover .dest-coming {
      opacity: 1;
      transform: translateY(0);
    }

    /* ===== TECHNIQUE ===== */
    #technique {
      position: relative;
      padding: 0;
      overflow-x: clip;
    }

    #techPin {
      display: flex;
      flex-direction: column;
      justify-content: center;
      height: 100vh;
      overflow: hidden;
      gap: clamp(1rem, 2.5vh, 1.75rem);
      padding: clamp(1.5rem, 3vh, 2.5rem) 0;
      background: var(--paper);
    }

    .tech-head {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      align-items: flex-end;
      gap: 1rem 3rem;
      padding: 0 var(--gutter);
      flex-shrink: 0;
    }

    #techClip {
      overflow: hidden;
      flex: 1;
      min-height: 0;
      display: flex;
      align-items: center;
    }

    .tech-grid {
      display: flex;
      gap: 1.5rem;
      padding: 0.5rem var(--gutter);
      width: max-content;
      will-change: transform;
    }

    .tech-foot {
      padding: 0.75rem var(--gutter) 0;
      flex-shrink: 0;
      border-top: 1px solid #DDD7C8;
      display: flex;
      justify-content: center;
    }

    .tech-card {
      width: clamp(280px, 38vw, 360px);
      flex-shrink: 0;
      position: relative;
      border: 1px solid #DDD7C8;
      border-radius: 2px;
      background: var(--paper);
      overflow: hidden;
      cursor: none;
      transition: border-color .4s, transform .5s var(--ease), box-shadow .5s var(--ease);
    }

    .tech-card:hover {
      border-color: #B8B0A0;
      transform: translateY(-4px);
      box-shadow: 0 18px 40px -22px rgba(15, 27, 45, .2);
    }

    .tech-img {
      height: 200px;
      overflow: hidden;
      background: var(--paper3);
    }

    .tech-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 1.1s var(--ease);
    }

    .tech-card:hover .tech-img img {
      transform: scale(1.07);
    }

    .tech-tag {
      display: inline-block;
      font-size: .62rem;
      font-weight: 600;
      letter-spacing: .14em;
      text-transform: uppercase;
      padding: .3rem .6rem;
      border-radius: 2px;
      background: rgba(184, 89, 50, .1);
      color: var(--copper);
      margin-bottom: .7rem;
    }

    .tech-body {
      padding: 1.1rem 1.2rem 1.3rem;
    }

    .tech-title {
      font-family: var(--serif);
      font-weight: 400;
      font-variation-settings: "opsz" 36;
      font-size: 1.05rem;
      line-height: 1.22;
      letter-spacing: -.01em;
      color: var(--ink);
      margin-bottom: .6rem;
      transition: color .3s;
    }

    .tech-card:hover .tech-title {
      color: var(--copper);
    }

    .tech-excerpt {
      font-size: .85rem;
      line-height: 1.58;
      color: var(--ink2);
    }

    /* ===== INTERVIEWS ===== */
    .interview-grid {
      display: grid;
      gap: 1.5rem;
      grid-template-columns: 1fr;
    }

    @media(min-width:720px) {
      .interview-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media(min-width:1100px) {
      .interview-grid {
        grid-template-columns: repeat(3, 1fr);
      }
    }

    .interview-card {
      padding: 2rem;
      border: 1px solid var(--border2);
      border-radius: 2px;
      background: rgba(255, 255, 255, .03);
      cursor: none;
      display: flex;
      flex-direction: column;
      gap: 1.25rem;
      transition: border-color .4s, background .4s, transform .5s var(--ease);
    }

    .interview-card:hover {
      border-color: rgba(255, 255, 255, .22);
      background: rgba(255, 255, 255, .055);
      transform: translateY(-3px);
    }

    .interview-avatar {
      display: flex;
      align-items: center;
      gap: 1rem;
    }

    .interview-photo {
      width: 54px;
      height: 54px;
      border-radius: 50%;
      object-fit: cover;
      flex-shrink: 0;
      border: 1px solid var(--border2);
      background: var(--bg3);
    }

    .interview-who {}

    .interview-name {
      font-family: var(--sans);
      font-weight: 600;
      font-size: .92rem;
      color: var(--text);
      display: block;
    }

    .interview-role {
      font-size: .72rem;
      color: var(--text3);
      letter-spacing: .03em;
      display: block;
      margin-top: .15rem;
    }

    .interview-quote {
      font-family: var(--serif);
      font-weight: 300;
      font-style: italic;
      font-size: clamp(1rem, 1.8vw, 1.2rem);
      line-height: 1.55;
      letter-spacing: -.01em;
      color: var(--text2);
      flex: 1;
    }

    .interview-quote::before {
      content: '\201C';
      color: var(--seafoam);
      font-size: 1.4em;
      line-height: 0;
      vertical-align: -.2em;
      margin-right: .2rem;
    }

    .interview-tag {
      font-size: .65rem;
      font-weight: 600;
      letter-spacing: .18em;
      text-transform: uppercase;
      color: var(--seafoam);
      border-top: 1px solid var(--border);
      padding-top: 1rem;
    }

    .interview-coming {
      font-size: .65rem;
      font-weight: 500;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: var(--text3);
      margin-top: .25rem;
      display: block;
    }

    /* ===== CARTE MARINE EN FOND ===== */
    .has-map {
      position: relative;
      overflow: hidden;
    }

    .has-map>.inner {
      position: relative;
      z-index: 1;
    }

    .map-bg {
      position: absolute;
      inset: 0;
      pointer-events: none;
      z-index: 0;
      background-size: cover;
      background-position: center;
      opacity: .16;
      filter: sepia(1) contrast(1.2) brightness(.85);
    }

    /* ===== VOIR TOUT ===== */
    .see-all-row {
      margin-top: clamp(2.5rem, 5vw, 3.5rem);
      padding-top: 1.75rem;
      display: flex;
      justify-content: center;
      border-top: 1px solid #DDD7C8;
    }

    .see-all-row-dark {
      border-top-color: var(--border);
    }

    .see-all-row-dark .see-all {
      color: rgba(232, 237, 245, .72);
      border-bottom: none;
      padding-bottom: 0;
    }

    .see-all-row-dark .see-all:hover {
      color: var(--seafoam);
    }

    .see-all {
      font-size: .82rem;
      font-weight: 500;
      letter-spacing: .06em;
      display: inline-flex;
      align-items: center;
      gap: .65rem;
      color: var(--ink);
      border-bottom: 1px solid var(--ink);
      padding-bottom: 3px;
      cursor: none;
      transition: color .3s var(--ease), gap .35s var(--ease), border-color .3s;
    }

    .see-all:hover {
      color: var(--copper);
      border-color: var(--copper);
      gap: 1.1rem;
    }


    .see-all .sa-arr {
      display: inline-block;
      transition: transform .35s var(--ease);
    }

    .see-all:hover .sa-arr {
      transform: translateX(5px);
    }

    /* ============================================================
       MOBILE & TABLETTE — override final, force 1 colonne
       Cible <1025px pour couvrir tous les iPad/tablette/téléphone.
       Utilise !important pour gagner contre les règles desktop
       et les transforms inline injectés par GSAP.
       ============================================================ */
    @media (max-width: 1024px) {

      /* Sections : aucune contrainte de hauteur */
      #bateaux,
      #technique,
      .cat-section {
        height: auto !important;
        min-height: 0 !important;
        overflow: visible !important;
      }

      /* Pin containers : block normal, pas de sticky */
      #boatsPin,
      #techPin,
      .cat-pin {
        display: block !important;
        position: static !important;
        height: auto !important;
        overflow: visible !important;
        padding: clamp(3rem, 8vw, 5rem) var(--gutter) !important;
        gap: 0 !important;
      }

      #boatsPin {
        background: var(--paper2) !important;
      }

      #techPin {
        background: var(--paper) !important;
      }

      /* Clip containers : plus de scroll */
      #boatsClip,
      #techClip {
        display: block !important;
        overflow: visible !important;
        width: 100% !important;
        max-width: 100% !important;
        margin-top: clamp(1.5rem, 4vw, 2.25rem) !important;
        flex: none !important;
      }

      /* Tracks : pile verticale en flex column, 1 carte par ligne */
      .boats-track,
      .tech-grid {
        display: flex !important;
        flex-direction: column !important;
        align-items: stretch !important;
        gap: clamp(1rem, 3vw, 1.5rem) !important;
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
        transform: none !important;
        will-change: auto !important;
      }

      /* Cards : pleine largeur, hauteur naturelle */
      .boat-card,
      .tech-card {
        width: 100% !important;
        max-width: 100% !important;
        flex: none !important;
        flex-shrink: 0 !important;
      }

      /* SVG catamaran : reset transform inline injecté par JS */
      #catSvg {
        transform: none !important;
      }

      /* Headers/footers normaux */
      .boats-head,
      .tech-head {
        padding: 0 !important;
      }

      .boats-foot,
      .tech-foot {
        margin: clamp(1.75rem, 4vw, 2.5rem) 0 0 !important;
        padding: 0.75rem 0 0 !important;
      }
    }
