      :root {
        /* Terre battue */
        --clay: #b8502c;
        --clay-dark: #7a2e12;
        --clay-deep: #2b0e04;
        --clay-light: #f4c9b6;
        --clay-pale: #fcf0ea;
        /* Vert bouteille */
        --forest: #123d2c;
        --forest-mid: #0f3327;
        --forest-deep: #0b271e;
        --forest-mute: #7fb79a;
        /* Neutres */
        --cream: #f7f3ee;
        --sand: #ede8e0;
        --sand-dark: #d5cfc5;
        --white: #fff;
        --ink: #1a0a04;
        /* Edges */
        --edge-light: rgba(255, 255, 255, 0.16);
        --edge-dark: rgba(43, 14, 4, 0.14);
        --muted-w: rgba(255, 255, 255, 0.72);
        --muted-c: rgba(184, 80, 44, 0.55);
        --muted-dark: #5a4538;
        --wrap: 1180px;
      }
      * {
        box-sizing: border-box;
      }
      html {
        scroll-behavior: smooth;
      }
      body {
        margin: 0;
        background: var(--cream);
        color: var(--ink);
        font-family: "Archivo", system-ui, sans-serif;
        font-size: 17px;
        line-height: 1.7;
        -webkit-font-smoothing: antialiased;
      }
      h1,
      h2,
      h3 {
        font-family: "Archivo Black", "Archivo", sans-serif;
        font-weight: 400;
        text-transform: uppercase;
        letter-spacing: -0.01em;
        line-height: 0.94;
        margin: 0;
      }
      p {
        margin: 0;
      }
      a {
        color: inherit;
      }
      img {
        max-width: 100%;
        display: block;
      }
      .wrap {
        max-width: var(--wrap);
        margin: 0 auto;
        padding: 0 28px;
      }
      .kicker {
        font-size: 12px;
        font-weight: 600;
        letter-spacing: 0.22em;
        text-transform: uppercase;
      }
      .skew {
        display: inline-block;
        transform: skewX(-7deg);
      }

      /* ── header ── */
      .hdr {
        position: sticky;
        top: 0;
        z-index: 50;
        background: var(--forest-deep);
        border-bottom: 1px solid var(--edge-light);
      }
      .hdr-in {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 24px;
        height: 74px;
      }
      .mark {
        display: flex;
        align-items: center;
        text-decoration: none;
        height: 44px;
      }
      .mark img {
        height: 44px;
        width: auto;
      }
      .mark b {
        color: var(--clay);
        font-weight: 400;
      }
      .nav {
        display: flex;
        gap: 26px;
        list-style: none;
        margin: 0;
        padding: 0;
      }
      .nav a {
        color: var(--muted-w);
        text-decoration: none;
        font-size: 13px;
        font-weight: 600;
        letter-spacing: 0.12em;
        text-transform: uppercase;
        padding: 6px 0;
        border-bottom: 2px solid transparent;
        transition: color 0.2s, border-color 0.2s;
      }
      .nav a:hover,
      .nav a:focus-visible {
        color: var(--white);
        border-color: var(--clay);
      }
      .hdr-tel {
        color: #ffd700;
        text-decoration: none;
        font-family: "Archivo Black", sans-serif;
        font-size: 15px;
        white-space: nowrap;
      }
      .burger {
        display: none;
        background: none;
        border: 1px solid var(--edge-light);
        color: #fff;
        padding: 8px 12px;
        border-radius: 4px;
        font-size: 13px;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        cursor: pointer;
      }

      /* ── hero ── */
      .hero {
        position: relative;
        background: var(--clay);
        overflow: hidden;
        isolation: isolate;
      }
      .hero-ph {
        position: absolute;
        inset: 0;
        background: linear-gradient(
          115deg,
          #8c3318 0%,
          #c2562e 52%,
          #9c3e22 100%
        );
        display: flex;
        align-items: center;
        justify-content: center;
      }
      .hero-ph span {
        color: rgba(255, 255, 255, 0.32);
        font-size: 13px;
        letter-spacing: 0.18em;
        text-transform: uppercase;
        text-align: center;
        padding: 0 20px;
      }
      .hero-veil {
        position: absolute;
        inset: 0;
        z-index: 1;
        background: linear-gradient(
          90deg,
          rgba(43, 14, 4, 0.88) 0%,
          rgba(43, 14, 4, 0.68) 48%,
          rgba(43, 14, 4, 0.22) 100%
        );
      }
      .hero-lines {
        position: absolute;
        inset: 0;
        z-index: 2;
        pointer-events: none;
      }
      .hero-in {
        position: relative;
        z-index: 3;
        padding: 112px 28px 140px;
      }
      .hero .kicker {
        color: var(--forest-mute);
        margin-bottom: 22px;
      }
      .hero h1 {
        color: #ffd700;
        font-size: clamp(40px, 7.4vw, 86px);
        max-width: 15ch;
      }
      .hero h1 em {
        font-style: normal;
        color: #ffd700;
      }
      .hero-rule {
        width: 82px;
        height: 5px;
        background: var(--forest);
        margin: 26px 0 24px;
      }
      .hero p {
        color: rgba(255, 255, 255, 0.78);
        font-size: 18px;
        max-width: 46ch;
      }
      .hero-meta {
        margin-top: 34px;
        display: flex;
        flex-wrap: wrap;
        gap: 14px 30px;
        color: var(--white);
        font-size: 14px;
        font-weight: 600;
        letter-spacing: 0.06em;
        text-transform: uppercase;
      }
      .hero-meta span {
        display: flex;
        align-items: center;
        gap: 9px;
      }
      .hero-cta {
        display: inline-block;
        margin-top: 36px;
        text-decoration: none;
        font-family: "Archivo Black", sans-serif;
        font-size: 14px;
        letter-spacing: 0.04em;
        text-transform: uppercase;
        padding: 16px 24px;
        background: #ffd700;
        color: var(--forest-deep);
        border-radius: 2px;
        transition: transform 0.15s ease, filter 0.15s ease;
      }
      .hero-cta:hover {
        transform: translateY(-2px);
        filter: brightness(1.06);
      }
      .dot {
        width: 8px;
        height: 8px;
        background: var(--forest-mute);
        border-radius: 50%;
        flex: none;
      }

      /* ── stats ── */
      .stats {
        background: var(--forest);
        color: var(--white);
        transform: skewY(-1.6deg);
        margin: -28px 0 0;
        position: relative;
        z-index: 4;
      }
      .stats-in {
        transform: skewY(1.6deg);
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 0;
        padding: 38px 28px;
      }
      .stat {
        padding: 8px 24px;
        border-left: 2px solid rgba(255, 255, 255, 0.16);
      }
      .stat:first-child {
        border-left: 0;
        padding-left: 0;
      }
      .stat b {
        display: block;
        font-family: "Archivo Black", sans-serif;
        font-size: clamp(32px, 4.2vw, 48px);
        line-height: 1;
        color: var(--white);
      }
      .stat i {
        font-style: normal;
        display: block;
        margin-top: 6px;
        font-size: 11px;
        font-weight: 600;
        letter-spacing: 0.16em;
        text-transform: uppercase;
        color: var(--forest-mute);
      }

      /* ── sections ── */
      section {
        padding: 96px 0;
      }
      section.spots {
        padding: 56px 0;
        background: var(--sand);
      }
      .spots h2 {
        font-size: clamp(28px, 4.2vw, 46px);
      }
      .spots-ticket {
        max-width: 720px;
        margin: 0 auto;
        text-align: center;
        background: var(--forest-deep);
        color: #fff;
        padding: 56px 40px;
        border: 1px solid rgba(255, 215, 0, 0.35);
        box-shadow: 0 18px 40px rgba(11, 39, 30, 0.28);
      }
      .spots-ticket .kicker {
        color: #ffd700;
        display: block;
        margin-bottom: 16px;
      }
      .spots-ticket h2 {
        color: #fff;
      }
      .spots-when {
        margin: 22px 0 14px;
        color: #ffd700;
        font-family: "Archivo Black", sans-serif;
        font-size: clamp(18px, 2.4vw, 24px);
        letter-spacing: 0.04em;
        text-transform: uppercase;
      }
      .spots-copy {
        color: var(--muted-w);
        max-width: 42ch;
        margin: 0 auto;
      }
      .spots-cta {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        margin-top: 28px;
        padding: 16px 26px;
        font-family: "Archivo Black", sans-serif;
        font-size: 15px;
        letter-spacing: 0.04em;
        text-transform: uppercase;
        text-decoration: none;
        border-radius: 2px;
        background: #ffd700;
        color: var(--forest-deep);
        transition: transform 0.15s ease, filter 0.15s ease;
      }
      .spots-cta:hover {
        transform: translateY(-2px);
        filter: brightness(1.05);
      }
      .sec-head {
        margin-bottom: 44px;
        max-width: 52ch;
      }
      .sec-head .kicker {
        color: var(--clay);
        margin-bottom: 14px;
        display: block;
      }
      .sec-head h2 {
        font-size: clamp(30px, 4.4vw, 50px);
      }
      .sec-head p {
        margin-top: 20px;
        color: var(--muted-dark);
        font-size: 17px;
        line-height: 1.7;
      }

      /* dark = vert bouteille */
      .dark {
        background: var(--forest-mid);
        color: var(--white);
      }
      .dark .sec-head .kicker {
        color: var(--clay-light);
      }
      .dark .sec-head p {
        color: var(--muted-w);
      }

      /* sand = crème chaud */
      .sand-bg {
        background: var(--sand);
      }
      .sand-bg .sec-head .kicker {
        color: var(--clay-dark);
      }

      /* ── carousel ── */
      .carousel {
        position: relative;
        background: var(--sand);
        border-radius: 2px;
        aspect-ratio: 4/3;
        overflow: hidden;
      }
      .carousel-inner {
        position: relative;
        width: 100%;
        height: 100%;
      }
      .carousel-slide {
        position: absolute;
        width: 100%;
        height: 100%;
        opacity: 0;
        transition: opacity 0.8s ease-in-out;
      }
      .carousel-slide.active {
        opacity: 1;
      }
      .carousel-slide img {
        width: 100%;
        height: 100%;
        object-fit: cover;
      }
      .carousel-btn {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 48px;
        height: 48px;
        background: rgba(0, 0, 0, 0.5);
        border: none;
        color: #fff;
        font-size: 24px;
        cursor: pointer;
        z-index: 10;
        transition: background 0.3s;
        border-radius: 4px;
      }
      .carousel-btn:hover {
        background: rgba(0, 0, 0, 0.7);
      }
      .carousel-btn.prev {
        left: 16px;
      }
      .carousel-btn.next {
        right: 16px;
      }
      .carousel-dots {
        position: absolute;
        bottom: 16px;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        gap: 8px;
        z-index: 10;
      }
      .dot-btn {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.6);
        border: none;
        cursor: pointer;
        transition: background 0.3s;
      }
      .dot-btn.active {
        background: rgba(255, 255, 255, 0.95);
      }

      /* ── split ── */
      .split {
        display: grid;
        grid-template-columns: 1.05fr 0.95fr;
        gap: 56px;
        align-items: center;
      }
      .ph {
        position: relative;
        background: var(--sand);
        border-radius: 2px;
        aspect-ratio: 4/3;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
      }
      .ph img {
        width: 100%;
        height: 100%;
        object-fit: cover;
      }
      .ph span {
        color: #8a7b72;
        font-size: 12px;
        letter-spacing: 0.16em;
        text-transform: uppercase;
        text-align: center;
        padding: 0 18px;
      }
      .dark .ph {
        background: var(--forest-deep);
      }
      .dark .ph span {
        color: rgba(255, 255, 255, 0.38);
      }
      .prose p + p {
        margin-top: 18px;
      }
      .prose {
        color: var(--muted-dark);
        font-size: 17px;
      }
      .dark .prose {
        color: var(--muted-w);
      }

      /* ── cards (courts) ── */
      .cards {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2px;
        background: rgba(255, 255, 255, 0.08);
      }
      .card {
        background: var(--forest-deep);
        padding: 34px 28px 30px;
      }
      .card b {
        display: block;
        font-family: "Archivo Black", sans-serif;
        font-size: 19px;
        text-transform: uppercase;
        color: var(--white);
        margin-bottom: 12px;
      }
      .card p {
        color: var(--muted-w);
        font-size: 15.5px;
      }
      .card .num {
        font-family: "Archivo Black", sans-serif;
        font-size: 13px;
        color: var(--clay-light);
        letter-spacing: 0.1em;
        display: block;
        margin-bottom: 16px;
      }

      /* ── tiles (cours) ── */
      .grid3 {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
        gap: 2px;
        background: var(--sand-dark);
      }
      .tile {
        background: var(--white);
        padding: 30px 26px;
      }
      .tile b {
        display: block;
        font-family: "Archivo Black", sans-serif;
        font-size: 19px;
        text-transform: uppercase;
        margin-bottom: 10px;
        color: var(--ink);
      }
      .tile p {
        color: var(--muted-dark);
        font-size: 15.5px;
      }
      .tile p + p {
        margin-top: 12px;
      }
      .tile .tag {
        display: inline-block;
        background: var(--clay);
        color: var(--white);
        font-size: 11px;
        font-weight: 600;
        letter-spacing: 0.16em;
        text-transform: uppercase;
        padding: 5px 10px;
        margin-bottom: 16px;
      }

      /* ── complexe ── */
      .equip {
        list-style: none;
        margin: 0;
        padding: 0;
        border-top: 1px solid var(--sand-dark);
      }
      .equip li {
        display: flex;
        justify-content: space-between;
        align-items: baseline;
        gap: 18px;
        padding: 15px 0;
        border-bottom: 1px solid var(--sand-dark);
        font-size: 16px;
      }
      .equip li b {
        font-family: "Archivo Black", sans-serif;
        font-size: 14px;
        font-weight: 400;
        text-transform: uppercase;
        white-space: nowrap;
        color: var(--ink);
      }
      .equip li span {
        color: var(--muted-dark);
        font-size: 15px;
        text-align: right;
      }
      .note {
        border-left: 5px solid var(--clay);
        background: var(--clay-pale);
        padding: 22px 24px;
        margin-top: 28px;
      }
      .note b {
        display: block;
        font-family: "Archivo Black", sans-serif;
        font-size: 14px;
        text-transform: uppercase;
        margin-bottom: 8px;
        color: var(--clay-dark);
      }
      .note p {
        color: var(--clay-dark);
        font-size: 15px;
      }

      /* ── table tarifs ── */
      table {
        width: 100%;
        border-collapse: collapse;
        font-size: 16px;
      }
      th,
      td {
        text-align: left;
        padding: 16px 12px;
        border-bottom: 1px solid var(--sand-dark);
      }
      th {
        font-size: 11px;
        font-weight: 600;
        letter-spacing: 0.16em;
        text-transform: uppercase;
        color: var(--clay-light);
      }
      th:nth-child(3),
      td:nth-child(3),
      th:last-child,
      td:last-child {
        text-align: right;
        white-space: nowrap;
        width: 1%;
      }
      .todo {
        color: #9a8a7e;
        font-style: italic;
        font-family: "Archivo", sans-serif;
        font-size: 14px;
      }

      /* ── infos ── */
      .info {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 2px;
        background: rgba(255, 255, 255, 0.08);
      }
      .info > div {
        background: var(--forest-deep);
        padding: 34px 30px;
      }
      .hours {
        list-style: none;
        margin: 0;
        padding: 0;
      }
      .hours li {
        display: flex;
        justify-content: space-between;
        gap: 16px;
        padding: 12px 0;
        border-bottom: 1px solid var(--edge-light);
        font-size: 15.5px;
        color: var(--muted-w);
      }
      .hours li b {
        color: var(--white);
        font-family: "Archivo Black", sans-serif;
        font-size: 15px;
        font-weight: 400;
      }
      .info h3 {
        font-size: 17px;
        color: var(--clay-light);
        font-family: "Archivo Black", sans-serif;
        text-transform: uppercase;
        letter-spacing: 0.04em;
        margin-bottom: 18px;
      }
      .mapslot {
        margin-top: 22px;
        aspect-ratio: 16/7;
        background: var(--forest);
        display: flex;
        align-items: center;
        justify-content: center;
        color: rgba(255, 255, 255, 0.38);
        font-size: 12px;
        letter-spacing: 0.16em;
        text-transform: uppercase;
        text-align: center;
        padding: 0 18px;
      }

      /* ── contact ── */
      .contact {
        background: var(--clay);
        color: var(--white);
        padding: 88px 0;
      }
      .contact .kicker {
        color: var(--clay-light);
      }
      .contact h2 {
        font-size: clamp(30px, 4.6vw, 52px);
        margin-top: 14px;
      }
      .contact-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 48px;
        align-items: end;
        margin-top: 40px;
      }
      .tel {
        display: block;
        font-family: "Archivo Black", sans-serif;
        font-size: clamp(24px, 3.2vw, 36px);
        text-decoration: none;
        line-height: 1.2;
        color: var(--white);
      }
      .tel:hover {
        color: var(--clay-light);
      }
      .contact address {
        font-style: normal;
        font-size: 16px;
        line-height: 1.85;
        color: rgba(255, 255, 255, 0.84);
        border-left: 3px solid rgba(255, 255, 255, 0.3);
        padding-left: 22px;
      }
      .contact .todo {
        color: rgba(255, 255, 255, 0.5);
        font-size: 14px;
        display: block;
        margin-top: 12px;
      }

      /* ── footer ── */
      footer {
        background: var(--forest-deep);
        color: rgba(255, 255, 255, 0.55);
        padding: 38px 0;
        font-size: 14px;
      }
      .foot-in {
        display: flex;
        flex-wrap: wrap;
        gap: 14px 32px;
        justify-content: space-between;
        align-items: center;
      }
      footer a {
        color: rgba(255, 255, 255, 0.55);
        text-decoration: none;
      }
      footer a:hover {
        color: var(--clay-light);
      }

      /* ── responsive ── */
      @media (max-width: 900px) {
        .split,
        .info,
        .contact-grid,
        .stats-in {
          grid-template-columns: 1fr;
        }
        .spots-ticket {
          padding: 40px 24px;
        }
        .stats-in {
          gap: 24px;
          padding: 34px 28px;
        }
        .stat {
          border-left: 0;
          padding: 0;
        }
        .nav {
          display: none;
        }
        .nav.open {
          display: flex;
          position: absolute;
          top: 74px;
          left: 0;
          right: 0;
          flex-direction: column;
          gap: 0;
          background: var(--forest-deep);
          padding: 8px 28px 20px;
          border-bottom: 1px solid var(--edge-light);
        }
        .nav.open li a {
          display: block;
          padding: 13px 0;
          border-bottom: 1px solid var(--edge-light);
        }
        .burger {
          display: block;
        }
        .hdr-tel {
          display: none;
        }
        .hero-in {
          padding: 78px 28px 100px;
        }
        section {
          padding: 68px 0;
        }
        section.spots {
          padding: 40px 0;
        }
        .contact-grid {
          gap: 32px;
        }
      }
      @media (prefers-reduced-motion: reduce) {
        html {
          scroll-behavior: auto;
        }
        * {
          transition: none !important;
        }
      }
      :focus-visible {
        outline: 3px solid var(--clay-light);
        outline-offset: 3px;
      }

      /* ── mentions légales ── */
      .legal {
        padding: 72px 0 96px;
      }
      .legal h1 {
        font-size: clamp(30px, 4.4vw, 50px);
        margin-bottom: 18px;
      }
      .legal .lead {
        color: var(--muted-dark);
        font-size: 17px;
        max-width: 60ch;
        margin-bottom: 8px;
      }
      .legal h2 {
        font-size: 18px;
        margin: 42px 0 14px;
        color: var(--clay-dark);
      }
      .legal p,
      .legal li {
        color: var(--muted-dark);
        font-size: 16px;
      }
      .legal p + p {
        margin-top: 14px;
      }
      .legal ul {
        margin: 12px 0 0;
        padding-left: 18px;
      }
      .legal li + li {
        margin-top: 6px;
      }
      .legal a {
        color: var(--clay-dark);
        text-decoration: underline;
        text-underline-offset: 2px;
      }
      .legal a:hover {
        color: var(--clay);
      }
