:root {
  --black: #111111;
  --white: #ffffff;
  --off-white: #f7f7f5;
  --gray-100: #eeeeeb;
  --gray-300: #d5d5d0;
  --gray-500: #777773;
  --gray-700: #343432;

  --accent: #d9ff32;

  --container: 1180px;
  --radius: 18px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family:
    -apple-system,
    BlinkMacSystemFont,
    "Helvetica Neue",
    Helvetica,
    Arial,
    sans-serif;

  color: var(--black);
  background: var(--white);

  font-size: 16px;
  line-height: 1.5;

  -webkit-font-smoothing: antialiased;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.container {
  width: min(
    calc(100% - 40px),
    var(--container)
  );

  margin-inline: auto;
}

.section {
  padding: 140px 0;
}


/* =========================
   HEADER
========================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;

  background: rgba(255, 255, 255, 0.92);

  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);

  border-bottom: 1px solid var(--gray-100);
}

.nav {
  min-height: 78px;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: 18px;
  font-weight: 900;
  letter-spacing: -0.055em;
}

.nav nav {
  display: flex;
  align-items: center;
  gap: 30px;

  font-size: 13px;
  font-weight: 600;
}

.nav nav a {
  transition: opacity 0.2s ease;
}

.nav nav a:hover {
  opacity: 0.45;
}

.nav-cta {
  padding: 11px 18px;

  color: var(--white);
  background: var(--black);

  border-radius: 999px;
}


/* =========================
   HERO
========================= */

.hero {
  min-height: calc(100vh - 78px);

  display: flex;
  align-items: center;

  position: relative;

  overflow: hidden;

  padding: 110px 0 120px;

  background:
    radial-gradient(
      circle at 85% 15%,
      rgba(0, 0, 0, 0.045),
      transparent 30%
    ),

    linear-gradient(
      180deg,
      #ffffff 0%,
      #fafaf8 100%
    );
}

.hero::before {
  content: "";

  position: absolute;

  width: 620px;
  height: 620px;

  right: -250px;
  top: 10%;

  border-radius: 50%;

  border: 1px solid rgba(0, 0, 0, 0.055);

  pointer-events: none;
}

.hero::after {
  content: "";

  position: absolute;

  width: 420px;
  height: 420px;

  right: -160px;
  top: 22%;

  border-radius: 50%;

  border: 1px solid rgba(0, 0, 0, 0.04);

  pointer-events: none;
}

.hero-content {
  max-width: 1000px;

  position: relative;
  z-index: 2;
}

.eyebrow {
  margin-bottom: 24px;

  color: var(--gray-500);

  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.17em;
}

h1 {
  max-width: 920px;

  font-size: clamp(
    64px,
    10vw,
    126px
  );

  line-height: 0.88;

  letter-spacing: -0.085em;

  font-weight: 800;
}

h1 span {
  display: block;

  color: #888884;
}

.hero-text {
  max-width: 610px;

  margin-top: 38px;

  color: var(--gray-500);

  font-size: 20px;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;

  margin-top: 42px;
}

.hero-location {
  display: flex;
  align-items: center;
  gap: 9px;

  margin-top: 40px;

  color: var(--gray-500);

  font-size: 12px;
  font-weight: 600;
}

.location-dot {
  width: 7px;
  height: 7px;

  border-radius: 50%;

  background: var(--black);
}


/* =========================
   BUTTONS
========================= */

.button {
  min-height: 54px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 0 24px;

  border-radius: 999px;

  font-size: 13px;
  font-weight: 700;

  transition:
    transform 0.2s ease,
    background 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--white);
  background: var(--black);
}

.button-primary:hover {
  background: #2a2a28;
}

.button-secondary {
  border: 1px solid var(--gray-300);

  background: rgba(255, 255, 255, 0.6);
}

.button-secondary:hover {
  border-color: var(--black);
}


/* =========================
   INTRO
========================= */

.intro {
  background: var(--white);
}

.intro-grid {
  display: grid;

  grid-template-columns:
    minmax(0, 1fr)
    minmax(0, 0.85fr);

  gap: 120px;
}

.intro h2,
.section-heading h2,
.experience h2,
.premium-grid h2,
.contact h2 {
  font-size: clamp(
    46px,
    6vw,
    76px
  );

  line-height: 0.96;

  letter-spacing: -0.068em;

  font-weight: 750;
}

.intro-text {
  max-width: 540px;

  padding-top: 52px;

  font-size: 19px;
  line-height: 1.7;

  color: var(--gray-700);
}

.intro-text p + p {
  margin-top: 28px;

  color: var(--gray-500);
}


/* =========================
   SERVICES
========================= */

.section-light {
  background: var(--off-white);
}

.section-heading {
  margin-bottom: 80px;
}

.services-grid {
  display: grid;

  grid-template-columns:
    repeat(3, 1fr);

  border-top: 1px solid var(--gray-300);
}

.card {
  min-height: 400px;

  display: flex;
  flex-direction: column;

  padding: 34px 30px 30px;

  border-right: 1px solid var(--gray-300);
}

.card:first-child {
  padding-left: 0;
}

.card:last-child {
  border-right: 0;
}

.card-number {
  color: var(--gray-500);

  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.card h3 {
  margin-top: 118px;

  font-size: 27px;
  line-height: 1.05;

  letter-spacing: -0.04em;

  font-weight: 750;
}

.card p {
  max-width: 330px;

  margin-top: 18px;

  color: var(--gray-500);

  font-size: 15px;
  line-height: 1.65;
}

.card-link {
  margin-top: auto;

  padding-top: 35px;

  display: inline-flex;
  align-items: center;
  gap: 8px;

  font-size: 13px;
  font-weight: 800;
}

.card-link span {
  font-size: 18px;

  transition:
    transform 0.2s ease;
}

.card-link:hover span {
  transform: translate(3px, -3px);
}


/* =========================
   EXPERIENCE
========================= */

.experience {
  background: var(--white);
}

.experience-grid {
  display: grid;

  grid-template-columns:
    minmax(0, 1.2fr)
    minmax(280px, 0.8fr);

  gap: 120px;
}

.experience-main {
  max-width: 760px;
}

.experience-text {
  max-width: 610px;

  margin-top: 38px;

  color: var(--gray-500);

  font-size: 18px;
  line-height: 1.7;
}

.experience-stats {
  display: flex;
  flex-direction: column;

  border-top: 1px solid var(--gray-300);
}

.stat {
  display: flex;
  flex-direction: column;

  padding: 28px 0;

  border-bottom: 1px solid var(--gray-300);
}

.stat strong {
  font-size: 43px;

  line-height: 1;

  letter-spacing: -0.055em;
}

.stat span {
  margin-top: 8px;

  color: var(--gray-500);

  font-size: 12px;
  font-weight: 600;
}


/* =========================
   PREMIUM SERVICES
========================= */

.section-dark {
  color: var(--white);

  background: var(--black);
}

.premium-grid {
  display: grid;

  grid-template-columns:
    minmax(0, 1.15fr)
    minmax(280px, 0.85fr);

  gap: 120px;
}

.section-dark .eyebrow {
  color: #777773;
}

.premium-list {
  border-top: 1px solid #30302e;
}

.premium-item {
  display: grid;

  grid-template-columns: 40px 1fr;

  gap: 24px;

  padding: 29px 0;

  border-bottom: 1px solid #30302e;
}

.premium-item > span {
  color: #777773;

  font-size: 11px;
  font-weight: 800;
}

.premium-item p {
  max-width: 450px;

  font-size: 16px;
  line-height: 1.6;

  color: #d7d7d3;
}


/* =========================
   CONTACT
========================= */

.contact {
  background:
    linear-gradient(
      180deg,
      #ffffff 0%,
      #f7f7f5 100%
    );
}

.contact h2 {
  max-width: 850px;

  margin-bottom: 72px;
}

.contact-grid {
  display: grid;

  grid-template-columns:
    minmax(0, 1fr)
    minmax(280px, 0.65fr);

  gap: 120px;

  padding-top: 45px;

  border-top: 1px solid var(--gray-300);
}

.contact-main > p {
  max-width: 480px;

  margin-bottom: 32px;

  color: var(--gray-500);

  font-size: 18px;
  line-height: 1.65;
}

.contact-details {
  display: flex;
  flex-direction: column;

  border-top: 1px solid var(--gray-300);
}

.contact-detail {
  padding: 22px 0;

  border-bottom: 1px solid var(--gray-300);
}

.contact-detail > span {
  display: block;

  margin-bottom: 9px;

  color: var(--gray-500);

  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-detail a,
.contact-detail p {
  font-size: 15px;
  line-height: 1.7;
}

.contact-detail a {
  display: block;
}

.contact-detail a:hover {
  text-decoration: underline;
}


/* =========================
   FOOTER
========================= */

.site-footer {
  padding: 32px 0;

  color: var(--gray-500);

  background: var(--white);

  border-top: 1px solid var(--gray-200);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 30px;
}

.footer-inner > div:first-child {
  display: flex;
  align-items: center;
  gap: 18px;
}

.footer-logo {
  color: var(--black);

  font-size: 14px;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.footer-links {
  display: flex;
  gap: 22px;

  font-size: 12px;
  font-weight: 600;
}

.footer-links a:hover {
  color: var(--black);
}


/* =========================
   TABLET
========================= */

@media (max-width: 900px) {

  .section {
    padding: 100px 0;
  }

  .intro-grid,
  .experience-grid,
  .premium-grid,
  .contact-grid {
    grid-template-columns: 1fr;

    gap: 65px;
  }

  .intro-text {
    padding-top: 0;
  }

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

  .card {
    min-height: auto;

    padding: 34px 0;

    border-right: 0;

    border-bottom: 1px solid var(--gray-300);
  }

  .card:last-child {
    border-bottom: 0;
  }

  .card h3 {
    margin-top: 60px;
  }

  .experience-stats {
    max-width: 600px;
  }

  .contact-grid {
    padding-top: 35px;
  }
}


/* =========================
   MOBILE
========================= */

@media (max-width: 700px) {

  .container {
    width: min(
      calc(100% - 28px),
      var(--container)
    );
  }

  .section {
    padding: 82px 0;
  }

  .site-header {
    position: relative;
  }

  .nav {
    min-height: 68px;
  }

  .logo {
    font-size: 16px;
  }

  .nav nav {
    gap: 8px;
  }

  .nav nav a:not(.nav-cta) {
    display: none;
  }

  .nav-cta {
    padding: 10px 15px;
  }

  .hero {
    min-height: auto;

    padding: 85px 0 90px;
  }

  .hero::before,
  .hero::after {
    display: none;
  }

  h1 {
    font-size: clamp(
      58px,
      16vw,
      86px
    );
  }

  .hero-text {
    margin-top: 28px;

    font-size: 17px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;

    max-width: 330px;
  }

  .button {
    width: 100%;
  }

  .hero-location {
    align-items: flex-start;

    margin-top: 30px;

    line-height: 1.5;
  }

  .section-heading {
    margin-bottom: 55px;
  }

  .intro h2,
  .section-heading h2,
  .experience h2,
  .premium-grid h2,
  .contact h2 {
    font-size: clamp(
      43px,
      12vw,
      64px
    );
  }

  .intro-text {
    font-size: 17px;
  }

  .card {
    padding: 28px 0;
  }

  .card h3 {
    margin-top: 45px;

    font-size: 25px;
  }

  .experience-text {
    font-size: 17px;
  }

  .stat strong {
    font-size: 38px;
  }

  .premium-item {
    grid-template-columns: 32px 1fr;

    gap: 16px;
  }

  .premium-item p {
    font-size: 15px;
  }

  .contact h2 {
    margin-bottom: 45px;
  }

  .contact-main > p {
    font-size: 17px;
  }

  .footer-inner {
    align-items: flex-start;

    flex-direction: column;

    gap: 20px;
  }

  .footer-inner > div:first-child {
    align-items: flex-start;

    flex-direction: column;

    gap: 5px;
  }

  .footer-links {
    flex-wrap: wrap;
  }
}


/* =========================
   DECORATIONS MONTAGNE
========================= */

.mountain-decor {
  position: fixed;
  inset: 0;

  z-index: 1;

  pointer-events: none;

  overflow: hidden;
}


/* FLOCONS */

.snowflake {
  position: absolute;

  color: #bdbdb8;

  opacity: 0.28;

  font-family: Georgia, serif;

  animation:
    snow-drift 12s ease-in-out infinite;
}

.snowflake-1 {
  top: 18%;
  right: 11%;

  font-size: 13px;

  animation-delay: -2s;
}

.snowflake-2 {
  top: 42%;
  left: 7%;

  font-size: 10px;

  opacity: 0.2;

  animation-duration: 15s;

  animation-delay: -7s;
}

.snowflake-3 {
  top: 72%;
  right: 6%;

  font-size: 9px;

  opacity: 0.18;

  animation-duration: 18s;

  animation-delay: -10s;
}


/* PETITS SAPINS */

.pine {
  position: absolute;

  color: #74746f;

  opacity: 0.13;

  font-size: 18px;

  line-height: 1;

  transform-origin: bottom center;

  animation:
    pine-sway 8s ease-in-out infinite;
}

.pine-1 {
  right: 17%;
  top: 31%;

  animation-delay: -3s;
}

.pine-2 {
  left: 12%;
  top: 67%;

  font-size: 14px;

  animation-delay: -6s;
}


/* =========================
   MINIATURE PAIRE DE SKIS
========================= */

.ski-pair {
  position: absolute;

  right: 5%;
  bottom: 17%;

  width: 28px;
  height: 70px;

  opacity: 0.16;

  transform: rotate(17deg);

  animation:
    ski-float 9s ease-in-out infinite;
}

.ski {
  position: absolute;

  top: 0;

  width: 3px;
  height: 68px;

  border-radius: 999px;

  background: #555551;
}

.ski-left {
  left: 8px;
}

.ski-right {
  left: 17px;
}


/* =========================
   BATONS
========================= */

.ski-poles {
  position: absolute;

  left: 4%;
  bottom: 15%;

  width: 28px;
  height: 65px;

  opacity: 0.13;

  transform: rotate(-18deg);

  animation:
    poles-float 11s ease-in-out infinite;
}

.pole {
  position: absolute;

  width: 2px;
  height: 61px;

  border-radius: 999px;

  background: #555551;
}

.pole-left {
  left: 8px;
}

.pole-right {
  left: 18px;
}

.pole::after {
  content: "";

  position: absolute;

  bottom: -2px;
  left: -3px;

  width: 8px;
  height: 4px;

  border: 1px solid #555551;

  border-top: 0;

  border-radius: 0 0 8px 8px;
}


/* =========================
   ANIMATIONS
========================= */

@keyframes snow-drift {

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

  50% {
    transform:
      translate3d(12px, 9px, 0)
      rotate(8deg);
  }

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


@keyframes pine-sway {

  0% {
    transform: rotate(-2deg);
  }

  50% {
    transform: rotate(3deg);
  }

  100% {
    transform: rotate(-2deg);
  }
}


@keyframes ski-float {

  0% {
    transform:
      translate3d(0, 0, 0)
      rotate(17deg);
  }

  50% {
    transform:
      translate3d(-5px, -8px, 0)
      rotate(19deg);
  }

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


@keyframes poles-float {

  0% {
    transform:
      translate3d(0, 0, 0)
      rotate(-18deg);
  }

  50% {
    transform:
      translate3d(5px, -5px, 0)
      rotate(-15deg);
  }

  100% {
    transform:
      translate3d(0, 0, 0)
      rotate(-18deg);
  }
}


/* =========================
   CONTENU AU-DESSUS
========================= */

.site-header,
main,
.site-footer {
  position: relative;
  z-index: 2;
}


/* =========================
   ACCESSIBILITÉ
========================= */

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

  .snowflake,
  .pine,
  .ski-pair,
  .ski-poles {
    animation: none;
  }
}


/* =========================
   MOBILE
========================= */

@media (max-width: 700px) {

  .snowflake-1 {
    right: 7%;
  }

  .snowflake-2 {
    left: 4%;
  }

  .pine-1 {
    right: 5%;
    top: 29%;
  }

  .pine-2 {
    left: 5%;
  }

  .ski-pair {
    right: 3%;
    bottom: 22%;

    transform: scale(0.8) rotate(17deg);
  }

  .ski-poles {
    left: 2%;
    bottom: 22%;

    transform: scale(0.8) rotate(-18deg);
  }
}


/* =========================================================
   NOUVELLE DIRECTION ARTISTIQUE — DÉTAILS ALPINS
========================================================= */

.mountain-atmosphere {
  position: fixed;
  inset: 0;

  z-index: 1;

  pointer-events: none;

  overflow: hidden;

  opacity: 1;
}


/* ---------------------------------------------------------
   PRINCIPE COMMUN
--------------------------------------------------------- */

.alpine-detail {
  position: absolute;

  display: block;

  pointer-events: none;

  will-change: transform;
}


/* ---------------------------------------------------------
   FLOCONS
--------------------------------------------------------- */

.snowflake {
  color: #9d9d98;

  font-family: Georgia, serif;

  line-height: 1;

  opacity: 0.22;

  animation:
    alpine-float 10s ease-in-out infinite;
}

.detail-01 {
  top: 14%;
  left: 18%;

  font-size: 11px;

  animation-delay: -2s;
}

.detail-02 {
  top: 21%;
  right: 13%;

  font-size: 15px;

  opacity: 0.16;

  animation-duration: 13s;

  animation-delay: -7s;
}

.detail-03 {
  top: 38%;
  left: 6%;

  font-size: 9px;

  opacity: 0.17;

  animation-duration: 15s;

  animation-delay: -4s;
}

.detail-04 {
  top: 48%;
  right: 8%;

  font-size: 19px;

  opacity: 0.11;

  animation-duration: 11s;

  animation-delay: -6s;
}

.detail-05 {
  top: 67%;
  left: 16%;

  font-size: 12px;

  opacity: 0.13;

  animation-duration: 14s;

  animation-delay: -9s;
}

.detail-06 {
  top: 82%;
  right: 20%;

  font-size: 9px;

  opacity: 0.16;

  animation-duration: 12s;

  animation-delay: -3s;
}


/* ---------------------------------------------------------
   PETITS SAPINS
--------------------------------------------------------- */

.pine {
  width: 0;
  height: 0;

  border-left: 8px solid transparent;
  border-right: 8px solid transparent;

  border-bottom: 18px solid #777772;

  opacity: 0.12;

  transform-origin: center bottom;

  animation:
    tree-sway 8s ease-in-out infinite;
}

.pine::before {
  content: "";

  position: absolute;

  left: -6px;
  top: 6px;

  width: 0;
  height: 0;

  border-left: 6px solid transparent;
  border-right: 6px solid transparent;

  border-bottom: 13px solid #777772;
}

.pine::after {
  content: "";

  position: absolute;

  left: -1px;
  bottom: -24px;

  width: 2px;
  height: 8px;

  background: #777772;
}

.detail-07 {
  left: 10%;
  top: 29%;

  transform: scale(0.8);
}

.detail-08 {
  right: 9%;
  top: 57%;

  transform: scale(0.62);

  animation-delay: -3s;
}

.detail-09 {
  left: 27%;
  top: 89%;

  transform: scale(0.45);

  opacity: 0.08;

  animation-delay: -6s;
}


/* ---------------------------------------------------------
   MINI PAIRE DE SKIS
--------------------------------------------------------- */

.mini-skis {
  width: 27px;
  height: 70px;

  opacity: 0.14;

  transform-origin: center center;

  animation:
    skis-drift 12s ease-in-out infinite;
}

.mini-skis i {
  position: absolute;

  top: 0;

  width: 2px;
  height: 66px;

  border-radius: 999px;

  background: #4c4c49;

  display: block;
}

.mini-skis i::after {
  content: "";

  position: absolute;

  bottom: -2px;
  left: -2px;

  width: 6px;
  height: 6px;

  border-radius: 50%;

  background: #4c4c49;
}

.mini-skis i:first-child {
  left: 8px;

  transform: rotate(1deg);
}

.mini-skis i:last-child {
  left: 17px;

  transform: rotate(-1deg);
}

.detail-10 {
  right: 14%;
  top: 34%;

  transform:
    rotate(17deg)
    scale(0.72);

  animation-delay: -5s;
}

.detail-11 {
  left: 6%;
  bottom: 11%;

  transform:
    rotate(-15deg)
    scale(0.56);

  opacity: 0.10;

  animation-delay: -8s;
}


/* ---------------------------------------------------------
   BATONS
--------------------------------------------------------- */

.mini-poles {
  width: 29px;
  height: 66px;

  opacity: 0.11;

  transform-origin: center center;

  animation:
    poles-drift 13s ease-in-out infinite;
}

.mini-poles i {
  position: absolute;

  top: 0;

  width: 1.5px;
  height: 61px;

  background: #555552;

  display: block;
}

.mini-poles i::before {
  content: "";

  position: absolute;

  top: -1px;
  left: -1px;

  width: 4px;
  height: 5px;

  border-radius: 999px;

  border: 1px solid #555552;
}

.mini-poles i::after {
  content: "";

  position: absolute;

  bottom: -3px;
  left: -3px;

  width: 7px;
  height: 3px;

  border-bottom: 1px solid #555552;
  border-radius: 50%;
}

.mini-poles i:first-child {
  left: 8px;

  transform: rotate(-4deg);
}

.mini-poles i:last-child {
  left: 20px;

  transform: rotate(4deg);
}

.detail-12 {
  right: 3%;
  bottom: 12%;

  transform:
    rotate(13deg)
    scale(0.68);

  animation-delay: -4s;
}


/* ---------------------------------------------------------
   MICRO-MARQUES
--------------------------------------------------------- */

.little-snow {
  color: #777772;

  font-family: Arial, sans-serif;

  font-size: 13px;

  opacity: 0.11;

  animation:
    micro-pulse 7s ease-in-out infinite;
}

.detail-13 {
  left: 37%;
  top: 24%;

  animation-delay: -1s;
}

.detail-14 {
  right: 30%;
  top: 74%;

  font-size: 9px;

  animation-delay: -4s;
}

.detail-15 {
  left: 3%;
  top: 53%;

  font-size: 19px;

  animation-delay: -6s;
}


/* =========================================================
   REPÈRES DISCRETS DANS LES SECTIONS
========================================================= */

.section-mark {
  position: absolute;

  z-index: 1;

  pointer-events: none;

  user-select: none;

  color: #777772;

  opacity: 0.10;

  line-height: 1;
}

.section {
  position: relative;
}

.section-mark-intro {
  right: 7%;
  top: 22%;

  font-size: 28px;

  animation:
    mark-float 10s ease-in-out infinite;
}

.section-mark-services {
  left: 4%;
  top: 18%;

  font-size: 26px;

  animation:
    mark-float 12s ease-in-out infinite reverse;
}

.section-mark-experience {
  right: 5%;
  bottom: 18%;

  font-size: 28px;

  transform: rotate(10deg);

  animation:
    mark-ski 11s ease-in-out infinite;
}

.section-mark-dark {
  left: 6%;
  top: 20%;

  color: #ffffff;

  opacity: 0.16;

  font-size: 20px;

  animation:
    mark-float 14s ease-in-out infinite;
}

.section-mark-location {
  right: 5%;
  top: 24%;

  font-size: 24px;

  animation:
    mark-float 9s ease-in-out infinite reverse;
}

.section-mark-contact {
  left: 5%;
  bottom: 21%;

  font-size: 21px;

  animation:
    mark-float 13s ease-in-out infinite;
}


/* =========================================================
   ANIMATIONS
========================================================= */

@keyframes alpine-float {

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

  50% {
    transform:
      translate3d(8px, -9px, 0)
      rotate(7deg);
  }

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


@keyframes tree-sway {

  0% {
    transform:
      translate3d(0, 0, 0)
      rotate(-2deg);
  }

  50% {
    transform:
      translate3d(3px, -4px, 0)
      rotate(3deg);
  }

  100% {
    transform:
      translate3d(0, 0, 0)
      rotate(-2deg);
  }
}


@keyframes skis-drift {

  0% {
    transform:
      translate3d(0, 0, 0)
      rotate(17deg)
      scale(0.72);
  }

  50% {
    transform:
      translate3d(-7px, -9px, 0)
      rotate(20deg)
      scale(0.74);
  }

  100% {
    transform:
      translate3d(0, 0, 0)
      rotate(17deg)
      scale(0.72);
  }
}


@keyframes poles-drift {

  0% {
    transform:
      translate3d(0, 0, 0)
      rotate(13deg)
      scale(0.68);
  }

  50% {
    transform:
      translate3d(6px, -7px, 0)
      rotate(16deg)
      scale(0.70);
  }

  100% {
    transform:
      translate3d(0, 0, 0)
      rotate(13deg)
      scale(0.68);
  }
}


@keyframes micro-pulse {

  0% {
    opacity: 0.07;
  }

  50% {
    opacity: 0.15;
  }

  100% {
    opacity: 0.07;
  }
}


@keyframes mark-float {

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

  50% {
    transform:
      translate3d(5px, -7px, 0)
      rotate(4deg);
  }

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


@keyframes mark-ski {

  0% {
    transform:
      translate3d(0, 0, 0)
      rotate(10deg);
  }

  50% {
    transform:
      translate3d(-6px, -7px, 0)
      rotate(14deg);
  }

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


/* =========================================================
   APPARITION DES SECTIONS
========================================================= */

.reveal {
  opacity: 0;

  transform:
    translate3d(0, 24px, 0);

  transition:
    opacity 0.9s ease,
    transform 1s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.is-visible {
  opacity: 1;

  transform:
    translate3d(0, 0, 0);
}


/* =========================================================
   HEADER — CONTACT À DROITE
========================================================= */

.nav-contact {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav-phone {
  font-size: 12px;
  font-weight: 650;
  letter-spacing: -0.01em;
}

.nav-phone:hover {
  opacity: 0.5;
}


/* =========================================================
   PARALLAXE — TRANSITION DOUCE
========================================================= */

.mountain-atmosphere [data-depth] {
  transition:
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

  .mountain-atmosphere {
    opacity: 0.8;
  }

  .nav-contact {
    gap: 9px;
  }

  .nav-phone {
    display: none;
  }

  .detail-01 {
    left: 9%;
  }

  .detail-02 {
    right: 7%;
  }

  .detail-03 {
    left: 3%;
  }

  .detail-04 {
    right: 4%;
  }

  .detail-05 {
    left: 8%;
  }

  .detail-06 {
    right: 11%;
  }

  .detail-07 {
    left: 4%;
  }

  .detail-08 {
    right: 3%;
  }

  .detail-09 {
    display: none;
  }

  .detail-10 {
    right: 4%;
  }

  .detail-11 {
    left: 2%;
  }

  .detail-12 {
    right: 0;
  }

  .section-mark {
    opacity: 0.07;
  }
}


/* =========================================================
   ACCESSIBILITÉ
========================================================= */

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

  .alpine-detail,
  .section-mark {
    animation: none;
  }

  .reveal {
    opacity: 1;

    transform: none;

    transition: none;
  }
}


/* =========================================================
   LOCALISATION — CARTE PREMIUM
========================================================= */

.location-section {
  background: var(--white);
}


/* ---------------------------------------------------------
   EN-TÊTE DE SECTION
--------------------------------------------------------- */

.location-heading {
  display: grid;

  grid-template-columns:
    minmax(0, 1fr)
    minmax(280px, 0.6fr);

  gap: 100px;

  align-items: end;

  margin-bottom: 70px;
}

.location-heading h2 {
  font-size: clamp(
    46px,
    6vw,
    76px
  );

  line-height: 0.96;

  letter-spacing: -0.068em;

  font-weight: 750;
}

.location-intro {
  max-width: 430px;

  margin-bottom: 4px;

  color: var(--gray-500);

  font-size: 17px;
  line-height: 1.7;
}


/* ---------------------------------------------------------
   GRILLE CARTE + INFOS
--------------------------------------------------------- */

.location-layout {
  display: grid;

  grid-template-columns:
    minmax(0, 1.45fr)
    minmax(270px, 0.55fr);

  gap: 55px;

  align-items: stretch;
}


/* ---------------------------------------------------------
   CARTE
--------------------------------------------------------- */

.location-map {
  position: relative;

  min-height: 540px;

  overflow: hidden;

  border-radius: 22px;

  background: var(--off-white);

  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.07);
}

.location-map::before {
  content: "";

  position: absolute;

  inset: 0;

  z-index: 2;

  pointer-events: none;

  border: 1px solid rgba(0, 0, 0, 0.07);

  border-radius: 22px;
}

.location-map iframe {
  width: 100%;
  height: 100%;

  min-height: 540px;

  display: block;

  border: 0;

  filter:
    grayscale(0.75)
    contrast(0.92)
    brightness(1.04);

  transition:
    filter 0.5s ease;
}

.location-map:hover iframe {
  filter:
    grayscale(0.25)
    contrast(0.96)
    brightness(1.01);
}


/* ---------------------------------------------------------
   BOUTON SUR LA CARTE
--------------------------------------------------------- */

.map-link {
  position: absolute;

  z-index: 5;

  left: 24px;
  bottom: 24px;

  display: inline-flex;
  align-items: center;
  gap: 10px;

  min-height: 46px;

  padding: 0 17px;

  color: var(--black);

  background: rgba(255, 255, 255, 0.94);

  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  border: 1px solid rgba(0, 0, 0, 0.08);

  border-radius: 999px;

  font-size: 12px;
  font-weight: 750;

  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.10);

  transition:
    transform 0.2s ease,
    background 0.2s ease;
}

.map-link span {
  font-size: 17px;
}

.map-link:hover {
  transform: translateY(-2px);

  background: var(--white);
}


/* ---------------------------------------------------------
   COLONNE INFORMATIONS
--------------------------------------------------------- */

.location-information {
  display: flex;
  flex-direction: column;

  border-top: 1px solid var(--gray-300);
}

.location-point {
  padding: 25px 0;

  border-bottom: 1px solid var(--gray-300);
}

.location-label {
  display: block;

  margin-bottom: 11px;

  color: var(--gray-500);

  font-size: 10px;
  font-weight: 800;

  letter-spacing: 0.14em;

  text-transform: uppercase;
}

.location-point p,
.location-point a {
  font-size: 15px;

  line-height: 1.7;
}

.location-point a {
  display: block;
}

.location-point a:hover {
  text-decoration: underline;
}


/* ---------------------------------------------------------
   NOTE CABOCHE
--------------------------------------------------------- */

.location-note {
  margin-top: auto;

  padding-top: 28px;
}

.location-note p {
  color: var(--gray-500);
}


/* ---------------------------------------------------------
   BAS DE SECTION
--------------------------------------------------------- */

.location-footer {
  display: flex;

  align-items: center;
  justify-content: space-between;

  gap: 40px;

  margin-top: 35px;

  padding-top: 28px;

  border-top: 1px solid var(--gray-300);
}

.location-footer p {
  max-width: 600px;

  color: var(--gray-500);

  font-size: 14px;

  line-height: 1.6;
}

.location-footer strong {
  color: var(--black);
}

.location-footer > a {
  white-space: nowrap;

  font-size: 12px;
  font-weight: 750;
}

.location-footer > a span {
  margin-left: 7px;

  font-size: 16px;
}

.location-footer > a:hover {
  text-decoration: underline;
}


/* ---------------------------------------------------------
   VERSION TABLET
--------------------------------------------------------- */

@media (max-width: 900px) {

  .location-heading {
    grid-template-columns: 1fr;

    gap: 25px;

    margin-bottom: 50px;
  }

  .location-layout {
    grid-template-columns: 1fr;

    gap: 45px;
  }

  .location-information {
    max-width: 620px;
  }

  .location-map,
  .location-map iframe {
    min-height: 460px;
  }

  .location-footer {
    align-items: flex-start;

    flex-direction: column;

    gap: 18px;
  }
}


/* ---------------------------------------------------------
   MOBILE
--------------------------------------------------------- */

@media (max-width: 700px) {

  .location-heading {
    margin-bottom: 38px;
  }

  .location-intro {
    font-size: 16px;
  }

  .location-layout {
    gap: 38px;
  }

  .location-map {
    min-height: 370px;

    border-radius: 17px;
  }

  .location-map::before {
    border-radius: 17px;
  }

  .location-map iframe {
    min-height: 370px;
  }

  .map-link {
    left: 15px;
    bottom: 15px;

    min-height: 43px;

    padding: 0 14px;
  }

  .location-point {
    padding: 21px 0;
  }

  .location-footer {
    margin-top: 25px;

    padding-top: 23px;
  }
}


/* ---------------------------------------------------------
   MOUVEMENT SUBTIL DE LA CARTE
--------------------------------------------------------- */

.location-map {
  transform:
    translate3d(0, 0, 0);

  transition:
    transform 0.6s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.6s ease;
}

.location-map:hover {
  transform:
    translate3d(0, -3px, 0);

  box-shadow:
    0 25px 70px rgba(0, 0, 0, 0.10);
}


/* =========================================================
   FR / EN — SELECTEUR
========================================================= */

.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 5px;

  margin-right: 2px;
}

.language-button {
  appearance: none;
  border: 0;
  padding: 0;

  color: var(--gray-500);
  background: transparent;

  font-family: inherit;
  font-size: 10px;
  font-weight: 800;

  letter-spacing: 0.08em;

  cursor: pointer;

  transition:
    color 0.2s ease,
    opacity 0.2s ease;
}

.language-button:hover {
  color: var(--black);
}

.language-button.is-active {
  color: var(--black);
}

.language-separator {
  color: var(--gray-300);

  font-size: 10px;

  user-select: none;
}


/* =========================================================
   MOBILE — HEADER
========================================================= */

@media (max-width: 700px) {

  .nav {
    gap: 12px;
  }

  .nav-contact {
    margin-left: auto;

    display: flex;
    align-items: center;

    gap: 12px;
  }

  .language-switch {
    margin-right: 2px;
  }

  .language-button {
    font-size: 9px;
  }

  .nav-cta {
    padding: 10px 14px;

    font-size: 11px;
  }

}


/* =========================================================
   MOBILE — TOUCH TARGETS
========================================================= */

@media (max-width: 700px) {

  .nav nav a,
  .nav-contact a,
  .language-button,
  .card-link,
  .location-footer a,
  .map-link {
    -webkit-tap-highlight-color: transparent;
  }

  .card-link {
    min-height: 42px;

    align-self: flex-start;

    padding-top: 0;
  }

}


/* =========================================================
   MOBILE — PARALLAXE DESACTIVEE
========================================================= */

@media (max-width: 700px) {

  .mountain-atmosphere [data-depth] {
    transition: none;
  }

}


/* =========================================================
   MOBILE — DECORATIONS
========================================================= */

@media (max-width: 700px) {

  .section-mark {
    display: block;

    pointer-events: none;
  }

  .detail-10,
  .detail-11,
  .detail-12 {
    opacity: 0.75;
  }

}


/* =========================================================
   PETITS ECRANS
========================================================= */

@media (max-width: 420px) {

  .container {
    width: calc(100% - 24px);
  }

  .nav {
    min-height: 64px;
  }

  .logo {
    font-size: 15px;
  }

  .nav-contact {
    gap: 8px;
  }

  .nav-cta {
    padding: 9px 12px;

    font-size: 10px;
  }

  .hero {
    padding-top: 72px;
    padding-bottom: 78px;
  }

  .hero-actions {
    max-width: none;
  }

  .hero-location {
    max-width: 280px;
  }

  .location-map,
  .location-map iframe {
    min-height: 320px;
  }

  .location-footer > a {
    white-space: normal;

    line-height: 1.5;
  }

}


/* =========================================================
   IPHONE — ESPACEMENTS
========================================================= */

@media (max-width: 390px) {

  .section {
    padding: 72px 0;
  }

  h1 {
    font-size: 54px;
  }

  .intro h2,
  .section-heading h2,
  .experience h2,
  .premium-grid h2,
  .contact h2,
  .location-heading h2 {
    font-size: 41px;
  }

  .hero-text {
    font-size: 16px;
  }

  .intro-text {
    font-size: 16px;
  }

  .location-intro {
    font-size: 15px;
  }

}


/* =========================================================
   TABLET — HEADER
========================================================= */

@media (min-width: 701px) and (max-width: 1000px) {

  .nav {
    gap: 20px;
  }

  .nav nav {
    gap: 18px;
  }

  .nav-phone {
    display: none;
  }

  .nav-contact {
    display: flex;
    align-items: center;
    gap: 13px;
  }

}


/* =========================================================
   CONTENU TOUJOURS AU-DESSUS DES DECORATIONS
========================================================= */

.site-header,
main,
.site-footer,
.reveal,
.container {
  isolation: isolate;
}


/* =========================================================
   PERFORMANCE MOBILE
========================================================= */

@media (max-width: 700px) {

  .mountain-atmosphere {
    position: absolute;
  }

  .alpine-detail {
    will-change: auto;
  }

}


/* =========================================================
   ACCESSIBILITE
========================================================= */

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

  .language-button,
  .button,
  .card-link,
  .map-link {
    transition: none;
  }

}


/* =========================================================
   PAGE TARIFS — DIRECTION ARTISTIQUE
========================================================= */

.pricing-hero {
  position: relative;

  padding: 135px 0 105px;

  background:
    linear-gradient(
      180deg,
      #ffffff 0%,
      #f8f8f6 100%
    );

  border-bottom: 1px solid var(--gray-100);

  overflow: hidden;
}

.pricing-hero::after {
  content: "";

  position: absolute;

  width: 560px;
  height: 560px;

  right: -220px;
  top: -170px;

  border-radius: 50%;

  border: 1px solid rgba(0, 0, 0, 0.045);

  pointer-events: none;
}

.pricing-hero-inner {
  position: relative;
  z-index: 2;

  display: grid;

  grid-template-columns:
    minmax(0, 1fr)
    auto;

  gap: 80px;

  align-items: end;
}

.pricing-title {
  max-width: 900px;

  font-size: clamp(
    60px,
    8vw,
    110px
  );

  line-height: 0.9;

  letter-spacing: -0.08em;

  font-weight: 800;
}

.pricing-title-muted {
  display: block;

  color: #888884;
}

.pricing-intro {
  max-width: 590px;

  margin-top: 34px;

  color: var(--gray-500);

  font-size: 19px;

  line-height: 1.65;
}

.pricing-note {
  display: flex;
  align-items: flex-end;

  gap: 13px;

  padding-bottom: 8px;
}

.pricing-note-label {
  font-size: 14px;

  font-weight: 900;

  letter-spacing: 0.04em;
}

.pricing-note-text {
  max-width: 130px;

  color: var(--gray-500);

  font-size: 11px;

  line-height: 1.4;
}


/* =========================================================
   INDEX TARIFS
========================================================= */

.pricing-index {
  position: sticky;
  top: 78px;

  z-index: 50;

  background: rgba(255, 255, 255, 0.93);

  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);

  border-bottom: 1px solid var(--gray-100);
}

.pricing-index-inner {
  min-height: 58px;

  display: flex;
  align-items: center;

  gap: 25px;

  overflow-x: auto;

  scrollbar-width: none;
}

.pricing-index-inner::-webkit-scrollbar {
  display: none;
}

.pricing-index-inner a {
  flex: 0 0 auto;

  color: var(--gray-500);

  font-size: 11px;
  font-weight: 750;

  transition: color 0.2s ease;
}

.pricing-index-inner a:hover {
  color: var(--black);
}


/* =========================================================
   SECTIONS TARIFS
========================================================= */

.pricing-section {
  position: relative;

  padding: 125px 0;
}

.pricing-section-light {
  background: var(--off-white);
}

.pricing-section-heading {
  display: grid;

  grid-template-columns:
    minmax(0, 1fr)
    minmax(280px, 0.6fr);

  gap: 100px;

  align-items: end;

  margin-bottom: 65px;
}

.pricing-section-heading h2 {
  font-size: clamp(
    48px,
    6vw,
    78px
  );

  line-height: 0.95;

  letter-spacing: -0.07em;

  font-weight: 750;
}

.pricing-section-heading > p {
  max-width: 410px;

  color: var(--gray-500);

  font-size: 16px;

  line-height: 1.7;
}


/* =========================================================
   CARTES TARIFAIRES
========================================================= */

.pricing-cards {
  display: grid;

  grid-template-columns:
    repeat(3, minmax(0, 1fr));

  gap: 14px;
}

.price-card {
  min-height: 430px;

  display: flex;
  flex-direction: column;

  padding: 27px;

  background: var(--white);

  border: 1px solid var(--gray-200);

  border-radius: 18px;

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.price-card:hover {
  transform: translateY(-4px);

  border-color: #c9c9c5;

  box-shadow:
    0 22px 55px rgba(0, 0, 0, 0.07);
}

.price-card-top {
  position: relative;

  min-height: 165px;
}

.price-card-kicker {
  display: inline-block;

  margin-bottom: 16px;

  color: var(--gray-500);

  font-size: 9px;
  font-weight: 900;

  letter-spacing: 0.15em;
}

.price-card h3 {
  max-width: 280px;

  font-size: 25px;

  line-height: 1.05;

  letter-spacing: -0.04em;

  font-weight: 750;
}

.price-card-top p {
  margin-top: 12px;

  color: var(--gray-500);

  font-size: 13px;

  line-height: 1.5;
}


/* =========================================================
   PRIX
========================================================= */

.price-row {
  min-height: 55px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 0 0;

  border-top: 1px solid var(--gray-200);

  color: var(--gray-500);

  font-size: 12px;
}

.price-row strong {
  color: var(--black);

  font-size: 18px;

  letter-spacing: -0.035em;
}

.price-row-highlight {
  color: var(--black);
}

.price-row-highlight strong {
  font-size: 24px;
}


/* =========================================================
   PREMIUM
========================================================= */

.price-card-premium {
  border-color: #bdbdb8;

  box-shadow:
    0 18px 50px rgba(0, 0, 0, 0.045);
}

.price-card-premium:hover {
  border-color: #9b9b96;
}

.premium-label {
  position: absolute;

  top: 0;
  right: 0;

  padding: 6px 9px;

  color: var(--black);

  background: var(--accent);

  border-radius: 999px;

  font-size: 8px;
  font-weight: 900;

  letter-spacing: 0.08em;
}

.price-card-dark {
  color: var(--white);

  background: var(--black);

  border-color: var(--black);
}

.price-card-dark:hover {
  border-color: var(--black);

  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.18);
}

.price-card-dark .price-card-kicker,
.price-card-dark .price-card-top p {
  color: #888884;
}

.price-card-dark .price-row {
  color: #999993;

  border-color: #30302e;
}

.price-card-dark .price-row strong,
.price-card-dark h3 {
  color: var(--white);
}


/* =========================================================
   LISTES SIMPLES
========================================================= */

.simple-price-list {
  border-top: 1px solid var(--gray-300);
}

.simple-price-item {
  min-height: 105px;

  display: grid;

  grid-template-columns:
    minmax(0, 1.2fr)
    150px
    150px;

  gap: 25px;

  align-items: center;

  border-bottom: 1px solid var(--gray-300);
}

.simple-price-item strong {
  display: block;

  font-size: 18px;

  letter-spacing: -0.025em;
}

.simple-price-item small {
  display: block;

  margin-top: 6px;

  color: var(--gray-500);

  font-size: 12px;
}

.simple-price-item > span {
  color: var(--gray-500);

  font-size: 13px;
}

.simple-price-item > span b {
  color: var(--black);
}

.simple-price-item-premium strong {
  font-size: 20px;
}


/* =========================================================
   CARTES COMPACTES
========================================================= */

.compact-grid {
  display: grid;

  grid-template-columns:
    repeat(4, minmax(0, 1fr));

  gap: 12px;
}

.compact-card {
  min-height: 190px;

  display: flex;
  flex-direction: column;
  justify-content: space-between;

  padding: 23px;

  background: var(--white);

  border: 1px solid var(--gray-200);

  border-radius: 15px;
}

.compact-card > span {
  color: var(--gray-500);

  font-size: 9px;
  font-weight: 900;

  letter-spacing: 0.12em;
}

.compact-card strong {
  display: block;

  margin-top: 50px;

  font-size: 22px;

  line-height: 1;

  letter-spacing: -0.045em;
}

.compact-card small {
  color: var(--gray-500);

  font-size: 11px;
}


/* =========================================================
   OUTDOOR
========================================================= */

.outdoor-grid {
  display: grid;

  grid-template-columns:
    repeat(4, minmax(0, 1fr));

  gap: 12px;
}

.outdoor-card {
  min-height: 175px;

  display: flex;
  flex-direction: column;
  justify-content: space-between;

  padding: 23px;

  background: var(--white);

  border: 1px solid var(--gray-200);

  border-radius: 15px;

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.outdoor-card:hover {
  transform: translateY(-3px);

  box-shadow:
    0 15px 35px rgba(0, 0, 0, 0.06);
}

.outdoor-card > span {
  color: var(--gray-500);

  font-size: 9px;
  font-weight: 900;

  letter-spacing: 0.11em;
}

.outdoor-card strong {
  font-size: 22px;

  line-height: 1;

  letter-spacing: -0.04em;
}

.outdoor-card small {
  color: var(--gray-500);

  font-size: 11px;
}


/* =========================================================
   STOCKAGE
========================================================= */

.pricing-storage {
  background: var(--off-white);
}

.storage-grid {
  display: grid;

  grid-template-columns:
    repeat(4, minmax(0, 1fr));

  gap: 12px;
}

.storage-card {
  min-height: 230px;

  display: flex;
  flex-direction: column;
  justify-content: space-between;

  padding: 26px;

  background: var(--white);

  border: 1px solid var(--gray-200);

  border-radius: 17px;
}

.storage-card > span {
  color: var(--gray-500);

  font-size: 9px;

  font-weight: 900;

  letter-spacing: 0.12em;
}

.storage-card strong {
  font-size: 32px;

  line-height: 0.95;

  letter-spacing: -0.06em;
}

.storage-card small {
  color: var(--gray-500);

  font-size: 11px;
}

.storage-card-featured {
  color: var(--white);

  background: var(--black);

  border-color: var(--black);
}

.storage-card-featured > span,
.storage-card-featured small {
  color: #8a8a84;
}


/* =========================================================
   CONTACT TARIFS
========================================================= */

.pricing-contact {
  padding: 125px 0;

  color: var(--white);

  background: var(--black);
}

.pricing-contact-inner {
  display: grid;

  grid-template-columns:
    minmax(0, 1fr)
    minmax(300px, 0.6fr);

  gap: 120px;

  align-items: end;
}

.pricing-contact h2 {
  max-width: 780px;

  font-size: clamp(
    48px,
    6vw,
    76px
  );

  line-height: 0.95;

  letter-spacing: -0.07em;
}

.pricing-contact-actions p {
  max-width: 430px;

  margin-bottom: 30px;

  color: #999993;

  font-size: 15px;

  line-height: 1.7;
}

.pricing-contact .button-primary {
  color: var(--black);

  background: var(--white);
}

.pricing-email {
  display: block;

  margin-top: 22px;

  color: #bbbbB5;

  font-size: 13px;
}

.pricing-email:hover {
  color: var(--white);

  text-decoration: underline;
}


/* =========================================================
   APPARITION
========================================================= */

.reveal-pricing {
  opacity: 0;

  transform:
    translate3d(0, 24px, 0);

  transition:
    opacity 0.8s ease,
    transform 0.9s cubic-bezier(
      0.22,
      1,
      0.36,
      1
    );
}

.reveal-pricing.is-visible {
  opacity: 1;

  transform:
    translate3d(0, 0, 0);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1050px) {

  .pricing-cards {
    grid-template-columns:
      repeat(2, minmax(0, 1fr));
  }

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

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

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

}


/* =========================================================
   TABLET / PETIT DESKTOP
========================================================= */

@media (max-width: 900px) {

  .pricing-hero {
    padding: 105px 0 85px;
  }

  .pricing-hero-inner,
  .pricing-section-heading,
  .pricing-contact-inner {
    grid-template-columns: 1fr;

    gap: 42px;
  }

  .pricing-note {
    align-items: center;
  }

  .pricing-note-text {
    max-width: none;
  }

  .pricing-section {
    padding: 95px 0;
  }

  .simple-price-item {
    grid-template-columns:
      minmax(0, 1fr)
      130px
      130px;
  }

  .pricing-contact {
    padding: 95px 0;
  }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

  .pricing-hero {
    padding: 78px 0 72px;
  }

  .pricing-hero::after {
    display: none;
  }

  .pricing-title {
    font-size: clamp(
      52px,
      15vw,
      76px
    );
  }

  .pricing-intro {
    margin-top: 26px;

    font-size: 16px;
  }

  .pricing-note {
    padding-bottom: 0;
  }

  .pricing-index {
    position: sticky;
    top: 0;
  }

  .pricing-index-inner {
    min-height: 52px;

    gap: 21px;
  }

  .pricing-index-inner a {
    font-size: 10px;
  }

  .pricing-section {
    padding: 76px 0;
  }

  .pricing-section-heading {
    gap: 23px;

    margin-bottom: 42px;
  }

  .pricing-section-heading h2 {
    font-size: 48px;
  }

  .pricing-section-heading > p {
    font-size: 15px;
  }

  .pricing-cards {
    grid-template-columns: 1fr;

    gap: 12px;
  }

  .price-card {
    min-height: 390px;

    padding: 24px;
  }

  .price-card-top {
    min-height: 145px;
  }

  .price-card h3 {
    font-size: 24px;
  }

  .simple-price-item {
    min-height: auto;

    grid-template-columns: 1fr;

    gap: 7px;

    padding: 23px 0;
  }

  .simple-price-item > span {
    display: inline-block;
  }

  .simple-price-item > span:last-child {
    margin-top: 4px;
  }

  .compact-grid,
  .outdoor-grid,
  .storage-grid {
    grid-template-columns: 1fr;
  }

  .compact-card,
  .outdoor-card {
    min-height: 155px;
  }

  .storage-card {
    min-height: 190px;
  }

  .storage-card strong {
    font-size: 29px;
  }

  .pricing-contact {
    padding: 82px 0;
  }

  .pricing-contact h2 {
    font-size: 48px;
  }

  .pricing-contact-actions p {
    font-size: 14px;
  }

}


/* =========================================================
   TRÈS PETITS ÉCRANS
========================================================= */

@media (max-width: 390px) {

  .pricing-title {
    font-size: 50px;
  }

  .pricing-section-heading h2,
  .pricing-contact h2 {
    font-size: 42px;
  }

  .price-card {
    padding: 21px;
  }

  .price-row-highlight strong {
    font-size: 22px;
  }

}


/* =========================================================
   RÉDUCTION DES ANIMATIONS
========================================================= */

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

  .reveal-pricing,
  .price-card,
  .outdoor-card {
    transition: none;
  }

  .reveal-pricing {
    opacity: 1;

    transform: none;
  }

}


/* =========================================================
   TARIFS — MOBILE / RESPONSIVE PREMIUM
========================================================= */


/* ---------------------------------------------------------
   TABLETTE
--------------------------------------------------------- */

@media (max-width: 1050px) {

  .pricing-hero-layout {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .pricing-hero-side {
    display: flex;
    align-items: center;
    gap: 14px;
  }

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

  .simple-pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .storage-pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

}


/* ---------------------------------------------------------
   TABLETTE / PETIT DESKTOP
--------------------------------------------------------- */

@media (max-width: 900px) {

  .pricing-hero {
    padding: 100px 0 80px;
  }

  .pricing-hero-layout {
    gap: 30px;
  }

  .pricing-guide-inner {
    gap: 15px;
  }

  .pricing-category {
    padding: 85px 0;
  }

  .pricing-category-header {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .pricing-category-split {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .pricing-help-grid {
    grid-template-columns: 1fr;
    gap: 55px;
  }

}


/* ---------------------------------------------------------
   MOBILE
--------------------------------------------------------- */

@media (max-width: 700px) {


  /* =========================
     HEADER
  ========================== */

  .site-header .nav {
    min-height: 66px;

    display: flex;
    align-items: center;

    gap: 10px;
  }

  .site-header .nav nav {
    display: none;
  }

  .site-header .nav-contact {
    margin-left: auto;

    gap: 9px;
  }

  .site-header .nav-phone {
    display: none;
  }

  .site-header .language-switch {
    margin-right: 0;
  }

  .site-header .nav-cta {
    min-height: 42px;

    padding: 0 14px;

    font-size: 10px;
  }


  /* =========================
     HERO
  ========================== */

  .pricing-hero {
    padding: 76px 0 70px;
  }

  .pricing-title {
    max-width: 100%;

    font-size: clamp(
      52px,
      15vw,
      76px
    );

    line-height: 0.91;
  }

  .pricing-hero-text {
    max-width: 335px;

    margin-top: 25px;

    font-size: 16px;

    line-height: 1.6;
  }

  .pricing-hero-side {
    display: flex;

    align-items: center;

    gap: 11px;
  }

  .season-badge {
    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    font-size: 11px;

    font-weight: 900;
  }


  /* =========================
     GUIDE
  ========================== */

  .pricing-guide {
    overflow: hidden;
  }

  .pricing-guide-inner {
    min-height: 55px;

    width: max-content;

    display: flex;
    align-items: center;

    gap: 13px;

    padding-right: 20px;
  }

  .pricing-guide-inner strong {
    font-size: 10px;

    white-space: nowrap;
  }

  .pricing-guide-inner > span {
    font-size: 9px;
  }

  .guide-arrow {
    font-size: 15px;
  }


  /* =========================
     CATEGORIES
  ========================== */

  .pricing-categories {
    padding: 0;
  }

  .pricing-section-intro {
    padding: 78px 0 15px;
  }

  .pricing-section-intro h2 {
    font-size: 48px;

    line-height: 0.96;

    letter-spacing: -0.065em;
  }

  .pricing-category {
    padding: 72px 0;

    border-top: 1px solid var(--gray-200);
  }

  .pricing-category-header {
    gap: 22px;

    margin-bottom: 38px;
  }


  /* =========================
     TITRE CATÉGORIE
  ========================== */

  .category-title {
    display: flex;

    align-items: flex-start;

    gap: 15px;
  }

  .category-number {
    flex: 0 0 auto;

    padding-top: 4px;

    color: var(--gray-500);

    font-size: 10px;

    font-weight: 800;
  }

  .category-kicker {
    margin-bottom: 9px;

    color: var(--gray-500);

    font-size: 9px;

    font-weight: 900;

    letter-spacing: 0.14em;
  }

  .category-title h3 {
    font-size: 45px;

    line-height: 0.95;

    letter-spacing: -0.065em;
  }

  .category-description {
    max-width: 340px;

    font-size: 15px;

    line-height: 1.6;
  }


  /* =========================
     CARTES ÉQUIPEMENT
  ========================== */

  .equipment-grid {
    grid-template-columns: 1fr;

    gap: 11px;
  }

  .equipment-card {
    min-height: 0;

    padding: 23px;

    border-radius: 17px;
  }

  .equipment-card-header {
    min-height: 0;
  }

  .equipment-card-header h4 {
    margin-top: 7px;

    font-size: 24px;

    line-height: 1.03;

    letter-spacing: -0.04em;
  }

  .equipment-card-header p {
    max-width: 260px;

    margin-top: 8px;

    font-size: 12px;
  }


  /* =========================
     PRIX PRINCIPAL
  ========================== */

  .main-price {
    display: flex;

    align-items: baseline;

    gap: 5px;

    margin: 28px 0 18px;
  }

  .main-price span {
    color: var(--gray-500);

    font-size: 11px;
  }

  .main-price strong {
    font-size: 42px;

    line-height: 0.9;

    letter-spacing: -0.065em;
  }

  .main-price small {
    color: var(--gray-500);

    font-size: 11px;
  }


  /* =========================
     DUREES
  ========================== */

  .duration-list {
    border-top: 1px solid var(--gray-200);
  }

  .duration-list button {
    width: 100%;

    min-height: 51px;

    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 16px;

    padding: 0;

    border: 0;

    border-bottom: 1px solid var(--gray-200);

    background: transparent;

    color: var(--gray-500);

    font-family: inherit;

    font-size: 12px;

    text-align: left;
  }

  .duration-list button:last-child {
    border-bottom: 0;
  }

  .duration-list button strong {
    color: var(--black);

    font-size: 16px;
  }


  /* =========================
     CARTE PREMIUM
  ========================== */

  .equipment-card-premium {
    box-shadow:
      0 18px 45px rgba(0, 0, 0, 0.06);
  }

  .equipment-card-dark {
    color: var(--white);

    background: var(--black);
  }

  .equipment-card-dark .duration-list {
    border-color: #30302e;
  }

  .equipment-card-dark .duration-list button {
    color: #999993;

    border-color: #30302e;
  }

  .equipment-card-dark .duration-list button strong,
  .equipment-card-dark .equipment-card-header h4 {
    color: var(--white);
  }


  /* =========================
     NOTE CONSEIL
  ========================== */

  .pricing-category-note {
    display: grid;

    grid-template-columns: 1fr;

    gap: 10px;

    margin-top: 25px;

    padding-top: 22px;
  }

  .pricing-category-note a {
    margin-top: 7px;

    align-self: flex-start;
  }


  /* =========================
     SIMPLES CARTES
  ========================== */

  .simple-pricing-grid {
    grid-template-columns: 1fr;

    gap: 10px;
  }

  .simple-price-card {
    min-height: 170px;

    padding: 23px;

    border-radius: 16px;
  }

  .simple-price-card strong {
    margin-top: 36px;

    font-size: 35px;

    line-height: 0.95;

    letter-spacing: -0.055em;
  }

  .pricing-category-split .category-description {
    margin-bottom: 22px;
  }


  /* =========================
     ACCESSOIRES
  ========================== */

  .accessory-list {
    border-top: 1px solid var(--gray-200);
  }

  .accessory-item {
    min-height: 82px;

    display: grid;

    grid-template-columns: 1fr auto;

    gap: 20px;

    align-items: center;

    padding: 17px 0;

    border-bottom: 1px solid var(--gray-200);
  }

  .accessory-item strong {
    display: block;

    font-size: 16px;

    line-height: 1.1;
  }

  .accessory-item div span {
    display: block;

    margin-top: 5px;

    color: var(--gray-500);

    font-size: 10px;
  }

  .accessory-item > span {
    color: var(--black);

    font-size: 17px;

    font-weight: 800;
  }


  /* =========================
     STOCKAGE
  ========================== */

  .storage-pricing-grid {
    grid-template-columns: 1fr;

    gap: 10px;
  }

  .storage-pricing-grid > div {
    min-height: 170px;

    display: flex;

    flex-direction: column;

    justify-content: space-between;

    padding: 23px;

    border-radius: 16px;

    border: 1px solid var(--gray-200);

    background: var(--white);
  }

  .storage-pricing-grid > div span {
    color: var(--gray-500);

    font-size: 9px;

    font-weight: 900;

    letter-spacing: 0.12em;
  }

  .storage-pricing-grid > div strong {
    font-size: 34px;

    line-height: 0.95;

    letter-spacing: -0.055em;
  }

  .storage-pricing-grid > div small {
    color: var(--gray-500);

    font-size: 11px;
  }

  .storage-pricing-grid .storage-featured {
    color: var(--white);

    background: var(--black);

    border-color: var(--black);
  }

  .storage-pricing-grid .storage-featured span,
  .storage-pricing-grid .storage-featured small {
    color: #8a8a84;
  }


  /* =========================
     AIDE
  ========================== */

  .pricing-help {
    padding: 78px 0;
  }

  .pricing-help-grid {
    grid-template-columns: 1fr;

    gap: 38px;
  }

  .pricing-help h2 {
    font-size: 45px;

    line-height: 0.96;

    letter-spacing: -0.065em;
  }

  .pricing-help-grid > div:last-child p {
    font-size: 16px;

    line-height: 1.65;
  }


  /* =========================
     CTA FINAL
  ========================== */

  .pricing-reservation {
    padding: 82px 0;
  }

  .pricing-reservation h2 {
    font-size: 49px;

    line-height: 0.95;

    letter-spacing: -0.065em;
  }

  .reservation-actions {
    align-items: stretch;

    flex-direction: column;

    margin-top: 38px;

    gap: 15px;
  }

  .reservation-actions .button {
    width: 100%;
  }

  .reservation-email {
    align-self: center;

    font-size: 12px;
  }


  /* =========================
     FOOTER
  ========================== */

  .site-footer .footer-inner {
    align-items: flex-start;

    flex-direction: column;

    gap: 18px;
  }

  .site-footer .footer-links {
    flex-wrap: wrap;

    gap: 16px;
  }

}


/* =========================================================
   TRÈS PETITS ÉCRANS
========================================================= */

@media (max-width: 390px) {

  .pricing-title {
    font-size: 50px;
  }

  .pricing-section-intro h2,
  .pricing-help h2,
  .pricing-reservation h2 {
    font-size: 41px;
  }

  .category-title h3 {
    font-size: 41px;
  }

  .equipment-card {
    padding: 20px;
  }

  .main-price strong {
    font-size: 39px;
  }

  .simple-price-card {
    padding: 20px;
  }

  .accessory-item {
    gap: 12px;
  }

}


/* =========================================================
   ACCESSIBILITÉ
========================================================= */

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

  .price-card,
  .equipment-card,
  .simple-price-card,
  .outdoor-card,
  .storage-card,
  .reveal-pricing {
    transition: none !important;
  }

  .reveal-pricing {
    opacity: 1;

    transform: none;
  }

}


/* =========================================================
   IMPRESSION
========================================================= */

@media print {

  .site-header,
  .pricing-index,
  .language-switch,
  .nav-cta,
  .pricing-reservation {
    display: none !important;
  }

  .pricing-section {
    padding: 35px 0;
  }

  .pricing-hero {
    padding: 40px 0;
  }

  .equipment-card,
  .simple-price-card,
  .storage-pricing-grid > div {
    break-inside: avoid;
  }

}


/* =========================================================
   TARIFS — REFINEMENT ART DIRECTOR
========================================================= */

:root {
  --pricing-accent: #d9ff32;
  --pricing-soft: #f3f3ef;
}


/* ---------------------------------------------------------
   HERO
--------------------------------------------------------- */

.pricing-hero {
  padding: 125px 0 88px;
}

.pricing-hero-inner {
  max-width: 1220px;
}

.pricing-title {
  max-width: 760px;
}

.pricing-hero-meta {
  display: inline-flex;
  align-items: center;
  gap: 9px;

  margin-top: 32px;

  color: var(--gray-500);

  font-size: 10px;
  font-weight: 800;

  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.pricing-accent-dot {
  width: 7px;
  height: 7px;

  flex: 0 0 auto;

  border-radius: 50%;

  background: var(--pricing-accent);

  box-shadow:
    0 0 0 5px rgba(217, 255, 50, 0.15);
}


/* ---------------------------------------------------------
   NOTE 2026
--------------------------------------------------------- */

.pricing-note {
  align-items: center;
}

.pricing-note-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-width: 48px;
  min-height: 48px;

  border-radius: 50%;

  color: var(--black);

  background: var(--pricing-accent);
}


/* ---------------------------------------------------------
   BARRE DE PARCOURS
--------------------------------------------------------- */

.pricing-guide {
  background: var(--black);

  color: var(--white);
}

.pricing-guide-inner {
  min-height: 68px;

  display: flex;
  align-items: center;

  gap: 22px;
}

.pricing-guide-inner > span:first-child {
  color: var(--pricing-accent);

  font-size: 11px;
  font-weight: 900;
}

.pricing-guide-inner strong {
  font-size: 12px;
  font-weight: 700;
}

.guide-arrow {
  color: #686864;

  font-size: 14px;
}


/* ---------------------------------------------------------
   INTRO LOCATION
--------------------------------------------------------- */

.pricing-section-intro {
  max-width: 760px;

  padding: 115px 0 40px;
}

.pricing-section-intro h2 {
  max-width: 720px;

  font-size: clamp(
    52px,
    7vw,
    84px
  );

  line-height: 0.94;

  letter-spacing: -0.075em;
}


/* ---------------------------------------------------------
   CATEGORIE
--------------------------------------------------------- */

.pricing-category {
  padding: 105px 0 115px;

  border-top: 1px solid var(--gray-200);
}

.pricing-category-header {
  margin-bottom: 55px;
}

.category-title {
  align-items: flex-start;
}

.category-number {
  color: var(--gray-500);

  font-size: 11px;
  font-weight: 900;
}

.category-kicker {
  color: var(--gray-500);

  font-size: 9px;
  font-weight: 900;

  letter-spacing: 0.16em;
}

.category-title h3 {
  font-size: clamp(
    42px,
    5vw,
    64px
  );

  letter-spacing: -0.065em;
}


/* ---------------------------------------------------------
   CARTES ÉQUIPEMENT
--------------------------------------------------------- */

.equipment-grid {
  display: grid;

  grid-template-columns:
    repeat(3, minmax(0, 1fr));

  gap: 16px;
}

.equipment-card {
  min-height: 410px;

  padding: 28px;

  border: 1px solid var(--gray-200);

  border-radius: 20px;

  background: var(--white);

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease,
    opacity 0.3s ease;
}

.equipment-card:hover {
  transform: translateY(-4px);

  border-color: #c7c7c2;

  box-shadow:
    0 24px 65px rgba(0, 0, 0, 0.07);
}

.equipment-card.is-muted {
  opacity: 0.42;
}

.equipment-card-premium {
  border-color: #b8b8b2;

  background:
    linear-gradient(
      160deg,
      #ffffff 0%,
      #fbfbf7 100%
    );
}

.equipment-card-premium::before {
  content: "";

  display: block;

  width: 34px;
  height: 4px;

  margin-bottom: 22px;

  border-radius: 999px;

  background: var(--pricing-accent);
}

.equipment-card-dark {
  background: var(--black);

  border-color: var(--black);

  box-shadow:
    0 18px 50px rgba(0, 0, 0, 0.11);
}

.equipment-card-dark:hover {
  border-color: var(--black);
}


/* ---------------------------------------------------------
   PRIX PRINCIPAL
--------------------------------------------------------- */

.main-price {
  display: flex;

  align-items: baseline;

  gap: 6px;

  margin: 27px 0 20px;
}

.main-price span,
.main-price small {
  color: var(--gray-500);

  font-size: 11px;
}

.main-price strong {
  font-size: 45px;

  line-height: 0.9;

  letter-spacing: -0.065em;
}

.equipment-card-dark .main-price strong {
  color: var(--white);
}


/* ---------------------------------------------------------
   DUREES
--------------------------------------------------------- */

.duration-list {
  border-top: 1px solid var(--gray-200);
}

.duration-list button {
  width: 100%;

  min-height: 53px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 0;

  border: 0;
  border-bottom: 1px solid var(--gray-200);

  background: transparent;

  color: var(--gray-500);

  font-family: inherit;

  font-size: 12px;

  cursor: pointer;
}

.duration-list button:last-child {
  border-bottom: 0;
}

.duration-list button:hover {
  color: var(--black);
}

.duration-list button strong {
  color: var(--black);

  font-size: 16px;
}

.equipment-card-dark .duration-list,
.equipment-card-dark .duration-list button {
  border-color: #30302e;
}

.equipment-card-dark .duration-list button:hover {
  color: var(--white);
}

.equipment-card-dark .duration-list button strong {
  color: var(--white);
}


/* ---------------------------------------------------------
   NOTE CONSEIL
--------------------------------------------------------- */

.pricing-category-note {
  display: grid;

  grid-template-columns:
    auto
    minmax(0, 1fr)
    auto;

  align-items: center;

  gap: 24px;

  margin-top: 28px;

  padding-top: 24px;

  border-top: 1px solid var(--gray-200);
}

.pricing-category-note > span {
  color: var(--gray-500);

  font-size: 9px;

  font-weight: 900;

  letter-spacing: 0.14em;
}

.pricing-category-note p {
  margin: 0;

  color: var(--gray-500);

  font-size: 13px;
}

.pricing-category-note a {
  color: var(--black);

  font-size: 12px;

  font-weight: 800;
}


/* ---------------------------------------------------------
   CARTES SIMPLES
--------------------------------------------------------- */

.simple-pricing-grid {
  display: grid;

  grid-template-columns:
    repeat(3, minmax(0, 1fr));

  gap: 14px;
}

.simple-price-card {
  min-height: 205px;

  display: flex;
  flex-direction: column;

  padding: 25px;

  border: 1px solid var(--gray-200);

  border-radius: 18px;

  background: var(--white);
}

.simple-price-card > span {
  color: var(--gray-500);

  font-size: 9px;
  font-weight: 900;

  letter-spacing: 0.14em;
}

.simple-price-card strong {
  margin-top: auto;

  font-size: 39px;

  line-height: 0.95;

  letter-spacing: -0.06em;
}

.simple-price-card small {
  margin-top: 5px;

  color: var(--gray-500);

  font-size: 11px;
}

.simple-price-card > div {
  margin-top: 18px;

  padding-top: 13px;

  border-top: 1px solid var(--gray-200);

  color: var(--gray-500);

  font-size: 11px;
}

.simple-price-card-premium {
  position: relative;

  overflow: hidden;
}

.simple-price-card-premium::after {
  content: "";

  position: absolute;

  top: 0;
  right: 0;

  width: 52px;
  height: 52px;

  background: var(--pricing-accent);

  clip-path: polygon(
    100% 0,
    100% 100%,
    0 0
  );
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;

  margin-top: 26px;

  font-size: 13px;

  font-weight: 800;
}

.text-link span {
  font-size: 16px;
}


/* ---------------------------------------------------------
   ACCESSOIRES
--------------------------------------------------------- */

.accessory-list {
  border-top: 1px solid var(--gray-200);
}

.accessory-item {
  min-height: 88px;

  display: grid;

  grid-template-columns:
    minmax(0, 1fr)
    auto;

  gap: 25px;

  align-items: center;

  padding: 17px 0;

  border-bottom: 1px solid var(--gray-200);
}

.accessory-item strong {
  display: block;

  font-size: 16px;
}

.accessory-item div span {
  display: block;

  margin-top: 5px;

  color: var(--gray-500);

  font-size: 11px;
}

.accessory-item > span {
  min-width: 52px;

  color: var(--black);

  font-size: 18px;

  font-weight: 850;

  text-align: right;
}


/* ---------------------------------------------------------
   STOCKAGE
--------------------------------------------------------- */

.pricing-category-storage {
  background: var(--off-white);
}

.storage-pricing-grid {
  display: grid;

  grid-template-columns:
    repeat(4, minmax(0, 1fr));

  gap: 14px;
}

.storage-pricing-grid > div {
  min-height: 205px;

  display: flex;
  flex-direction: column;
  justify-content: space-between;

  padding: 25px;

  border: 1px solid var(--gray-200);

  border-radius: 18px;

  background: var(--white);
}

.storage-pricing-grid > div > span {
  color: var(--gray-500);

  font-size: 9px;

  font-weight: 900;

  letter-spacing: 0.14em;
}

.storage-pricing-grid > div > strong {
  font-size: 36px;

  line-height: 0.95;

  letter-spacing: -0.06em;
}

.storage-pricing-grid > div > small {
  color: var(--gray-500);

  font-size: 11px;
}

.storage-pricing-grid .storage-featured {
  color: var(--black);

  background: var(--pricing-accent);

  border-color: var(--pricing-accent);
}

.storage-pricing-grid .storage-featured > span,
.storage-pricing-grid .storage-featured > small {
  color: rgba(17, 17, 17, 0.58);
}


/* ---------------------------------------------------------
   AIDE
--------------------------------------------------------- */

.pricing-help {
  padding: 120px 0;
}

.pricing-help-grid {
  display: grid;

  grid-template-columns:
    minmax(0, 1fr)
    minmax(280px, 0.55fr);

  gap: 120px;
}

.pricing-help h2 {
  max-width: 700px;

  font-size: clamp(
    45px,
    5vw,
    68px
  );

  line-height: 0.96;

  letter-spacing: -0.065em;
}

.pricing-help-grid > div:last-child p {
  color: var(--gray-500);

  font-size: 16px;

  line-height: 1.7;
}

.pricing-help-grid > div:last-child p + p {
  margin-top: 18px;
}


/* ---------------------------------------------------------
   CTA FINAL
--------------------------------------------------------- */

.pricing-reservation {
  padding: 125px 0;

  background: var(--black);

  color: var(--white);
}

.pricing-reservation h2 {
  max-width: 720px;

  margin-top: 12px;

  font-size: clamp(
    50px,
    6vw,
    78px
  );

  line-height: 0.94;

  letter-spacing: -0.07em;
}

.reservation-actions {
  display: flex;
  align-items: center;

  gap: 22px;

  margin-top: 42px;
}

.pricing-reservation .button-primary {
  color: var(--black);

  background: var(--pricing-accent);
}

.pricing-reservation .button-primary:hover {
  background: #e7ff78;
}

.reservation-email {
  color: #a9a9a4;

  font-size: 13px;
}

.reservation-email:hover {
  color: var(--white);
}


/* ---------------------------------------------------------
   MOBILE
--------------------------------------------------------- */

@media (max-width: 700px) {

  .pricing-hero {
    padding: 78px 0 68px;
  }

  .pricing-hero-layout {
    gap: 32px;
  }

  .pricing-title {
    font-size: 52px;
  }

  .pricing-hero-meta {
    margin-top: 25px;
  }

  .pricing-note {
    align-items: center;
  }

  .pricing-note-label {
    min-width: 44px;
    min-height: 44px;
  }

  .pricing-guide-inner {
    min-height: 58px;

    gap: 13px;

    overflow-x: auto;

    white-space: nowrap;
  }

  .pricing-section-intro {
    padding: 72px 0 10px;
  }

  .pricing-section-intro h2 {
    font-size: 46px;
  }

  .pricing-category {
    padding: 66px 0 72px;
  }

  .pricing-category-header {
    margin-bottom: 36px;
  }

  .category-title h3 {
    font-size: 43px;
  }

  .equipment-grid {
    grid-template-columns: 1fr;

    gap: 11px;
  }

  .equipment-card {
    min-height: 0;

    padding: 22px;
  }

  .equipment-card.is-muted {
    opacity: 1;
  }

  .simple-pricing-grid {
    grid-template-columns: 1fr;
  }

  .simple-price-card {
    min-height: 175px;
  }

  .pricing-category-split {
    grid-template-columns: 1fr;

    gap: 26px;
  }

  .accessory-item {
    min-height: 78px;

    padding: 15px 0;
  }

  .accessory-item strong {
    font-size: 15px;
  }

  .storage-pricing-grid {
    grid-template-columns: 1fr;
  }

  .storage-pricing-grid > div {
    min-height: 170px;
  }

  .pricing-help {
    padding: 78px 0;
  }

  .pricing-help-grid {
    grid-template-columns: 1fr;

    gap: 35px;
  }

  .pricing-help h2 {
    font-size: 44px;
  }

  .pricing-reservation {
    padding: 82px 0;
  }

  .pricing-reservation h2 {
    font-size: 48px;
  }

  .reservation-actions {
    align-items: stretch;

    flex-direction: column;

    gap: 15px;
  }

  .reservation-actions .button {
    width: 100%;
  }

  .reservation-email {
    align-self: center;
  }

}


/* ---------------------------------------------------------
   TRES PETITS ECRANS
--------------------------------------------------------- */

@media (max-width: 390px) {

  .pricing-title,
  .pricing-section-intro h2,
  .pricing-help h2,
  .pricing-reservation h2 {
    font-size: 40px;
  }

  .category-title h3 {
    font-size: 39px;
  }

}


/* ---------------------------------------------------------
   ACCESSIBILITE
--------------------------------------------------------- */

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

  .equipment-card,
  .duration-list button,
  .simple-price-card {
    transition: none;
  }

}


/* =========================================================
   PAGE TARIFS — PACKS
========================================================= */

.pricing-hero {
  padding: 120px 0 90px;

  background:
    linear-gradient(
      180deg,
      #ffffff 0%,
      #f7f7f4 100%
    );

  border-bottom: 1px solid var(--gray-100);
}

.pricing-hero-layout {
  display: grid;

  grid-template-columns:
    minmax(0, 1fr)
    220px;

  gap: 80px;

  align-items: end;
}

.pricing-hero h1 {
  max-width: 850px;

  font-size: clamp(
    58px,
    8vw,
    106px
  );

  line-height: 0.89;

  letter-spacing: -0.08em;
}

.pricing-hero h1 span {
  display: block;
}

.pricing-hero h1 span:last-child {
  color: #888884;
}

.pricing-hero-rule {
  display: flex;

  align-items: center;

  gap: 10px;

  margin-top: 32px;
}

.pricing-hero-rule span {
  width: 7px;
  height: 7px;

  border-radius: 50%;

  background: #d9ff32;

  box-shadow:
    0 0 0 5px rgba(217,255,50,0.15);
}

.pricing-hero-rule p {
  color: var(--gray-500);

  font-size: 11px;
  font-weight: 750;

  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pricing-hero-info {
  display: flex;
  flex-direction: column;

  gap: 8px;
}

.pricing-hero-info strong {
  width: 52px;
  height: 52px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: #d9ff32;

  font-size: 12px;
  font-weight: 900;
}

.pricing-hero-info p {
  max-width: 150px;

  color: var(--gray-500);

  font-size: 11px;

  line-height: 1.5;
}


/* =========================================================
   DURATION BAR
========================================================= */

.duration-bar {
  position: sticky;

  top: 78px;

  z-index: 80;

  background:
    rgba(255,255,255,0.95);

  backdrop-filter:
    blur(18px);

  -webkit-backdrop-filter:
    blur(18px);

  border-bottom:
    1px solid var(--gray-100);
}

.duration-bar-inner {
  min-height: 66px;

  display: flex;
  align-items: center;

  gap: 30px;
}

.duration-label {
  display: flex;
  flex-direction: column;

  gap: 3px;

  flex: 0 0 auto;
}

.duration-label span {
  color: var(--gray-500);

  font-size: 9px;
  font-weight: 900;

  letter-spacing: 0.14em;
}

.duration-label strong {
  font-size: 12px;
}

.duration-buttons {
  display: flex;

  align-items: center;

  gap: 5px;

  overflow-x: auto;

  scrollbar-width: none;
}

.duration-buttons::-webkit-scrollbar {
  display: none;
}

.duration-buttons button {
  width: 42px;
  height: 34px;

  flex: 0 0 auto;

  border:
    1px solid var(--gray-200);

  border-radius: 999px;

  background: var(--white);

  color: var(--gray-500);

  font-family: inherit;

  font-size: 10px;
  font-weight: 750;

  cursor: pointer;

  transition:
    background 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease;
}

.duration-buttons button:hover {
  border-color: var(--black);

  color: var(--black);
}

.duration-buttons button.is-active {
  color: var(--black);

  background: #d9ff32;

  border-color: #d9ff32;
}


/* =========================================================
   SECTIONS
========================================================= */

.pack-section,
.individual-section,
.other-disciplines,
.storage-section {
  padding: 120px 0;
}

.pack-section {
  background: var(--white);
}

.individual-section {
  background: #f7f7f4;
}

.other-disciplines {
  background: var(--white);
}

.storage-section {
  background: #f7f7f4;
}

.section-heading-wide {
  display: grid;

  grid-template-columns:
    minmax(0, 1fr)
    minmax(280px, 0.55fr);

  gap: 90px;

  align-items: end;

  margin-bottom: 50px;
}

.section-heading-wide h2 {
  max-width: 720px;

  font-size: clamp(
    45px,
    6vw,
    75px
  );

  line-height: 0.95;

  letter-spacing: -0.07em;
}

.section-heading-wide > p {
  max-width: 420px;

  color: var(--gray-500);

  font-size: 15px;

  line-height: 1.7;
}


/* =========================================================
   NOTE PACK
========================================================= */

.pack-note {
  display: flex;

  align-items: center;

  gap: 10px;

  margin-bottom: 35px;

  color: var(--gray-700);

  font-size: 12px;
}

.accent-mark {
  width: 7px;
  height: 7px;

  flex: 0 0 auto;

  border-radius: 50%;

  background: #d9ff32;
}

.pack-note strong {
  font-weight: 850;
}


/* =========================================================
   PACK GRID
========================================================= */

.pack-grid {
  display: grid;

  grid-template-columns:
    repeat(3, minmax(0, 1fr));

  gap: 14px;
}

.pack-card {
  min-height: 410px;

  display: flex;
  flex-direction: column;

  padding: 27px;

  background: var(--white);

  border:
    1px solid var(--gray-200);

  border-radius: 19px;

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.pack-card:hover {
  transform:
    translateY(-4px);

  border-color:
    #c5c5c0;

  box-shadow:
    0 25px 60px
    rgba(0,0,0,0.07);
}

.pack-card-featured {
  position: relative;

  border-color:
    #b7b7b2;

  background:
    linear-gradient(
      160deg,
      #ffffff 0%,
      #fafaf7 100%
    );
}

.pack-card-featured::after {
  content: "";

  position: absolute;

  top: 0;
  right: 0;

  width: 60px;
  height: 60px;

  background: #d9ff32;

  clip-path:
    polygon(
      100% 0,
      100% 100%,
      0 0
    );
}

.pack-card-dark {
  color: var(--white);

  background: var(--black);

  border-color: var(--black);
}

.pack-card-dark:hover {
  border-color: var(--black);

  box-shadow:
    0 25px 65px
    rgba(0,0,0,0.16);
}

.pack-card-top {
  display: flex;

  align-items: center;
  justify-content: space-between;
}

.pack-index {
  color: var(--gray-500);

  font-size: 10px;

  font-weight: 900;
}

.pack-tag {
  color: var(--gray-500);

  font-size: 8px;

  font-weight: 900;

  letter-spacing: 0.14em;
}

.pack-card-title {
  margin-top: 65px;
}

.pack-card-title h3 {
  font-size: 27px;

  line-height: 1;

  letter-spacing:
    -0.045em;
}

.pack-card-title p {
  max-width: 270px;

  margin-top: 11px;

  color: var(--gray-500);

  font-size: 12px;

  line-height: 1.55;
}

.pack-card-dark
.pack-card-title p {
  color: #888884;
}

.pack-main-price {
  display: flex;

  align-items: baseline;

  gap: 5px;

  margin-top: 32px;
}

.pack-main-price span,
.pack-main-price small {
  color: var(--gray-500);

  font-size: 10px;
}

.pack-main-price strong {
  font-size: 44px;

  line-height: 0.9;

  letter-spacing:
    -0.065em;
}

.pack-card-dark
.pack-main-price strong {
  color: var(--white);
}

.pack-breakdown {
  display: grid;

  grid-template-columns:
    1fr 1fr 1fr;

  gap: 10px;

  margin-top: auto;

  padding-top: 18px;

  border-top:
    1px solid var(--gray-200);
}

.pack-breakdown > div {
  display: flex;

  flex-direction: column;

  gap: 5px;
}

.pack-breakdown span {
  color: var(--gray-500);

  font-size: 9px;
}

.pack-breakdown strong {
  font-size: 12px;
}

.pack-breakdown strong.included {
  color: #657d00;

  font-size: 9px;

  letter-spacing: 0.06em;
}

.pack-card-dark
.pack-breakdown {
  border-color: #30302e;
}

.pack-card-dark
.pack-breakdown strong {
  color: var(--white);
}

.pack-card-dark
.pack-breakdown strong.included {
  color: #d9ff32;
}

.pack-current-duration {
  min-height: 48px;

  display: flex;

  align-items: center;
  justify-content: space-between;

  margin-top: 14px;

  padding:
    0 14px;

  background: #f3f3ef;

  border-radius: 10px;
}

.pack-current-duration span {
  color: var(--gray-500);

  font-size: 10px;
}

.pack-current-duration strong {
  font-size: 16px;
}

.pack-card-dark
.pack-current-duration {
  background: #1d1d1b;
}

.pack-card-dark
.pack-current-duration strong {
  color: var(--white);
}

.pack-footnote {
  margin-top: 18px;

  color: var(--gray-500);

  font-size: 10px;
}


/* =========================================================
   INDIVIDUEL
========================================================= */

.individual-selector {
  display: flex;

  gap: 7px;

  margin-bottom: 30px;

  overflow-x: auto;

  scrollbar-width: none;
}

.individual-selector::-webkit-scrollbar {
  display: none;
}

.individual-tab {
  min-height: 38px;

  flex: 0 0 auto;

  padding: 0 17px;

  border:
    1px solid var(--gray-300);

  border-radius: 999px;

  background: var(--white);

  color: var(--gray-500);

  font-family: inherit;

  font-size: 10px;

  font-weight: 800;

  cursor: pointer;
}

.individual-tab.is-active {
  background: var(--black);

  color: var(--white);

  border-color: var(--black);
}

.individual-content {
  border-top:
    1px solid var(--gray-300);
}

.individual-row {
  min-height: 84px;

  display: grid;

  grid-template-columns:
    1fr auto;

  gap: 30px;

  align-items: center;

  border-bottom:
    1px solid var(--gray-300);
}

.individual-row > div {
  display: flex;

  align-items: baseline;

  gap: 14px;
}

.individual-row strong {
  font-size: 16px;

  letter-spacing:
    -0.025em;
}

.individual-row span {
  color: var(--gray-500);

  font-size: 10px;
}

.individual-price {
  font-size: 18px !important;
}

.important-rule {
  display: flex;

  align-items: flex-start;

  gap: 13px;

  margin-top: 28px;

  padding: 20px;

  background: var(--white);

  border:
    1px solid var(--gray-200);

  border-radius: 13px;
}

.important-rule > span {
  width: 21px;
  height: 21px;

  flex: 0 0 auto;

  display: flex;

  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: #d9ff32;

  color: var(--black);

  font-size: 11px;

  font-weight: 900;
}

.important-rule p {
  color: var(--gray-500);

  font-size: 12px;

  line-height: 1.6;
}

.important-rule strong {
  color: var(--black);
}


/* =========================================================
   AUTRES DISCIPLINES
========================================================= */

.discipline-grid {
  display: grid;

  grid-template-columns:
    repeat(4, minmax(0, 1fr));

  gap: 13px;
}

.discipline-card {
  min-height: 295px;

  display: flex;

  flex-direction: column;

  padding: 25px;

  border:
    1px solid var(--gray-200);

  border-radius: 17px;

  background: var(--white);
}

.discipline-card > span {
  color: var(--gray-500);

  font-size: 8px;

  font-weight: 900;

  letter-spacing:
    0.14em;
}

.discipline-card h3 {
  margin-top: 54px;

  font-size: 24px;

  letter-spacing:
    -0.04em;
}

.discipline-card p {
  margin-top: 11px;

  color: var(--gray-500);

  font-size: 12px;

  line-height: 1.6;
}

.discipline-card a {
  display: flex;

  align-items: center;
  justify-content: space-between;

  margin-top: auto;
  padding-top: 20px;

  font-size: 11px;

  font-weight: 800;
}

.discipline-price {
  margin-top: auto;

  padding-top: 20px;
}

.discipline-price strong {
  font-size: 28px;

  letter-spacing:
    -0.05em;
}

.discipline-price span {
  color: var(--gray-500);

  font-size: 10px;
}


/* =========================================================
   STOCKAGE
========================================================= */

.storage-grid {
  display: grid;

  grid-template-columns:
    repeat(4, minmax(0, 1fr));

  gap: 13px;
}

.storage-card {
  min-height: 205px;

  display: flex;

  flex-direction: column;
  justify-content: space-between;

  padding: 25px;

  background: var(--white);

  border:
    1px solid var(--gray-200);

  border-radius: 17px;
}

.storage-card span {
  color: var(--gray-500);

  font-size: 8px;

  font-weight: 900;

  letter-spacing:
    0.14em;
}

.storage-card strong {
  font-size: 36px;

  line-height: 0.95;

  letter-spacing:
    -0.06em;
}

.storage-card small {
  color: var(--gray-500);

  font-size: 10px;
}

.storage-card-accent {
  background: #d9ff32;

  border-color: #d9ff32;
}

.storage-card-accent span,
.storage-card-accent small {
  color:
    rgba(17,17,17,0.55);
}


/* =========================================================
   AIDE
========================================================= */

.pricing-help {
  padding: 115px 0;

  background: var(--white);
}

.pricing-help-grid {
  display: grid;

  grid-template-columns:
    minmax(0, 1fr)
    minmax(280px, 0.55fr);

  gap: 110px;

  align-items: end;
}

.pricing-help h2 {
  max-width: 700px;

  font-size: clamp(
    45px,
    5vw,
    68px
  );

  line-height: 0.95;

  letter-spacing:
    -0.065em;
}

.pricing-help p {
  color: var(--gray-500);

  font-size: 15px;

  line-height: 1.7;
}


/* =========================================================
   RÉSERVATION
========================================================= */

.pricing-reservation {
  padding: 120px 0;

  color: var(--white);

  background: var(--black);
}

.pricing-reservation h2 {
  max-width: 700px;

  margin-top: 12px;

  font-size: clamp(
    50px,
    6vw,
    78px
  );

  line-height: 0.94;

  letter-spacing:
    -0.07em;
}

.reservation-actions {
  display: flex;

  align-items: center;

  gap: 22px;

  margin-top: 40px;
}

.pricing-reservation
.button-primary {
  color: var(--black);

  background: #d9ff32;
}

.pricing-reservation
.button-primary:hover {
  background: #e8ff7d;
}

.reservation-email {
  color: #a8a8a2;

  font-size: 12px;
}

.reservation-email:hover {
  color: var(--white);
}


/* =========================================================
   APPARITION
========================================================= */

.pricing-reveal {
  opacity: 0;

  transform:
    translate3d(0, 24px, 0);

  transition:
    opacity 0.8s ease,
    transform 0.9s
      cubic-bezier(
        0.22,
        1,
        0.36,
        1
      );
}

.pricing-reveal.is-visible {
  opacity: 1;

  transform:
    translate3d(0, 0, 0);
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 1050px) {

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

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

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

}


@media (max-width: 900px) {

  .pricing-hero-layout,
  .section-heading-wide,
  .pricing-help-grid {
    grid-template-columns: 1fr;

    gap: 40px;
  }

  .duration-bar {
    top: 0;
  }

  .pack-section,
  .individual-section,
  .other-disciplines,
  .storage-section {
    padding: 90px 0;
  }

}


@media (max-width: 700px) {


  /* HEADER */

  .site-header .nav {
    min-height: 66px;
  }

  .site-header .nav nav {
    display: none;
  }

  .site-header .nav-contact {
    margin-left: auto;

    gap: 8px;
  }

  .site-header .nav-phone {
    display: none;
  }

  .site-header .nav-cta {
    min-height: 40px;

    padding: 0 13px;

    font-size: 10px;
  }


  /* HERO */

  .pricing-hero {
    padding: 76px 0 68px;
  }

  .pricing-hero h1 {
    font-size: 54px;
  }

  .pricing-hero-info {
    flex-direction: row;

    align-items: center;

    gap: 12px;
  }

  .pricing-hero-info strong {
    width: 45px;
    height: 45px;
  }


  /* DURATION */

  .duration-bar {
    position: sticky;

    top: 0;
  }

  .duration-bar-inner {
    min-height: 62px;

    gap: 15px;
  }

  .duration-label {
    display: none;
  }

  .duration-buttons {
    width: 100%;
  }


  /* SECTIONS */

  .pack-section,
  .individual-section,
  .other-disciplines,
  .storage-section {
    padding: 74px 0;
  }

  .section-heading-wide {
    gap: 23px;

    margin-bottom: 38px;
  }

  .section-heading-wide h2 {
    font-size: 46px;
  }


  /* PACKS */

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

  .pack-card {
    min-height: 390px;

    padding: 23px;
  }

  .pack-card-title {
    margin-top: 54px;
  }

  .pack-card-title h3 {
    font-size: 25px;
  }

  .pack-main-price strong {
    font-size: 41px;
  }

  .pack-breakdown {
    gap: 8px;
  }


  /* INDIVIDUEL */

  .individual-selector {
    margin-bottom: 25px;
  }

  .individual-row {
    min-height: 74px;
  }

  .individual-row > div {
    flex-direction: column;

    gap: 4px;
  }

  .individual-row strong {
    font-size: 14px;
  }

  .individual-price {
    font-size: 17px !important;
  }


  /* AUTRES */

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

  .discipline-card {
    min-height: 235px;
  }


  /* STOCKAGE */

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

  .storage-card {
    min-height: 175px;
  }


  /* AIDE */

  .pricing-help {
    padding: 75px 0;
  }

  .pricing-help h2 {
    font-size: 44px;
  }


  /* RESERVATION */

  .pricing-reservation {
    padding: 80px 0;
  }

  .pricing-reservation h2 {
    font-size: 48px;
  }

  .reservation-actions {
    align-items: stretch;

    flex-direction: column;

    gap: 15px;
  }

  .reservation-actions .button {
    width: 100%;
  }

  .reservation-email {
    align-self: center;
  }

}


@media (max-width: 390px) {

  .pricing-hero h1 {
    font-size: 49px;
  }

  .section-heading-wide h2,
  .pricing-help h2,
  .pricing-reservation h2 {
    font-size: 41px;
  }

  .pack-main-price strong {
    font-size: 38px;
  }

}


/* =========================================================
   ACCESSIBILITÉ
========================================================= */

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

  .pricing-reveal,
  .pack-card,
  .duration-buttons button {
    transition: none !important;
  }

  .pricing-reveal {
    opacity: 1;

    transform: none;
  }

}


/* TIP TOP SPORT — PERFORMANCE START */

html {
  overflow-x: hidden;
}

body {
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.mountain-atmosphere,
.mountain-decor {
  pointer-events: none;
  user-select: none;
}

.button,
.nav-cta,
.card-link,
.duration-list button,
.language-button {
  transition:
    background-color .18s ease,
    color .18s ease,
    border-color .18s ease,
    opacity .18s ease;
}

@media (max-width: 760px) {

  html {
    scroll-behavior: auto;
  }

  .mountain-atmosphere,
  .mountain-decor {
    opacity: .35;
  }

  .location-map:hover,
  .card:hover,
  .service-card:hover,
  .equipment-card:hover {
    transform: none !important;
  }

  .duration-list {
    overflow-x: auto;
    overflow-y: hidden;
    overscroll-behavior-x: contain;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .duration-list::-webkit-scrollbar {
    display: none;
  }

  .duration-list button {
    flex: 0 0 auto;
    min-height: 44px;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }

  .mountain-atmosphere,
  .mountain-decor,
  .reveal,
  .reveal-pricing {
    transform: none !important;
    opacity: 1 !important;
  }
}

/* TIP TOP SPORT — PERFORMANCE END */


/* TIP TOP SPORT — CLEAN PRICING START */

.pricing-page {
  background: #f7f7f4;
  color: #111;
}

.pricing-page .pricing-intro {
  padding: 92px 0 55px;
}

.pricing-page .pricing-intro-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(260px, .9fr);
  gap: 50px;
  align-items: end;
}

.pricing-page .pricing-intro h1 {
  margin: 12px 0 0;
  font-size: clamp(42px, 6vw, 78px);
  line-height: .95;
  letter-spacing: -.055em;
  font-weight: 700;
}

.pricing-page .pricing-intro-note {
  max-width: 480px;
  margin: 0;
  color: #666;
  font-size: 15px;
  line-height: 1.55;
}

.pricing-page .pricing-section {
  padding: 68px 0;
}

.pricing-page .pricing-duration {
  padding-top: 25px;
  padding-bottom: 48px;
}

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

.pricing-page .pricing-section-head.simple {
  align-items: start;
}

.pricing-page .section-number {
  margin: 0 0 8px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .11em;
  color: #777;
}

.pricing-page .pricing-section-head h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1;
  letter-spacing: -.045em;
}

.pricing-page .pricing-section-head p:not(.section-number) {
  margin: 9px 0 0;
  color: #70706a;
  font-size: 14px;
  line-height: 1.5;
}

.pricing-page .selected-duration {
  display: flex;
  align-items: end;
  gap: 10px;
  white-space: nowrap;
}

.pricing-page .selected-duration span {
  font-size: 10px;
  color: #777;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.pricing-page .selected-duration strong {
  font-size: 18px;
  letter-spacing: -.02em;
}

.pricing-page .duration-scroller {
  display: flex;
  gap: 7px;
  overflow-x: auto;
  padding: 4px 0 8px;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.pricing-page .duration-scroller::-webkit-scrollbar {
  display: none;
}

.pricing-page .duration-btn {
  flex: 0 0 auto;
  min-width: 68px;
  height: 46px;
  border: 1px solid #d8d8d2;
  border-radius: 999px;
  background: #fff;
  color: #111;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
}

.pricing-page .duration-btn:hover {
  border-color: #111;
}

.pricing-page .duration-btn.is-active {
  background: #111;
  color: #fff;
  border-color: #111;
}


/* PACK */

.pricing-page .pack-card {
  border: 1px solid #d8d8d2;
  border-radius: 18px;
  background: #fff;
  padding: 30px;
}

.pricing-page .pack-header {
  display: flex;
  justify-content: space-between;
  gap: 35px;
  align-items: start;
}

.pricing-page .pack-kicker {
  margin: 0 0 8px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .1em;
  color: #777;
}

.pricing-page .pack-card h3 {
  margin: 0;
  font-size: 27px;
  letter-spacing: -.035em;
}

.pricing-page .pack-card p {
  max-width: 620px;
  margin: 12px 0 0;
  color: #666;
  font-size: 13px;
  line-height: 1.5;
}

.pricing-page .pack-total {
  flex: 0 0 auto;
  text-align: right;
}

.pricing-page .pack-total span {
  display: block;
  margin-bottom: 5px;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #777;
}

.pricing-page .pack-total strong {
  font-size: 38px;
  line-height: 1;
  letter-spacing: -.05em;
}

.pricing-page .pack-controls {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 26px;
}

.pricing-page .pack-controls label {
  display: block;
}

.pricing-page .pack-controls label > span {
  display: block;
  margin-bottom: 7px;
  font-size: 11px;
  font-weight: 700;
  color: #555;
}

.pricing-page .pack-controls select {
  width: 100%;
  min-height: 46px;
  border: 1px solid #d8d8d2;
  border-radius: 10px;
  background: #fff;
  color: #111;
  padding: 0 12px;
  font-size: 13px;
}

.pricing-page .pack-breakdown {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid #e4e4df;
  font-size: 12px;
  color: #777;
}


/* LISTES DE TARIFS */

.pricing-page .price-category,
.pricing-page .sport-block {
  background: #fff;
  border: 1px solid #dcdcd6;
  border-radius: 16px;
  margin-top: 14px;
  overflow: hidden;
}

.pricing-page .price-category-head,
.pricing-page .sport-block-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  padding: 20px 22px;
  border-bottom: 1px solid #e5e5df;
}

.pricing-page .price-category-head h3,
.pricing-page .sport-block-head h3 {
  margin: 0;
  font-size: 19px;
  letter-spacing: -.025em;
}

.pricing-page .category-duration,
.pricing-page .sport-block-head > span {
  flex: 0 0 auto;
  border-radius: 999px;
  padding: 7px 10px;
  background: #f0f0ea;
  color: #666;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .07em;
}

.pricing-page .price-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.pricing-page .price-row {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 22px;
  border-bottom: 1px solid #ededE7;
}

.pricing-page .price-row:nth-child(odd) {
  border-right: 1px solid #ededE7;
}

.pricing-page .price-row:last-child,
.pricing-page .price-row:nth-last-child(2):nth-child(odd) {
  border-bottom: 0;
}

.pricing-page .price-row span {
  color: #333;
  font-size: 13px;
  line-height: 1.35;
}

.pricing-page .price-row strong {
  flex: 0 0 auto;
  color: #111;
  font-size: 15px;
  font-weight: 800;
  white-space: nowrap;
}

.pricing-page .price-note {
  margin: 0;
  padding: 14px 22px 18px;
  color: #777;
  font-size: 11px;
  line-height: 1.5;
  background: #fafaf7;
}


/* CONSIGNE */

.pricing-page .storage-card {
  background: #161616;
  border-radius: 18px;
  overflow: hidden;
}

.pricing-page .storage-card .price-row {
  border-color: #2a2a2a;
}

.pricing-page .storage-card .price-row span {
  color: #e4e4df;
}

.pricing-page .storage-card .price-row strong {
  color: #fff;
}

.pricing-page .storage-card .price-row:nth-child(odd) {
  border-right-color: #2a2a2a;
}


/* RESERVATION */

.pricing-page .pricing-reservation {
  padding-top: 35px;
}

.pricing-page .reservation-line {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: center;
  border-top: 1px solid #d8d8d2;
  border-bottom: 1px solid #d8d8d2;
  padding: 35px 0;
}

.pricing-page .reservation-line h2 {
  margin: 7px 0 8px;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1;
  letter-spacing: -.045em;
}

.pricing-page .reservation-line p:last-child {
  margin: 0;
  color: #666;
  font-size: 13px;
}

.pricing-page .reservation-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.pricing-page .official-note {
  margin: 15px 0 0;
  color: #8a8a84;
  font-size: 10px;
}


/* FOOTER */

.pricing-page .pricing-footer {
  padding: 30px 0 45px;
}

.pricing-page .pricing-footer .footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 25px;
  color: #777;
  font-size: 11px;
}

.pricing-page .pricing-footer strong {
  color: #111;
  letter-spacing: .07em;
}

.pricing-page .pricing-footer p {
  margin: 7px 0 0;
}


/* MOBILE */

@media (max-width: 760px) {

  .pricing-page .pricing-intro {
    padding: 62px 0 40px;
  }

  .pricing-page .pricing-intro-inner {
    display: block;
  }

  .pricing-page .pricing-intro h1 {
    font-size: clamp(40px, 12vw, 58px);
  }

  .pricing-page .pricing-intro-note {
    margin-top: 18px;
    font-size: 14px;
  }

  .pricing-page .pricing-section {
    padding: 48px 0;
  }

  .pricing-page .pricing-duration {
    padding-top: 12px;
    padding-bottom: 34px;
  }

  .pricing-page .pricing-section-head {
    display: block;
  }

  .pricing-page .selected-duration {
    margin-top: 15px;
    justify-content: space-between;
  }

  .pricing-page .duration-scroller {
    margin-right: -12px;
    padding-right: 12px;
  }

  .pricing-page .duration-btn {
    min-width: 64px;
    min-height: 46px;
  }

  .pricing-page .pack-card {
    padding: 21px;
    border-radius: 15px;
  }

  .pricing-page .pack-header {
    display: block;
  }

  .pricing-page .pack-total {
    margin-top: 20px;
    text-align: left;
  }

  .pricing-page .pack-total strong {
    font-size: 32px;
  }

  .pricing-page .pack-controls {
    grid-template-columns: 1fr;
    margin-top: 22px;
  }

  .pricing-page .price-category,
  .pricing-page .sport-block {
    border-radius: 14px;
  }

  .pricing-page .price-category-head,
  .pricing-page .sport-block-head {
    padding: 17px;
  }

  .pricing-page .price-list {
    grid-template-columns: 1fr;
  }

  .pricing-page .price-row {
    min-height: 54px;
    padding: 13px 17px;
  }

  .pricing-page .price-row:nth-child(odd) {
    border-right: 0;
  }

  .pricing-page .price-row:last-child {
    border-bottom: 0;
  }

  .pricing-page .reservation-line {
    display: block;
    padding: 28px 0;
  }

  .pricing-page .reservation-actions {
    margin-top: 20px;
  }

  .pricing-page .reservation-actions .btn {
    flex: 1 1 100%;
    width: 100%;
  }

  .pricing-page .pricing-footer .footer-inner {
    display: block;
  }

  .pricing-page .footer-right {
    margin-top: 10px;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }

}

/* TIP TOP SPORT — CLEAN PRICING END */




/* TIP TOP SPORT — FINAL GLOBAL POLISH */

/* ---------------------------------------------------------
   BASE
--------------------------------------------------------- */

html {
  max-width: 100%;
  overflow-x: hidden;
}

body {
  max-width: 100%;
  overflow-x: hidden;
}

img,
iframe,
video,
svg {
  max-width: 100%;
}

a,
button,
input,
select,
textarea {
  -webkit-tap-highlight-color: transparent;
}

/* ---------------------------------------------------------
   HEADER
--------------------------------------------------------- */

.main-nav {
  min-width: 0;
}

.header-actions {
  min-width: 0;
}

.header-phone {
  white-space: nowrap;
}

/* ---------------------------------------------------------
   MOBILE
--------------------------------------------------------- */

@media (max-width: 760px) {

  .site-header {
    position: relative;
  }

  .header-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
  }

  .brand {
    flex: 0 0 auto;
  }

  .header-actions {
    margin-left: auto;
    flex: 0 0 auto;
  }

  .header-phone {
    display: none;
  }

  .main-nav {
    order: 3;
    width: 100%;
    display: flex;
    gap: 18px;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 4px 0 8px;
    margin: 0;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
  }

  .main-nav::-webkit-scrollbar {
    display: none;
  }

  .main-nav a {
    flex: 0 0 auto;
    white-space: nowrap;
    min-height: 32px;
    display: inline-flex;
    align-items: center;
  }

  .btn,
  .button,
  .nav-cta,
  .duration-btn,
  .lang-btn,
  .language-button {
    min-height: 44px;
  }

  /* Aucun agrandissement / déplacement sur écran tactile. */
  .card:hover,
  .service-card:hover,
  .equipment-card:hover,
  .pack-card:hover,
  .location-map:hover,
  .pricing-card:hover {
    transform: none !important;
  }

  /* Limite les effets décoratifs. */
  .mountain-atmosphere,
  .mountain-decor {
    opacity: .28;
  }
}

/* ---------------------------------------------------------
   ACCESSIBILITÉ
--------------------------------------------------------- */

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

  *,
  *::before,
  *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }

  .reveal,
  .reveal-pricing,
  .mountain-atmosphere,
  .mountain-decor {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* TIP TOP SPORT — FINAL GLOBAL POLISH */

.logo-tt {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.08em;
}








@media (max-width: 700px) {
  
}


/* ============================================================
   NAVIGATION FINALE — TIP TOP SPORT
   Une seule navigation principale, stable desktop/mobile.
   ============================================================ */

.site-header {
  position: relative;
  z-index: 100;
}

.site-header .nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.site-header .logo {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  flex-shrink: 0;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 0;
  line-height: 1;
  letter-spacing: -.16em;
  font-size: 2rem;
  font-weight: 800;
}

.brand-mark span:first-child {
  transform: translateX(.12em);
}

.brand-mark span:last-child {
  transform: translateX(-.02em);
}

.brand-name {
  white-space: nowrap;
}

.site-header .main-nav {
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: clamp(1rem, 2vw, 2rem);
  margin-left: auto;
}

.site-header .main-nav a {
  display: inline-block;
  visibility: visible !important;
  opacity: 1 !important;
  white-space: nowrap;
}

@media (max-width: 860px) {
  .site-header .nav {
    flex-wrap: wrap;
    row-gap: 1rem;
  }

  .site-header .main-nav {
    order: 3;
    width: 100%;
    margin-left: 0;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: .25rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .site-header .main-nav::-webkit-scrollbar {
    display: none;
  }

  .site-header .main-nav a {
    flex: 0 0 auto;
  }
}

@media (max-width: 560px) {
  .site-header .nav {
    gap: .9rem;
  }

  .brand-name {
    display: none;
  }

  .brand-mark {
    font-size: 2.15rem;
  }

  .site-header .main-nav {
    gap: 1.15rem;
    font-size: .95rem;
  }
}


/* =========================================================
   TIP TOP SPORT — HEADER GLOBAL
   ========================================================= */

.site-header {
  position: relative;
  z-index: 100;
  width: 100%;
}

.site-header-inner {
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 20px 0;
}

/* Logo double T — TIP TOP */
.logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: inherit;
  flex-shrink: 0;
}

.logo-tt {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 42px;
  line-height: 1;
}

.tt-letter {
  position: absolute;
  display: block;
  font-size: 34px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.10em;
}

.tt-left {
  left: 5px;
}

.tt-right {
  right: 5px;
  opacity: 0.72;
}

/* Navigation principale : seule navigation prioritaire en haut */
.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 30px;
  margin-left: auto;
}

.main-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  color: inherit;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.01em;
  white-space: nowrap;
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
}

.main-nav a:hover {
  opacity: 0.68;
  transform: translateY(-1px);
}

.main-nav a:focus-visible,
.logo:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 5px;
}

/* Le header doit rester visuellement intégré au bandeau/hero */
.hero .site-header,
.site-header {
  background: transparent;
}

/* ---------------------------------------------------------
   MOBILE
   --------------------------------------------------------- */

@media (max-width: 760px) {
  .site-header-inner {
    width: min(100% - 28px, 1200px);
    padding: 16px 0;
    gap: 18px;
  }

  .logo-tt {
    width: 50px;
    height: 38px;
  }

  .tt-letter {
    font-size: 30px;
  }

  .main-nav {
    gap: 14px;
    flex-wrap: wrap;
    justify-content: flex-end;
  }

  .main-nav a {
    min-height: 36px;
    font-size: 0.92rem;
  }
}

@media (max-width: 560px) {
  .site-header-inner {
    align-items: flex-start;
  }

  .main-nav {
    gap: 8px 14px;
  }

  .main-nav a {
    font-size: 0.86rem;
  }
}

@media (max-width: 430px) {
  .site-header-inner {
    width: min(100% - 22px, 1200px);
    gap: 12px;
  }

  .logo-tt {
    width: 44px;
    height: 34px;
  }

  .tt-letter {
    font-size: 27px;
  }

  .tt-left {
    left: 2px;
  }

  .tt-right {
    right: 2px;
  }

  .main-nav {
    gap: 6px 11px;
  }

  .main-nav a {
    font-size: 0.79rem;
  }
}


/* ============================================================
   TIP TOP SPORT — HEADER FINAL
   ============================================================ */

.site-header {
  position: relative;
  z-index: 100;
  width: 100%;
}

.site-header-inner {
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 30px;
  min-height: 78px;
}

/* Logo TT */
.logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: inherit;
  text-decoration: none;
  flex: 0 0 auto;
}

.logo-tt {
  position: relative;
  display: inline-flex;
  width: 52px;
  height: 40px;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.tt-letter {
  position: absolute;
  font-size: 32px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.10em;
}

.tt-left {
  left: 2px;
}

.tt-right {
  right: 2px;
  opacity: .68;
}

/* Navigation : ordre demandé */
.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  margin-left: auto;
}

.main-nav a {
  color: inherit;
  text-decoration: none;
  font-weight: 600;
  white-space: nowrap;
  transition: opacity .2s ease;
}

.main-nav a:hover {
  opacity: .62;
}

/* FR / EN */
.language-switcher {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin-left: 8px;
  flex: 0 0 auto;
}

.language-button {
  appearance: none;
  border: 0;
  padding: 4px 2px;
  margin: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  line-height: 1;
  cursor: pointer;
  opacity: .48;
  transition: opacity .2s ease;
}

.language-button:hover,
.language-button.lang-active,
.language-button.active {
  opacity: 1;
}

.language-separator {
  opacity: .35;
  user-select: none;
}

/* ============================================================
   ANCIENS CTA HERO
   ============================================================ */

/* Si un ancien script recrée la structure, elle ne doit plus
   constituer un appel commercial dans le hero. */
.hero-actions:empty {
  display: none !important;
}

.hero-actions {
  display: none !important;
}

/* ============================================================
   MOBILE
   ============================================================ */

@media (max-width: 820px) {
  .site-header-inner {
    width: min(100% - 28px, 1200px);
    gap: 18px;
    min-height: 68px;
  }

  .main-nav {
    gap: 16px;
  }

  .main-nav a {
    font-size: .9rem;
  }

  .language-switcher {
    margin-left: 2px;
  }
}

@media (max-width: 620px) {
  .site-header-inner {
    flex-wrap: wrap;
    padding: 12px 0;
    row-gap: 10px;
  }

  .main-nav {
    order: 3;
    width: 100%;
    margin-left: 0;
    justify-content: center;
    gap: 14px 20px;
  }

  .language-switcher {
    margin-left: auto;
  }

  .main-nav a {
    font-size: .84rem;
  }
}

@media (max-width: 420px) {
  .site-header-inner {
    width: min(100% - 20px, 1200px);
  }

  .main-nav {
    gap: 11px 15px;
  }

  .main-nav a {
    font-size: .78rem;
  }

  .logo-tt {
    width: 46px;
  }
}


/* ============================================================
   TIP TOP SPORT — COHERENCE HEADER FINAL
   ============================================================ */

.site-header {
  position: relative;
  z-index: 100;
  width: 100%;
}

.site-header-inner {
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
  min-height: 78px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.logo {
  color: inherit;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.logo-tt {
  position: relative;
  width: 52px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.tt-letter {
  position: absolute;
  font-size: 32px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -.10em;
}

.tt-left {
  left: 2px;
}

.tt-right {
  right: 2px;
  opacity: .68;
}

.main-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 28px;
}

.main-nav a {
  color: inherit;
  text-decoration: none;
  font-weight: 600;
  white-space: nowrap;
  transition: opacity .2s ease;
}

.main-nav a:hover {
  opacity: .62;
}

.language-switcher {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-left: 8px;
}

.language-button {
  appearance: none;
  border: 0;
  background: transparent;
  color: inherit;
  padding: 4px 2px;
  margin: 0;
  font: inherit;
  font-size: .78rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: .08em;
  cursor: pointer;
  opacity: .48;
}

.language-button:hover,
.language-button.lang-active,
.language-button.active {
  opacity: 1;
}

.language-separator {
  opacity: .35;
}

.hero-actions {
  display: none !important;
}

@media (max-width: 820px) {
  .site-header-inner {
    width: min(100% - 28px, 1200px);
    min-height: 68px;
    gap: 18px;
  }

  .main-nav {
    gap: 17px;
  }

  .main-nav a {
    font-size: .9rem;
  }
}

@media (max-width: 620px) {
  .site-header-inner {
    flex-wrap: wrap;
    padding: 12px 0;
    row-gap: 9px;
  }

  .main-nav {
    width: 100%;
    order: 3;
    margin-left: 0;
    justify-content: center;
    gap: 12px 20px;
  }

  .language-switcher {
    margin-left: auto;
  }

  .main-nav a {
    font-size: .84rem;
  }
}

@media (max-width: 420px) {
  .site-header-inner {
    width: min(100% - 20px, 1200px);
  }

  .main-nav {
    gap: 10px 15px;
  }

  .main-nav a {
    font-size: .78rem;
  }
}


/* ============================================================
   TIP TOP SPORT — HEADER FINAL / NAVIGATION
   ============================================================ */

.site-header-inner {
  display: flex;
  align-items: center;
  gap: 28px;
}

.logo {
  text-decoration: none;
  color: inherit;
  flex: 0 0 auto;
}

.logo-tt {
  position: relative;
  display: inline-flex;
  width: 52px;
  height: 42px;
  align-items: center;
  justify-content: center;
}

.tt-letter {
  position: absolute;
  font-size: 32px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -.10em;
}

.tt-left {
  left: 2px;
}

.tt-right {
  right: 2px;
  opacity: .66;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-left: auto;
}

.main-nav a {
  color: inherit;
  text-decoration: none;
  white-space: nowrap;
  font-weight: 600;
}

.language-switcher {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-left: 8px;
}

.language-button {
  border: 0;
  background: transparent;
  color: inherit;
  padding: 4px 2px;
  font: inherit;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  cursor: pointer;
  opacity: .48;
}

.language-button.lang-active,
.language-button:hover {
  opacity: 1;
}

.language-separator {
  opacity: .35;
}

@media (max-width: 760px) {
  .site-header-inner {
    gap: 16px;
    flex-wrap: wrap;
    padding: 12px 0;
  }

  .main-nav {
    width: 100%;
    order: 3;
    justify-content: center;
    gap: 12px 18px;
    margin-left: 0;
  }

  .main-nav a {
    font-size: .84rem;
  }

  .language-switcher {
    margin-left: auto;
  }
}

@media (max-width: 430px) {
  .site-header-inner {
    width: calc(100% - 20px);
  }

  .main-nav {
    gap: 10px 14px;
  }

  .main-nav a {
    font-size: .77rem;
  }
}


/* ============================================================
   HEADER TT SPORT — VERSION UNIFIEE
   ============================================================ */

.site-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  width: 100%;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: inherit;
  text-decoration: none;
  min-width: 0;
}

.logo-tt {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  line-height: 1;
  flex: 0 0 auto;
}

.tt-letter {
  font-size: 1.55rem;
  font-weight: 850;
  letter-spacing: -0.12em;
  line-height: .9;
}

.tt-left {
  transform: translateX(1px);
}

.tt-right {
  transform: translateX(-1px);
}

.brand-word {
  display: inline-block;
  font-size: .84rem;
  font-weight: 800;
  letter-spacing: .13em;
  line-height: 1;
  white-space: nowrap;
}

.brand-location {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2px;
  margin-left: 6px;
  padding-left: 10px;
  border-left: 1px solid currentColor;
  opacity: .72;
  white-space: nowrap;
}

.brand-location span {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  line-height: 1;
  text-transform: uppercase;
}

.brand-location small {
  font-size: .58rem;
  font-weight: 500;
  letter-spacing: .02em;
  line-height: 1.15;
  opacity: .82;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2.2vw, 34px);
  margin-left: auto;
}

.main-nav a {
  font-size: .82rem;
  font-weight: 650;
  letter-spacing: .01em;
  text-decoration: none;
  white-space: nowrap;
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-left: 6px;
  flex: 0 0 auto;
  font-size: .70rem;
  letter-spacing: .08em;
}

.language-switcher .lang-button {
  appearance: none;
  border: 0;
  padding: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  letter-spacing: inherit;
  cursor: pointer;
  opacity: .46;
}

.language-switcher .lang-button.is-active {
  opacity: 1;
  font-weight: 700;
}

.language-switcher .lang-button:hover {
  opacity: 1;
}

@media (max-width: 980px) {
  .site-header-inner {
    gap: 16px;
  }

  .brand-location {
    margin-left: 2px;
    padding-left: 8px;
  }

  .main-nav {
    gap: 16px;
  }

  .main-nav a {
    font-size: .78rem;
  }
}

@media (max-width: 760px) {
  .site-header-inner {
    flex-wrap: wrap;
    row-gap: 14px;
  }

  .brand {
    margin-right: auto;
  }

  .main-nav {
    order: 3;
    width: 100%;
    justify-content: center;
    margin-left: 0;
    gap: 18px;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .main-nav a {
    font-size: .76rem;
  }

  .language-switcher {
    margin-left: 8px;
  }
}

@media (max-width: 480px) {
  .brand-location small {
    display: none;
  }

  .brand-location {
    padding-left: 7px;
    margin-left: 0;
  }

  .brand-location span {
    font-size: .64rem;
  }

  .brand-word {
    font-size: .76rem;
  }

  .tt-letter {
    font-size: 1.38rem;
  }

  .main-nav {
    gap: 14px;
    justify-content: flex-start;
  }
}


/* HEADER UNIFIE TIP TOP SPORT */

/* HEADER UNIFIE TIP TOP SPORT */

.site-header-inner {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 30px;
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: inherit;
  min-width: 0;
}

.logo-tt {
  display: inline-flex;
  align-items: center;
  line-height: 1;
  flex: 0 0 auto;
}

.tt-letter {
  font-size: 1.55rem;
  font-weight: 850;
  line-height: .9;
  letter-spacing: -.13em;
}

.tt-left {
  transform: translateX(1px);
}

.tt-right {
  transform: translateX(-1px);
}

.brand-name {
  margin-left: 8px;
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .14em;
  line-height: 1;
}

.brand-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-left: 11px;
  padding-left: 11px;
  border-left: 1px solid currentColor;
  opacity: .58;
  white-space: nowrap;
}

.brand-meta span {
  font-size: .62rem;
  font-weight: 650;
  letter-spacing: .02em;
  line-height: 1;
}

.brand-meta small {
  font-size: .56rem;
  font-weight: 500;
  line-height: 1;
  opacity: .9;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.3vw, 34px);
  margin-left: auto;
}

.main-nav a {
  white-space: nowrap;
  text-decoration: none;
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-left: 3px;
  white-space: nowrap;
}

.language-switcher .lang-button {
  border: 0;
  padding: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  cursor: pointer;
  opacity: .48;
  font-size: .68rem;
  letter-spacing: .08em;
}

.language-switcher .lang-button.is-active {
  opacity: 1;
  font-weight: 700;
}

.language-switcher .lang-button:hover {
  opacity: 1;
}

@media (max-width: 900px) {
  .site-header-inner {
    gap: 16px;
  }

  .main-nav {
    gap: 16px;
  }

  .main-nav a {
    font-size: .78rem;
  }

  .brand-meta span {
    font-size: .58rem;
  }
}

@media (max-width: 720px) {
  .site-header-inner {
    flex-wrap: wrap;
    row-gap: 12px;
  }

  .main-nav {
    order: 3;
    width: 100%;
    margin-left: 0;
    justify-content: center;
    overflow-x: auto;
    gap: 18px;
    padding-bottom: 2px;
  }

  .brand {
    margin-right: auto;
  }
}

@media (max-width: 480px) {
  .brand-meta small {
    display: none;
  }

  .brand-meta {
    padding-left: 7px;
    margin-left: 7px;
  }

  .brand-meta span {
    font-size: .56rem;
  }

  .brand-name {
    font-size: .74rem;
  }

  .tt-letter {
    font-size: 1.35rem;
  }

  .language-switcher {
    margin-left: 4px;
  }

  .main-nav {
    justify-content: flex-start;
    gap: 15px;
  }
}



/* ============================================================
   TIP TOP SPORT — IDENTITE HEADER DEFINITIVE
   ============================================================ */

.site-header-inner {
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
  min-height: 78px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  color: inherit;
  text-decoration: none;
  min-width: 0;
  flex: 0 0 auto;
}

.brand-title {
  display: inline-flex;
  align-items: baseline;
  white-space: nowrap;
  line-height: .9;
  letter-spacing: -.045em;
}

.brand-tip,
.brand-top {
  font-size: 1.38rem;
  font-weight: 850;
}

.brand-tip {
  color: #111;
}

.brand-top {
  color: #777;
  margin-left: .045em;
}

.brand-sport {
  color: #111;
  margin-left: .13em;
  font-size: .75rem;
  font-weight: 850;
  letter-spacing: .075em;
}

.brand-meta {
  display: flex;
  flex-direction: column;
  gap: 3px;
  margin-left: 12px;
  padding-left: 11px;
  border-left: 1px solid rgba(17,17,17,.20);
  opacity: .56;
  white-space: nowrap;
}

.brand-meta span {
  font-size: .58rem;
  line-height: 1;
  font-weight: 650;
  letter-spacing: .01em;
}

.brand-meta small {
  font-size: .54rem;
  line-height: 1;
  font-weight: 500;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(17px, 2.1vw, 32px);
  margin-left: auto;
}

.main-nav a {
  color: inherit;
  text-decoration: none;
  white-space: nowrap;
  font-weight: 600;
}

.main-nav a:hover {
  opacity: .62;
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-left: 5px;
  flex: 0 0 auto;
}

.language-switcher .lang-button,
.language-switcher .language-button {
  appearance: none;
  border: 0;
  background: transparent;
  color: inherit;
  padding: 0;
  margin: 0;
  font: inherit;
  font-size: .67rem;
  line-height: 1;
  font-weight: 650;
  letter-spacing: .08em;
  cursor: pointer;
  opacity: .46;
}

.language-switcher .lang-button.is-active,
.language-switcher .language-button.lang-active,
.language-switcher .language-button.active {
  opacity: 1;
}

.language-switcher > span {
  opacity: .30;
}

.hero-primary-action {
  margin-top: 30px;
}

.hero-primary-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: inherit;
  text-decoration: none;
  font-weight: 650;
  font-size: .88rem;
}

.hero-primary-link span {
  transition: transform .2s ease;
}

.hero-primary-link:hover span {
  transform: translateX(4px);
}

/* Aucun ancien bloc d'actions commerciales */
.hero-actions {
  display: none !important;
}

@media (max-width: 980px) {
  .site-header-inner {
    gap: 16px;
  }

  .main-nav {
    gap: 17px;
  }

  .main-nav a {
    font-size: .79rem;
  }

  .brand-meta span {
    font-size: .55rem;
  }
}

@media (max-width: 760px) {
  .site-header-inner {
    flex-wrap: wrap;
    row-gap: 11px;
    padding: 12px 0;
  }

  .brand {
    margin-right: auto;
  }

  .language-switcher {
    margin-left: 8px;
  }

  .main-nav {
    order: 3;
    width: 100%;
    margin-left: 0;
    justify-content: center;
    gap: 14px 19px;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .main-nav a {
    font-size: .76rem;
  }
}

@media (max-width: 480px) {
  .site-header-inner {
    width: calc(100% - 20px);
  }

  .brand-meta small {
    display: none;
  }

  .brand-meta {
    padding-left: 7px;
    margin-left: 7px;
  }

  .brand-meta span {
    font-size: .51rem;
  }

  .brand-tip,
  .brand-top {
    font-size: 1.18rem;
  }

  .brand-sport {
    font-size: .66rem;
  }

  .main-nav {
    justify-content: flex-start;
    gap: 12px 15px;
  }

  .main-nav a {
    font-size: .73rem;
  }
}
